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 | * |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 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 |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 43 | * Tilde Expansion |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 44 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 45 | * Bash stuff (maybe optionally enable?): |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 46 | * &> and >& redirection of stdout+stderr |
| 47 | * Brace expansion |
| 48 | * reserved words: [[ ]] function select |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 49 | * substrings ${var:1:5} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 50 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 51 | * TODOs: |
| 52 | * grep for "TODO" and fix (some of them are easy) |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 53 | * change { and } from special chars to reserved words |
Denis Vlasenko | fa4ca78 | 2009-04-16 12:00:15 +0000 | [diff] [blame] | 54 | * $var refs in function do not pick up values set by "var=val func" |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 55 | * builtins: 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 | * separate job control from interactiveness |
| 60 | * (testcase: booting with init=/bin/hush does not show prompt (2009-04)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 61 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 62 | * 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] | 63 | */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 64 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 65 | #include <glob.h> |
| 66 | /* #include <dmalloc.h> */ |
| 67 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 68 | # include <fnmatch.h> |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 69 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 70 | #include "math.h" |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 71 | #include "match.h" |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 72 | #ifndef PIPE_BUF |
| 73 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 74 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 75 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 76 | |
| 77 | /* Debug build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 78 | #define LEAK_HUNTING 0 |
| 79 | #define BUILD_AS_NOMMU 0 |
| 80 | /* Enable/disable sanity checks. Ok to enable in production, |
| 81 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 82 | * Keeping 1 for now even in released versions. |
| 83 | */ |
| 84 | #define HUSH_DEBUG 1 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 85 | |
| 86 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 87 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 88 | # undef BB_MMU |
| 89 | # undef USE_FOR_NOMMU |
| 90 | # undef USE_FOR_MMU |
| 91 | # define BB_MMU 0 |
| 92 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 93 | # define USE_FOR_MMU(...) |
| 94 | #endif |
| 95 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 96 | #if defined SINGLE_APPLET_MAIN |
| 97 | /* STANDALONE does not make sense, and won't compile */ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 98 | # undef CONFIG_FEATURE_SH_STANDALONE |
| 99 | # undef ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 100 | # undef IF_FEATURE_SH_STANDALONE |
| 101 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 102 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 103 | # define IF_FEATURE_SH_STANDALONE(...) |
| 104 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 105 | #endif |
| 106 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 107 | #if !ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 108 | # undef ENABLE_FEATURE_EDITING |
| 109 | # define ENABLE_FEATURE_EDITING 0 |
| 110 | # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 111 | # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 112 | #endif |
| 113 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 114 | /* Do we support ANY keywords? */ |
| 115 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 116 | # define HAS_KEYWORDS 1 |
| 117 | # define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 118 | # define IF_HAS_NO_KEYWORDS(...) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 119 | #else |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 120 | # define HAS_KEYWORDS 0 |
| 121 | # define IF_HAS_KEYWORDS(...) |
| 122 | # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 123 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 125 | /* If you comment out one of these below, it will be #defined later |
| 126 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 127 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 128 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 129 | #define debug_printf_parse(...) do {} while (0) |
| 130 | #define debug_print_tree(a, b) do {} while (0) |
| 131 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 132 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 133 | #define debug_printf_jobs(...) do {} while (0) |
| 134 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 135 | #define debug_printf_glob(...) do {} while (0) |
| 136 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 137 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 138 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 139 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 140 | #define ERR_PTR ((void*)(long)1) |
| 141 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 142 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 143 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 144 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 145 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 146 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 147 | |
| 148 | /* This supports saving pointers malloced in vfork child, |
Denis Vlasenko | c376db3 | 2009-04-15 21:49:48 +0000 | [diff] [blame] | 149 | * to be freed in the parent. |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 150 | */ |
| 151 | #if !BB_MMU |
| 152 | typedef struct nommu_save_t { |
| 153 | char **new_env; |
| 154 | char **old_env; |
| 155 | char **argv; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 156 | char **argv_from_re_execing; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 157 | } nommu_save_t; |
| 158 | #endif |
| 159 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 160 | /* The descrip member of this structure is only used to make |
| 161 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 162 | static const struct { |
| 163 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 164 | signed char default_fd; |
| 165 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 166 | } redir_table[] = { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 167 | { 0, 0, "??" }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 168 | { O_RDONLY, 0, "<" }, |
| 169 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 170 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 171 | { O_RDONLY, 0, "<<" }, |
| 172 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 173 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 174 | /* { O_RDONLY, 77, "<<" }, */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 175 | }; |
| 176 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 177 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 178 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 179 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 180 | RES_IF , |
| 181 | RES_THEN , |
| 182 | RES_ELIF , |
| 183 | RES_ELSE , |
| 184 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 185 | #endif |
| 186 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 187 | RES_FOR , |
| 188 | RES_WHILE , |
| 189 | RES_UNTIL , |
| 190 | RES_DO , |
| 191 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 192 | #endif |
| 193 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 194 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 195 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 196 | #if ENABLE_HUSH_CASE |
| 197 | RES_CASE , |
| 198 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 199 | RES_MATCH , /* "word)" */ |
| 200 | RES_CASEI , /* "this command is inside CASE" */ |
| 201 | RES_ESAC , |
| 202 | #endif |
| 203 | RES_XXXX , |
| 204 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 205 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 206 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 207 | typedef struct o_string { |
| 208 | char *data; |
| 209 | int length; /* position where data is appended */ |
| 210 | int maxlen; |
| 211 | /* Protect newly added chars against globbing |
| 212 | * (by prepending \ to *, ?, [, \) */ |
| 213 | smallint o_escape; |
| 214 | smallint o_glob; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 215 | /* At least some part of the string was inside '' or "", |
| 216 | * possibly empty one: word"", wo''rd etc. */ |
| 217 | smallint o_quoted; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 218 | smallint has_empty_slot; |
| 219 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 220 | } o_string; |
| 221 | enum { |
| 222 | MAYBE_ASSIGNMENT = 0, |
| 223 | DEFINITELY_ASSIGNMENT = 1, |
| 224 | NOT_ASSIGNMENT = 2, |
| 225 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 226 | }; |
| 227 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 228 | #define NULL_O_STRING { NULL } |
| 229 | |
| 230 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 231 | * available? Where is it documented? */ |
| 232 | typedef struct in_str { |
| 233 | const char *p; |
| 234 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 235 | char eof_flag; /* meaningless if ->p == NULL */ |
| 236 | char peek_buf[2]; |
| 237 | #if ENABLE_HUSH_INTERACTIVE |
| 238 | smallint promptme; |
| 239 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 240 | #endif |
| 241 | FILE *file; |
| 242 | int (*get) (struct in_str *); |
| 243 | int (*peek) (struct in_str *); |
| 244 | } in_str; |
| 245 | #define i_getch(input) ((input)->get(input)) |
| 246 | #define i_peek(input) ((input)->peek(input)) |
| 247 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 248 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 249 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 250 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 251 | int rd_fd; /* fd to redirect */ |
| 252 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 253 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 254 | smallint rd_type; /* (enum redir_type) */ |
| 255 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 256 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
| 257 | * 1: do we need to trim leading tabs? |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 258 | * 2: is heredoc quoted (<<'delim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 259 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 260 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 261 | typedef enum redir_type { |
| 262 | REDIRECT_INVALID = 0, |
| 263 | REDIRECT_INPUT = 1, |
| 264 | REDIRECT_OVERWRITE = 2, |
| 265 | REDIRECT_APPEND = 3, |
| 266 | REDIRECT_HEREDOC = 4, |
| 267 | REDIRECT_IO = 5, |
| 268 | REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 269 | |
| 270 | REDIRFD_CLOSE = -3, |
| 271 | REDIRFD_SYNTAX_ERR = -2, |
Denis Vlasenko | 835fcfd | 2009-04-10 13:51:56 +0000 | [diff] [blame] | 272 | REDIRFD_TO_FILE = -1, |
| 273 | /* otherwise, rd_fd is redirected to rd_dup */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 274 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 275 | HEREDOC_SKIPTABS = 1, |
| 276 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 277 | } redir_type; |
| 278 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 279 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 280 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 281 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 282 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 283 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 284 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 285 | #define GRP_NORMAL 0 |
| 286 | #define GRP_SUBSHELL 1 |
| 287 | #if ENABLE_HUSH_FUNCTIONS |
| 288 | # define GRP_FUNCTION 2 |
| 289 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 290 | struct pipe *group; /* if non-NULL, this "command" is { list }, |
| 291 | * ( list ), or a compound statement */ |
| 292 | #if !BB_MMU |
| 293 | char *group_as_string; |
| 294 | #endif |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 295 | #if ENABLE_HUSH_FUNCTIONS |
| 296 | struct function *child_func; |
| 297 | /* This field is used to prevent a bug here: |
| 298 | * while...do f1() {a;}; f1; f1 {b;}; f1; done |
| 299 | * When we execute "f1() {a;}" cmd, we create new function and clear |
| 300 | * cmd->group, cmd->group_as_string, cmd->argv[0]. |
| 301 | * when we execute "f1 {b;}", we notice that f1 exists, |
| 302 | * and that it's "parent cmd" struct is still "alive", |
| 303 | * we put those fields back into cmd->xxx |
| 304 | * (struct function has ->parent_cmd ptr to facilitate that). |
| 305 | * When we loop back, we can execute "f1() {a;}" again and set f1 correctly. |
| 306 | * Without this trick, loop would execute a;b;b;b;... |
| 307 | * instead of correct sequence a;b;a;b;... |
| 308 | * When command is freed, it severs the link |
| 309 | * (sets ->child_func->parent_cmd to NULL). |
| 310 | */ |
| 311 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 312 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 313 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 314 | * and on execution these are substituted with their values. |
| 315 | * Substitution can make _several_ words out of one argv[n]! |
| 316 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 317 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 318 | */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 319 | struct redir_struct *redirects; /* I/O redirections */ |
| 320 | }; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 321 | /* Is there anything in this command at all? */ |
| 322 | #define IS_NULL_CMD(cmd) \ |
| 323 | (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects) |
| 324 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 325 | |
| 326 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 327 | struct pipe *next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 328 | int num_cmds; /* total number of commands in pipe */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 329 | int alive_cmds; /* number of commands running (not exited) */ |
| 330 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 331 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 332 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 333 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 334 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 335 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 336 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 337 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 338 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 339 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 340 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 341 | typedef enum pipe_style { |
| 342 | PIPE_SEQ = 1, |
| 343 | PIPE_AND = 2, |
| 344 | PIPE_OR = 3, |
| 345 | PIPE_BG = 4, |
| 346 | } pipe_style; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 347 | /* Is there anything in this pipe at all? */ |
| 348 | #define IS_NULL_PIPE(pi) \ |
| 349 | ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 350 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 351 | /* This holds pointers to the various results of parsing */ |
| 352 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 353 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 354 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 355 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 356 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 357 | /* last command in pipe (being constructed right now) */ |
| 358 | struct command *command; |
| 359 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 360 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 361 | #if !BB_MMU |
| 362 | o_string as_string; |
| 363 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 364 | #if HAS_KEYWORDS |
| 365 | smallint ctx_res_w; |
| 366 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 367 | #if ENABLE_HUSH_CASE |
| 368 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 369 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 370 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 371 | int old_flag; |
| 372 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 373 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 374 | * when we see "if" or "then", we malloc and copy current context, |
| 375 | * and make ->stack point to it. then we parse pipeN. |
| 376 | * when closing "then" / fi" / whatever is found, |
| 377 | * we move list_head into ->stack->command->group, |
| 378 | * copy ->stack into current context, and delete ->stack. |
| 379 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 380 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 381 | struct parse_context *stack; |
| 382 | #endif |
| 383 | }; |
| 384 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 385 | /* On program start, environ points to initial environment. |
| 386 | * putenv adds new pointers into it, unsetenv removes them. |
| 387 | * Neither of these (de)allocates the strings. |
| 388 | * setenv allocates new strings in malloc space and does putenv, |
| 389 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 390 | #define setenv(...) setenv_is_leaky_dont_use() |
| 391 | struct variable { |
| 392 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 393 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 394 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 395 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 396 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 397 | }; |
| 398 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 399 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 400 | BC_BREAK = 1, |
| 401 | BC_CONTINUE = 2, |
| 402 | }; |
| 403 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 404 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 405 | struct function { |
| 406 | struct function *next; |
| 407 | char *name; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 408 | struct command *parent_cmd; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 409 | struct pipe *body; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 410 | #if !BB_MMU |
| 411 | char *body_as_string; |
| 412 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 413 | }; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 414 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 415 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 416 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 417 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 418 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 419 | struct globals { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 420 | /* interactive_fd != 0 means we are an interactive shell. |
| 421 | * If we are, then saved_tty_pgrp can also be != 0, meaning |
| 422 | * that controlling tty is available. With saved_tty_pgrp == 0, |
| 423 | * job control still works, but terminal signals |
| 424 | * (^C, ^Z, ^Y, ^\) won't work at all, and background |
| 425 | * process groups can only be created with "cmd &". |
| 426 | * With saved_tty_pgrp != 0, hush will use tcsetpgrp() |
| 427 | * to give tty to the foreground process group, |
| 428 | * and will take it back when the group is stopped (^Z) |
| 429 | * or killed (^C). |
| 430 | */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 431 | #if ENABLE_HUSH_INTERACTIVE |
| 432 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 433 | * _AND_ if we decided to act interactively */ |
| 434 | int interactive_fd; |
| 435 | const char *PS1; |
| 436 | const char *PS2; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 437 | # define G_interactive_fd (G.interactive_fd) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 438 | #else |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 439 | # define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 440 | #endif |
| 441 | #if ENABLE_FEATURE_EDITING |
| 442 | line_input_t *line_input_state; |
| 443 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 444 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 445 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 446 | #if ENABLE_HUSH_JOB |
| 447 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 448 | int last_jobid; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 449 | pid_t saved_tty_pgrp; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 450 | struct pipe *job_list; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 451 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 452 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 453 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 454 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 455 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 456 | #if ENABLE_HUSH_FUNCTIONS |
| 457 | /* 0: outside of a function (or sourced file) |
| 458 | * -1: inside of a function, ok to use return builtin |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 459 | * 1: return is invoked, skip all till end of func |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 460 | */ |
| 461 | smallint flag_return_in_progress; |
| 462 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 463 | smallint fake_mode; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 464 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 465 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 466 | smalluint last_exitcode; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 467 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 468 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 469 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 470 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 471 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 472 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 473 | char *argv0_for_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 474 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 475 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 476 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 477 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 478 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 479 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 480 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 481 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 482 | struct variable shell_ver; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 483 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 484 | struct function *top_func; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 485 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 486 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 487 | // unsigned count_SIGCHLD; |
| 488 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 489 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 490 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 491 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 492 | sigset_t blocked_set; |
| 493 | sigset_t inherited_set; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 494 | #if HUSH_DEBUG |
| 495 | unsigned long memleak_value; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 496 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 497 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 498 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 499 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 500 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 501 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 502 | * (too many defines). Also, I actually prefer to see when a variable |
| 503 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 504 | #define INIT_G() do { \ |
| 505 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 506 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 507 | |
| 508 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 509 | /* Function prototypes for builtins */ |
| 510 | static int builtin_cd(char **argv); |
| 511 | static int builtin_echo(char **argv); |
| 512 | static int builtin_eval(char **argv); |
| 513 | static int builtin_exec(char **argv); |
| 514 | static int builtin_exit(char **argv); |
| 515 | static int builtin_export(char **argv); |
| 516 | #if ENABLE_HUSH_JOB |
| 517 | static int builtin_fg_bg(char **argv); |
| 518 | static int builtin_jobs(char **argv); |
| 519 | #endif |
| 520 | #if ENABLE_HUSH_HELP |
| 521 | static int builtin_help(char **argv); |
| 522 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 523 | #if HUSH_DEBUG |
| 524 | static int builtin_memleak(char **argv); |
| 525 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 526 | static int builtin_pwd(char **argv); |
| 527 | static int builtin_read(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 528 | static int builtin_set(char **argv); |
| 529 | static int builtin_shift(char **argv); |
| 530 | static int builtin_source(char **argv); |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 531 | static int builtin_test(char **argv); |
| 532 | static int builtin_trap(char **argv); |
| 533 | static int builtin_true(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 534 | static int builtin_umask(char **argv); |
| 535 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 536 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 537 | #if ENABLE_HUSH_LOOPS |
| 538 | static int builtin_break(char **argv); |
| 539 | static int builtin_continue(char **argv); |
| 540 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 541 | #if ENABLE_HUSH_FUNCTIONS |
| 542 | static int builtin_return(char **argv); |
| 543 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 544 | |
| 545 | /* Table of built-in functions. They can be forked or not, depending on |
| 546 | * context: within pipes, they fork. As simple commands, they do not. |
| 547 | * When used in non-forking context, they can change global variables |
| 548 | * in the parent shell process. If forked, of course they cannot. |
| 549 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 550 | * still be set at the end. */ |
| 551 | struct built_in_command { |
| 552 | const char *cmd; |
| 553 | int (*function)(char **argv); |
| 554 | #if ENABLE_HUSH_HELP |
| 555 | const char *descr; |
| 556 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 557 | #else |
| 558 | #define BLTIN(cmd, func, help) { cmd, func } |
| 559 | #endif |
| 560 | }; |
| 561 | |
| 562 | /* For now, echo and test are unconditionally enabled. |
| 563 | * Maybe make it configurable? */ |
| 564 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 565 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 566 | BLTIN(":" , builtin_true , "No-op"), |
| 567 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 568 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 569 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 570 | #endif |
| 571 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 572 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 573 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 574 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 575 | #if ENABLE_HUSH_LOOPS |
| 576 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 577 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 578 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 579 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 580 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 581 | BLTIN("exit" , builtin_exit , "Exit"), |
| 582 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 583 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 584 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 585 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 586 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 587 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 588 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 589 | #if ENABLE_HUSH_JOB |
| 590 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 591 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 592 | #if HUSH_DEBUG |
| 593 | BLTIN("memleak" , builtin_memleak , "Debug tool"), |
| 594 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 595 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 596 | BLTIN("read" , builtin_read , "Input environment variable"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 597 | #if ENABLE_HUSH_FUNCTIONS |
| 598 | BLTIN("return" , builtin_return , "Return from a function"), |
| 599 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 600 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 601 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 602 | BLTIN("test" , builtin_test , "Test condition"), |
| 603 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 604 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 605 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 606 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 607 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 608 | }; |
| 609 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 610 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 611 | /* Debug printouts. |
| 612 | */ |
| 613 | #if HUSH_DEBUG |
| 614 | /* prevent disasters with G.debug_indent < 0 */ |
| 615 | # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "") |
| 616 | # define debug_enter() (G.debug_indent++) |
| 617 | # define debug_leave() (G.debug_indent--) |
| 618 | #else |
| 619 | # define indent() ((void)0) |
| 620 | # define debug_enter() ((void)0) |
| 621 | # define debug_leave() ((void)0) |
| 622 | #endif |
| 623 | |
| 624 | #ifndef debug_printf |
| 625 | # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 626 | #endif |
| 627 | |
| 628 | #ifndef debug_printf_parse |
| 629 | # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 630 | #endif |
| 631 | |
| 632 | #ifndef debug_printf_exec |
| 633 | #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 634 | #endif |
| 635 | |
| 636 | #ifndef debug_printf_env |
| 637 | # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 638 | #endif |
| 639 | |
| 640 | #ifndef debug_printf_jobs |
| 641 | # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 642 | # define DEBUG_JOBS 1 |
| 643 | #else |
| 644 | # define DEBUG_JOBS 0 |
| 645 | #endif |
| 646 | |
| 647 | #ifndef debug_printf_expand |
| 648 | # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 649 | # define DEBUG_EXPAND 1 |
| 650 | #else |
| 651 | # define DEBUG_EXPAND 0 |
| 652 | #endif |
| 653 | |
| 654 | #ifndef debug_printf_glob |
| 655 | # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 656 | # define DEBUG_GLOB 1 |
| 657 | #else |
| 658 | # define DEBUG_GLOB 0 |
| 659 | #endif |
| 660 | |
| 661 | #ifndef debug_printf_list |
| 662 | # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 663 | #endif |
| 664 | |
| 665 | #ifndef debug_printf_subst |
| 666 | # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 667 | #endif |
| 668 | |
| 669 | #ifndef debug_printf_clean |
| 670 | # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 671 | # define DEBUG_CLEAN 1 |
| 672 | #else |
| 673 | # define DEBUG_CLEAN 0 |
| 674 | #endif |
| 675 | |
| 676 | #if DEBUG_EXPAND |
| 677 | static void debug_print_strings(const char *prefix, char **vv) |
| 678 | { |
| 679 | indent(); |
| 680 | fprintf(stderr, "%s:\n", prefix); |
| 681 | while (*vv) |
| 682 | fprintf(stderr, " '%s'\n", *vv++); |
| 683 | } |
| 684 | #else |
| 685 | #define debug_print_strings(prefix, vv) ((void)0) |
| 686 | #endif |
| 687 | |
| 688 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 689 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 690 | */ |
| 691 | #if LEAK_HUNTING |
| 692 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 693 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 694 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 695 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 696 | return ptr; |
| 697 | } |
| 698 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 699 | { |
| 700 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 701 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 702 | return ptr; |
| 703 | } |
| 704 | static char *xxstrdup(int lineno, const char *str) |
| 705 | { |
| 706 | char *ptr = xstrdup(str); |
| 707 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 708 | return ptr; |
| 709 | } |
| 710 | static void xxfree(void *ptr) |
| 711 | { |
| 712 | fdprintf(2, "free %p\n", ptr); |
| 713 | free(ptr); |
| 714 | } |
| 715 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 716 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 717 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 718 | #define free(p) xxfree(p) |
| 719 | #endif |
| 720 | |
| 721 | |
| 722 | /* Syntax and runtime errors. They always abort scripts. |
| 723 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 724 | * and return to the prompt. |
| 725 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 726 | */ |
| 727 | #if HUSH_DEBUG < 2 |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 728 | # define die_if_script(lineno, fmt...) die_if_script(fmt) |
| 729 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 730 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 731 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 732 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 733 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 734 | #endif |
| 735 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 736 | static void die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 737 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 738 | va_list p; |
| 739 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 740 | #if HUSH_DEBUG >= 2 |
| 741 | bb_error_msg("hush.c:%u", lineno); |
| 742 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 743 | va_start(p, fmt); |
| 744 | bb_verror_msg(fmt, p, NULL); |
| 745 | va_end(p); |
| 746 | if (!G_interactive_fd) |
| 747 | xfunc_die(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 748 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 749 | |
| 750 | static void syntax_error(unsigned lineno, const char *msg) |
| 751 | { |
| 752 | if (msg) |
| 753 | die_if_script(lineno, "syntax error: %s", msg); |
| 754 | else |
| 755 | die_if_script(lineno, "syntax error", NULL); |
| 756 | } |
| 757 | |
| 758 | static void syntax_error_at(unsigned lineno, const char *msg) |
| 759 | { |
| 760 | die_if_script(lineno, "syntax error at '%s'", msg); |
| 761 | } |
| 762 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 763 | /* It so happens that all such cases are totally fatal |
| 764 | * even if shell is interactive: EOF while looking for closing |
| 765 | * delimiter. There is nowhere to read stuff from after that, |
| 766 | * it's EOF! The only choice is to terminate. |
| 767 | */ |
| 768 | static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 769 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 770 | { |
| 771 | char msg[2]; |
| 772 | msg[0] = ch; |
| 773 | msg[1] = '\0'; |
| 774 | die_if_script(lineno, "syntax error: unterminated %s", msg); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 775 | xfunc_die(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 776 | } |
| 777 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 778 | static void syntax_error_unterm_str(unsigned lineno, const char *s) |
| 779 | { |
| 780 | die_if_script(lineno, "syntax error: unterminated %s", s); |
| 781 | } |
| 782 | |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame^] | 783 | static void syntax_error_unexpected_ch(unsigned lineno, int ch) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 784 | { |
| 785 | char msg[2]; |
| 786 | msg[0] = ch; |
| 787 | msg[1] = '\0'; |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame^] | 788 | die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 789 | } |
| 790 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 791 | #if HUSH_DEBUG < 2 |
| 792 | # undef die_if_script |
| 793 | # undef syntax_error |
| 794 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 795 | # undef syntax_error_unterm_ch |
| 796 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 797 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 798 | #else |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 799 | # define die_if_script(fmt...) die_if_script(__LINE__, fmt) |
| 800 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 801 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 802 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 803 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 804 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 805 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 806 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 807 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 808 | #if ENABLE_HUSH_INTERACTIVE |
| 809 | static void cmdedit_update_prompt(void); |
| 810 | #else |
| 811 | # define cmdedit_update_prompt() |
| 812 | #endif |
| 813 | |
| 814 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 815 | /* Utility functions |
| 816 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 817 | static int glob_needed(const char *s) |
| 818 | { |
| 819 | while (*s) { |
| 820 | if (*s == '\\') |
| 821 | s++; |
| 822 | if (*s == '*' || *s == '[' || *s == '?') |
| 823 | return 1; |
| 824 | s++; |
| 825 | } |
| 826 | return 0; |
| 827 | } |
| 828 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 829 | static int is_well_formed_var_name(const char *s, char terminator) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 830 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 831 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 832 | return 0; |
| 833 | s++; |
| 834 | while (isalnum(*s) || *s == '_') |
| 835 | s++; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 836 | return *s == terminator; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 837 | } |
| 838 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 839 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 840 | static char *unbackslash(char *src) |
| 841 | { |
| 842 | char *dst = src; |
| 843 | while (1) { |
| 844 | if (*src == '\\') |
| 845 | src++; |
| 846 | if ((*dst++ = *src++) == '\0') |
| 847 | break; |
| 848 | } |
| 849 | return dst; |
| 850 | } |
| 851 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 852 | 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] | 853 | { |
| 854 | int i; |
| 855 | unsigned count1; |
| 856 | unsigned count2; |
| 857 | char **v; |
| 858 | |
| 859 | v = strings; |
| 860 | count1 = 0; |
| 861 | if (v) { |
| 862 | while (*v) { |
| 863 | count1++; |
| 864 | v++; |
| 865 | } |
| 866 | } |
| 867 | count2 = 0; |
| 868 | v = add; |
| 869 | while (*v) { |
| 870 | count2++; |
| 871 | v++; |
| 872 | } |
| 873 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 874 | v[count1 + count2] = NULL; |
| 875 | i = count2; |
| 876 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 877 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 878 | return v; |
| 879 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 880 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 881 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 882 | { |
| 883 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 884 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 885 | return ptr; |
| 886 | } |
| 887 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 888 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 889 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 890 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 891 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 892 | { |
| 893 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 894 | v[0] = add; |
| 895 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 896 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 897 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 898 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 899 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 900 | { |
| 901 | char **ptr = add_string_to_strings(strings, add); |
| 902 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 903 | return ptr; |
| 904 | } |
| 905 | #define add_string_to_strings(strings, add) \ |
| 906 | xx_add_string_to_strings(__LINE__, strings, add) |
| 907 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 908 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 909 | static void putenv_all(char **strings) |
| 910 | { |
| 911 | if (!strings) |
| 912 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 913 | while (*strings) { |
| 914 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 915 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 916 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | static char **putenv_all_and_save_old(char **strings) |
| 920 | { |
| 921 | char **old = NULL; |
| 922 | char **s = strings; |
| 923 | |
| 924 | if (!strings) |
| 925 | return old; |
| 926 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 927 | char *v, *eq; |
| 928 | |
| 929 | eq = strchr(*strings, '='); |
| 930 | if (eq) { |
| 931 | *eq = '\0'; |
| 932 | v = getenv(*strings); |
| 933 | *eq = '='; |
| 934 | if (v) { |
| 935 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 936 | v -= (eq - *strings) + 1; |
| 937 | old = add_string_to_strings(old, v); |
| 938 | } |
| 939 | } |
| 940 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 941 | } |
| 942 | putenv_all(s); |
| 943 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 944 | } |
| 945 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 946 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 947 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 948 | char **v; |
| 949 | |
| 950 | if (!strings) |
| 951 | return; |
| 952 | |
| 953 | v = strings; |
| 954 | while (*v) { |
| 955 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 956 | debug_printf_env("unsetenv '%s'\n", *v); |
| 957 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 958 | } |
| 959 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 960 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 961 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 964 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 965 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 966 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 967 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 968 | |
| 969 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 970 | /* Helpers for setting new $n and restoring them back |
| 971 | */ |
| 972 | typedef struct save_arg_t { |
| 973 | char *sv_argv0; |
| 974 | char **sv_g_argv; |
| 975 | int sv_g_argc; |
| 976 | smallint sv_g_malloced; |
| 977 | } save_arg_t; |
| 978 | |
| 979 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 980 | { |
| 981 | int n; |
| 982 | |
| 983 | sv->sv_argv0 = argv[0]; |
| 984 | sv->sv_g_argv = G.global_argv; |
| 985 | sv->sv_g_argc = G.global_argc; |
| 986 | sv->sv_g_malloced = G.global_args_malloced; |
| 987 | |
| 988 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 989 | G.global_argv = argv; |
| 990 | G.global_args_malloced = 0; |
| 991 | |
| 992 | n = 1; |
| 993 | while (*++argv) |
| 994 | n++; |
| 995 | G.global_argc = n; |
| 996 | } |
| 997 | |
| 998 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 999 | { |
| 1000 | char **pp; |
| 1001 | |
| 1002 | if (G.global_args_malloced) { |
| 1003 | /* someone ran "set -- arg1 arg2 ...", undo */ |
| 1004 | pp = G.global_argv; |
| 1005 | while (*++pp) /* note: does not free $0 */ |
| 1006 | free(*pp); |
| 1007 | free(G.global_argv); |
| 1008 | } |
| 1009 | argv[0] = sv->sv_argv0; |
| 1010 | G.global_argv = sv->sv_g_argv; |
| 1011 | G.global_argc = sv->sv_g_argc; |
| 1012 | G.global_args_malloced = sv->sv_g_malloced; |
| 1013 | } |
| 1014 | |
| 1015 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1016 | /* Basic theory of signal handling in shell |
| 1017 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1018 | * This does not describe what hush does, rather, it is current understanding |
| 1019 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1020 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 1021 | * |
| 1022 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 1023 | * is finished or backgrounded. It is the same in interactive and |
| 1024 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1025 | * 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] | 1026 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 1027 | * backgrounds (i.e. stops) or kills all members of currently running |
| 1028 | * pipe. |
| 1029 | * |
| 1030 | * Wait builtin in interruptible by signals for which user trap is set |
| 1031 | * or by SIGINT in interactive shell. |
| 1032 | * |
| 1033 | * Trap handlers will execute even within trap handlers. (right?) |
| 1034 | * |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1035 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1036 | * |
| 1037 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1038 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1039 | * |
| 1040 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1041 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1042 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1043 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 1044 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1045 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1046 | * Siganls which differ from SIG_DFL action |
| 1047 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1048 | * |
| 1049 | * SIGQUIT: ignore |
| 1050 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1051 | * SIGHUP (interactive): |
| 1052 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1053 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1054 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1055 | * that all pipe members are stopped. Try this in bash: |
| 1056 | * while :; do :; done - ^Z does not background it |
| 1057 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1058 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1059 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1060 | * to interactive shell while shell is waiting for a pipe, |
| 1061 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1062 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1063 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1064 | * Example 2: this does not wait and does not execute ls: |
| 1065 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1066 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1067 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1068 | * |
| 1069 | * (What happens to signals which are IGN on shell start?) |
| 1070 | * (What happens with signal mask on shell start?) |
| 1071 | * |
| 1072 | * Implementation in hush |
| 1073 | * ====================== |
| 1074 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1075 | * We block all signals which we don't want to take action immediately, |
| 1076 | * i.e. we block all signals which need to have special handling as described |
| 1077 | * above, and all signals which have traps set. |
| 1078 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1079 | * and act on them. |
| 1080 | * |
| 1081 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 1082 | * sigset_t blocked_set: current blocked signal set |
| 1083 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1084 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1085 | * 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] | 1086 | * "trap 'cmd' SIGxxx": |
| 1087 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1088 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1089 | * unblock signals with special interactive handling |
| 1090 | * (child shell is not interactive), |
| 1091 | * unset all traps (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1092 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1093 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 1094 | * 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] | 1095 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1096 | * Note: as a result, we do not use signal handlers much. The only uses |
| 1097 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 1098 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1099 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1100 | enum { |
| 1101 | SPECIAL_INTERACTIVE_SIGS = 0 |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1102 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1103 | | (1 << SIGINT) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1104 | | (1 << SIGHUP) |
| 1105 | , |
| 1106 | #if ENABLE_HUSH_JOB |
| 1107 | SPECIAL_JOB_SIGS = 0 |
| 1108 | | (1 << SIGTTIN) |
| 1109 | | (1 << SIGTTOU) |
| 1110 | | (1 << SIGTSTP) |
| 1111 | #endif |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1112 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1113 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1114 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 1115 | //{ |
| 1116 | // G.count_SIGCHLD++; |
| 1117 | //} |
| 1118 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 1119 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1120 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1121 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
| 1122 | #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1123 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1124 | #define enable_restore_tty_pgrp_on_exit() (die_sleep = -1) |
| 1125 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1126 | /* Restores tty foreground process group, and exits. |
| 1127 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1128 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1129 | * or called directly with -EXITCODE. |
| 1130 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1131 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1132 | static void sigexit(int sig) |
| 1133 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1134 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 1135 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1136 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1137 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1138 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1139 | if (G.saved_tty_pgrp && getpid() == G.root_pid) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1140 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1141 | |
| 1142 | /* Not a signal, just exit */ |
| 1143 | if (sig <= 0) |
| 1144 | _exit(- sig); |
| 1145 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1146 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1147 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1148 | #else |
| 1149 | |
| 1150 | #define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1151 | #define enable_restore_tty_pgrp_on_exit() ((void)0) |
| 1152 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1153 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1154 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1155 | /* Restores tty foreground process group, and exits. */ |
| 1156 | static void hush_exit(int exitcode) NORETURN; |
| 1157 | static void hush_exit(int exitcode) |
| 1158 | { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1159 | if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) { |
| 1160 | /* Prevent recursion: |
| 1161 | * trap "echo Hi; exit" EXIT; exit |
| 1162 | */ |
| 1163 | char *argv[] = { NULL, G.traps[0], NULL }; |
| 1164 | G.traps[0] = NULL; |
| 1165 | G.exiting = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1166 | builtin_eval(argv); |
| 1167 | free(argv[1]); |
| 1168 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1169 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1170 | #if ENABLE_HUSH_JOB |
| 1171 | fflush(NULL); /* flush all streams */ |
| 1172 | sigexit(- (exitcode & 0xff)); |
| 1173 | #else |
| 1174 | exit(exitcode); |
| 1175 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1178 | static int check_and_run_traps(int sig) |
| 1179 | { |
| 1180 | static const struct timespec zero_timespec = { 0, 0 }; |
| 1181 | smalluint save_rcode; |
| 1182 | int last_sig = 0; |
| 1183 | |
| 1184 | if (sig) |
| 1185 | goto jump_in; |
| 1186 | while (1) { |
| 1187 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
| 1188 | if (sig <= 0) |
| 1189 | break; |
| 1190 | jump_in: |
| 1191 | last_sig = sig; |
| 1192 | if (G.traps && G.traps[sig]) { |
| 1193 | if (G.traps[sig][0]) { |
| 1194 | /* We have user-defined handler */ |
| 1195 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 1196 | save_rcode = G.last_exitcode; |
| 1197 | builtin_eval(argv); |
| 1198 | free(argv[1]); |
| 1199 | G.last_exitcode = save_rcode; |
| 1200 | } /* else: "" trap, ignoring signal */ |
| 1201 | continue; |
| 1202 | } |
| 1203 | /* not a trap: special action */ |
| 1204 | switch (sig) { |
| 1205 | // case SIGCHLD: |
| 1206 | // G.count_SIGCHLD++; |
| 1207 | // break; |
| 1208 | case SIGINT: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1209 | /* Builtin was ^C'ed, make it look prettier: */ |
| 1210 | bb_putchar('\n'); |
| 1211 | G.flag_SIGINT = 1; |
| 1212 | break; |
| 1213 | #if ENABLE_HUSH_JOB |
| 1214 | case SIGHUP: { |
| 1215 | struct pipe *job; |
| 1216 | /* bash is observed to signal whole process groups, |
| 1217 | * not individual processes */ |
| 1218 | for (job = G.job_list; job; job = job->next) { |
| 1219 | if (job->pgrp <= 0) |
| 1220 | continue; |
| 1221 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 1222 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 1223 | kill(- job->pgrp, SIGCONT); |
| 1224 | } |
| 1225 | sigexit(SIGHUP); |
| 1226 | } |
| 1227 | #endif |
| 1228 | default: /* ignored: */ |
| 1229 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
| 1230 | break; |
| 1231 | } |
| 1232 | } |
| 1233 | return last_sig; |
| 1234 | } |
| 1235 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1236 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1237 | static const char *set_cwd(void) |
| 1238 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1239 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1240 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1241 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1242 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1243 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1244 | if (!G.cwd) |
| 1245 | G.cwd = bb_msg_unknown; |
| 1246 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1247 | } |
| 1248 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1249 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1250 | /* Get/check local shell variables */ |
| 1251 | static struct variable *get_local_var(const char *name) |
| 1252 | { |
| 1253 | struct variable *cur; |
| 1254 | int len; |
| 1255 | |
| 1256 | if (!name) |
| 1257 | return NULL; |
| 1258 | len = strlen(name); |
| 1259 | for (cur = G.top_var; cur; cur = cur->next) { |
| 1260 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 1261 | return cur; |
| 1262 | } |
| 1263 | return NULL; |
| 1264 | } |
| 1265 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1266 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1267 | { |
| 1268 | struct variable *var = get_local_var(src); |
| 1269 | if (var) |
| 1270 | return strchr(var->varstr, '=') + 1; |
| 1271 | return NULL; |
| 1272 | } |
| 1273 | |
| 1274 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1275 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1276 | * flg_export: |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 1277 | * 0: do not change export flag |
| 1278 | * (if creating new variable, flag will be 0) |
| 1279 | * 1: set export flag and putenv the variable |
| 1280 | * -1: clear export flag and unsetenv the variable |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1281 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1282 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1283 | #if BB_MMU |
| 1284 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1285 | set_local_var(str, flg_export) |
| 1286 | #endif |
| 1287 | 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] | 1288 | { |
| 1289 | struct variable *cur; |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1290 | char *eq_sign; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1291 | int name_len; |
| 1292 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1293 | eq_sign = strchr(str, '='); |
| 1294 | if (!eq_sign) { /* not expected to ever happen? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1295 | free(str); |
| 1296 | return -1; |
| 1297 | } |
| 1298 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1299 | name_len = eq_sign - str + 1; /* including '=' */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1300 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1301 | while (1) { |
| 1302 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1303 | if (!cur->next) { |
| 1304 | /* Bail out. Note that now cur points |
| 1305 | * to last var in linked list */ |
| 1306 | break; |
| 1307 | } |
| 1308 | cur = cur->next; |
| 1309 | continue; |
| 1310 | } |
| 1311 | /* We found an existing var with this name */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1312 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1313 | #if !BB_MMU |
| 1314 | if (!flg_read_only) |
| 1315 | #endif |
| 1316 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1317 | free(str); |
| 1318 | return -1; |
| 1319 | } |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1320 | if (flg_export == -1) { |
| 1321 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1322 | *eq_sign = '\0'; |
| 1323 | unsetenv(str); |
| 1324 | *eq_sign = '='; |
| 1325 | } |
| 1326 | if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1327 | free_and_exp: |
| 1328 | free(str); |
| 1329 | goto exp; |
| 1330 | } |
| 1331 | if (cur->max_len >= strlen(str)) { |
| 1332 | /* This one is from startup env, reuse space */ |
| 1333 | strcpy(cur->varstr, str); |
| 1334 | goto free_and_exp; |
| 1335 | } |
| 1336 | /* max_len == 0 signifies "malloced" var, which we can |
| 1337 | * (and has to) free */ |
| 1338 | if (!cur->max_len) |
| 1339 | free(cur->varstr); |
| 1340 | cur->max_len = 0; |
| 1341 | goto set_str_and_exp; |
| 1342 | } |
| 1343 | |
| 1344 | /* Not found - create next variable struct */ |
| 1345 | cur->next = xzalloc(sizeof(*cur)); |
| 1346 | cur = cur->next; |
| 1347 | |
| 1348 | set_str_and_exp: |
| 1349 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1350 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1351 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1352 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1353 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1354 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1355 | cur->flg_export = 1; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1356 | if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 1357 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1358 | if (cur->flg_export) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 1359 | if (flg_export == -1) { |
| 1360 | cur->flg_export = 0; |
| 1361 | /* unsetenv was already done */ |
| 1362 | } else { |
| 1363 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1364 | return putenv(cur->varstr); |
| 1365 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1366 | } |
| 1367 | return 0; |
| 1368 | } |
| 1369 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1370 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1371 | { |
| 1372 | struct variable *cur; |
| 1373 | struct variable *prev = prev; /* for gcc */ |
| 1374 | int name_len; |
| 1375 | |
| 1376 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1377 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1378 | name_len = strlen(name); |
| 1379 | cur = G.top_var; |
| 1380 | while (cur) { |
| 1381 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1382 | if (cur->flg_read_only) { |
| 1383 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1384 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1385 | } |
| 1386 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1387 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1388 | prev->next = cur->next; |
| 1389 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1390 | bb_unsetenv(cur->varstr); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1391 | if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 1392 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1393 | if (!cur->max_len) |
| 1394 | free(cur->varstr); |
| 1395 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1396 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1397 | } |
| 1398 | prev = cur; |
| 1399 | cur = cur->next; |
| 1400 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1401 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1402 | } |
| 1403 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1404 | #if ENABLE_SH_MATH_SUPPORT |
| 1405 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1406 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1407 | static char *endofname(const char *name) |
| 1408 | { |
| 1409 | char *p; |
| 1410 | |
| 1411 | p = (char *) name; |
| 1412 | if (!is_name(*p)) |
| 1413 | return p; |
| 1414 | while (*++p) { |
| 1415 | if (!is_in_name(*p)) |
| 1416 | break; |
| 1417 | } |
| 1418 | return p; |
| 1419 | } |
| 1420 | |
| 1421 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1422 | { |
| 1423 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1424 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1425 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1426 | } |
| 1427 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1428 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1429 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1430 | /* |
| 1431 | * in_str support |
| 1432 | */ |
| 1433 | static int static_get(struct in_str *i) |
| 1434 | { |
| 1435 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1436 | if (ch != '\0') |
| 1437 | return ch; |
| 1438 | i->p--; |
| 1439 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1440 | } |
| 1441 | |
| 1442 | static int static_peek(struct in_str *i) |
| 1443 | { |
| 1444 | return *i->p; |
| 1445 | } |
| 1446 | |
| 1447 | #if ENABLE_HUSH_INTERACTIVE |
| 1448 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1449 | static void cmdedit_update_prompt(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1450 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1451 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1452 | G.PS1 = get_local_var_value("PS1"); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1453 | if (G.PS1 == NULL) |
| 1454 | G.PS1 = "\\w \\$ "; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1455 | G.PS2 = get_local_var_value("PS2"); |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 1456 | } else { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1457 | G.PS1 = NULL; |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 1458 | } |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1459 | if (G.PS2 == NULL) |
| 1460 | G.PS2 = "> "; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1461 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1462 | |
| 1463 | static const char* setup_prompt_string(int promptmode) |
| 1464 | { |
| 1465 | const char *prompt_str; |
| 1466 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1467 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1468 | /* Set up the prompt */ |
| 1469 | if (promptmode == 0) { /* PS1 */ |
| 1470 | free((char*)G.PS1); |
| 1471 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1472 | prompt_str = G.PS1; |
| 1473 | } else |
| 1474 | prompt_str = G.PS2; |
| 1475 | } else |
| 1476 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1477 | debug_printf("result '%s'\n", prompt_str); |
| 1478 | return prompt_str; |
| 1479 | } |
| 1480 | |
| 1481 | static void get_user_input(struct in_str *i) |
| 1482 | { |
| 1483 | int r; |
| 1484 | const char *prompt_str; |
| 1485 | |
| 1486 | prompt_str = setup_prompt_string(i->promptmode); |
| 1487 | #if ENABLE_FEATURE_EDITING |
| 1488 | /* Enable command line editing only while a command line |
| 1489 | * is actually being read */ |
| 1490 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1491 | G.flag_SIGINT = 0; |
| 1492 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1493 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1494 | 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] | 1495 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1496 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1497 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1498 | i->eof_flag = (r < 0); |
| 1499 | if (i->eof_flag) { /* EOF/error detected */ |
| 1500 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1501 | G.user_input_buf[1] = '\0'; |
| 1502 | } |
| 1503 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1504 | do { |
| 1505 | G.flag_SIGINT = 0; |
| 1506 | fputs(prompt_str, stdout); |
| 1507 | fflush(stdout); |
| 1508 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1509 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1510 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1511 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1512 | i->eof_flag = (r == EOF); |
| 1513 | #endif |
| 1514 | i->p = G.user_input_buf; |
| 1515 | } |
| 1516 | |
| 1517 | #endif /* INTERACTIVE */ |
| 1518 | |
| 1519 | /* This is the magic location that prints prompts |
| 1520 | * and gets data back from the user */ |
| 1521 | static int file_get(struct in_str *i) |
| 1522 | { |
| 1523 | int ch; |
| 1524 | |
| 1525 | /* If there is data waiting, eat it up */ |
| 1526 | if (i->p && *i->p) { |
| 1527 | #if ENABLE_HUSH_INTERACTIVE |
| 1528 | take_cached: |
| 1529 | #endif |
| 1530 | ch = *i->p++; |
| 1531 | if (i->eof_flag && !*i->p) |
| 1532 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1533 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1534 | } else { |
| 1535 | /* need to double check i->file because we might be doing something |
| 1536 | * more complicated by now, like sourcing or substituting. */ |
| 1537 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1538 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1539 | do { |
| 1540 | get_user_input(i); |
| 1541 | } while (!*i->p); /* need non-empty line */ |
| 1542 | i->promptmode = 1; /* PS2 */ |
| 1543 | i->promptme = 0; |
| 1544 | goto take_cached; |
| 1545 | } |
| 1546 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1547 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1548 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1549 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1550 | #if ENABLE_HUSH_INTERACTIVE |
| 1551 | if (ch == '\n') |
| 1552 | i->promptme = 1; |
| 1553 | #endif |
| 1554 | return ch; |
| 1555 | } |
| 1556 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1557 | /* All callers guarantee this routine will never |
| 1558 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1559 | */ |
| 1560 | static int file_peek(struct in_str *i) |
| 1561 | { |
| 1562 | int ch; |
| 1563 | if (i->p && *i->p) { |
| 1564 | if (i->eof_flag && !i->p[1]) |
| 1565 | return EOF; |
| 1566 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1567 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1568 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1569 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1570 | i->eof_flag = (ch == EOF); |
| 1571 | i->peek_buf[0] = ch; |
| 1572 | i->peek_buf[1] = '\0'; |
| 1573 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1574 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1575 | return ch; |
| 1576 | } |
| 1577 | |
| 1578 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1579 | { |
| 1580 | i->peek = file_peek; |
| 1581 | i->get = file_get; |
| 1582 | #if ENABLE_HUSH_INTERACTIVE |
| 1583 | i->promptme = 1; |
| 1584 | i->promptmode = 0; /* PS1 */ |
| 1585 | #endif |
| 1586 | i->file = f; |
| 1587 | i->p = NULL; |
| 1588 | } |
| 1589 | |
| 1590 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1591 | { |
| 1592 | i->peek = static_peek; |
| 1593 | i->get = static_get; |
| 1594 | #if ENABLE_HUSH_INTERACTIVE |
| 1595 | i->promptme = 1; |
| 1596 | i->promptmode = 0; /* PS1 */ |
| 1597 | #endif |
| 1598 | i->p = s; |
| 1599 | i->eof_flag = 0; |
| 1600 | } |
| 1601 | |
| 1602 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1603 | /* |
| 1604 | * o_string support |
| 1605 | */ |
| 1606 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1607 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 1608 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1609 | { |
| 1610 | o->length = 0; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1611 | o->o_quoted = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1612 | if (o->data) |
| 1613 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1614 | } |
| 1615 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1616 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1617 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1618 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1619 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1620 | } |
| 1621 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1622 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1623 | { |
| 1624 | free(o->data); |
| 1625 | } |
| 1626 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1627 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1628 | { |
| 1629 | if (o->length + len > o->maxlen) { |
| 1630 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1631 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1632 | } |
| 1633 | } |
| 1634 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1635 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1636 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1637 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1638 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1639 | o->data[o->length] = ch; |
| 1640 | o->length++; |
| 1641 | o->data[o->length] = '\0'; |
| 1642 | } |
| 1643 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1644 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1645 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1646 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1647 | memcpy(&o->data[o->length], str, len); |
| 1648 | o->length += len; |
| 1649 | o->data[o->length] = '\0'; |
| 1650 | } |
| 1651 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1652 | #if !BB_MMU |
| 1653 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1654 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1655 | o_addblock(o, str, strlen(str)); |
| 1656 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1657 | static void nommu_addchr(o_string *o, int ch) |
| 1658 | { |
| 1659 | if (o) |
| 1660 | o_addchr(o, ch); |
| 1661 | } |
| 1662 | #else |
| 1663 | #define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1664 | #endif |
| 1665 | |
| 1666 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1667 | { |
| 1668 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1669 | } |
| 1670 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1671 | 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] | 1672 | { |
| 1673 | while (len) { |
| 1674 | o_addchr(o, *str); |
| 1675 | if (*str++ == '\\' |
| 1676 | && (*str != '*' && *str != '?' && *str != '[') |
| 1677 | ) { |
| 1678 | o_addchr(o, '\\'); |
| 1679 | } |
| 1680 | len--; |
| 1681 | } |
| 1682 | } |
| 1683 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1684 | /* My analysis of quoting semantics tells me that state information |
| 1685 | * is associated with a destination, not a source. |
| 1686 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1687 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1688 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1689 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1690 | char *found = strchr("*?[\\", ch); |
| 1691 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1692 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1693 | o_grow_by(o, sz); |
| 1694 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1695 | o->data[o->length] = '\\'; |
| 1696 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1697 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1698 | o->data[o->length] = ch; |
| 1699 | o->length++; |
| 1700 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1701 | } |
| 1702 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1703 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1704 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1705 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1706 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1707 | sz++; |
| 1708 | o->data[o->length] = '\\'; |
| 1709 | o->length++; |
| 1710 | } |
| 1711 | o_grow_by(o, sz); |
| 1712 | o->data[o->length] = ch; |
| 1713 | o->length++; |
| 1714 | o->data[o->length] = '\0'; |
| 1715 | } |
| 1716 | |
| 1717 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1718 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1719 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1720 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1721 | return; |
| 1722 | } |
| 1723 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1724 | char ch; |
| 1725 | int sz; |
| 1726 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1727 | if (ordinary_cnt > len) /* paranoia */ |
| 1728 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1729 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1730 | if (ordinary_cnt == len) |
| 1731 | return; |
| 1732 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1733 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1734 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1735 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1736 | sz = 1; |
| 1737 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1738 | sz++; |
| 1739 | o->data[o->length] = '\\'; |
| 1740 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1741 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1742 | o_grow_by(o, sz); |
| 1743 | o->data[o->length] = ch; |
| 1744 | o->length++; |
| 1745 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1746 | } |
| 1747 | } |
| 1748 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1749 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1750 | * 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] | 1751 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1752 | * list[i] contains an INDEX (int!) into this string data. |
| 1753 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1754 | * but list[i]'s need not be modified. |
| 1755 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1756 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1757 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1758 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1759 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1760 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1761 | { |
| 1762 | char **list = (char**)o->data; |
| 1763 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1764 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1765 | |
| 1766 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1767 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1768 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1769 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1770 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1771 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1772 | o->data + (int)list[i] + string_start, |
| 1773 | o->data + (int)list[i] + string_start); |
| 1774 | i++; |
| 1775 | } |
| 1776 | if (n) { |
| 1777 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1778 | indent(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1779 | 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] | 1780 | } |
| 1781 | } |
| 1782 | #else |
| 1783 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1784 | #endif |
| 1785 | |
| 1786 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1787 | * in list[n] so that it points past last stored byte so far. |
| 1788 | * It returns n+1. */ |
| 1789 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1790 | { |
| 1791 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1792 | int string_start; |
| 1793 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1794 | |
| 1795 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1796 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1797 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1798 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1799 | 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] | 1800 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1801 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1802 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1803 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1804 | memmove(list + n + 0x10, list + n, string_len); |
| 1805 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1806 | } else { |
| 1807 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1808 | n, string_len, string_start); |
| 1809 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1810 | } else { |
| 1811 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1812 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1813 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1814 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1815 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1816 | o->has_empty_slot = 0; |
| 1817 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1818 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1819 | return n + 1; |
| 1820 | } |
| 1821 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1822 | /* "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] | 1823 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1824 | { |
| 1825 | char **list = (char**)o->data; |
| 1826 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1827 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1828 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1829 | } |
| 1830 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1831 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1832 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1833 | static int o_glob(o_string *o, int n) |
| 1834 | { |
| 1835 | glob_t globdata; |
| 1836 | int gr; |
| 1837 | char *pattern; |
| 1838 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1839 | 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] | 1840 | if (!o->data) |
| 1841 | return o_save_ptr_helper(o, n); |
| 1842 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1843 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1844 | if (!glob_needed(pattern)) { |
| 1845 | literal: |
| 1846 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1847 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1848 | return o_save_ptr_helper(o, n); |
| 1849 | } |
| 1850 | |
| 1851 | memset(&globdata, 0, sizeof(globdata)); |
| 1852 | gr = glob(pattern, 0, NULL, &globdata); |
| 1853 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1854 | if (gr == GLOB_NOSPACE) |
| 1855 | bb_error_msg_and_die("out of memory during glob"); |
| 1856 | if (gr == GLOB_NOMATCH) { |
| 1857 | globfree(&globdata); |
| 1858 | goto literal; |
| 1859 | } |
| 1860 | if (gr != 0) { /* GLOB_ABORTED ? */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 1861 | /* TODO: testcase for bad glob pattern behavior */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1862 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1863 | } |
| 1864 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1865 | char **argv = globdata.gl_pathv; |
| 1866 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1867 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1868 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1869 | n = o_save_ptr_helper(o, n); |
| 1870 | argv++; |
| 1871 | if (!*argv) |
| 1872 | break; |
| 1873 | } |
| 1874 | } |
| 1875 | globfree(&globdata); |
| 1876 | if (DEBUG_GLOB) |
| 1877 | debug_print_list("o_glob returning", o, n); |
| 1878 | return n; |
| 1879 | } |
| 1880 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1881 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1882 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1883 | static int o_save_ptr(o_string *o, int n) |
| 1884 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1885 | if (o->o_glob) { /* if globbing is requested */ |
| 1886 | /* If o->has_empty_slot, list[n] was already globbed |
| 1887 | * (if it was requested back then when it was filled) |
| 1888 | * so don't do that again! */ |
| 1889 | if (!o->has_empty_slot) |
| 1890 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1891 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1892 | return o_save_ptr_helper(o, n); |
| 1893 | } |
| 1894 | |
| 1895 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1896 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1897 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1898 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1899 | int string_start; |
| 1900 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1901 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1902 | if (DEBUG_EXPAND) |
| 1903 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1904 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1905 | list = (char**)o->data; |
| 1906 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1907 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1908 | while (n) { |
| 1909 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1910 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1911 | } |
| 1912 | return list; |
| 1913 | } |
| 1914 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1915 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1916 | /* Expansion can recurse */ |
| 1917 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1918 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1919 | #endif |
| 1920 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1921 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1922 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1923 | parse_stream_dquoted(dest, input, dquote_end) |
| 1924 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1925 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1926 | o_string *dest, |
| 1927 | struct in_str *input, |
| 1928 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1929 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1930 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1931 | * all variable references within and returns a pointer to |
| 1932 | * a list of expanded strings, possibly with larger number |
| 1933 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1934 | * This new list is allocated as a single malloc block. |
| 1935 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1936 | * followed by strings themself. |
| 1937 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1938 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1939 | /* Store given string, finalizing the word and starting new one whenever |
| 1940 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1941 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1942 | 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] | 1943 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1944 | while (1) { |
| 1945 | int word_len = strcspn(str, G.ifs); |
| 1946 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1947 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1948 | o_addQstr(output, str, word_len); |
| 1949 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1950 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1951 | str += word_len; |
| 1952 | } |
| 1953 | if (!*str) /* EOL - do not finalize word */ |
| 1954 | break; |
| 1955 | o_addchr(output, '\0'); |
| 1956 | debug_print_list("expand_on_ifs", output, n); |
| 1957 | n = o_save_ptr(output, n); |
| 1958 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1959 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1960 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1961 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1962 | } |
| 1963 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1964 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 1965 | * they are in double quotes, with the exception that they are not :). |
| 1966 | * Just the rules are similar: "expand only $var and `cmd`" |
| 1967 | * |
| 1968 | * Returns malloced string. |
| 1969 | * As an optimization, we return NULL if expansion is not needed. |
| 1970 | */ |
| 1971 | static char *expand_pseudo_dquoted(const char *str) |
| 1972 | { |
| 1973 | char *exp_str; |
| 1974 | struct in_str input; |
| 1975 | o_string dest = NULL_O_STRING; |
| 1976 | |
| 1977 | if (strchr(str, '$') == NULL |
| 1978 | #if ENABLE_HUSH_TICK |
| 1979 | && strchr(str, '`') == NULL |
| 1980 | #endif |
| 1981 | ) { |
| 1982 | return NULL; |
| 1983 | } |
| 1984 | |
| 1985 | /* We need to expand. Example: |
| 1986 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 1987 | */ |
| 1988 | setup_string_in_str(&input, str); |
| 1989 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
| 1990 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
| 1991 | exp_str = expand_string_to_string(dest.data); |
| 1992 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 1993 | o_free_unsafe(&dest); |
| 1994 | return exp_str; |
| 1995 | } |
| 1996 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1997 | /* Expand all variable references in given string, adding words to list[] |
| 1998 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1999 | * to be filled). This routine is extremely tricky: has to deal with |
| 2000 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 2001 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 2002 | 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] | 2003 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2004 | /* or_mask is either 0 (normal case) or 0x80 |
| 2005 | * (expansion of right-hand side of assignment == 1-element expand. |
| 2006 | * 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] | 2007 | |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2008 | char ored_ch; |
| 2009 | char *p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2010 | |
| 2011 | ored_ch = 0; |
| 2012 | |
| 2013 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 2014 | debug_print_list("expand_vars_to_list", output, n); |
| 2015 | n = o_save_ptr(output, n); |
| 2016 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 2017 | |
| 2018 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2019 | char first_ch; |
| 2020 | int i; |
| 2021 | char *dyn_val = NULL; |
| 2022 | const char *val = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2023 | #if ENABLE_HUSH_TICK |
| 2024 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 2025 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2026 | #if ENABLE_SH_MATH_SUPPORT |
| 2027 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 2028 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2029 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2030 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 2031 | arg = ++p; |
| 2032 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 2033 | |
| 2034 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 2035 | /* "$@" is special. Even if quoted, it can still |
| 2036 | * expand to nothing (not even an empty string) */ |
| 2037 | if ((first_ch & 0x7f) != '@') |
| 2038 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2039 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2040 | switch (first_ch & 0x7f) { |
| 2041 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 2042 | case '$': /* pid */ |
| 2043 | val = utoa(G.root_pid); |
| 2044 | break; |
| 2045 | case '!': /* bg pid */ |
| 2046 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 2047 | break; |
| 2048 | case '?': /* exitcode */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 2049 | val = utoa(G.last_exitcode); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2050 | break; |
| 2051 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2052 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 2053 | /* actually, it's a ${#var} */ |
| 2054 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2055 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 2056 | break; |
| 2057 | case '*': |
| 2058 | case '@': |
| 2059 | i = 1; |
| 2060 | if (!G.global_argv[i]) |
| 2061 | break; |
| 2062 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 2063 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2064 | smallint sv = output->o_escape; |
| 2065 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2066 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2067 | while (G.global_argv[i]) { |
| 2068 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 2069 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 2070 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 2071 | /* this argv[] is not empty and not last: |
| 2072 | * put terminating NUL, start new word */ |
| 2073 | o_addchr(output, '\0'); |
| 2074 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 2075 | n = o_save_ptr(output, n); |
| 2076 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 2077 | } |
| 2078 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2079 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2080 | } else |
| 2081 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 2082 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 2083 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 2084 | while (1) { |
| 2085 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2086 | if (++i >= G.global_argc) |
| 2087 | break; |
| 2088 | o_addchr(output, '\0'); |
| 2089 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 2090 | n = o_save_ptr(output, n); |
| 2091 | } |
| 2092 | } else { /* quoted $*: add as one word */ |
| 2093 | while (1) { |
| 2094 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2095 | if (!G.global_argv[++i]) |
| 2096 | break; |
| 2097 | if (G.ifs[0]) |
| 2098 | o_addchr(output, G.ifs[0]); |
| 2099 | } |
| 2100 | } |
| 2101 | break; |
| 2102 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 2103 | /* "Empty variable", used to make "" etc to not disappear */ |
| 2104 | arg++; |
| 2105 | ored_ch = 0x80; |
| 2106 | break; |
| 2107 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2108 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2109 | *p = '\0'; |
| 2110 | arg++; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2111 | /* Can't just stuff it into output o_string, |
| 2112 | * expanded result may need to be globbed |
| 2113 | * and $IFS-splitted */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2114 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2115 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2116 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 2117 | val = subst_result.data; |
| 2118 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 2119 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2120 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2121 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2122 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2123 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2124 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2125 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2126 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2127 | arg++; /* skip '+' */ |
| 2128 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2129 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2130 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2131 | exp_str = expand_pseudo_dquoted(arg); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2132 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2133 | hooks.setvar = arith_set_local_var; |
| 2134 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2135 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 2136 | free(exp_str); |
| 2137 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2138 | if (errcode < 0) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2139 | const char *msg = "error in arithmetic"; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2140 | switch (errcode) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2141 | case -3: |
| 2142 | msg = "exponent less than 0"; |
| 2143 | break; |
| 2144 | case -2: |
| 2145 | msg = "divide by 0"; |
| 2146 | break; |
| 2147 | case -5: |
| 2148 | msg = "expression recursion loop detected"; |
| 2149 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2150 | } |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2151 | die_if_script(msg); |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2152 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2153 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2154 | sprintf(arith_buf, arith_t_fmt, res); |
| 2155 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2156 | break; |
| 2157 | } |
| 2158 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2159 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2160 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2161 | bool exp_len = false; |
| 2162 | bool exp_null = false; |
| 2163 | char *var = arg; |
| 2164 | char exp_save = exp_save; /* for compiler */ |
| 2165 | char exp_op = exp_op; /* for compiler */ |
| 2166 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2167 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2168 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2169 | *p = '\0'; |
| 2170 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2171 | |
| 2172 | /* prepare for expansions */ |
| 2173 | if (var[0] == '#') { |
| 2174 | /* handle length expansion ${#var} */ |
| 2175 | exp_len = true; |
| 2176 | ++var; |
| 2177 | } else { |
| 2178 | /* maybe handle parameter expansion */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2179 | exp_off = strcspn(var, ":-=+?%#"); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2180 | if (!var[exp_off]) |
| 2181 | exp_off = 0; |
| 2182 | if (exp_off) { |
| 2183 | exp_save = var[exp_off]; |
| 2184 | exp_null = exp_save == ':'; |
| 2185 | exp_word = var + exp_off; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2186 | if (exp_null) |
| 2187 | ++exp_word; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2188 | exp_op = *exp_word++; |
| 2189 | var[exp_off] = '\0'; |
| 2190 | } |
| 2191 | } |
| 2192 | |
| 2193 | /* lookup the variable in question */ |
| 2194 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 2195 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2196 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2197 | if (i < G.global_argc) |
| 2198 | val = G.global_argv[i]; |
| 2199 | /* else val remains NULL: $N with too big N */ |
| 2200 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2201 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2202 | |
| 2203 | /* handle any expansions */ |
| 2204 | if (exp_len) { |
| 2205 | debug_printf_expand("expand: length of '%s' = ", val); |
| 2206 | val = utoa(val ? strlen(val) : 0); |
| 2207 | debug_printf_expand("%s\n", val); |
| 2208 | } else if (exp_off) { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2209 | if (exp_op == '%' || exp_op == '#') { |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2210 | if (val) { |
| 2211 | /* we need to do a pattern match */ |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2212 | bool match_at_left; |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2213 | char *loc; |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2214 | scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left); |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2215 | if (exp_op == *exp_word) /* ## or %% */ |
| 2216 | ++exp_word; |
| 2217 | val = dyn_val = xstrdup(val); |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2218 | loc = scan(dyn_val, exp_word, match_at_left); |
| 2219 | if (match_at_left) /* # or ## */ |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2220 | val = loc; |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2221 | else if (loc) /* % or %% and match was found */ |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2222 | *loc = '\0'; |
| 2223 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2224 | } else { |
| 2225 | /* we need to do an expansion */ |
| 2226 | int exp_test = (!val || (exp_null && !val[0])); |
| 2227 | if (exp_op == '+') |
| 2228 | exp_test = !exp_test; |
| 2229 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 2230 | exp_null ? "true" : "false", exp_test); |
| 2231 | if (exp_test) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2232 | if (exp_op == '?') { |
| 2233 | //TODO: how interactive bash aborts expansion mid-command? |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2234 | /* ${var?[error_msg_if_unset]} */ |
| 2235 | /* ${var:?[error_msg_if_unset_or_null]} */ |
| 2236 | /* mimic bash message */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2237 | die_if_script("%s: %s", |
| 2238 | var, |
| 2239 | exp_word[0] ? exp_word : "parameter null or not set" |
| 2240 | ); |
| 2241 | } else { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2242 | val = exp_word; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2243 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2244 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2245 | if (exp_op == '=') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2246 | /* ${var=[word]} or ${var:=[word]} */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2247 | if (isdigit(var[0]) || var[0] == '#') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2248 | /* mimic bash message */ |
| 2249 | die_if_script("$%s: cannot assign in this way", var); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2250 | val = NULL; |
| 2251 | } else { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2252 | char *new_var = xasprintf("%s=%s", var, val); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2253 | set_local_var(new_var, 0, 0); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2254 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2255 | } |
| 2256 | } |
| 2257 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2258 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2259 | var[exp_off] = exp_save; |
| 2260 | } |
| 2261 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2262 | arg[0] = first_ch; |
| 2263 | #if ENABLE_HUSH_TICK |
| 2264 | store_val: |
| 2265 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2266 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2267 | 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] | 2268 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2269 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2270 | smallint sv = output->o_escape; |
| 2271 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2272 | n = expand_on_ifs(output, n, val); |
| 2273 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2274 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2275 | } |
| 2276 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2277 | 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] | 2278 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2279 | } /* default: */ |
| 2280 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2281 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2282 | if (val) { |
| 2283 | o_addQstr(output, val, strlen(val)); |
| 2284 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2285 | free(dyn_val); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2286 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2287 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2288 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2289 | |
| 2290 | #if ENABLE_HUSH_TICK |
| 2291 | o_free(&subst_result); |
| 2292 | #endif |
| 2293 | arg = ++p; |
| 2294 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 2295 | |
| 2296 | if (arg[0]) { |
| 2297 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 2298 | /* this part is literal, and it was already pre-quoted |
| 2299 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2300 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2301 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 2302 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 2303 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 2304 | ) { |
| 2305 | n--; |
| 2306 | /* allow to reuse list[n] later without re-growth */ |
| 2307 | output->has_empty_slot = 1; |
| 2308 | } else { |
| 2309 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2310 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2311 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2312 | } |
| 2313 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2314 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2315 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2316 | int n; |
| 2317 | char **list; |
| 2318 | char **v; |
| 2319 | o_string output = NULL_O_STRING; |
| 2320 | |
| 2321 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2322 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2323 | /* (unquoted $var will temporarily switch it off) */ |
| 2324 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2325 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2326 | |
| 2327 | n = 0; |
| 2328 | v = argv; |
| 2329 | while (*v) { |
| 2330 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2331 | v++; |
| 2332 | } |
| 2333 | debug_print_list("expand_variables", &output, n); |
| 2334 | |
| 2335 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2336 | list = o_finalize_list(&output, n); |
| 2337 | debug_print_strings("expand_variables[1]", list); |
| 2338 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2339 | } |
| 2340 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2341 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2342 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2343 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2346 | /* Used for expansion of right hand of assignments */ |
| 2347 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2348 | * "v=/bin/c*" */ |
| 2349 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2350 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2351 | char *argv[2], **list; |
| 2352 | |
| 2353 | argv[0] = (char*)str; |
| 2354 | argv[1] = NULL; |
| 2355 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2356 | if (HUSH_DEBUG) |
| 2357 | if (!list[0] || list[1]) |
| 2358 | bb_error_msg_and_die("BUG in varexp2"); |
| 2359 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2360 | overlapping_strcpy((char*)list, list[0]); |
| 2361 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2362 | return (char*)list; |
| 2363 | } |
| 2364 | |
| 2365 | /* Used for "eval" builtin */ |
| 2366 | static char* expand_strvec_to_string(char **argv) |
| 2367 | { |
| 2368 | char **list; |
| 2369 | |
| 2370 | list = expand_variables(argv, 0x80); |
| 2371 | /* Convert all NULs to spaces */ |
| 2372 | if (list[0]) { |
| 2373 | int n = 1; |
| 2374 | while (list[n]) { |
| 2375 | if (HUSH_DEBUG) |
| 2376 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2377 | bb_error_msg_and_die("BUG in varexp3"); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 2378 | /* bash uses ' ' regardless of $IFS contents */ |
| 2379 | list[n][-1] = ' '; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2380 | n++; |
| 2381 | } |
| 2382 | } |
| 2383 | overlapping_strcpy((char*)list, list[0]); |
| 2384 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2385 | return (char*)list; |
| 2386 | } |
| 2387 | |
| 2388 | static char **expand_assignments(char **argv, int count) |
| 2389 | { |
| 2390 | int i; |
| 2391 | char **p = NULL; |
| 2392 | /* Expand assignments into one string each */ |
| 2393 | for (i = 0; i < count; i++) { |
| 2394 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2395 | } |
| 2396 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2397 | } |
| 2398 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2399 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2400 | #if BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2401 | /* never called */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2402 | void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2403 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2404 | static void reset_traps_to_defaults(void) |
| 2405 | { |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2406 | /* This function is always called in a child shell |
| 2407 | * after fork (not vfork, NOMMU doesn't use this function). |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2408 | * Child shells are not interactive. |
| 2409 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 2410 | * Testcase: (while :; do :; done) + ^Z should background. |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2411 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2412 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2413 | unsigned sig; |
| 2414 | unsigned mask; |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2415 | |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2416 | if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS)) |
| 2417 | return; |
| 2418 | |
| 2419 | /* Stupid. It can be done with *single* &= op, but we can't use |
| 2420 | * the fact that G.blocked_set is implemented as a bitmask... */ |
| 2421 | mask = (SPECIAL_INTERACTIVE_SIGS >> 1); |
| 2422 | sig = 1; |
| 2423 | while (1) { |
| 2424 | if (mask & 1) |
| 2425 | sigdelset(&G.blocked_set, sig); |
| 2426 | mask >>= 1; |
| 2427 | if (!mask) |
| 2428 | break; |
| 2429 | sig++; |
| 2430 | } |
| 2431 | |
| 2432 | G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
| 2433 | mask = G.non_DFL_mask; |
| 2434 | if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) { |
| 2435 | if (!G.traps[sig]) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2436 | continue; |
| 2437 | free(G.traps[sig]); |
| 2438 | G.traps[sig] = NULL; |
| 2439 | /* There is no signal for 0 (EXIT) */ |
| 2440 | if (sig == 0) |
| 2441 | continue; |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2442 | /* There was a trap handler, we are removing it. |
| 2443 | * But if sig still has non-DFL handling, |
| 2444 | * we should not unblock it. */ |
| 2445 | if (mask & 1) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2446 | continue; |
| 2447 | sigdelset(&G.blocked_set, sig); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2448 | } |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2449 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2450 | } |
| 2451 | |
| 2452 | #else /* !BB_MMU */ |
| 2453 | |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2454 | static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN; |
| 2455 | static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2456 | { |
| 2457 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2458 | char *heredoc_argv[4]; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2459 | struct variable *cur; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2460 | #if ENABLE_HUSH_FUNCTIONS |
| 2461 | struct function *funcp; |
| 2462 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2463 | char **argv, **pp; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2464 | unsigned cnt; |
| 2465 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2466 | if (!g_argv0) { /* heredoc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2467 | argv = heredoc_argv; |
| 2468 | argv[0] = (char *) G.argv0_for_re_execing; |
| 2469 | argv[1] = (char *) "-<"; |
| 2470 | argv[2] = (char *) s; |
| 2471 | argv[3] = NULL; |
Denis Vlasenko | f50caac | 2009-04-09 01:40:15 +0000 | [diff] [blame] | 2472 | pp = &argv[3]; /* used as pointer to empty environment */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2473 | goto do_exec; |
| 2474 | } |
| 2475 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2476 | sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x") |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2477 | , (unsigned) G.root_pid |
| 2478 | , (unsigned) G.last_bg_pid |
| 2479 | , (unsigned) G.last_exitcode |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2480 | IF_HUSH_LOOPS(, G.depth_of_loop) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2481 | ); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2482 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...> |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2483 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2484 | */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2485 | cnt = 6; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2486 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2487 | if (!cur->flg_export || cur->flg_read_only) |
| 2488 | cnt += 2; |
| 2489 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2490 | #if ENABLE_HUSH_FUNCTIONS |
| 2491 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 2492 | cnt += 3; |
| 2493 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2494 | pp = g_argv; |
| 2495 | while (*pp++) |
| 2496 | cnt++; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2497 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2498 | *pp++ = (char *) G.argv0_for_re_execing; |
| 2499 | *pp++ = param_buf; |
| 2500 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2501 | if (cur->varstr == hush_version_str) |
| 2502 | continue; |
| 2503 | if (cur->flg_read_only) { |
| 2504 | *pp++ = (char *) "-R"; |
| 2505 | *pp++ = cur->varstr; |
| 2506 | } else if (!cur->flg_export) { |
| 2507 | *pp++ = (char *) "-V"; |
| 2508 | *pp++ = cur->varstr; |
| 2509 | } |
| 2510 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2511 | #if ENABLE_HUSH_FUNCTIONS |
| 2512 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 2513 | *pp++ = (char *) "-F"; |
| 2514 | *pp++ = funcp->name; |
| 2515 | *pp++ = funcp->body_as_string; |
| 2516 | } |
| 2517 | #endif |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2518 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2519 | * |
| 2520 | * However, POSIX says that subshells reset signals with traps |
| 2521 | * to SIG_DFL. |
| 2522 | * I tested bash-3.2 and it not only does that with true subshells |
| 2523 | * of the form ( list ), but with any forked children shells. |
| 2524 | * I set trap "echo W" WINCH; and then tried: |
| 2525 | * |
| 2526 | * { echo 1; sleep 20; echo 2; } & |
| 2527 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2528 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2529 | * |
| 2530 | * In all these cases sending SIGWINCH to the child shell |
| 2531 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2532 | * _inside_ group (just before echo 1), it works. |
| 2533 | * |
| 2534 | * I conclude it means we don't need to pass active traps here. |
| 2535 | * exec syscall below resets them to SIG_DFL for us. |
| 2536 | */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2537 | *pp++ = (char *) "-c"; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2538 | *pp++ = (char *) s; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2539 | *pp++ = g_argv0; |
| 2540 | while (*g_argv) |
| 2541 | *pp++ = *g_argv++; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2542 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2543 | pp = environ; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2544 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2545 | do_exec: |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2546 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
| 2547 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2548 | execve(bb_busybox_exec_path, argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2549 | /* Fallback. Useful for init=/bin/hush usage etc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2550 | if (argv[0][0] == '/') |
| 2551 | execve(argv[0], argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2552 | xfunc_error_retval = 127; |
| 2553 | bb_error_msg_and_die("can't re-execute the shell"); |
| 2554 | } |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2555 | #endif /* !BB_MMU */ |
| 2556 | |
| 2557 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2558 | static void setup_heredoc(struct redir_struct *redir) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2559 | { |
| 2560 | struct fd_pair pair; |
| 2561 | pid_t pid; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2562 | int len, written; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2563 | /* the _body_ of heredoc (misleading field name) */ |
| 2564 | const char *heredoc = redir->rd_filename; |
| 2565 | char *expanded; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2566 | #if !BB_MMU |
| 2567 | char **to_free; |
| 2568 | #endif |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2569 | |
| 2570 | expanded = NULL; |
| 2571 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
| 2572 | expanded = expand_pseudo_dquoted(heredoc); |
| 2573 | if (expanded) |
| 2574 | heredoc = expanded; |
| 2575 | } |
| 2576 | len = strlen(heredoc); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2577 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2578 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2579 | xpiped_pair(pair); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2580 | xmove_fd(pair.rd, redir->rd_fd); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2581 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2582 | /* Try writing without forking. Newer kernels have |
| 2583 | * dynamically growing pipes. Must use non-blocking write! */ |
| 2584 | ndelay_on(pair.wr); |
| 2585 | while (1) { |
| 2586 | written = write(pair.wr, heredoc, len); |
| 2587 | if (written <= 0) |
| 2588 | break; |
| 2589 | len -= written; |
| 2590 | if (len == 0) { |
| 2591 | close(pair.wr); |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 2592 | free(expanded); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2593 | return; |
| 2594 | } |
| 2595 | heredoc += written; |
| 2596 | } |
| 2597 | ndelay_off(pair.wr); |
| 2598 | |
| 2599 | /* Okay, pipe buffer was not big enough */ |
| 2600 | /* Note: we must not create a stray child (bastard? :) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2601 | * for the unsuspecting parent process. Child creates a grandchild |
| 2602 | * and exits before parent execs the process which consumes heredoc |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2603 | * (that exec happens after we return from this function) */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2604 | #if !BB_MMU |
| 2605 | to_free = NULL; |
| 2606 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2607 | pid = vfork(); |
| 2608 | if (pid < 0) |
| 2609 | bb_perror_msg_and_die("vfork"); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2610 | if (pid == 0) { |
| 2611 | /* child */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2612 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2613 | pid = BB_MMU ? fork() : vfork(); |
| 2614 | if (pid < 0) |
| 2615 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
| 2616 | if (pid != 0) |
| 2617 | _exit(0); |
| 2618 | /* grandchild */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2619 | close(redir->rd_fd); /* read side of the pipe */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2620 | #if BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2621 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2622 | _exit(0); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2623 | #else |
| 2624 | /* Delegate blocking writes to another process */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2625 | xmove_fd(pair.wr, STDOUT_FILENO); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2626 | re_execute_shell(&to_free, heredoc, NULL, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2627 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2628 | } |
| 2629 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2630 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2631 | #if !BB_MMU |
| 2632 | free(to_free); |
| 2633 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2634 | close(pair.wr); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2635 | free(expanded); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2636 | wait(NULL); /* wait till child has died */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2637 | } |
| 2638 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2639 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2640 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2641 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2642 | { |
| 2643 | int openfd, mode; |
| 2644 | struct redir_struct *redir; |
| 2645 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2646 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2647 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2648 | /* rd_fd<<HERE case */ |
Denys Vlasenko | 1dd6cf8 | 2009-05-02 14:17:31 +0200 | [diff] [blame] | 2649 | if (squirrel && redir->rd_fd < 3 |
| 2650 | && squirrel[redir->rd_fd] < 0 |
| 2651 | ) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2652 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2653 | } |
| 2654 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 2655 | * of the heredoc */ |
| 2656 | debug_printf_parse("set heredoc '%s'\n", |
| 2657 | redir->rd_filename); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2658 | setup_heredoc(redir); |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2659 | continue; |
| 2660 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2661 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2662 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
| 2663 | /* rd_fd<*>file case (<*> is <,>,>>,<>) */ |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2664 | char *p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2665 | if (redir->rd_filename == NULL) { |
| 2666 | /* Something went wrong in the parse. |
| 2667 | * Pretend it didn't happen */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2668 | bb_error_msg("bug in redirect parse"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2669 | continue; |
| 2670 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2671 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2672 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2673 | openfd = open_or_warn(p, mode); |
| 2674 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2675 | if (openfd < 0) { |
| 2676 | /* this could get lost if stderr has been redirected, but |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2677 | * bash and ash both lose it as well (though zsh doesn't!) */ |
| 2678 | //what the above comment tries to say? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2679 | return 1; |
| 2680 | } |
| 2681 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2682 | /* rd_fd<*>rd_dup or rd_fd<*>- cases */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2683 | openfd = redir->rd_dup; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2686 | if (openfd != redir->rd_fd) { |
Denys Vlasenko | 1dd6cf8 | 2009-05-02 14:17:31 +0200 | [diff] [blame] | 2687 | if (squirrel && redir->rd_fd < 3 |
| 2688 | && squirrel[redir->rd_fd] < 0 |
| 2689 | ) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2690 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2691 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2692 | if (openfd == REDIRFD_CLOSE) { |
| 2693 | /* "n>-" means "close me" */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2694 | close(redir->rd_fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2695 | } else { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2696 | xdup2(openfd, redir->rd_fd); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2697 | if (redir->rd_dup == REDIRFD_TO_FILE) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2698 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2699 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2700 | } |
| 2701 | } |
| 2702 | return 0; |
| 2703 | } |
| 2704 | |
| 2705 | static void restore_redirects(int squirrel[]) |
| 2706 | { |
| 2707 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2708 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2709 | fd = squirrel[i]; |
| 2710 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2711 | /* We simply die on error */ |
| 2712 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2713 | } |
| 2714 | } |
| 2715 | } |
| 2716 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2717 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2718 | static void free_pipe_list(struct pipe *head); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2719 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2720 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2721 | static void free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2722 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2723 | char **p; |
| 2724 | struct command *command; |
| 2725 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2726 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2727 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2728 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2729 | return; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2730 | debug_printf_clean("run pipe: (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2731 | for (i = 0; i < pi->num_cmds; i++) { |
| 2732 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2733 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2734 | if (command->argv) { |
| 2735 | for (a = 0, p = command->argv; *p; a++, p++) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2736 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2737 | } |
| 2738 | free_strings(command->argv); |
| 2739 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2740 | } |
| 2741 | /* not "else if": on syntax error, we may have both! */ |
| 2742 | if (command->group) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2743 | debug_printf_clean(" begin group (grp_type:%d)\n", |
| 2744 | command->grp_type); |
| 2745 | free_pipe_list(command->group); |
| 2746 | debug_printf_clean(" end group\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2747 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2748 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 2749 | /* else is crucial here. |
| 2750 | * If group != NULL, child_func is meaningless */ |
| 2751 | #if ENABLE_HUSH_FUNCTIONS |
| 2752 | else if (command->child_func) { |
| 2753 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 2754 | command->child_func->parent_cmd = NULL; |
| 2755 | } |
| 2756 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2757 | #if !BB_MMU |
| 2758 | free(command->group_as_string); |
| 2759 | command->group_as_string = NULL; |
| 2760 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2761 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2762 | debug_printf_clean(" redirect %d%s", |
| 2763 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2764 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2765 | if (r->rd_filename) { |
| 2766 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 2767 | free(r->rd_filename); |
| 2768 | r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2769 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2770 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2771 | rnext = r->next; |
| 2772 | free(r); |
| 2773 | } |
| 2774 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2775 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2776 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2777 | pi->cmds = NULL; |
| 2778 | #if ENABLE_HUSH_JOB |
| 2779 | free(pi->cmdtext); |
| 2780 | pi->cmdtext = NULL; |
| 2781 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2782 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2783 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2784 | static void free_pipe_list(struct pipe *head) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2785 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2786 | struct pipe *pi, *next; |
| 2787 | |
| 2788 | for (pi = head; pi; pi = next) { |
| 2789 | #if HAS_KEYWORDS |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2790 | debug_printf_clean(" pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2791 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2792 | free_pipe(pi); |
| 2793 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2794 | next = pi->next; |
| 2795 | /*pi->next = NULL;*/ |
| 2796 | free(pi); |
| 2797 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2798 | } |
| 2799 | |
| 2800 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2801 | static int run_list(struct pipe *pi); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2802 | #if BB_MMU |
| 2803 | #define parse_stream(pstring, input, end_trigger) \ |
| 2804 | parse_stream(input, end_trigger) |
| 2805 | #endif |
| 2806 | static struct pipe *parse_stream(char **pstring, |
| 2807 | struct in_str *input, |
| 2808 | int end_trigger); |
| 2809 | static void parse_and_run_string(const char *s); |
| 2810 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2811 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2812 | static const struct built_in_command* find_builtin(const char *name) |
| 2813 | { |
| 2814 | const struct built_in_command *x; |
| 2815 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2816 | if (strcmp(name, x->cmd) != 0) |
| 2817 | continue; |
| 2818 | debug_printf_exec("found builtin '%s'\n", name); |
| 2819 | return x; |
| 2820 | } |
| 2821 | return NULL; |
| 2822 | } |
| 2823 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2824 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2825 | static const struct function *find_function(const char *name) |
| 2826 | { |
| 2827 | const struct function *funcp = G.top_func; |
| 2828 | while (funcp) { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2829 | if (strcmp(name, funcp->name) == 0) { |
| 2830 | break; |
| 2831 | } |
| 2832 | funcp = funcp->next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2833 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2834 | if (funcp) |
| 2835 | debug_printf_exec("found function '%s'\n", name); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2836 | return funcp; |
| 2837 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2838 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2839 | /* Note: takes ownership on name ptr */ |
| 2840 | static struct function *new_function(char *name) |
| 2841 | { |
| 2842 | struct function *funcp; |
| 2843 | struct function **funcpp = &G.top_func; |
| 2844 | |
| 2845 | while ((funcp = *funcpp) != NULL) { |
| 2846 | struct command *cmd; |
| 2847 | |
| 2848 | if (strcmp(funcp->name, name) != 0) { |
| 2849 | funcpp = &funcp->next; |
| 2850 | continue; |
| 2851 | } |
| 2852 | |
| 2853 | cmd = funcp->parent_cmd; |
| 2854 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 2855 | if (!cmd) { |
| 2856 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 2857 | free(funcp->name); |
| 2858 | /* Note: if !funcp->body, do not free body_as_string! |
| 2859 | * This is a special case of "-F name body" function: |
| 2860 | * body_as_string was not malloced! */ |
| 2861 | if (funcp->body) { |
| 2862 | free_pipe_list(funcp->body); |
| 2863 | #if !BB_MMU |
| 2864 | free(funcp->body_as_string); |
| 2865 | #endif |
| 2866 | } |
| 2867 | } else { |
| 2868 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 2869 | cmd->argv[0] = funcp->name; |
| 2870 | cmd->group = funcp->body; |
| 2871 | #if !BB_MMU |
| 2872 | cmd->group_as_string = funcp->body_as_string; |
| 2873 | #endif |
| 2874 | } |
| 2875 | goto skip; |
| 2876 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2877 | debug_printf_exec("remembering new function '%s'\n", name); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2878 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 2879 | /*funcp->next = NULL;*/ |
| 2880 | skip: |
| 2881 | funcp->name = name; |
| 2882 | return funcp; |
| 2883 | } |
| 2884 | |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2885 | static void unset_func(const char *name) |
| 2886 | { |
| 2887 | struct function *funcp; |
| 2888 | struct function **funcpp = &G.top_func; |
| 2889 | |
| 2890 | while ((funcp = *funcpp) != NULL) { |
| 2891 | if (strcmp(funcp->name, name) == 0) { |
| 2892 | *funcpp = funcp->next; |
| 2893 | /* funcp is unlinked now, deleting it */ |
| 2894 | free(funcp->name); |
| 2895 | /* Note: if !funcp->body, do not free body_as_string! |
| 2896 | * This is a special case of "-F name body" function: |
| 2897 | * body_as_string was not malloced! */ |
| 2898 | if (funcp->body) { |
| 2899 | free_pipe_list(funcp->body); |
| 2900 | #if !BB_MMU |
| 2901 | free(funcp->body_as_string); |
| 2902 | #endif |
| 2903 | } |
| 2904 | free(funcp); |
| 2905 | break; |
| 2906 | } |
Denis Vlasenko | 7301067 | 2009-04-18 11:25:18 +0000 | [diff] [blame] | 2907 | funcpp = &funcp->next; |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2908 | } |
| 2909 | } |
| 2910 | |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2911 | #if BB_MMU |
| 2912 | #define exec_function(nommu_save, funcp, argv) \ |
| 2913 | exec_function(funcp, argv) |
| 2914 | #endif |
| 2915 | static void exec_function(nommu_save_t *nommu_save, |
| 2916 | const struct function *funcp, |
| 2917 | char **argv) NORETURN; |
| 2918 | static void exec_function(nommu_save_t *nommu_save, |
| 2919 | const struct function *funcp, |
| 2920 | char **argv) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2921 | { |
| 2922 | # if BB_MMU |
| 2923 | int n = 1; |
| 2924 | |
| 2925 | argv[0] = G.global_argv[0]; |
| 2926 | G.global_argv = argv; |
| 2927 | while (*++argv) |
| 2928 | n++; |
| 2929 | G.global_argc = n; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2930 | /* On MMU, funcp->body is always non-NULL */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2931 | n = run_list(funcp->body); |
| 2932 | fflush(NULL); |
| 2933 | _exit(n); |
| 2934 | # else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2935 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 2936 | funcp->body_as_string, |
| 2937 | G.global_argv[0], |
| 2938 | argv + 1); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2939 | # endif |
| 2940 | } |
| 2941 | |
| 2942 | static int run_function(const struct function *funcp, char **argv) |
| 2943 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2944 | int rc; |
| 2945 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2946 | #if ENABLE_HUSH_FUNCTIONS |
| 2947 | smallint sv_flg; |
| 2948 | #endif |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2949 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2950 | save_and_replace_G_args(&sv, argv); |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2951 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2952 | /* "we are in function, ok to use return" */ |
| 2953 | sv_flg = G.flag_return_in_progress; |
| 2954 | G.flag_return_in_progress = -1; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2955 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2956 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2957 | /* On MMU, funcp->body is always non-NULL */ |
| 2958 | #if !BB_MMU |
| 2959 | if (!funcp->body) { |
| 2960 | /* Function defined by -F */ |
| 2961 | parse_and_run_string(funcp->body_as_string); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2962 | rc = G.last_exitcode; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2963 | } else |
| 2964 | #endif |
| 2965 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2966 | rc = run_list(funcp->body); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2967 | } |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2968 | |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2969 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2970 | G.flag_return_in_progress = sv_flg; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2971 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2972 | restore_G_args(&sv, argv); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2973 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2974 | return rc; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2975 | } |
| 2976 | #endif |
| 2977 | |
| 2978 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 2979 | #if BB_MMU |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2980 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2981 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2982 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2983 | pseudo_exec(command, argv_expanded) |
| 2984 | #endif |
| 2985 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2986 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2987 | * Never returns. |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 2988 | * Don't exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2989 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2990 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2991 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2992 | char **argv, int assignment_cnt, |
| 2993 | char **argv_expanded) NORETURN; |
| 2994 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2995 | char **argv, int assignment_cnt, |
| 2996 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2997 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2998 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2999 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3000 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3001 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3002 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 3003 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 3004 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3005 | #if BB_MMU |
| 3006 | putenv_all(new_env); |
| 3007 | free(new_env); /* optional */ |
| 3008 | #else |
| 3009 | nommu_save->new_env = new_env; |
| 3010 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3011 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3012 | if (argv_expanded) { |
| 3013 | argv = argv_expanded; |
| 3014 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 3015 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3016 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3017 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3018 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3019 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 3020 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3021 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 3022 | if (strchr(argv[0], '/') != NULL) |
| 3023 | goto skip; |
| 3024 | #endif |
| 3025 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3026 | /* On NOMMU, we must never block! |
| 3027 | * Example: { sleep 99999 | read line } & echo Ok |
| 3028 | * read builtin will block on read syscall, leaving parent blocked |
| 3029 | * in vfork. Therefore we can't do this: |
| 3030 | */ |
| 3031 | #if BB_MMU |
| 3032 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3033 | * Depending on context, this might be redundant. But it's |
| 3034 | * easier to waste a few CPU cycles than it is to figure out |
| 3035 | * if this is one of those cases. |
| 3036 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3037 | { |
| 3038 | int rcode; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3039 | const struct built_in_command *x = find_builtin(argv[0]); |
| 3040 | if (x) { |
| 3041 | rcode = x->function(argv); |
| 3042 | fflush(NULL); |
| 3043 | _exit(rcode); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3044 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3045 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3046 | #endif |
| 3047 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3048 | /* Check if the command matches any functions */ |
| 3049 | { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3050 | const struct function *funcp = find_function(argv[0]); |
| 3051 | if (funcp) { |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3052 | exec_function(nommu_save, funcp, argv); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3053 | } |
| 3054 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3055 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3056 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 3057 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3058 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3059 | { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3060 | int a = find_applet_by_name(argv[0]); |
| 3061 | if (a >= 0) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3062 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3063 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3064 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3065 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3066 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3067 | # endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3068 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3069 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3070 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 3071 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3072 | /* If they called chroot or otherwise made the binary no longer |
| 3073 | * executable, fall through */ |
| 3074 | } |
| 3075 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 3076 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3077 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3078 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3079 | skip: |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3080 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3081 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3082 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3083 | execvp(argv[0], argv); |
Denis Vlasenko | f9d4fc3 | 2009-04-21 20:40:51 +0000 | [diff] [blame] | 3084 | bb_perror_msg("can't execute '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 3085 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3086 | } |
| 3087 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3088 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3089 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3090 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3091 | struct command *command, |
| 3092 | char **argv_expanded) NORETURN; |
| 3093 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3094 | struct command *command, |
| 3095 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3096 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3097 | if (command->argv) { |
| 3098 | pseudo_exec_argv(nommu_save, command->argv, |
| 3099 | command->assignment_cnt, argv_expanded); |
| 3100 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3101 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3102 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3103 | /* Cases when we are here: |
| 3104 | * ( list ) |
| 3105 | * { list } & |
| 3106 | * ... | ( list ) | ... |
| 3107 | * ... | { list } | ... |
| 3108 | */ |
| 3109 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 3110 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3111 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 3112 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3113 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 3114 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3115 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3116 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3117 | #else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3118 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 3119 | command->group_as_string, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3120 | G.global_argv[0], |
| 3121 | G.global_argv + 1); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3122 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3123 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3124 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3125 | /* Case when we are here: ... | >file */ |
| 3126 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3127 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3128 | } |
| 3129 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3130 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3131 | static const char *get_cmdtext(struct pipe *pi) |
| 3132 | { |
| 3133 | char **argv; |
| 3134 | char *p; |
| 3135 | int len; |
| 3136 | |
| 3137 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 3138 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3139 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3140 | if (pi->cmdtext) |
| 3141 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3142 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3143 | if (!argv || !argv[0]) { |
| 3144 | pi->cmdtext = xzalloc(1); |
| 3145 | return pi->cmdtext; |
| 3146 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3147 | |
| 3148 | len = 0; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3149 | do { |
| 3150 | len += strlen(*argv) + 1; |
| 3151 | } while (*++argv); |
| 3152 | p = xmalloc(len); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3153 | pi->cmdtext = p; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3154 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3155 | do { |
| 3156 | len = strlen(*argv); |
| 3157 | memcpy(p, *argv, len); |
| 3158 | p += len; |
| 3159 | *p++ = ' '; |
| 3160 | } while (*++argv); |
| 3161 | p[-1] = '\0'; |
| 3162 | return pi->cmdtext; |
| 3163 | } |
| 3164 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3165 | static void insert_bg_job(struct pipe *pi) |
| 3166 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3167 | struct pipe *job, **jobp; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3168 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3169 | |
| 3170 | /* Linear search for the ID of the job to use */ |
| 3171 | pi->jobid = 1; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3172 | for (job = G.job_list; job; job = job->next) |
| 3173 | if (job->jobid >= pi->jobid) |
| 3174 | pi->jobid = job->jobid + 1; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3175 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3176 | /* Add job to the list of running jobs */ |
| 3177 | jobp = &G.job_list; |
| 3178 | while ((job = *jobp) != NULL) |
| 3179 | jobp = &job->next; |
| 3180 | job = *jobp = xmalloc(sizeof(*job)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3181 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3182 | *job = *pi; /* physical copy */ |
| 3183 | job->next = NULL; |
| 3184 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 3185 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3186 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3187 | job->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3188 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3189 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3190 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3191 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3192 | if (G_interactive_fd) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3193 | printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext); |
| 3194 | /* Last command's pid goes to $! */ |
| 3195 | G.last_bg_pid = job->cmds[job->num_cmds - 1].pid; |
| 3196 | G.last_jobid = job->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3197 | } |
| 3198 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3199 | static void remove_bg_job(struct pipe *pi) |
| 3200 | { |
| 3201 | struct pipe *prev_pipe; |
| 3202 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3203 | if (pi == G.job_list) { |
| 3204 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3205 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3206 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3207 | while (prev_pipe->next != pi) |
| 3208 | prev_pipe = prev_pipe->next; |
| 3209 | prev_pipe->next = pi->next; |
| 3210 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3211 | if (G.job_list) |
| 3212 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3213 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3214 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3215 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3216 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3217 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3218 | static void delete_finished_bg_job(struct pipe *pi) |
| 3219 | { |
| 3220 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3221 | pi->stopped_cmds = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3222 | free_pipe(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3223 | free(pi); |
| 3224 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3225 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3226 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3227 | /* Check to see if any processes have exited -- if they |
| 3228 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3229 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3230 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3231 | int attributes; |
| 3232 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3233 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3234 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3235 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3236 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3237 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3238 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3239 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 3240 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3241 | errno = 0; |
| 3242 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 3243 | // /* avoid doing syscall, nothing there anyway */ |
| 3244 | // return rcode; |
| 3245 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3246 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3247 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3248 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3249 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3250 | /* Do we do this right? |
| 3251 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3252 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3253 | * [3]+ Stopped sleep 20 | false |
| 3254 | * bash-3.00# echo $? |
| 3255 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3256 | * [hush 1.14.0: yes we do it right] |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3257 | */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3258 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3259 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3260 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3261 | int dead; |
| 3262 | |
| 3263 | // i = G.count_SIGCHLD; |
| 3264 | childpid = waitpid(-1, &status, attributes); |
| 3265 | if (childpid <= 0) { |
| 3266 | if (childpid && errno != ECHILD) |
| 3267 | bb_perror_msg("waitpid"); |
| 3268 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 3269 | // G.handled_SIGCHLD = i; |
| 3270 | break; |
| 3271 | } |
| 3272 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 3273 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3274 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3275 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3276 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3277 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 3278 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3279 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3280 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 3281 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3282 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3283 | childpid, WEXITSTATUS(status)); |
| 3284 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3285 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3286 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3287 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 3288 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 3289 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3290 | continue; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3291 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3292 | fg_pipe->cmds[i].pid = 0; |
| 3293 | fg_pipe->alive_cmds--; |
| 3294 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3295 | /* last process gives overall exitstatus */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3296 | /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */ |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3297 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3298 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3299 | /* bash prints killing signal's name for *last* |
| 3300 | * process in pipe (prints just newline for SIGINT). |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3301 | * Mimic this. Example: "sleep 5" + ^\ |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3302 | */ |
| 3303 | if (WIFSIGNALED(status)) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3304 | int sig = WTERMSIG(status); |
| 3305 | printf("%s\n", sig == SIGINT ? "" : get_signame(sig)); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3306 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3307 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3308 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3309 | fg_pipe->cmds[i].is_stopped = 1; |
| 3310 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3311 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3312 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 3313 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 3314 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3315 | /* All processes in fg pipe have exited or stopped */ |
| 3316 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 3317 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 3318 | * and "killall -STOP cat" */ |
| 3319 | if (G_interactive_fd) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3320 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3321 | if (fg_pipe->alive_cmds) |
| 3322 | insert_bg_job(fg_pipe); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3323 | #endif |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3324 | return rcode; |
| 3325 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3326 | } |
| 3327 | /* There are still running processes in the fg pipe */ |
| 3328 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3329 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3330 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3331 | } |
| 3332 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3333 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3334 | /* We asked to wait for bg or orphaned children */ |
| 3335 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3336 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3337 | for (i = 0; i < pi->num_cmds; i++) { |
| 3338 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3339 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3340 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3341 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3342 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 3343 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3344 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 3345 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3346 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3347 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3348 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3349 | pi->cmds[i].pid = 0; |
| 3350 | pi->alive_cmds--; |
| 3351 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3352 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 3353 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 3354 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3355 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3356 | } |
| 3357 | } else { |
| 3358 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3359 | pi->cmds[i].is_stopped = 1; |
| 3360 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3361 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3362 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3363 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3364 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3365 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 3366 | } |
| 3367 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3368 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3369 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 3370 | { |
| 3371 | pid_t p; |
| 3372 | int rcode = checkjobs(fg_pipe); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3373 | if (G.saved_tty_pgrp) { |
| 3374 | /* Job finished, move the shell to the foreground */ |
| 3375 | p = getpgrp(); /* our process group id */ |
| 3376 | debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p); |
| 3377 | tcsetpgrp(G_interactive_fd, p); |
| 3378 | } |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3379 | return rcode; |
| 3380 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3381 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3382 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3383 | /* Start all the jobs, but don't wait for anything to finish. |
| 3384 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3385 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3386 | * 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] | 3387 | * to finish to determine the exit status of the pipe. If the pipe |
| 3388 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3389 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3390 | * return value. |
| 3391 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3392 | * Returns -1 only if started some children. IOW: we have to |
| 3393 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3394 | * |
| 3395 | * The only case when we do not need to [v]fork is when the pipe |
| 3396 | * is single, non-backgrounded, non-subshell command. Examples: |
| 3397 | * cmd ; ... { list } ; ... |
| 3398 | * cmd && ... { list } && ... |
| 3399 | * cmd || ... { list } || ... |
| 3400 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 3401 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3402 | * 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] | 3403 | * |
| 3404 | * Cases when we must fork: |
| 3405 | * non-single: cmd | cmd |
| 3406 | * backgrounded: cmd & { list } & |
| 3407 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3408 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3409 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3410 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3411 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3412 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3413 | int nextin; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3414 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3415 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3416 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3417 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3418 | /* it is not always needed, but we aim to smaller code */ |
| 3419 | int squirrel[] = { -1, -1, -1 }; |
| 3420 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3421 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3422 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3423 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3424 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 3425 | IF_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3426 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3427 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3428 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3429 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3430 | if (pi->num_cmds != 1 |
| 3431 | || pi->followup == PIPE_BG |
| 3432 | || command->grp_type == GRP_SUBSHELL |
| 3433 | ) { |
| 3434 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3435 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3436 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3437 | pi->alive_cmds = 1; |
| 3438 | |
| 3439 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 3440 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 3441 | |
| 3442 | if (command->group) { |
| 3443 | #if ENABLE_HUSH_FUNCTIONS |
| 3444 | if (command->grp_type == GRP_FUNCTION) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3445 | /* "executing" func () { list } */ |
| 3446 | struct function *funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3447 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 3448 | funcp = new_function(command->argv[0]); |
| 3449 | /* funcp->name is already set to argv[0] */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3450 | funcp->body = command->group; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3451 | #if !BB_MMU |
| 3452 | funcp->body_as_string = command->group_as_string; |
| 3453 | command->group_as_string = NULL; |
| 3454 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3455 | command->group = NULL; |
| 3456 | command->argv[0] = NULL; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3457 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 3458 | funcp->parent_cmd = command; |
| 3459 | command->child_func = funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3460 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3461 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 3462 | debug_leave(); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3463 | return EXIT_SUCCESS; |
| 3464 | } |
| 3465 | #endif |
| 3466 | /* { list } */ |
| 3467 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3468 | rcode = 1; /* exitcode if redir failed */ |
| 3469 | if (setup_redirects(command, squirrel) == 0) { |
| 3470 | debug_printf_exec(": run_list\n"); |
| 3471 | rcode = run_list(command->group) & 0xff; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3472 | } |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 3473 | restore_redirects(squirrel); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3474 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3475 | debug_leave(); |
| 3476 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3477 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3478 | } |
| 3479 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3480 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 3481 | { |
| 3482 | const struct built_in_command *x; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3483 | #if ENABLE_HUSH_FUNCTIONS |
| 3484 | const struct function *funcp; |
| 3485 | #else |
| 3486 | enum { funcp = 0 }; |
| 3487 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3488 | char **new_env = NULL; |
| 3489 | char **old_env = NULL; |
| 3490 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3491 | if (argv[command->assignment_cnt] == NULL) { |
| 3492 | /* Assignments, but no command */ |
| 3493 | /* Ensure redirects take effect. Try "a=t >file" */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3494 | rcode = setup_redirects(command, squirrel); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3495 | restore_redirects(squirrel); |
| 3496 | /* Set shell variables */ |
| 3497 | while (*argv) { |
| 3498 | p = expand_string_to_string(*argv); |
| 3499 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 3500 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 3501 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3502 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3503 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3504 | /* Do we need to flag set_local_var() errors? |
| 3505 | * "assignment to readonly var" and "putenv error" |
| 3506 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3507 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3508 | debug_leave(); |
| 3509 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3510 | return rcode; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3511 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3512 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3513 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3514 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3515 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3516 | x = find_builtin(argv_expanded[0]); |
| 3517 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3518 | funcp = NULL; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3519 | if (!x) |
| 3520 | funcp = find_function(argv_expanded[0]); |
| 3521 | #endif |
| 3522 | if (x || funcp) { |
| 3523 | if (!funcp) { |
| 3524 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 3525 | debug_printf("exec with redirects only\n"); |
| 3526 | rcode = setup_redirects(command, NULL); |
| 3527 | goto clean_up_and_ret1; |
| 3528 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3529 | } |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3530 | /* setup_redirects acts on file descriptors, not FILEs. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3531 | * This is perfect for work that comes after exec(). |
| 3532 | * Is it really safe for inline use? Experimentally, |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3533 | * things seem to work. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3534 | rcode = setup_redirects(command, squirrel); |
| 3535 | if (rcode == 0) { |
| 3536 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3537 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3538 | if (!funcp) { |
| 3539 | debug_printf_exec(": builtin '%s' '%s'...\n", |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3540 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3541 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3542 | fflush(NULL); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3543 | } |
| 3544 | #if ENABLE_HUSH_FUNCTIONS |
| 3545 | else { |
| 3546 | debug_printf_exec(": function '%s' '%s'...\n", |
| 3547 | funcp->name, argv_expanded[1]); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 3548 | rcode = run_function(funcp, argv_expanded) & 0xff; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3549 | } |
| 3550 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3551 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3552 | #if ENABLE_FEATURE_SH_STANDALONE |
| 3553 | clean_up_and_ret: |
| 3554 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3555 | restore_redirects(squirrel); |
| 3556 | free_strings_and_unsetenv(new_env, 1); |
| 3557 | putenv_all(old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3558 | /* Free the pointers, but the strings themselves |
| 3559 | * are in environ now, don't use free_strings! */ |
| 3560 | free(old_env); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3561 | clean_up_and_ret1: |
| 3562 | free(argv_expanded); |
| 3563 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3564 | debug_leave(); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3565 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 3566 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3567 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3568 | |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3569 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3570 | i = find_applet_by_name(argv_expanded[0]); |
| 3571 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3572 | rcode = setup_redirects(command, squirrel); |
| 3573 | if (rcode == 0) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3574 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3575 | old_env = putenv_all_and_save_old(new_env); |
| 3576 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3577 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3578 | rcode = run_nofork_applet(i, argv_expanded); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3579 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3580 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3581 | } |
| 3582 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3583 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3584 | } |
| 3585 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3586 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3587 | /* NB: argv_expanded may already be created, and that |
| 3588 | * might include `cmd` runs! Do not rerun it! We *must* |
| 3589 | * use argv_expanded if it's non-NULL */ |
| 3590 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3591 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3592 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3593 | nextin = 0; |
| 3594 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3595 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3596 | struct fd_pair pipefds; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3597 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3598 | volatile nommu_save_t nommu_save; |
| 3599 | nommu_save.new_env = NULL; |
| 3600 | nommu_save.old_env = NULL; |
| 3601 | nommu_save.argv = NULL; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3602 | nommu_save.argv_from_re_execing = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3603 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3604 | command = &(pi->cmds[i]); |
| 3605 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3606 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 3607 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3608 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3609 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3610 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3611 | |
| 3612 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3613 | pipefds.rd = 0; |
| 3614 | pipefds.wr = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3615 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3616 | xpiped_pair(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3617 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3618 | command->pid = BB_MMU ? fork() : vfork(); |
| 3619 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3620 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3621 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3622 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3623 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3624 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3625 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3626 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3627 | pgrp = pi->pgrp; |
| 3628 | if (pgrp < 0) /* true for 1st process only */ |
| 3629 | pgrp = getpid(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3630 | if (setpgid(0, pgrp) == 0 |
| 3631 | && pi->followup != PIPE_BG |
| 3632 | && G.saved_tty_pgrp /* we have ctty */ |
| 3633 | ) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3634 | /* We do it in *every* child, not just first, |
| 3635 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3636 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3637 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3638 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3639 | #endif |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3640 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 3641 | /* 1st cmd in backgrounded pipe |
| 3642 | * should have its stdin /dev/null'ed */ |
| 3643 | close(0); |
| 3644 | if (open(bb_dev_null, O_RDONLY)) |
| 3645 | xopen("/", O_RDONLY); |
| 3646 | } else { |
| 3647 | xmove_fd(nextin, 0); |
| 3648 | } |
| 3649 | xmove_fd(pipefds.wr, 1); |
| 3650 | if (pipefds.rd > 1) |
| 3651 | close(pipefds.rd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3652 | /* Like bash, explicit redirects override pipes, |
| 3653 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3654 | if (setup_redirects(command, NULL)) |
| 3655 | _exit(1); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3656 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3657 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3658 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 3659 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3660 | /* Stores to nommu_save list of env vars putenv'ed |
| 3661 | * (NOMMU, on MMU we don't need that) */ |
| 3662 | /* cast away volatility... */ |
| 3663 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3664 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3665 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3666 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3667 | /* parent or error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3668 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3669 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3670 | /* Clean up after vforked child */ |
| 3671 | free(nommu_save.argv); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3672 | free(nommu_save.argv_from_re_execing); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3673 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 3674 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3675 | /* Free the pointers, but the strings themselves |
| 3676 | * are in environ now, don't use free_strings! */ |
| 3677 | free(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3678 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3679 | free(argv_expanded); |
| 3680 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3681 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3682 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3683 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3684 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3685 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3686 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3687 | /* Second and next children need to know pid of first one */ |
| 3688 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3689 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3690 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3691 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3692 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3693 | if (i) |
| 3694 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3695 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3696 | close(pipefds.wr); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3697 | /* Pass read (output) pipe end to next iteration */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3698 | nextin = pipefds.rd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3699 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3700 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3701 | if (!pi->alive_cmds) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3702 | debug_leave(); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3703 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 3704 | return 1; |
| 3705 | } |
| 3706 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3707 | debug_leave(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3708 | 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] | 3709 | return -1; |
| 3710 | } |
| 3711 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3712 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3713 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3714 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3715 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3716 | [PIPE_SEQ] = "SEQ", |
| 3717 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3718 | [PIPE_OR ] = "OR" , |
| 3719 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3720 | }; |
| 3721 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3722 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3723 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3724 | [RES_IF ] = "IF" , |
| 3725 | [RES_THEN ] = "THEN" , |
| 3726 | [RES_ELIF ] = "ELIF" , |
| 3727 | [RES_ELSE ] = "ELSE" , |
| 3728 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3729 | #endif |
| 3730 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3731 | [RES_FOR ] = "FOR" , |
| 3732 | [RES_WHILE] = "WHILE", |
| 3733 | [RES_UNTIL] = "UNTIL", |
| 3734 | [RES_DO ] = "DO" , |
| 3735 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3736 | #endif |
| 3737 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3738 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3739 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3740 | #if ENABLE_HUSH_CASE |
| 3741 | [RES_CASE ] = "CASE" , |
| 3742 | [RES_MATCH] = "MATCH", |
| 3743 | [RES_CASEI] = "CASEI", |
| 3744 | [RES_ESAC ] = "ESAC" , |
| 3745 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3746 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3747 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3748 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3749 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3750 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 3751 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3752 | #if ENABLE_HUSH_FUNCTIONS |
| 3753 | "func()", |
| 3754 | #endif |
| 3755 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3756 | |
| 3757 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3758 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3759 | pin = 0; |
| 3760 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3761 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3762 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3763 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3764 | while (prn < pi->num_cmds) { |
| 3765 | struct command *command = &pi->cmds[prn]; |
| 3766 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3767 | |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3768 | fprintf(stderr, "%*s cmd %d assignment_cnt:%d", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3769 | lvl*2, "", prn, |
| 3770 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3771 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3772 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3773 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3774 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3775 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3776 | prn++; |
| 3777 | continue; |
| 3778 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3779 | if (argv) while (*argv) { |
| 3780 | fprintf(stderr, " '%s'", *argv); |
| 3781 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3782 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3783 | fprintf(stderr, "\n"); |
| 3784 | prn++; |
| 3785 | } |
| 3786 | pi = pi->next; |
| 3787 | pin++; |
| 3788 | } |
| 3789 | } |
| 3790 | #endif |
| 3791 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3792 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3793 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3794 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3795 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3796 | #if ENABLE_HUSH_CASE |
| 3797 | char *case_word = NULL; |
| 3798 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3799 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3800 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3801 | char *for_varname = NULL; |
| 3802 | char **for_lcur = NULL; |
| 3803 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3804 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3805 | smallint last_followup; |
| 3806 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3807 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3808 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3809 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3810 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3811 | #endif |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3812 | #if HAS_KEYWORDS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3813 | smallint rword; /* enum reserved_style */ |
| 3814 | smallint last_rword; /* ditto */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3815 | #endif |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3816 | |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3817 | debug_printf_exec("run_list start lvl %d\n", G.run_list_level); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3818 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3819 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3820 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3821 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3822 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3823 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3824 | continue; |
| 3825 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3826 | if (cpipe->next == NULL) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3827 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3828 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3829 | 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] | 3830 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3831 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3832 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3833 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3834 | continue; |
| 3835 | /* 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] | 3836 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3837 | || 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] | 3838 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3839 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3840 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3841 | 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] | 3842 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3843 | } |
| 3844 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3845 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3846 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3847 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3848 | * in order to return, no direct "return" statements please. |
| 3849 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3850 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3851 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3852 | G.run_list_level++; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3853 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3854 | |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3855 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3856 | rword = RES_NONE; |
| 3857 | last_rword = RES_XXXX; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3858 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3859 | last_followup = PIPE_SEQ; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3860 | rcode = G.last_exitcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3861 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3862 | /* Go through list of pipes, (maybe) executing them. */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 3863 | for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 3864 | if (G.flag_SIGINT) |
| 3865 | break; |
| 3866 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3867 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3868 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3869 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3870 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3871 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3872 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3873 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3874 | /* start of a loop: remember where loop starts */ |
| 3875 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3876 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3877 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3878 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3879 | /* Still in the same "if...", "then..." or "do..." branch? */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3880 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3881 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3882 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3883 | ) { |
| 3884 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3885 | * and we should not execute CMD */ |
| 3886 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3887 | last_followup = pi->followup; |
| 3888 | continue; |
| 3889 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3890 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3891 | last_followup = pi->followup; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3892 | IF_HAS_KEYWORDS(last_rword = rword;) |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3893 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3894 | if (cond_code) { |
| 3895 | if (rword == RES_THEN) { |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3896 | /* if false; then ... fi has exitcode 0! */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3897 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3898 | /* "if <false> THEN cmd": skip cmd */ |
| 3899 | continue; |
| 3900 | } |
| 3901 | } else { |
| 3902 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3903 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3904 | * skip cmd and all following ones */ |
| 3905 | break; |
| 3906 | } |
| 3907 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3908 | #endif |
| 3909 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3910 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3911 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3912 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3913 | |
| 3914 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3915 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3916 | }; /* encoded representation of "$@" */ |
| 3917 | static const char *const encoded_dollar_at_argv[] = { |
| 3918 | encoded_dollar_at, NULL |
| 3919 | }; /* argv list with one element: "$@" */ |
| 3920 | char **vals; |
| 3921 | |
| 3922 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3923 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3924 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3925 | if (!pi->next->cmds[0].argv) { |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3926 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3927 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3928 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3929 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3930 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3931 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3932 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3933 | debug_print_strings("for_list made from", vals); |
| 3934 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3935 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3936 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3937 | for_varname = pi->cmds[0].argv[0]; |
| 3938 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3939 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3940 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3941 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3942 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3943 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3944 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3945 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3946 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3947 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3948 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3949 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3950 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3951 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3952 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3953 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3954 | if (rword == RES_IN) { |
| 3955 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3956 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3957 | if (rword == RES_DONE) { |
| 3958 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3959 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3960 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3961 | #if ENABLE_HUSH_CASE |
| 3962 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3963 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3964 | continue; |
| 3965 | } |
| 3966 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3967 | char **argv; |
| 3968 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3969 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3970 | break; |
| 3971 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3972 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3973 | while (*argv) { |
| 3974 | char *pattern = expand_string_to_string(*argv); |
| 3975 | /* TODO: which FNM_xxx flags to use? */ |
| 3976 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3977 | free(pattern); |
| 3978 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3979 | free(case_word); /* make future "word)" stop */ |
| 3980 | case_word = NULL; |
| 3981 | break; |
| 3982 | } |
| 3983 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3984 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3985 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3986 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3987 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3988 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3989 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3990 | } |
| 3991 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3992 | /* Just pressing <enter> in shell should check for jobs. |
| 3993 | * OTOH, in non-interactive shell this is useless |
| 3994 | * and only leads to extra job checks */ |
| 3995 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3996 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3997 | goto check_jobs_and_continue; |
| 3998 | continue; |
| 3999 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4000 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4001 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4002 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4003 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4004 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4005 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4006 | { |
| 4007 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4008 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4009 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4010 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4011 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 4012 | if (r != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 4013 | /* We ran a builtin, function, or group. |
| 4014 | * rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4015 | * and we don't need to wait for anything. */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4016 | G.last_exitcode = rcode; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4017 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4018 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4019 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4020 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4021 | if (G.flag_break_continue) { |
| 4022 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4023 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4024 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4025 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4026 | G.depth_break_continue--; |
| 4027 | if (G.depth_break_continue == 0) |
| 4028 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4029 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 4030 | } /* 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] | 4031 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4032 | goto check_jobs_and_break; |
| 4033 | /* "continue": simulate end of loop */ |
| 4034 | rword = RES_DONE; |
| 4035 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4036 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4037 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 4038 | #if ENABLE_HUSH_FUNCTIONS |
| 4039 | if (G.flag_return_in_progress == 1) |
| 4040 | goto check_jobs_and_break; |
| 4041 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4042 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4043 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4044 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4045 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 4046 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4047 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4048 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4049 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4050 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4051 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4052 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4053 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4054 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4055 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4056 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4057 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4058 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4059 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4060 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4061 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4062 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4063 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4064 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4065 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4066 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4067 | } |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4068 | G.last_exitcode = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4069 | } |
| 4070 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4071 | |
| 4072 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4073 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 4074 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4075 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4076 | #endif |
| 4077 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4078 | /* Beware of "while false; true; do ..."! */ |
| 4079 | if (pi->next && pi->next->res_word == RES_DO) { |
| 4080 | if (rword == RES_WHILE) { |
| 4081 | if (rcode) { |
| 4082 | /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4083 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4084 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
| 4085 | goto check_jobs_and_break; |
| 4086 | } |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 4087 | } |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4088 | if (rword == RES_UNTIL) { |
| 4089 | if (!rcode) { |
| 4090 | debug_printf_exec(": until expr is true: breaking\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4091 | check_jobs_and_break: |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4092 | checkjobs(NULL); |
| 4093 | break; |
| 4094 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4095 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4096 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4097 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 4098 | |
| 4099 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 4100 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4101 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4102 | |
| 4103 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4104 | G.run_list_level--; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4105 | #endif |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4106 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4107 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4108 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4109 | free(for_list); |
| 4110 | #endif |
| 4111 | #if ENABLE_HUSH_CASE |
| 4112 | free(case_word); |
| 4113 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4114 | debug_leave(); |
| 4115 | debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4116 | return rcode; |
| 4117 | } |
| 4118 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4119 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4120 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4121 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4122 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4123 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4124 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4125 | 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] | 4126 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4127 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4128 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4129 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4130 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4131 | free_pipe_list(pi); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 4132 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4133 | return rcode; |
| 4134 | } |
| 4135 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4136 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 4137 | static struct pipe *new_pipe(void) |
| 4138 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4139 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 4140 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4141 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4142 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4143 | return pi; |
| 4144 | } |
| 4145 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4146 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 4147 | * if ctx->command is NULL. |
| 4148 | * No errors possible here. |
| 4149 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4150 | static int done_command(struct parse_context *ctx) |
| 4151 | { |
| 4152 | /* The command is really already in the pipe structure, so |
| 4153 | * advance the pipe counter and make a new, null command. */ |
| 4154 | struct pipe *pi = ctx->pipe; |
| 4155 | struct command *command = ctx->command; |
| 4156 | |
| 4157 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4158 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4159 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4160 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4161 | } |
| 4162 | pi->num_cmds++; |
| 4163 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4164 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4165 | } else { |
| 4166 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 4167 | } |
| 4168 | |
| 4169 | /* Only real trickiness here is that the uncommitted |
| 4170 | * command structure is not counted in pi->num_cmds. */ |
| 4171 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4172 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 4173 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4174 | memset(command, 0, sizeof(*command)); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4175 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 4176 | } |
| 4177 | |
| 4178 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 4179 | { |
| 4180 | int not_null; |
| 4181 | |
| 4182 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 4183 | /* Close previous command */ |
| 4184 | not_null = done_command(ctx); |
| 4185 | ctx->pipe->followup = type; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4186 | #if HAS_KEYWORDS |
| 4187 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 4188 | ctx->ctx_inverted = 0; |
| 4189 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 4190 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4191 | |
| 4192 | /* Without this check, even just <enter> on command line generates |
| 4193 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4194 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4195 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4196 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4197 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4198 | #endif |
| 4199 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4200 | || ctx->ctx_res_w == RES_DONE |
| 4201 | || ctx->ctx_res_w == RES_FOR |
| 4202 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4203 | #endif |
| 4204 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4205 | || ctx->ctx_res_w == RES_ESAC |
| 4206 | #endif |
| 4207 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4208 | struct pipe *new_p; |
| 4209 | debug_printf_parse("done_pipe: adding new pipe: " |
| 4210 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 4211 | not_null, ctx->ctx_res_w); |
| 4212 | new_p = new_pipe(); |
| 4213 | ctx->pipe->next = new_p; |
| 4214 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4215 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4216 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4217 | * This is used to control execution. |
| 4218 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 4219 | * cases where variable or value happens to match a keyword): |
| 4220 | */ |
| 4221 | #if ENABLE_HUSH_LOOPS |
| 4222 | if (ctx->ctx_res_w == RES_FOR |
| 4223 | || ctx->ctx_res_w == RES_IN) |
| 4224 | ctx->ctx_res_w = RES_NONE; |
| 4225 | #endif |
| 4226 | #if ENABLE_HUSH_CASE |
| 4227 | if (ctx->ctx_res_w == RES_MATCH) |
| 4228 | ctx->ctx_res_w = RES_CASEI; |
| 4229 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4230 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4231 | /* Create the memory for command, roughly: |
| 4232 | * ctx->pipe->cmds = new struct command; |
| 4233 | * ctx->command = &ctx->pipe->cmds[0]; |
| 4234 | */ |
| 4235 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4236 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4237 | } |
| 4238 | debug_printf_parse("done_pipe return\n"); |
| 4239 | } |
| 4240 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4241 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4242 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4243 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4244 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4245 | /* Create the memory for command, roughly: |
| 4246 | * ctx->pipe->cmds = new struct command; |
| 4247 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4248 | */ |
| 4249 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4250 | } |
| 4251 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4252 | /* If a reserved word is found and processed, parse context is modified |
| 4253 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4254 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4255 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4256 | struct reserved_combo { |
| 4257 | char literal[6]; |
| 4258 | unsigned char res; |
| 4259 | unsigned char assignment_flag; |
| 4260 | int flag; |
| 4261 | }; |
| 4262 | enum { |
| 4263 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4264 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4265 | FLAG_IF = (1 << RES_IF ), |
| 4266 | FLAG_THEN = (1 << RES_THEN ), |
| 4267 | FLAG_ELIF = (1 << RES_ELIF ), |
| 4268 | FLAG_ELSE = (1 << RES_ELSE ), |
| 4269 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4270 | #endif |
| 4271 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4272 | FLAG_FOR = (1 << RES_FOR ), |
| 4273 | FLAG_WHILE = (1 << RES_WHILE), |
| 4274 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 4275 | FLAG_DO = (1 << RES_DO ), |
| 4276 | FLAG_DONE = (1 << RES_DONE ), |
| 4277 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4278 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4279 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4280 | FLAG_MATCH = (1 << RES_MATCH), |
| 4281 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4282 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4283 | FLAG_START = (1 << RES_XXXX ), |
| 4284 | }; |
| 4285 | |
| 4286 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 4287 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4288 | /* Mostly a list of accepted follow-up reserved words. |
| 4289 | * FLAG_END means we are done with the sequence, and are ready |
| 4290 | * to turn the compound list into a command. |
| 4291 | * FLAG_START means the word must start a new compound list. |
| 4292 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4293 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4294 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4295 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 4296 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 4297 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 4298 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 4299 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 4300 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4301 | #endif |
| 4302 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4303 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 4304 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4305 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4306 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 4307 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 4308 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4309 | #endif |
| 4310 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4311 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 4312 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4313 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4314 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4315 | const struct reserved_combo *r; |
| 4316 | |
| 4317 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 4318 | if (strcmp(word->data, r->literal) == 0) |
| 4319 | return r; |
| 4320 | } |
| 4321 | return NULL; |
| 4322 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4323 | /* Return 0: not a keyword, 1: keyword |
| 4324 | */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4325 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 4326 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4327 | #if ENABLE_HUSH_CASE |
| 4328 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4329 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4330 | }; |
| 4331 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4332 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4333 | |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4334 | if (word->o_quoted) |
| 4335 | return 0; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4336 | r = match_reserved_word(word); |
| 4337 | if (!r) |
| 4338 | return 0; |
| 4339 | |
| 4340 | 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] | 4341 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4342 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 4343 | /* "case word IN ..." - IN part starts first match part */ |
| 4344 | r = &reserved_match; |
| 4345 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4346 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4347 | if (r->flag == 0) { /* '!' */ |
| 4348 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4349 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4350 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4351 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4352 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4353 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4354 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4355 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4356 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4357 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4358 | old = xmalloc(sizeof(*old)); |
| 4359 | debug_printf_parse("push stack %p\n", old); |
| 4360 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4361 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4362 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4363 | } 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] | 4364 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4365 | ctx->ctx_res_w = RES_SNTX; |
| 4366 | return 1; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4367 | } else { |
| 4368 | /* "{...} fi" is ok. "{...} if" is not |
| 4369 | * Example: |
| 4370 | * if { echo foo; } then { echo bar; } fi */ |
| 4371 | if (ctx->command->group) |
| 4372 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4373 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4374 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4375 | ctx->ctx_res_w = r->res; |
| 4376 | ctx->old_flag = r->flag; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4377 | word->o_assignment = r->assignment_flag; |
| 4378 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4379 | if (ctx->old_flag & FLAG_END) { |
| 4380 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4381 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4382 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4383 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4384 | old = ctx->stack; |
| 4385 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4386 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4387 | #if !BB_MMU |
| 4388 | o_addstr(&old->as_string, ctx->as_string.data); |
| 4389 | o_free_unsafe(&ctx->as_string); |
| 4390 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 4391 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 4392 | old->command->group_as_string); |
| 4393 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4394 | *ctx = *old; /* physical copy */ |
| 4395 | free(old); |
| 4396 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4397 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4398 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4399 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4400 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4401 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4402 | * Normal return is 0. Syntax errors return 1. |
| 4403 | * Note: on return, word is reset, but not o_free'd! |
| 4404 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4405 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4406 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4407 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4408 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4409 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4410 | if (word->length == 0 && word->o_quoted == 0) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4411 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 4412 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4413 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4414 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4415 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4416 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 4417 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4418 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4419 | * "2.7 Redirection |
| 4420 | * ...the word that follows the redirection operator |
| 4421 | * shall be subjected to tilde expansion, parameter expansion, |
| 4422 | * command substitution, arithmetic expansion, and quote |
| 4423 | * removal. Pathname expansion shall not be performed |
| 4424 | * on the word by a non-interactive shell; an interactive |
| 4425 | * shell may perform it, but shall do so only when |
| 4426 | * the expansion would result in one word." |
| 4427 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4428 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4429 | /* Cater for >\file case: |
| 4430 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 4431 | * Same with heredocs: |
| 4432 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 4433 | */ |
| 4434 | unbackslash(ctx->pending_redirect->rd_filename); |
| 4435 | /* Is it <<"HEREDOC"? */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4436 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC |
| 4437 | && word->o_quoted |
| 4438 | ) { |
| 4439 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 4440 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4441 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4442 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4443 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4444 | /* If this word wasn't an assignment, next ones definitely |
| 4445 | * can't be assignments. Even if they look like ones. */ |
| 4446 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 4447 | && word->o_assignment != WORD_IS_KEYWORD |
| 4448 | ) { |
| 4449 | word->o_assignment = NOT_ASSIGNMENT; |
| 4450 | } else { |
| 4451 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
| 4452 | command->assignment_cnt++; |
| 4453 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 4454 | } |
| 4455 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4456 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4457 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 4458 | if (ctx->ctx_dsemicolon |
| 4459 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 4460 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 4461 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4462 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 4463 | ctx->ctx_dsemicolon = 0; |
| 4464 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4465 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4466 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4467 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4468 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 4469 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4470 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4471 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4472 | debug_printf_parse("checking '%s' for reserved-ness\n", word->data); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4473 | if (reserved_word(word, ctx)) { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4474 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4475 | debug_printf_parse("done_word return %d\n", |
| 4476 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4477 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4478 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4479 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4480 | #endif |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4481 | if (command->group) { |
| 4482 | /* "{ echo foo; } echo bar" - bad */ |
| 4483 | syntax_error_at(word->data); |
| 4484 | debug_printf_parse("done_word return 1: syntax error, " |
| 4485 | "groups and arglists don't mix\n"); |
| 4486 | return 1; |
| 4487 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4488 | 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] | 4489 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 4490 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4491 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4492 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4493 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4494 | char *p = word->data; |
| 4495 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 4496 | && (p[1] & 0x7f) == '@' |
| 4497 | && p[2] == SPECIAL_VAR_SYMBOL |
| 4498 | ) { |
| 4499 | p += 3; |
| 4500 | } |
| 4501 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4502 | /* saw no "$@", or not only "$@" but some |
| 4503 | * real text is there too */ |
| 4504 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4505 | * e.g. "", $empty"" etc to not disappear */ |
| 4506 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4507 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4508 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 4509 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4510 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4511 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4512 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4513 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4514 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4515 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4516 | if (word->o_quoted |
| 4517 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 4518 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4519 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4520 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4521 | return 1; |
| 4522 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4523 | /* Force FOR to have just one word (variable name) */ |
| 4524 | /* NB: basically, this makes hush see "for v in ..." |
| 4525 | * syntax as if it is "for v; in ...". FOR and IN become |
| 4526 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4527 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4528 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4529 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4530 | #if ENABLE_HUSH_CASE |
| 4531 | /* Force CASE to have just one word */ |
| 4532 | if (ctx->ctx_res_w == RES_CASE) { |
| 4533 | done_pipe(ctx, PIPE_SEQ); |
| 4534 | } |
| 4535 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4536 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4537 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4538 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4539 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4540 | return 0; |
| 4541 | } |
| 4542 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4543 | |
| 4544 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 4545 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4546 | * Return: |
| 4547 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 4548 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 4549 | * REDIRFD_TO_FILE if no & was seen, |
| 4550 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4551 | */ |
| 4552 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4553 | #define parse_redir_right_fd(as_string, input) \ |
| 4554 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4555 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4556 | 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] | 4557 | { |
| 4558 | int ch, d, ok; |
| 4559 | |
| 4560 | ch = i_peek(input); |
| 4561 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4562 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4563 | |
| 4564 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4565 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4566 | ch = i_peek(input); |
| 4567 | if (ch == '-') { |
| 4568 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4569 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4570 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4571 | } |
| 4572 | d = 0; |
| 4573 | ok = 0; |
| 4574 | while (ch != EOF && isdigit(ch)) { |
| 4575 | d = d*10 + (ch-'0'); |
| 4576 | ok = 1; |
| 4577 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4578 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4579 | ch = i_peek(input); |
| 4580 | } |
| 4581 | if (ok) return d; |
| 4582 | |
| 4583 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 4584 | |
| 4585 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4586 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4587 | } |
| 4588 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4589 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4590 | */ |
| 4591 | static int parse_redirect(struct parse_context *ctx, |
| 4592 | int fd, |
| 4593 | redir_type style, |
| 4594 | struct in_str *input) |
| 4595 | { |
| 4596 | struct command *command = ctx->command; |
| 4597 | struct redir_struct *redir; |
| 4598 | struct redir_struct **redirp; |
| 4599 | int dup_num; |
| 4600 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4601 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4602 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4603 | /* Check for a '>&1' type redirect */ |
| 4604 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4605 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4606 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4607 | } else { |
| 4608 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4609 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4610 | if (dup_num) { /* <<-... */ |
| 4611 | ch = i_getch(input); |
| 4612 | nommu_addchr(&ctx->as_string, ch); |
| 4613 | ch = i_peek(input); |
| 4614 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4615 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4616 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4617 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4618 | int ch = i_peek(input); |
| 4619 | if (ch == '|') { |
| 4620 | /* >|FILE redirect ("clobbering" >). |
| 4621 | * Since we do not support "set -o noclobber" yet, |
| 4622 | * >| and > are the same for now. Just eat |. |
| 4623 | */ |
| 4624 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4625 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4626 | } |
| 4627 | } |
| 4628 | |
| 4629 | /* Create a new redir_struct and append it to the linked list */ |
| 4630 | redirp = &command->redirects; |
| 4631 | while ((redir = *redirp) != NULL) { |
| 4632 | redirp = &(redir->next); |
| 4633 | } |
| 4634 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4635 | /* redir->next = NULL; */ |
| 4636 | /* redir->rd_filename = NULL; */ |
| 4637 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4638 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4639 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4640 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4641 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4642 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4643 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4644 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4645 | /* Erik had a check here that the file descriptor in question |
| 4646 | * is legit; I postpone that to "run time" |
| 4647 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4648 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4649 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4650 | } else { |
| 4651 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4652 | * end of the next parsed word. */ |
| 4653 | ctx->pending_redirect = redir; |
| 4654 | } |
| 4655 | return 0; |
| 4656 | } |
| 4657 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4658 | /* If a redirect is immediately preceded by a number, that number is |
| 4659 | * supposed to tell which file descriptor to redirect. This routine |
| 4660 | * looks for such preceding numbers. In an ideal world this routine |
| 4661 | * needs to handle all the following classes of redirects... |
| 4662 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4663 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4664 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4665 | * 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] | 4666 | * |
| 4667 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4668 | * "2.7 Redirection |
| 4669 | * ... If n is quoted, the number shall not be recognized as part of |
| 4670 | * the redirection expression. For example: |
| 4671 | * echo \2>a |
| 4672 | * writes the character 2 into file a" |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4673 | * We are getting it right by setting ->o_quoted on any \<char> |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4674 | * |
| 4675 | * A -1 return means no valid number was found, |
| 4676 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4677 | */ |
| 4678 | static int redirect_opt_num(o_string *o) |
| 4679 | { |
| 4680 | int num; |
| 4681 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4682 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4683 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4684 | num = bb_strtou(o->data, NULL, 10); |
| 4685 | if (errno || num < 0) |
| 4686 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4687 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4688 | return num; |
| 4689 | } |
| 4690 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4691 | #if BB_MMU |
| 4692 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4693 | fetch_till_str(input, word, skip_tabs) |
| 4694 | #endif |
| 4695 | static char *fetch_till_str(o_string *as_string, |
| 4696 | struct in_str *input, |
| 4697 | const char *word, |
| 4698 | int skip_tabs) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4699 | { |
| 4700 | o_string heredoc = NULL_O_STRING; |
| 4701 | int past_EOL = 0; |
| 4702 | int ch; |
| 4703 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4704 | goto jump_in; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4705 | while (1) { |
| 4706 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4707 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4708 | if (ch == '\n') { |
| 4709 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4710 | heredoc.data[past_EOL] = '\0'; |
| 4711 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4712 | return heredoc.data; |
| 4713 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4714 | do { |
| 4715 | o_addchr(&heredoc, ch); |
| 4716 | past_EOL = heredoc.length; |
| 4717 | jump_in: |
| 4718 | do { |
| 4719 | ch = i_getch(input); |
| 4720 | nommu_addchr(as_string, ch); |
| 4721 | } while (skip_tabs && ch == '\t'); |
| 4722 | } while (ch == '\n'); |
| 4723 | } |
| 4724 | if (ch == EOF) { |
| 4725 | o_free_unsafe(&heredoc); |
| 4726 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4727 | } |
| 4728 | o_addchr(&heredoc, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4729 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4730 | } |
| 4731 | } |
| 4732 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4733 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4734 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4735 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4736 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4737 | { |
| 4738 | struct pipe *pi = ctx->list_head; |
| 4739 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4740 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4741 | int i; |
| 4742 | struct command *cmd = pi->cmds; |
| 4743 | |
| 4744 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4745 | pi->num_cmds, |
| 4746 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4747 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4748 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4749 | |
| 4750 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4751 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4752 | while (redir) { |
| 4753 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4754 | char *p; |
| 4755 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4756 | redir->rd_type = REDIRECT_HEREDOC2; |
| 4757 | /* redir->dup is (ab)used to indicate <<- */ |
| 4758 | p = fetch_till_str(&ctx->as_string, input, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4759 | redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4760 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4761 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4762 | return 1; |
| 4763 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4764 | free(redir->rd_filename); |
| 4765 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4766 | heredoc_cnt--; |
| 4767 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4768 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4769 | } |
| 4770 | cmd++; |
| 4771 | } |
| 4772 | pi = pi->next; |
| 4773 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4774 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4775 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4776 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4777 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4778 | #endif |
| 4779 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4780 | } |
| 4781 | |
| 4782 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4783 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4784 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4785 | { |
| 4786 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4787 | int pid, channel[2]; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4788 | #if !BB_MMU |
| 4789 | char **to_free; |
| 4790 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4791 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 4792 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 4793 | pid = BB_MMU ? fork() : vfork(); |
| 4794 | if (pid < 0) |
| 4795 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4796 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4797 | if (pid == 0) { /* child */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4798 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4799 | /* Process substitution is not considered to be usual |
| 4800 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4801 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 4802 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 4803 | bb_signals(0 |
| 4804 | + (1 << SIGTSTP) |
| 4805 | + (1 << SIGTTIN) |
| 4806 | + (1 << SIGTTOU) |
| 4807 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4808 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 4809 | xmove_fd(channel[1], 1); |
| 4810 | /* Prevent it from trying to handle ctrl-z etc */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 4811 | IF_HUSH_JOB(G.run_list_level = 1;) |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4812 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4813 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4814 | parse_and_run_string(s); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4815 | _exit(G.last_exitcode); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4816 | #else |
| 4817 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4818 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 4819 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4820 | * echo OK |
| 4821 | */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4822 | re_execute_shell(&to_free, |
| 4823 | s, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4824 | G.global_argv[0], |
| 4825 | G.global_argv + 1); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4826 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4827 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4828 | |
| 4829 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4830 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4831 | #if !BB_MMU |
| 4832 | free(to_free); |
| 4833 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4834 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 4835 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4836 | return pf; |
| 4837 | } |
| 4838 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4839 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4840 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4841 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4842 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4843 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4844 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4845 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4846 | pf = generate_stream_from_string(s); |
| 4847 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4848 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4849 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4850 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4851 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4852 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4853 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4854 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4855 | if (ch == '\n') { |
| 4856 | eol_cnt++; |
| 4857 | continue; |
| 4858 | } |
| 4859 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4860 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4861 | eol_cnt--; |
| 4862 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4863 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4864 | } |
| 4865 | |
| 4866 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4867 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 4868 | * 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] | 4869 | * Try these: |
| 4870 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 4871 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4872 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4873 | fclose(pf); |
| 4874 | debug_printf("closed FILE from child. return 0\n"); |
| 4875 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4876 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4877 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4878 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4879 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4880 | struct in_str *input, int ch) |
| 4881 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4882 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4883 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4884 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4885 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4886 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4887 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4888 | |
| 4889 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4890 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4891 | if (ch == '(' && !dest->o_quoted) { |
| 4892 | if (dest->length) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4893 | if (done_word(dest, ctx)) |
| 4894 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4895 | if (!command->argv) |
| 4896 | goto skip; /* (... */ |
| 4897 | if (command->argv[1]) { /* word word ... (... */ |
| 4898 | syntax_error_unexpected_ch('('); |
| 4899 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4900 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4901 | /* it is "word(..." or "word (..." */ |
| 4902 | do |
| 4903 | ch = i_getch(input); |
| 4904 | while (ch == ' ' || ch == '\t'); |
| 4905 | if (ch != ')') { |
| 4906 | syntax_error_unexpected_ch(ch); |
| 4907 | return 1; |
| 4908 | } |
| 4909 | nommu_addchr(&ctx->as_string, ch); |
| 4910 | do |
| 4911 | ch = i_getch(input); |
| 4912 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
| 4913 | if (ch != '{') { |
| 4914 | syntax_error_unexpected_ch(ch); |
| 4915 | return 1; |
| 4916 | } |
| 4917 | nommu_addchr(&ctx->as_string, ch); |
| 4918 | command->grp_type = GRP_FUNCTION; |
| 4919 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4920 | } |
| 4921 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4922 | if (command->argv /* word [word]{... */ |
| 4923 | || dest->length /* word{... */ |
| 4924 | || dest->o_quoted /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4925 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4926 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4927 | debug_printf_parse("parse_group return 1: " |
| 4928 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4929 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4930 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4931 | |
| 4932 | #if ENABLE_HUSH_FUNCTIONS |
| 4933 | skip: |
| 4934 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4935 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4936 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4937 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4938 | command->grp_type = GRP_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4939 | } else { |
| 4940 | /* bash does not allow "{echo...", requires whitespace */ |
| 4941 | ch = i_getch(input); |
| 4942 | if (ch != ' ' && ch != '\t' && ch != '\n') { |
| 4943 | syntax_error_unexpected_ch(ch); |
| 4944 | return 1; |
| 4945 | } |
| 4946 | nommu_addchr(&ctx->as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4947 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4948 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4949 | { |
| 4950 | #if !BB_MMU |
| 4951 | char *as_string = NULL; |
| 4952 | #endif |
| 4953 | pipe_list = parse_stream(&as_string, input, endch); |
| 4954 | #if !BB_MMU |
| 4955 | if (as_string) |
| 4956 | o_addstr(&ctx->as_string, as_string); |
| 4957 | #endif |
| 4958 | /* empty ()/{} or parse error? */ |
| 4959 | if (!pipe_list || pipe_list == ERR_PTR) { |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4960 | /* parse_stream already emitted error msg */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4961 | #if !BB_MMU |
| 4962 | free(as_string); |
| 4963 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4964 | debug_printf_parse("parse_group return 1: " |
| 4965 | "parse_stream returned %p\n", pipe_list); |
| 4966 | return 1; |
| 4967 | } |
| 4968 | command->group = pipe_list; |
| 4969 | #if !BB_MMU |
| 4970 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4971 | command->group_as_string = as_string; |
| 4972 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4973 | command->group_as_string); |
| 4974 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4975 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4976 | debug_printf_parse("parse_group return 0\n"); |
| 4977 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4978 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4979 | } |
| 4980 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4981 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4982 | /* Subroutines for copying $(...) and `...` things */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4983 | static void add_till_backquote(o_string *dest, struct in_str *input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4984 | /* '...' */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4985 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4986 | { |
| 4987 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4988 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4989 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4990 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4991 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4992 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4993 | if (ch == '\'') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4994 | return; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4995 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4996 | } |
| 4997 | } |
| 4998 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4999 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5000 | { |
| 5001 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5002 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5003 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5004 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5005 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5006 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5007 | if (ch == '"') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5008 | return; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5009 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5010 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5011 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5012 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5013 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5014 | if (ch == '`') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5015 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5016 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5017 | continue; |
| 5018 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 5019 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5020 | } |
| 5021 | } |
| 5022 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 5023 | * \` quoting. |
| 5024 | * "Within the backquoted style of command substitution, backslash |
| 5025 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 5026 | * The search for the matching backquote shall be satisfied by the first |
| 5027 | * backquote found without a preceding backslash; during this search, |
| 5028 | * if a non-escaped backquote is encountered within a shell comment, |
| 5029 | * a here-document, an embedded command substitution of the $(command) |
| 5030 | * form, or a quoted string, undefined results occur. A single-quoted |
| 5031 | * or double-quoted string that begins, but does not end, within the |
| 5032 | * "`...`" sequence produces undefined results." |
| 5033 | * Example Output |
| 5034 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 5035 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5036 | static void add_till_backquote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5037 | { |
| 5038 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5039 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5040 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5041 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5042 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5043 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5044 | if (ch == '`') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5045 | return; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5046 | if (ch == '\\') { |
| 5047 | /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5048 | int ch2 = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5049 | if (ch2 == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5050 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5051 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5052 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5053 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5054 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5055 | ch = ch2; |
| 5056 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5057 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5058 | } |
| 5059 | } |
| 5060 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 5061 | * quoting and nested ()s. |
| 5062 | * "With the $(command) style of command substitution, all characters |
| 5063 | * following the open parenthesis to the matching closing parenthesis |
| 5064 | * constitute the command. Any valid shell script can be used for command, |
| 5065 | * except a script consisting solely of redirections which produces |
| 5066 | * unspecified results." |
| 5067 | * Example Output |
| 5068 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 5069 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 5070 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 5071 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5072 | static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5073 | { |
| 5074 | int count = 0; |
| 5075 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5076 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5077 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5078 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5079 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5080 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5081 | if (ch == '(') |
| 5082 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5083 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5084 | if (--count < 0) { |
| 5085 | if (!dbl) |
| 5086 | break; |
| 5087 | if (i_peek(input) == ')') { |
| 5088 | i_getch(input); |
| 5089 | break; |
| 5090 | } |
| 5091 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5092 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5093 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5094 | if (ch == '\'') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5095 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5096 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5097 | continue; |
| 5098 | } |
| 5099 | if (ch == '"') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5100 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5101 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5102 | continue; |
| 5103 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5104 | if (ch == '\\') { |
| 5105 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5106 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5107 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5108 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5109 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5110 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5111 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5112 | continue; |
| 5113 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5114 | } |
| 5115 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5116 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5117 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5118 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5119 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5120 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5121 | handle_dollar(dest, input) |
| 5122 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5123 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5124 | o_string *dest, |
| 5125 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5126 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5127 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5128 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5129 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5130 | |
| 5131 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5132 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5133 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5134 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 5135 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5136 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5137 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5138 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5139 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5140 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5141 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5142 | if (!isalnum(ch) && ch != '_') |
| 5143 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5144 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5145 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5146 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5147 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5148 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5149 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5150 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5151 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5152 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5153 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5154 | o_addchr(dest, ch | quote_mask); |
| 5155 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5156 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5157 | case '$': /* pid */ |
| 5158 | case '!': /* last bg pid */ |
| 5159 | case '?': /* last exit code */ |
| 5160 | case '#': /* number of args */ |
| 5161 | case '*': /* args */ |
| 5162 | case '@': /* args */ |
| 5163 | goto make_one_char_var; |
| 5164 | case '{': { |
| 5165 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5166 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5167 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5168 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5169 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 5170 | /* TODO: maybe someone will try to escape the '}' */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5171 | expansion = 0; |
| 5172 | first_char = true; |
| 5173 | all_digits = false; |
| 5174 | while (1) { |
| 5175 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5176 | nommu_addchr(as_string, ch); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5177 | if (ch == '}') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5178 | break; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5179 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5180 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5181 | if (first_char) { |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5182 | if (ch == '#') { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5183 | /* ${#var}: length of var contents */ |
| 5184 | goto char_ok; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5185 | } |
| 5186 | if (isdigit(ch)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5187 | all_digits = true; |
| 5188 | goto char_ok; |
| 5189 | } |
| 5190 | } |
| 5191 | |
| 5192 | if (expansion < 2 |
| 5193 | && ( (all_digits && !isdigit(ch)) |
| 5194 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 5195 | ) |
| 5196 | ) { |
| 5197 | /* handle parameter expansions |
| 5198 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 5199 | */ |
| 5200 | if (first_char) |
| 5201 | goto case_default; |
| 5202 | switch (ch) { |
| 5203 | case ':': /* null modifier */ |
| 5204 | if (expansion == 0) { |
| 5205 | debug_printf_parse(": null modifier\n"); |
| 5206 | ++expansion; |
| 5207 | break; |
| 5208 | } |
| 5209 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5210 | case '#': /* remove prefix */ |
| 5211 | case '%': /* remove suffix */ |
| 5212 | if (expansion == 0) { |
| 5213 | debug_printf_parse(": remove suffix/prefix\n"); |
| 5214 | expansion = 2; |
| 5215 | break; |
| 5216 | } |
| 5217 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5218 | case '-': /* default value */ |
| 5219 | case '=': /* assign default */ |
| 5220 | case '+': /* alternative */ |
| 5221 | case '?': /* error indicate */ |
| 5222 | debug_printf_parse(": parameter expansion\n"); |
| 5223 | expansion = 2; |
| 5224 | break; |
| 5225 | default: |
| 5226 | case_default: |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5227 | syntax_error_unterm_str("${name}"); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5228 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 5229 | return 1; |
| 5230 | } |
| 5231 | } |
| 5232 | char_ok: |
| 5233 | debug_printf_parse(": '%c'\n", ch); |
| 5234 | o_addchr(dest, ch | quote_mask); |
| 5235 | quote_mask = 0; |
| 5236 | first_char = false; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5237 | } /* while (1) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5238 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5239 | break; |
| 5240 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5241 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5242 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5243 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5244 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5245 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5246 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5247 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5248 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5249 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5250 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5251 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5252 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5253 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5254 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5255 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5256 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5257 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5258 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5259 | if (as_string) { |
| 5260 | o_addstr(as_string, dest->data + pos); |
| 5261 | o_addchr(as_string, ')'); |
| 5262 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5263 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5264 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5265 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5266 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5267 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5268 | # endif |
| 5269 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5270 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5271 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5272 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5273 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5274 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5275 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5276 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5277 | if (as_string) { |
| 5278 | o_addstr(as_string, dest->data + pos); |
| 5279 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5280 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5281 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5282 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5283 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5284 | break; |
| 5285 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5286 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5287 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5288 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5289 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5290 | ch = i_peek(input); |
| 5291 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 5292 | ch = '_'; |
| 5293 | goto make_var; |
| 5294 | } |
| 5295 | /* else: it's $_ */ |
| 5296 | /* TODO: */ |
| 5297 | /* $_ Shell or shell script name; or last cmd name */ |
| 5298 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 5299 | default: |
| 5300 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5301 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5302 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5303 | return 0; |
| 5304 | } |
| 5305 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5306 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5307 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5308 | parse_stream_dquoted(dest, input, dquote_end) |
| 5309 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5310 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5311 | o_string *dest, |
| 5312 | struct in_str *input, |
| 5313 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5314 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5315 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5316 | int next; |
| 5317 | |
| 5318 | again: |
| 5319 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5320 | if (ch != EOF) |
| 5321 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5322 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5323 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5324 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5325 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 5326 | return 0; |
| 5327 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5328 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5329 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5330 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5331 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5332 | } |
| 5333 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5334 | if (ch != '\n') { |
| 5335 | next = i_peek(input); |
| 5336 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5337 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5338 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5339 | if (ch == '\\') { |
| 5340 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5341 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5342 | xfunc_die(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5343 | } |
| 5344 | /* bash: |
| 5345 | * "The backslash retains its special meaning [in "..."] |
| 5346 | * only when followed by one of the following characters: |
| 5347 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 5348 | * within double quotes by preceding it with a backslash. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5349 | */ |
| 5350 | if (strchr("$`\"\\", next) != NULL) { |
Denis Vlasenko | 5729300 | 2009-04-26 20:06:14 +0000 | [diff] [blame] | 5351 | ch = i_getch(input); |
| 5352 | o_addqchr(dest, ch); |
| 5353 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5354 | } else { |
| 5355 | o_addqchr(dest, '\\'); |
Denis Vlasenko | 5729300 | 2009-04-26 20:06:14 +0000 | [diff] [blame] | 5356 | nommu_addchr(as_string, '\\'); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5357 | } |
| 5358 | goto again; |
| 5359 | } |
| 5360 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5361 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5362 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 5363 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5364 | return 1; |
| 5365 | } |
| 5366 | goto again; |
| 5367 | } |
| 5368 | #if ENABLE_HUSH_TICK |
| 5369 | if (ch == '`') { |
| 5370 | //int pos = dest->length; |
| 5371 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5372 | o_addchr(dest, 0x80 | '`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5373 | add_till_backquote(dest, input); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5374 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5375 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5376 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5377 | } |
| 5378 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5379 | o_addQchr(dest, ch); |
| 5380 | if (ch == '=' |
| 5381 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 5382 | || dest->o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5383 | && is_well_formed_var_name(dest->data, '=') |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5384 | ) { |
| 5385 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 5386 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5387 | goto again; |
| 5388 | } |
| 5389 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5390 | /* |
| 5391 | * Scan input until EOF or end_trigger char. |
| 5392 | * Return a list of pipes to execute, or NULL on EOF |
| 5393 | * or if end_trigger character is met. |
| 5394 | * On syntax error, exit is shell is not interactive, |
| 5395 | * reset parsing machinery and start parsing anew, |
| 5396 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5397 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5398 | static struct pipe *parse_stream(char **pstring, |
| 5399 | struct in_str *input, |
| 5400 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5401 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5402 | struct parse_context ctx; |
| 5403 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5404 | int is_in_dquote; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5405 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5406 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5407 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5408 | * 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] | 5409 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 5410 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5411 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 5412 | end_trigger ? : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5413 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5414 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5415 | G.ifs = get_local_var_value("IFS"); |
| 5416 | if (G.ifs == NULL) |
| 5417 | G.ifs = " \t\n"; |
| 5418 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5419 | reset: |
| 5420 | #if ENABLE_HUSH_INTERACTIVE |
| 5421 | input->promptmode = 0; /* PS1 */ |
| 5422 | #endif |
| 5423 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 5424 | initialize_context(&ctx); |
| 5425 | is_in_dquote = 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5426 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5427 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5428 | const char *is_ifs; |
| 5429 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5430 | int ch; |
| 5431 | int next; |
| 5432 | int redir_fd; |
| 5433 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5434 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5435 | if (is_in_dquote) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5436 | /* dest.o_quoted = 1; - already is (see below) */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5437 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5438 | goto parse_error; |
| 5439 | } |
| 5440 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5441 | is_in_dquote = 0; |
| 5442 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5443 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5444 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5445 | ch, ch, dest.o_escape); |
| 5446 | if (ch == EOF) { |
| 5447 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5448 | |
| 5449 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5450 | syntax_error_unterm_str("here document"); |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame^] | 5451 | goto parse_error; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5452 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame^] | 5453 | /* end_trigger == '}' case errors out earlier, |
| 5454 | * checking only ')' */ |
| 5455 | if (end_trigger == ')') { |
| 5456 | syntax_error_unterm_ch('('); /* exits */ |
| 5457 | /* goto parse_error; */ |
| 5458 | } |
| 5459 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5460 | if (done_word(&dest, &ctx)) { |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame^] | 5461 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5462 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5463 | o_free(&dest); |
| 5464 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5465 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5466 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5467 | /* (this makes bare "&" cmd a no-op. |
| 5468 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5469 | if (pi->num_cmds == 0 |
| 5470 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 5471 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5472 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5473 | pi = NULL; |
| 5474 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5475 | #if !BB_MMU |
| 5476 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5477 | if (pstring) |
| 5478 | *pstring = ctx.as_string.data; |
| 5479 | else |
| 5480 | o_free_unsafe(&ctx.as_string); |
| 5481 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5482 | debug_leave(); |
| 5483 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5484 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5485 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5486 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5487 | is_ifs = strchr(G.ifs, ch); |
| 5488 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 5489 | "\\$\"" IF_HUSH_TICK("`") /* always special */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5490 | , ch); |
| 5491 | |
| 5492 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5493 | ordinary_char: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5494 | o_addQchr(&dest, ch); |
| 5495 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 5496 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5497 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5498 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5499 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5500 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5501 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5502 | continue; |
| 5503 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5504 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5505 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5506 | if (done_word(&dest, &ctx)) { |
| 5507 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5508 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5509 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5510 | #if ENABLE_HUSH_CASE |
| 5511 | /* "case ... in <newline> word) ..." - |
| 5512 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5513 | if (ctx.command->argv == NULL |
| 5514 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5515 | ) { |
| 5516 | continue; |
| 5517 | } |
| 5518 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5519 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5520 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5521 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5522 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5523 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5524 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5525 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5526 | heredoc_cnt = 0; |
| 5527 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5528 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5529 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 5530 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5531 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5532 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5533 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5534 | |
| 5535 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 5536 | * } is an ordinary char in this case, even inside { cmd; } |
| 5537 | * Pathological example: { ""}; } should exec "}" cmd |
| 5538 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5539 | if (ch == '}') { |
| 5540 | if (!IS_NULL_CMD(ctx.command) /* cmd } */ |
| 5541 | || dest.length != 0 /* word} */ |
| 5542 | || dest.o_quoted /* ""} */ |
| 5543 | ) { |
| 5544 | goto ordinary_char; |
| 5545 | } |
| 5546 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
| 5547 | goto skip_end_trigger; |
| 5548 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5549 | } |
| 5550 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5551 | if (end_trigger && end_trigger == ch |
| 5552 | && (heredoc_cnt == 0 || end_trigger != ';') |
| 5553 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5554 | if (heredoc_cnt) { |
| 5555 | /* This is technically valid: |
| 5556 | * { cat <<HERE; }; echo Ok |
| 5557 | * heredoc |
| 5558 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5559 | * HERE |
| 5560 | * but we don't support this. |
| 5561 | * We require heredoc to be in enclosing {}/(), |
| 5562 | * if any. |
| 5563 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5564 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5565 | goto parse_error; |
| 5566 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5567 | if (done_word(&dest, &ctx)) { |
| 5568 | goto parse_error; |
| 5569 | } |
| 5570 | done_pipe(&ctx, PIPE_SEQ); |
| 5571 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5572 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5573 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5574 | 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] | 5575 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5576 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5577 | #if !BB_MMU |
| 5578 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5579 | if (pstring) |
| 5580 | *pstring = ctx.as_string.data; |
| 5581 | else |
| 5582 | o_free_unsafe(&ctx.as_string); |
| 5583 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5584 | debug_leave(); |
| 5585 | debug_printf_parse("parse_stream return %p: " |
| 5586 | "end_trigger char found\n", |
| 5587 | ctx.list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5588 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5589 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5590 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5591 | skip_end_trigger: |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5592 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5593 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5594 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5595 | next = '\0'; |
| 5596 | if (ch != '\n') { |
| 5597 | next = i_peek(input); |
| 5598 | } |
| 5599 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5600 | /* Catch <, > before deciding whether this word is |
| 5601 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5602 | switch (ch) { |
| 5603 | case '>': |
| 5604 | redir_fd = redirect_opt_num(&dest); |
| 5605 | if (done_word(&dest, &ctx)) { |
| 5606 | goto parse_error; |
| 5607 | } |
| 5608 | redir_style = REDIRECT_OVERWRITE; |
| 5609 | if (next == '>') { |
| 5610 | redir_style = REDIRECT_APPEND; |
| 5611 | ch = i_getch(input); |
| 5612 | nommu_addchr(&ctx.as_string, ch); |
| 5613 | } |
| 5614 | #if 0 |
| 5615 | else if (next == '(') { |
| 5616 | syntax_error(">(process) not supported"); |
| 5617 | goto parse_error; |
| 5618 | } |
| 5619 | #endif |
| 5620 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5621 | goto parse_error; |
| 5622 | continue; /* back to top of while (1) */ |
| 5623 | case '<': |
| 5624 | redir_fd = redirect_opt_num(&dest); |
| 5625 | if (done_word(&dest, &ctx)) { |
| 5626 | goto parse_error; |
| 5627 | } |
| 5628 | redir_style = REDIRECT_INPUT; |
| 5629 | if (next == '<') { |
| 5630 | redir_style = REDIRECT_HEREDOC; |
| 5631 | heredoc_cnt++; |
| 5632 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5633 | ch = i_getch(input); |
| 5634 | nommu_addchr(&ctx.as_string, ch); |
| 5635 | } else if (next == '>') { |
| 5636 | redir_style = REDIRECT_IO; |
| 5637 | ch = i_getch(input); |
| 5638 | nommu_addchr(&ctx.as_string, ch); |
| 5639 | } |
| 5640 | #if 0 |
| 5641 | else if (next == '(') { |
| 5642 | syntax_error("<(process) not supported"); |
| 5643 | goto parse_error; |
| 5644 | } |
| 5645 | #endif |
| 5646 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5647 | goto parse_error; |
| 5648 | continue; /* back to top of while (1) */ |
| 5649 | } |
| 5650 | |
| 5651 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5652 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5653 | && !ctx.pending_redirect |
| 5654 | ) { |
| 5655 | /* ch is a special char and thus this word |
| 5656 | * cannot be an assignment */ |
| 5657 | dest.o_assignment = NOT_ASSIGNMENT; |
| 5658 | } |
| 5659 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5660 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5661 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5662 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5663 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5664 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5665 | if (ch == EOF || ch == '\n') |
| 5666 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5667 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5668 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5669 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5670 | nommu_addchr(&ctx.as_string, '\n'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5671 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5672 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5673 | } |
| 5674 | break; |
| 5675 | case '\\': |
| 5676 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5677 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5678 | xfunc_die(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5679 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5680 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5681 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5682 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5683 | o_addchr(&dest, ch); |
| 5684 | /* Example: echo Hello \2>file |
| 5685 | * we need to know that word 2 is quoted */ |
| 5686 | dest.o_quoted = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5687 | break; |
| 5688 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5689 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5690 | debug_printf_parse("parse_stream parse error: " |
| 5691 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5692 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5693 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5694 | break; |
| 5695 | case '\'': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5696 | dest.o_quoted = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5697 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5698 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5699 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5700 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5701 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5702 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5703 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5704 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5705 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5706 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5707 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5708 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5709 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5710 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5711 | break; |
| 5712 | case '"': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5713 | dest.o_quoted = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5714 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5715 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5716 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5717 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5718 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5719 | case '`': { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5720 | #if !BB_MMU |
| 5721 | int pos; |
| 5722 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5723 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5724 | o_addchr(&dest, '`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5725 | #if !BB_MMU |
| 5726 | pos = dest.length; |
| 5727 | #endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5728 | add_till_backquote(&dest, input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5729 | #if !BB_MMU |
| 5730 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5731 | o_addchr(&ctx.as_string, '`'); |
| 5732 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5733 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5734 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5735 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5736 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5737 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5738 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5739 | #if ENABLE_HUSH_CASE |
| 5740 | case_semi: |
| 5741 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5742 | if (done_word(&dest, &ctx)) { |
| 5743 | goto parse_error; |
| 5744 | } |
| 5745 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5746 | #if ENABLE_HUSH_CASE |
| 5747 | /* Eat multiple semicolons, detect |
| 5748 | * whether it means something special */ |
| 5749 | while (1) { |
| 5750 | ch = i_peek(input); |
| 5751 | if (ch != ';') |
| 5752 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5753 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5754 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5755 | if (ctx.ctx_res_w == RES_CASEI) { |
| 5756 | ctx.ctx_dsemicolon = 1; |
| 5757 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5758 | break; |
| 5759 | } |
| 5760 | } |
| 5761 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5762 | new_cmd: |
| 5763 | /* We just finished a cmd. New one may start |
| 5764 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5765 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5766 | break; |
| 5767 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5768 | if (done_word(&dest, &ctx)) { |
| 5769 | goto parse_error; |
| 5770 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5771 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5772 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5773 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5774 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5775 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5776 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5777 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5778 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5779 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5780 | if (done_word(&dest, &ctx)) { |
| 5781 | goto parse_error; |
| 5782 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5783 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5784 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5785 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5786 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5787 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5788 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5789 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5790 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5791 | } else { |
| 5792 | /* we could pick up a file descriptor choice here |
| 5793 | * with redirect_opt_num(), but bash doesn't do it. |
| 5794 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5795 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5796 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5797 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5798 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5799 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5800 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5801 | if (ctx.ctx_res_w == RES_MATCH |
| 5802 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5803 | && dest.length == 0 /* not word(... */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5804 | && dest.o_quoted == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5805 | ) { |
| 5806 | continue; |
| 5807 | } |
| 5808 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5809 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5810 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5811 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5812 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5813 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5814 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5815 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5816 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5817 | goto case_semi; |
| 5818 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5819 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5820 | /* proper use of this character is caught by end_trigger: |
| 5821 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5822 | * and it will match } earlier (not here). */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 5823 | syntax_error_unexpected_ch(ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5824 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5825 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5826 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5827 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5828 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5829 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5830 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5831 | parse_error: |
| 5832 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5833 | struct parse_context *pctx; |
| 5834 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5835 | |
| 5836 | /* Clean up allocated tree. |
| 5837 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5838 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 5839 | * while if false; then false; fi do break; done |
| 5840 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5841 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5842 | * Samples to catch leaks at execution: |
| 5843 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 5844 | * 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] | 5845 | */ |
| 5846 | pctx = &ctx; |
| 5847 | do { |
| 5848 | /* Update pipe/command counts, |
| 5849 | * otherwise freeing may miss some */ |
| 5850 | done_pipe(pctx, PIPE_SEQ); |
| 5851 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5852 | pctx->list_head, pctx); |
| 5853 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5854 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5855 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5856 | #if !BB_MMU |
| 5857 | o_free_unsafe(&pctx->as_string); |
| 5858 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5859 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5860 | if (pctx != &ctx) { |
| 5861 | free(pctx); |
| 5862 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5863 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5864 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5865 | /* Free text, clear all dest fields */ |
| 5866 | o_free(&dest); |
| 5867 | /* If we are not in top-level parse, we return, |
| 5868 | * our caller will propagate error. |
| 5869 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5870 | if (end_trigger != ';') { |
| 5871 | #if !BB_MMU |
| 5872 | if (pstring) |
| 5873 | *pstring = NULL; |
| 5874 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5875 | debug_leave(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5876 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5877 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5878 | /* Discard cached input, force prompt */ |
| 5879 | input->p = NULL; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 5880 | IF_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5881 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5882 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5883 | } |
| 5884 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5885 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5886 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 5887 | * end_trigger controls how often we stop parsing |
| 5888 | * NUL: parse all, execute, return |
| 5889 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 5890 | */ |
| 5891 | 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] | 5892 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5893 | while (1) { |
| 5894 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5895 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5896 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5897 | if (!pipe_list) /* EOF */ |
| 5898 | break; |
| 5899 | debug_print_tree(pipe_list, 0); |
| 5900 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 5901 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5902 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5903 | } |
| 5904 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5905 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5906 | { |
| 5907 | struct in_str input; |
| 5908 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5909 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5910 | } |
| 5911 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5912 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5913 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5914 | struct in_str input; |
| 5915 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5916 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5917 | } |
| 5918 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5919 | /* Called a few times only (or even once if "sh -c") */ |
| 5920 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5921 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5922 | unsigned sig; |
| 5923 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5924 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5925 | mask = (1 << SIGQUIT); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 5926 | if (G_interactive_fd) { |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 5927 | mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 5928 | if (G.saved_tty_pgrp) /* we have ctty, job control sigs work */ |
| 5929 | mask |= SPECIAL_JOB_SIGS; |
| 5930 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5931 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5932 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5933 | if (!second_time) |
| 5934 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 5935 | sig = 0; |
| 5936 | while (mask) { |
| 5937 | if (mask & 1) |
| 5938 | sigaddset(&G.blocked_set, sig); |
| 5939 | mask >>= 1; |
| 5940 | sig++; |
| 5941 | } |
| 5942 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5943 | |
| 5944 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 5945 | second_time ? NULL : &G.inherited_set); |
| 5946 | /* POSIX allows shell to re-enable SIGCHLD |
| 5947 | * even if it was SIG_IGN on entry */ |
| 5948 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5949 | if (!second_time) |
| 5950 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 5951 | } |
| 5952 | |
| 5953 | #if ENABLE_HUSH_JOB |
| 5954 | /* helper */ |
| 5955 | static void maybe_set_to_sigexit(int sig) |
| 5956 | { |
| 5957 | void (*handler)(int); |
| 5958 | /* non_DFL_mask'ed signals are, well, masked, |
| 5959 | * no need to set handler for them. |
| 5960 | */ |
| 5961 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 5962 | handler = signal(sig, sigexit); |
| 5963 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 5964 | signal(sig, handler); |
| 5965 | } |
| 5966 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5967 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5968 | static void set_fatal_handlers(void) |
| 5969 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 5970 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5971 | if (HUSH_DEBUG) { |
| 5972 | maybe_set_to_sigexit(SIGILL ); |
| 5973 | maybe_set_to_sigexit(SIGFPE ); |
| 5974 | maybe_set_to_sigexit(SIGBUS ); |
| 5975 | maybe_set_to_sigexit(SIGSEGV); |
| 5976 | maybe_set_to_sigexit(SIGTRAP); |
| 5977 | } /* else: hush is perfect. what SEGV? */ |
| 5978 | maybe_set_to_sigexit(SIGABRT); |
| 5979 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 5980 | maybe_set_to_sigexit(SIGPIPE); |
| 5981 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 5982 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5983 | * if we aren't interactive... but in this case |
| 5984 | * we never want to restore pgrp on exit, and this fn is not called */ |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 5985 | /*maybe_set_to_sigexit(SIGHUP );*/ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5986 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 5987 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 5988 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5989 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5990 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5991 | static int set_mode(const char cstate, const char mode) |
| 5992 | { |
| 5993 | int state = (cstate == '-' ? 1 : 0); |
| 5994 | switch (mode) { |
| 5995 | case 'n': G.fake_mode = state; break; |
| 5996 | case 'x': /*G.debug_mode = state;*/ break; |
| 5997 | default: return EXIT_FAILURE; |
| 5998 | } |
| 5999 | return EXIT_SUCCESS; |
| 6000 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6001 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 6002 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 6003 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6004 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6005 | static const struct variable const_shell_ver = { |
| 6006 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 6007 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6008 | .max_len = 1, /* 0 can provoke free(name) */ |
| 6009 | .flg_export = 1, |
| 6010 | .flg_read_only = 1, |
| 6011 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6012 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6013 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6014 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6015 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 6016 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 6017 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6018 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6019 | G.last_exitcode = EXIT_SUCCESS; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6020 | #if !BB_MMU |
| 6021 | G.argv0_for_re_execing = argv[0]; |
| 6022 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6023 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6024 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 6025 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6026 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6027 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 6028 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6029 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6030 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6031 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6032 | if (e) while (*e) { |
| 6033 | char *value = strchr(*e, '='); |
| 6034 | if (value) { /* paranoia */ |
| 6035 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 6036 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 6037 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6038 | cur_var->max_len = strlen(*e); |
| 6039 | cur_var->flg_export = 1; |
| 6040 | } |
| 6041 | e++; |
| 6042 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6043 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 6044 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 6045 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6046 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 6047 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6048 | G.global_argc = argc; |
| 6049 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 6050 | /* Initialize some more globals to non-zero values */ |
| 6051 | set_cwd(); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 6052 | cmdedit_update_prompt(); |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 6053 | |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 6054 | if (setjmp(die_jmp)) { |
| 6055 | /* xfunc has failed! die die die */ |
| 6056 | /* no EXIT traps, this is an escape hatch! */ |
| 6057 | G.exiting = 1; |
| 6058 | hush_exit(xfunc_error_retval); |
| 6059 | } |
| 6060 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6061 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6062 | * block_signals(0) if we are going to execute "sh <script>", |
| 6063 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6064 | * If we later decide that we are interactive, we run block_signals(0) |
| 6065 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 6066 | * in order to intercept (more) signals. |
| 6067 | */ |
| 6068 | |
| 6069 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6070 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6071 | while (1) { |
| 6072 | opt = getopt(argc, argv, "c:xins" |
| 6073 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6074 | "<:$:R:V:" |
| 6075 | # if ENABLE_HUSH_FUNCTIONS |
| 6076 | "F:" |
| 6077 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6078 | #endif |
| 6079 | ); |
| 6080 | if (opt <= 0) |
| 6081 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6082 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6083 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6084 | if (!G.root_pid) |
| 6085 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6086 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 6087 | if (!argv[optind]) { |
| 6088 | /* -c 'script' (no params): prevent empty $0 */ |
| 6089 | *--G.global_argv = argv[0]; |
| 6090 | optind--; |
| 6091 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6092 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6093 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6094 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6095 | goto final_return; |
| 6096 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 6097 | /* Well, we cannot just declare interactiveness, |
| 6098 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6099 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6100 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6101 | case 's': |
| 6102 | /* "-s" means "read from stdin", but this is how we always |
| 6103 | * operate, so simply do nothing here. */ |
| 6104 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6105 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 6106 | case '<': /* "big heredoc" support */ |
| 6107 | full_write(STDOUT_FILENO, optarg, strlen(optarg)); |
| 6108 | _exit(0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6109 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6110 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 6111 | optarg++; |
| 6112 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 6113 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6114 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6115 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6116 | optarg++; |
| 6117 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6118 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6119 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6120 | case 'R': |
| 6121 | case 'V': |
| 6122 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 6123 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6124 | # if ENABLE_HUSH_FUNCTIONS |
| 6125 | case 'F': { |
| 6126 | struct function *funcp = new_function(optarg); |
| 6127 | /* funcp->name is already set to optarg */ |
| 6128 | /* funcp->body is set to NULL. It's a special case. */ |
| 6129 | funcp->body_as_string = argv[optind]; |
| 6130 | optind++; |
| 6131 | break; |
| 6132 | } |
| 6133 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6134 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6135 | case 'n': |
| 6136 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6137 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6138 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6139 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6140 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6141 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 6142 | " or: sh -c command [args]...\n\n"); |
| 6143 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6144 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6145 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6146 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6147 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6148 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6149 | |
| 6150 | if (!G.root_pid) |
| 6151 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6152 | |
| 6153 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6154 | if (argv[0] && argv[0][0] == '-') { |
| 6155 | FILE *input; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6156 | debug_printf("sourcing /etc/profile\n"); |
| 6157 | input = fopen_for_read("/etc/profile"); |
| 6158 | if (input != NULL) { |
| 6159 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6160 | block_signals(0); /* 0: called 1st time */ |
| 6161 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6162 | parse_and_run_file(input); |
| 6163 | fclose(input); |
| 6164 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6165 | /* bash: after sourcing /etc/profile, |
| 6166 | * tries to source (in the given order): |
| 6167 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 6168 | * stopping of first found. --noprofile turns this off. |
| 6169 | * bash also sources ~/.bash_logout on exit. |
| 6170 | * If called as sh, skips .bash_XXX files. |
| 6171 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6172 | } |
| 6173 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6174 | if (argv[optind]) { |
| 6175 | FILE *input; |
| 6176 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6177 | * "bash <script>" (which is never interactive (unless -i?)) |
| 6178 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6179 | * If called as sh, does the same but with $ENV. |
| 6180 | */ |
| 6181 | debug_printf("running script '%s'\n", argv[optind]); |
| 6182 | G.global_argv = argv + optind; |
| 6183 | G.global_argc = argc - optind; |
| 6184 | input = xfopen_for_read(argv[optind]); |
| 6185 | close_on_exec_on(fileno(input)); |
| 6186 | if (!signal_mask_is_inited) |
| 6187 | block_signals(0); /* 0: called 1st time */ |
| 6188 | parse_and_run_file(input); |
| 6189 | #if ENABLE_FEATURE_CLEAN_UP |
| 6190 | fclose(input); |
| 6191 | #endif |
| 6192 | goto final_return; |
| 6193 | } |
| 6194 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6195 | /* Up to here, shell was non-interactive. Now it may become one. |
| 6196 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 6197 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6198 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6199 | /* 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] | 6200 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 6201 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6202 | * no arguments remaining or the -s flag given |
| 6203 | * standard input is a terminal |
| 6204 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6205 | * Refer to Posix.2, the description of the 'sh' utility. |
| 6206 | */ |
| 6207 | #if ENABLE_HUSH_JOB |
| 6208 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6209 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6210 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6211 | if (G.saved_tty_pgrp < 0) |
| 6212 | G.saved_tty_pgrp = 0; |
| 6213 | |
| 6214 | /* try to dup stdin to high fd#, >= 255 */ |
| 6215 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6216 | if (G_interactive_fd < 0) { |
| 6217 | /* try to dup to any fd */ |
| 6218 | G_interactive_fd = dup(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6219 | if (G_interactive_fd < 0) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6220 | /* give up */ |
| 6221 | G_interactive_fd = 0; |
| 6222 | G.saved_tty_pgrp = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6223 | } |
| 6224 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6225 | // TODO: track & disallow any attempts of user |
| 6226 | // to (inadvertently) close/redirect G_interactive_fd |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6227 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6228 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6229 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6230 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6231 | |
| 6232 | if (G.saved_tty_pgrp) { |
| 6233 | /* If we were run as 'hush &', sleep until we are |
| 6234 | * in the foreground (tty pgrp == our pgrp). |
| 6235 | * If we get started under a job aware app (like bash), |
| 6236 | * make sure we are now in charge so we don't fight over |
| 6237 | * who gets the foreground */ |
| 6238 | while (1) { |
| 6239 | pid_t shell_pgrp = getpgrp(); |
| 6240 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 6241 | if (G.saved_tty_pgrp == shell_pgrp) |
| 6242 | break; |
| 6243 | /* send TTIN to ourself (should stop us) */ |
| 6244 | kill(- shell_pgrp, SIGTTIN); |
| 6245 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6246 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6247 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6248 | /* Block some signals */ |
| 6249 | block_signals(signal_mask_is_inited); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6250 | |
| 6251 | if (G.saved_tty_pgrp) { |
| 6252 | /* Set other signals to restore saved_tty_pgrp */ |
| 6253 | set_fatal_handlers(); |
| 6254 | /* Put ourselves in our own process group |
| 6255 | * (bash, too, does this only if ctty is available) */ |
| 6256 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 6257 | /* Grab control of the terminal */ |
| 6258 | tcsetpgrp(G_interactive_fd, getpid()); |
| 6259 | } |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 6260 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 6261 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 6262 | enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6263 | } else if (!signal_mask_is_inited) { |
| 6264 | block_signals(0); /* 0: called 1st time */ |
| 6265 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6266 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6267 | /* No job control compiled in, only prompt/line editing */ |
| 6268 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6269 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6270 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6271 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6272 | G_interactive_fd = dup(STDIN_FILENO); |
| 6273 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6274 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6275 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6276 | } |
| 6277 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6278 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6279 | close_on_exec_on(G_interactive_fd); |
| 6280 | block_signals(signal_mask_is_inited); |
| 6281 | } else if (!signal_mask_is_inited) { |
| 6282 | block_signals(0); |
| 6283 | } |
| 6284 | #else |
| 6285 | /* We have interactiveness code disabled */ |
| 6286 | if (!signal_mask_is_inited) { |
| 6287 | block_signals(0); |
| 6288 | } |
| 6289 | #endif |
| 6290 | /* bash: |
| 6291 | * if interactive but not a login shell, sources ~/.bashrc |
| 6292 | * (--norc turns this off, --rcfile <file> overrides) |
| 6293 | */ |
| 6294 | |
| 6295 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 6296 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | 26cf283 | 2009-04-24 06:40:30 +0000 | [diff] [blame] | 6297 | if (ENABLE_HUSH_HELP) |
| 6298 | puts("Enter 'help' for a list of built-in commands."); |
| 6299 | puts(""); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 6300 | } |
| 6301 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6302 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6303 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6304 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 6305 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6306 | if (G.cwd != bb_msg_unknown) |
| 6307 | free((char*)G.cwd); |
| 6308 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6309 | while (cur_var) { |
| 6310 | struct variable *tmp = cur_var; |
| 6311 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 6312 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6313 | cur_var = cur_var->next; |
| 6314 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 6315 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6316 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6317 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6318 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 6319 | |
| 6320 | |
| 6321 | #if ENABLE_LASH |
| 6322 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 6323 | int lash_main(int argc, char **argv) |
| 6324 | { |
| 6325 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 6326 | return hush_main(argc, argv); |
| 6327 | } |
| 6328 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6329 | |
| 6330 | |
| 6331 | /* |
| 6332 | * Built-ins |
| 6333 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6334 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6335 | { |
| 6336 | return 0; |
| 6337 | } |
| 6338 | |
| 6339 | static int builtin_test(char **argv) |
| 6340 | { |
| 6341 | int argc = 0; |
| 6342 | while (*argv) { |
| 6343 | argc++; |
| 6344 | argv++; |
| 6345 | } |
| 6346 | return test_main(argc, argv - argc); |
| 6347 | } |
| 6348 | |
| 6349 | static int builtin_echo(char **argv) |
| 6350 | { |
| 6351 | int argc = 0; |
| 6352 | while (*argv) { |
| 6353 | argc++; |
| 6354 | argv++; |
| 6355 | } |
| 6356 | return echo_main(argc, argv - argc); |
| 6357 | } |
| 6358 | |
| 6359 | static int builtin_eval(char **argv) |
| 6360 | { |
| 6361 | int rcode = EXIT_SUCCESS; |
| 6362 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6363 | if (*++argv) { |
| 6364 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6365 | /* bash: |
| 6366 | * eval "echo Hi; done" ("done" is syntax error): |
| 6367 | * "echo Hi" will not execute too. |
| 6368 | */ |
| 6369 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6370 | free(str); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6371 | rcode = G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6372 | } |
| 6373 | return rcode; |
| 6374 | } |
| 6375 | |
| 6376 | static int builtin_cd(char **argv) |
| 6377 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6378 | const char *newdir = argv[1]; |
| 6379 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6380 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6381 | * bash says "bash: cd: HOME not set" and does nothing |
| 6382 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6383 | */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 6384 | newdir = get_local_var_value("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6385 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6386 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6387 | /* Mimic bash message exactly */ |
| 6388 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6389 | return EXIT_FAILURE; |
| 6390 | } |
| 6391 | set_cwd(); |
| 6392 | return EXIT_SUCCESS; |
| 6393 | } |
| 6394 | |
| 6395 | static int builtin_exec(char **argv) |
| 6396 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6397 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6398 | return EXIT_SUCCESS; /* bash does this */ |
| 6399 | { |
| 6400 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6401 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6402 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6403 | /* TODO: if exec fails, bash does NOT exit! We do... */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6404 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6405 | /* never returns */ |
| 6406 | } |
| 6407 | } |
| 6408 | |
| 6409 | static int builtin_exit(char **argv) |
| 6410 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 6411 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6412 | |
| 6413 | /* interactive bash: |
| 6414 | * # trap "echo EEE" EXIT |
| 6415 | * # exit |
| 6416 | * exit |
| 6417 | * There are stopped jobs. |
| 6418 | * (if there are _stopped_ jobs, running ones don't count) |
| 6419 | * # exit |
| 6420 | * exit |
| 6421 | # EEE (then bash exits) |
| 6422 | * |
| 6423 | * we can use G.exiting = -1 as indicator "last cmd was exit" |
| 6424 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 6425 | |
| 6426 | /* note: EXIT trap is run by hush_exit */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6427 | if (*++argv == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6428 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6429 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 6430 | xfunc_error_retval = 255; |
| 6431 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6432 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6433 | } |
| 6434 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6435 | static void print_escaped(const char *s) |
| 6436 | { |
| 6437 | do { |
| 6438 | if (*s != '\'') { |
| 6439 | const char *p; |
| 6440 | |
| 6441 | p = strchrnul(s, '\''); |
| 6442 | /* print 'xxxx', possibly just '' */ |
| 6443 | printf("'%.*s'", (int)(p - s), s); |
| 6444 | if (*p == '\0') |
| 6445 | break; |
| 6446 | s = p; |
| 6447 | } |
| 6448 | /* s points to '; print "'''...'''" */ |
| 6449 | putchar('"'); |
| 6450 | do putchar('\''); while (*++s == '\''); |
| 6451 | putchar('"'); |
| 6452 | } while (*s); |
| 6453 | } |
| 6454 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6455 | static int builtin_export(char **argv) |
| 6456 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6457 | unsigned opt_unexport; |
| 6458 | |
| 6459 | if (argv[1] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6460 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6461 | if (e) { |
| 6462 | while (*e) { |
| 6463 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6464 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6465 | #else |
| 6466 | /* ash emits: export VAR='VAL' |
| 6467 | * bash: declare -x VAR="VAL" |
| 6468 | * we follow ash example */ |
| 6469 | const char *s = *e++; |
| 6470 | const char *p = strchr(s, '='); |
| 6471 | |
| 6472 | if (!p) /* wtf? take next variable */ |
| 6473 | continue; |
| 6474 | /* export var= */ |
| 6475 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6476 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6477 | putchar('\n'); |
| 6478 | #endif |
| 6479 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6480 | /*fflush(stdout); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6481 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6482 | return EXIT_SUCCESS; |
| 6483 | } |
| 6484 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6485 | #if ENABLE_HUSH_EXPORT_N |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6486 | /* "!": do not abort on errors */ |
| 6487 | /* "+": stop at 1st non-option */ |
| 6488 | opt_unexport = getopt32(argv, "!+n"); |
| 6489 | if (opt_unexport == (unsigned)-1) |
| 6490 | return EXIT_FAILURE; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6491 | argv += optind; |
| 6492 | #else |
| 6493 | opt_unexport = 0; |
| 6494 | argv++; |
| 6495 | #endif |
| 6496 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6497 | do { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6498 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6499 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6500 | /* So far we do not check that name is valid (TODO?) */ |
| 6501 | |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6502 | if (strchr(name, '=') == NULL) { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6503 | struct variable *var; |
| 6504 | |
| 6505 | var = get_local_var(name); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6506 | if (opt_unexport) { |
| 6507 | /* export -n NAME (without =VALUE) */ |
| 6508 | if (var) { |
| 6509 | var->flg_export = 0; |
| 6510 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 6511 | unsetenv(name); |
| 6512 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 6513 | continue; |
| 6514 | } |
| 6515 | /* export NAME (without =VALUE) */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6516 | if (var) { |
| 6517 | var->flg_export = 1; |
| 6518 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 6519 | putenv(var->varstr); |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6520 | continue; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6521 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6522 | /* Exporting non-existing variable. |
| 6523 | * bash does not put it in environment, |
| 6524 | * but remembers that it is exported, |
| 6525 | * and does put it in env when it is set later. |
| 6526 | * We just set it to "" and export. */ |
| 6527 | name = xasprintf("%s=", name); |
| 6528 | } else { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6529 | /* (Un)exporting NAME=VALUE */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6530 | name = xstrdup(name); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6531 | } |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6532 | set_local_var(name, |
| 6533 | /*export:*/ (opt_unexport ? -1 : 1), |
| 6534 | /*readonly:*/ 0 |
| 6535 | ); |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6536 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6537 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6538 | return EXIT_SUCCESS; |
| 6539 | } |
| 6540 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6541 | static int builtin_trap(char **argv) |
| 6542 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6543 | int sig; |
| 6544 | char *new_cmd; |
| 6545 | |
| 6546 | if (!G.traps) |
| 6547 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
| 6548 | |
| 6549 | argv++; |
| 6550 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6551 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6552 | /* No args: print all trapped */ |
| 6553 | for (i = 0; i < NSIG; ++i) { |
| 6554 | if (G.traps[i]) { |
| 6555 | printf("trap -- "); |
| 6556 | print_escaped(G.traps[i]); |
| 6557 | printf(" %s\n", get_signame(i)); |
| 6558 | } |
| 6559 | } |
| 6560 | /*fflush(stdout); - done after each builtin anyway */ |
| 6561 | return EXIT_SUCCESS; |
| 6562 | } |
| 6563 | |
| 6564 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6565 | /* If first arg is a number: reset all specified signals */ |
| 6566 | sig = bb_strtou(*argv, NULL, 10); |
| 6567 | if (errno == 0) { |
| 6568 | int ret; |
| 6569 | process_sig_list: |
| 6570 | ret = EXIT_SUCCESS; |
| 6571 | while (*argv) { |
| 6572 | sig = get_signum(*argv++); |
| 6573 | if (sig < 0 || sig >= NSIG) { |
| 6574 | ret = EXIT_FAILURE; |
| 6575 | /* Mimic bash message exactly */ |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6576 | bb_perror_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6577 | continue; |
| 6578 | } |
| 6579 | |
| 6580 | free(G.traps[sig]); |
| 6581 | G.traps[sig] = xstrdup(new_cmd); |
| 6582 | |
| 6583 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 6584 | get_signame(sig), sig, G.traps[sig]); |
| 6585 | |
| 6586 | /* There is no signal for 0 (EXIT) */ |
| 6587 | if (sig == 0) |
| 6588 | continue; |
| 6589 | |
| 6590 | if (new_cmd) { |
| 6591 | sigaddset(&G.blocked_set, sig); |
| 6592 | } else { |
| 6593 | /* There was a trap handler, we are removing it |
| 6594 | * (if sig has non-DFL handling, |
| 6595 | * we don't need to do anything) */ |
| 6596 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 6597 | continue; |
| 6598 | sigdelset(&G.blocked_set, sig); |
| 6599 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6600 | } |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6601 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6602 | return ret; |
| 6603 | } |
| 6604 | |
| 6605 | if (!argv[1]) { /* no second arg */ |
| 6606 | bb_error_msg("trap: invalid arguments"); |
| 6607 | return EXIT_FAILURE; |
| 6608 | } |
| 6609 | |
| 6610 | /* First arg is "-": reset all specified to default */ |
| 6611 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 6612 | /* Everything else: set arg as signal handler |
| 6613 | * (includes "" case, which ignores signal) */ |
| 6614 | if (argv[0][0] == '-') { |
| 6615 | if (argv[0][1] == '\0') { /* "-" */ |
| 6616 | /* new_cmd remains NULL: "reset these sigs" */ |
| 6617 | goto reset_traps; |
| 6618 | } |
| 6619 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 6620 | argv++; |
| 6621 | } |
| 6622 | /* else: "-something", no special meaning */ |
| 6623 | } |
| 6624 | new_cmd = *argv; |
| 6625 | reset_traps: |
| 6626 | argv++; |
| 6627 | goto process_sig_list; |
| 6628 | } |
| 6629 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6630 | #if ENABLE_HUSH_JOB |
| 6631 | /* built-in 'fg' and 'bg' handler */ |
| 6632 | static int builtin_fg_bg(char **argv) |
| 6633 | { |
| 6634 | int i, jobnum; |
| 6635 | struct pipe *pi; |
| 6636 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6637 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6638 | return EXIT_FAILURE; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6639 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6640 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 6641 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6642 | for (pi = G.job_list; pi; pi = pi->next) { |
| 6643 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6644 | goto found; |
| 6645 | } |
| 6646 | } |
| 6647 | bb_error_msg("%s: no current job", argv[0]); |
| 6648 | return EXIT_FAILURE; |
| 6649 | } |
| 6650 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 6651 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 6652 | return EXIT_FAILURE; |
| 6653 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6654 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6655 | if (pi->jobid == jobnum) { |
| 6656 | goto found; |
| 6657 | } |
| 6658 | } |
| 6659 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 6660 | return EXIT_FAILURE; |
| 6661 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6662 | /* TODO: bash prints a string representation |
| 6663 | * of job being foregrounded (like "sleep 1 | cat") */ |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6664 | if (argv[0][0] == 'f' && G.saved_tty_pgrp) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6665 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6666 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6667 | } |
| 6668 | |
| 6669 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6670 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 6671 | for (i = 0; i < pi->num_cmds; i++) { |
| 6672 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 6673 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6674 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6675 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6676 | |
| 6677 | i = kill(- pi->pgrp, SIGCONT); |
| 6678 | if (i < 0) { |
| 6679 | if (errno == ESRCH) { |
| 6680 | delete_finished_bg_job(pi); |
| 6681 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6682 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6683 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6684 | } |
| 6685 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6686 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6687 | remove_bg_job(pi); |
| 6688 | return checkjobs_and_fg_shell(pi); |
| 6689 | } |
| 6690 | return EXIT_SUCCESS; |
| 6691 | } |
| 6692 | #endif |
| 6693 | |
| 6694 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6695 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6696 | { |
| 6697 | const struct built_in_command *x; |
| 6698 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6699 | printf("\n" |
| 6700 | "Built-in commands:\n" |
| 6701 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6702 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 6703 | printf("%s\t%s\n", x->cmd, x->descr); |
| 6704 | } |
| 6705 | printf("\n\n"); |
| 6706 | return EXIT_SUCCESS; |
| 6707 | } |
| 6708 | #endif |
| 6709 | |
| 6710 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6711 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6712 | { |
| 6713 | struct pipe *job; |
| 6714 | const char *status_string; |
| 6715 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6716 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6717 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6718 | status_string = "Stopped"; |
| 6719 | else |
| 6720 | status_string = "Running"; |
| 6721 | |
| 6722 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 6723 | } |
| 6724 | return EXIT_SUCCESS; |
| 6725 | } |
| 6726 | #endif |
| 6727 | |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 6728 | #if HUSH_DEBUG |
| 6729 | static int builtin_memleak(char **argv UNUSED_PARAM) |
| 6730 | { |
| 6731 | void *p; |
| 6732 | unsigned long l; |
| 6733 | |
| 6734 | /* Crude attempt to find where "free memory" starts, |
| 6735 | * sans fragmentation. */ |
| 6736 | p = malloc(240); |
| 6737 | l = (unsigned long)p; |
| 6738 | free(p); |
| 6739 | p = malloc(3400); |
| 6740 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 6741 | free(p); |
| 6742 | |
| 6743 | if (!G.memleak_value) |
| 6744 | G.memleak_value = l; |
| 6745 | |
| 6746 | l -= G.memleak_value; |
| 6747 | if ((long)l < 0) |
| 6748 | l = 0; |
| 6749 | l /= 1024; |
| 6750 | if (l > 127) |
| 6751 | l = 127; |
| 6752 | |
| 6753 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 6754 | return l; |
| 6755 | } |
| 6756 | #endif |
| 6757 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6758 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6759 | { |
| 6760 | puts(set_cwd()); |
| 6761 | return EXIT_SUCCESS; |
| 6762 | } |
| 6763 | |
| 6764 | static int builtin_read(char **argv) |
| 6765 | { |
| 6766 | char *string; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6767 | const char *name = "REPLY"; |
| 6768 | |
| 6769 | if (argv[1]) { |
| 6770 | name = argv[1]; |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6771 | /* bash (3.2.33(1)) bug: "read 0abcd" will execute, |
| 6772 | * and _after_ that_ it will complain */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6773 | if (!is_well_formed_var_name(name, '\0')) { |
| 6774 | /* Mimic bash message */ |
| 6775 | bb_error_msg("read: '%s': not a valid identifier", name); |
| 6776 | return 1; |
| 6777 | } |
| 6778 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6779 | |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6780 | //TODO: bash unbackslashes input, splits words and puts them in argv[i] |
| 6781 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6782 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6783 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6784 | } |
| 6785 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6786 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 6787 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6788 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6789 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 6790 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6791 | * set -- [argument...] |
| 6792 | * set -o |
| 6793 | * set +o |
| 6794 | * Implementations shall support the options in both their hyphen and |
| 6795 | * plus-sign forms. These options can also be specified as options to sh. |
| 6796 | * Examples: |
| 6797 | * Write out all variables and their values: set |
| 6798 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 6799 | * Turn on the -x and -v options: set -xv |
| 6800 | * Unset all positional parameters: set -- |
| 6801 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 6802 | * Set the positional parameters to the expansion of x, even if x expands |
| 6803 | * with a leading '-' or '+': set -- $x |
| 6804 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6805 | * 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] | 6806 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6807 | static int builtin_set(char **argv) |
| 6808 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6809 | int n; |
| 6810 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6811 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6812 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6813 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6814 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6815 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6816 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6817 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6818 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6819 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6820 | do { |
| 6821 | if (!strcmp(arg, "--")) { |
| 6822 | ++argv; |
| 6823 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6824 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 6825 | if (arg[0] != '+' && arg[0] != '-') |
| 6826 | break; |
| 6827 | for (n = 1; arg[n]; ++n) |
| 6828 | if (set_mode(arg[0], arg[n])) |
| 6829 | goto error; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6830 | } while ((arg = *++argv) != NULL); |
| 6831 | /* Now argv[0] is 1st argument */ |
| 6832 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6833 | if (arg == NULL) |
| 6834 | return EXIT_SUCCESS; |
| 6835 | set_argv: |
| 6836 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6837 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 6838 | g_argv = G.global_argv; |
| 6839 | if (G.global_args_malloced) { |
| 6840 | pp = g_argv; |
| 6841 | while (*++pp) |
| 6842 | free(*pp); |
| 6843 | g_argv[1] = NULL; |
| 6844 | } else { |
| 6845 | G.global_args_malloced = 1; |
| 6846 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 6847 | pp[0] = g_argv[0]; /* retain $0 */ |
| 6848 | g_argv = pp; |
| 6849 | } |
| 6850 | /* This realloc's G.global_argv */ |
| 6851 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 6852 | |
| 6853 | n = 1; |
| 6854 | while (*++pp) |
| 6855 | n++; |
| 6856 | G.global_argc = n; |
| 6857 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6858 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6859 | |
| 6860 | /* Nothing known, so abort */ |
| 6861 | error: |
| 6862 | bb_error_msg("set: %s: invalid option", arg); |
| 6863 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6864 | } |
| 6865 | |
| 6866 | static int builtin_shift(char **argv) |
| 6867 | { |
| 6868 | int n = 1; |
| 6869 | if (argv[1]) { |
| 6870 | n = atoi(argv[1]); |
| 6871 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6872 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6873 | if (G.global_args_malloced) { |
| 6874 | int m = 1; |
| 6875 | while (m <= n) |
| 6876 | free(G.global_argv[m++]); |
| 6877 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6878 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6879 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 6880 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6881 | return EXIT_SUCCESS; |
| 6882 | } |
| 6883 | return EXIT_FAILURE; |
| 6884 | } |
| 6885 | |
| 6886 | static int builtin_source(char **argv) |
| 6887 | { |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6888 | const char *PATH; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6889 | FILE *input; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6890 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6891 | #if ENABLE_HUSH_FUNCTIONS |
| 6892 | smallint sv_flg; |
| 6893 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6894 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6895 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6896 | return EXIT_FAILURE; |
| 6897 | |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6898 | if (strchr(*argv, '/') == NULL |
| 6899 | && (PATH = get_local_var_value("PATH")) != NULL |
| 6900 | ) { |
| 6901 | /* Search through $PATH */ |
| 6902 | while (1) { |
| 6903 | const char *end = strchrnul(PATH, ':'); |
| 6904 | int sz = end - PATH; /* must be int! */ |
| 6905 | |
| 6906 | if (sz != 0) { |
| 6907 | char *tmp = xasprintf("%.*s/%s", sz, PATH, *argv); |
| 6908 | input = fopen_for_read(tmp); |
| 6909 | free(tmp); |
| 6910 | } else { |
| 6911 | /* We have xxx::yyyy in $PATH, |
| 6912 | * it means "use current dir" */ |
| 6913 | input = fopen_for_read(*argv); |
| 6914 | } |
| 6915 | if (input) |
| 6916 | goto opened_ok; |
| 6917 | if (*end == '\0') |
| 6918 | break; |
| 6919 | PATH = end + 1; |
| 6920 | } |
| 6921 | } |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6922 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6923 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6924 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6925 | return EXIT_FAILURE; |
| 6926 | } |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6927 | opened_ok: |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6928 | close_on_exec_on(fileno(input)); |
| 6929 | |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6930 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6931 | sv_flg = G.flag_return_in_progress; |
| 6932 | /* "we are inside sourced file, ok to use return" */ |
| 6933 | G.flag_return_in_progress = -1; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6934 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6935 | save_and_replace_G_args(&sv, argv); |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6936 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6937 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6938 | fclose(input); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6939 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6940 | restore_G_args(&sv, argv); |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6941 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6942 | G.flag_return_in_progress = sv_flg; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6943 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6944 | |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6945 | return G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6946 | } |
| 6947 | |
| 6948 | static int builtin_umask(char **argv) |
| 6949 | { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6950 | int rc; |
| 6951 | mode_t mask; |
| 6952 | |
| 6953 | mask = umask(0); |
| 6954 | if (argv[1]) { |
| 6955 | mode_t old_mask = mask; |
| 6956 | |
| 6957 | mask ^= 0777; |
| 6958 | rc = bb_parse_mode(argv[1], &mask); |
| 6959 | mask ^= 0777; |
| 6960 | if (rc == 0) { |
| 6961 | mask = old_mask; |
| 6962 | /* bash messages: |
| 6963 | * bash: umask: 'q': invalid symbolic mode operator |
| 6964 | * bash: umask: 999: octal number out of range |
| 6965 | */ |
| 6966 | bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6967 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6968 | } else { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6969 | rc = 1; |
| 6970 | /* Mimic bash */ |
| 6971 | printf("%04o\n", (unsigned) mask); |
| 6972 | /* fall through and restore mask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6973 | } |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6974 | umask(mask); |
| 6975 | |
| 6976 | return !rc; /* rc != 0 - success */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6977 | } |
| 6978 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6979 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6980 | static int builtin_unset(char **argv) |
| 6981 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6982 | int ret; |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6983 | unsigned opts; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6984 | |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6985 | /* "!": do not abort on errors */ |
| 6986 | /* "+": stop at 1st non-option */ |
| 6987 | opts = getopt32(argv, "!+vf"); |
| 6988 | if (opts == (unsigned)-1) |
| 6989 | return EXIT_FAILURE; |
| 6990 | if (opts == 3) { |
| 6991 | bb_error_msg("unset: -v and -f are exclusive"); |
| 6992 | return EXIT_FAILURE; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6993 | } |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6994 | argv += optind; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6995 | |
| 6996 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6997 | while (*argv) { |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6998 | if (!(opts & 2)) { /* not -f */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6999 | if (unset_local_var(*argv)) { |
| 7000 | /* unset <nonexistent_var> doesn't fail. |
| 7001 | * Error is when one tries to unset RO var. |
| 7002 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7003 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7004 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7005 | } |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 7006 | #if ENABLE_HUSH_FUNCTIONS |
| 7007 | else { |
| 7008 | unset_func(*argv); |
| 7009 | } |
| 7010 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7011 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7012 | } |
| 7013 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 7014 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7015 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7016 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 7017 | static int builtin_wait(char **argv) |
| 7018 | { |
| 7019 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7020 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7021 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7022 | if (*++argv == NULL) { |
| 7023 | /* Don't care about wait results */ |
| 7024 | /* Note 1: must wait until there are no more children */ |
| 7025 | /* Note 2: must be interruptible */ |
| 7026 | /* Examples: |
| 7027 | * $ sleep 3 & sleep 6 & wait |
| 7028 | * [1] 30934 sleep 3 |
| 7029 | * [2] 30935 sleep 6 |
| 7030 | * [1] Done sleep 3 |
| 7031 | * [2] Done sleep 6 |
| 7032 | * $ sleep 3 & sleep 6 & wait |
| 7033 | * [1] 30936 sleep 3 |
| 7034 | * [2] 30937 sleep 6 |
| 7035 | * [1] Done sleep 3 |
| 7036 | * ^C <-- after ~4 sec from keyboard |
| 7037 | * $ |
| 7038 | */ |
| 7039 | sigaddset(&G.blocked_set, SIGCHLD); |
| 7040 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 7041 | while (1) { |
| 7042 | checkjobs(NULL); |
| 7043 | if (errno == ECHILD) |
| 7044 | break; |
| 7045 | /* Wait for SIGCHLD or any other signal of interest */ |
| 7046 | /* sigtimedwait with infinite timeout: */ |
| 7047 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 7048 | if (sig > 0) { |
| 7049 | sig = check_and_run_traps(sig); |
| 7050 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 7051 | ret = 128 + sig; |
| 7052 | break; |
| 7053 | } |
| 7054 | } |
| 7055 | } |
| 7056 | sigdelset(&G.blocked_set, SIGCHLD); |
| 7057 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 7058 | return ret; |
| 7059 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7060 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7061 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7062 | while (*argv) { |
| 7063 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 7064 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7065 | /* mimic bash message */ |
| 7066 | 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] | 7067 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7068 | } |
| 7069 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7070 | if (WIFSIGNALED(status)) |
| 7071 | ret = 128 + WTERMSIG(status); |
| 7072 | else if (WIFEXITED(status)) |
| 7073 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7074 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7075 | ret = EXIT_FAILURE; |
| 7076 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7077 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7078 | ret = 127; |
| 7079 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7080 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7081 | } |
| 7082 | |
| 7083 | return ret; |
| 7084 | } |
| 7085 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7086 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 7087 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 7088 | { |
| 7089 | if (argv[1]) { |
| 7090 | def = bb_strtou(argv[1], NULL, 10); |
| 7091 | if (errno || def < def_min || argv[2]) { |
| 7092 | bb_error_msg("%s: bad arguments", argv[0]); |
| 7093 | def = UINT_MAX; |
| 7094 | } |
| 7095 | } |
| 7096 | return def; |
| 7097 | } |
| 7098 | #endif |
| 7099 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7100 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7101 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7102 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7103 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7104 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7105 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 7106 | return EXIT_SUCCESS; /* bash compat */ |
| 7107 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7108 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7109 | |
| 7110 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 7111 | if (depth == UINT_MAX) |
| 7112 | G.flag_break_continue = BC_BREAK; |
| 7113 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7114 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7115 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7116 | return EXIT_SUCCESS; |
| 7117 | } |
| 7118 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7119 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7120 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7121 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 7122 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7123 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7124 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7125 | |
| 7126 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 7b9e5c5 | 2009-04-17 23:53:15 +0000 | [diff] [blame] | 7127 | static int builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7128 | { |
| 7129 | int rc; |
| 7130 | |
| 7131 | if (G.flag_return_in_progress != -1) { |
| 7132 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 7133 | return EXIT_FAILURE; /* bash compat */ |
| 7134 | } |
| 7135 | |
| 7136 | G.flag_return_in_progress = 1; |
| 7137 | |
| 7138 | /* bash: |
| 7139 | * out of range: wraps around at 256, does not error out |
| 7140 | * non-numeric param: |
| 7141 | * f() { false; return qwe; }; f; echo $? |
| 7142 | * bash: return: qwe: numeric argument required <== we do this |
| 7143 | * 255 <== we also do this |
| 7144 | */ |
| 7145 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 7146 | return rc; |
| 7147 | } |
| 7148 | #endif |