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 | */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 67 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 68 | #include <glob.h> |
| 69 | /* #include <dmalloc.h> */ |
| 70 | #if ENABLE_HUSH_CASE |
| 71 | #include <fnmatch.h> |
| 72 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 73 | #include "math.h" |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 74 | #include "match.h" |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 75 | #ifndef PIPE_BUF |
| 76 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 77 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 79 | |
| 80 | /* Debug build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 81 | #define LEAK_HUNTING 0 |
| 82 | #define BUILD_AS_NOMMU 0 |
| 83 | /* Enable/disable sanity checks. Ok to enable in production, |
| 84 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 85 | * Keeping 1 for now even in released versions. |
| 86 | */ |
| 87 | #define HUSH_DEBUG 1 |
| 88 | /* In progress... */ |
| 89 | #define ENABLE_HUSH_FUNCTIONS 0 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 90 | |
| 91 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 92 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 93 | # undef BB_MMU |
| 94 | # undef USE_FOR_NOMMU |
| 95 | # undef USE_FOR_MMU |
| 96 | # define BB_MMU 0 |
| 97 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 98 | # define USE_FOR_MMU(...) |
| 99 | #endif |
| 100 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 101 | #if defined SINGLE_APPLET_MAIN |
| 102 | /* STANDALONE does not make sense, and won't compile */ |
| 103 | #undef CONFIG_FEATURE_SH_STANDALONE |
| 104 | #undef ENABLE_FEATURE_SH_STANDALONE |
| 105 | #undef USE_FEATURE_SH_STANDALONE |
| 106 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 107 | #define ENABLE_FEATURE_SH_STANDALONE 0 |
| 108 | #define USE_FEATURE_SH_STANDALONE(...) |
| 109 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 110 | #endif |
| 111 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 112 | #if !ENABLE_HUSH_INTERACTIVE |
| 113 | #undef ENABLE_FEATURE_EDITING |
| 114 | #define ENABLE_FEATURE_EDITING 0 |
| 115 | #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 116 | #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 117 | #endif |
| 118 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 119 | /* Do we support ANY keywords? */ |
| 120 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 121 | #define HAS_KEYWORDS 1 |
| 122 | #define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 123 | #define IF_HAS_NO_KEYWORDS(...) |
| 124 | #else |
| 125 | #define HAS_KEYWORDS 0 |
| 126 | #define IF_HAS_KEYWORDS(...) |
| 127 | #define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
| 128 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 129 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 130 | /* If you comment out one of these below, it will be #defined later |
| 131 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 132 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 133 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 134 | #define debug_printf_parse(...) do {} while (0) |
| 135 | #define debug_print_tree(a, b) do {} while (0) |
| 136 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 137 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 138 | #define debug_printf_jobs(...) do {} while (0) |
| 139 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 140 | #define debug_printf_glob(...) do {} while (0) |
| 141 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 142 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 143 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 144 | |
| 145 | #ifndef debug_printf |
| 146 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 147 | #endif |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 148 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 149 | #ifndef debug_printf_parse |
| 150 | #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 151 | #endif |
| 152 | |
| 153 | #ifndef debug_printf_exec |
| 154 | #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__) |
| 155 | #endif |
| 156 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 157 | #ifndef debug_printf_env |
| 158 | #define debug_printf_env(...) fprintf(stderr, __VA_ARGS__) |
| 159 | #endif |
| 160 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 161 | #ifndef debug_printf_jobs |
| 162 | #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 163 | #define DEBUG_JOBS 1 |
| 164 | #else |
| 165 | #define DEBUG_JOBS 0 |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 166 | #endif |
| 167 | |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 168 | #ifndef debug_printf_expand |
| 169 | #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__) |
| 170 | #define DEBUG_EXPAND 1 |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 171 | #else |
| 172 | #define DEBUG_EXPAND 0 |
| 173 | #endif |
| 174 | |
| 175 | #ifndef debug_printf_glob |
| 176 | #define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__) |
| 177 | #define DEBUG_GLOB 1 |
| 178 | #else |
| 179 | #define DEBUG_GLOB 0 |
| 180 | #endif |
| 181 | |
| 182 | #ifndef debug_printf_list |
| 183 | #define debug_printf_list(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 184 | #endif |
| 185 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 186 | #ifndef debug_printf_subst |
| 187 | #define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__) |
| 188 | #endif |
| 189 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 190 | #ifndef debug_printf_clean |
| 191 | /* broken, of course, but OK for testing */ |
| 192 | static const char *indenter(int i) |
| 193 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 194 | static const char blanks[] ALIGN1 = |
| 195 | " "; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 196 | return &blanks[sizeof(blanks) - i - 1]; |
| 197 | } |
| 198 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 199 | #define DEBUG_CLEAN 1 |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 200 | #else |
| 201 | #define DEBUG_CLEAN 0 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 202 | #endif |
| 203 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 204 | #if DEBUG_EXPAND |
| 205 | static void debug_print_strings(const char *prefix, char **vv) |
| 206 | { |
| 207 | fprintf(stderr, "%s:\n", prefix); |
| 208 | while (*vv) |
| 209 | fprintf(stderr, " '%s'\n", *vv++); |
| 210 | } |
| 211 | #else |
| 212 | #define debug_print_strings(prefix, vv) ((void)0) |
| 213 | #endif |
| 214 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 215 | #define ERR_PTR ((void*)(long)1) |
| 216 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 217 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 218 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 219 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 220 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 221 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 222 | |
| 223 | /* This supports saving pointers malloced in vfork child, |
| 224 | * to be freed in the parent. One pointer is saved in |
| 225 | * G.argv_from_re_execing global var instead. TODO: unify. |
| 226 | */ |
| 227 | #if !BB_MMU |
| 228 | typedef struct nommu_save_t { |
| 229 | char **new_env; |
| 230 | char **old_env; |
| 231 | char **argv; |
| 232 | } nommu_save_t; |
| 233 | #endif |
| 234 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 235 | /* The descrip member of this structure is only used to make |
| 236 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 237 | static const struct { |
| 238 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 239 | signed char default_fd; |
| 240 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 241 | } redir_table[] = { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 242 | { 0, 0, "??" }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 243 | { O_RDONLY, 0, "<" }, |
| 244 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 245 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 246 | { O_RDONLY, 0, "<<" }, |
| 247 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 248 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 249 | /* { O_RDONLY, 77, "<<" }, */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 250 | }; |
| 251 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 252 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 253 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 254 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 255 | RES_IF , |
| 256 | RES_THEN , |
| 257 | RES_ELIF , |
| 258 | RES_ELSE , |
| 259 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 260 | #endif |
| 261 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 262 | RES_FOR , |
| 263 | RES_WHILE , |
| 264 | RES_UNTIL , |
| 265 | RES_DO , |
| 266 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 267 | #endif |
| 268 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 269 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 270 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 271 | #if ENABLE_HUSH_CASE |
| 272 | RES_CASE , |
| 273 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 274 | RES_MATCH , /* "word)" */ |
| 275 | RES_CASEI , /* "this command is inside CASE" */ |
| 276 | RES_ESAC , |
| 277 | #endif |
| 278 | RES_XXXX , |
| 279 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 280 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 281 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 282 | typedef struct o_string { |
| 283 | char *data; |
| 284 | int length; /* position where data is appended */ |
| 285 | int maxlen; |
| 286 | /* Protect newly added chars against globbing |
| 287 | * (by prepending \ to *, ?, [, \) */ |
| 288 | smallint o_escape; |
| 289 | smallint o_glob; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 290 | /* At least some part of the string was inside '' or "", |
| 291 | * possibly empty one: word"", wo''rd etc. */ |
| 292 | smallint o_quoted; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 293 | smallint has_empty_slot; |
| 294 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 295 | } o_string; |
| 296 | enum { |
| 297 | MAYBE_ASSIGNMENT = 0, |
| 298 | DEFINITELY_ASSIGNMENT = 1, |
| 299 | NOT_ASSIGNMENT = 2, |
| 300 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 301 | }; |
| 302 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 303 | #define NULL_O_STRING { NULL } |
| 304 | |
| 305 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 306 | * available? Where is it documented? */ |
| 307 | typedef struct in_str { |
| 308 | const char *p; |
| 309 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 310 | char eof_flag; /* meaningless if ->p == NULL */ |
| 311 | char peek_buf[2]; |
| 312 | #if ENABLE_HUSH_INTERACTIVE |
| 313 | smallint promptme; |
| 314 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 315 | #endif |
| 316 | FILE *file; |
| 317 | int (*get) (struct in_str *); |
| 318 | int (*peek) (struct in_str *); |
| 319 | } in_str; |
| 320 | #define i_getch(input) ((input)->get(input)) |
| 321 | #define i_peek(input) ((input)->peek(input)) |
| 322 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 323 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 324 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 325 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 326 | int rd_fd; /* fd to redirect */ |
| 327 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 328 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 329 | smallint rd_type; /* (enum redir_type) */ |
| 330 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 331 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
| 332 | * 1: do we need to trim leading tabs? |
| 333 | * 2: is heredoc quoted (<<'dleim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 334 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 335 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 336 | typedef enum redir_type { |
| 337 | REDIRECT_INVALID = 0, |
| 338 | REDIRECT_INPUT = 1, |
| 339 | REDIRECT_OVERWRITE = 2, |
| 340 | REDIRECT_APPEND = 3, |
| 341 | REDIRECT_HEREDOC = 4, |
| 342 | REDIRECT_IO = 5, |
| 343 | REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 344 | |
| 345 | REDIRFD_CLOSE = -3, |
| 346 | REDIRFD_SYNTAX_ERR = -2, |
| 347 | REDIRFD_TO_FILE = -1, /* otherwise, rd_fd if redirected to rd_dup */ |
| 348 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 349 | HEREDOC_SKIPTABS = 1, |
| 350 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 351 | } redir_type; |
| 352 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 353 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 354 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 355 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 356 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 357 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 358 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 359 | struct pipe *group; /* if non-NULL, this "command" is { list }, |
| 360 | * ( list ), or a compound statement */ |
| 361 | #if !BB_MMU |
| 362 | char *group_as_string; |
| 363 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 364 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 365 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 366 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 367 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 368 | * and on execution these are substituted with their values. |
| 369 | * Substitution can make _several_ words out of one argv[n]! |
| 370 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 371 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 372 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 373 | #define GRP_NORMAL 0 |
| 374 | #define GRP_SUBSHELL 1 |
| 375 | #if ENABLE_HUSH_FUNCTIONS |
| 376 | #define GRP_FUNCTION 2 |
| 377 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 378 | |
| 379 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 380 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 381 | int num_cmds; /* total number of commands in job */ |
| 382 | int alive_cmds; /* number of commands running (not exited) */ |
| 383 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 384 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 385 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 386 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 387 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 388 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 389 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 390 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 391 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 392 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 393 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 394 | typedef enum pipe_style { |
| 395 | PIPE_SEQ = 1, |
| 396 | PIPE_AND = 2, |
| 397 | PIPE_OR = 3, |
| 398 | PIPE_BG = 4, |
| 399 | } pipe_style; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 400 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 401 | /* This holds pointers to the various results of parsing */ |
| 402 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 403 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 404 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 405 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 406 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 407 | /* last command in pipe (being constructed right now) */ |
| 408 | struct command *command; |
| 409 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 410 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 411 | #if !BB_MMU |
| 412 | o_string as_string; |
| 413 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 414 | #if HAS_KEYWORDS |
| 415 | smallint ctx_res_w; |
| 416 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 417 | #if ENABLE_HUSH_CASE |
| 418 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 419 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 420 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 421 | int old_flag; |
| 422 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 423 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 424 | * when we see "if" or "then", we malloc and copy current context, |
| 425 | * and make ->stack point to it. then we parse pipeN. |
| 426 | * when closing "then" / fi" / whatever is found, |
| 427 | * we move list_head into ->stack->command->group, |
| 428 | * copy ->stack into current context, and delete ->stack. |
| 429 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 430 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 431 | struct parse_context *stack; |
| 432 | #endif |
| 433 | }; |
| 434 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 435 | /* On program start, environ points to initial environment. |
| 436 | * putenv adds new pointers into it, unsetenv removes them. |
| 437 | * Neither of these (de)allocates the strings. |
| 438 | * setenv allocates new strings in malloc space and does putenv, |
| 439 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 440 | #define setenv(...) setenv_is_leaky_dont_use() |
| 441 | struct variable { |
| 442 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 443 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 444 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 445 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 446 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 447 | }; |
| 448 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 449 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 450 | BC_BREAK = 1, |
| 451 | BC_CONTINUE = 2, |
| 452 | }; |
| 453 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 454 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 455 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 456 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 457 | struct globals { |
| 458 | #if ENABLE_HUSH_INTERACTIVE |
| 459 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 460 | * _AND_ if we decided to act interactively */ |
| 461 | int interactive_fd; |
| 462 | const char *PS1; |
| 463 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 464 | #define G_interactive_fd (G.interactive_fd) |
| 465 | #else |
| 466 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 467 | #endif |
| 468 | #if ENABLE_FEATURE_EDITING |
| 469 | line_input_t *line_input_state; |
| 470 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 471 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 472 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 473 | #if ENABLE_HUSH_JOB |
| 474 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 475 | pid_t saved_tty_pgrp; |
| 476 | int last_jobid; |
| 477 | struct pipe *job_list; |
| 478 | struct pipe *toplevel_list; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 479 | //// smallint ctrl_z_flag; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 480 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 481 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 482 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 483 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 484 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 485 | smallint fake_mode; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 486 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 487 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 488 | smalluint last_exitcode; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 489 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 490 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 491 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 492 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 493 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 494 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 495 | char *argv0_for_re_execing; |
| 496 | char **argv_from_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 497 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 498 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 499 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 500 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 501 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 502 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 503 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 504 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 505 | struct variable shell_ver; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 506 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 507 | // unsigned count_SIGCHLD; |
| 508 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 509 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 510 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 511 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 512 | sigset_t blocked_set; |
| 513 | sigset_t inherited_set; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 514 | #if HUSH_DEBUG |
| 515 | unsigned long memleak_value; |
| 516 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 517 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
| 518 | #if ENABLE_FEATURE_SH_STANDALONE |
| 519 | struct nofork_save_area nofork_save; |
| 520 | #endif |
| 521 | #if ENABLE_HUSH_JOB |
| 522 | sigjmp_buf toplevel_jb; |
| 523 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 524 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 525 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 526 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 527 | * (too many defines). Also, I actually prefer to see when a variable |
| 528 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 529 | #define INIT_G() do { \ |
| 530 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 531 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 532 | |
| 533 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 534 | /* Function prototypes for builtins */ |
| 535 | static int builtin_cd(char **argv); |
| 536 | static int builtin_echo(char **argv); |
| 537 | static int builtin_eval(char **argv); |
| 538 | static int builtin_exec(char **argv); |
| 539 | static int builtin_exit(char **argv); |
| 540 | static int builtin_export(char **argv); |
| 541 | #if ENABLE_HUSH_JOB |
| 542 | static int builtin_fg_bg(char **argv); |
| 543 | static int builtin_jobs(char **argv); |
| 544 | #endif |
| 545 | #if ENABLE_HUSH_HELP |
| 546 | static int builtin_help(char **argv); |
| 547 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 548 | #if HUSH_DEBUG |
| 549 | static int builtin_memleak(char **argv); |
| 550 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 551 | static int builtin_pwd(char **argv); |
| 552 | static int builtin_read(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 553 | static int builtin_set(char **argv); |
| 554 | static int builtin_shift(char **argv); |
| 555 | static int builtin_source(char **argv); |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 556 | static int builtin_test(char **argv); |
| 557 | static int builtin_trap(char **argv); |
| 558 | static int builtin_true(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 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 |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 614 | #if HUSH_DEBUG |
| 615 | BLTIN("memleak" , builtin_memleak , "Debug tool"), |
| 616 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 617 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 618 | BLTIN("read" , builtin_read , "Input environment variable"), |
| 619 | // BLTIN("return" , builtin_return , "Return from a function"), |
| 620 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 621 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 622 | BLTIN("test" , builtin_test , "Test condition"), |
| 623 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 624 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 625 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 626 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 627 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 628 | }; |
| 629 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 630 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 631 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 632 | */ |
| 633 | #if LEAK_HUNTING |
| 634 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 635 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 636 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 637 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 638 | return ptr; |
| 639 | } |
| 640 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 641 | { |
| 642 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 643 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 644 | return ptr; |
| 645 | } |
| 646 | static char *xxstrdup(int lineno, const char *str) |
| 647 | { |
| 648 | char *ptr = xstrdup(str); |
| 649 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 650 | return ptr; |
| 651 | } |
| 652 | static void xxfree(void *ptr) |
| 653 | { |
| 654 | fdprintf(2, "free %p\n", ptr); |
| 655 | free(ptr); |
| 656 | } |
| 657 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 658 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 659 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 660 | #define free(p) xxfree(p) |
| 661 | #endif |
| 662 | |
| 663 | |
| 664 | /* Syntax and runtime errors. They always abort scripts. |
| 665 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 666 | * and return to the prompt. |
| 667 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 668 | */ |
| 669 | #if HUSH_DEBUG < 2 |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 670 | # define die_if_script(lineno, fmt...) die_if_script(fmt) |
| 671 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 672 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 673 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 674 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 675 | #endif |
| 676 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 677 | static void die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 678 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 679 | va_list p; |
| 680 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 681 | #if HUSH_DEBUG >= 2 |
| 682 | bb_error_msg("hush.c:%u", lineno); |
| 683 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 684 | va_start(p, fmt); |
| 685 | bb_verror_msg(fmt, p, NULL); |
| 686 | va_end(p); |
| 687 | if (!G_interactive_fd) |
| 688 | xfunc_die(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 689 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 690 | |
| 691 | static void syntax_error(unsigned lineno, const char *msg) |
| 692 | { |
| 693 | if (msg) |
| 694 | die_if_script(lineno, "syntax error: %s", msg); |
| 695 | else |
| 696 | die_if_script(lineno, "syntax error", NULL); |
| 697 | } |
| 698 | |
| 699 | static void syntax_error_at(unsigned lineno, const char *msg) |
| 700 | { |
| 701 | die_if_script(lineno, "syntax error at '%s'", msg); |
| 702 | } |
| 703 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 704 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 705 | { |
| 706 | char msg[2]; |
| 707 | msg[0] = ch; |
| 708 | msg[1] = '\0'; |
| 709 | die_if_script(lineno, "syntax error: unterminated %s", msg); |
| 710 | } |
| 711 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 712 | static void syntax_error_unterm_str(unsigned lineno, const char *s) |
| 713 | { |
| 714 | die_if_script(lineno, "syntax error: unterminated %s", s); |
| 715 | } |
| 716 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 717 | #if HUSH_DEBUG < 2 |
| 718 | # undef die_if_script |
| 719 | # undef syntax_error |
| 720 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 721 | # undef syntax_error_unterm_ch |
| 722 | # undef syntax_error_unterm_str |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 723 | #else |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 724 | # define die_if_script(fmt...) die_if_script(__LINE__, fmt) |
| 725 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 726 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 727 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 728 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 729 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 730 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 731 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 732 | /* Utility functions |
| 733 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 734 | static int glob_needed(const char *s) |
| 735 | { |
| 736 | while (*s) { |
| 737 | if (*s == '\\') |
| 738 | s++; |
| 739 | if (*s == '*' || *s == '[' || *s == '?') |
| 740 | return 1; |
| 741 | s++; |
| 742 | } |
| 743 | return 0; |
| 744 | } |
| 745 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 746 | static int is_well_formed_var_name(const char *s, char terminator) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 747 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 748 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 749 | return 0; |
| 750 | s++; |
| 751 | while (isalnum(*s) || *s == '_') |
| 752 | s++; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 753 | return *s == terminator; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 754 | } |
| 755 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 756 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 757 | static char *unbackslash(char *src) |
| 758 | { |
| 759 | char *dst = src; |
| 760 | while (1) { |
| 761 | if (*src == '\\') |
| 762 | src++; |
| 763 | if ((*dst++ = *src++) == '\0') |
| 764 | break; |
| 765 | } |
| 766 | return dst; |
| 767 | } |
| 768 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 769 | 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] | 770 | { |
| 771 | int i; |
| 772 | unsigned count1; |
| 773 | unsigned count2; |
| 774 | char **v; |
| 775 | |
| 776 | v = strings; |
| 777 | count1 = 0; |
| 778 | if (v) { |
| 779 | while (*v) { |
| 780 | count1++; |
| 781 | v++; |
| 782 | } |
| 783 | } |
| 784 | count2 = 0; |
| 785 | v = add; |
| 786 | while (*v) { |
| 787 | count2++; |
| 788 | v++; |
| 789 | } |
| 790 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 791 | v[count1 + count2] = NULL; |
| 792 | i = count2; |
| 793 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 794 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 795 | return v; |
| 796 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 797 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 798 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 799 | { |
| 800 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 801 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 802 | return ptr; |
| 803 | } |
| 804 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 805 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 806 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 807 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 808 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 809 | { |
| 810 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 811 | v[0] = add; |
| 812 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 813 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 814 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 815 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 816 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 817 | { |
| 818 | char **ptr = add_string_to_strings(strings, add); |
| 819 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 820 | return ptr; |
| 821 | } |
| 822 | #define add_string_to_strings(strings, add) \ |
| 823 | xx_add_string_to_strings(__LINE__, strings, add) |
| 824 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 825 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 826 | static void putenv_all(char **strings) |
| 827 | { |
| 828 | if (!strings) |
| 829 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 830 | while (*strings) { |
| 831 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 832 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 833 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static char **putenv_all_and_save_old(char **strings) |
| 837 | { |
| 838 | char **old = NULL; |
| 839 | char **s = strings; |
| 840 | |
| 841 | if (!strings) |
| 842 | return old; |
| 843 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 844 | char *v, *eq; |
| 845 | |
| 846 | eq = strchr(*strings, '='); |
| 847 | if (eq) { |
| 848 | *eq = '\0'; |
| 849 | v = getenv(*strings); |
| 850 | *eq = '='; |
| 851 | if (v) { |
| 852 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 853 | v -= (eq - *strings) + 1; |
| 854 | old = add_string_to_strings(old, v); |
| 855 | } |
| 856 | } |
| 857 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 858 | } |
| 859 | putenv_all(s); |
| 860 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 863 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 864 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 865 | char **v; |
| 866 | |
| 867 | if (!strings) |
| 868 | return; |
| 869 | |
| 870 | v = strings; |
| 871 | while (*v) { |
| 872 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 873 | debug_printf_env("unsetenv '%s'\n", *v); |
| 874 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 875 | } |
| 876 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 877 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 878 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 879 | } |
| 880 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 881 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 882 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 883 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 884 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 885 | |
| 886 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 887 | /* Basic theory of signal handling in shell |
| 888 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 889 | * This does not describe what hush does, rather, it is current understanding |
| 890 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 891 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 892 | * |
| 893 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 894 | * is finished or backgrounded. It is the same in interactive and |
| 895 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 896 | * 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] | 897 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 898 | * backgrounds (i.e. stops) or kills all members of currently running |
| 899 | * pipe. |
| 900 | * |
| 901 | * Wait builtin in interruptible by signals for which user trap is set |
| 902 | * or by SIGINT in interactive shell. |
| 903 | * |
| 904 | * Trap handlers will execute even within trap handlers. (right?) |
| 905 | * |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 906 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 907 | * |
| 908 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 909 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 910 | * |
| 911 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 912 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 913 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 914 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 915 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 916 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 917 | * Siganls which differ from SIG_DFL action |
| 918 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 919 | * |
| 920 | * SIGQUIT: ignore |
| 921 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 922 | * SIGHUP (interactive): |
| 923 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 924 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 925 | * (note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 926 | * that all pipe members are stopped) (right?) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 927 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 928 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 929 | * to interactive shell while shell is waiting for a pipe, |
| 930 | * since shell is bg'ed (is not in foreground process group). |
| 931 | * (check/expand this) |
| 932 | * Example 1: this waits 5 sec, but does not execute ls: |
| 933 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 934 | * Example 2: this does not wait and does not execute ls: |
| 935 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 936 | * Example 3: this does not wait 5 sec, but executes ls: |
| 937 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 938 | * |
| 939 | * (What happens to signals which are IGN on shell start?) |
| 940 | * (What happens with signal mask on shell start?) |
| 941 | * |
| 942 | * Implementation in hush |
| 943 | * ====================== |
| 944 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 945 | * We block all signals which we don't want to take action immediately, |
| 946 | * i.e. we block all signals which need to have special handling as described |
| 947 | * above, and all signals which have traps set. |
| 948 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 949 | * and act on them. |
| 950 | * |
| 951 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 952 | * sigset_t blocked_set: current blocked signal set |
| 953 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 954 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 955 | * 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] | 956 | * "trap 'cmd' SIGxxx": |
| 957 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 958 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 959 | * nothing for {} child shell (say, "true | { true; true; } | true") |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 960 | * unset all traps if () shell. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 961 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 962 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 963 | * 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] | 964 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 965 | * Note: as a result, we do not use signal handlers much. The only uses |
| 966 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 967 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 968 | */ |
| 969 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 970 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 971 | //{ |
| 972 | // G.count_SIGCHLD++; |
| 973 | //} |
| 974 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 975 | static int check_and_run_traps(int sig) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 976 | { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 977 | static const struct timespec zero_timespec = { 0, 0 }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 978 | smalluint save_rcode; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 979 | int last_sig = 0; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 980 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 981 | if (sig) |
| 982 | goto jump_in; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 983 | while (1) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 984 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 985 | if (sig <= 0) |
| 986 | break; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 987 | jump_in: |
| 988 | last_sig = sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 989 | if (G.traps && G.traps[sig]) { |
| 990 | if (G.traps[sig][0]) { |
| 991 | /* We have user-defined handler */ |
| 992 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 993 | save_rcode = G.last_exitcode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 994 | builtin_eval(argv); |
| 995 | free(argv[1]); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 996 | G.last_exitcode = save_rcode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 997 | } /* else: "" trap, ignoring signal */ |
| 998 | continue; |
| 999 | } |
| 1000 | /* not a trap: special action */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1001 | switch (sig) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1002 | // case SIGCHLD: |
| 1003 | // G.count_SIGCHLD++; |
| 1004 | // break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1005 | case SIGINT: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1006 | bb_putchar('\n'); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1007 | G.flag_SIGINT = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1008 | break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1009 | //TODO |
| 1010 | // case SIGHUP: ... |
| 1011 | // break; |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 1012 | default: /* ignored: */ |
| 1013 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1014 | break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1015 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1016 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1017 | return last_sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1018 | } |
| 1019 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 1020 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1021 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1022 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
| 1023 | #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1024 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1025 | #define enable_restore_tty_pgrp_on_exit() (die_sleep = -1) |
| 1026 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1027 | /* Restores tty foreground process group, and exits. |
| 1028 | * May be called as signal handler for fatal signal |
| 1029 | * (will faithfully resend signal to itself, producing correct exit state) |
| 1030 | * or called directly with -EXITCODE. |
| 1031 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1032 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1033 | static void sigexit(int sig) |
| 1034 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1035 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 1036 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1037 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1038 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1039 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1040 | if (G_interactive_fd && getpid() == G.root_pid) |
| 1041 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1042 | |
| 1043 | /* Not a signal, just exit */ |
| 1044 | if (sig <= 0) |
| 1045 | _exit(- sig); |
| 1046 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1047 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1048 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1049 | #else |
| 1050 | |
| 1051 | #define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1052 | #define enable_restore_tty_pgrp_on_exit() ((void)0) |
| 1053 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1054 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1055 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1056 | /* Restores tty foreground process group, and exits. */ |
| 1057 | static void hush_exit(int exitcode) NORETURN; |
| 1058 | static void hush_exit(int exitcode) |
| 1059 | { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1060 | if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) { |
| 1061 | /* Prevent recursion: |
| 1062 | * trap "echo Hi; exit" EXIT; exit |
| 1063 | */ |
| 1064 | char *argv[] = { NULL, G.traps[0], NULL }; |
| 1065 | G.traps[0] = NULL; |
| 1066 | G.exiting = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1067 | builtin_eval(argv); |
| 1068 | free(argv[1]); |
| 1069 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1070 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1071 | #if ENABLE_HUSH_JOB |
| 1072 | fflush(NULL); /* flush all streams */ |
| 1073 | sigexit(- (exitcode & 0xff)); |
| 1074 | #else |
| 1075 | exit(exitcode); |
| 1076 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1079 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1080 | static const char *set_cwd(void) |
| 1081 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1082 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1083 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1084 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1085 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1086 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1087 | if (!G.cwd) |
| 1088 | G.cwd = bb_msg_unknown; |
| 1089 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1090 | } |
| 1091 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1092 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1093 | /* Get/check local shell variables */ |
| 1094 | static struct variable *get_local_var(const char *name) |
| 1095 | { |
| 1096 | struct variable *cur; |
| 1097 | int len; |
| 1098 | |
| 1099 | if (!name) |
| 1100 | return NULL; |
| 1101 | len = strlen(name); |
| 1102 | for (cur = G.top_var; cur; cur = cur->next) { |
| 1103 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 1104 | return cur; |
| 1105 | } |
| 1106 | return NULL; |
| 1107 | } |
| 1108 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1109 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1110 | { |
| 1111 | struct variable *var = get_local_var(src); |
| 1112 | if (var) |
| 1113 | return strchr(var->varstr, '=') + 1; |
| 1114 | return NULL; |
| 1115 | } |
| 1116 | |
| 1117 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1118 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1119 | * flg_export: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1120 | * 0: do not export |
| 1121 | * 1: export |
| 1122 | * -1: if NAME is set, leave export status alone |
| 1123 | * if NAME is not set, do not export |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1124 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1125 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1126 | #if BB_MMU |
| 1127 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1128 | set_local_var(str, flg_export) |
| 1129 | #endif |
| 1130 | 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] | 1131 | { |
| 1132 | struct variable *cur; |
| 1133 | char *value; |
| 1134 | int name_len; |
| 1135 | |
| 1136 | value = strchr(str, '='); |
| 1137 | if (!value) { /* not expected to ever happen? */ |
| 1138 | free(str); |
| 1139 | return -1; |
| 1140 | } |
| 1141 | |
| 1142 | name_len = value - str + 1; /* including '=' */ |
| 1143 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1144 | while (1) { |
| 1145 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1146 | if (!cur->next) { |
| 1147 | /* Bail out. Note that now cur points |
| 1148 | * to last var in linked list */ |
| 1149 | break; |
| 1150 | } |
| 1151 | cur = cur->next; |
| 1152 | continue; |
| 1153 | } |
| 1154 | /* We found an existing var with this name */ |
| 1155 | *value = '\0'; |
| 1156 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1157 | #if !BB_MMU |
| 1158 | if (!flg_read_only) |
| 1159 | #endif |
| 1160 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1161 | free(str); |
| 1162 | return -1; |
| 1163 | } |
| 1164 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1165 | unsetenv(str); /* just in case */ |
| 1166 | *value = '='; |
| 1167 | if (strcmp(cur->varstr, str) == 0) { |
| 1168 | free_and_exp: |
| 1169 | free(str); |
| 1170 | goto exp; |
| 1171 | } |
| 1172 | if (cur->max_len >= strlen(str)) { |
| 1173 | /* This one is from startup env, reuse space */ |
| 1174 | strcpy(cur->varstr, str); |
| 1175 | goto free_and_exp; |
| 1176 | } |
| 1177 | /* max_len == 0 signifies "malloced" var, which we can |
| 1178 | * (and has to) free */ |
| 1179 | if (!cur->max_len) |
| 1180 | free(cur->varstr); |
| 1181 | cur->max_len = 0; |
| 1182 | goto set_str_and_exp; |
| 1183 | } |
| 1184 | |
| 1185 | /* Not found - create next variable struct */ |
| 1186 | cur->next = xzalloc(sizeof(*cur)); |
| 1187 | cur = cur->next; |
| 1188 | |
| 1189 | set_str_and_exp: |
| 1190 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1191 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1192 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1193 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1194 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1195 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1196 | cur->flg_export = 1; |
| 1197 | if (cur->flg_export) { |
| 1198 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1199 | return putenv(cur->varstr); |
| 1200 | } |
| 1201 | return 0; |
| 1202 | } |
| 1203 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1204 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1205 | { |
| 1206 | struct variable *cur; |
| 1207 | struct variable *prev = prev; /* for gcc */ |
| 1208 | int name_len; |
| 1209 | |
| 1210 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1211 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1212 | name_len = strlen(name); |
| 1213 | cur = G.top_var; |
| 1214 | while (cur) { |
| 1215 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1216 | if (cur->flg_read_only) { |
| 1217 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1218 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1219 | } |
| 1220 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1221 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1222 | prev->next = cur->next; |
| 1223 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1224 | bb_unsetenv(cur->varstr); |
| 1225 | if (!cur->max_len) |
| 1226 | free(cur->varstr); |
| 1227 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1228 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1229 | } |
| 1230 | prev = cur; |
| 1231 | cur = cur->next; |
| 1232 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1233 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1234 | } |
| 1235 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1236 | #if ENABLE_SH_MATH_SUPPORT |
| 1237 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1238 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1239 | static char *endofname(const char *name) |
| 1240 | { |
| 1241 | char *p; |
| 1242 | |
| 1243 | p = (char *) name; |
| 1244 | if (!is_name(*p)) |
| 1245 | return p; |
| 1246 | while (*++p) { |
| 1247 | if (!is_in_name(*p)) |
| 1248 | break; |
| 1249 | } |
| 1250 | return p; |
| 1251 | } |
| 1252 | |
| 1253 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1254 | { |
| 1255 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1256 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1257 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1258 | } |
| 1259 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1260 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1261 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1262 | /* |
| 1263 | * in_str support |
| 1264 | */ |
| 1265 | static int static_get(struct in_str *i) |
| 1266 | { |
| 1267 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1268 | if (ch != '\0') |
| 1269 | return ch; |
| 1270 | i->p--; |
| 1271 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | static int static_peek(struct in_str *i) |
| 1275 | { |
| 1276 | return *i->p; |
| 1277 | } |
| 1278 | |
| 1279 | #if ENABLE_HUSH_INTERACTIVE |
| 1280 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1281 | static void cmdedit_set_initial_prompt(void) |
| 1282 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1283 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1284 | G.PS1 = getenv("PS1"); |
| 1285 | if (G.PS1 == NULL) |
| 1286 | G.PS1 = "\\w \\$ "; |
| 1287 | } else |
| 1288 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1289 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1290 | |
| 1291 | static const char* setup_prompt_string(int promptmode) |
| 1292 | { |
| 1293 | const char *prompt_str; |
| 1294 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1295 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1296 | /* Set up the prompt */ |
| 1297 | if (promptmode == 0) { /* PS1 */ |
| 1298 | free((char*)G.PS1); |
| 1299 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1300 | prompt_str = G.PS1; |
| 1301 | } else |
| 1302 | prompt_str = G.PS2; |
| 1303 | } else |
| 1304 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1305 | debug_printf("result '%s'\n", prompt_str); |
| 1306 | return prompt_str; |
| 1307 | } |
| 1308 | |
| 1309 | static void get_user_input(struct in_str *i) |
| 1310 | { |
| 1311 | int r; |
| 1312 | const char *prompt_str; |
| 1313 | |
| 1314 | prompt_str = setup_prompt_string(i->promptmode); |
| 1315 | #if ENABLE_FEATURE_EDITING |
| 1316 | /* Enable command line editing only while a command line |
| 1317 | * is actually being read */ |
| 1318 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1319 | G.flag_SIGINT = 0; |
| 1320 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1321 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1322 | 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] | 1323 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1324 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1325 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1326 | i->eof_flag = (r < 0); |
| 1327 | if (i->eof_flag) { /* EOF/error detected */ |
| 1328 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1329 | G.user_input_buf[1] = '\0'; |
| 1330 | } |
| 1331 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1332 | do { |
| 1333 | G.flag_SIGINT = 0; |
| 1334 | fputs(prompt_str, stdout); |
| 1335 | fflush(stdout); |
| 1336 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1337 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1338 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1339 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1340 | i->eof_flag = (r == EOF); |
| 1341 | #endif |
| 1342 | i->p = G.user_input_buf; |
| 1343 | } |
| 1344 | |
| 1345 | #endif /* INTERACTIVE */ |
| 1346 | |
| 1347 | /* This is the magic location that prints prompts |
| 1348 | * and gets data back from the user */ |
| 1349 | static int file_get(struct in_str *i) |
| 1350 | { |
| 1351 | int ch; |
| 1352 | |
| 1353 | /* If there is data waiting, eat it up */ |
| 1354 | if (i->p && *i->p) { |
| 1355 | #if ENABLE_HUSH_INTERACTIVE |
| 1356 | take_cached: |
| 1357 | #endif |
| 1358 | ch = *i->p++; |
| 1359 | if (i->eof_flag && !*i->p) |
| 1360 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1361 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1362 | } else { |
| 1363 | /* need to double check i->file because we might be doing something |
| 1364 | * more complicated by now, like sourcing or substituting. */ |
| 1365 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1366 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1367 | do { |
| 1368 | get_user_input(i); |
| 1369 | } while (!*i->p); /* need non-empty line */ |
| 1370 | i->promptmode = 1; /* PS2 */ |
| 1371 | i->promptme = 0; |
| 1372 | goto take_cached; |
| 1373 | } |
| 1374 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1375 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1376 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1377 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1378 | #if ENABLE_HUSH_INTERACTIVE |
| 1379 | if (ch == '\n') |
| 1380 | i->promptme = 1; |
| 1381 | #endif |
| 1382 | return ch; |
| 1383 | } |
| 1384 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1385 | /* All callers guarantee this routine will never |
| 1386 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1387 | */ |
| 1388 | static int file_peek(struct in_str *i) |
| 1389 | { |
| 1390 | int ch; |
| 1391 | if (i->p && *i->p) { |
| 1392 | if (i->eof_flag && !i->p[1]) |
| 1393 | return EOF; |
| 1394 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1395 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1396 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1397 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1398 | i->eof_flag = (ch == EOF); |
| 1399 | i->peek_buf[0] = ch; |
| 1400 | i->peek_buf[1] = '\0'; |
| 1401 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1402 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1403 | return ch; |
| 1404 | } |
| 1405 | |
| 1406 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1407 | { |
| 1408 | i->peek = file_peek; |
| 1409 | i->get = file_get; |
| 1410 | #if ENABLE_HUSH_INTERACTIVE |
| 1411 | i->promptme = 1; |
| 1412 | i->promptmode = 0; /* PS1 */ |
| 1413 | #endif |
| 1414 | i->file = f; |
| 1415 | i->p = NULL; |
| 1416 | } |
| 1417 | |
| 1418 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1419 | { |
| 1420 | i->peek = static_peek; |
| 1421 | i->get = static_get; |
| 1422 | #if ENABLE_HUSH_INTERACTIVE |
| 1423 | i->promptme = 1; |
| 1424 | i->promptmode = 0; /* PS1 */ |
| 1425 | #endif |
| 1426 | i->p = s; |
| 1427 | i->eof_flag = 0; |
| 1428 | } |
| 1429 | |
| 1430 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1431 | /* |
| 1432 | * o_string support |
| 1433 | */ |
| 1434 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1435 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1436 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1437 | { |
| 1438 | o->length = 0; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1439 | o->o_quoted = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1440 | if (o->data) |
| 1441 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1444 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1445 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1446 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1447 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1450 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1451 | { |
| 1452 | free(o->data); |
| 1453 | } |
| 1454 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1455 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1456 | { |
| 1457 | if (o->length + len > o->maxlen) { |
| 1458 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1459 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1460 | } |
| 1461 | } |
| 1462 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1463 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1464 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1465 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1466 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1467 | o->data[o->length] = ch; |
| 1468 | o->length++; |
| 1469 | o->data[o->length] = '\0'; |
| 1470 | } |
| 1471 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1472 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1473 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1474 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1475 | memcpy(&o->data[o->length], str, len); |
| 1476 | o->length += len; |
| 1477 | o->data[o->length] = '\0'; |
| 1478 | } |
| 1479 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1480 | #if !BB_MMU |
| 1481 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1482 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1483 | o_addblock(o, str, strlen(str)); |
| 1484 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1485 | static void nommu_addchr(o_string *o, int ch) |
| 1486 | { |
| 1487 | if (o) |
| 1488 | o_addchr(o, ch); |
| 1489 | } |
| 1490 | #else |
| 1491 | #define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1492 | #endif |
| 1493 | |
| 1494 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1495 | { |
| 1496 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1497 | } |
| 1498 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1499 | 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] | 1500 | { |
| 1501 | while (len) { |
| 1502 | o_addchr(o, *str); |
| 1503 | if (*str++ == '\\' |
| 1504 | && (*str != '*' && *str != '?' && *str != '[') |
| 1505 | ) { |
| 1506 | o_addchr(o, '\\'); |
| 1507 | } |
| 1508 | len--; |
| 1509 | } |
| 1510 | } |
| 1511 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1512 | /* My analysis of quoting semantics tells me that state information |
| 1513 | * is associated with a destination, not a source. |
| 1514 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1515 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1516 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1517 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1518 | char *found = strchr("*?[\\", ch); |
| 1519 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1520 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1521 | o_grow_by(o, sz); |
| 1522 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1523 | o->data[o->length] = '\\'; |
| 1524 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1525 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1526 | o->data[o->length] = ch; |
| 1527 | o->length++; |
| 1528 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1529 | } |
| 1530 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1531 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1532 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1533 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1534 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1535 | sz++; |
| 1536 | o->data[o->length] = '\\'; |
| 1537 | o->length++; |
| 1538 | } |
| 1539 | o_grow_by(o, sz); |
| 1540 | o->data[o->length] = ch; |
| 1541 | o->length++; |
| 1542 | o->data[o->length] = '\0'; |
| 1543 | } |
| 1544 | |
| 1545 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1546 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1547 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1548 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1549 | return; |
| 1550 | } |
| 1551 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1552 | char ch; |
| 1553 | int sz; |
| 1554 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1555 | if (ordinary_cnt > len) /* paranoia */ |
| 1556 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1557 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1558 | if (ordinary_cnt == len) |
| 1559 | return; |
| 1560 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1561 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1562 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1563 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1564 | sz = 1; |
| 1565 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1566 | sz++; |
| 1567 | o->data[o->length] = '\\'; |
| 1568 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1569 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1570 | o_grow_by(o, sz); |
| 1571 | o->data[o->length] = ch; |
| 1572 | o->length++; |
| 1573 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1574 | } |
| 1575 | } |
| 1576 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1577 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1578 | * 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] | 1579 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1580 | * list[i] contains an INDEX (int!) into this string data. |
| 1581 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1582 | * but list[i]'s need not be modified. |
| 1583 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1584 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1585 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1586 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1587 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1588 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1589 | { |
| 1590 | char **list = (char**)o->data; |
| 1591 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1592 | int i = 0; |
| 1593 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1594 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1595 | while (i < n) { |
| 1596 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1597 | o->data + (int)list[i] + string_start, |
| 1598 | o->data + (int)list[i] + string_start); |
| 1599 | i++; |
| 1600 | } |
| 1601 | if (n) { |
| 1602 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1603 | 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] | 1604 | } |
| 1605 | } |
| 1606 | #else |
| 1607 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1608 | #endif |
| 1609 | |
| 1610 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1611 | * in list[n] so that it points past last stored byte so far. |
| 1612 | * It returns n+1. */ |
| 1613 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1614 | { |
| 1615 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1616 | int string_start; |
| 1617 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1618 | |
| 1619 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1620 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1621 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1622 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1623 | 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] | 1624 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1625 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1626 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1627 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1628 | memmove(list + n + 0x10, list + n, string_len); |
| 1629 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1630 | } else { |
| 1631 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1632 | n, string_len, string_start); |
| 1633 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1634 | } else { |
| 1635 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1636 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1637 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1638 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1639 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1640 | o->has_empty_slot = 0; |
| 1641 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1642 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1643 | return n + 1; |
| 1644 | } |
| 1645 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1646 | /* "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] | 1647 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1648 | { |
| 1649 | char **list = (char**)o->data; |
| 1650 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1651 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1652 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1653 | } |
| 1654 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1655 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1656 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1657 | static int o_glob(o_string *o, int n) |
| 1658 | { |
| 1659 | glob_t globdata; |
| 1660 | int gr; |
| 1661 | char *pattern; |
| 1662 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1663 | 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] | 1664 | if (!o->data) |
| 1665 | return o_save_ptr_helper(o, n); |
| 1666 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1667 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1668 | if (!glob_needed(pattern)) { |
| 1669 | literal: |
| 1670 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1671 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1672 | return o_save_ptr_helper(o, n); |
| 1673 | } |
| 1674 | |
| 1675 | memset(&globdata, 0, sizeof(globdata)); |
| 1676 | gr = glob(pattern, 0, NULL, &globdata); |
| 1677 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1678 | if (gr == GLOB_NOSPACE) |
| 1679 | bb_error_msg_and_die("out of memory during glob"); |
| 1680 | if (gr == GLOB_NOMATCH) { |
| 1681 | globfree(&globdata); |
| 1682 | goto literal; |
| 1683 | } |
| 1684 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1685 | //TODO: testcase for bad glob pattern behavior |
| 1686 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1687 | } |
| 1688 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1689 | char **argv = globdata.gl_pathv; |
| 1690 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1691 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1692 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1693 | n = o_save_ptr_helper(o, n); |
| 1694 | argv++; |
| 1695 | if (!*argv) |
| 1696 | break; |
| 1697 | } |
| 1698 | } |
| 1699 | globfree(&globdata); |
| 1700 | if (DEBUG_GLOB) |
| 1701 | debug_print_list("o_glob returning", o, n); |
| 1702 | return n; |
| 1703 | } |
| 1704 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1705 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1706 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1707 | static int o_save_ptr(o_string *o, int n) |
| 1708 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1709 | if (o->o_glob) { /* if globbing is requested */ |
| 1710 | /* If o->has_empty_slot, list[n] was already globbed |
| 1711 | * (if it was requested back then when it was filled) |
| 1712 | * so don't do that again! */ |
| 1713 | if (!o->has_empty_slot) |
| 1714 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1715 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1716 | return o_save_ptr_helper(o, n); |
| 1717 | } |
| 1718 | |
| 1719 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1720 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1721 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1722 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1723 | int string_start; |
| 1724 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1725 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1726 | if (DEBUG_EXPAND) |
| 1727 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1728 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1729 | list = (char**)o->data; |
| 1730 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1731 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1732 | while (n) { |
| 1733 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1734 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1735 | } |
| 1736 | return list; |
| 1737 | } |
| 1738 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1739 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1740 | /* Expansion can recurse */ |
| 1741 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1742 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1743 | #endif |
| 1744 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1745 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1746 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1747 | parse_stream_dquoted(dest, input, dquote_end) |
| 1748 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1749 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1750 | o_string *dest, |
| 1751 | struct in_str *input, |
| 1752 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1753 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1754 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1755 | * all variable references within and returns a pointer to |
| 1756 | * a list of expanded strings, possibly with larger number |
| 1757 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1758 | * This new list is allocated as a single malloc block. |
| 1759 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1760 | * followed by strings themself. |
| 1761 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1762 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1763 | /* Store given string, finalizing the word and starting new one whenever |
| 1764 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1765 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1766 | 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] | 1767 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1768 | while (1) { |
| 1769 | int word_len = strcspn(str, G.ifs); |
| 1770 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1771 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1772 | o_addQstr(output, str, word_len); |
| 1773 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1774 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1775 | str += word_len; |
| 1776 | } |
| 1777 | if (!*str) /* EOL - do not finalize word */ |
| 1778 | break; |
| 1779 | o_addchr(output, '\0'); |
| 1780 | debug_print_list("expand_on_ifs", output, n); |
| 1781 | n = o_save_ptr(output, n); |
| 1782 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1783 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1784 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1785 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1786 | } |
| 1787 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1788 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 1789 | * they are in double quotes, with the exception that they are not :). |
| 1790 | * Just the rules are similar: "expand only $var and `cmd`" |
| 1791 | * |
| 1792 | * Returns malloced string. |
| 1793 | * As an optimization, we return NULL if expansion is not needed. |
| 1794 | */ |
| 1795 | static char *expand_pseudo_dquoted(const char *str) |
| 1796 | { |
| 1797 | char *exp_str; |
| 1798 | struct in_str input; |
| 1799 | o_string dest = NULL_O_STRING; |
| 1800 | |
| 1801 | if (strchr(str, '$') == NULL |
| 1802 | #if ENABLE_HUSH_TICK |
| 1803 | && strchr(str, '`') == NULL |
| 1804 | #endif |
| 1805 | ) { |
| 1806 | return NULL; |
| 1807 | } |
| 1808 | |
| 1809 | /* We need to expand. Example: |
| 1810 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 1811 | */ |
| 1812 | setup_string_in_str(&input, str); |
| 1813 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
| 1814 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
| 1815 | exp_str = expand_string_to_string(dest.data); |
| 1816 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 1817 | o_free_unsafe(&dest); |
| 1818 | return exp_str; |
| 1819 | } |
| 1820 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1821 | /* Expand all variable references in given string, adding words to list[] |
| 1822 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1823 | * to be filled). This routine is extremely tricky: has to deal with |
| 1824 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1825 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1826 | 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] | 1827 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1828 | /* or_mask is either 0 (normal case) or 0x80 |
| 1829 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1830 | * 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] | 1831 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1832 | char first_ch, ored_ch; |
| 1833 | int i; |
| 1834 | const char *val; |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1835 | char *dyn_val, *p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1836 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1837 | dyn_val = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1838 | ored_ch = 0; |
| 1839 | |
| 1840 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1841 | debug_print_list("expand_vars_to_list", output, n); |
| 1842 | n = o_save_ptr(output, n); |
| 1843 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1844 | |
| 1845 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1846 | #if ENABLE_HUSH_TICK |
| 1847 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1848 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1849 | #if ENABLE_SH_MATH_SUPPORT |
| 1850 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1851 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1852 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1853 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1854 | arg = ++p; |
| 1855 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1856 | |
| 1857 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1858 | /* "$@" is special. Even if quoted, it can still |
| 1859 | * expand to nothing (not even an empty string) */ |
| 1860 | if ((first_ch & 0x7f) != '@') |
| 1861 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1862 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1863 | val = NULL; |
| 1864 | switch (first_ch & 0x7f) { |
| 1865 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1866 | case '$': /* pid */ |
| 1867 | val = utoa(G.root_pid); |
| 1868 | break; |
| 1869 | case '!': /* bg pid */ |
| 1870 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1871 | break; |
| 1872 | case '?': /* exitcode */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 1873 | val = utoa(G.last_exitcode); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1874 | break; |
| 1875 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1876 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1877 | /* actually, it's a ${#var} */ |
| 1878 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1879 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1880 | break; |
| 1881 | case '*': |
| 1882 | case '@': |
| 1883 | i = 1; |
| 1884 | if (!G.global_argv[i]) |
| 1885 | break; |
| 1886 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1887 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1888 | smallint sv = output->o_escape; |
| 1889 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1890 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1891 | while (G.global_argv[i]) { |
| 1892 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1893 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1894 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1895 | /* this argv[] is not empty and not last: |
| 1896 | * put terminating NUL, start new word */ |
| 1897 | o_addchr(output, '\0'); |
| 1898 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1899 | n = o_save_ptr(output, n); |
| 1900 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1901 | } |
| 1902 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1903 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1904 | } else |
| 1905 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1906 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1907 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1908 | while (1) { |
| 1909 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1910 | if (++i >= G.global_argc) |
| 1911 | break; |
| 1912 | o_addchr(output, '\0'); |
| 1913 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1914 | n = o_save_ptr(output, n); |
| 1915 | } |
| 1916 | } else { /* quoted $*: add as one word */ |
| 1917 | while (1) { |
| 1918 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1919 | if (!G.global_argv[++i]) |
| 1920 | break; |
| 1921 | if (G.ifs[0]) |
| 1922 | o_addchr(output, G.ifs[0]); |
| 1923 | } |
| 1924 | } |
| 1925 | break; |
| 1926 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1927 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1928 | arg++; |
| 1929 | ored_ch = 0x80; |
| 1930 | break; |
| 1931 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1932 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1933 | *p = '\0'; |
| 1934 | arg++; |
| 1935 | //TODO: can we just stuff it into "output" directly? |
| 1936 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1937 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1938 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1939 | val = subst_result.data; |
| 1940 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1941 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1942 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1943 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1944 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1945 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1946 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1947 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1948 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1949 | arg++; /* skip '+' */ |
| 1950 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1951 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1952 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1953 | exp_str = expand_pseudo_dquoted(arg); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1954 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1955 | hooks.setvar = arith_set_local_var; |
| 1956 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1957 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 1958 | free(exp_str); |
| 1959 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1960 | if (errcode < 0) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1961 | const char *msg = "error in arithmetic"; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1962 | switch (errcode) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1963 | case -3: |
| 1964 | msg = "exponent less than 0"; |
| 1965 | break; |
| 1966 | case -2: |
| 1967 | msg = "divide by 0"; |
| 1968 | break; |
| 1969 | case -5: |
| 1970 | msg = "expression recursion loop detected"; |
| 1971 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1972 | } |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1973 | die_if_script(msg); |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1974 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1975 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1976 | sprintf(arith_buf, arith_t_fmt, res); |
| 1977 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1978 | break; |
| 1979 | } |
| 1980 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1981 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1982 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1983 | bool exp_len = false; |
| 1984 | bool exp_null = false; |
| 1985 | char *var = arg; |
| 1986 | char exp_save = exp_save; /* for compiler */ |
| 1987 | char exp_op = exp_op; /* for compiler */ |
| 1988 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1989 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1990 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1991 | *p = '\0'; |
| 1992 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1993 | |
| 1994 | /* prepare for expansions */ |
| 1995 | if (var[0] == '#') { |
| 1996 | /* handle length expansion ${#var} */ |
| 1997 | exp_len = true; |
| 1998 | ++var; |
| 1999 | } else { |
| 2000 | /* maybe handle parameter expansion */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2001 | exp_off = strcspn(var, ":-=+?%#"); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2002 | if (!var[exp_off]) |
| 2003 | exp_off = 0; |
| 2004 | if (exp_off) { |
| 2005 | exp_save = var[exp_off]; |
| 2006 | exp_null = exp_save == ':'; |
| 2007 | exp_word = var + exp_off; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2008 | if (exp_null) |
| 2009 | ++exp_word; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2010 | exp_op = *exp_word++; |
| 2011 | var[exp_off] = '\0'; |
| 2012 | } |
| 2013 | } |
| 2014 | |
| 2015 | /* lookup the variable in question */ |
| 2016 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 2017 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2018 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2019 | if (i < G.global_argc) |
| 2020 | val = G.global_argv[i]; |
| 2021 | /* else val remains NULL: $N with too big N */ |
| 2022 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2023 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2024 | |
| 2025 | /* handle any expansions */ |
| 2026 | if (exp_len) { |
| 2027 | debug_printf_expand("expand: length of '%s' = ", val); |
| 2028 | val = utoa(val ? strlen(val) : 0); |
| 2029 | debug_printf_expand("%s\n", val); |
| 2030 | } else if (exp_off) { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2031 | if (exp_op == '%' || exp_op == '#') { |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2032 | if (val) { |
| 2033 | /* we need to do a pattern match */ |
| 2034 | bool zero; |
| 2035 | char *loc; |
| 2036 | scan_t scan = pick_scan(exp_op, *exp_word, &zero); |
| 2037 | if (exp_op == *exp_word) /* ## or %% */ |
| 2038 | ++exp_word; |
| 2039 | val = dyn_val = xstrdup(val); |
| 2040 | loc = scan(dyn_val, exp_word, zero); |
| 2041 | if (zero) |
| 2042 | val = loc; |
| 2043 | else |
| 2044 | *loc = '\0'; |
| 2045 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2046 | } else { |
| 2047 | /* we need to do an expansion */ |
| 2048 | int exp_test = (!val || (exp_null && !val[0])); |
| 2049 | if (exp_op == '+') |
| 2050 | exp_test = !exp_test; |
| 2051 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 2052 | exp_null ? "true" : "false", exp_test); |
| 2053 | if (exp_test) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2054 | if (exp_op == '?') { |
| 2055 | //TODO: how interactive bash aborts expansion mid-command? |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2056 | /* ${var?[error_msg_if_unset]} */ |
| 2057 | /* ${var:?[error_msg_if_unset_or_null]} */ |
| 2058 | /* mimic bash message */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2059 | die_if_script("%s: %s", |
| 2060 | var, |
| 2061 | exp_word[0] ? exp_word : "parameter null or not set" |
| 2062 | ); |
| 2063 | } else { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2064 | val = exp_word; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2065 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2066 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2067 | if (exp_op == '=') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2068 | /* ${var=[word]} or ${var:=[word]} */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2069 | if (isdigit(var[0]) || var[0] == '#') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2070 | /* mimic bash message */ |
| 2071 | die_if_script("$%s: cannot assign in this way", var); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2072 | val = NULL; |
| 2073 | } else { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2074 | char *new_var = xasprintf("%s=%s", var, val); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2075 | set_local_var(new_var, -1, 0); |
| 2076 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2077 | } |
| 2078 | } |
| 2079 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2080 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2081 | var[exp_off] = exp_save; |
| 2082 | } |
| 2083 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2084 | arg[0] = first_ch; |
| 2085 | #if ENABLE_HUSH_TICK |
| 2086 | store_val: |
| 2087 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2088 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2089 | 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] | 2090 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2091 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2092 | smallint sv = output->o_escape; |
| 2093 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2094 | n = expand_on_ifs(output, n, val); |
| 2095 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2096 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2097 | } |
| 2098 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2099 | 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] | 2100 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2101 | } /* default: */ |
| 2102 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2103 | if (val) { |
| 2104 | o_addQstr(output, val, strlen(val)); |
| 2105 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2106 | free(dyn_val); |
| 2107 | dyn_val = NULL; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2108 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2109 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2110 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2111 | |
| 2112 | #if ENABLE_HUSH_TICK |
| 2113 | o_free(&subst_result); |
| 2114 | #endif |
| 2115 | arg = ++p; |
| 2116 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 2117 | |
| 2118 | if (arg[0]) { |
| 2119 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 2120 | /* this part is literal, and it was already pre-quoted |
| 2121 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2122 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2123 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 2124 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 2125 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 2126 | ) { |
| 2127 | n--; |
| 2128 | /* allow to reuse list[n] later without re-growth */ |
| 2129 | output->has_empty_slot = 1; |
| 2130 | } else { |
| 2131 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2132 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2133 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2134 | } |
| 2135 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2136 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2137 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2138 | int n; |
| 2139 | char **list; |
| 2140 | char **v; |
| 2141 | o_string output = NULL_O_STRING; |
| 2142 | |
| 2143 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2144 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2145 | /* (unquoted $var will temporarily switch it off) */ |
| 2146 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2147 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2148 | |
| 2149 | n = 0; |
| 2150 | v = argv; |
| 2151 | while (*v) { |
| 2152 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2153 | v++; |
| 2154 | } |
| 2155 | debug_print_list("expand_variables", &output, n); |
| 2156 | |
| 2157 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2158 | list = o_finalize_list(&output, n); |
| 2159 | debug_print_strings("expand_variables[1]", list); |
| 2160 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2161 | } |
| 2162 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2163 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2164 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2165 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2166 | } |
| 2167 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2168 | /* Used for expansion of right hand of assignments */ |
| 2169 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2170 | * "v=/bin/c*" */ |
| 2171 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2172 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2173 | char *argv[2], **list; |
| 2174 | |
| 2175 | argv[0] = (char*)str; |
| 2176 | argv[1] = NULL; |
| 2177 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2178 | if (HUSH_DEBUG) |
| 2179 | if (!list[0] || list[1]) |
| 2180 | bb_error_msg_and_die("BUG in varexp2"); |
| 2181 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2182 | overlapping_strcpy((char*)list, list[0]); |
| 2183 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2184 | return (char*)list; |
| 2185 | } |
| 2186 | |
| 2187 | /* Used for "eval" builtin */ |
| 2188 | static char* expand_strvec_to_string(char **argv) |
| 2189 | { |
| 2190 | char **list; |
| 2191 | |
| 2192 | list = expand_variables(argv, 0x80); |
| 2193 | /* Convert all NULs to spaces */ |
| 2194 | if (list[0]) { |
| 2195 | int n = 1; |
| 2196 | while (list[n]) { |
| 2197 | if (HUSH_DEBUG) |
| 2198 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2199 | bb_error_msg_and_die("BUG in varexp3"); |
| 2200 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 2201 | n++; |
| 2202 | } |
| 2203 | } |
| 2204 | overlapping_strcpy((char*)list, list[0]); |
| 2205 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2206 | return (char*)list; |
| 2207 | } |
| 2208 | |
| 2209 | static char **expand_assignments(char **argv, int count) |
| 2210 | { |
| 2211 | int i; |
| 2212 | char **p = NULL; |
| 2213 | /* Expand assignments into one string each */ |
| 2214 | for (i = 0; i < count; i++) { |
| 2215 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2216 | } |
| 2217 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2218 | } |
| 2219 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2220 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2221 | #if BB_MMU |
| 2222 | void re_execute_shell(const char *s, int is_heredoc); /* never called */ |
| 2223 | #define clean_up_after_re_execute() ((void)0) |
| 2224 | static void reset_traps_to_defaults(void) |
| 2225 | { |
| 2226 | unsigned sig; |
| 2227 | int dirty; |
| 2228 | |
| 2229 | if (!G.traps) |
| 2230 | return; |
| 2231 | dirty = 0; |
| 2232 | for (sig = 0; sig < NSIG; sig++) { |
| 2233 | if (!G.traps[sig]) |
| 2234 | continue; |
| 2235 | free(G.traps[sig]); |
| 2236 | G.traps[sig] = NULL; |
| 2237 | /* There is no signal for 0 (EXIT) */ |
| 2238 | if (sig == 0) |
| 2239 | continue; |
| 2240 | /* there was a trap handler, we are removing it |
| 2241 | * (if sig has non-DFL handling, |
| 2242 | * we don't need to do anything) */ |
| 2243 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 2244 | continue; |
| 2245 | sigdelset(&G.blocked_set, sig); |
| 2246 | dirty = 1; |
| 2247 | } |
| 2248 | if (dirty) |
| 2249 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 2250 | } |
| 2251 | |
| 2252 | #else /* !BB_MMU */ |
| 2253 | |
| 2254 | static void re_execute_shell(const char *s, int is_heredoc) NORETURN; |
| 2255 | static void re_execute_shell(const char *s, int is_heredoc) |
| 2256 | { |
| 2257 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2258 | char *heredoc_argv[4]; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2259 | struct variable *cur; |
| 2260 | char **argv, **pp, **pp2; |
| 2261 | unsigned cnt; |
| 2262 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2263 | if (is_heredoc) { |
| 2264 | argv = heredoc_argv; |
| 2265 | argv[0] = (char *) G.argv0_for_re_execing; |
| 2266 | argv[1] = (char *) "-<"; |
| 2267 | argv[2] = (char *) s; |
| 2268 | argv[3] = NULL; |
Denis Vlasenko | f50caac | 2009-04-09 01:40:15 +0000 | [diff] [blame] | 2269 | pp = &argv[3]; /* used as pointer to empty environment */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2270 | goto do_exec; |
| 2271 | } |
| 2272 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2273 | sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x") |
| 2274 | , (unsigned) G.root_pid |
| 2275 | , (unsigned) G.last_bg_pid |
| 2276 | , (unsigned) G.last_exitcode |
| 2277 | USE_HUSH_LOOPS(, G.depth_of_loop) |
| 2278 | ); |
| 2279 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> |
| 2280 | * 3:-c 4:<cmd> <argN...> 5:NULL |
| 2281 | */ |
| 2282 | cnt = 5 + G.global_argc; |
| 2283 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2284 | if (!cur->flg_export || cur->flg_read_only) |
| 2285 | cnt += 2; |
| 2286 | } |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2287 | G.argv_from_re_execing = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2288 | *pp++ = (char *) G.argv0_for_re_execing; |
| 2289 | *pp++ = param_buf; |
| 2290 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2291 | if (cur->varstr == hush_version_str) |
| 2292 | continue; |
| 2293 | if (cur->flg_read_only) { |
| 2294 | *pp++ = (char *) "-R"; |
| 2295 | *pp++ = cur->varstr; |
| 2296 | } else if (!cur->flg_export) { |
| 2297 | *pp++ = (char *) "-V"; |
| 2298 | *pp++ = cur->varstr; |
| 2299 | } |
| 2300 | } |
| 2301 | //TODO: pass functions |
| 2302 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2303 | * |
| 2304 | * However, POSIX says that subshells reset signals with traps |
| 2305 | * to SIG_DFL. |
| 2306 | * I tested bash-3.2 and it not only does that with true subshells |
| 2307 | * of the form ( list ), but with any forked children shells. |
| 2308 | * I set trap "echo W" WINCH; and then tried: |
| 2309 | * |
| 2310 | * { echo 1; sleep 20; echo 2; } & |
| 2311 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2312 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2313 | * |
| 2314 | * In all these cases sending SIGWINCH to the child shell |
| 2315 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2316 | * _inside_ group (just before echo 1), it works. |
| 2317 | * |
| 2318 | * I conclude it means we don't need to pass active traps here. |
| 2319 | * exec syscall below resets them to SIG_DFL for us. |
| 2320 | */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2321 | *pp++ = (char *) "-c"; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2322 | *pp++ = (char *) s; |
| 2323 | pp2 = G.global_argv; |
| 2324 | while (*pp2) |
| 2325 | *pp++ = *pp2++; |
| 2326 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2327 | pp = environ; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2328 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2329 | do_exec: |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2330 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
| 2331 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2332 | execve(bb_busybox_exec_path, argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2333 | /* Fallback. Useful for init=/bin/hush usage etc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2334 | if (argv[0][0] == '/') |
| 2335 | execve(argv[0], argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2336 | xfunc_error_retval = 127; |
| 2337 | bb_error_msg_and_die("can't re-execute the shell"); |
| 2338 | } |
| 2339 | |
| 2340 | static void clean_up_after_re_execute(void) |
| 2341 | { |
| 2342 | char **pp = G.argv_from_re_execing; |
| 2343 | if (pp) { |
| 2344 | /* Must match re_execute_shell's allocations (if any) */ |
| 2345 | free(pp); |
| 2346 | G.argv_from_re_execing = NULL; |
| 2347 | } |
| 2348 | } |
| 2349 | #endif /* !BB_MMU */ |
| 2350 | |
| 2351 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2352 | static void setup_heredoc(struct redir_struct *redir) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2353 | { |
| 2354 | struct fd_pair pair; |
| 2355 | pid_t pid; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2356 | int len, written; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2357 | /* the _body_ of heredoc (misleading field name) */ |
| 2358 | const char *heredoc = redir->rd_filename; |
| 2359 | char *expanded; |
| 2360 | |
| 2361 | expanded = NULL; |
| 2362 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
| 2363 | expanded = expand_pseudo_dquoted(heredoc); |
| 2364 | if (expanded) |
| 2365 | heredoc = expanded; |
| 2366 | } |
| 2367 | len = strlen(heredoc); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2368 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2369 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2370 | xpiped_pair(pair); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2371 | xmove_fd(pair.rd, redir->rd_fd); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2372 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2373 | /* Try writing without forking. Newer kernels have |
| 2374 | * dynamically growing pipes. Must use non-blocking write! */ |
| 2375 | ndelay_on(pair.wr); |
| 2376 | while (1) { |
| 2377 | written = write(pair.wr, heredoc, len); |
| 2378 | if (written <= 0) |
| 2379 | break; |
| 2380 | len -= written; |
| 2381 | if (len == 0) { |
| 2382 | close(pair.wr); |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 2383 | free(expanded); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2384 | return; |
| 2385 | } |
| 2386 | heredoc += written; |
| 2387 | } |
| 2388 | ndelay_off(pair.wr); |
| 2389 | |
| 2390 | /* Okay, pipe buffer was not big enough */ |
| 2391 | /* Note: we must not create a stray child (bastard? :) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2392 | * for the unsuspecting parent process. Child creates a grandchild |
| 2393 | * and exits before parent execs the process which consumes heredoc |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2394 | * (that exec happens after we return from this function) */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2395 | pid = vfork(); |
| 2396 | if (pid < 0) |
| 2397 | bb_perror_msg_and_die("vfork"); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2398 | if (pid == 0) { |
| 2399 | /* child */ |
| 2400 | pid = BB_MMU ? fork() : vfork(); |
| 2401 | if (pid < 0) |
| 2402 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
| 2403 | if (pid != 0) |
| 2404 | _exit(0); |
| 2405 | /* grandchild */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2406 | close(redir->rd_fd); /* read side of the pipe */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2407 | #if BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2408 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2409 | _exit(0); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2410 | #else |
| 2411 | /* Delegate blocking writes to another process */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2412 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2413 | xmove_fd(pair.wr, STDOUT_FILENO); |
| 2414 | re_execute_shell(heredoc, 1); |
| 2415 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2416 | } |
| 2417 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2418 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2419 | clean_up_after_re_execute(); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2420 | close(pair.wr); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2421 | free(expanded); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2422 | wait(NULL); /* wait till child has died */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2423 | } |
| 2424 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2425 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2426 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2427 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2428 | { |
| 2429 | int openfd, mode; |
| 2430 | struct redir_struct *redir; |
| 2431 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2432 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2433 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 2434 | /* rd_fd<<HERE case */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2435 | if (squirrel && redir->rd_fd < 3) { |
| 2436 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2437 | } |
| 2438 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 2439 | * of the heredoc */ |
| 2440 | debug_printf_parse("set heredoc '%s'\n", |
| 2441 | redir->rd_filename); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2442 | setup_heredoc(redir); |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2443 | continue; |
| 2444 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2445 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 2446 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
| 2447 | /* rd_fd<*>file case (<*> is <,>,>>,<>) */ |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2448 | char *p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2449 | if (redir->rd_filename == NULL) { |
| 2450 | /* Something went wrong in the parse. |
| 2451 | * Pretend it didn't happen */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 2452 | bb_error_msg("bug in redirect parse"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2453 | continue; |
| 2454 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2455 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2456 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2457 | openfd = open_or_warn(p, mode); |
| 2458 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2459 | if (openfd < 0) { |
| 2460 | /* this could get lost if stderr has been redirected, but |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2461 | * bash and ash both lose it as well (though zsh doesn't!) */ |
| 2462 | //what the above comment tries to say? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2463 | return 1; |
| 2464 | } |
| 2465 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 2466 | /* rd_fd<*>rd_dup or rd_fd<*>- cases */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2467 | openfd = redir->rd_dup; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2468 | } |
| 2469 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2470 | if (openfd != redir->rd_fd) { |
| 2471 | if (squirrel && redir->rd_fd < 3) { |
| 2472 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2473 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2474 | if (openfd == REDIRFD_CLOSE) { |
| 2475 | /* "n>-" means "close me" */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2476 | close(redir->rd_fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2477 | } else { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2478 | xdup2(openfd, redir->rd_fd); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 2479 | if (redir->rd_dup == REDIRFD_TO_FILE) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2480 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2481 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2482 | } |
| 2483 | } |
| 2484 | return 0; |
| 2485 | } |
| 2486 | |
| 2487 | static void restore_redirects(int squirrel[]) |
| 2488 | { |
| 2489 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2490 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2491 | fd = squirrel[i]; |
| 2492 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2493 | /* We simply die on error */ |
| 2494 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2495 | } |
| 2496 | } |
| 2497 | } |
| 2498 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2499 | |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 2500 | #if !DEBUG_CLEAN |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2501 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 2502 | #define free_pipe(pi, indent) free_pipe(pi) |
| 2503 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2504 | static void free_pipe_list(struct pipe *head, int indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2505 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2506 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2507 | static void free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2508 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2509 | char **p; |
| 2510 | struct command *command; |
| 2511 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2512 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2513 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2514 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2515 | return; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2516 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 2517 | for (i = 0; i < pi->num_cmds; i++) { |
| 2518 | command = &pi->cmds[i]; |
| 2519 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 2520 | if (command->argv) { |
| 2521 | for (a = 0, p = command->argv; *p; a++, p++) { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2522 | debug_printf_clean("%s argv[%d] = %s\n", |
| 2523 | indenter(indent), a, *p); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2524 | } |
| 2525 | free_strings(command->argv); |
| 2526 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2527 | } |
| 2528 | /* not "else if": on syntax error, we may have both! */ |
| 2529 | if (command->group) { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2530 | debug_printf_clean("%s begin group (grp_type:%d)\n", |
| 2531 | indenter(indent), command->grp_type); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2532 | free_pipe_list(command->group, indent+3); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2533 | debug_printf_clean("%s end group\n", indenter(indent)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2534 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2535 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2536 | #if !BB_MMU |
| 2537 | free(command->group_as_string); |
| 2538 | command->group_as_string = NULL; |
| 2539 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2540 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2541 | debug_printf_clean("%s redirect %d%s", indenter(indent), |
| 2542 | r->fd, redir_table[r->rd_type].descrip); |
| 2543 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2544 | if (r->rd_filename) { |
| 2545 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 2546 | free(r->rd_filename); |
| 2547 | r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2548 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2549 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2550 | rnext = r->next; |
| 2551 | free(r); |
| 2552 | } |
| 2553 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2554 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2555 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2556 | pi->cmds = NULL; |
| 2557 | #if ENABLE_HUSH_JOB |
| 2558 | free(pi->cmdtext); |
| 2559 | pi->cmdtext = NULL; |
| 2560 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2561 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2562 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2563 | static void free_pipe_list(struct pipe *head, int indent) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2564 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2565 | struct pipe *pi, *next; |
| 2566 | |
| 2567 | for (pi = head; pi; pi = next) { |
| 2568 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2569 | 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] | 2570 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2571 | free_pipe(pi, indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2572 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 2573 | next = pi->next; |
| 2574 | /*pi->next = NULL;*/ |
| 2575 | free(pi); |
| 2576 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2577 | } |
| 2578 | |
| 2579 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 2580 | #if BB_MMU |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2581 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2582 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2583 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2584 | pseudo_exec(command, argv_expanded) |
| 2585 | #endif |
| 2586 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2587 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2588 | * Never returns. |
| 2589 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2590 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2591 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2592 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2593 | char **argv, int assignment_cnt, |
| 2594 | char **argv_expanded) NORETURN; |
| 2595 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2596 | char **argv, int assignment_cnt, |
| 2597 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2598 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2599 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2600 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2601 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2602 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2603 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2604 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2605 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2606 | #if BB_MMU |
| 2607 | putenv_all(new_env); |
| 2608 | free(new_env); /* optional */ |
| 2609 | #else |
| 2610 | nommu_save->new_env = new_env; |
| 2611 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2612 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2613 | if (argv_expanded) { |
| 2614 | argv = argv_expanded; |
| 2615 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2616 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2617 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2618 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2619 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2620 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2621 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2622 | /* On NOMMU, we must never block! |
| 2623 | * Example: { sleep 99999 | read line } & echo Ok |
| 2624 | * read builtin will block on read syscall, leaving parent blocked |
| 2625 | * in vfork. Therefore we can't do this: |
| 2626 | */ |
| 2627 | #if BB_MMU |
| 2628 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2629 | * Depending on context, this might be redundant. But it's |
| 2630 | * easier to waste a few CPU cycles than it is to figure out |
| 2631 | * if this is one of those cases. |
| 2632 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2633 | { |
| 2634 | int rcode; |
| 2635 | const struct built_in_command *x; |
| 2636 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2637 | if (strcmp(argv[0], x->cmd) == 0) { |
| 2638 | debug_printf_exec("running builtin '%s'\n", |
| 2639 | argv[0]); |
| 2640 | rcode = x->function(argv); |
| 2641 | fflush(NULL); |
| 2642 | _exit(rcode); |
| 2643 | } |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2644 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2645 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2646 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2647 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2648 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2649 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2650 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2651 | int a = find_applet_by_name(argv[0]); |
| 2652 | if (a >= 0) { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2653 | #if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2654 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2655 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2656 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2657 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2658 | #endif |
| 2659 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2660 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2661 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2662 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2663 | /* If they called chroot or otherwise made the binary no longer |
| 2664 | * executable, fall through */ |
| 2665 | } |
| 2666 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2667 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2668 | |
| 2669 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2670 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2671 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2672 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2673 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2674 | } |
| 2675 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2676 | static int run_list(struct pipe *pi); |
| 2677 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2678 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2679 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2680 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2681 | struct command *command, |
| 2682 | char **argv_expanded) NORETURN; |
| 2683 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2684 | struct command *command, |
| 2685 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2686 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2687 | if (command->argv) { |
| 2688 | pseudo_exec_argv(nommu_save, command->argv, |
| 2689 | command->assignment_cnt, argv_expanded); |
| 2690 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2691 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2692 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2693 | /* Cases when we are here: |
| 2694 | * ( list ) |
| 2695 | * { list } & |
| 2696 | * ... | ( list ) | ... |
| 2697 | * ... | { list } | ... |
| 2698 | */ |
| 2699 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2700 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2701 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 2702 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2703 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2704 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2705 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2706 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2707 | #else |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2708 | re_execute_shell(command->group_as_string, 0); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2709 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2710 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2711 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2712 | /* Case when we are here: ... | >file */ |
| 2713 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2714 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2715 | } |
| 2716 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2717 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2718 | static const char *get_cmdtext(struct pipe *pi) |
| 2719 | { |
| 2720 | char **argv; |
| 2721 | char *p; |
| 2722 | int len; |
| 2723 | |
| 2724 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2725 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2726 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2727 | if (pi->cmdtext) |
| 2728 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2729 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2730 | if (!argv || !argv[0]) { |
| 2731 | pi->cmdtext = xzalloc(1); |
| 2732 | return pi->cmdtext; |
| 2733 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2734 | |
| 2735 | len = 0; |
| 2736 | do len += strlen(*argv) + 1; while (*++argv); |
| 2737 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2738 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2739 | do { |
| 2740 | len = strlen(*argv); |
| 2741 | memcpy(p, *argv, len); |
| 2742 | p += len; |
| 2743 | *p++ = ' '; |
| 2744 | } while (*++argv); |
| 2745 | p[-1] = '\0'; |
| 2746 | return pi->cmdtext; |
| 2747 | } |
| 2748 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2749 | static void insert_bg_job(struct pipe *pi) |
| 2750 | { |
| 2751 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2752 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2753 | |
| 2754 | /* Linear search for the ID of the job to use */ |
| 2755 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2756 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2757 | if (thejob->jobid >= pi->jobid) |
| 2758 | pi->jobid = thejob->jobid + 1; |
| 2759 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2760 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2761 | if (!G.job_list) { |
| 2762 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2763 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2764 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2765 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2766 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2767 | thejob = thejob->next; |
| 2768 | } |
| 2769 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2770 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2771 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2772 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2773 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2774 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2775 | // TODO: do we really need to have so many fields which are just dead weight |
| 2776 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2777 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2778 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2779 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2780 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2781 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2782 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2783 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2784 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2785 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2786 | 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] | 2787 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2788 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2789 | } |
| 2790 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2791 | static void remove_bg_job(struct pipe *pi) |
| 2792 | { |
| 2793 | struct pipe *prev_pipe; |
| 2794 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2795 | if (pi == G.job_list) { |
| 2796 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2797 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2798 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2799 | while (prev_pipe->next != pi) |
| 2800 | prev_pipe = prev_pipe->next; |
| 2801 | prev_pipe->next = pi->next; |
| 2802 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2803 | if (G.job_list) |
| 2804 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2805 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2806 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2807 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2808 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2809 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2810 | static void delete_finished_bg_job(struct pipe *pi) |
| 2811 | { |
| 2812 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2813 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2814 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2815 | free(pi); |
| 2816 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2817 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2818 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2819 | /* Check to see if any processes have exited -- if they |
| 2820 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2821 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2822 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2823 | int attributes; |
| 2824 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2825 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2826 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2827 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2828 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2829 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2830 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2831 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 2832 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2833 | errno = 0; |
| 2834 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 2835 | // /* avoid doing syscall, nothing there anyway */ |
| 2836 | // return rcode; |
| 2837 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2838 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2839 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2840 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2841 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2842 | /* Do we do this right? |
| 2843 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2844 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2845 | * [3]+ Stopped sleep 20 | false |
| 2846 | * bash-3.00# echo $? |
| 2847 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2848 | */ |
| 2849 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2850 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2851 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2852 | // + killall -STOP cat |
| 2853 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2854 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2855 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2856 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2857 | int dead; |
| 2858 | |
| 2859 | // i = G.count_SIGCHLD; |
| 2860 | childpid = waitpid(-1, &status, attributes); |
| 2861 | if (childpid <= 0) { |
| 2862 | if (childpid && errno != ECHILD) |
| 2863 | bb_perror_msg("waitpid"); |
| 2864 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 2865 | // G.handled_SIGCHLD = i; |
| 2866 | break; |
| 2867 | } |
| 2868 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 2869 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2870 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2871 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2872 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2873 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2874 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2875 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2876 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2877 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2878 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2879 | childpid, WEXITSTATUS(status)); |
| 2880 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2881 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2882 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2883 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2884 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2885 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2886 | continue; |
| 2887 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2888 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2889 | fg_pipe->cmds[i].pid = 0; |
| 2890 | fg_pipe->alive_cmds--; |
| 2891 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2892 | /* last process gives overall exitstatus */ |
| 2893 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2894 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2895 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2896 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2897 | fg_pipe->cmds[i].is_stopped = 1; |
| 2898 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2899 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2900 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2901 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2902 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2903 | /* All processes in fg pipe have exited/stopped */ |
| 2904 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2905 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2906 | insert_bg_job(fg_pipe); |
| 2907 | #endif |
| 2908 | return rcode; |
| 2909 | } |
| 2910 | /* There are still running processes in the fg pipe */ |
| 2911 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2912 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2913 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2914 | } |
| 2915 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2916 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2917 | /* We asked to wait for bg or orphaned children */ |
| 2918 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2919 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2920 | for (i = 0; i < pi->num_cmds; i++) { |
| 2921 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2922 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2923 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2924 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2925 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2926 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2927 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2928 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2929 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2930 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2931 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2932 | pi->cmds[i].pid = 0; |
| 2933 | pi->alive_cmds--; |
| 2934 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2935 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2936 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 2937 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2938 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2939 | } |
| 2940 | } else { |
| 2941 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2942 | pi->cmds[i].is_stopped = 1; |
| 2943 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2944 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2945 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2946 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2947 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2948 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2949 | } |
| 2950 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2951 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2952 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2953 | { |
| 2954 | pid_t p; |
| 2955 | int rcode = checkjobs(fg_pipe); |
| 2956 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2957 | p = getpgid(0); /* pgid of our process */ |
| 2958 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2959 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2960 | return rcode; |
| 2961 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2962 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2963 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2964 | /* Start all the jobs, but don't wait for anything to finish. |
| 2965 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2966 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2967 | * 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] | 2968 | * to finish to determine the exit status of the pipe. If the pipe |
| 2969 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2970 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2971 | * return value. |
| 2972 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2973 | * Returns -1 only if started some children. IOW: we have to |
| 2974 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2975 | * |
| 2976 | * The only case when we do not need to [v]fork is when the pipe |
| 2977 | * is single, non-backgrounded, non-subshell command. Examples: |
| 2978 | * cmd ; ... { list } ; ... |
| 2979 | * cmd && ... { list } && ... |
| 2980 | * cmd || ... { list } || ... |
| 2981 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 2982 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2983 | * 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] | 2984 | * |
| 2985 | * Cases when we must fork: |
| 2986 | * non-single: cmd | cmd |
| 2987 | * backgrounded: cmd & { list } & |
| 2988 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2989 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2990 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2991 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2992 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2993 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2994 | int nextin; |
| 2995 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2996 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2997 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2998 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2999 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3000 | /* it is not always needed, but we aim to smaller code */ |
| 3001 | int squirrel[] = { -1, -1, -1 }; |
| 3002 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3003 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3004 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3005 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3006 | USE_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3007 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3008 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3009 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3010 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3011 | if (pi->num_cmds != 1 |
| 3012 | || pi->followup == PIPE_BG |
| 3013 | || command->grp_type == GRP_SUBSHELL |
| 3014 | ) { |
| 3015 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3016 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3017 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3018 | pi->alive_cmds = 1; |
| 3019 | |
| 3020 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 3021 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 3022 | |
| 3023 | if (command->group) { |
| 3024 | #if ENABLE_HUSH_FUNCTIONS |
| 3025 | if (command->grp_type == GRP_FUNCTION) { |
| 3026 | /* func () { list } */ |
| 3027 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 3028 | return EXIT_SUCCESS; |
| 3029 | } |
| 3030 | #endif |
| 3031 | /* { list } */ |
| 3032 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3033 | rcode = 1; /* exitcode if redir failed */ |
| 3034 | if (setup_redirects(command, squirrel) == 0) { |
| 3035 | debug_printf_exec(": run_list\n"); |
| 3036 | rcode = run_list(command->group) & 0xff; |
| 3037 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 3038 | } |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 3039 | restore_redirects(squirrel); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3040 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3041 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3042 | } |
| 3043 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3044 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 3045 | { |
| 3046 | const struct built_in_command *x; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3047 | char **new_env = NULL; |
| 3048 | char **old_env = NULL; |
| 3049 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3050 | if (argv[command->assignment_cnt] == NULL) { |
| 3051 | /* Assignments, but no command */ |
| 3052 | /* Ensure redirects take effect. Try "a=t >file" */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3053 | rcode = setup_redirects(command, squirrel); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3054 | restore_redirects(squirrel); |
| 3055 | /* Set shell variables */ |
| 3056 | while (*argv) { |
| 3057 | p = expand_string_to_string(*argv); |
| 3058 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 3059 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 3060 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3061 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3062 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3063 | /* Do we need to flag set_local_var() errors? |
| 3064 | * "assignment to readonly var" and "putenv error" |
| 3065 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3066 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 3067 | return rcode; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3068 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3069 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3070 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3071 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3072 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 3073 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3074 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 3075 | continue; |
| 3076 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 3077 | debug_printf("exec with redirects only\n"); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3078 | rcode = setup_redirects(command, NULL); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3079 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3080 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3081 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 3082 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 3083 | * This is perfect for work that comes after exec(). |
| 3084 | * Is it really safe for inline use? Experimentally, |
| 3085 | * things seem to work with glibc. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3086 | rcode = setup_redirects(command, squirrel); |
| 3087 | if (rcode == 0) { |
| 3088 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3089 | old_env = putenv_all_and_save_old(new_env); |
| 3090 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 3091 | x->cmd, argv_expanded[1]); |
| 3092 | rcode = x->function(argv_expanded) & 0xff; |
| 3093 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3094 | #if ENABLE_FEATURE_SH_STANDALONE |
| 3095 | clean_up_and_ret: |
| 3096 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3097 | restore_redirects(squirrel); |
| 3098 | free_strings_and_unsetenv(new_env, 1); |
| 3099 | putenv_all(old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3100 | /* Free the pointers, but the strings themselves |
| 3101 | * are in environ now, don't use free_strings! */ |
| 3102 | free(old_env); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3103 | clean_up_and_ret1: |
| 3104 | free(argv_expanded); |
| 3105 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 3106 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 3107 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3108 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3109 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3110 | i = find_applet_by_name(argv_expanded[0]); |
| 3111 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3112 | rcode = setup_redirects(command, squirrel); |
| 3113 | if (rcode == 0) { |
| 3114 | save_nofork_data(&G.nofork_save); |
| 3115 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3116 | old_env = putenv_all_and_save_old(new_env); |
| 3117 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3118 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3119 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 3120 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3121 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3122 | } |
| 3123 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3124 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3125 | } |
| 3126 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3127 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3128 | /* NB: argv_expanded may already be created, and that |
| 3129 | * might include `cmd` runs! Do not rerun it! We *must* |
| 3130 | * use argv_expanded if it's non-NULL */ |
| 3131 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3132 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3133 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3134 | nextin = 0; |
| 3135 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3136 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3137 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3138 | volatile nommu_save_t nommu_save; |
| 3139 | nommu_save.new_env = NULL; |
| 3140 | nommu_save.old_env = NULL; |
| 3141 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3142 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3143 | command = &(pi->cmds[i]); |
| 3144 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3145 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 3146 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3147 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3148 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3149 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3150 | |
| 3151 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3152 | pipefds[0] = 0; |
| 3153 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3154 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3155 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3156 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3157 | command->pid = BB_MMU ? fork() : vfork(); |
| 3158 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3159 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3160 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3161 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3162 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3163 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3164 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3165 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3166 | pgrp = pi->pgrp; |
| 3167 | if (pgrp < 0) /* true for 1st process only */ |
| 3168 | pgrp = getpid(); |
| 3169 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3170 | /* We do it in *every* child, not just first, |
| 3171 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3172 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3173 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3174 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3175 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3176 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3177 | xmove_fd(pipefds[1], 1); /* write end */ |
| 3178 | if (pipefds[0] > 1) |
| 3179 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3180 | /* Like bash, explicit redirects override pipes, |
| 3181 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3182 | if (setup_redirects(command, NULL)) |
| 3183 | _exit(1); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3184 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3185 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3186 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 3187 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3188 | /* Stores to nommu_save list of env vars putenv'ed |
| 3189 | * (NOMMU, on MMU we don't need that) */ |
| 3190 | /* cast away volatility... */ |
| 3191 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3192 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3193 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3194 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3195 | /* parent or error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3196 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3197 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3198 | /* Clean up after vforked child */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3199 | clean_up_after_re_execute(); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3200 | free(nommu_save.argv); |
| 3201 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 3202 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3203 | /* Free the pointers, but the strings themselves |
| 3204 | * are in environ now, don't use free_strings! */ |
| 3205 | free(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3206 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3207 | free(argv_expanded); |
| 3208 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3209 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3210 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3211 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3212 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3213 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3214 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3215 | /* Second and next children need to know pid of first one */ |
| 3216 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3217 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3218 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3219 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3220 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3221 | if (i) |
| 3222 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3223 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3224 | close(pipefds[1]); /* write end */ |
| 3225 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3226 | nextin = pipefds[0]; |
| 3227 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3228 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3229 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3230 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 3231 | return 1; |
| 3232 | } |
| 3233 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3234 | 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] | 3235 | return -1; |
| 3236 | } |
| 3237 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3238 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3239 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3240 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3241 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3242 | [PIPE_SEQ] = "SEQ", |
| 3243 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3244 | [PIPE_OR ] = "OR" , |
| 3245 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3246 | }; |
| 3247 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3248 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3249 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3250 | [RES_IF ] = "IF" , |
| 3251 | [RES_THEN ] = "THEN" , |
| 3252 | [RES_ELIF ] = "ELIF" , |
| 3253 | [RES_ELSE ] = "ELSE" , |
| 3254 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3255 | #endif |
| 3256 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3257 | [RES_FOR ] = "FOR" , |
| 3258 | [RES_WHILE] = "WHILE", |
| 3259 | [RES_UNTIL] = "UNTIL", |
| 3260 | [RES_DO ] = "DO" , |
| 3261 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3262 | #endif |
| 3263 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3264 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3265 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3266 | #if ENABLE_HUSH_CASE |
| 3267 | [RES_CASE ] = "CASE" , |
| 3268 | [RES_MATCH] = "MATCH", |
| 3269 | [RES_CASEI] = "CASEI", |
| 3270 | [RES_ESAC ] = "ESAC" , |
| 3271 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3272 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3273 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3274 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3275 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3276 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 3277 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3278 | #if ENABLE_HUSH_FUNCTIONS |
| 3279 | "func()", |
| 3280 | #endif |
| 3281 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3282 | |
| 3283 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3284 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3285 | pin = 0; |
| 3286 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3287 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3288 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3289 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3290 | while (prn < pi->num_cmds) { |
| 3291 | struct command *command = &pi->cmds[prn]; |
| 3292 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3293 | |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3294 | fprintf(stderr, "%*s cmd %d assignment_cnt:%d", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3295 | lvl*2, "", prn, |
| 3296 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3297 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3298 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3299 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3300 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3301 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3302 | prn++; |
| 3303 | continue; |
| 3304 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3305 | if (argv) while (*argv) { |
| 3306 | fprintf(stderr, " '%s'", *argv); |
| 3307 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3308 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3309 | fprintf(stderr, "\n"); |
| 3310 | prn++; |
| 3311 | } |
| 3312 | pi = pi->next; |
| 3313 | pin++; |
| 3314 | } |
| 3315 | } |
| 3316 | #endif |
| 3317 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3318 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3319 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3320 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3321 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3322 | #if ENABLE_HUSH_CASE |
| 3323 | char *case_word = NULL; |
| 3324 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3325 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3326 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3327 | char *for_varname = NULL; |
| 3328 | char **for_lcur = NULL; |
| 3329 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3330 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3331 | smallint last_followup; |
| 3332 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3333 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3334 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3335 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3336 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3337 | #endif |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3338 | #if HAS_KEYWORDS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3339 | smallint rword; /* enum reserved_style */ |
| 3340 | smallint last_rword; /* ditto */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3341 | #endif |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3342 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3343 | 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] | 3344 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3345 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3346 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3347 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3348 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3349 | continue; |
| 3350 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3351 | if (cpipe->next == NULL) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3352 | syntax_error("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3353 | 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] | 3354 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3355 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3356 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3357 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3358 | continue; |
| 3359 | /* 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] | 3360 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3361 | || 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] | 3362 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3363 | syntax_error("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3364 | 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] | 3365 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3366 | } |
| 3367 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3368 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3369 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3370 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3371 | * in order to return, no direct "return" statements please. |
| 3372 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3373 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3374 | ////TODO: ctrl-Z handling needs re-thinking and re-testing |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3375 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3376 | #if ENABLE_HUSH_JOB |
| 3377 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 3378 | * We are saving state before entering outermost list ("while...done") |
| 3379 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 3380 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3381 | if (++G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3382 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3383 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 3384 | * Sighandler has longjmped us here */ |
| 3385 | signal(SIGINT, SIG_IGN); |
| 3386 | signal(SIGTSTP, SIG_IGN); |
| 3387 | /* Restore level (we can be coming from deep inside |
| 3388 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3389 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3390 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3391 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3392 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3393 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3394 | } |
| 3395 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3396 | //// if (G.ctrl_z_flag) { |
| 3397 | //// /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 3398 | //// * Remember this child as background job */ |
| 3399 | //// insert_bg_job(pi); |
| 3400 | //// } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3401 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 3402 | bb_putchar('\n'); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3403 | //// } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 3404 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3405 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3406 | rcode = 0; |
| 3407 | goto ret; |
| 3408 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3409 | //// /* ctrl-Z handler will store pid etc in pi */ |
| 3410 | //// G.toplevel_list = pi; |
| 3411 | //// G.ctrl_z_flag = 0; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3412 | #if ENABLE_FEATURE_SH_STANDALONE |
| 3413 | G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
| 3414 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3415 | //// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
| 3416 | //// signal(SIGINT, handler_ctrl_c); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3417 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3418 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3419 | |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3420 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3421 | rword = RES_NONE; |
| 3422 | last_rword = RES_XXXX; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3423 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3424 | last_followup = PIPE_SEQ; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3425 | rcode = G.last_exitcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3426 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3427 | /* Go through list of pipes, (maybe) executing them. */ |
| 3428 | 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] | 3429 | if (G.flag_SIGINT) |
| 3430 | break; |
| 3431 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3432 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3433 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3434 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3435 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3436 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3437 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3438 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3439 | /* start of a loop: remember where loop starts */ |
| 3440 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3441 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3442 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3443 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3444 | /* Still in the same "if...", "then..." or "do..." branch? */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3445 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3446 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3447 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3448 | ) { |
| 3449 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3450 | * and we should not execute CMD */ |
| 3451 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3452 | last_followup = pi->followup; |
| 3453 | continue; |
| 3454 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3455 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3456 | last_followup = pi->followup; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3457 | IF_HAS_KEYWORDS(last_rword = rword;) |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3458 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3459 | if (cond_code) { |
| 3460 | if (rword == RES_THEN) { |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3461 | /* if false; then ... fi has exitcode 0! */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3462 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3463 | /* "if <false> THEN cmd": skip cmd */ |
| 3464 | continue; |
| 3465 | } |
| 3466 | } else { |
| 3467 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3468 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3469 | * skip cmd and all following ones */ |
| 3470 | break; |
| 3471 | } |
| 3472 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3473 | #endif |
| 3474 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3475 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3476 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3477 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3478 | |
| 3479 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3480 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3481 | }; /* encoded representation of "$@" */ |
| 3482 | static const char *const encoded_dollar_at_argv[] = { |
| 3483 | encoded_dollar_at, NULL |
| 3484 | }; /* argv list with one element: "$@" */ |
| 3485 | char **vals; |
| 3486 | |
| 3487 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3488 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3489 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3490 | if (!pi->next->cmds[0].argv) { |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3491 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3492 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3493 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3494 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3495 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3496 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3497 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3498 | debug_print_strings("for_list made from", vals); |
| 3499 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3500 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3501 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3502 | for_varname = pi->cmds[0].argv[0]; |
| 3503 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3504 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3505 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3506 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3507 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3508 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3509 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3510 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3511 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3512 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3513 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3514 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3515 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3516 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3517 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3518 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3519 | if (rword == RES_IN) { |
| 3520 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3521 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3522 | if (rword == RES_DONE) { |
| 3523 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3524 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3525 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3526 | #if ENABLE_HUSH_CASE |
| 3527 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3528 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3529 | continue; |
| 3530 | } |
| 3531 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3532 | char **argv; |
| 3533 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3534 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3535 | break; |
| 3536 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3537 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3538 | while (*argv) { |
| 3539 | char *pattern = expand_string_to_string(*argv); |
| 3540 | /* TODO: which FNM_xxx flags to use? */ |
| 3541 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3542 | free(pattern); |
| 3543 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3544 | free(case_word); /* make future "word)" stop */ |
| 3545 | case_word = NULL; |
| 3546 | break; |
| 3547 | } |
| 3548 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3549 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3550 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3551 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3552 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3553 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3554 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3555 | } |
| 3556 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3557 | /* Just pressing <enter> in shell should check for jobs. |
| 3558 | * OTOH, in non-interactive shell this is useless |
| 3559 | * and only leads to extra job checks */ |
| 3560 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3561 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3562 | goto check_jobs_and_continue; |
| 3563 | continue; |
| 3564 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3565 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3566 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3567 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3568 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3569 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3570 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3571 | { |
| 3572 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3573 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3574 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3575 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3576 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3577 | if (r != -1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3578 | /* We only ran a builtin: rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3579 | * and we don't need to wait for anything. */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3580 | G.last_exitcode = rcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3581 | debug_printf_exec(": builtin exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3582 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3583 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3584 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3585 | if (G.flag_break_continue) { |
| 3586 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3587 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3588 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3589 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3590 | G.depth_break_continue--; |
| 3591 | if (G.depth_break_continue == 0) |
| 3592 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3593 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3594 | } /* 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] | 3595 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3596 | goto check_jobs_and_break; |
| 3597 | /* "continue": simulate end of loop */ |
| 3598 | rword = RES_DONE; |
| 3599 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3600 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3601 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3602 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3603 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3604 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3605 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 3606 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3607 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3608 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3609 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3610 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3611 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3612 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3613 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3614 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3615 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3616 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3617 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3618 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3619 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3620 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3621 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3622 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3623 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3624 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3625 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3626 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3627 | } |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3628 | G.last_exitcode = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3629 | } |
| 3630 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3631 | |
| 3632 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3633 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3634 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3635 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3636 | #endif |
| 3637 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3638 | /* Beware of "while false; true; do ..."! */ |
| 3639 | if (pi->next && pi->next->res_word == RES_DO) { |
| 3640 | if (rword == RES_WHILE) { |
| 3641 | if (rcode) { |
| 3642 | /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3643 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3644 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
| 3645 | goto check_jobs_and_break; |
| 3646 | } |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3647 | } |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3648 | if (rword == RES_UNTIL) { |
| 3649 | if (!rcode) { |
| 3650 | debug_printf_exec(": until expr is true: breaking\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3651 | check_jobs_and_break: |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3652 | checkjobs(NULL); |
| 3653 | break; |
| 3654 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3655 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3656 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3657 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 3658 | |
| 3659 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3660 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3661 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3662 | |
| 3663 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3664 | //// if (G.ctrl_z_flag) { |
| 3665 | //// /* ctrl-Z forked somewhere in the past, we are the child, |
| 3666 | //// * and now we completed running the list. Exit. */ |
| 3667 | //////TODO: _exit? |
| 3668 | //// exit(rcode); |
| 3669 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3670 | ret: |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3671 | G.run_list_level--; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3672 | //// if (!G.run_list_level && G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3673 | //// signal(SIGTSTP, SIG_IGN); |
| 3674 | //// signal(SIGINT, SIG_IGN); |
| 3675 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3676 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3677 | 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] | 3678 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3679 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3680 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3681 | free(for_list); |
| 3682 | #endif |
| 3683 | #if ENABLE_HUSH_CASE |
| 3684 | free(case_word); |
| 3685 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3686 | return rcode; |
| 3687 | } |
| 3688 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3689 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3690 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3691 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3692 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3693 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3694 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3695 | 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] | 3696 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3697 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3698 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3699 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3700 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3701 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3702 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3703 | return rcode; |
| 3704 | } |
| 3705 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3706 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3707 | static struct pipe *new_pipe(void) |
| 3708 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3709 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3710 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3711 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3712 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3713 | return pi; |
| 3714 | } |
| 3715 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3716 | /* Command (member of a pipe) is complete. The only possible error here |
| 3717 | * is out of memory, in which case xmalloc exits. */ |
| 3718 | static int done_command(struct parse_context *ctx) |
| 3719 | { |
| 3720 | /* The command is really already in the pipe structure, so |
| 3721 | * advance the pipe counter and make a new, null command. */ |
| 3722 | struct pipe *pi = ctx->pipe; |
| 3723 | struct command *command = ctx->command; |
| 3724 | |
| 3725 | if (command) { |
| 3726 | if (command->group == NULL |
| 3727 | && command->argv == NULL |
| 3728 | && command->redirects == NULL |
| 3729 | ) { |
| 3730 | 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] | 3731 | memset(command, 0, sizeof(*command)); /* paranoia */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3732 | return pi->num_cmds; |
| 3733 | } |
| 3734 | pi->num_cmds++; |
| 3735 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3736 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3737 | } else { |
| 3738 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3739 | } |
| 3740 | |
| 3741 | /* Only real trickiness here is that the uncommitted |
| 3742 | * command structure is not counted in pi->num_cmds. */ |
| 3743 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3744 | command = &pi->cmds[pi->num_cmds]; |
| 3745 | memset(command, 0, sizeof(*command)); |
| 3746 | |
| 3747 | ctx->command = command; |
| 3748 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3749 | |
| 3750 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3751 | } |
| 3752 | |
| 3753 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3754 | { |
| 3755 | int not_null; |
| 3756 | |
| 3757 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3758 | /* Close previous command */ |
| 3759 | not_null = done_command(ctx); |
| 3760 | ctx->pipe->followup = type; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3761 | #if HAS_KEYWORDS |
| 3762 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 3763 | ctx->ctx_inverted = 0; |
| 3764 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 3765 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3766 | |
| 3767 | /* Without this check, even just <enter> on command line generates |
| 3768 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3769 | * IOW: it is safe to do it unconditionally. |
| 3770 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3771 | * and other cases to work. */ |
| 3772 | if (not_null |
| 3773 | #if HAS_KEYWORDS |
| 3774 | || ctx->ctx_res_w == RES_FI |
| 3775 | || ctx->ctx_res_w == RES_DONE |
| 3776 | || ctx->ctx_res_w == RES_FOR |
| 3777 | || ctx->ctx_res_w == RES_IN |
| 3778 | || ctx->ctx_res_w == RES_ESAC |
| 3779 | #endif |
| 3780 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3781 | struct pipe *new_p; |
| 3782 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3783 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3784 | not_null, ctx->ctx_res_w); |
| 3785 | new_p = new_pipe(); |
| 3786 | ctx->pipe->next = new_p; |
| 3787 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3788 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3789 | * they remain set for commands inside if/while. |
| 3790 | * This is used to control execution. |
| 3791 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3792 | * cases where variable or value happens to match a keyword): |
| 3793 | */ |
| 3794 | #if ENABLE_HUSH_LOOPS |
| 3795 | if (ctx->ctx_res_w == RES_FOR |
| 3796 | || ctx->ctx_res_w == RES_IN) |
| 3797 | ctx->ctx_res_w = RES_NONE; |
| 3798 | #endif |
| 3799 | #if ENABLE_HUSH_CASE |
| 3800 | if (ctx->ctx_res_w == RES_MATCH) |
| 3801 | ctx->ctx_res_w = RES_CASEI; |
| 3802 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3803 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3804 | /* Create the memory for command, roughly: |
| 3805 | * ctx->pipe->cmds = new struct command; |
| 3806 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3807 | */ |
| 3808 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3809 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3810 | } |
| 3811 | debug_printf_parse("done_pipe return\n"); |
| 3812 | } |
| 3813 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3814 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3815 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3816 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3817 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3818 | /* Create the memory for command, roughly: |
| 3819 | * ctx->pipe->cmds = new struct command; |
| 3820 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3821 | */ |
| 3822 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3823 | } |
| 3824 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3825 | /* If a reserved word is found and processed, parse context is modified |
| 3826 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3827 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3828 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3829 | struct reserved_combo { |
| 3830 | char literal[6]; |
| 3831 | unsigned char res; |
| 3832 | unsigned char assignment_flag; |
| 3833 | int flag; |
| 3834 | }; |
| 3835 | enum { |
| 3836 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3837 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3838 | FLAG_IF = (1 << RES_IF ), |
| 3839 | FLAG_THEN = (1 << RES_THEN ), |
| 3840 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3841 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3842 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3843 | #endif |
| 3844 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3845 | FLAG_FOR = (1 << RES_FOR ), |
| 3846 | FLAG_WHILE = (1 << RES_WHILE), |
| 3847 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3848 | FLAG_DO = (1 << RES_DO ), |
| 3849 | FLAG_DONE = (1 << RES_DONE ), |
| 3850 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3851 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3852 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3853 | FLAG_MATCH = (1 << RES_MATCH), |
| 3854 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3855 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3856 | FLAG_START = (1 << RES_XXXX ), |
| 3857 | }; |
| 3858 | |
| 3859 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3860 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3861 | /* Mostly a list of accepted follow-up reserved words. |
| 3862 | * FLAG_END means we are done with the sequence, and are ready |
| 3863 | * to turn the compound list into a command. |
| 3864 | * FLAG_START means the word must start a new compound list. |
| 3865 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3866 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3867 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3868 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3869 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3870 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3871 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3872 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3873 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3874 | #endif |
| 3875 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3876 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3877 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3878 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3879 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3880 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3881 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3882 | #endif |
| 3883 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3884 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3885 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3886 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3887 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3888 | const struct reserved_combo *r; |
| 3889 | |
| 3890 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3891 | if (strcmp(word->data, r->literal) == 0) |
| 3892 | return r; |
| 3893 | } |
| 3894 | return NULL; |
| 3895 | } |
| 3896 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3897 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3898 | #if ENABLE_HUSH_CASE |
| 3899 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3900 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3901 | }; |
| 3902 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3903 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3904 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3905 | r = match_reserved_word(word); |
| 3906 | if (!r) |
| 3907 | return 0; |
| 3908 | |
| 3909 | 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] | 3910 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3911 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3912 | /* "case word IN ..." - IN part starts first match part */ |
| 3913 | r = &reserved_match; |
| 3914 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3915 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3916 | if (r->flag == 0) { /* '!' */ |
| 3917 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3918 | syntax_error("! ! command"); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3919 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3920 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3921 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3922 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3923 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3924 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3925 | struct parse_context *old; |
| 3926 | old = xmalloc(sizeof(*old)); |
| 3927 | debug_printf_parse("push stack %p\n", old); |
| 3928 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3929 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3930 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3931 | } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3932 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3933 | ctx->ctx_res_w = RES_SNTX; |
| 3934 | return 1; |
| 3935 | } |
| 3936 | ctx->ctx_res_w = r->res; |
| 3937 | ctx->old_flag = r->flag; |
| 3938 | if (ctx->old_flag & FLAG_END) { |
| 3939 | struct parse_context *old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3940 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3941 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3942 | old = ctx->stack; |
| 3943 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3944 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3945 | #if !BB_MMU |
| 3946 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3947 | o_free_unsafe(&ctx->as_string); |
| 3948 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 3949 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3950 | old->command->group_as_string); |
| 3951 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3952 | *ctx = *old; /* physical copy */ |
| 3953 | free(old); |
| 3954 | } |
| 3955 | word->o_assignment = r->assignment_flag; |
| 3956 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3957 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3958 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3959 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3960 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3961 | * Normal return is 0. Syntax errors return 1. |
| 3962 | * Note: on return, word is reset, but not o_free'd! |
| 3963 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3964 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3965 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3966 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3967 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3968 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3969 | if (word->length == 0 && word->o_quoted == 0) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3970 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3971 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3972 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3973 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3974 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3975 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3976 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3977 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 3978 | * "2.7 Redirection |
| 3979 | * ...the word that follows the redirection operator |
| 3980 | * shall be subjected to tilde expansion, parameter expansion, |
| 3981 | * command substitution, arithmetic expansion, and quote |
| 3982 | * removal. Pathname expansion shall not be performed |
| 3983 | * on the word by a non-interactive shell; an interactive |
| 3984 | * shell may perform it, but shall do so only when |
| 3985 | * the expansion would result in one word." |
| 3986 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3987 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 3988 | /* Cater for >\file case: |
| 3989 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 3990 | * Same with heredocs: |
| 3991 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 3992 | */ |
| 3993 | unbackslash(ctx->pending_redirect->rd_filename); |
| 3994 | /* Is it <<"HEREDOC"? */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3995 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC |
| 3996 | && word->o_quoted |
| 3997 | ) { |
| 3998 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 3999 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4000 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4001 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4002 | /* If this word wasn't an assignment, next ones definitely |
| 4003 | * can't be assignments. Even if they look like ones. */ |
| 4004 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 4005 | && word->o_assignment != WORD_IS_KEYWORD |
| 4006 | ) { |
| 4007 | word->o_assignment = NOT_ASSIGNMENT; |
| 4008 | } else { |
| 4009 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
| 4010 | command->assignment_cnt++; |
| 4011 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 4012 | } |
| 4013 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4014 | if (command->group) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4015 | /* "{ echo foo; } echo bar" - bad */ |
| 4016 | /* NB: bash allows e.g.: |
| 4017 | * if true; then { echo foo; } fi |
| 4018 | * while if false; then false; fi do break; done |
| 4019 | * and disallows: |
| 4020 | * while if false; then false; fi; do; break; done |
| 4021 | * TODO? */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4022 | syntax_error_at(word->data); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4023 | debug_printf_parse("done_word return 1: syntax error, " |
| 4024 | "groups and arglists don't mix\n"); |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 4025 | return 1; |
| 4026 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4027 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4028 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 4029 | if (ctx->ctx_dsemicolon |
| 4030 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 4031 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 4032 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4033 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 4034 | ctx->ctx_dsemicolon = 0; |
| 4035 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4036 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4037 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4038 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4039 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 4040 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4041 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4042 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4043 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 4044 | if (reserved_word(word, ctx)) { |
| 4045 | o_reset(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4046 | debug_printf_parse("done_word return %d\n", |
| 4047 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4048 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4049 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4050 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4051 | #endif |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4052 | if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4053 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 4054 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4055 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4056 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4057 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4058 | char *p = word->data; |
| 4059 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 4060 | && (p[1] & 0x7f) == '@' |
| 4061 | && p[2] == SPECIAL_VAR_SYMBOL |
| 4062 | ) { |
| 4063 | p += 3; |
| 4064 | } |
| 4065 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4066 | /* saw no "$@", or not only "$@" but some |
| 4067 | * real text is there too */ |
| 4068 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4069 | * e.g. "", $empty"" etc to not disappear */ |
| 4070 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4071 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4072 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 4073 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4074 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4075 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4076 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4077 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4078 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4079 | ctx->pending_redirect = NULL; |
| 4080 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4081 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4082 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4083 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 4084 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 4085 | * in parse tree. */ |
| 4086 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4087 | if (!is_well_formed_var_name(command->argv[0], '\0')) { |
| 4088 | syntax_error("malformed variable name in for"); |
| 4089 | return 1; |
| 4090 | } |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4091 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4092 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4093 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4094 | #if ENABLE_HUSH_CASE |
| 4095 | /* Force CASE to have just one word */ |
| 4096 | if (ctx->ctx_res_w == RES_CASE) { |
| 4097 | done_pipe(ctx, PIPE_SEQ); |
| 4098 | } |
| 4099 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4100 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4101 | return 0; |
| 4102 | } |
| 4103 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4104 | |
| 4105 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 4106 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4107 | * Return: |
| 4108 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 4109 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 4110 | * REDIRFD_TO_FILE if no & was seen, |
| 4111 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4112 | */ |
| 4113 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4114 | #define parse_redir_right_fd(as_string, input) \ |
| 4115 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4116 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4117 | static int parse_redir_right_fd(o_string *as_string, struct in_str *input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4118 | { |
| 4119 | int ch, d, ok; |
| 4120 | |
| 4121 | ch = i_peek(input); |
| 4122 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4123 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4124 | |
| 4125 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4126 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4127 | ch = i_peek(input); |
| 4128 | if (ch == '-') { |
| 4129 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4130 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4131 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4132 | } |
| 4133 | d = 0; |
| 4134 | ok = 0; |
| 4135 | while (ch != EOF && isdigit(ch)) { |
| 4136 | d = d*10 + (ch-'0'); |
| 4137 | ok = 1; |
| 4138 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4139 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4140 | ch = i_peek(input); |
| 4141 | } |
| 4142 | if (ok) return d; |
| 4143 | |
| 4144 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 4145 | |
| 4146 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4147 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4148 | } |
| 4149 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4150 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4151 | */ |
| 4152 | static int parse_redirect(struct parse_context *ctx, |
| 4153 | int fd, |
| 4154 | redir_type style, |
| 4155 | struct in_str *input) |
| 4156 | { |
| 4157 | struct command *command = ctx->command; |
| 4158 | struct redir_struct *redir; |
| 4159 | struct redir_struct **redirp; |
| 4160 | int dup_num; |
| 4161 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4162 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4163 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4164 | /* Check for a '>&1' type redirect */ |
| 4165 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4166 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4167 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4168 | } else { |
| 4169 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4170 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4171 | if (dup_num) { /* <<-... */ |
| 4172 | ch = i_getch(input); |
| 4173 | nommu_addchr(&ctx->as_string, ch); |
| 4174 | ch = i_peek(input); |
| 4175 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4176 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4177 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4178 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4179 | int ch = i_peek(input); |
| 4180 | if (ch == '|') { |
| 4181 | /* >|FILE redirect ("clobbering" >). |
| 4182 | * Since we do not support "set -o noclobber" yet, |
| 4183 | * >| and > are the same for now. Just eat |. |
| 4184 | */ |
| 4185 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4186 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4187 | } |
| 4188 | } |
| 4189 | |
| 4190 | /* Create a new redir_struct and append it to the linked list */ |
| 4191 | redirp = &command->redirects; |
| 4192 | while ((redir = *redirp) != NULL) { |
| 4193 | redirp = &(redir->next); |
| 4194 | } |
| 4195 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4196 | /* redir->next = NULL; */ |
| 4197 | /* redir->rd_filename = NULL; */ |
| 4198 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4199 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4200 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4201 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4202 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4203 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4204 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 4205 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4206 | /* Erik had a check here that the file descriptor in question |
| 4207 | * is legit; I postpone that to "run time" |
| 4208 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4209 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4210 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4211 | } else { |
| 4212 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4213 | * end of the next parsed word. */ |
| 4214 | ctx->pending_redirect = redir; |
| 4215 | } |
| 4216 | return 0; |
| 4217 | } |
| 4218 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4219 | /* If a redirect is immediately preceded by a number, that number is |
| 4220 | * supposed to tell which file descriptor to redirect. This routine |
| 4221 | * looks for such preceding numbers. In an ideal world this routine |
| 4222 | * needs to handle all the following classes of redirects... |
| 4223 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4224 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4225 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4226 | * 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] | 4227 | * |
| 4228 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4229 | * "2.7 Redirection |
| 4230 | * ... If n is quoted, the number shall not be recognized as part of |
| 4231 | * the redirection expression. For example: |
| 4232 | * echo \2>a |
| 4233 | * writes the character 2 into file a" |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4234 | * We are getting it right by setting ->o_quoted on any \<char> |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4235 | * |
| 4236 | * A -1 return means no valid number was found, |
| 4237 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4238 | */ |
| 4239 | static int redirect_opt_num(o_string *o) |
| 4240 | { |
| 4241 | int num; |
| 4242 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4243 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4244 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4245 | num = bb_strtou(o->data, NULL, 10); |
| 4246 | if (errno || num < 0) |
| 4247 | return -1; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4248 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4249 | return num; |
| 4250 | } |
| 4251 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4252 | #if BB_MMU |
| 4253 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4254 | fetch_till_str(input, word, skip_tabs) |
| 4255 | #endif |
| 4256 | static char *fetch_till_str(o_string *as_string, |
| 4257 | struct in_str *input, |
| 4258 | const char *word, |
| 4259 | int skip_tabs) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4260 | { |
| 4261 | o_string heredoc = NULL_O_STRING; |
| 4262 | int past_EOL = 0; |
| 4263 | int ch; |
| 4264 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4265 | goto jump_in; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4266 | while (1) { |
| 4267 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4268 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4269 | if (ch == '\n') { |
| 4270 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4271 | heredoc.data[past_EOL] = '\0'; |
| 4272 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4273 | return heredoc.data; |
| 4274 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4275 | do { |
| 4276 | o_addchr(&heredoc, ch); |
| 4277 | past_EOL = heredoc.length; |
| 4278 | jump_in: |
| 4279 | do { |
| 4280 | ch = i_getch(input); |
| 4281 | nommu_addchr(as_string, ch); |
| 4282 | } while (skip_tabs && ch == '\t'); |
| 4283 | } while (ch == '\n'); |
| 4284 | } |
| 4285 | if (ch == EOF) { |
| 4286 | o_free_unsafe(&heredoc); |
| 4287 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4288 | } |
| 4289 | o_addchr(&heredoc, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4290 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4291 | } |
| 4292 | } |
| 4293 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4294 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4295 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4296 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4297 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4298 | { |
| 4299 | struct pipe *pi = ctx->list_head; |
| 4300 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4301 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4302 | int i; |
| 4303 | struct command *cmd = pi->cmds; |
| 4304 | |
| 4305 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4306 | pi->num_cmds, |
| 4307 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4308 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4309 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4310 | |
| 4311 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4312 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4313 | while (redir) { |
| 4314 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4315 | char *p; |
| 4316 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4317 | redir->rd_type = REDIRECT_HEREDOC2; |
| 4318 | /* redir->dup is (ab)used to indicate <<- */ |
| 4319 | p = fetch_till_str(&ctx->as_string, input, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4320 | redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4321 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4322 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4323 | return 1; |
| 4324 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4325 | free(redir->rd_filename); |
| 4326 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4327 | heredoc_cnt--; |
| 4328 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4329 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4330 | } |
| 4331 | cmd++; |
| 4332 | } |
| 4333 | pi = pi->next; |
| 4334 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4335 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4336 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4337 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4338 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4339 | #endif |
| 4340 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4341 | } |
| 4342 | |
| 4343 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4344 | #if BB_MMU |
| 4345 | #define parse_stream(pstring, input, end_trigger) \ |
| 4346 | parse_stream(input, end_trigger) |
| 4347 | #endif |
| 4348 | static struct pipe *parse_stream(char **pstring, |
| 4349 | struct in_str *input, |
| 4350 | int end_trigger); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4351 | static void parse_and_run_string(const char *s); |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 4352 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4353 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4354 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4355 | { |
| 4356 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4357 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4358 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 4359 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 4360 | pid = BB_MMU ? fork() : vfork(); |
| 4361 | if (pid < 0) |
| 4362 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4363 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4364 | if (pid == 0) { /* child */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4365 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4366 | /* Process substitution is not considered to be usual |
| 4367 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4368 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 4369 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 4370 | bb_signals(0 |
| 4371 | + (1 << SIGTSTP) |
| 4372 | + (1 << SIGTTIN) |
| 4373 | + (1 << SIGTTOU) |
| 4374 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4375 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 4376 | xmove_fd(channel[1], 1); |
| 4377 | /* Prevent it from trying to handle ctrl-z etc */ |
| 4378 | USE_HUSH_JOB(G.run_list_level = 1;) |
| 4379 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4380 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4381 | parse_and_run_string(s); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4382 | _exit(G.last_exitcode); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4383 | #else |
| 4384 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4385 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 4386 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4387 | * echo OK |
| 4388 | */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 4389 | re_execute_shell(s, 0); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4390 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4391 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4392 | |
| 4393 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4394 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 4395 | clean_up_after_re_execute(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4396 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 4397 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4398 | return pf; |
| 4399 | } |
| 4400 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4401 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4402 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4403 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4404 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4405 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4406 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4407 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4408 | pf = generate_stream_from_string(s); |
| 4409 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4410 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4411 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4412 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4413 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4414 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4415 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4416 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4417 | if (ch == '\n') { |
| 4418 | eol_cnt++; |
| 4419 | continue; |
| 4420 | } |
| 4421 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4422 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4423 | eol_cnt--; |
| 4424 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4425 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4426 | } |
| 4427 | |
| 4428 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4429 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 4430 | * 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] | 4431 | * Try these: |
| 4432 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 4433 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4434 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4435 | fclose(pf); |
| 4436 | debug_printf("closed FILE from child. return 0\n"); |
| 4437 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4438 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4439 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4440 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4441 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4442 | struct in_str *input, int ch) |
| 4443 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4444 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4445 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4446 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4447 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4448 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4449 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4450 | |
| 4451 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4452 | #if ENABLE_HUSH_FUNCTIONS |
| 4453 | if (ch == 'F') { /* function definition? */ |
| 4454 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 4455 | //command->fname = dest->data; |
| 4456 | command->grp_type = GRP_FUNCTION; |
| 4457 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 4458 | memset(dest, 0, sizeof(*dest)); |
| 4459 | } |
| 4460 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4461 | if (command->argv /* word [word](... */ |
| 4462 | || dest->length /* word(... */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4463 | || dest->o_quoted /* ""(... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4464 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4465 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4466 | debug_printf_parse("parse_group return 1: " |
| 4467 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4468 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4469 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4470 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4471 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4472 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4473 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4474 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4475 | { |
| 4476 | #if !BB_MMU |
| 4477 | char *as_string = NULL; |
| 4478 | #endif |
| 4479 | pipe_list = parse_stream(&as_string, input, endch); |
| 4480 | #if !BB_MMU |
| 4481 | if (as_string) |
| 4482 | o_addstr(&ctx->as_string, as_string); |
| 4483 | #endif |
| 4484 | /* empty ()/{} or parse error? */ |
| 4485 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 4486 | #if !BB_MMU |
| 4487 | free(as_string); |
| 4488 | #endif |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4489 | syntax_error(NULL); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4490 | debug_printf_parse("parse_group return 1: " |
| 4491 | "parse_stream returned %p\n", pipe_list); |
| 4492 | return 1; |
| 4493 | } |
| 4494 | command->group = pipe_list; |
| 4495 | #if !BB_MMU |
| 4496 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4497 | command->group_as_string = as_string; |
| 4498 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4499 | command->group_as_string); |
| 4500 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4501 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4502 | debug_printf_parse("parse_group return 0\n"); |
| 4503 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4504 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4505 | } |
| 4506 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4507 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4508 | /* Subroutines for copying $(...) and `...` things */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4509 | static int add_till_backquote(o_string *dest, struct in_str *input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4510 | /* '...' */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4511 | static int add_till_single_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4512 | { |
| 4513 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4514 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4515 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4516 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4517 | return 1; |
| 4518 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4519 | if (ch == '\'') |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4520 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4521 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4522 | } |
| 4523 | } |
| 4524 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4525 | static int add_till_double_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4526 | { |
| 4527 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4528 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4529 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4530 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4531 | return 1; |
| 4532 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4533 | if (ch == '"') |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4534 | return 0; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4535 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4536 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4537 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4538 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4539 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4540 | if (ch == '`') { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4541 | if (add_till_backquote(dest, input)) |
| 4542 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4543 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4544 | continue; |
| 4545 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4546 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4547 | } |
| 4548 | } |
| 4549 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4550 | * \` quoting. |
| 4551 | * "Within the backquoted style of command substitution, backslash |
| 4552 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4553 | * The search for the matching backquote shall be satisfied by the first |
| 4554 | * backquote found without a preceding backslash; during this search, |
| 4555 | * if a non-escaped backquote is encountered within a shell comment, |
| 4556 | * a here-document, an embedded command substitution of the $(command) |
| 4557 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4558 | * or double-quoted string that begins, but does not end, within the |
| 4559 | * "`...`" sequence produces undefined results." |
| 4560 | * Example Output |
| 4561 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4562 | */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4563 | static int add_till_backquote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4564 | { |
| 4565 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4566 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4567 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4568 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4569 | return 1; |
| 4570 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4571 | if (ch == '`') |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4572 | return 0; |
| 4573 | if (ch == '\\') { |
| 4574 | /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4575 | int ch2 = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4576 | if (ch2 == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4577 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4578 | return 1; |
| 4579 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4580 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4581 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4582 | ch = ch2; |
| 4583 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4584 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4585 | } |
| 4586 | } |
| 4587 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4588 | * quoting and nested ()s. |
| 4589 | * "With the $(command) style of command substitution, all characters |
| 4590 | * following the open parenthesis to the matching closing parenthesis |
| 4591 | * constitute the command. Any valid shell script can be used for command, |
| 4592 | * except a script consisting solely of redirections which produces |
| 4593 | * unspecified results." |
| 4594 | * Example Output |
| 4595 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4596 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4597 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 4598 | */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4599 | static int 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] | 4600 | { |
| 4601 | int count = 0; |
| 4602 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4603 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4604 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4605 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4606 | return 1; |
| 4607 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4608 | if (ch == '(') |
| 4609 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4610 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4611 | if (--count < 0) { |
| 4612 | if (!dbl) |
| 4613 | break; |
| 4614 | if (i_peek(input) == ')') { |
| 4615 | i_getch(input); |
| 4616 | break; |
| 4617 | } |
| 4618 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4619 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4620 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4621 | if (ch == '\'') { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4622 | if (add_till_single_quote(dest, input)) |
| 4623 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4624 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4625 | continue; |
| 4626 | } |
| 4627 | if (ch == '"') { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4628 | if (add_till_double_quote(dest, input)) |
| 4629 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4630 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4631 | continue; |
| 4632 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4633 | if (ch == '\\') { |
| 4634 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4635 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4636 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4637 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4638 | return 1; |
| 4639 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4640 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4641 | continue; |
| 4642 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4643 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4644 | return 0; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4645 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4646 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4647 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4648 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4649 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4650 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4651 | handle_dollar(dest, input) |
| 4652 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4653 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4654 | o_string *dest, |
| 4655 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4656 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4657 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4658 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4659 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4660 | |
| 4661 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4662 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4663 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4664 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4665 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4666 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4667 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4668 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4669 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4670 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4671 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4672 | if (!isalnum(ch) && ch != '_') |
| 4673 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4674 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4675 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4676 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4677 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4678 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4679 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4680 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4681 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4682 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4683 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4684 | o_addchr(dest, ch | quote_mask); |
| 4685 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4686 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4687 | case '$': /* pid */ |
| 4688 | case '!': /* last bg pid */ |
| 4689 | case '?': /* last exit code */ |
| 4690 | case '#': /* number of args */ |
| 4691 | case '*': /* args */ |
| 4692 | case '@': /* args */ |
| 4693 | goto make_one_char_var; |
| 4694 | case '{': { |
| 4695 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4696 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4697 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4698 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4699 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4700 | /* XXX maybe someone will try to escape the '}' */ |
| 4701 | expansion = 0; |
| 4702 | first_char = true; |
| 4703 | all_digits = false; |
| 4704 | while (1) { |
| 4705 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4706 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4707 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4708 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4709 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4710 | if (first_char) { |
| 4711 | if (ch == '#') |
| 4712 | /* ${#var}: length of var contents */ |
| 4713 | goto char_ok; |
| 4714 | else if (isdigit(ch)) { |
| 4715 | all_digits = true; |
| 4716 | goto char_ok; |
| 4717 | } |
| 4718 | } |
| 4719 | |
| 4720 | if (expansion < 2 |
| 4721 | && ( (all_digits && !isdigit(ch)) |
| 4722 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 4723 | ) |
| 4724 | ) { |
| 4725 | /* handle parameter expansions |
| 4726 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4727 | */ |
| 4728 | if (first_char) |
| 4729 | goto case_default; |
| 4730 | switch (ch) { |
| 4731 | case ':': /* null modifier */ |
| 4732 | if (expansion == 0) { |
| 4733 | debug_printf_parse(": null modifier\n"); |
| 4734 | ++expansion; |
| 4735 | break; |
| 4736 | } |
| 4737 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4738 | case '#': /* remove prefix */ |
| 4739 | case '%': /* remove suffix */ |
| 4740 | if (expansion == 0) { |
| 4741 | debug_printf_parse(": remove suffix/prefix\n"); |
| 4742 | expansion = 2; |
| 4743 | break; |
| 4744 | } |
| 4745 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4746 | case '-': /* default value */ |
| 4747 | case '=': /* assign default */ |
| 4748 | case '+': /* alternative */ |
| 4749 | case '?': /* error indicate */ |
| 4750 | debug_printf_parse(": parameter expansion\n"); |
| 4751 | expansion = 2; |
| 4752 | break; |
| 4753 | default: |
| 4754 | case_default: |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4755 | syntax_error_unterm_str("${name}"); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4756 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 4757 | return 1; |
| 4758 | } |
| 4759 | } |
| 4760 | char_ok: |
| 4761 | debug_printf_parse(": '%c'\n", ch); |
| 4762 | o_addchr(dest, ch | quote_mask); |
| 4763 | quote_mask = 0; |
| 4764 | first_char = false; |
| 4765 | } |
| 4766 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4767 | break; |
| 4768 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4769 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4770 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4771 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4772 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4773 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4774 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4775 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4776 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4777 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4778 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4779 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4780 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4781 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4782 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4783 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4784 | # endif |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4785 | if (add_till_closing_paren(dest, input, true)) |
| 4786 | return 1; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4787 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4788 | if (as_string) { |
| 4789 | o_addstr(as_string, dest->data + pos); |
| 4790 | o_addchr(as_string, ')'); |
| 4791 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4792 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4793 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4794 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4795 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4796 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4797 | # endif |
| 4798 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4799 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4800 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4801 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4802 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4803 | # endif |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4804 | if (add_till_closing_paren(dest, input, false)) |
| 4805 | return 1; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4806 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4807 | if (as_string) { |
| 4808 | o_addstr(as_string, dest->data + pos); |
| 4809 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4810 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4811 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4812 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4813 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4814 | break; |
| 4815 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4816 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4817 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4818 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4819 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4820 | ch = i_peek(input); |
| 4821 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4822 | ch = '_'; |
| 4823 | goto make_var; |
| 4824 | } |
| 4825 | /* else: it's $_ */ |
| 4826 | /* TODO: */ |
| 4827 | /* $_ Shell or shell script name; or last cmd name */ |
| 4828 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 4829 | default: |
| 4830 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4831 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4832 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4833 | return 0; |
| 4834 | } |
| 4835 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4836 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4837 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4838 | parse_stream_dquoted(dest, input, dquote_end) |
| 4839 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4840 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4841 | o_string *dest, |
| 4842 | struct in_str *input, |
| 4843 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4844 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4845 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4846 | int next; |
| 4847 | |
| 4848 | again: |
| 4849 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4850 | if (ch != EOF) |
| 4851 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4852 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4853 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4854 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4855 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 4856 | return 0; |
| 4857 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4858 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4859 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4860 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4861 | debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n"); |
| 4862 | return 1; |
| 4863 | } |
| 4864 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4865 | if (ch != '\n') { |
| 4866 | next = i_peek(input); |
| 4867 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4868 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4869 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4870 | if (ch == '\\') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4871 | //TODO: check interactive behavior |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4872 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4873 | syntax_error("\\<eof>"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4874 | debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n"); |
| 4875 | return 1; |
| 4876 | } |
| 4877 | /* bash: |
| 4878 | * "The backslash retains its special meaning [in "..."] |
| 4879 | * only when followed by one of the following characters: |
| 4880 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 4881 | * within double quotes by preceding it with a backslash. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4882 | */ |
| 4883 | if (strchr("$`\"\\", next) != NULL) { |
| 4884 | o_addqchr(dest, i_getch(input)); |
| 4885 | } else { |
| 4886 | o_addqchr(dest, '\\'); |
| 4887 | } |
| 4888 | goto again; |
| 4889 | } |
| 4890 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4891 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4892 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 4893 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4894 | return 1; |
| 4895 | } |
| 4896 | goto again; |
| 4897 | } |
| 4898 | #if ENABLE_HUSH_TICK |
| 4899 | if (ch == '`') { |
| 4900 | //int pos = dest->length; |
| 4901 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4902 | o_addchr(dest, 0x80 | '`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4903 | if (add_till_backquote(dest, input)) |
| 4904 | return 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4905 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4906 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4907 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4908 | } |
| 4909 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4910 | o_addQchr(dest, ch); |
| 4911 | if (ch == '=' |
| 4912 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 4913 | || dest->o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4914 | && is_well_formed_var_name(dest->data, '=') |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4915 | ) { |
| 4916 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 4917 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4918 | goto again; |
| 4919 | } |
| 4920 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4921 | /* |
| 4922 | * Scan input until EOF or end_trigger char. |
| 4923 | * Return a list of pipes to execute, or NULL on EOF |
| 4924 | * or if end_trigger character is met. |
| 4925 | * On syntax error, exit is shell is not interactive, |
| 4926 | * reset parsing machinery and start parsing anew, |
| 4927 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4928 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4929 | static struct pipe *parse_stream(char **pstring, |
| 4930 | struct in_str *input, |
| 4931 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4932 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4933 | struct parse_context ctx; |
| 4934 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4935 | int is_in_dquote; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4936 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4937 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4938 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4939 | * 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] | 4940 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 4941 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4942 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 4943 | end_trigger ? : 'X'); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4944 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4945 | G.ifs = get_local_var_value("IFS"); |
| 4946 | if (G.ifs == NULL) |
| 4947 | G.ifs = " \t\n"; |
| 4948 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4949 | reset: |
| 4950 | #if ENABLE_HUSH_INTERACTIVE |
| 4951 | input->promptmode = 0; /* PS1 */ |
| 4952 | #endif |
| 4953 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 4954 | initialize_context(&ctx); |
| 4955 | is_in_dquote = 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4956 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4957 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4958 | const char *is_ifs; |
| 4959 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4960 | int ch; |
| 4961 | int next; |
| 4962 | int redir_fd; |
| 4963 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4964 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4965 | if (is_in_dquote) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4966 | /* dest.o_quoted = 1; - already is (see below) */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4967 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4968 | goto parse_error; |
| 4969 | } |
| 4970 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4971 | is_in_dquote = 0; |
| 4972 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4973 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4974 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4975 | ch, ch, dest.o_escape); |
| 4976 | if (ch == EOF) { |
| 4977 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4978 | |
| 4979 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4980 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4981 | goto parse_error; |
| 4982 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4983 | if (done_word(&dest, &ctx)) { |
| 4984 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4985 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4986 | o_free(&dest); |
| 4987 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4988 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4989 | /* If we got nothing... */ |
| 4990 | // TODO: test script consisting of just "&" |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4991 | if (pi->num_cmds == 0 |
| 4992 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 4993 | ) { |
| 4994 | free_pipe_list(pi, 0); |
| 4995 | pi = NULL; |
| 4996 | } |
| 4997 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4998 | #if !BB_MMU |
| 4999 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5000 | if (pstring) |
| 5001 | *pstring = ctx.as_string.data; |
| 5002 | else |
| 5003 | o_free_unsafe(&ctx.as_string); |
| 5004 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5005 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5006 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5007 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5008 | is_ifs = strchr(G.ifs, ch); |
| 5009 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
| 5010 | "\\$\"" USE_HUSH_TICK("`") /* always special */ |
| 5011 | , ch); |
| 5012 | |
| 5013 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5014 | o_addQchr(&dest, ch); |
| 5015 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 5016 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5017 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5018 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5019 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5020 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5021 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5022 | continue; |
| 5023 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5024 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5025 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5026 | if (done_word(&dest, &ctx)) { |
| 5027 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5028 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5029 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5030 | #if ENABLE_HUSH_CASE |
| 5031 | /* "case ... in <newline> word) ..." - |
| 5032 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5033 | if (ctx.command->argv == NULL |
| 5034 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5035 | ) { |
| 5036 | continue; |
| 5037 | } |
| 5038 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5039 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5040 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5041 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5042 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5043 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5044 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5045 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5046 | heredoc_cnt = 0; |
| 5047 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5048 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5049 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 5050 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5051 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5052 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5053 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5054 | if (end_trigger && end_trigger == ch |
| 5055 | && (heredoc_cnt == 0 || end_trigger != ';') |
| 5056 | ) { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5057 | //TODO: disallow "{ cmd }" without semicolon |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5058 | if (heredoc_cnt) { |
| 5059 | /* This is technically valid: |
| 5060 | * { cat <<HERE; }; echo Ok |
| 5061 | * heredoc |
| 5062 | * heredoc |
| 5063 | * heredoc |
| 5064 | * HERE |
| 5065 | * but we don't support this. |
| 5066 | * We require heredoc to be in enclosing {}/(), |
| 5067 | * if any. |
| 5068 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5069 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5070 | goto parse_error; |
| 5071 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5072 | if (done_word(&dest, &ctx)) { |
| 5073 | goto parse_error; |
| 5074 | } |
| 5075 | done_pipe(&ctx, PIPE_SEQ); |
| 5076 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5077 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5078 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5079 | 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] | 5080 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5081 | debug_printf_parse("parse_stream return %p: " |
| 5082 | "end_trigger char found\n", |
| 5083 | ctx.list_head); |
| 5084 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5085 | #if !BB_MMU |
| 5086 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5087 | if (pstring) |
| 5088 | *pstring = ctx.as_string.data; |
| 5089 | else |
| 5090 | o_free_unsafe(&ctx.as_string); |
| 5091 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5092 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5093 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5094 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5095 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5096 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5097 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5098 | next = '\0'; |
| 5099 | if (ch != '\n') { |
| 5100 | next = i_peek(input); |
| 5101 | } |
| 5102 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame^] | 5103 | /* Catch <, > before deciding whether this word is |
| 5104 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5105 | switch (ch) { |
| 5106 | case '>': |
| 5107 | redir_fd = redirect_opt_num(&dest); |
| 5108 | if (done_word(&dest, &ctx)) { |
| 5109 | goto parse_error; |
| 5110 | } |
| 5111 | redir_style = REDIRECT_OVERWRITE; |
| 5112 | if (next == '>') { |
| 5113 | redir_style = REDIRECT_APPEND; |
| 5114 | ch = i_getch(input); |
| 5115 | nommu_addchr(&ctx.as_string, ch); |
| 5116 | } |
| 5117 | #if 0 |
| 5118 | else if (next == '(') { |
| 5119 | syntax_error(">(process) not supported"); |
| 5120 | goto parse_error; |
| 5121 | } |
| 5122 | #endif |
| 5123 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5124 | goto parse_error; |
| 5125 | continue; /* back to top of while (1) */ |
| 5126 | case '<': |
| 5127 | redir_fd = redirect_opt_num(&dest); |
| 5128 | if (done_word(&dest, &ctx)) { |
| 5129 | goto parse_error; |
| 5130 | } |
| 5131 | redir_style = REDIRECT_INPUT; |
| 5132 | if (next == '<') { |
| 5133 | redir_style = REDIRECT_HEREDOC; |
| 5134 | heredoc_cnt++; |
| 5135 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5136 | ch = i_getch(input); |
| 5137 | nommu_addchr(&ctx.as_string, ch); |
| 5138 | } else if (next == '>') { |
| 5139 | redir_style = REDIRECT_IO; |
| 5140 | ch = i_getch(input); |
| 5141 | nommu_addchr(&ctx.as_string, ch); |
| 5142 | } |
| 5143 | #if 0 |
| 5144 | else if (next == '(') { |
| 5145 | syntax_error("<(process) not supported"); |
| 5146 | goto parse_error; |
| 5147 | } |
| 5148 | #endif |
| 5149 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5150 | goto parse_error; |
| 5151 | continue; /* back to top of while (1) */ |
| 5152 | } |
| 5153 | |
| 5154 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5155 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5156 | && !ctx.pending_redirect |
| 5157 | ) { |
| 5158 | /* ch is a special char and thus this word |
| 5159 | * cannot be an assignment */ |
| 5160 | dest.o_assignment = NOT_ASSIGNMENT; |
| 5161 | } |
| 5162 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5163 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5164 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5165 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5166 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5167 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5168 | if (ch == EOF || ch == '\n') |
| 5169 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5170 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5171 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5172 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5173 | nommu_addchr(&ctx.as_string, '\n'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5174 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5175 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5176 | } |
| 5177 | break; |
| 5178 | case '\\': |
| 5179 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5180 | syntax_error("\\<eof>"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5181 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5182 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5183 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5184 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5185 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5186 | o_addchr(&dest, ch); |
| 5187 | /* Example: echo Hello \2>file |
| 5188 | * we need to know that word 2 is quoted */ |
| 5189 | dest.o_quoted = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5190 | break; |
| 5191 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5192 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5193 | debug_printf_parse("parse_stream parse error: " |
| 5194 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5195 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5196 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5197 | break; |
| 5198 | case '\'': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5199 | dest.o_quoted = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5200 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5201 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5202 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5203 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5204 | goto parse_error; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5205 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5206 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5207 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5208 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5209 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5210 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5211 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5212 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5213 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5214 | break; |
| 5215 | case '"': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5216 | dest.o_quoted = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5217 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5218 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5219 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5220 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5221 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5222 | case '`': { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5223 | #if !BB_MMU |
| 5224 | int pos; |
| 5225 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5226 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5227 | o_addchr(&dest, '`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5228 | #if !BB_MMU |
| 5229 | pos = dest.length; |
| 5230 | #endif |
| 5231 | if (add_till_backquote(&dest, input)) |
| 5232 | goto parse_error; |
| 5233 | #if !BB_MMU |
| 5234 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5235 | o_addchr(&ctx.as_string, '`'); |
| 5236 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5237 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5238 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5239 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5240 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5241 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5242 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5243 | #if ENABLE_HUSH_CASE |
| 5244 | case_semi: |
| 5245 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5246 | if (done_word(&dest, &ctx)) { |
| 5247 | goto parse_error; |
| 5248 | } |
| 5249 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5250 | #if ENABLE_HUSH_CASE |
| 5251 | /* Eat multiple semicolons, detect |
| 5252 | * whether it means something special */ |
| 5253 | while (1) { |
| 5254 | ch = i_peek(input); |
| 5255 | if (ch != ';') |
| 5256 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5257 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5258 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5259 | if (ctx.ctx_res_w == RES_CASEI) { |
| 5260 | ctx.ctx_dsemicolon = 1; |
| 5261 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5262 | break; |
| 5263 | } |
| 5264 | } |
| 5265 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5266 | new_cmd: |
| 5267 | /* We just finished a cmd. New one may start |
| 5268 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5269 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5270 | break; |
| 5271 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5272 | if (done_word(&dest, &ctx)) { |
| 5273 | goto parse_error; |
| 5274 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5275 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5276 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5277 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5278 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5279 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5280 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5281 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5282 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5283 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5284 | if (done_word(&dest, &ctx)) { |
| 5285 | goto parse_error; |
| 5286 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5287 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5288 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5289 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5290 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5291 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5292 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5293 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5294 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5295 | } else { |
| 5296 | /* we could pick up a file descriptor choice here |
| 5297 | * with redirect_opt_num(), but bash doesn't do it. |
| 5298 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5299 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5300 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5301 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5302 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5303 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5304 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5305 | if (ctx.ctx_res_w == RES_MATCH |
| 5306 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5307 | && dest.length == 0 /* not word(... */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5308 | && dest.o_quoted == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5309 | ) { |
| 5310 | continue; |
| 5311 | } |
| 5312 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5313 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5314 | if (dest.length != 0 /* not just () but word() */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5315 | && dest.o_quoted == 0 /* not a"b"c() */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5316 | && ctx.command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5317 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5318 | && i_peek(input) == ')' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5319 | && !match_reserved_word(&dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5320 | ) { |
| 5321 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5322 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5323 | //if !BB_MMU o_addchr(&ctx.as_string... |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5324 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5325 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5326 | ch = i_getch(input); |
| 5327 | } while (ch == ' ' || ch == '\n'); |
| 5328 | if (ch != '{') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5329 | syntax_error("was expecting {"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5330 | goto parse_error; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5331 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5332 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5333 | } |
| 5334 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5335 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5336 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5337 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5338 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5339 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5340 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5341 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5342 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5343 | goto case_semi; |
| 5344 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5345 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5346 | /* proper use of this character is caught by end_trigger: |
| 5347 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5348 | * and it will match } earlier (not here). */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5349 | syntax_error("unexpected } or )"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5350 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5351 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5352 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5353 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5354 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5355 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5356 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5357 | parse_error: |
| 5358 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5359 | struct parse_context *pctx; |
| 5360 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5361 | |
| 5362 | /* Clean up allocated tree. |
| 5363 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5364 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 5365 | * while if false; then false; fi do break; done |
| 5366 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5367 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5368 | * Samples to catch leaks at execution: |
| 5369 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 5370 | * 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] | 5371 | */ |
| 5372 | pctx = &ctx; |
| 5373 | do { |
| 5374 | /* Update pipe/command counts, |
| 5375 | * otherwise freeing may miss some */ |
| 5376 | done_pipe(pctx, PIPE_SEQ); |
| 5377 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5378 | pctx->list_head, pctx); |
| 5379 | debug_print_tree(pctx->list_head, 0); |
| 5380 | free_pipe_list(pctx->list_head, 0); |
| 5381 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5382 | #if !BB_MMU |
| 5383 | o_free_unsafe(&pctx->as_string); |
| 5384 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5385 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5386 | if (pctx != &ctx) { |
| 5387 | free(pctx); |
| 5388 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5389 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5390 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5391 | /* Free text, clear all dest fields */ |
| 5392 | o_free(&dest); |
| 5393 | /* If we are not in top-level parse, we return, |
| 5394 | * our caller will propagate error. |
| 5395 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5396 | if (end_trigger != ';') { |
| 5397 | #if !BB_MMU |
| 5398 | if (pstring) |
| 5399 | *pstring = NULL; |
| 5400 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5401 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5402 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5403 | /* Discard cached input, force prompt */ |
| 5404 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5405 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5406 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5407 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5408 | } |
| 5409 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5410 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5411 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 5412 | * end_trigger controls how often we stop parsing |
| 5413 | * NUL: parse all, execute, return |
| 5414 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 5415 | */ |
| 5416 | 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] | 5417 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5418 | while (1) { |
| 5419 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5420 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5421 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5422 | if (!pipe_list) /* EOF */ |
| 5423 | break; |
| 5424 | debug_print_tree(pipe_list, 0); |
| 5425 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 5426 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5427 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5428 | } |
| 5429 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5430 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5431 | { |
| 5432 | struct in_str input; |
| 5433 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5434 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5435 | } |
| 5436 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5437 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5438 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5439 | struct in_str input; |
| 5440 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5441 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5442 | } |
| 5443 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5444 | /* Called a few times only (or even once if "sh -c") */ |
| 5445 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5446 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5447 | unsigned sig; |
| 5448 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5449 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5450 | mask = (1 << SIGQUIT); |
| 5451 | if (G_interactive_fd) { |
| 5452 | mask = 0 |
| 5453 | | (1 << SIGQUIT) |
| 5454 | | (1 << SIGTERM) |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5455 | //TODO | (1 << SIGHUP) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5456 | #if ENABLE_HUSH_JOB |
| 5457 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
| 5458 | #endif |
| 5459 | | (1 << SIGINT) |
| 5460 | ; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5461 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5462 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5463 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5464 | if (!second_time) |
| 5465 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 5466 | sig = 0; |
| 5467 | while (mask) { |
| 5468 | if (mask & 1) |
| 5469 | sigaddset(&G.blocked_set, sig); |
| 5470 | mask >>= 1; |
| 5471 | sig++; |
| 5472 | } |
| 5473 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5474 | |
| 5475 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 5476 | second_time ? NULL : &G.inherited_set); |
| 5477 | /* POSIX allows shell to re-enable SIGCHLD |
| 5478 | * even if it was SIG_IGN on entry */ |
| 5479 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5480 | if (!second_time) |
| 5481 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 5482 | } |
| 5483 | |
| 5484 | #if ENABLE_HUSH_JOB |
| 5485 | /* helper */ |
| 5486 | static void maybe_set_to_sigexit(int sig) |
| 5487 | { |
| 5488 | void (*handler)(int); |
| 5489 | /* non_DFL_mask'ed signals are, well, masked, |
| 5490 | * no need to set handler for them. |
| 5491 | */ |
| 5492 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 5493 | handler = signal(sig, sigexit); |
| 5494 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 5495 | signal(sig, handler); |
| 5496 | } |
| 5497 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5498 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5499 | static void set_fatal_handlers(void) |
| 5500 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 5501 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5502 | if (HUSH_DEBUG) { |
| 5503 | maybe_set_to_sigexit(SIGILL ); |
| 5504 | maybe_set_to_sigexit(SIGFPE ); |
| 5505 | maybe_set_to_sigexit(SIGBUS ); |
| 5506 | maybe_set_to_sigexit(SIGSEGV); |
| 5507 | maybe_set_to_sigexit(SIGTRAP); |
| 5508 | } /* else: hush is perfect. what SEGV? */ |
| 5509 | maybe_set_to_sigexit(SIGABRT); |
| 5510 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 5511 | maybe_set_to_sigexit(SIGPIPE); |
| 5512 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5513 | //TODO: disable and move down when proper SIGHUP handling is added |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5514 | maybe_set_to_sigexit(SIGHUP ); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5515 | /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5516 | * if we aren't interactive... but in this case |
| 5517 | * we never want to restore pgrp on exit, and this fn is not called */ |
| 5518 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 5519 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 5520 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5521 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5522 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5523 | static int set_mode(const char cstate, const char mode) |
| 5524 | { |
| 5525 | int state = (cstate == '-' ? 1 : 0); |
| 5526 | switch (mode) { |
| 5527 | case 'n': G.fake_mode = state; break; |
| 5528 | case 'x': /*G.debug_mode = state;*/ break; |
| 5529 | default: return EXIT_FAILURE; |
| 5530 | } |
| 5531 | return EXIT_SUCCESS; |
| 5532 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5533 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 5534 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 5535 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5536 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5537 | static const struct variable const_shell_ver = { |
| 5538 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5539 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5540 | .max_len = 1, /* 0 can provoke free(name) */ |
| 5541 | .flg_export = 1, |
| 5542 | .flg_read_only = 1, |
| 5543 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5544 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5545 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5546 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5547 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 5548 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 5549 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5550 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5551 | G.last_exitcode = EXIT_SUCCESS; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5552 | #if !BB_MMU |
| 5553 | G.argv0_for_re_execing = argv[0]; |
| 5554 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5555 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5556 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 5557 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5558 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5559 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 5560 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5561 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5562 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5563 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5564 | if (e) while (*e) { |
| 5565 | char *value = strchr(*e, '='); |
| 5566 | if (value) { /* paranoia */ |
| 5567 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 5568 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5569 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5570 | cur_var->max_len = strlen(*e); |
| 5571 | cur_var->flg_export = 1; |
| 5572 | } |
| 5573 | e++; |
| 5574 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5575 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5576 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5577 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5578 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 5579 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5580 | G.global_argc = argc; |
| 5581 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 5582 | /* Initialize some more globals to non-zero values */ |
| 5583 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5584 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 5585 | if (ENABLE_FEATURE_EDITING) |
| 5586 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5587 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5588 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 5589 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5590 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5591 | * block_signals(0) if we are going to execute "sh <script>", |
| 5592 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5593 | * If we later decide that we are interactive, we run block_signals(0) |
| 5594 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 5595 | * in order to intercept (more) signals. |
| 5596 | */ |
| 5597 | |
| 5598 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5599 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5600 | while (1) { |
| 5601 | opt = getopt(argc, argv, "c:xins" |
| 5602 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 5603 | "<:$:!:?:D:R:V:" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5604 | #endif |
| 5605 | ); |
| 5606 | if (opt <= 0) |
| 5607 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5608 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5609 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5610 | if (!G.root_pid) |
| 5611 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5612 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 5613 | if (!argv[optind]) { |
| 5614 | /* -c 'script' (no params): prevent empty $0 */ |
| 5615 | *--G.global_argv = argv[0]; |
| 5616 | optind--; |
| 5617 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5618 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5619 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5620 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5621 | goto final_return; |
| 5622 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 5623 | /* Well, we cannot just declare interactiveness, |
| 5624 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5625 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5626 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5627 | case 's': |
| 5628 | /* "-s" means "read from stdin", but this is how we always |
| 5629 | * operate, so simply do nothing here. */ |
| 5630 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5631 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 5632 | case '<': /* "big heredoc" support */ |
| 5633 | full_write(STDOUT_FILENO, optarg, strlen(optarg)); |
| 5634 | _exit(0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5635 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5636 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 5637 | optarg++; |
| 5638 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 5639 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5640 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5641 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5642 | optarg++; |
| 5643 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5644 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5645 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5646 | case 'R': |
| 5647 | case 'V': |
| 5648 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 5649 | break; |
| 5650 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5651 | case 'n': |
| 5652 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5653 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5654 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5655 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5656 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5657 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 5658 | " or: sh -c command [args]...\n\n"); |
| 5659 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5660 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5661 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5662 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5663 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5664 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5665 | |
| 5666 | if (!G.root_pid) |
| 5667 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5668 | |
| 5669 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5670 | if (argv[0] && argv[0][0] == '-') { |
| 5671 | FILE *input; |
| 5672 | /* XXX what should argv be while sourcing /etc/profile? */ |
| 5673 | debug_printf("sourcing /etc/profile\n"); |
| 5674 | input = fopen_for_read("/etc/profile"); |
| 5675 | if (input != NULL) { |
| 5676 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5677 | block_signals(0); /* 0: called 1st time */ |
| 5678 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5679 | parse_and_run_file(input); |
| 5680 | fclose(input); |
| 5681 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5682 | /* bash: after sourcing /etc/profile, |
| 5683 | * tries to source (in the given order): |
| 5684 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 5685 | * stopping of first found. --noprofile turns this off. |
| 5686 | * bash also sources ~/.bash_logout on exit. |
| 5687 | * If called as sh, skips .bash_XXX files. |
| 5688 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5689 | } |
| 5690 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5691 | if (argv[optind]) { |
| 5692 | FILE *input; |
| 5693 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5694 | * "bash <script>" (which is never interactive (unless -i?)) |
| 5695 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5696 | * If called as sh, does the same but with $ENV. |
| 5697 | */ |
| 5698 | debug_printf("running script '%s'\n", argv[optind]); |
| 5699 | G.global_argv = argv + optind; |
| 5700 | G.global_argc = argc - optind; |
| 5701 | input = xfopen_for_read(argv[optind]); |
| 5702 | close_on_exec_on(fileno(input)); |
| 5703 | if (!signal_mask_is_inited) |
| 5704 | block_signals(0); /* 0: called 1st time */ |
| 5705 | parse_and_run_file(input); |
| 5706 | #if ENABLE_FEATURE_CLEAN_UP |
| 5707 | fclose(input); |
| 5708 | #endif |
| 5709 | goto final_return; |
| 5710 | } |
| 5711 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5712 | /* Up to here, shell was non-interactive. Now it may become one. |
| 5713 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 5714 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5715 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5716 | /* 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] | 5717 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 5718 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5719 | * no arguments remaining or the -s flag given |
| 5720 | * standard input is a terminal |
| 5721 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5722 | * Refer to Posix.2, the description of the 'sh' utility. |
| 5723 | */ |
| 5724 | #if ENABLE_HUSH_JOB |
| 5725 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5726 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5727 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5728 | //TODO: "interactive" and "have job control" are two different things. |
| 5729 | //If tcgetpgrp fails here, "have job control" is false, but "interactive" |
| 5730 | //should stay on! Currently, we mix these into one. |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5731 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5732 | /* try to dup stdin to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5733 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5734 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5735 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5736 | G_interactive_fd = dup(STDIN_FILENO); |
| 5737 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5738 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5739 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5740 | } |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5741 | // TODO: track & disallow any attempts of user |
| 5742 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5743 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5744 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5745 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5746 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5747 | pid_t shell_pgrp; |
| 5748 | |
| 5749 | /* We are indeed interactive shell, and we will perform |
| 5750 | * job control. Setting up for that. */ |
| 5751 | |
| 5752 | close_on_exec_on(G_interactive_fd); |
| 5753 | /* If we were run as 'hush &', sleep until we are |
| 5754 | * in the foreground (tty pgrp == our pgrp). |
| 5755 | * If we get started under a job aware app (like bash), |
| 5756 | * make sure we are now in charge so we don't fight over |
| 5757 | * who gets the foreground */ |
| 5758 | while (1) { |
| 5759 | shell_pgrp = getpgrp(); |
| 5760 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 5761 | if (G.saved_tty_pgrp == shell_pgrp) |
| 5762 | break; |
| 5763 | /* send TTIN to ourself (should stop us) */ |
| 5764 | kill(- shell_pgrp, SIGTTIN); |
| 5765 | } |
| 5766 | /* Block some signals */ |
| 5767 | block_signals(signal_mask_is_inited); |
| 5768 | /* Set other signals to restore saved_tty_pgrp */ |
| 5769 | set_fatal_handlers(); |
| 5770 | /* Put ourselves in our own process group */ |
| 5771 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 5772 | /* Grab control of the terminal */ |
| 5773 | tcsetpgrp(G_interactive_fd, getpid()); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 5774 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 5775 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5776 | enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5777 | if (setjmp(die_jmp)) { |
| 5778 | /* xfunc has failed! die die die */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 5779 | /* no EXIT traps, this is an escape hatch! */ |
| 5780 | G.exiting = 1; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5781 | hush_exit(xfunc_error_retval); |
| 5782 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5783 | } else if (!signal_mask_is_inited) { |
| 5784 | block_signals(0); /* 0: called 1st time */ |
| 5785 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5786 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5787 | /* No job control compiled in, only prompt/line editing */ |
| 5788 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5789 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5790 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5791 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5792 | G_interactive_fd = dup(STDIN_FILENO); |
| 5793 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5794 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5795 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5796 | } |
| 5797 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5798 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5799 | close_on_exec_on(G_interactive_fd); |
| 5800 | block_signals(signal_mask_is_inited); |
| 5801 | } else if (!signal_mask_is_inited) { |
| 5802 | block_signals(0); |
| 5803 | } |
| 5804 | #else |
| 5805 | /* We have interactiveness code disabled */ |
| 5806 | if (!signal_mask_is_inited) { |
| 5807 | block_signals(0); |
| 5808 | } |
| 5809 | #endif |
| 5810 | /* bash: |
| 5811 | * if interactive but not a login shell, sources ~/.bashrc |
| 5812 | * (--norc turns this off, --rcfile <file> overrides) |
| 5813 | */ |
| 5814 | |
| 5815 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 5816 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 5817 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 5818 | } |
| 5819 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5820 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5821 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5822 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5823 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5824 | if (G.cwd != bb_msg_unknown) |
| 5825 | free((char*)G.cwd); |
| 5826 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5827 | while (cur_var) { |
| 5828 | struct variable *tmp = cur_var; |
| 5829 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5830 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5831 | cur_var = cur_var->next; |
| 5832 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 5833 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5834 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5835 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5836 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 5837 | |
| 5838 | |
| 5839 | #if ENABLE_LASH |
| 5840 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 5841 | int lash_main(int argc, char **argv) |
| 5842 | { |
| 5843 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 5844 | return hush_main(argc, argv); |
| 5845 | } |
| 5846 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5847 | |
| 5848 | |
| 5849 | /* |
| 5850 | * Built-ins |
| 5851 | */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5852 | static int builtin_trap(char **argv) |
| 5853 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5854 | int i; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5855 | int sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5856 | char *new_cmd; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5857 | |
| 5858 | if (!G.traps) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5859 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5860 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5861 | argv++; |
| 5862 | if (!*argv) { |
| 5863 | /* No args: print all trapped. This isn't 100% correct as we |
| 5864 | * 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] | 5865 | */ |
| 5866 | for (i = 0; i < NSIG; ++i) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5867 | if (G.traps[i]) |
| 5868 | printf("trap -- '%s' %s\n", G.traps[i], get_signame(i)); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5869 | return EXIT_SUCCESS; |
| 5870 | } |
| 5871 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5872 | new_cmd = NULL; |
| 5873 | i = 0; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5874 | /* If first arg is decimal: reset all specified signals */ |
| 5875 | sig = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5876 | if (errno == 0) { |
| 5877 | int ret; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5878 | set_all: |
| 5879 | ret = EXIT_SUCCESS; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5880 | while (*argv) { |
| 5881 | sig = get_signum(*argv++); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5882 | if (sig < 0 || sig >= NSIG) { |
| 5883 | ret = EXIT_FAILURE; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5884 | /* Mimic bash message exactly */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5885 | bb_perror_msg("trap: %s: invalid signal specification", argv[i]); |
| 5886 | continue; |
| 5887 | } |
| 5888 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5889 | free(G.traps[sig]); |
| 5890 | G.traps[sig] = xstrdup(new_cmd); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5891 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5892 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 5893 | get_signame(sig), sig, G.traps[sig]); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5894 | |
| 5895 | /* There is no signal for 0 (EXIT) */ |
| 5896 | if (sig == 0) |
| 5897 | continue; |
| 5898 | |
| 5899 | if (new_cmd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5900 | sigaddset(&G.blocked_set, sig); |
| 5901 | } else { |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5902 | /* There was a trap handler, we are removing it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5903 | * (if sig has non-DFL handling, |
| 5904 | * we don't need to do anything) */ |
| 5905 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 5906 | continue; |
| 5907 | sigdelset(&G.blocked_set, sig); |
| 5908 | } |
| 5909 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5910 | } |
| 5911 | return ret; |
| 5912 | } |
| 5913 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5914 | /* First arg is "-": reset all specified to default */ |
| 5915 | /* First arg is "": ignore all specified */ |
| 5916 | /* Everything else: execute first arg upon signal */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5917 | if (!argv[1]) { |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5918 | bb_error_msg("trap: invalid arguments"); |
| 5919 | return EXIT_FAILURE; |
| 5920 | } |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5921 | if (NOT_LONE_DASH(*argv)) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5922 | new_cmd = *argv; |
| 5923 | argv++; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5924 | goto set_all; |
| 5925 | } |
| 5926 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5927 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5928 | { |
| 5929 | return 0; |
| 5930 | } |
| 5931 | |
| 5932 | static int builtin_test(char **argv) |
| 5933 | { |
| 5934 | int argc = 0; |
| 5935 | while (*argv) { |
| 5936 | argc++; |
| 5937 | argv++; |
| 5938 | } |
| 5939 | return test_main(argc, argv - argc); |
| 5940 | } |
| 5941 | |
| 5942 | static int builtin_echo(char **argv) |
| 5943 | { |
| 5944 | int argc = 0; |
| 5945 | while (*argv) { |
| 5946 | argc++; |
| 5947 | argv++; |
| 5948 | } |
| 5949 | return echo_main(argc, argv - argc); |
| 5950 | } |
| 5951 | |
| 5952 | static int builtin_eval(char **argv) |
| 5953 | { |
| 5954 | int rcode = EXIT_SUCCESS; |
| 5955 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5956 | if (*++argv) { |
| 5957 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5958 | /* bash: |
| 5959 | * eval "echo Hi; done" ("done" is syntax error): |
| 5960 | * "echo Hi" will not execute too. |
| 5961 | */ |
| 5962 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5963 | free(str); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5964 | rcode = G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5965 | } |
| 5966 | return rcode; |
| 5967 | } |
| 5968 | |
| 5969 | static int builtin_cd(char **argv) |
| 5970 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5971 | const char *newdir = argv[1]; |
| 5972 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5973 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 5974 | * bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 5975 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5976 | newdir = getenv("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5977 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5978 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5979 | /* Mimic bash message exactly */ |
| 5980 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5981 | return EXIT_FAILURE; |
| 5982 | } |
| 5983 | set_cwd(); |
| 5984 | return EXIT_SUCCESS; |
| 5985 | } |
| 5986 | |
| 5987 | static int builtin_exec(char **argv) |
| 5988 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5989 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5990 | return EXIT_SUCCESS; /* bash does this */ |
| 5991 | { |
| 5992 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5993 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5994 | #endif |
| 5995 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5996 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5997 | /* never returns */ |
| 5998 | } |
| 5999 | } |
| 6000 | |
| 6001 | static int builtin_exit(char **argv) |
| 6002 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 6003 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6004 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 6005 | //puts("exit"); /* bash does it */ |
| 6006 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 6007 | // On second consecutive 'exit', exit anyway. |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 6008 | // perhaps use G.exiting = -1 as indicator "last cmd was exit" |
| 6009 | |
| 6010 | /* note: EXIT trap is run by hush_exit */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6011 | if (*++argv == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6012 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6013 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 6014 | xfunc_error_retval = 255; |
| 6015 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6016 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6017 | } |
| 6018 | |
| 6019 | static int builtin_export(char **argv) |
| 6020 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6021 | if (*++argv == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6022 | // TODO: |
| 6023 | // ash emits: export VAR='VAL' |
| 6024 | // bash: declare -x VAR="VAL" |
| 6025 | // (both also escape as needed (quotes, $, etc)) |
| 6026 | char **e = environ; |
| 6027 | if (e) |
| 6028 | while (*e) |
| 6029 | puts(*e++); |
| 6030 | return EXIT_SUCCESS; |
| 6031 | } |
| 6032 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6033 | do { |
| 6034 | const char *value; |
| 6035 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6036 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6037 | value = strchr(name, '='); |
| 6038 | if (!value) { |
| 6039 | /* They are exporting something without a =VALUE */ |
| 6040 | struct variable *var; |
| 6041 | |
| 6042 | var = get_local_var(name); |
| 6043 | if (var) { |
| 6044 | var->flg_export = 1; |
| 6045 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 6046 | putenv(var->varstr); |
| 6047 | } |
| 6048 | /* bash does not return an error when trying to export |
| 6049 | * an undefined variable. Do likewise. */ |
| 6050 | continue; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6051 | } |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6052 | set_local_var(xstrdup(name), 1, 0); |
| 6053 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6054 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6055 | return EXIT_SUCCESS; |
| 6056 | } |
| 6057 | |
| 6058 | #if ENABLE_HUSH_JOB |
| 6059 | /* built-in 'fg' and 'bg' handler */ |
| 6060 | static int builtin_fg_bg(char **argv) |
| 6061 | { |
| 6062 | int i, jobnum; |
| 6063 | struct pipe *pi; |
| 6064 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6065 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6066 | return EXIT_FAILURE; |
| 6067 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 6068 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6069 | for (pi = G.job_list; pi; pi = pi->next) { |
| 6070 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6071 | goto found; |
| 6072 | } |
| 6073 | } |
| 6074 | bb_error_msg("%s: no current job", argv[0]); |
| 6075 | return EXIT_FAILURE; |
| 6076 | } |
| 6077 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 6078 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 6079 | return EXIT_FAILURE; |
| 6080 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6081 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6082 | if (pi->jobid == jobnum) { |
| 6083 | goto found; |
| 6084 | } |
| 6085 | } |
| 6086 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 6087 | return EXIT_FAILURE; |
| 6088 | found: |
| 6089 | // TODO: bash prints a string representation |
| 6090 | // of job being foregrounded (like "sleep 1 | cat") |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6091 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6092 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6093 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6094 | } |
| 6095 | |
| 6096 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6097 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 6098 | for (i = 0; i < pi->num_cmds; i++) { |
| 6099 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 6100 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6101 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6102 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6103 | |
| 6104 | i = kill(- pi->pgrp, SIGCONT); |
| 6105 | if (i < 0) { |
| 6106 | if (errno == ESRCH) { |
| 6107 | delete_finished_bg_job(pi); |
| 6108 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6109 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6110 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6111 | } |
| 6112 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6113 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6114 | remove_bg_job(pi); |
| 6115 | return checkjobs_and_fg_shell(pi); |
| 6116 | } |
| 6117 | return EXIT_SUCCESS; |
| 6118 | } |
| 6119 | #endif |
| 6120 | |
| 6121 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6122 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6123 | { |
| 6124 | const struct built_in_command *x; |
| 6125 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6126 | printf("\n" |
| 6127 | "Built-in commands:\n" |
| 6128 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6129 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 6130 | printf("%s\t%s\n", x->cmd, x->descr); |
| 6131 | } |
| 6132 | printf("\n\n"); |
| 6133 | return EXIT_SUCCESS; |
| 6134 | } |
| 6135 | #endif |
| 6136 | |
| 6137 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6138 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6139 | { |
| 6140 | struct pipe *job; |
| 6141 | const char *status_string; |
| 6142 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6143 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6144 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6145 | status_string = "Stopped"; |
| 6146 | else |
| 6147 | status_string = "Running"; |
| 6148 | |
| 6149 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 6150 | } |
| 6151 | return EXIT_SUCCESS; |
| 6152 | } |
| 6153 | #endif |
| 6154 | |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 6155 | #if HUSH_DEBUG |
| 6156 | static int builtin_memleak(char **argv UNUSED_PARAM) |
| 6157 | { |
| 6158 | void *p; |
| 6159 | unsigned long l; |
| 6160 | |
| 6161 | /* Crude attempt to find where "free memory" starts, |
| 6162 | * sans fragmentation. */ |
| 6163 | p = malloc(240); |
| 6164 | l = (unsigned long)p; |
| 6165 | free(p); |
| 6166 | p = malloc(3400); |
| 6167 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 6168 | free(p); |
| 6169 | |
| 6170 | if (!G.memleak_value) |
| 6171 | G.memleak_value = l; |
| 6172 | |
| 6173 | l -= G.memleak_value; |
| 6174 | if ((long)l < 0) |
| 6175 | l = 0; |
| 6176 | l /= 1024; |
| 6177 | if (l > 127) |
| 6178 | l = 127; |
| 6179 | |
| 6180 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 6181 | return l; |
| 6182 | } |
| 6183 | #endif |
| 6184 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6185 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6186 | { |
| 6187 | puts(set_cwd()); |
| 6188 | return EXIT_SUCCESS; |
| 6189 | } |
| 6190 | |
| 6191 | static int builtin_read(char **argv) |
| 6192 | { |
| 6193 | char *string; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6194 | const char *name = "REPLY"; |
| 6195 | |
| 6196 | if (argv[1]) { |
| 6197 | name = argv[1]; |
| 6198 | if (!is_well_formed_var_name(name, '\0')) { |
| 6199 | /* Mimic bash message */ |
| 6200 | bb_error_msg("read: '%s': not a valid identifier", name); |
| 6201 | return 1; |
| 6202 | } |
| 6203 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6204 | |
| 6205 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6206 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6207 | } |
| 6208 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6209 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 6210 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6211 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6212 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 6213 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6214 | * set -- [argument...] |
| 6215 | * set -o |
| 6216 | * set +o |
| 6217 | * Implementations shall support the options in both their hyphen and |
| 6218 | * plus-sign forms. These options can also be specified as options to sh. |
| 6219 | * Examples: |
| 6220 | * Write out all variables and their values: set |
| 6221 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 6222 | * Turn on the -x and -v options: set -xv |
| 6223 | * Unset all positional parameters: set -- |
| 6224 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 6225 | * Set the positional parameters to the expansion of x, even if x expands |
| 6226 | * with a leading '-' or '+': set -- $x |
| 6227 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6228 | * 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] | 6229 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6230 | static int builtin_set(char **argv) |
| 6231 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6232 | int n; |
| 6233 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6234 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6235 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6236 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6237 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6238 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6239 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6240 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6241 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6242 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6243 | do { |
| 6244 | if (!strcmp(arg, "--")) { |
| 6245 | ++argv; |
| 6246 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6247 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6248 | |
| 6249 | if (arg[0] == '+' || arg[0] == '-') { |
| 6250 | for (n = 1; arg[n]; ++n) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6251 | if (set_mode(arg[0], arg[n])) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6252 | goto error; |
| 6253 | continue; |
| 6254 | } |
| 6255 | |
| 6256 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6257 | } while ((arg = *++argv) != NULL); |
| 6258 | /* Now argv[0] is 1st argument */ |
| 6259 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6260 | /* Only reset global_argv if we didn't process anything */ |
| 6261 | if (arg == NULL) |
| 6262 | return EXIT_SUCCESS; |
| 6263 | set_argv: |
| 6264 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6265 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 6266 | g_argv = G.global_argv; |
| 6267 | if (G.global_args_malloced) { |
| 6268 | pp = g_argv; |
| 6269 | while (*++pp) |
| 6270 | free(*pp); |
| 6271 | g_argv[1] = NULL; |
| 6272 | } else { |
| 6273 | G.global_args_malloced = 1; |
| 6274 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 6275 | pp[0] = g_argv[0]; /* retain $0 */ |
| 6276 | g_argv = pp; |
| 6277 | } |
| 6278 | /* This realloc's G.global_argv */ |
| 6279 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 6280 | |
| 6281 | n = 1; |
| 6282 | while (*++pp) |
| 6283 | n++; |
| 6284 | G.global_argc = n; |
| 6285 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6286 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6287 | |
| 6288 | /* Nothing known, so abort */ |
| 6289 | error: |
| 6290 | bb_error_msg("set: %s: invalid option", arg); |
| 6291 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6292 | } |
| 6293 | |
| 6294 | static int builtin_shift(char **argv) |
| 6295 | { |
| 6296 | int n = 1; |
| 6297 | if (argv[1]) { |
| 6298 | n = atoi(argv[1]); |
| 6299 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6300 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6301 | if (G.global_args_malloced) { |
| 6302 | int m = 1; |
| 6303 | while (m <= n) |
| 6304 | free(G.global_argv[m++]); |
| 6305 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6306 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6307 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 6308 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6309 | return EXIT_SUCCESS; |
| 6310 | } |
| 6311 | return EXIT_FAILURE; |
| 6312 | } |
| 6313 | |
| 6314 | static int builtin_source(char **argv) |
| 6315 | { |
| 6316 | FILE *input; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6317 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6318 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6319 | return EXIT_FAILURE; |
| 6320 | |
| 6321 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6322 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6323 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6324 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6325 | return EXIT_FAILURE; |
| 6326 | } |
| 6327 | close_on_exec_on(fileno(input)); |
| 6328 | |
| 6329 | /* Now run the file */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6330 | //TODO: |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6331 | /* 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] | 6332 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6333 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6334 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6335 | fclose(input); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6336 | return G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6337 | } |
| 6338 | |
| 6339 | static int builtin_umask(char **argv) |
| 6340 | { |
| 6341 | mode_t new_umask; |
| 6342 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6343 | if (arg) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6344 | //TODO: umask may take chmod-like symbolic masks |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 6345 | new_umask = bb_strtou(arg, NULL, 8); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6346 | if (errno) { |
| 6347 | //Message? bash examples: |
| 6348 | //bash: umask: 'q': invalid symbolic mode operator |
| 6349 | //bash: umask: 999: octal number out of range |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6350 | return EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6351 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6352 | } else { |
| 6353 | new_umask = umask(0); |
| 6354 | printf("%.3o\n", (unsigned) new_umask); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6355 | /* fall through and restore new_umask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6356 | } |
| 6357 | umask(new_umask); |
| 6358 | return EXIT_SUCCESS; |
| 6359 | } |
| 6360 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6361 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6362 | static int builtin_unset(char **argv) |
| 6363 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6364 | int ret; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6365 | char var; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6366 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6367 | if (!*++argv) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6368 | return EXIT_SUCCESS; |
| 6369 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6370 | var = 'v'; |
| 6371 | if (argv[0][0] == '-') { |
| 6372 | switch (argv[0][1]) { |
| 6373 | case 'v': |
| 6374 | case 'f': |
| 6375 | var = argv[0][1]; |
| 6376 | break; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6377 | default: |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6378 | bb_error_msg("unset: %s: invalid option", *argv); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6379 | return EXIT_FAILURE; |
| 6380 | } |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6381 | //TODO: disallow "unset -vf ..." too |
| 6382 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6383 | } |
| 6384 | |
| 6385 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6386 | while (*argv) { |
| 6387 | if (var == 'v') { |
| 6388 | if (unset_local_var(*argv)) { |
| 6389 | /* unset <nonexistent_var> doesn't fail. |
| 6390 | * Error is when one tries to unset RO var. |
| 6391 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6392 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6393 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6394 | } |
| 6395 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6396 | else { |
| 6397 | unset_local_func(*argv); |
| 6398 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6399 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6400 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6401 | } |
| 6402 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6403 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6404 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6405 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 6406 | static int builtin_wait(char **argv) |
| 6407 | { |
| 6408 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6409 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6410 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6411 | if (*++argv == NULL) { |
| 6412 | /* Don't care about wait results */ |
| 6413 | /* Note 1: must wait until there are no more children */ |
| 6414 | /* Note 2: must be interruptible */ |
| 6415 | /* Examples: |
| 6416 | * $ sleep 3 & sleep 6 & wait |
| 6417 | * [1] 30934 sleep 3 |
| 6418 | * [2] 30935 sleep 6 |
| 6419 | * [1] Done sleep 3 |
| 6420 | * [2] Done sleep 6 |
| 6421 | * $ sleep 3 & sleep 6 & wait |
| 6422 | * [1] 30936 sleep 3 |
| 6423 | * [2] 30937 sleep 6 |
| 6424 | * [1] Done sleep 3 |
| 6425 | * ^C <-- after ~4 sec from keyboard |
| 6426 | * $ |
| 6427 | */ |
| 6428 | sigaddset(&G.blocked_set, SIGCHLD); |
| 6429 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6430 | while (1) { |
| 6431 | checkjobs(NULL); |
| 6432 | if (errno == ECHILD) |
| 6433 | break; |
| 6434 | /* Wait for SIGCHLD or any other signal of interest */ |
| 6435 | /* sigtimedwait with infinite timeout: */ |
| 6436 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 6437 | if (sig > 0) { |
| 6438 | sig = check_and_run_traps(sig); |
| 6439 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 6440 | ret = 128 + sig; |
| 6441 | break; |
| 6442 | } |
| 6443 | } |
| 6444 | } |
| 6445 | sigdelset(&G.blocked_set, SIGCHLD); |
| 6446 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6447 | return ret; |
| 6448 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6449 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6450 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6451 | while (*argv) { |
| 6452 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 6453 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6454 | /* mimic bash message */ |
| 6455 | 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] | 6456 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6457 | } |
| 6458 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6459 | if (WIFSIGNALED(status)) |
| 6460 | ret = 128 + WTERMSIG(status); |
| 6461 | else if (WIFEXITED(status)) |
| 6462 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6463 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6464 | ret = EXIT_FAILURE; |
| 6465 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6466 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6467 | ret = 127; |
| 6468 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6469 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6470 | } |
| 6471 | |
| 6472 | return ret; |
| 6473 | } |
| 6474 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 6475 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6476 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6477 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6478 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6479 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 6480 | return EXIT_SUCCESS; /* bash compat */ |
| 6481 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6482 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 6483 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6484 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6485 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 6486 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6487 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6488 | G.flag_break_continue = BC_BREAK; |
| 6489 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6490 | } |
| 6491 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6492 | if (G.depth_of_loop < G.depth_break_continue) |
| 6493 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6494 | return EXIT_SUCCESS; |
| 6495 | } |
| 6496 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6497 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6498 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6499 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 6500 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6501 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 6502 | #endif |