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 |
| 100 | # undef USE_FEATURE_SH_STANDALONE |
| 101 | # define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 102 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
| 103 | # define USE_FEATURE_SH_STANDALONE(...) |
| 104 | # define SKIP_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 { |
| 420 | #if ENABLE_HUSH_INTERACTIVE |
| 421 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 422 | * _AND_ if we decided to act interactively */ |
| 423 | int interactive_fd; |
| 424 | const char *PS1; |
| 425 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 426 | #define G_interactive_fd (G.interactive_fd) |
| 427 | #else |
| 428 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 429 | #endif |
| 430 | #if ENABLE_FEATURE_EDITING |
| 431 | line_input_t *line_input_state; |
| 432 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 433 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 434 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 435 | #if ENABLE_HUSH_JOB |
| 436 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 437 | pid_t saved_tty_pgrp; |
| 438 | int last_jobid; |
| 439 | struct pipe *job_list; |
| 440 | struct pipe *toplevel_list; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 441 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 442 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 443 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 444 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 445 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 446 | #if ENABLE_HUSH_FUNCTIONS |
| 447 | /* 0: outside of a function (or sourced file) |
| 448 | * -1: inside of a function, ok to use return builtin |
| 449 | * 1: return is invoked, skip all till end of func. |
| 450 | */ |
| 451 | smallint flag_return_in_progress; |
| 452 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 453 | smallint fake_mode; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 454 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 455 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 456 | smalluint last_exitcode; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 457 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 458 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 459 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 460 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 461 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 462 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 463 | char *argv0_for_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 464 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 465 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 466 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 467 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 468 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 469 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 470 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 471 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 472 | struct variable shell_ver; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 473 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 474 | struct function *top_func; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 475 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 476 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 477 | // unsigned count_SIGCHLD; |
| 478 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 479 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 480 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 481 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 482 | sigset_t blocked_set; |
| 483 | sigset_t inherited_set; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 484 | #if HUSH_DEBUG |
| 485 | unsigned long memleak_value; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 486 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 487 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 488 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 489 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 490 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 491 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 492 | * (too many defines). Also, I actually prefer to see when a variable |
| 493 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 494 | #define INIT_G() do { \ |
| 495 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 496 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 497 | |
| 498 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 499 | /* Function prototypes for builtins */ |
| 500 | static int builtin_cd(char **argv); |
| 501 | static int builtin_echo(char **argv); |
| 502 | static int builtin_eval(char **argv); |
| 503 | static int builtin_exec(char **argv); |
| 504 | static int builtin_exit(char **argv); |
| 505 | static int builtin_export(char **argv); |
| 506 | #if ENABLE_HUSH_JOB |
| 507 | static int builtin_fg_bg(char **argv); |
| 508 | static int builtin_jobs(char **argv); |
| 509 | #endif |
| 510 | #if ENABLE_HUSH_HELP |
| 511 | static int builtin_help(char **argv); |
| 512 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 513 | #if HUSH_DEBUG |
| 514 | static int builtin_memleak(char **argv); |
| 515 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 516 | static int builtin_pwd(char **argv); |
| 517 | static int builtin_read(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 518 | static int builtin_set(char **argv); |
| 519 | static int builtin_shift(char **argv); |
| 520 | static int builtin_source(char **argv); |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 521 | static int builtin_test(char **argv); |
| 522 | static int builtin_trap(char **argv); |
| 523 | static int builtin_true(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 524 | static int builtin_umask(char **argv); |
| 525 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 526 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 527 | #if ENABLE_HUSH_LOOPS |
| 528 | static int builtin_break(char **argv); |
| 529 | static int builtin_continue(char **argv); |
| 530 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 531 | #if ENABLE_HUSH_FUNCTIONS |
| 532 | static int builtin_return(char **argv); |
| 533 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 534 | |
| 535 | /* Table of built-in functions. They can be forked or not, depending on |
| 536 | * context: within pipes, they fork. As simple commands, they do not. |
| 537 | * When used in non-forking context, they can change global variables |
| 538 | * in the parent shell process. If forked, of course they cannot. |
| 539 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 540 | * still be set at the end. */ |
| 541 | struct built_in_command { |
| 542 | const char *cmd; |
| 543 | int (*function)(char **argv); |
| 544 | #if ENABLE_HUSH_HELP |
| 545 | const char *descr; |
| 546 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 547 | #else |
| 548 | #define BLTIN(cmd, func, help) { cmd, func } |
| 549 | #endif |
| 550 | }; |
| 551 | |
| 552 | /* For now, echo and test are unconditionally enabled. |
| 553 | * Maybe make it configurable? */ |
| 554 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 555 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 556 | BLTIN(":" , builtin_true , "No-op"), |
| 557 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 558 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 559 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 560 | #endif |
| 561 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 562 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 563 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 564 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 565 | #if ENABLE_HUSH_LOOPS |
| 566 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 567 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 568 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 569 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 570 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 571 | BLTIN("exit" , builtin_exit , "Exit"), |
| 572 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 573 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 574 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 575 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 576 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 577 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 578 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 579 | #if ENABLE_HUSH_JOB |
| 580 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 581 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 582 | #if HUSH_DEBUG |
| 583 | BLTIN("memleak" , builtin_memleak , "Debug tool"), |
| 584 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 585 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 586 | BLTIN("read" , builtin_read , "Input environment variable"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 587 | #if ENABLE_HUSH_FUNCTIONS |
| 588 | BLTIN("return" , builtin_return , "Return from a function"), |
| 589 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 590 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 591 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 592 | BLTIN("test" , builtin_test , "Test condition"), |
| 593 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 594 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 595 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 596 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 597 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 598 | }; |
| 599 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 600 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 601 | /* Debug printouts. |
| 602 | */ |
| 603 | #if HUSH_DEBUG |
| 604 | /* prevent disasters with G.debug_indent < 0 */ |
| 605 | # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "") |
| 606 | # define debug_enter() (G.debug_indent++) |
| 607 | # define debug_leave() (G.debug_indent--) |
| 608 | #else |
| 609 | # define indent() ((void)0) |
| 610 | # define debug_enter() ((void)0) |
| 611 | # define debug_leave() ((void)0) |
| 612 | #endif |
| 613 | |
| 614 | #ifndef debug_printf |
| 615 | # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 616 | #endif |
| 617 | |
| 618 | #ifndef debug_printf_parse |
| 619 | # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 620 | #endif |
| 621 | |
| 622 | #ifndef debug_printf_exec |
| 623 | #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 624 | #endif |
| 625 | |
| 626 | #ifndef debug_printf_env |
| 627 | # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 628 | #endif |
| 629 | |
| 630 | #ifndef debug_printf_jobs |
| 631 | # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 632 | # define DEBUG_JOBS 1 |
| 633 | #else |
| 634 | # define DEBUG_JOBS 0 |
| 635 | #endif |
| 636 | |
| 637 | #ifndef debug_printf_expand |
| 638 | # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 639 | # define DEBUG_EXPAND 1 |
| 640 | #else |
| 641 | # define DEBUG_EXPAND 0 |
| 642 | #endif |
| 643 | |
| 644 | #ifndef debug_printf_glob |
| 645 | # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 646 | # define DEBUG_GLOB 1 |
| 647 | #else |
| 648 | # define DEBUG_GLOB 0 |
| 649 | #endif |
| 650 | |
| 651 | #ifndef debug_printf_list |
| 652 | # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 653 | #endif |
| 654 | |
| 655 | #ifndef debug_printf_subst |
| 656 | # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 657 | #endif |
| 658 | |
| 659 | #ifndef debug_printf_clean |
| 660 | # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 661 | # define DEBUG_CLEAN 1 |
| 662 | #else |
| 663 | # define DEBUG_CLEAN 0 |
| 664 | #endif |
| 665 | |
| 666 | #if DEBUG_EXPAND |
| 667 | static void debug_print_strings(const char *prefix, char **vv) |
| 668 | { |
| 669 | indent(); |
| 670 | fprintf(stderr, "%s:\n", prefix); |
| 671 | while (*vv) |
| 672 | fprintf(stderr, " '%s'\n", *vv++); |
| 673 | } |
| 674 | #else |
| 675 | #define debug_print_strings(prefix, vv) ((void)0) |
| 676 | #endif |
| 677 | |
| 678 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 679 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 680 | */ |
| 681 | #if LEAK_HUNTING |
| 682 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 683 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 684 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 685 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 686 | return ptr; |
| 687 | } |
| 688 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 689 | { |
| 690 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 691 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 692 | return ptr; |
| 693 | } |
| 694 | static char *xxstrdup(int lineno, const char *str) |
| 695 | { |
| 696 | char *ptr = xstrdup(str); |
| 697 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 698 | return ptr; |
| 699 | } |
| 700 | static void xxfree(void *ptr) |
| 701 | { |
| 702 | fdprintf(2, "free %p\n", ptr); |
| 703 | free(ptr); |
| 704 | } |
| 705 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 706 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 707 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 708 | #define free(p) xxfree(p) |
| 709 | #endif |
| 710 | |
| 711 | |
| 712 | /* Syntax and runtime errors. They always abort scripts. |
| 713 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 714 | * and return to the prompt. |
| 715 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 716 | */ |
| 717 | #if HUSH_DEBUG < 2 |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 718 | # define die_if_script(lineno, fmt...) die_if_script(fmt) |
| 719 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 720 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 721 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 722 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 723 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 724 | #endif |
| 725 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 726 | static void die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 727 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 728 | va_list p; |
| 729 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 730 | #if HUSH_DEBUG >= 2 |
| 731 | bb_error_msg("hush.c:%u", lineno); |
| 732 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 733 | va_start(p, fmt); |
| 734 | bb_verror_msg(fmt, p, NULL); |
| 735 | va_end(p); |
| 736 | if (!G_interactive_fd) |
| 737 | xfunc_die(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 738 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 739 | |
| 740 | static void syntax_error(unsigned lineno, const char *msg) |
| 741 | { |
| 742 | if (msg) |
| 743 | die_if_script(lineno, "syntax error: %s", msg); |
| 744 | else |
| 745 | die_if_script(lineno, "syntax error", NULL); |
| 746 | } |
| 747 | |
| 748 | static void syntax_error_at(unsigned lineno, const char *msg) |
| 749 | { |
| 750 | die_if_script(lineno, "syntax error at '%s'", msg); |
| 751 | } |
| 752 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 753 | /* It so happens that all such cases are totally fatal |
| 754 | * even if shell is interactive: EOF while looking for closing |
| 755 | * delimiter. There is nowhere to read stuff from after that, |
| 756 | * it's EOF! The only choice is to terminate. |
| 757 | */ |
| 758 | static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 759 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 760 | { |
| 761 | char msg[2]; |
| 762 | msg[0] = ch; |
| 763 | msg[1] = '\0'; |
| 764 | die_if_script(lineno, "syntax error: unterminated %s", msg); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 765 | xfunc_die(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 768 | static void syntax_error_unterm_str(unsigned lineno, const char *s) |
| 769 | { |
| 770 | die_if_script(lineno, "syntax error: unterminated %s", s); |
| 771 | } |
| 772 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 773 | static void syntax_error_unexpected_ch(unsigned lineno, char ch) |
| 774 | { |
| 775 | char msg[2]; |
| 776 | msg[0] = ch; |
| 777 | msg[1] = '\0'; |
| 778 | die_if_script(lineno, "syntax error: unexpected %s", msg); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 779 | } |
| 780 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 781 | #if HUSH_DEBUG < 2 |
| 782 | # undef die_if_script |
| 783 | # undef syntax_error |
| 784 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 785 | # undef syntax_error_unterm_ch |
| 786 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 787 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 788 | #else |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 789 | # define die_if_script(fmt...) die_if_script(__LINE__, fmt) |
| 790 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 791 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 792 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 793 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 794 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 795 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 796 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 797 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 798 | /* Utility functions |
| 799 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 800 | static int glob_needed(const char *s) |
| 801 | { |
| 802 | while (*s) { |
| 803 | if (*s == '\\') |
| 804 | s++; |
| 805 | if (*s == '*' || *s == '[' || *s == '?') |
| 806 | return 1; |
| 807 | s++; |
| 808 | } |
| 809 | return 0; |
| 810 | } |
| 811 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 812 | static int is_well_formed_var_name(const char *s, char terminator) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 813 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 814 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 815 | return 0; |
| 816 | s++; |
| 817 | while (isalnum(*s) || *s == '_') |
| 818 | s++; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 819 | return *s == terminator; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 822 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 823 | static char *unbackslash(char *src) |
| 824 | { |
| 825 | char *dst = src; |
| 826 | while (1) { |
| 827 | if (*src == '\\') |
| 828 | src++; |
| 829 | if ((*dst++ = *src++) == '\0') |
| 830 | break; |
| 831 | } |
| 832 | return dst; |
| 833 | } |
| 834 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 835 | 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] | 836 | { |
| 837 | int i; |
| 838 | unsigned count1; |
| 839 | unsigned count2; |
| 840 | char **v; |
| 841 | |
| 842 | v = strings; |
| 843 | count1 = 0; |
| 844 | if (v) { |
| 845 | while (*v) { |
| 846 | count1++; |
| 847 | v++; |
| 848 | } |
| 849 | } |
| 850 | count2 = 0; |
| 851 | v = add; |
| 852 | while (*v) { |
| 853 | count2++; |
| 854 | v++; |
| 855 | } |
| 856 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 857 | v[count1 + count2] = NULL; |
| 858 | i = count2; |
| 859 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 860 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 861 | return v; |
| 862 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 863 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 864 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 865 | { |
| 866 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 867 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 868 | return ptr; |
| 869 | } |
| 870 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 871 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 872 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 873 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 874 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 875 | { |
| 876 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 877 | v[0] = add; |
| 878 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 879 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 880 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 881 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 882 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 883 | { |
| 884 | char **ptr = add_string_to_strings(strings, add); |
| 885 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 886 | return ptr; |
| 887 | } |
| 888 | #define add_string_to_strings(strings, add) \ |
| 889 | xx_add_string_to_strings(__LINE__, strings, add) |
| 890 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 891 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 892 | static void putenv_all(char **strings) |
| 893 | { |
| 894 | if (!strings) |
| 895 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 896 | while (*strings) { |
| 897 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 898 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 899 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | static char **putenv_all_and_save_old(char **strings) |
| 903 | { |
| 904 | char **old = NULL; |
| 905 | char **s = strings; |
| 906 | |
| 907 | if (!strings) |
| 908 | return old; |
| 909 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 910 | char *v, *eq; |
| 911 | |
| 912 | eq = strchr(*strings, '='); |
| 913 | if (eq) { |
| 914 | *eq = '\0'; |
| 915 | v = getenv(*strings); |
| 916 | *eq = '='; |
| 917 | if (v) { |
| 918 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 919 | v -= (eq - *strings) + 1; |
| 920 | old = add_string_to_strings(old, v); |
| 921 | } |
| 922 | } |
| 923 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 924 | } |
| 925 | putenv_all(s); |
| 926 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 927 | } |
| 928 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 929 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 930 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 931 | char **v; |
| 932 | |
| 933 | if (!strings) |
| 934 | return; |
| 935 | |
| 936 | v = strings; |
| 937 | while (*v) { |
| 938 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 939 | debug_printf_env("unsetenv '%s'\n", *v); |
| 940 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 941 | } |
| 942 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 943 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 944 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 947 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 948 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 949 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 950 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 951 | |
| 952 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 953 | /* Helpers for setting new $n and restoring them back |
| 954 | */ |
| 955 | typedef struct save_arg_t { |
| 956 | char *sv_argv0; |
| 957 | char **sv_g_argv; |
| 958 | int sv_g_argc; |
| 959 | smallint sv_g_malloced; |
| 960 | } save_arg_t; |
| 961 | |
| 962 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 963 | { |
| 964 | int n; |
| 965 | |
| 966 | sv->sv_argv0 = argv[0]; |
| 967 | sv->sv_g_argv = G.global_argv; |
| 968 | sv->sv_g_argc = G.global_argc; |
| 969 | sv->sv_g_malloced = G.global_args_malloced; |
| 970 | |
| 971 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 972 | G.global_argv = argv; |
| 973 | G.global_args_malloced = 0; |
| 974 | |
| 975 | n = 1; |
| 976 | while (*++argv) |
| 977 | n++; |
| 978 | G.global_argc = n; |
| 979 | } |
| 980 | |
| 981 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 982 | { |
| 983 | char **pp; |
| 984 | |
| 985 | if (G.global_args_malloced) { |
| 986 | /* someone ran "set -- arg1 arg2 ...", undo */ |
| 987 | pp = G.global_argv; |
| 988 | while (*++pp) /* note: does not free $0 */ |
| 989 | free(*pp); |
| 990 | free(G.global_argv); |
| 991 | } |
| 992 | argv[0] = sv->sv_argv0; |
| 993 | G.global_argv = sv->sv_g_argv; |
| 994 | G.global_argc = sv->sv_g_argc; |
| 995 | G.global_args_malloced = sv->sv_g_malloced; |
| 996 | } |
| 997 | |
| 998 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 999 | /* Basic theory of signal handling in shell |
| 1000 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1001 | * This does not describe what hush does, rather, it is current understanding |
| 1002 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1003 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 1004 | * |
| 1005 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 1006 | * is finished or backgrounded. It is the same in interactive and |
| 1007 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1008 | * 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] | 1009 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 1010 | * backgrounds (i.e. stops) or kills all members of currently running |
| 1011 | * pipe. |
| 1012 | * |
| 1013 | * Wait builtin in interruptible by signals for which user trap is set |
| 1014 | * or by SIGINT in interactive shell. |
| 1015 | * |
| 1016 | * Trap handlers will execute even within trap handlers. (right?) |
| 1017 | * |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1018 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1019 | * |
| 1020 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1021 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1022 | * |
| 1023 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1024 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1025 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1026 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 1027 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1028 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1029 | * Siganls which differ from SIG_DFL action |
| 1030 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1031 | * |
| 1032 | * SIGQUIT: ignore |
| 1033 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1034 | * SIGHUP (interactive): |
| 1035 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1036 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1037 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1038 | * that all pipe members are stopped. Try this in bash: |
| 1039 | * while :; do :; done - ^Z does not background it |
| 1040 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1041 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1042 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1043 | * to interactive shell while shell is waiting for a pipe, |
| 1044 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1045 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1046 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1047 | * Example 2: this does not wait and does not execute ls: |
| 1048 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1049 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1050 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1051 | * |
| 1052 | * (What happens to signals which are IGN on shell start?) |
| 1053 | * (What happens with signal mask on shell start?) |
| 1054 | * |
| 1055 | * Implementation in hush |
| 1056 | * ====================== |
| 1057 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1058 | * We block all signals which we don't want to take action immediately, |
| 1059 | * i.e. we block all signals which need to have special handling as described |
| 1060 | * above, and all signals which have traps set. |
| 1061 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1062 | * and act on them. |
| 1063 | * |
| 1064 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 1065 | * sigset_t blocked_set: current blocked signal set |
| 1066 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1067 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1068 | * 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] | 1069 | * "trap 'cmd' SIGxxx": |
| 1070 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1071 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1072 | * unblock signals with special interactive handling |
| 1073 | * (child shell is not interactive), |
| 1074 | * unset all traps (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1075 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1076 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 1077 | * 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] | 1078 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1079 | * Note: as a result, we do not use signal handlers much. The only uses |
| 1080 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 1081 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1082 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1083 | enum { |
| 1084 | SPECIAL_INTERACTIVE_SIGS = 0 |
| 1085 | #if ENABLE_HUSH_JOB |
| 1086 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1087 | | (1 << SIGHUP) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1088 | #endif |
| 1089 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1090 | | (1 << SIGINT) |
| 1091 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1092 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1093 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 1094 | //{ |
| 1095 | // G.count_SIGCHLD++; |
| 1096 | //} |
| 1097 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 1098 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1099 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1100 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
| 1101 | #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1102 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1103 | #define enable_restore_tty_pgrp_on_exit() (die_sleep = -1) |
| 1104 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1105 | /* Restores tty foreground process group, and exits. |
| 1106 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1107 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1108 | * or called directly with -EXITCODE. |
| 1109 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1110 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1111 | static void sigexit(int sig) |
| 1112 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1113 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 1114 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1115 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1116 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1117 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1118 | if (G_interactive_fd && getpid() == G.root_pid) |
| 1119 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1120 | |
| 1121 | /* Not a signal, just exit */ |
| 1122 | if (sig <= 0) |
| 1123 | _exit(- sig); |
| 1124 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1125 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1126 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1127 | #else |
| 1128 | |
| 1129 | #define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1130 | #define enable_restore_tty_pgrp_on_exit() ((void)0) |
| 1131 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1132 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1133 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1134 | /* Restores tty foreground process group, and exits. */ |
| 1135 | static void hush_exit(int exitcode) NORETURN; |
| 1136 | static void hush_exit(int exitcode) |
| 1137 | { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1138 | if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) { |
| 1139 | /* Prevent recursion: |
| 1140 | * trap "echo Hi; exit" EXIT; exit |
| 1141 | */ |
| 1142 | char *argv[] = { NULL, G.traps[0], NULL }; |
| 1143 | G.traps[0] = NULL; |
| 1144 | G.exiting = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1145 | builtin_eval(argv); |
| 1146 | free(argv[1]); |
| 1147 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1148 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1149 | #if ENABLE_HUSH_JOB |
| 1150 | fflush(NULL); /* flush all streams */ |
| 1151 | sigexit(- (exitcode & 0xff)); |
| 1152 | #else |
| 1153 | exit(exitcode); |
| 1154 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1155 | } |
| 1156 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1157 | static int check_and_run_traps(int sig) |
| 1158 | { |
| 1159 | static const struct timespec zero_timespec = { 0, 0 }; |
| 1160 | smalluint save_rcode; |
| 1161 | int last_sig = 0; |
| 1162 | |
| 1163 | if (sig) |
| 1164 | goto jump_in; |
| 1165 | while (1) { |
| 1166 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
| 1167 | if (sig <= 0) |
| 1168 | break; |
| 1169 | jump_in: |
| 1170 | last_sig = sig; |
| 1171 | if (G.traps && G.traps[sig]) { |
| 1172 | if (G.traps[sig][0]) { |
| 1173 | /* We have user-defined handler */ |
| 1174 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 1175 | save_rcode = G.last_exitcode; |
| 1176 | builtin_eval(argv); |
| 1177 | free(argv[1]); |
| 1178 | G.last_exitcode = save_rcode; |
| 1179 | } /* else: "" trap, ignoring signal */ |
| 1180 | continue; |
| 1181 | } |
| 1182 | /* not a trap: special action */ |
| 1183 | switch (sig) { |
| 1184 | // case SIGCHLD: |
| 1185 | // G.count_SIGCHLD++; |
| 1186 | // break; |
| 1187 | case SIGINT: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1188 | /* Builtin was ^C'ed, make it look prettier: */ |
| 1189 | bb_putchar('\n'); |
| 1190 | G.flag_SIGINT = 1; |
| 1191 | break; |
| 1192 | #if ENABLE_HUSH_JOB |
| 1193 | case SIGHUP: { |
| 1194 | struct pipe *job; |
| 1195 | /* bash is observed to signal whole process groups, |
| 1196 | * not individual processes */ |
| 1197 | for (job = G.job_list; job; job = job->next) { |
| 1198 | if (job->pgrp <= 0) |
| 1199 | continue; |
| 1200 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 1201 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 1202 | kill(- job->pgrp, SIGCONT); |
| 1203 | } |
| 1204 | sigexit(SIGHUP); |
| 1205 | } |
| 1206 | #endif |
| 1207 | default: /* ignored: */ |
| 1208 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
| 1209 | break; |
| 1210 | } |
| 1211 | } |
| 1212 | return last_sig; |
| 1213 | } |
| 1214 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1215 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1216 | static const char *set_cwd(void) |
| 1217 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1218 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1219 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1220 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1221 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1222 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1223 | if (!G.cwd) |
| 1224 | G.cwd = bb_msg_unknown; |
| 1225 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1228 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1229 | /* Get/check local shell variables */ |
| 1230 | static struct variable *get_local_var(const char *name) |
| 1231 | { |
| 1232 | struct variable *cur; |
| 1233 | int len; |
| 1234 | |
| 1235 | if (!name) |
| 1236 | return NULL; |
| 1237 | len = strlen(name); |
| 1238 | for (cur = G.top_var; cur; cur = cur->next) { |
| 1239 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 1240 | return cur; |
| 1241 | } |
| 1242 | return NULL; |
| 1243 | } |
| 1244 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1245 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1246 | { |
| 1247 | struct variable *var = get_local_var(src); |
| 1248 | if (var) |
| 1249 | return strchr(var->varstr, '=') + 1; |
| 1250 | return NULL; |
| 1251 | } |
| 1252 | |
| 1253 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1254 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1255 | * flg_export: |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 1256 | * 0: do not change export flag |
| 1257 | * (if creating new variable, flag will be 0) |
| 1258 | * 1: set export flag and putenv the variable |
| 1259 | * -1: clear export flag and unsetenv the variable |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1260 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1261 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1262 | #if BB_MMU |
| 1263 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1264 | set_local_var(str, flg_export) |
| 1265 | #endif |
| 1266 | 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] | 1267 | { |
| 1268 | struct variable *cur; |
| 1269 | char *value; |
| 1270 | int name_len; |
| 1271 | |
| 1272 | value = strchr(str, '='); |
| 1273 | if (!value) { /* not expected to ever happen? */ |
| 1274 | free(str); |
| 1275 | return -1; |
| 1276 | } |
| 1277 | |
| 1278 | name_len = value - str + 1; /* including '=' */ |
| 1279 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1280 | while (1) { |
| 1281 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1282 | if (!cur->next) { |
| 1283 | /* Bail out. Note that now cur points |
| 1284 | * to last var in linked list */ |
| 1285 | break; |
| 1286 | } |
| 1287 | cur = cur->next; |
| 1288 | continue; |
| 1289 | } |
| 1290 | /* We found an existing var with this name */ |
| 1291 | *value = '\0'; |
| 1292 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1293 | #if !BB_MMU |
| 1294 | if (!flg_read_only) |
| 1295 | #endif |
| 1296 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1297 | free(str); |
| 1298 | return -1; |
| 1299 | } |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 1300 | //TODO: optimize out redundant unsetenv/putenv's? |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1301 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1302 | unsetenv(str); /* just in case */ |
| 1303 | *value = '='; |
| 1304 | if (strcmp(cur->varstr, str) == 0) { |
| 1305 | free_and_exp: |
| 1306 | free(str); |
| 1307 | goto exp; |
| 1308 | } |
| 1309 | if (cur->max_len >= strlen(str)) { |
| 1310 | /* This one is from startup env, reuse space */ |
| 1311 | strcpy(cur->varstr, str); |
| 1312 | goto free_and_exp; |
| 1313 | } |
| 1314 | /* max_len == 0 signifies "malloced" var, which we can |
| 1315 | * (and has to) free */ |
| 1316 | if (!cur->max_len) |
| 1317 | free(cur->varstr); |
| 1318 | cur->max_len = 0; |
| 1319 | goto set_str_and_exp; |
| 1320 | } |
| 1321 | |
| 1322 | /* Not found - create next variable struct */ |
| 1323 | cur->next = xzalloc(sizeof(*cur)); |
| 1324 | cur = cur->next; |
| 1325 | |
| 1326 | set_str_and_exp: |
| 1327 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1328 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1329 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1330 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1331 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1332 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1333 | cur->flg_export = 1; |
| 1334 | if (cur->flg_export) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 1335 | if (flg_export == -1) { |
| 1336 | cur->flg_export = 0; |
| 1337 | /* unsetenv was already done */ |
| 1338 | } else { |
| 1339 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1340 | return putenv(cur->varstr); |
| 1341 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1342 | } |
| 1343 | return 0; |
| 1344 | } |
| 1345 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1346 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1347 | { |
| 1348 | struct variable *cur; |
| 1349 | struct variable *prev = prev; /* for gcc */ |
| 1350 | int name_len; |
| 1351 | |
| 1352 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1353 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1354 | name_len = strlen(name); |
| 1355 | cur = G.top_var; |
| 1356 | while (cur) { |
| 1357 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1358 | if (cur->flg_read_only) { |
| 1359 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1360 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1361 | } |
| 1362 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1363 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1364 | prev->next = cur->next; |
| 1365 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1366 | bb_unsetenv(cur->varstr); |
| 1367 | if (!cur->max_len) |
| 1368 | free(cur->varstr); |
| 1369 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1370 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1371 | } |
| 1372 | prev = cur; |
| 1373 | cur = cur->next; |
| 1374 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1375 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1378 | #if ENABLE_SH_MATH_SUPPORT |
| 1379 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1380 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1381 | static char *endofname(const char *name) |
| 1382 | { |
| 1383 | char *p; |
| 1384 | |
| 1385 | p = (char *) name; |
| 1386 | if (!is_name(*p)) |
| 1387 | return p; |
| 1388 | while (*++p) { |
| 1389 | if (!is_in_name(*p)) |
| 1390 | break; |
| 1391 | } |
| 1392 | return p; |
| 1393 | } |
| 1394 | |
| 1395 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1396 | { |
| 1397 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1398 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1399 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1400 | } |
| 1401 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1402 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1403 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1404 | /* |
| 1405 | * in_str support |
| 1406 | */ |
| 1407 | static int static_get(struct in_str *i) |
| 1408 | { |
| 1409 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1410 | if (ch != '\0') |
| 1411 | return ch; |
| 1412 | i->p--; |
| 1413 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | static int static_peek(struct in_str *i) |
| 1417 | { |
| 1418 | return *i->p; |
| 1419 | } |
| 1420 | |
| 1421 | #if ENABLE_HUSH_INTERACTIVE |
| 1422 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1423 | static void cmdedit_set_initial_prompt(void) |
| 1424 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1425 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1426 | G.PS1 = getenv("PS1"); |
| 1427 | if (G.PS1 == NULL) |
| 1428 | G.PS1 = "\\w \\$ "; |
| 1429 | } else |
| 1430 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1431 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1432 | |
| 1433 | static const char* setup_prompt_string(int promptmode) |
| 1434 | { |
| 1435 | const char *prompt_str; |
| 1436 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1437 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1438 | /* Set up the prompt */ |
| 1439 | if (promptmode == 0) { /* PS1 */ |
| 1440 | free((char*)G.PS1); |
| 1441 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1442 | prompt_str = G.PS1; |
| 1443 | } else |
| 1444 | prompt_str = G.PS2; |
| 1445 | } else |
| 1446 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1447 | debug_printf("result '%s'\n", prompt_str); |
| 1448 | return prompt_str; |
| 1449 | } |
| 1450 | |
| 1451 | static void get_user_input(struct in_str *i) |
| 1452 | { |
| 1453 | int r; |
| 1454 | const char *prompt_str; |
| 1455 | |
| 1456 | prompt_str = setup_prompt_string(i->promptmode); |
| 1457 | #if ENABLE_FEATURE_EDITING |
| 1458 | /* Enable command line editing only while a command line |
| 1459 | * is actually being read */ |
| 1460 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1461 | G.flag_SIGINT = 0; |
| 1462 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1463 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1464 | 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] | 1465 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1466 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1467 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1468 | i->eof_flag = (r < 0); |
| 1469 | if (i->eof_flag) { /* EOF/error detected */ |
| 1470 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1471 | G.user_input_buf[1] = '\0'; |
| 1472 | } |
| 1473 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1474 | do { |
| 1475 | G.flag_SIGINT = 0; |
| 1476 | fputs(prompt_str, stdout); |
| 1477 | fflush(stdout); |
| 1478 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1479 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1480 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1481 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1482 | i->eof_flag = (r == EOF); |
| 1483 | #endif |
| 1484 | i->p = G.user_input_buf; |
| 1485 | } |
| 1486 | |
| 1487 | #endif /* INTERACTIVE */ |
| 1488 | |
| 1489 | /* This is the magic location that prints prompts |
| 1490 | * and gets data back from the user */ |
| 1491 | static int file_get(struct in_str *i) |
| 1492 | { |
| 1493 | int ch; |
| 1494 | |
| 1495 | /* If there is data waiting, eat it up */ |
| 1496 | if (i->p && *i->p) { |
| 1497 | #if ENABLE_HUSH_INTERACTIVE |
| 1498 | take_cached: |
| 1499 | #endif |
| 1500 | ch = *i->p++; |
| 1501 | if (i->eof_flag && !*i->p) |
| 1502 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1503 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1504 | } else { |
| 1505 | /* need to double check i->file because we might be doing something |
| 1506 | * more complicated by now, like sourcing or substituting. */ |
| 1507 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1508 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1509 | do { |
| 1510 | get_user_input(i); |
| 1511 | } while (!*i->p); /* need non-empty line */ |
| 1512 | i->promptmode = 1; /* PS2 */ |
| 1513 | i->promptme = 0; |
| 1514 | goto take_cached; |
| 1515 | } |
| 1516 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1517 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1518 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1519 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1520 | #if ENABLE_HUSH_INTERACTIVE |
| 1521 | if (ch == '\n') |
| 1522 | i->promptme = 1; |
| 1523 | #endif |
| 1524 | return ch; |
| 1525 | } |
| 1526 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1527 | /* All callers guarantee this routine will never |
| 1528 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1529 | */ |
| 1530 | static int file_peek(struct in_str *i) |
| 1531 | { |
| 1532 | int ch; |
| 1533 | if (i->p && *i->p) { |
| 1534 | if (i->eof_flag && !i->p[1]) |
| 1535 | return EOF; |
| 1536 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1537 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1538 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1539 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1540 | i->eof_flag = (ch == EOF); |
| 1541 | i->peek_buf[0] = ch; |
| 1542 | i->peek_buf[1] = '\0'; |
| 1543 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1544 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1545 | return ch; |
| 1546 | } |
| 1547 | |
| 1548 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1549 | { |
| 1550 | i->peek = file_peek; |
| 1551 | i->get = file_get; |
| 1552 | #if ENABLE_HUSH_INTERACTIVE |
| 1553 | i->promptme = 1; |
| 1554 | i->promptmode = 0; /* PS1 */ |
| 1555 | #endif |
| 1556 | i->file = f; |
| 1557 | i->p = NULL; |
| 1558 | } |
| 1559 | |
| 1560 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1561 | { |
| 1562 | i->peek = static_peek; |
| 1563 | i->get = static_get; |
| 1564 | #if ENABLE_HUSH_INTERACTIVE |
| 1565 | i->promptme = 1; |
| 1566 | i->promptmode = 0; /* PS1 */ |
| 1567 | #endif |
| 1568 | i->p = s; |
| 1569 | i->eof_flag = 0; |
| 1570 | } |
| 1571 | |
| 1572 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1573 | /* |
| 1574 | * o_string support |
| 1575 | */ |
| 1576 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1577 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 1578 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1579 | { |
| 1580 | o->length = 0; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1581 | o->o_quoted = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1582 | if (o->data) |
| 1583 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1584 | } |
| 1585 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1586 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1587 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1588 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1589 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1590 | } |
| 1591 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1592 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1593 | { |
| 1594 | free(o->data); |
| 1595 | } |
| 1596 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1597 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1598 | { |
| 1599 | if (o->length + len > o->maxlen) { |
| 1600 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1601 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1602 | } |
| 1603 | } |
| 1604 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1605 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1606 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1607 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1608 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1609 | o->data[o->length] = ch; |
| 1610 | o->length++; |
| 1611 | o->data[o->length] = '\0'; |
| 1612 | } |
| 1613 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1614 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1615 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1616 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1617 | memcpy(&o->data[o->length], str, len); |
| 1618 | o->length += len; |
| 1619 | o->data[o->length] = '\0'; |
| 1620 | } |
| 1621 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1622 | #if !BB_MMU |
| 1623 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1624 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1625 | o_addblock(o, str, strlen(str)); |
| 1626 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1627 | static void nommu_addchr(o_string *o, int ch) |
| 1628 | { |
| 1629 | if (o) |
| 1630 | o_addchr(o, ch); |
| 1631 | } |
| 1632 | #else |
| 1633 | #define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1634 | #endif |
| 1635 | |
| 1636 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1637 | { |
| 1638 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1639 | } |
| 1640 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1641 | 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] | 1642 | { |
| 1643 | while (len) { |
| 1644 | o_addchr(o, *str); |
| 1645 | if (*str++ == '\\' |
| 1646 | && (*str != '*' && *str != '?' && *str != '[') |
| 1647 | ) { |
| 1648 | o_addchr(o, '\\'); |
| 1649 | } |
| 1650 | len--; |
| 1651 | } |
| 1652 | } |
| 1653 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1654 | /* My analysis of quoting semantics tells me that state information |
| 1655 | * is associated with a destination, not a source. |
| 1656 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1657 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1658 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1659 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1660 | char *found = strchr("*?[\\", ch); |
| 1661 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1662 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1663 | o_grow_by(o, sz); |
| 1664 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1665 | o->data[o->length] = '\\'; |
| 1666 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1667 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1668 | o->data[o->length] = ch; |
| 1669 | o->length++; |
| 1670 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1673 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1674 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1675 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1676 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1677 | sz++; |
| 1678 | o->data[o->length] = '\\'; |
| 1679 | o->length++; |
| 1680 | } |
| 1681 | o_grow_by(o, sz); |
| 1682 | o->data[o->length] = ch; |
| 1683 | o->length++; |
| 1684 | o->data[o->length] = '\0'; |
| 1685 | } |
| 1686 | |
| 1687 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1688 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1689 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1690 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1691 | return; |
| 1692 | } |
| 1693 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1694 | char ch; |
| 1695 | int sz; |
| 1696 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1697 | if (ordinary_cnt > len) /* paranoia */ |
| 1698 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1699 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1700 | if (ordinary_cnt == len) |
| 1701 | return; |
| 1702 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1703 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1704 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1705 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1706 | sz = 1; |
| 1707 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1708 | sz++; |
| 1709 | o->data[o->length] = '\\'; |
| 1710 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1711 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1712 | o_grow_by(o, sz); |
| 1713 | o->data[o->length] = ch; |
| 1714 | o->length++; |
| 1715 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1716 | } |
| 1717 | } |
| 1718 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1719 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1720 | * 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] | 1721 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1722 | * list[i] contains an INDEX (int!) into this string data. |
| 1723 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1724 | * but list[i]'s need not be modified. |
| 1725 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1726 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1727 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1728 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1729 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1730 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1731 | { |
| 1732 | char **list = (char**)o->data; |
| 1733 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1734 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1735 | |
| 1736 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1737 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1738 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1739 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1740 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1741 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1742 | o->data + (int)list[i] + string_start, |
| 1743 | o->data + (int)list[i] + string_start); |
| 1744 | i++; |
| 1745 | } |
| 1746 | if (n) { |
| 1747 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1748 | indent(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1749 | 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] | 1750 | } |
| 1751 | } |
| 1752 | #else |
| 1753 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1754 | #endif |
| 1755 | |
| 1756 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1757 | * in list[n] so that it points past last stored byte so far. |
| 1758 | * It returns n+1. */ |
| 1759 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1760 | { |
| 1761 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1762 | int string_start; |
| 1763 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1764 | |
| 1765 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1766 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1767 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1768 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1769 | 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] | 1770 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1771 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1772 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1773 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1774 | memmove(list + n + 0x10, list + n, string_len); |
| 1775 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1776 | } else { |
| 1777 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1778 | n, string_len, string_start); |
| 1779 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1780 | } else { |
| 1781 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1782 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1783 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1784 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1785 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1786 | o->has_empty_slot = 0; |
| 1787 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1788 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1789 | return n + 1; |
| 1790 | } |
| 1791 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1792 | /* "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] | 1793 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1794 | { |
| 1795 | char **list = (char**)o->data; |
| 1796 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1797 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1798 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1799 | } |
| 1800 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1801 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1802 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1803 | static int o_glob(o_string *o, int n) |
| 1804 | { |
| 1805 | glob_t globdata; |
| 1806 | int gr; |
| 1807 | char *pattern; |
| 1808 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1809 | 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] | 1810 | if (!o->data) |
| 1811 | return o_save_ptr_helper(o, n); |
| 1812 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1813 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1814 | if (!glob_needed(pattern)) { |
| 1815 | literal: |
| 1816 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1817 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1818 | return o_save_ptr_helper(o, n); |
| 1819 | } |
| 1820 | |
| 1821 | memset(&globdata, 0, sizeof(globdata)); |
| 1822 | gr = glob(pattern, 0, NULL, &globdata); |
| 1823 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1824 | if (gr == GLOB_NOSPACE) |
| 1825 | bb_error_msg_and_die("out of memory during glob"); |
| 1826 | if (gr == GLOB_NOMATCH) { |
| 1827 | globfree(&globdata); |
| 1828 | goto literal; |
| 1829 | } |
| 1830 | if (gr != 0) { /* GLOB_ABORTED ? */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 1831 | /* TODO: testcase for bad glob pattern behavior */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1832 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1833 | } |
| 1834 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1835 | char **argv = globdata.gl_pathv; |
| 1836 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1837 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1838 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1839 | n = o_save_ptr_helper(o, n); |
| 1840 | argv++; |
| 1841 | if (!*argv) |
| 1842 | break; |
| 1843 | } |
| 1844 | } |
| 1845 | globfree(&globdata); |
| 1846 | if (DEBUG_GLOB) |
| 1847 | debug_print_list("o_glob returning", o, n); |
| 1848 | return n; |
| 1849 | } |
| 1850 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1851 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1852 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1853 | static int o_save_ptr(o_string *o, int n) |
| 1854 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1855 | if (o->o_glob) { /* if globbing is requested */ |
| 1856 | /* If o->has_empty_slot, list[n] was already globbed |
| 1857 | * (if it was requested back then when it was filled) |
| 1858 | * so don't do that again! */ |
| 1859 | if (!o->has_empty_slot) |
| 1860 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1861 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1862 | return o_save_ptr_helper(o, n); |
| 1863 | } |
| 1864 | |
| 1865 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1866 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1867 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1868 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1869 | int string_start; |
| 1870 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1871 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1872 | if (DEBUG_EXPAND) |
| 1873 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1874 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1875 | list = (char**)o->data; |
| 1876 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1877 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1878 | while (n) { |
| 1879 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1880 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1881 | } |
| 1882 | return list; |
| 1883 | } |
| 1884 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1885 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1886 | /* Expansion can recurse */ |
| 1887 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1888 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1889 | #endif |
| 1890 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1891 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1892 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1893 | parse_stream_dquoted(dest, input, dquote_end) |
| 1894 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1895 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1896 | o_string *dest, |
| 1897 | struct in_str *input, |
| 1898 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1899 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1900 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1901 | * all variable references within and returns a pointer to |
| 1902 | * a list of expanded strings, possibly with larger number |
| 1903 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1904 | * This new list is allocated as a single malloc block. |
| 1905 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1906 | * followed by strings themself. |
| 1907 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1908 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1909 | /* Store given string, finalizing the word and starting new one whenever |
| 1910 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1911 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1912 | 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] | 1913 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1914 | while (1) { |
| 1915 | int word_len = strcspn(str, G.ifs); |
| 1916 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1917 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1918 | o_addQstr(output, str, word_len); |
| 1919 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1920 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1921 | str += word_len; |
| 1922 | } |
| 1923 | if (!*str) /* EOL - do not finalize word */ |
| 1924 | break; |
| 1925 | o_addchr(output, '\0'); |
| 1926 | debug_print_list("expand_on_ifs", output, n); |
| 1927 | n = o_save_ptr(output, n); |
| 1928 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1929 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1930 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1931 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1932 | } |
| 1933 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1934 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 1935 | * they are in double quotes, with the exception that they are not :). |
| 1936 | * Just the rules are similar: "expand only $var and `cmd`" |
| 1937 | * |
| 1938 | * Returns malloced string. |
| 1939 | * As an optimization, we return NULL if expansion is not needed. |
| 1940 | */ |
| 1941 | static char *expand_pseudo_dquoted(const char *str) |
| 1942 | { |
| 1943 | char *exp_str; |
| 1944 | struct in_str input; |
| 1945 | o_string dest = NULL_O_STRING; |
| 1946 | |
| 1947 | if (strchr(str, '$') == NULL |
| 1948 | #if ENABLE_HUSH_TICK |
| 1949 | && strchr(str, '`') == NULL |
| 1950 | #endif |
| 1951 | ) { |
| 1952 | return NULL; |
| 1953 | } |
| 1954 | |
| 1955 | /* We need to expand. Example: |
| 1956 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 1957 | */ |
| 1958 | setup_string_in_str(&input, str); |
| 1959 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
| 1960 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
| 1961 | exp_str = expand_string_to_string(dest.data); |
| 1962 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 1963 | o_free_unsafe(&dest); |
| 1964 | return exp_str; |
| 1965 | } |
| 1966 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1967 | /* Expand all variable references in given string, adding words to list[] |
| 1968 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1969 | * to be filled). This routine is extremely tricky: has to deal with |
| 1970 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1971 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1972 | 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] | 1973 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1974 | /* or_mask is either 0 (normal case) or 0x80 |
| 1975 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1976 | * 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] | 1977 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1978 | char first_ch, ored_ch; |
| 1979 | int i; |
| 1980 | const char *val; |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1981 | char *dyn_val, *p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1982 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1983 | dyn_val = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1984 | ored_ch = 0; |
| 1985 | |
| 1986 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1987 | debug_print_list("expand_vars_to_list", output, n); |
| 1988 | n = o_save_ptr(output, n); |
| 1989 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1990 | |
| 1991 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1992 | #if ENABLE_HUSH_TICK |
| 1993 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1994 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1995 | #if ENABLE_SH_MATH_SUPPORT |
| 1996 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1997 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1998 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1999 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 2000 | arg = ++p; |
| 2001 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 2002 | |
| 2003 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 2004 | /* "$@" is special. Even if quoted, it can still |
| 2005 | * expand to nothing (not even an empty string) */ |
| 2006 | if ((first_ch & 0x7f) != '@') |
| 2007 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2008 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2009 | val = NULL; |
| 2010 | switch (first_ch & 0x7f) { |
| 2011 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 2012 | case '$': /* pid */ |
| 2013 | val = utoa(G.root_pid); |
| 2014 | break; |
| 2015 | case '!': /* bg pid */ |
| 2016 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 2017 | break; |
| 2018 | case '?': /* exitcode */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 2019 | val = utoa(G.last_exitcode); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2020 | break; |
| 2021 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2022 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 2023 | /* actually, it's a ${#var} */ |
| 2024 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2025 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 2026 | break; |
| 2027 | case '*': |
| 2028 | case '@': |
| 2029 | i = 1; |
| 2030 | if (!G.global_argv[i]) |
| 2031 | break; |
| 2032 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 2033 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2034 | smallint sv = output->o_escape; |
| 2035 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2036 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2037 | while (G.global_argv[i]) { |
| 2038 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 2039 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 2040 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 2041 | /* this argv[] is not empty and not last: |
| 2042 | * put terminating NUL, start new word */ |
| 2043 | o_addchr(output, '\0'); |
| 2044 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 2045 | n = o_save_ptr(output, n); |
| 2046 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 2047 | } |
| 2048 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2049 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2050 | } else |
| 2051 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 2052 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 2053 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 2054 | while (1) { |
| 2055 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2056 | if (++i >= G.global_argc) |
| 2057 | break; |
| 2058 | o_addchr(output, '\0'); |
| 2059 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 2060 | n = o_save_ptr(output, n); |
| 2061 | } |
| 2062 | } else { /* quoted $*: add as one word */ |
| 2063 | while (1) { |
| 2064 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2065 | if (!G.global_argv[++i]) |
| 2066 | break; |
| 2067 | if (G.ifs[0]) |
| 2068 | o_addchr(output, G.ifs[0]); |
| 2069 | } |
| 2070 | } |
| 2071 | break; |
| 2072 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 2073 | /* "Empty variable", used to make "" etc to not disappear */ |
| 2074 | arg++; |
| 2075 | ored_ch = 0x80; |
| 2076 | break; |
| 2077 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2078 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2079 | *p = '\0'; |
| 2080 | arg++; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2081 | /* Can't just stuff it into output o_string, |
| 2082 | * expanded result may need to be globbed |
| 2083 | * and $IFS-splitted */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2084 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2085 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2086 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 2087 | val = subst_result.data; |
| 2088 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 2089 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2090 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2091 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2092 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2093 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2094 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2095 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2096 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2097 | arg++; /* skip '+' */ |
| 2098 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2099 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2100 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2101 | exp_str = expand_pseudo_dquoted(arg); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2102 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2103 | hooks.setvar = arith_set_local_var; |
| 2104 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2105 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 2106 | free(exp_str); |
| 2107 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2108 | if (errcode < 0) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2109 | const char *msg = "error in arithmetic"; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2110 | switch (errcode) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2111 | case -3: |
| 2112 | msg = "exponent less than 0"; |
| 2113 | break; |
| 2114 | case -2: |
| 2115 | msg = "divide by 0"; |
| 2116 | break; |
| 2117 | case -5: |
| 2118 | msg = "expression recursion loop detected"; |
| 2119 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2120 | } |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2121 | die_if_script(msg); |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2122 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2123 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2124 | sprintf(arith_buf, arith_t_fmt, res); |
| 2125 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2126 | break; |
| 2127 | } |
| 2128 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2129 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2130 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2131 | bool exp_len = false; |
| 2132 | bool exp_null = false; |
| 2133 | char *var = arg; |
| 2134 | char exp_save = exp_save; /* for compiler */ |
| 2135 | char exp_op = exp_op; /* for compiler */ |
| 2136 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2137 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2138 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2139 | *p = '\0'; |
| 2140 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2141 | |
| 2142 | /* prepare for expansions */ |
| 2143 | if (var[0] == '#') { |
| 2144 | /* handle length expansion ${#var} */ |
| 2145 | exp_len = true; |
| 2146 | ++var; |
| 2147 | } else { |
| 2148 | /* maybe handle parameter expansion */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2149 | exp_off = strcspn(var, ":-=+?%#"); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2150 | if (!var[exp_off]) |
| 2151 | exp_off = 0; |
| 2152 | if (exp_off) { |
| 2153 | exp_save = var[exp_off]; |
| 2154 | exp_null = exp_save == ':'; |
| 2155 | exp_word = var + exp_off; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2156 | if (exp_null) |
| 2157 | ++exp_word; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2158 | exp_op = *exp_word++; |
| 2159 | var[exp_off] = '\0'; |
| 2160 | } |
| 2161 | } |
| 2162 | |
| 2163 | /* lookup the variable in question */ |
| 2164 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 2165 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2166 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2167 | if (i < G.global_argc) |
| 2168 | val = G.global_argv[i]; |
| 2169 | /* else val remains NULL: $N with too big N */ |
| 2170 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2171 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2172 | |
| 2173 | /* handle any expansions */ |
| 2174 | if (exp_len) { |
| 2175 | debug_printf_expand("expand: length of '%s' = ", val); |
| 2176 | val = utoa(val ? strlen(val) : 0); |
| 2177 | debug_printf_expand("%s\n", val); |
| 2178 | } else if (exp_off) { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2179 | if (exp_op == '%' || exp_op == '#') { |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2180 | if (val) { |
| 2181 | /* we need to do a pattern match */ |
| 2182 | bool zero; |
| 2183 | char *loc; |
| 2184 | scan_t scan = pick_scan(exp_op, *exp_word, &zero); |
| 2185 | if (exp_op == *exp_word) /* ## or %% */ |
| 2186 | ++exp_word; |
| 2187 | val = dyn_val = xstrdup(val); |
| 2188 | loc = scan(dyn_val, exp_word, zero); |
| 2189 | if (zero) |
| 2190 | val = loc; |
| 2191 | else |
| 2192 | *loc = '\0'; |
| 2193 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2194 | } else { |
| 2195 | /* we need to do an expansion */ |
| 2196 | int exp_test = (!val || (exp_null && !val[0])); |
| 2197 | if (exp_op == '+') |
| 2198 | exp_test = !exp_test; |
| 2199 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 2200 | exp_null ? "true" : "false", exp_test); |
| 2201 | if (exp_test) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2202 | if (exp_op == '?') { |
| 2203 | //TODO: how interactive bash aborts expansion mid-command? |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2204 | /* ${var?[error_msg_if_unset]} */ |
| 2205 | /* ${var:?[error_msg_if_unset_or_null]} */ |
| 2206 | /* mimic bash message */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2207 | die_if_script("%s: %s", |
| 2208 | var, |
| 2209 | exp_word[0] ? exp_word : "parameter null or not set" |
| 2210 | ); |
| 2211 | } else { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2212 | val = exp_word; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2213 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2214 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2215 | if (exp_op == '=') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2216 | /* ${var=[word]} or ${var:=[word]} */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2217 | if (isdigit(var[0]) || var[0] == '#') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2218 | /* mimic bash message */ |
| 2219 | die_if_script("$%s: cannot assign in this way", var); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2220 | val = NULL; |
| 2221 | } else { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2222 | char *new_var = xasprintf("%s=%s", var, val); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 2223 | set_local_var(new_var, 0, 0); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2224 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2225 | } |
| 2226 | } |
| 2227 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2228 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2229 | var[exp_off] = exp_save; |
| 2230 | } |
| 2231 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2232 | arg[0] = first_ch; |
| 2233 | #if ENABLE_HUSH_TICK |
| 2234 | store_val: |
| 2235 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2236 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2237 | 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] | 2238 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2239 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2240 | smallint sv = output->o_escape; |
| 2241 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2242 | n = expand_on_ifs(output, n, val); |
| 2243 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2244 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2245 | } |
| 2246 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2247 | 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] | 2248 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2249 | } /* default: */ |
| 2250 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2251 | if (val) { |
| 2252 | o_addQstr(output, val, strlen(val)); |
| 2253 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2254 | free(dyn_val); |
| 2255 | dyn_val = NULL; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2256 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2257 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2258 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2259 | |
| 2260 | #if ENABLE_HUSH_TICK |
| 2261 | o_free(&subst_result); |
| 2262 | #endif |
| 2263 | arg = ++p; |
| 2264 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 2265 | |
| 2266 | if (arg[0]) { |
| 2267 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 2268 | /* this part is literal, and it was already pre-quoted |
| 2269 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2270 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2271 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 2272 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 2273 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 2274 | ) { |
| 2275 | n--; |
| 2276 | /* allow to reuse list[n] later without re-growth */ |
| 2277 | output->has_empty_slot = 1; |
| 2278 | } else { |
| 2279 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2280 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2281 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2282 | } |
| 2283 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2284 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2285 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2286 | int n; |
| 2287 | char **list; |
| 2288 | char **v; |
| 2289 | o_string output = NULL_O_STRING; |
| 2290 | |
| 2291 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2292 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2293 | /* (unquoted $var will temporarily switch it off) */ |
| 2294 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2295 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2296 | |
| 2297 | n = 0; |
| 2298 | v = argv; |
| 2299 | while (*v) { |
| 2300 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2301 | v++; |
| 2302 | } |
| 2303 | debug_print_list("expand_variables", &output, n); |
| 2304 | |
| 2305 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2306 | list = o_finalize_list(&output, n); |
| 2307 | debug_print_strings("expand_variables[1]", list); |
| 2308 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2311 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2312 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2313 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2314 | } |
| 2315 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2316 | /* Used for expansion of right hand of assignments */ |
| 2317 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2318 | * "v=/bin/c*" */ |
| 2319 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2320 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2321 | char *argv[2], **list; |
| 2322 | |
| 2323 | argv[0] = (char*)str; |
| 2324 | argv[1] = NULL; |
| 2325 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2326 | if (HUSH_DEBUG) |
| 2327 | if (!list[0] || list[1]) |
| 2328 | bb_error_msg_and_die("BUG in varexp2"); |
| 2329 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2330 | overlapping_strcpy((char*)list, list[0]); |
| 2331 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2332 | return (char*)list; |
| 2333 | } |
| 2334 | |
| 2335 | /* Used for "eval" builtin */ |
| 2336 | static char* expand_strvec_to_string(char **argv) |
| 2337 | { |
| 2338 | char **list; |
| 2339 | |
| 2340 | list = expand_variables(argv, 0x80); |
| 2341 | /* Convert all NULs to spaces */ |
| 2342 | if (list[0]) { |
| 2343 | int n = 1; |
| 2344 | while (list[n]) { |
| 2345 | if (HUSH_DEBUG) |
| 2346 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2347 | bb_error_msg_and_die("BUG in varexp3"); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 2348 | /* bash uses ' ' regardless of $IFS contents */ |
| 2349 | list[n][-1] = ' '; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2350 | n++; |
| 2351 | } |
| 2352 | } |
| 2353 | overlapping_strcpy((char*)list, list[0]); |
| 2354 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2355 | return (char*)list; |
| 2356 | } |
| 2357 | |
| 2358 | static char **expand_assignments(char **argv, int count) |
| 2359 | { |
| 2360 | int i; |
| 2361 | char **p = NULL; |
| 2362 | /* Expand assignments into one string each */ |
| 2363 | for (i = 0; i < count; i++) { |
| 2364 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2365 | } |
| 2366 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2367 | } |
| 2368 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2369 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2370 | #if BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2371 | /* never called */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2372 | 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] | 2373 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2374 | static void reset_traps_to_defaults(void) |
| 2375 | { |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2376 | /* This function is always called in a child shell |
| 2377 | * after fork (not vfork, NOMMU doesn't use this function). |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2378 | * Child shells are not interactive. |
| 2379 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 2380 | * Testcase: (while :; do :; done) + ^Z should background. |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2381 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2382 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2383 | unsigned sig; |
| 2384 | unsigned mask; |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2385 | |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2386 | if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS)) |
| 2387 | return; |
| 2388 | |
| 2389 | /* Stupid. It can be done with *single* &= op, but we can't use |
| 2390 | * the fact that G.blocked_set is implemented as a bitmask... */ |
| 2391 | mask = (SPECIAL_INTERACTIVE_SIGS >> 1); |
| 2392 | sig = 1; |
| 2393 | while (1) { |
| 2394 | if (mask & 1) |
| 2395 | sigdelset(&G.blocked_set, sig); |
| 2396 | mask >>= 1; |
| 2397 | if (!mask) |
| 2398 | break; |
| 2399 | sig++; |
| 2400 | } |
| 2401 | |
| 2402 | G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
| 2403 | mask = G.non_DFL_mask; |
| 2404 | if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) { |
| 2405 | if (!G.traps[sig]) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2406 | continue; |
| 2407 | free(G.traps[sig]); |
| 2408 | G.traps[sig] = NULL; |
| 2409 | /* There is no signal for 0 (EXIT) */ |
| 2410 | if (sig == 0) |
| 2411 | continue; |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2412 | /* There was a trap handler, we are removing it. |
| 2413 | * But if sig still has non-DFL handling, |
| 2414 | * we should not unblock it. */ |
| 2415 | if (mask & 1) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2416 | continue; |
| 2417 | sigdelset(&G.blocked_set, sig); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2418 | } |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2419 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2420 | } |
| 2421 | |
| 2422 | #else /* !BB_MMU */ |
| 2423 | |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2424 | static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN; |
| 2425 | 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] | 2426 | { |
| 2427 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2428 | char *heredoc_argv[4]; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2429 | struct variable *cur; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2430 | #if ENABLE_HUSH_FUNCTIONS |
| 2431 | struct function *funcp; |
| 2432 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2433 | char **argv, **pp; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2434 | unsigned cnt; |
| 2435 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2436 | if (!g_argv0) { /* heredoc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2437 | argv = heredoc_argv; |
| 2438 | argv[0] = (char *) G.argv0_for_re_execing; |
| 2439 | argv[1] = (char *) "-<"; |
| 2440 | argv[2] = (char *) s; |
| 2441 | argv[3] = NULL; |
Denis Vlasenko | f50caac | 2009-04-09 01:40:15 +0000 | [diff] [blame] | 2442 | pp = &argv[3]; /* used as pointer to empty environment */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2443 | goto do_exec; |
| 2444 | } |
| 2445 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2446 | sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x") |
| 2447 | , (unsigned) G.root_pid |
| 2448 | , (unsigned) G.last_bg_pid |
| 2449 | , (unsigned) G.last_exitcode |
| 2450 | USE_HUSH_LOOPS(, G.depth_of_loop) |
| 2451 | ); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2452 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...> |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2453 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2454 | */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2455 | cnt = 6; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2456 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2457 | if (!cur->flg_export || cur->flg_read_only) |
| 2458 | cnt += 2; |
| 2459 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2460 | #if ENABLE_HUSH_FUNCTIONS |
| 2461 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 2462 | cnt += 3; |
| 2463 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2464 | pp = g_argv; |
| 2465 | while (*pp++) |
| 2466 | cnt++; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2467 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2468 | *pp++ = (char *) G.argv0_for_re_execing; |
| 2469 | *pp++ = param_buf; |
| 2470 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2471 | if (cur->varstr == hush_version_str) |
| 2472 | continue; |
| 2473 | if (cur->flg_read_only) { |
| 2474 | *pp++ = (char *) "-R"; |
| 2475 | *pp++ = cur->varstr; |
| 2476 | } else if (!cur->flg_export) { |
| 2477 | *pp++ = (char *) "-V"; |
| 2478 | *pp++ = cur->varstr; |
| 2479 | } |
| 2480 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2481 | #if ENABLE_HUSH_FUNCTIONS |
| 2482 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 2483 | *pp++ = (char *) "-F"; |
| 2484 | *pp++ = funcp->name; |
| 2485 | *pp++ = funcp->body_as_string; |
| 2486 | } |
| 2487 | #endif |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2488 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2489 | * |
| 2490 | * However, POSIX says that subshells reset signals with traps |
| 2491 | * to SIG_DFL. |
| 2492 | * I tested bash-3.2 and it not only does that with true subshells |
| 2493 | * of the form ( list ), but with any forked children shells. |
| 2494 | * I set trap "echo W" WINCH; and then tried: |
| 2495 | * |
| 2496 | * { echo 1; sleep 20; echo 2; } & |
| 2497 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2498 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2499 | * |
| 2500 | * In all these cases sending SIGWINCH to the child shell |
| 2501 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2502 | * _inside_ group (just before echo 1), it works. |
| 2503 | * |
| 2504 | * I conclude it means we don't need to pass active traps here. |
| 2505 | * exec syscall below resets them to SIG_DFL for us. |
| 2506 | */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2507 | *pp++ = (char *) "-c"; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2508 | *pp++ = (char *) s; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2509 | *pp++ = g_argv0; |
| 2510 | while (*g_argv) |
| 2511 | *pp++ = *g_argv++; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2512 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2513 | pp = environ; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2514 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2515 | do_exec: |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2516 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
| 2517 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2518 | execve(bb_busybox_exec_path, argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2519 | /* Fallback. Useful for init=/bin/hush usage etc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2520 | if (argv[0][0] == '/') |
| 2521 | execve(argv[0], argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2522 | xfunc_error_retval = 127; |
| 2523 | bb_error_msg_and_die("can't re-execute the shell"); |
| 2524 | } |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2525 | #endif /* !BB_MMU */ |
| 2526 | |
| 2527 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2528 | static void setup_heredoc(struct redir_struct *redir) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2529 | { |
| 2530 | struct fd_pair pair; |
| 2531 | pid_t pid; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2532 | int len, written; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2533 | /* the _body_ of heredoc (misleading field name) */ |
| 2534 | const char *heredoc = redir->rd_filename; |
| 2535 | char *expanded; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2536 | #if !BB_MMU |
| 2537 | char **to_free; |
| 2538 | #endif |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2539 | |
| 2540 | expanded = NULL; |
| 2541 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
| 2542 | expanded = expand_pseudo_dquoted(heredoc); |
| 2543 | if (expanded) |
| 2544 | heredoc = expanded; |
| 2545 | } |
| 2546 | len = strlen(heredoc); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2547 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2548 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2549 | xpiped_pair(pair); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2550 | xmove_fd(pair.rd, redir->rd_fd); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2551 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2552 | /* Try writing without forking. Newer kernels have |
| 2553 | * dynamically growing pipes. Must use non-blocking write! */ |
| 2554 | ndelay_on(pair.wr); |
| 2555 | while (1) { |
| 2556 | written = write(pair.wr, heredoc, len); |
| 2557 | if (written <= 0) |
| 2558 | break; |
| 2559 | len -= written; |
| 2560 | if (len == 0) { |
| 2561 | close(pair.wr); |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 2562 | free(expanded); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2563 | return; |
| 2564 | } |
| 2565 | heredoc += written; |
| 2566 | } |
| 2567 | ndelay_off(pair.wr); |
| 2568 | |
| 2569 | /* Okay, pipe buffer was not big enough */ |
| 2570 | /* Note: we must not create a stray child (bastard? :) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2571 | * for the unsuspecting parent process. Child creates a grandchild |
| 2572 | * and exits before parent execs the process which consumes heredoc |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2573 | * (that exec happens after we return from this function) */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2574 | #if !BB_MMU |
| 2575 | to_free = NULL; |
| 2576 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2577 | pid = vfork(); |
| 2578 | if (pid < 0) |
| 2579 | bb_perror_msg_and_die("vfork"); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2580 | if (pid == 0) { |
| 2581 | /* child */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2582 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2583 | pid = BB_MMU ? fork() : vfork(); |
| 2584 | if (pid < 0) |
| 2585 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
| 2586 | if (pid != 0) |
| 2587 | _exit(0); |
| 2588 | /* grandchild */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2589 | close(redir->rd_fd); /* read side of the pipe */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2590 | #if BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2591 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2592 | _exit(0); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2593 | #else |
| 2594 | /* Delegate blocking writes to another process */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2595 | xmove_fd(pair.wr, STDOUT_FILENO); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2596 | re_execute_shell(&to_free, heredoc, NULL, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2597 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2598 | } |
| 2599 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2600 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2601 | #if !BB_MMU |
| 2602 | free(to_free); |
| 2603 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2604 | close(pair.wr); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2605 | free(expanded); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2606 | wait(NULL); /* wait till child has died */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2607 | } |
| 2608 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2609 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2610 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2611 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2612 | { |
| 2613 | int openfd, mode; |
| 2614 | struct redir_struct *redir; |
| 2615 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2616 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2617 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2618 | /* rd_fd<<HERE case */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2619 | if (squirrel && redir->rd_fd < 3) { |
| 2620 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2621 | } |
| 2622 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 2623 | * of the heredoc */ |
| 2624 | debug_printf_parse("set heredoc '%s'\n", |
| 2625 | redir->rd_filename); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2626 | setup_heredoc(redir); |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2627 | continue; |
| 2628 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2629 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2630 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
| 2631 | /* rd_fd<*>file case (<*> is <,>,>>,<>) */ |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2632 | char *p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2633 | if (redir->rd_filename == NULL) { |
| 2634 | /* Something went wrong in the parse. |
| 2635 | * Pretend it didn't happen */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2636 | bb_error_msg("bug in redirect parse"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2637 | continue; |
| 2638 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2639 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2640 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2641 | openfd = open_or_warn(p, mode); |
| 2642 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2643 | if (openfd < 0) { |
| 2644 | /* this could get lost if stderr has been redirected, but |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2645 | * bash and ash both lose it as well (though zsh doesn't!) */ |
| 2646 | //what the above comment tries to say? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2647 | return 1; |
| 2648 | } |
| 2649 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2650 | /* rd_fd<*>rd_dup or rd_fd<*>- cases */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2651 | openfd = redir->rd_dup; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2652 | } |
| 2653 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2654 | if (openfd != redir->rd_fd) { |
| 2655 | if (squirrel && redir->rd_fd < 3) { |
| 2656 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2657 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2658 | if (openfd == REDIRFD_CLOSE) { |
| 2659 | /* "n>-" means "close me" */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2660 | close(redir->rd_fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2661 | } else { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2662 | xdup2(openfd, redir->rd_fd); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2663 | if (redir->rd_dup == REDIRFD_TO_FILE) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2664 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2665 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2666 | } |
| 2667 | } |
| 2668 | return 0; |
| 2669 | } |
| 2670 | |
| 2671 | static void restore_redirects(int squirrel[]) |
| 2672 | { |
| 2673 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2674 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2675 | fd = squirrel[i]; |
| 2676 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2677 | /* We simply die on error */ |
| 2678 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2679 | } |
| 2680 | } |
| 2681 | } |
| 2682 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2683 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2684 | static void free_pipe_list(struct pipe *head); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2685 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2686 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2687 | static void free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2688 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2689 | char **p; |
| 2690 | struct command *command; |
| 2691 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2692 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2693 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2694 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2695 | return; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2696 | debug_printf_clean("run pipe: (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2697 | for (i = 0; i < pi->num_cmds; i++) { |
| 2698 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2699 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2700 | if (command->argv) { |
| 2701 | for (a = 0, p = command->argv; *p; a++, p++) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2702 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2703 | } |
| 2704 | free_strings(command->argv); |
| 2705 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2706 | } |
| 2707 | /* not "else if": on syntax error, we may have both! */ |
| 2708 | if (command->group) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2709 | debug_printf_clean(" begin group (grp_type:%d)\n", |
| 2710 | command->grp_type); |
| 2711 | free_pipe_list(command->group); |
| 2712 | debug_printf_clean(" end group\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2713 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2714 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 2715 | /* else is crucial here. |
| 2716 | * If group != NULL, child_func is meaningless */ |
| 2717 | #if ENABLE_HUSH_FUNCTIONS |
| 2718 | else if (command->child_func) { |
| 2719 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 2720 | command->child_func->parent_cmd = NULL; |
| 2721 | } |
| 2722 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2723 | #if !BB_MMU |
| 2724 | free(command->group_as_string); |
| 2725 | command->group_as_string = NULL; |
| 2726 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2727 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2728 | debug_printf_clean(" redirect %d%s", |
| 2729 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2730 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2731 | if (r->rd_filename) { |
| 2732 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 2733 | free(r->rd_filename); |
| 2734 | r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2735 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2736 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2737 | rnext = r->next; |
| 2738 | free(r); |
| 2739 | } |
| 2740 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2741 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2742 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2743 | pi->cmds = NULL; |
| 2744 | #if ENABLE_HUSH_JOB |
| 2745 | free(pi->cmdtext); |
| 2746 | pi->cmdtext = NULL; |
| 2747 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2748 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2749 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2750 | static void free_pipe_list(struct pipe *head) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2751 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2752 | struct pipe *pi, *next; |
| 2753 | |
| 2754 | for (pi = head; pi; pi = next) { |
| 2755 | #if HAS_KEYWORDS |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2756 | debug_printf_clean(" pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2757 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2758 | free_pipe(pi); |
| 2759 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2760 | next = pi->next; |
| 2761 | /*pi->next = NULL;*/ |
| 2762 | free(pi); |
| 2763 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2764 | } |
| 2765 | |
| 2766 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2767 | static int run_list(struct pipe *pi); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2768 | #if BB_MMU |
| 2769 | #define parse_stream(pstring, input, end_trigger) \ |
| 2770 | parse_stream(input, end_trigger) |
| 2771 | #endif |
| 2772 | static struct pipe *parse_stream(char **pstring, |
| 2773 | struct in_str *input, |
| 2774 | int end_trigger); |
| 2775 | static void parse_and_run_string(const char *s); |
| 2776 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2777 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2778 | static const struct built_in_command* find_builtin(const char *name) |
| 2779 | { |
| 2780 | const struct built_in_command *x; |
| 2781 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2782 | if (strcmp(name, x->cmd) != 0) |
| 2783 | continue; |
| 2784 | debug_printf_exec("found builtin '%s'\n", name); |
| 2785 | return x; |
| 2786 | } |
| 2787 | return NULL; |
| 2788 | } |
| 2789 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2790 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2791 | static const struct function *find_function(const char *name) |
| 2792 | { |
| 2793 | const struct function *funcp = G.top_func; |
| 2794 | while (funcp) { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2795 | if (strcmp(name, funcp->name) == 0) { |
| 2796 | break; |
| 2797 | } |
| 2798 | funcp = funcp->next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2799 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2800 | if (funcp) |
| 2801 | debug_printf_exec("found function '%s'\n", name); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2802 | return funcp; |
| 2803 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2804 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2805 | /* Note: takes ownership on name ptr */ |
| 2806 | static struct function *new_function(char *name) |
| 2807 | { |
| 2808 | struct function *funcp; |
| 2809 | struct function **funcpp = &G.top_func; |
| 2810 | |
| 2811 | while ((funcp = *funcpp) != NULL) { |
| 2812 | struct command *cmd; |
| 2813 | |
| 2814 | if (strcmp(funcp->name, name) != 0) { |
| 2815 | funcpp = &funcp->next; |
| 2816 | continue; |
| 2817 | } |
| 2818 | |
| 2819 | cmd = funcp->parent_cmd; |
| 2820 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 2821 | if (!cmd) { |
| 2822 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 2823 | free(funcp->name); |
| 2824 | /* Note: if !funcp->body, do not free body_as_string! |
| 2825 | * This is a special case of "-F name body" function: |
| 2826 | * body_as_string was not malloced! */ |
| 2827 | if (funcp->body) { |
| 2828 | free_pipe_list(funcp->body); |
| 2829 | #if !BB_MMU |
| 2830 | free(funcp->body_as_string); |
| 2831 | #endif |
| 2832 | } |
| 2833 | } else { |
| 2834 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 2835 | cmd->argv[0] = funcp->name; |
| 2836 | cmd->group = funcp->body; |
| 2837 | #if !BB_MMU |
| 2838 | cmd->group_as_string = funcp->body_as_string; |
| 2839 | #endif |
| 2840 | } |
| 2841 | goto skip; |
| 2842 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2843 | debug_printf_exec("remembering new function '%s'\n", name); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2844 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 2845 | /*funcp->next = NULL;*/ |
| 2846 | skip: |
| 2847 | funcp->name = name; |
| 2848 | return funcp; |
| 2849 | } |
| 2850 | |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2851 | static void unset_func(const char *name) |
| 2852 | { |
| 2853 | struct function *funcp; |
| 2854 | struct function **funcpp = &G.top_func; |
| 2855 | |
| 2856 | while ((funcp = *funcpp) != NULL) { |
| 2857 | if (strcmp(funcp->name, name) == 0) { |
| 2858 | *funcpp = funcp->next; |
| 2859 | /* funcp is unlinked now, deleting it */ |
| 2860 | free(funcp->name); |
| 2861 | /* Note: if !funcp->body, do not free body_as_string! |
| 2862 | * This is a special case of "-F name body" function: |
| 2863 | * body_as_string was not malloced! */ |
| 2864 | if (funcp->body) { |
| 2865 | free_pipe_list(funcp->body); |
| 2866 | #if !BB_MMU |
| 2867 | free(funcp->body_as_string); |
| 2868 | #endif |
| 2869 | } |
| 2870 | free(funcp); |
| 2871 | break; |
| 2872 | } |
Denis Vlasenko | 7301067 | 2009-04-18 11:25:18 +0000 | [diff] [blame] | 2873 | funcpp = &funcp->next; |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2874 | } |
| 2875 | } |
| 2876 | |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2877 | #if BB_MMU |
| 2878 | #define exec_function(nommu_save, funcp, argv) \ |
| 2879 | exec_function(funcp, argv) |
| 2880 | #endif |
| 2881 | static void exec_function(nommu_save_t *nommu_save, |
| 2882 | const struct function *funcp, |
| 2883 | char **argv) NORETURN; |
| 2884 | static void exec_function(nommu_save_t *nommu_save, |
| 2885 | const struct function *funcp, |
| 2886 | char **argv) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2887 | { |
| 2888 | # if BB_MMU |
| 2889 | int n = 1; |
| 2890 | |
| 2891 | argv[0] = G.global_argv[0]; |
| 2892 | G.global_argv = argv; |
| 2893 | while (*++argv) |
| 2894 | n++; |
| 2895 | G.global_argc = n; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2896 | /* On MMU, funcp->body is always non-NULL */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2897 | n = run_list(funcp->body); |
| 2898 | fflush(NULL); |
| 2899 | _exit(n); |
| 2900 | # else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2901 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 2902 | funcp->body_as_string, |
| 2903 | G.global_argv[0], |
| 2904 | argv + 1); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2905 | # endif |
| 2906 | } |
| 2907 | |
| 2908 | static int run_function(const struct function *funcp, char **argv) |
| 2909 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2910 | int rc; |
| 2911 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2912 | #if ENABLE_HUSH_FUNCTIONS |
| 2913 | smallint sv_flg; |
| 2914 | #endif |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2915 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2916 | save_and_replace_G_args(&sv, argv); |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2917 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2918 | /* "we are in function, ok to use return" */ |
| 2919 | sv_flg = G.flag_return_in_progress; |
| 2920 | G.flag_return_in_progress = -1; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2921 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2922 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2923 | /* On MMU, funcp->body is always non-NULL */ |
| 2924 | #if !BB_MMU |
| 2925 | if (!funcp->body) { |
| 2926 | /* Function defined by -F */ |
| 2927 | parse_and_run_string(funcp->body_as_string); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2928 | rc = G.last_exitcode; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2929 | } else |
| 2930 | #endif |
| 2931 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2932 | rc = run_list(funcp->body); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2933 | } |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2934 | |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2935 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2936 | G.flag_return_in_progress = sv_flg; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2937 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2938 | restore_G_args(&sv, argv); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2939 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2940 | return rc; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2941 | } |
| 2942 | #endif |
| 2943 | |
| 2944 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 2945 | #if BB_MMU |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2946 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2947 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2948 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2949 | pseudo_exec(command, argv_expanded) |
| 2950 | #endif |
| 2951 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2952 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2953 | * Never returns. |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 2954 | * Don't exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2955 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2956 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2957 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2958 | char **argv, int assignment_cnt, |
| 2959 | char **argv_expanded) NORETURN; |
| 2960 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2961 | char **argv, int assignment_cnt, |
| 2962 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2963 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2964 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2965 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2966 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2967 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2968 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2969 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2970 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2971 | #if BB_MMU |
| 2972 | putenv_all(new_env); |
| 2973 | free(new_env); /* optional */ |
| 2974 | #else |
| 2975 | nommu_save->new_env = new_env; |
| 2976 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2977 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2978 | if (argv_expanded) { |
| 2979 | argv = argv_expanded; |
| 2980 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2981 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2982 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2983 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2984 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2985 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2986 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2987 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 2988 | if (strchr(argv[0], '/') != NULL) |
| 2989 | goto skip; |
| 2990 | #endif |
| 2991 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2992 | /* On NOMMU, we must never block! |
| 2993 | * Example: { sleep 99999 | read line } & echo Ok |
| 2994 | * read builtin will block on read syscall, leaving parent blocked |
| 2995 | * in vfork. Therefore we can't do this: |
| 2996 | */ |
| 2997 | #if BB_MMU |
| 2998 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2999 | * Depending on context, this might be redundant. But it's |
| 3000 | * easier to waste a few CPU cycles than it is to figure out |
| 3001 | * if this is one of those cases. |
| 3002 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3003 | { |
| 3004 | int rcode; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3005 | const struct built_in_command *x = find_builtin(argv[0]); |
| 3006 | if (x) { |
| 3007 | rcode = x->function(argv); |
| 3008 | fflush(NULL); |
| 3009 | _exit(rcode); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3010 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3011 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3012 | #endif |
| 3013 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3014 | /* Check if the command matches any functions */ |
| 3015 | { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3016 | const struct function *funcp = find_function(argv[0]); |
| 3017 | if (funcp) { |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3018 | exec_function(nommu_save, funcp, argv); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3019 | } |
| 3020 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3021 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3022 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 3023 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3024 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3025 | { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3026 | int a = find_applet_by_name(argv[0]); |
| 3027 | if (a >= 0) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3028 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3029 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3030 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3031 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3032 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3033 | # endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3034 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3035 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3036 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 3037 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3038 | /* If they called chroot or otherwise made the binary no longer |
| 3039 | * executable, fall through */ |
| 3040 | } |
| 3041 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 3042 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3043 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3044 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3045 | skip: |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3046 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3047 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3048 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3049 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 3050 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 3051 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3052 | } |
| 3053 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3054 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3055 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3056 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3057 | struct command *command, |
| 3058 | char **argv_expanded) NORETURN; |
| 3059 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3060 | struct command *command, |
| 3061 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3062 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3063 | if (command->argv) { |
| 3064 | pseudo_exec_argv(nommu_save, command->argv, |
| 3065 | command->assignment_cnt, argv_expanded); |
| 3066 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3067 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3068 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3069 | /* Cases when we are here: |
| 3070 | * ( list ) |
| 3071 | * { list } & |
| 3072 | * ... | ( list ) | ... |
| 3073 | * ... | { list } | ... |
| 3074 | */ |
| 3075 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 3076 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3077 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 3078 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3079 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 3080 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3081 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3082 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3083 | #else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3084 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 3085 | command->group_as_string, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3086 | G.global_argv[0], |
| 3087 | G.global_argv + 1); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3088 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3089 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3090 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3091 | /* Case when we are here: ... | >file */ |
| 3092 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3093 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3094 | } |
| 3095 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3096 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3097 | static const char *get_cmdtext(struct pipe *pi) |
| 3098 | { |
| 3099 | char **argv; |
| 3100 | char *p; |
| 3101 | int len; |
| 3102 | |
| 3103 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 3104 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3105 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3106 | if (pi->cmdtext) |
| 3107 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3108 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3109 | if (!argv || !argv[0]) { |
| 3110 | pi->cmdtext = xzalloc(1); |
| 3111 | return pi->cmdtext; |
| 3112 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3113 | |
| 3114 | len = 0; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3115 | do { |
| 3116 | len += strlen(*argv) + 1; |
| 3117 | } while (*++argv); |
| 3118 | p = xmalloc(len); |
| 3119 | pi->cmdtext = p;// = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3120 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3121 | do { |
| 3122 | len = strlen(*argv); |
| 3123 | memcpy(p, *argv, len); |
| 3124 | p += len; |
| 3125 | *p++ = ' '; |
| 3126 | } while (*++argv); |
| 3127 | p[-1] = '\0'; |
| 3128 | return pi->cmdtext; |
| 3129 | } |
| 3130 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3131 | static void insert_bg_job(struct pipe *pi) |
| 3132 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3133 | struct pipe *job, **jobp; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3134 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3135 | |
| 3136 | /* Linear search for the ID of the job to use */ |
| 3137 | pi->jobid = 1; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3138 | for (job = G.job_list; job; job = job->next) |
| 3139 | if (job->jobid >= pi->jobid) |
| 3140 | pi->jobid = job->jobid + 1; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3141 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3142 | /* Add job to the list of running jobs */ |
| 3143 | jobp = &G.job_list; |
| 3144 | while ((job = *jobp) != NULL) |
| 3145 | jobp = &job->next; |
| 3146 | job = *jobp = xmalloc(sizeof(*job)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3147 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3148 | *job = *pi; /* physical copy */ |
| 3149 | job->next = NULL; |
| 3150 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 3151 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3152 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3153 | job->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3154 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3155 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3156 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3157 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3158 | if (G_interactive_fd) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3159 | printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext); |
| 3160 | /* Last command's pid goes to $! */ |
| 3161 | G.last_bg_pid = job->cmds[job->num_cmds - 1].pid; |
| 3162 | G.last_jobid = job->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3163 | } |
| 3164 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3165 | static void remove_bg_job(struct pipe *pi) |
| 3166 | { |
| 3167 | struct pipe *prev_pipe; |
| 3168 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3169 | if (pi == G.job_list) { |
| 3170 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3171 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3172 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3173 | while (prev_pipe->next != pi) |
| 3174 | prev_pipe = prev_pipe->next; |
| 3175 | prev_pipe->next = pi->next; |
| 3176 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3177 | if (G.job_list) |
| 3178 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3179 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3180 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3181 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3182 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3183 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3184 | static void delete_finished_bg_job(struct pipe *pi) |
| 3185 | { |
| 3186 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3187 | pi->stopped_cmds = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3188 | free_pipe(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3189 | free(pi); |
| 3190 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3191 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3192 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3193 | /* Check to see if any processes have exited -- if they |
| 3194 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3195 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3196 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3197 | int attributes; |
| 3198 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3199 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3200 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3201 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3202 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3203 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3204 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3205 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 3206 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3207 | errno = 0; |
| 3208 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 3209 | // /* avoid doing syscall, nothing there anyway */ |
| 3210 | // return rcode; |
| 3211 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3212 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3213 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3214 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3215 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3216 | /* Do we do this right? |
| 3217 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3218 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3219 | * [3]+ Stopped sleep 20 | false |
| 3220 | * bash-3.00# echo $? |
| 3221 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3222 | * [hush 1.14.0: yes we do it right] |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3223 | */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3224 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3225 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3226 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3227 | int dead; |
| 3228 | |
| 3229 | // i = G.count_SIGCHLD; |
| 3230 | childpid = waitpid(-1, &status, attributes); |
| 3231 | if (childpid <= 0) { |
| 3232 | if (childpid && errno != ECHILD) |
| 3233 | bb_perror_msg("waitpid"); |
| 3234 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 3235 | // G.handled_SIGCHLD = i; |
| 3236 | break; |
| 3237 | } |
| 3238 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 3239 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3240 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3241 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3242 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3243 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 3244 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3245 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3246 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 3247 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3248 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3249 | childpid, WEXITSTATUS(status)); |
| 3250 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3251 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3252 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3253 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 3254 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 3255 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3256 | continue; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3257 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3258 | fg_pipe->cmds[i].pid = 0; |
| 3259 | fg_pipe->alive_cmds--; |
| 3260 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3261 | /* last process gives overall exitstatus */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3262 | /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */ |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3263 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3264 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3265 | /* bash prints killing signal's name for *last* |
| 3266 | * process in pipe (prints just newline for SIGINT). |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3267 | * Mimic this. Example: "sleep 5" + ^\ |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3268 | */ |
| 3269 | if (WIFSIGNALED(status)) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3270 | int sig = WTERMSIG(status); |
| 3271 | printf("%s\n", sig == SIGINT ? "" : get_signame(sig)); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3272 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3273 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3274 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3275 | fg_pipe->cmds[i].is_stopped = 1; |
| 3276 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3277 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3278 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 3279 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 3280 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3281 | /* All processes in fg pipe have exited or stopped */ |
| 3282 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 3283 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 3284 | * and "killall -STOP cat" */ |
| 3285 | if (G_interactive_fd) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3286 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3287 | if (fg_pipe->alive_cmds) |
| 3288 | insert_bg_job(fg_pipe); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3289 | #endif |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3290 | return rcode; |
| 3291 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3292 | } |
| 3293 | /* There are still running processes in the fg pipe */ |
| 3294 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3295 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3296 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3297 | } |
| 3298 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3299 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3300 | /* We asked to wait for bg or orphaned children */ |
| 3301 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3302 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3303 | for (i = 0; i < pi->num_cmds; i++) { |
| 3304 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3305 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3306 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3307 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3308 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 3309 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3310 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 3311 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3312 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3313 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3314 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3315 | pi->cmds[i].pid = 0; |
| 3316 | pi->alive_cmds--; |
| 3317 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3318 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 3319 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 3320 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3321 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3322 | } |
| 3323 | } else { |
| 3324 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3325 | pi->cmds[i].is_stopped = 1; |
| 3326 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3327 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3328 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3329 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3330 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3331 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 3332 | } |
| 3333 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3334 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3335 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 3336 | { |
| 3337 | pid_t p; |
| 3338 | int rcode = checkjobs(fg_pipe); |
| 3339 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3340 | p = getpgid(0); /* pgid of our process */ |
| 3341 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3342 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3343 | return rcode; |
| 3344 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3345 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3346 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3347 | /* Start all the jobs, but don't wait for anything to finish. |
| 3348 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3349 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3350 | * 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] | 3351 | * to finish to determine the exit status of the pipe. If the pipe |
| 3352 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3353 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3354 | * return value. |
| 3355 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3356 | * Returns -1 only if started some children. IOW: we have to |
| 3357 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3358 | * |
| 3359 | * The only case when we do not need to [v]fork is when the pipe |
| 3360 | * is single, non-backgrounded, non-subshell command. Examples: |
| 3361 | * cmd ; ... { list } ; ... |
| 3362 | * cmd && ... { list } && ... |
| 3363 | * cmd || ... { list } || ... |
| 3364 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 3365 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3366 | * 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] | 3367 | * |
| 3368 | * Cases when we must fork: |
| 3369 | * non-single: cmd | cmd |
| 3370 | * backgrounded: cmd & { list } & |
| 3371 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3372 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3373 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3374 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3375 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3376 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3377 | int nextin; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3378 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3379 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3380 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3381 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3382 | /* it is not always needed, but we aim to smaller code */ |
| 3383 | int squirrel[] = { -1, -1, -1 }; |
| 3384 | int rcode; |
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 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3387 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3388 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3389 | USE_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3390 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3391 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3392 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3393 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3394 | if (pi->num_cmds != 1 |
| 3395 | || pi->followup == PIPE_BG |
| 3396 | || command->grp_type == GRP_SUBSHELL |
| 3397 | ) { |
| 3398 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3399 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3400 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3401 | pi->alive_cmds = 1; |
| 3402 | |
| 3403 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 3404 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 3405 | |
| 3406 | if (command->group) { |
| 3407 | #if ENABLE_HUSH_FUNCTIONS |
| 3408 | if (command->grp_type == GRP_FUNCTION) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3409 | /* "executing" func () { list } */ |
| 3410 | struct function *funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3411 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 3412 | funcp = new_function(command->argv[0]); |
| 3413 | /* funcp->name is already set to argv[0] */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3414 | funcp->body = command->group; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3415 | #if !BB_MMU |
| 3416 | funcp->body_as_string = command->group_as_string; |
| 3417 | command->group_as_string = NULL; |
| 3418 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3419 | command->group = NULL; |
| 3420 | command->argv[0] = NULL; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3421 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 3422 | funcp->parent_cmd = command; |
| 3423 | command->child_func = funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3424 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3425 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 3426 | debug_leave(); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3427 | return EXIT_SUCCESS; |
| 3428 | } |
| 3429 | #endif |
| 3430 | /* { list } */ |
| 3431 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3432 | rcode = 1; /* exitcode if redir failed */ |
| 3433 | if (setup_redirects(command, squirrel) == 0) { |
| 3434 | debug_printf_exec(": run_list\n"); |
| 3435 | rcode = run_list(command->group) & 0xff; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3436 | } |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 3437 | restore_redirects(squirrel); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3438 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3439 | debug_leave(); |
| 3440 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3441 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3442 | } |
| 3443 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3444 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 3445 | { |
| 3446 | const struct built_in_command *x; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3447 | #if ENABLE_HUSH_FUNCTIONS |
| 3448 | const struct function *funcp; |
| 3449 | #else |
| 3450 | enum { funcp = 0 }; |
| 3451 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3452 | char **new_env = NULL; |
| 3453 | char **old_env = NULL; |
| 3454 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3455 | if (argv[command->assignment_cnt] == NULL) { |
| 3456 | /* Assignments, but no command */ |
| 3457 | /* Ensure redirects take effect. Try "a=t >file" */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3458 | rcode = setup_redirects(command, squirrel); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3459 | restore_redirects(squirrel); |
| 3460 | /* Set shell variables */ |
| 3461 | while (*argv) { |
| 3462 | p = expand_string_to_string(*argv); |
| 3463 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 3464 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 3465 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3466 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3467 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3468 | /* Do we need to flag set_local_var() errors? |
| 3469 | * "assignment to readonly var" and "putenv error" |
| 3470 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3471 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3472 | debug_leave(); |
| 3473 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3474 | return rcode; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3475 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3476 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3477 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3478 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3479 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3480 | x = find_builtin(argv_expanded[0]); |
| 3481 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3482 | funcp = NULL; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3483 | if (!x) |
| 3484 | funcp = find_function(argv_expanded[0]); |
| 3485 | #endif |
| 3486 | if (x || funcp) { |
| 3487 | if (!funcp) { |
| 3488 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 3489 | debug_printf("exec with redirects only\n"); |
| 3490 | rcode = setup_redirects(command, NULL); |
| 3491 | goto clean_up_and_ret1; |
| 3492 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3493 | } |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3494 | /* setup_redirects acts on file descriptors, not FILEs. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3495 | * This is perfect for work that comes after exec(). |
| 3496 | * Is it really safe for inline use? Experimentally, |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3497 | * things seem to work. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3498 | rcode = setup_redirects(command, squirrel); |
| 3499 | if (rcode == 0) { |
| 3500 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3501 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3502 | if (!funcp) { |
| 3503 | debug_printf_exec(": builtin '%s' '%s'...\n", |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3504 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3505 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3506 | fflush(NULL); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3507 | } |
| 3508 | #if ENABLE_HUSH_FUNCTIONS |
| 3509 | else { |
| 3510 | debug_printf_exec(": function '%s' '%s'...\n", |
| 3511 | funcp->name, argv_expanded[1]); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 3512 | rcode = run_function(funcp, argv_expanded) & 0xff; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3513 | } |
| 3514 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3515 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3516 | #if ENABLE_FEATURE_SH_STANDALONE |
| 3517 | clean_up_and_ret: |
| 3518 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3519 | restore_redirects(squirrel); |
| 3520 | free_strings_and_unsetenv(new_env, 1); |
| 3521 | putenv_all(old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3522 | /* Free the pointers, but the strings themselves |
| 3523 | * are in environ now, don't use free_strings! */ |
| 3524 | free(old_env); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3525 | clean_up_and_ret1: |
| 3526 | free(argv_expanded); |
| 3527 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3528 | debug_leave(); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3529 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 3530 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3531 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3532 | |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3533 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3534 | i = find_applet_by_name(argv_expanded[0]); |
| 3535 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3536 | rcode = setup_redirects(command, squirrel); |
| 3537 | if (rcode == 0) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3538 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 3539 | old_env = putenv_all_and_save_old(new_env); |
| 3540 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3541 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3542 | rcode = run_nofork_applet(i, argv_expanded); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3543 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3544 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3545 | } |
| 3546 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3547 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3548 | } |
| 3549 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3550 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3551 | /* NB: argv_expanded may already be created, and that |
| 3552 | * might include `cmd` runs! Do not rerun it! We *must* |
| 3553 | * use argv_expanded if it's non-NULL */ |
| 3554 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3555 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3556 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3557 | nextin = 0; |
| 3558 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3559 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3560 | struct fd_pair pipefds; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3561 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3562 | volatile nommu_save_t nommu_save; |
| 3563 | nommu_save.new_env = NULL; |
| 3564 | nommu_save.old_env = NULL; |
| 3565 | nommu_save.argv = NULL; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3566 | nommu_save.argv_from_re_execing = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3567 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3568 | command = &(pi->cmds[i]); |
| 3569 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3570 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 3571 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3572 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3573 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3574 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3575 | |
| 3576 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3577 | pipefds.rd = 0; |
| 3578 | pipefds.wr = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3579 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3580 | xpiped_pair(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3581 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3582 | command->pid = BB_MMU ? fork() : vfork(); |
| 3583 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3584 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3585 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3586 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3587 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3588 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3589 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3590 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3591 | pgrp = pi->pgrp; |
| 3592 | if (pgrp < 0) /* true for 1st process only */ |
| 3593 | pgrp = getpid(); |
| 3594 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3595 | /* We do it in *every* child, not just first, |
| 3596 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3597 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3598 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3599 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3600 | #endif |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3601 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 3602 | /* 1st cmd in backgrounded pipe |
| 3603 | * should have its stdin /dev/null'ed */ |
| 3604 | close(0); |
| 3605 | if (open(bb_dev_null, O_RDONLY)) |
| 3606 | xopen("/", O_RDONLY); |
| 3607 | } else { |
| 3608 | xmove_fd(nextin, 0); |
| 3609 | } |
| 3610 | xmove_fd(pipefds.wr, 1); |
| 3611 | if (pipefds.rd > 1) |
| 3612 | close(pipefds.rd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3613 | /* Like bash, explicit redirects override pipes, |
| 3614 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3615 | if (setup_redirects(command, NULL)) |
| 3616 | _exit(1); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3617 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3618 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3619 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 3620 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3621 | /* Stores to nommu_save list of env vars putenv'ed |
| 3622 | * (NOMMU, on MMU we don't need that) */ |
| 3623 | /* cast away volatility... */ |
| 3624 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3625 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3626 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3627 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3628 | /* parent or error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3629 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3630 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3631 | /* Clean up after vforked child */ |
| 3632 | free(nommu_save.argv); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3633 | free(nommu_save.argv_from_re_execing); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3634 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 3635 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3636 | /* Free the pointers, but the strings themselves |
| 3637 | * are in environ now, don't use free_strings! */ |
| 3638 | free(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3639 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3640 | free(argv_expanded); |
| 3641 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3642 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3643 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3644 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3645 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3646 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3647 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3648 | /* Second and next children need to know pid of first one */ |
| 3649 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3650 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3651 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3652 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3653 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3654 | if (i) |
| 3655 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3656 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3657 | close(pipefds.wr); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3658 | /* Pass read (output) pipe end to next iteration */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3659 | nextin = pipefds.rd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3660 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3661 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3662 | if (!pi->alive_cmds) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3663 | debug_leave(); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3664 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 3665 | return 1; |
| 3666 | } |
| 3667 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3668 | debug_leave(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3669 | 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] | 3670 | return -1; |
| 3671 | } |
| 3672 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3673 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3674 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3675 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3676 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3677 | [PIPE_SEQ] = "SEQ", |
| 3678 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3679 | [PIPE_OR ] = "OR" , |
| 3680 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3681 | }; |
| 3682 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3683 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3684 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3685 | [RES_IF ] = "IF" , |
| 3686 | [RES_THEN ] = "THEN" , |
| 3687 | [RES_ELIF ] = "ELIF" , |
| 3688 | [RES_ELSE ] = "ELSE" , |
| 3689 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3690 | #endif |
| 3691 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3692 | [RES_FOR ] = "FOR" , |
| 3693 | [RES_WHILE] = "WHILE", |
| 3694 | [RES_UNTIL] = "UNTIL", |
| 3695 | [RES_DO ] = "DO" , |
| 3696 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3697 | #endif |
| 3698 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3699 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3700 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3701 | #if ENABLE_HUSH_CASE |
| 3702 | [RES_CASE ] = "CASE" , |
| 3703 | [RES_MATCH] = "MATCH", |
| 3704 | [RES_CASEI] = "CASEI", |
| 3705 | [RES_ESAC ] = "ESAC" , |
| 3706 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3707 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3708 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3709 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3710 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3711 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 3712 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3713 | #if ENABLE_HUSH_FUNCTIONS |
| 3714 | "func()", |
| 3715 | #endif |
| 3716 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3717 | |
| 3718 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3719 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3720 | pin = 0; |
| 3721 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3722 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3723 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3724 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3725 | while (prn < pi->num_cmds) { |
| 3726 | struct command *command = &pi->cmds[prn]; |
| 3727 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3728 | |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3729 | fprintf(stderr, "%*s cmd %d assignment_cnt:%d", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3730 | lvl*2, "", prn, |
| 3731 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3732 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3733 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3734 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3735 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3736 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3737 | prn++; |
| 3738 | continue; |
| 3739 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3740 | if (argv) while (*argv) { |
| 3741 | fprintf(stderr, " '%s'", *argv); |
| 3742 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3743 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3744 | fprintf(stderr, "\n"); |
| 3745 | prn++; |
| 3746 | } |
| 3747 | pi = pi->next; |
| 3748 | pin++; |
| 3749 | } |
| 3750 | } |
| 3751 | #endif |
| 3752 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3753 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3754 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3755 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3756 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3757 | #if ENABLE_HUSH_CASE |
| 3758 | char *case_word = NULL; |
| 3759 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3760 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3761 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3762 | char *for_varname = NULL; |
| 3763 | char **for_lcur = NULL; |
| 3764 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3765 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3766 | smallint last_followup; |
| 3767 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3768 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3769 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3770 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3771 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3772 | #endif |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3773 | #if HAS_KEYWORDS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3774 | smallint rword; /* enum reserved_style */ |
| 3775 | smallint last_rword; /* ditto */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3776 | #endif |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3777 | |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3778 | 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] | 3779 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3780 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3781 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3782 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3783 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3784 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3785 | continue; |
| 3786 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3787 | if (cpipe->next == NULL) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3788 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3789 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3790 | 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] | 3791 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3792 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3793 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3794 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3795 | continue; |
| 3796 | /* 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] | 3797 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3798 | || 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] | 3799 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3800 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3801 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3802 | 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] | 3803 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3804 | } |
| 3805 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3806 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3807 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3808 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3809 | * in order to return, no direct "return" statements please. |
| 3810 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3811 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3812 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3813 | G.run_list_level++; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3814 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3815 | |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3816 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3817 | rword = RES_NONE; |
| 3818 | last_rword = RES_XXXX; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3819 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3820 | last_followup = PIPE_SEQ; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3821 | rcode = G.last_exitcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3822 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3823 | /* Go through list of pipes, (maybe) executing them. */ |
| 3824 | for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 3825 | if (G.flag_SIGINT) |
| 3826 | break; |
| 3827 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3828 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3829 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3830 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3831 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3832 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3833 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3834 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3835 | /* start of a loop: remember where loop starts */ |
| 3836 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3837 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3838 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3839 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3840 | /* Still in the same "if...", "then..." or "do..." branch? */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3841 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3842 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3843 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3844 | ) { |
| 3845 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3846 | * and we should not execute CMD */ |
| 3847 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3848 | last_followup = pi->followup; |
| 3849 | continue; |
| 3850 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3851 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3852 | last_followup = pi->followup; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3853 | IF_HAS_KEYWORDS(last_rword = rword;) |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3854 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3855 | if (cond_code) { |
| 3856 | if (rword == RES_THEN) { |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3857 | /* if false; then ... fi has exitcode 0! */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3858 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3859 | /* "if <false> THEN cmd": skip cmd */ |
| 3860 | continue; |
| 3861 | } |
| 3862 | } else { |
| 3863 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3864 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3865 | * skip cmd and all following ones */ |
| 3866 | break; |
| 3867 | } |
| 3868 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3869 | #endif |
| 3870 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3871 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3872 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3873 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3874 | |
| 3875 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3876 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3877 | }; /* encoded representation of "$@" */ |
| 3878 | static const char *const encoded_dollar_at_argv[] = { |
| 3879 | encoded_dollar_at, NULL |
| 3880 | }; /* argv list with one element: "$@" */ |
| 3881 | char **vals; |
| 3882 | |
| 3883 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3884 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3885 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3886 | if (!pi->next->cmds[0].argv) { |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3887 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3888 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3889 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3890 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3891 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3892 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3893 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3894 | debug_print_strings("for_list made from", vals); |
| 3895 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3896 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3897 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3898 | for_varname = pi->cmds[0].argv[0]; |
| 3899 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3900 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3901 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3902 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3903 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3904 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3905 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3906 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3907 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3908 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3909 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3910 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3911 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3912 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3913 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3914 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3915 | if (rword == RES_IN) { |
| 3916 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3917 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3918 | if (rword == RES_DONE) { |
| 3919 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3920 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3921 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3922 | #if ENABLE_HUSH_CASE |
| 3923 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3924 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3925 | continue; |
| 3926 | } |
| 3927 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3928 | char **argv; |
| 3929 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3930 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3931 | break; |
| 3932 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3933 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3934 | while (*argv) { |
| 3935 | char *pattern = expand_string_to_string(*argv); |
| 3936 | /* TODO: which FNM_xxx flags to use? */ |
| 3937 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3938 | free(pattern); |
| 3939 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3940 | free(case_word); /* make future "word)" stop */ |
| 3941 | case_word = NULL; |
| 3942 | break; |
| 3943 | } |
| 3944 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3945 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3946 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3947 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3948 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3949 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3950 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3951 | } |
| 3952 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3953 | /* Just pressing <enter> in shell should check for jobs. |
| 3954 | * OTOH, in non-interactive shell this is useless |
| 3955 | * and only leads to extra job checks */ |
| 3956 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3957 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3958 | goto check_jobs_and_continue; |
| 3959 | continue; |
| 3960 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3961 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3962 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3963 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3964 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3965 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3966 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3967 | { |
| 3968 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3969 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3970 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3971 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3972 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3973 | if (r != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 3974 | /* We ran a builtin, function, or group. |
| 3975 | * rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3976 | * and we don't need to wait for anything. */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3977 | G.last_exitcode = rcode; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3978 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3979 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3980 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3981 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3982 | if (G.flag_break_continue) { |
| 3983 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3984 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3985 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3986 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3987 | G.depth_break_continue--; |
| 3988 | if (G.depth_break_continue == 0) |
| 3989 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3990 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3991 | } /* 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] | 3992 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3993 | goto check_jobs_and_break; |
| 3994 | /* "continue": simulate end of loop */ |
| 3995 | rword = RES_DONE; |
| 3996 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3997 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3998 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 3999 | #if ENABLE_HUSH_FUNCTIONS |
| 4000 | if (G.flag_return_in_progress == 1) |
| 4001 | goto check_jobs_and_break; |
| 4002 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4003 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4004 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4005 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4006 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 4007 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4008 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4009 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4010 | if (G.run_list_level == 1) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 4011 | { |
| 4012 | debug_printf_exec("insert_bg_job1\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4013 | insert_bg_job(pi); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 4014 | debug_printf_exec("insert_bg_job2\n"); |
| 4015 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4016 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4017 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4018 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4019 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4020 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4021 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4022 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4023 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4024 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4025 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4026 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4027 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4028 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4029 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4030 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4031 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4032 | } |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4033 | G.last_exitcode = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4034 | } |
| 4035 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4036 | |
| 4037 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4038 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 4039 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4040 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4041 | #endif |
| 4042 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4043 | /* Beware of "while false; true; do ..."! */ |
| 4044 | if (pi->next && pi->next->res_word == RES_DO) { |
| 4045 | if (rword == RES_WHILE) { |
| 4046 | if (rcode) { |
| 4047 | /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4048 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4049 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
| 4050 | goto check_jobs_and_break; |
| 4051 | } |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 4052 | } |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4053 | if (rword == RES_UNTIL) { |
| 4054 | if (!rcode) { |
| 4055 | debug_printf_exec(": until expr is true: breaking\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4056 | check_jobs_and_break: |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4057 | checkjobs(NULL); |
| 4058 | break; |
| 4059 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4060 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4061 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4062 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 4063 | |
| 4064 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 4065 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4066 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4067 | |
| 4068 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4069 | G.run_list_level--; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4070 | #endif |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4071 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4072 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4073 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4074 | free(for_list); |
| 4075 | #endif |
| 4076 | #if ENABLE_HUSH_CASE |
| 4077 | free(case_word); |
| 4078 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4079 | debug_leave(); |
| 4080 | 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] | 4081 | return rcode; |
| 4082 | } |
| 4083 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4084 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4085 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4086 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4087 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4088 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4089 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4090 | 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] | 4091 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4092 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4093 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4094 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4095 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4096 | free_pipe_list(pi); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 4097 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4098 | return rcode; |
| 4099 | } |
| 4100 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4101 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 4102 | static struct pipe *new_pipe(void) |
| 4103 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4104 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 4105 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4106 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4107 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4108 | return pi; |
| 4109 | } |
| 4110 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4111 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 4112 | * if ctx->command is NULL. |
| 4113 | * No errors possible here. |
| 4114 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4115 | static int done_command(struct parse_context *ctx) |
| 4116 | { |
| 4117 | /* The command is really already in the pipe structure, so |
| 4118 | * advance the pipe counter and make a new, null command. */ |
| 4119 | struct pipe *pi = ctx->pipe; |
| 4120 | struct command *command = ctx->command; |
| 4121 | |
| 4122 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4123 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4124 | 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] | 4125 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4126 | } |
| 4127 | pi->num_cmds++; |
| 4128 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4129 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4130 | } else { |
| 4131 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 4132 | } |
| 4133 | |
| 4134 | /* Only real trickiness here is that the uncommitted |
| 4135 | * command structure is not counted in pi->num_cmds. */ |
| 4136 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4137 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 4138 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4139 | memset(command, 0, sizeof(*command)); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4140 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 4141 | } |
| 4142 | |
| 4143 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 4144 | { |
| 4145 | int not_null; |
| 4146 | |
| 4147 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 4148 | /* Close previous command */ |
| 4149 | not_null = done_command(ctx); |
| 4150 | ctx->pipe->followup = type; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4151 | #if HAS_KEYWORDS |
| 4152 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 4153 | ctx->ctx_inverted = 0; |
| 4154 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 4155 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4156 | |
| 4157 | /* Without this check, even just <enter> on command line generates |
| 4158 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4159 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4160 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4161 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4162 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4163 | #endif |
| 4164 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4165 | || ctx->ctx_res_w == RES_DONE |
| 4166 | || ctx->ctx_res_w == RES_FOR |
| 4167 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4168 | #endif |
| 4169 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4170 | || ctx->ctx_res_w == RES_ESAC |
| 4171 | #endif |
| 4172 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4173 | struct pipe *new_p; |
| 4174 | debug_printf_parse("done_pipe: adding new pipe: " |
| 4175 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 4176 | not_null, ctx->ctx_res_w); |
| 4177 | new_p = new_pipe(); |
| 4178 | ctx->pipe->next = new_p; |
| 4179 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4180 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4181 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4182 | * This is used to control execution. |
| 4183 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 4184 | * cases where variable or value happens to match a keyword): |
| 4185 | */ |
| 4186 | #if ENABLE_HUSH_LOOPS |
| 4187 | if (ctx->ctx_res_w == RES_FOR |
| 4188 | || ctx->ctx_res_w == RES_IN) |
| 4189 | ctx->ctx_res_w = RES_NONE; |
| 4190 | #endif |
| 4191 | #if ENABLE_HUSH_CASE |
| 4192 | if (ctx->ctx_res_w == RES_MATCH) |
| 4193 | ctx->ctx_res_w = RES_CASEI; |
| 4194 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4195 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4196 | /* Create the memory for command, roughly: |
| 4197 | * ctx->pipe->cmds = new struct command; |
| 4198 | * ctx->command = &ctx->pipe->cmds[0]; |
| 4199 | */ |
| 4200 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4201 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4202 | } |
| 4203 | debug_printf_parse("done_pipe return\n"); |
| 4204 | } |
| 4205 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4206 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4207 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4208 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4209 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4210 | /* Create the memory for command, roughly: |
| 4211 | * ctx->pipe->cmds = new struct command; |
| 4212 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4213 | */ |
| 4214 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4215 | } |
| 4216 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4217 | /* If a reserved word is found and processed, parse context is modified |
| 4218 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4219 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4220 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4221 | struct reserved_combo { |
| 4222 | char literal[6]; |
| 4223 | unsigned char res; |
| 4224 | unsigned char assignment_flag; |
| 4225 | int flag; |
| 4226 | }; |
| 4227 | enum { |
| 4228 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4229 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4230 | FLAG_IF = (1 << RES_IF ), |
| 4231 | FLAG_THEN = (1 << RES_THEN ), |
| 4232 | FLAG_ELIF = (1 << RES_ELIF ), |
| 4233 | FLAG_ELSE = (1 << RES_ELSE ), |
| 4234 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4235 | #endif |
| 4236 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4237 | FLAG_FOR = (1 << RES_FOR ), |
| 4238 | FLAG_WHILE = (1 << RES_WHILE), |
| 4239 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 4240 | FLAG_DO = (1 << RES_DO ), |
| 4241 | FLAG_DONE = (1 << RES_DONE ), |
| 4242 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4243 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4244 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4245 | FLAG_MATCH = (1 << RES_MATCH), |
| 4246 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4247 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4248 | FLAG_START = (1 << RES_XXXX ), |
| 4249 | }; |
| 4250 | |
| 4251 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 4252 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4253 | /* Mostly a list of accepted follow-up reserved words. |
| 4254 | * FLAG_END means we are done with the sequence, and are ready |
| 4255 | * to turn the compound list into a command. |
| 4256 | * FLAG_START means the word must start a new compound list. |
| 4257 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4258 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4259 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4260 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 4261 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 4262 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 4263 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 4264 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 4265 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4266 | #endif |
| 4267 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4268 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 4269 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4270 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4271 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 4272 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 4273 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4274 | #endif |
| 4275 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4276 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 4277 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4278 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4279 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4280 | const struct reserved_combo *r; |
| 4281 | |
| 4282 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 4283 | if (strcmp(word->data, r->literal) == 0) |
| 4284 | return r; |
| 4285 | } |
| 4286 | return NULL; |
| 4287 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4288 | /* Return 0: not a keyword, 1: keyword |
| 4289 | */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4290 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 4291 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4292 | #if ENABLE_HUSH_CASE |
| 4293 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4294 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4295 | }; |
| 4296 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4297 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4298 | |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4299 | if (word->o_quoted) |
| 4300 | return 0; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4301 | r = match_reserved_word(word); |
| 4302 | if (!r) |
| 4303 | return 0; |
| 4304 | |
| 4305 | 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] | 4306 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4307 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 4308 | /* "case word IN ..." - IN part starts first match part */ |
| 4309 | r = &reserved_match; |
| 4310 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4311 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4312 | if (r->flag == 0) { /* '!' */ |
| 4313 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4314 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4315 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4316 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4317 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4318 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4319 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4320 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4321 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4322 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4323 | old = xmalloc(sizeof(*old)); |
| 4324 | debug_printf_parse("push stack %p\n", old); |
| 4325 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4326 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4327 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4328 | } 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] | 4329 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4330 | ctx->ctx_res_w = RES_SNTX; |
| 4331 | return 1; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4332 | } else { |
| 4333 | /* "{...} fi" is ok. "{...} if" is not |
| 4334 | * Example: |
| 4335 | * if { echo foo; } then { echo bar; } fi */ |
| 4336 | if (ctx->command->group) |
| 4337 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4338 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4339 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4340 | ctx->ctx_res_w = r->res; |
| 4341 | ctx->old_flag = r->flag; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4342 | word->o_assignment = r->assignment_flag; |
| 4343 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4344 | if (ctx->old_flag & FLAG_END) { |
| 4345 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4346 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4347 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4348 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4349 | old = ctx->stack; |
| 4350 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4351 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4352 | #if !BB_MMU |
| 4353 | o_addstr(&old->as_string, ctx->as_string.data); |
| 4354 | o_free_unsafe(&ctx->as_string); |
| 4355 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 4356 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 4357 | old->command->group_as_string); |
| 4358 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4359 | *ctx = *old; /* physical copy */ |
| 4360 | free(old); |
| 4361 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4362 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4363 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4364 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4365 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4366 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4367 | * Normal return is 0. Syntax errors return 1. |
| 4368 | * Note: on return, word is reset, but not o_free'd! |
| 4369 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4370 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4371 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4372 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4373 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4374 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4375 | if (word->length == 0 && word->o_quoted == 0) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4376 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 4377 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4378 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4379 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4380 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4381 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 4382 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4383 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4384 | * "2.7 Redirection |
| 4385 | * ...the word that follows the redirection operator |
| 4386 | * shall be subjected to tilde expansion, parameter expansion, |
| 4387 | * command substitution, arithmetic expansion, and quote |
| 4388 | * removal. Pathname expansion shall not be performed |
| 4389 | * on the word by a non-interactive shell; an interactive |
| 4390 | * shell may perform it, but shall do so only when |
| 4391 | * the expansion would result in one word." |
| 4392 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4393 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4394 | /* Cater for >\file case: |
| 4395 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 4396 | * Same with heredocs: |
| 4397 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 4398 | */ |
| 4399 | unbackslash(ctx->pending_redirect->rd_filename); |
| 4400 | /* Is it <<"HEREDOC"? */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4401 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC |
| 4402 | && word->o_quoted |
| 4403 | ) { |
| 4404 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 4405 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4406 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4407 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4408 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4409 | /* If this word wasn't an assignment, next ones definitely |
| 4410 | * can't be assignments. Even if they look like ones. */ |
| 4411 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 4412 | && word->o_assignment != WORD_IS_KEYWORD |
| 4413 | ) { |
| 4414 | word->o_assignment = NOT_ASSIGNMENT; |
| 4415 | } else { |
| 4416 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
| 4417 | command->assignment_cnt++; |
| 4418 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 4419 | } |
| 4420 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4421 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4422 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 4423 | if (ctx->ctx_dsemicolon |
| 4424 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 4425 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 4426 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4427 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 4428 | ctx->ctx_dsemicolon = 0; |
| 4429 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4430 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4431 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4432 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4433 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 4434 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4435 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4436 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4437 | debug_printf_parse("checking '%s' for reserved-ness\n", word->data); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4438 | if (reserved_word(word, ctx)) { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4439 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4440 | debug_printf_parse("done_word return %d\n", |
| 4441 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4442 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4443 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4444 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4445 | #endif |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4446 | if (command->group) { |
| 4447 | /* "{ echo foo; } echo bar" - bad */ |
| 4448 | syntax_error_at(word->data); |
| 4449 | debug_printf_parse("done_word return 1: syntax error, " |
| 4450 | "groups and arglists don't mix\n"); |
| 4451 | return 1; |
| 4452 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4453 | 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] | 4454 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 4455 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4456 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4457 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4458 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4459 | char *p = word->data; |
| 4460 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 4461 | && (p[1] & 0x7f) == '@' |
| 4462 | && p[2] == SPECIAL_VAR_SYMBOL |
| 4463 | ) { |
| 4464 | p += 3; |
| 4465 | } |
| 4466 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4467 | /* saw no "$@", or not only "$@" but some |
| 4468 | * real text is there too */ |
| 4469 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4470 | * e.g. "", $empty"" etc to not disappear */ |
| 4471 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4472 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4473 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 4474 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4475 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4476 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4477 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4478 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4479 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4480 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4481 | if (word->o_quoted |
| 4482 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 4483 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4484 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4485 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4486 | return 1; |
| 4487 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4488 | /* Force FOR to have just one word (variable name) */ |
| 4489 | /* NB: basically, this makes hush see "for v in ..." |
| 4490 | * syntax as if it is "for v; in ...". FOR and IN become |
| 4491 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4492 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4493 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4494 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4495 | #if ENABLE_HUSH_CASE |
| 4496 | /* Force CASE to have just one word */ |
| 4497 | if (ctx->ctx_res_w == RES_CASE) { |
| 4498 | done_pipe(ctx, PIPE_SEQ); |
| 4499 | } |
| 4500 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4501 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4502 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4503 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4504 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4505 | return 0; |
| 4506 | } |
| 4507 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4508 | |
| 4509 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 4510 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4511 | * Return: |
| 4512 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 4513 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 4514 | * REDIRFD_TO_FILE if no & was seen, |
| 4515 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4516 | */ |
| 4517 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4518 | #define parse_redir_right_fd(as_string, input) \ |
| 4519 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4520 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4521 | 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] | 4522 | { |
| 4523 | int ch, d, ok; |
| 4524 | |
| 4525 | ch = i_peek(input); |
| 4526 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4527 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4528 | |
| 4529 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4530 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4531 | ch = i_peek(input); |
| 4532 | if (ch == '-') { |
| 4533 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4534 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4535 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4536 | } |
| 4537 | d = 0; |
| 4538 | ok = 0; |
| 4539 | while (ch != EOF && isdigit(ch)) { |
| 4540 | d = d*10 + (ch-'0'); |
| 4541 | ok = 1; |
| 4542 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4543 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4544 | ch = i_peek(input); |
| 4545 | } |
| 4546 | if (ok) return d; |
| 4547 | |
| 4548 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 4549 | |
| 4550 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4551 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4552 | } |
| 4553 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4554 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4555 | */ |
| 4556 | static int parse_redirect(struct parse_context *ctx, |
| 4557 | int fd, |
| 4558 | redir_type style, |
| 4559 | struct in_str *input) |
| 4560 | { |
| 4561 | struct command *command = ctx->command; |
| 4562 | struct redir_struct *redir; |
| 4563 | struct redir_struct **redirp; |
| 4564 | int dup_num; |
| 4565 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4566 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4567 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4568 | /* Check for a '>&1' type redirect */ |
| 4569 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4570 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4571 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4572 | } else { |
| 4573 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4574 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4575 | if (dup_num) { /* <<-... */ |
| 4576 | ch = i_getch(input); |
| 4577 | nommu_addchr(&ctx->as_string, ch); |
| 4578 | ch = i_peek(input); |
| 4579 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4580 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4581 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4582 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4583 | int ch = i_peek(input); |
| 4584 | if (ch == '|') { |
| 4585 | /* >|FILE redirect ("clobbering" >). |
| 4586 | * Since we do not support "set -o noclobber" yet, |
| 4587 | * >| and > are the same for now. Just eat |. |
| 4588 | */ |
| 4589 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4590 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4591 | } |
| 4592 | } |
| 4593 | |
| 4594 | /* Create a new redir_struct and append it to the linked list */ |
| 4595 | redirp = &command->redirects; |
| 4596 | while ((redir = *redirp) != NULL) { |
| 4597 | redirp = &(redir->next); |
| 4598 | } |
| 4599 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4600 | /* redir->next = NULL; */ |
| 4601 | /* redir->rd_filename = NULL; */ |
| 4602 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4603 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4604 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4605 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4606 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4607 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4608 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4609 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4610 | /* Erik had a check here that the file descriptor in question |
| 4611 | * is legit; I postpone that to "run time" |
| 4612 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4613 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4614 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4615 | } else { |
| 4616 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4617 | * end of the next parsed word. */ |
| 4618 | ctx->pending_redirect = redir; |
| 4619 | } |
| 4620 | return 0; |
| 4621 | } |
| 4622 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4623 | /* If a redirect is immediately preceded by a number, that number is |
| 4624 | * supposed to tell which file descriptor to redirect. This routine |
| 4625 | * looks for such preceding numbers. In an ideal world this routine |
| 4626 | * needs to handle all the following classes of redirects... |
| 4627 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4628 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4629 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4630 | * 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] | 4631 | * |
| 4632 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4633 | * "2.7 Redirection |
| 4634 | * ... If n is quoted, the number shall not be recognized as part of |
| 4635 | * the redirection expression. For example: |
| 4636 | * echo \2>a |
| 4637 | * writes the character 2 into file a" |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4638 | * We are getting it right by setting ->o_quoted on any \<char> |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4639 | * |
| 4640 | * A -1 return means no valid number was found, |
| 4641 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4642 | */ |
| 4643 | static int redirect_opt_num(o_string *o) |
| 4644 | { |
| 4645 | int num; |
| 4646 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4647 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4648 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4649 | num = bb_strtou(o->data, NULL, 10); |
| 4650 | if (errno || num < 0) |
| 4651 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4652 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4653 | return num; |
| 4654 | } |
| 4655 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4656 | #if BB_MMU |
| 4657 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4658 | fetch_till_str(input, word, skip_tabs) |
| 4659 | #endif |
| 4660 | static char *fetch_till_str(o_string *as_string, |
| 4661 | struct in_str *input, |
| 4662 | const char *word, |
| 4663 | int skip_tabs) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4664 | { |
| 4665 | o_string heredoc = NULL_O_STRING; |
| 4666 | int past_EOL = 0; |
| 4667 | int ch; |
| 4668 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4669 | goto jump_in; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4670 | while (1) { |
| 4671 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4672 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4673 | if (ch == '\n') { |
| 4674 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4675 | heredoc.data[past_EOL] = '\0'; |
| 4676 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4677 | return heredoc.data; |
| 4678 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4679 | do { |
| 4680 | o_addchr(&heredoc, ch); |
| 4681 | past_EOL = heredoc.length; |
| 4682 | jump_in: |
| 4683 | do { |
| 4684 | ch = i_getch(input); |
| 4685 | nommu_addchr(as_string, ch); |
| 4686 | } while (skip_tabs && ch == '\t'); |
| 4687 | } while (ch == '\n'); |
| 4688 | } |
| 4689 | if (ch == EOF) { |
| 4690 | o_free_unsafe(&heredoc); |
| 4691 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4692 | } |
| 4693 | o_addchr(&heredoc, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4694 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4695 | } |
| 4696 | } |
| 4697 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4698 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4699 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4700 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4701 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4702 | { |
| 4703 | struct pipe *pi = ctx->list_head; |
| 4704 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4705 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4706 | int i; |
| 4707 | struct command *cmd = pi->cmds; |
| 4708 | |
| 4709 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4710 | pi->num_cmds, |
| 4711 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4712 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4713 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4714 | |
| 4715 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4716 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4717 | while (redir) { |
| 4718 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4719 | char *p; |
| 4720 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4721 | redir->rd_type = REDIRECT_HEREDOC2; |
| 4722 | /* redir->dup is (ab)used to indicate <<- */ |
| 4723 | p = fetch_till_str(&ctx->as_string, input, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4724 | redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4725 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4726 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4727 | return 1; |
| 4728 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4729 | free(redir->rd_filename); |
| 4730 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4731 | heredoc_cnt--; |
| 4732 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4733 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4734 | } |
| 4735 | cmd++; |
| 4736 | } |
| 4737 | pi = pi->next; |
| 4738 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4739 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4740 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4741 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4742 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4743 | #endif |
| 4744 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4745 | } |
| 4746 | |
| 4747 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4748 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4749 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4750 | { |
| 4751 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4752 | int pid, channel[2]; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4753 | #if !BB_MMU |
| 4754 | char **to_free; |
| 4755 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4756 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 4757 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 4758 | pid = BB_MMU ? fork() : vfork(); |
| 4759 | if (pid < 0) |
| 4760 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4761 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4762 | if (pid == 0) { /* child */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4763 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4764 | /* Process substitution is not considered to be usual |
| 4765 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4766 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 4767 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 4768 | bb_signals(0 |
| 4769 | + (1 << SIGTSTP) |
| 4770 | + (1 << SIGTTIN) |
| 4771 | + (1 << SIGTTOU) |
| 4772 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4773 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 4774 | xmove_fd(channel[1], 1); |
| 4775 | /* Prevent it from trying to handle ctrl-z etc */ |
| 4776 | USE_HUSH_JOB(G.run_list_level = 1;) |
| 4777 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4778 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4779 | parse_and_run_string(s); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4780 | _exit(G.last_exitcode); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4781 | #else |
| 4782 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4783 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 4784 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4785 | * echo OK |
| 4786 | */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4787 | re_execute_shell(&to_free, |
| 4788 | s, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4789 | G.global_argv[0], |
| 4790 | G.global_argv + 1); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4791 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4792 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4793 | |
| 4794 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4795 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4796 | #if !BB_MMU |
| 4797 | free(to_free); |
| 4798 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4799 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 4800 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4801 | return pf; |
| 4802 | } |
| 4803 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4804 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4805 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4806 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4807 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4808 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4809 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4810 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4811 | pf = generate_stream_from_string(s); |
| 4812 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4813 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4814 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4815 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4816 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4817 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4818 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4819 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4820 | if (ch == '\n') { |
| 4821 | eol_cnt++; |
| 4822 | continue; |
| 4823 | } |
| 4824 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4825 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4826 | eol_cnt--; |
| 4827 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4828 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4829 | } |
| 4830 | |
| 4831 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4832 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 4833 | * 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] | 4834 | * Try these: |
| 4835 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 4836 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4837 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4838 | fclose(pf); |
| 4839 | debug_printf("closed FILE from child. return 0\n"); |
| 4840 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4841 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4842 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4843 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4844 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4845 | struct in_str *input, int ch) |
| 4846 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4847 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4848 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4849 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4850 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4851 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4852 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4853 | |
| 4854 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4855 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4856 | if (ch == '(' && !dest->o_quoted) { |
| 4857 | if (dest->length) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4858 | if (done_word(dest, ctx)) |
| 4859 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4860 | if (!command->argv) |
| 4861 | goto skip; /* (... */ |
| 4862 | if (command->argv[1]) { /* word word ... (... */ |
| 4863 | syntax_error_unexpected_ch('('); |
| 4864 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4865 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4866 | /* it is "word(..." or "word (..." */ |
| 4867 | do |
| 4868 | ch = i_getch(input); |
| 4869 | while (ch == ' ' || ch == '\t'); |
| 4870 | if (ch != ')') { |
| 4871 | syntax_error_unexpected_ch(ch); |
| 4872 | return 1; |
| 4873 | } |
| 4874 | nommu_addchr(&ctx->as_string, ch); |
| 4875 | do |
| 4876 | ch = i_getch(input); |
| 4877 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
| 4878 | if (ch != '{') { |
| 4879 | syntax_error_unexpected_ch(ch); |
| 4880 | return 1; |
| 4881 | } |
| 4882 | nommu_addchr(&ctx->as_string, ch); |
| 4883 | command->grp_type = GRP_FUNCTION; |
| 4884 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4885 | } |
| 4886 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4887 | if (command->argv /* word [word]{... */ |
| 4888 | || dest->length /* word{... */ |
| 4889 | || dest->o_quoted /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4890 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4891 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4892 | debug_printf_parse("parse_group return 1: " |
| 4893 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4894 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4895 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4896 | |
| 4897 | #if ENABLE_HUSH_FUNCTIONS |
| 4898 | skip: |
| 4899 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4900 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4901 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4902 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4903 | command->grp_type = GRP_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4904 | } else { |
| 4905 | /* bash does not allow "{echo...", requires whitespace */ |
| 4906 | ch = i_getch(input); |
| 4907 | if (ch != ' ' && ch != '\t' && ch != '\n') { |
| 4908 | syntax_error_unexpected_ch(ch); |
| 4909 | return 1; |
| 4910 | } |
| 4911 | nommu_addchr(&ctx->as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4912 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4913 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4914 | { |
| 4915 | #if !BB_MMU |
| 4916 | char *as_string = NULL; |
| 4917 | #endif |
| 4918 | pipe_list = parse_stream(&as_string, input, endch); |
| 4919 | #if !BB_MMU |
| 4920 | if (as_string) |
| 4921 | o_addstr(&ctx->as_string, as_string); |
| 4922 | #endif |
| 4923 | /* empty ()/{} or parse error? */ |
| 4924 | if (!pipe_list || pipe_list == ERR_PTR) { |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4925 | /* parse_stream already emitted error msg */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4926 | #if !BB_MMU |
| 4927 | free(as_string); |
| 4928 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4929 | debug_printf_parse("parse_group return 1: " |
| 4930 | "parse_stream returned %p\n", pipe_list); |
| 4931 | return 1; |
| 4932 | } |
| 4933 | command->group = pipe_list; |
| 4934 | #if !BB_MMU |
| 4935 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4936 | command->group_as_string = as_string; |
| 4937 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4938 | command->group_as_string); |
| 4939 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4940 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4941 | debug_printf_parse("parse_group return 0\n"); |
| 4942 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4943 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4944 | } |
| 4945 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4946 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4947 | /* Subroutines for copying $(...) and `...` things */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4948 | static void add_till_backquote(o_string *dest, struct in_str *input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4949 | /* '...' */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4950 | 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] | 4951 | { |
| 4952 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4953 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4954 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4955 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4956 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4957 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4958 | if (ch == '\'') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4959 | return; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4960 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4961 | } |
| 4962 | } |
| 4963 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4964 | 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] | 4965 | { |
| 4966 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4967 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4968 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4969 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4970 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4971 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4972 | if (ch == '"') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4973 | return; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4974 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4975 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4976 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4977 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4978 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4979 | if (ch == '`') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4980 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4981 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4982 | continue; |
| 4983 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4984 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4985 | } |
| 4986 | } |
| 4987 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4988 | * \` quoting. |
| 4989 | * "Within the backquoted style of command substitution, backslash |
| 4990 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4991 | * The search for the matching backquote shall be satisfied by the first |
| 4992 | * backquote found without a preceding backslash; during this search, |
| 4993 | * if a non-escaped backquote is encountered within a shell comment, |
| 4994 | * a here-document, an embedded command substitution of the $(command) |
| 4995 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4996 | * or double-quoted string that begins, but does not end, within the |
| 4997 | * "`...`" sequence produces undefined results." |
| 4998 | * Example Output |
| 4999 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 5000 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5001 | static void add_till_backquote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5002 | { |
| 5003 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5004 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5005 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5006 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5007 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5008 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5009 | if (ch == '`') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5010 | return; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5011 | if (ch == '\\') { |
| 5012 | /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5013 | int ch2 = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5014 | if (ch2 == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5015 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5016 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5017 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5018 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5019 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5020 | ch = ch2; |
| 5021 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5022 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5023 | } |
| 5024 | } |
| 5025 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 5026 | * quoting and nested ()s. |
| 5027 | * "With the $(command) style of command substitution, all characters |
| 5028 | * following the open parenthesis to the matching closing parenthesis |
| 5029 | * constitute the command. Any valid shell script can be used for command, |
| 5030 | * except a script consisting solely of redirections which produces |
| 5031 | * unspecified results." |
| 5032 | * Example Output |
| 5033 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 5034 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 5035 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 5036 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5037 | 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] | 5038 | { |
| 5039 | int count = 0; |
| 5040 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5041 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5042 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5043 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5044 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5045 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5046 | if (ch == '(') |
| 5047 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5048 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5049 | if (--count < 0) { |
| 5050 | if (!dbl) |
| 5051 | break; |
| 5052 | if (i_peek(input) == ')') { |
| 5053 | i_getch(input); |
| 5054 | break; |
| 5055 | } |
| 5056 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5057 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5058 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5059 | if (ch == '\'') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5060 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5061 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5062 | continue; |
| 5063 | } |
| 5064 | if (ch == '"') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5065 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5066 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5067 | continue; |
| 5068 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5069 | if (ch == '\\') { |
| 5070 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5071 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5072 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5073 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5074 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5075 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5076 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5077 | continue; |
| 5078 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5079 | } |
| 5080 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5081 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5082 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5083 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5084 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5085 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5086 | handle_dollar(dest, input) |
| 5087 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5088 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5089 | o_string *dest, |
| 5090 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5091 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5092 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5093 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5094 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5095 | |
| 5096 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5097 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5098 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5099 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 5100 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5101 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5102 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5103 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5104 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5105 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5106 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5107 | if (!isalnum(ch) && ch != '_') |
| 5108 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5109 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5110 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5111 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5112 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5113 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5114 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5115 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5116 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5117 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5118 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5119 | o_addchr(dest, ch | quote_mask); |
| 5120 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5121 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5122 | case '$': /* pid */ |
| 5123 | case '!': /* last bg pid */ |
| 5124 | case '?': /* last exit code */ |
| 5125 | case '#': /* number of args */ |
| 5126 | case '*': /* args */ |
| 5127 | case '@': /* args */ |
| 5128 | goto make_one_char_var; |
| 5129 | case '{': { |
| 5130 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5131 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5132 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
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 | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 5135 | /* TODO: maybe someone will try to escape the '}' */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5136 | expansion = 0; |
| 5137 | first_char = true; |
| 5138 | all_digits = false; |
| 5139 | while (1) { |
| 5140 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5141 | nommu_addchr(as_string, ch); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5142 | if (ch == '}') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5143 | break; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5144 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5145 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5146 | if (first_char) { |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5147 | if (ch == '#') { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5148 | /* ${#var}: length of var contents */ |
| 5149 | goto char_ok; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5150 | } |
| 5151 | if (isdigit(ch)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5152 | all_digits = true; |
| 5153 | goto char_ok; |
| 5154 | } |
| 5155 | } |
| 5156 | |
| 5157 | if (expansion < 2 |
| 5158 | && ( (all_digits && !isdigit(ch)) |
| 5159 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 5160 | ) |
| 5161 | ) { |
| 5162 | /* handle parameter expansions |
| 5163 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 5164 | */ |
| 5165 | if (first_char) |
| 5166 | goto case_default; |
| 5167 | switch (ch) { |
| 5168 | case ':': /* null modifier */ |
| 5169 | if (expansion == 0) { |
| 5170 | debug_printf_parse(": null modifier\n"); |
| 5171 | ++expansion; |
| 5172 | break; |
| 5173 | } |
| 5174 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5175 | case '#': /* remove prefix */ |
| 5176 | case '%': /* remove suffix */ |
| 5177 | if (expansion == 0) { |
| 5178 | debug_printf_parse(": remove suffix/prefix\n"); |
| 5179 | expansion = 2; |
| 5180 | break; |
| 5181 | } |
| 5182 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5183 | case '-': /* default value */ |
| 5184 | case '=': /* assign default */ |
| 5185 | case '+': /* alternative */ |
| 5186 | case '?': /* error indicate */ |
| 5187 | debug_printf_parse(": parameter expansion\n"); |
| 5188 | expansion = 2; |
| 5189 | break; |
| 5190 | default: |
| 5191 | case_default: |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5192 | syntax_error_unterm_str("${name}"); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5193 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 5194 | return 1; |
| 5195 | } |
| 5196 | } |
| 5197 | char_ok: |
| 5198 | debug_printf_parse(": '%c'\n", ch); |
| 5199 | o_addchr(dest, ch | quote_mask); |
| 5200 | quote_mask = 0; |
| 5201 | first_char = false; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5202 | } /* while (1) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5203 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5204 | break; |
| 5205 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5206 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5207 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5208 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5209 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5210 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5211 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5212 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5213 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5214 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5215 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5216 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5217 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5218 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5219 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5220 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5221 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5222 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5223 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5224 | if (as_string) { |
| 5225 | o_addstr(as_string, dest->data + pos); |
| 5226 | o_addchr(as_string, ')'); |
| 5227 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5228 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5229 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5230 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5231 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5232 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5233 | # endif |
| 5234 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5235 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5236 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5237 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5238 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5239 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5240 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5241 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5242 | if (as_string) { |
| 5243 | o_addstr(as_string, dest->data + pos); |
| 5244 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5245 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5246 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5247 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5248 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5249 | break; |
| 5250 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5251 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5252 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5253 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5254 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5255 | ch = i_peek(input); |
| 5256 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 5257 | ch = '_'; |
| 5258 | goto make_var; |
| 5259 | } |
| 5260 | /* else: it's $_ */ |
| 5261 | /* TODO: */ |
| 5262 | /* $_ Shell or shell script name; or last cmd name */ |
| 5263 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 5264 | default: |
| 5265 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5266 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5267 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5268 | return 0; |
| 5269 | } |
| 5270 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5271 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5272 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5273 | parse_stream_dquoted(dest, input, dquote_end) |
| 5274 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5275 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5276 | o_string *dest, |
| 5277 | struct in_str *input, |
| 5278 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5279 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5280 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5281 | int next; |
| 5282 | |
| 5283 | again: |
| 5284 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5285 | if (ch != EOF) |
| 5286 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5287 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5288 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5289 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5290 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 5291 | return 0; |
| 5292 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5293 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5294 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5295 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5296 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5297 | } |
| 5298 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5299 | if (ch != '\n') { |
| 5300 | next = i_peek(input); |
| 5301 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5302 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5303 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5304 | if (ch == '\\') { |
| 5305 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5306 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5307 | xfunc_die(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5308 | } |
| 5309 | /* bash: |
| 5310 | * "The backslash retains its special meaning [in "..."] |
| 5311 | * only when followed by one of the following characters: |
| 5312 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 5313 | * within double quotes by preceding it with a backslash. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5314 | */ |
| 5315 | if (strchr("$`\"\\", next) != NULL) { |
| 5316 | o_addqchr(dest, i_getch(input)); |
| 5317 | } else { |
| 5318 | o_addqchr(dest, '\\'); |
| 5319 | } |
| 5320 | goto again; |
| 5321 | } |
| 5322 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5323 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5324 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 5325 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5326 | return 1; |
| 5327 | } |
| 5328 | goto again; |
| 5329 | } |
| 5330 | #if ENABLE_HUSH_TICK |
| 5331 | if (ch == '`') { |
| 5332 | //int pos = dest->length; |
| 5333 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5334 | o_addchr(dest, 0x80 | '`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5335 | add_till_backquote(dest, input); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5336 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5337 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5338 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5339 | } |
| 5340 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5341 | o_addQchr(dest, ch); |
| 5342 | if (ch == '=' |
| 5343 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 5344 | || dest->o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5345 | && is_well_formed_var_name(dest->data, '=') |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5346 | ) { |
| 5347 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 5348 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5349 | goto again; |
| 5350 | } |
| 5351 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5352 | /* |
| 5353 | * Scan input until EOF or end_trigger char. |
| 5354 | * Return a list of pipes to execute, or NULL on EOF |
| 5355 | * or if end_trigger character is met. |
| 5356 | * On syntax error, exit is shell is not interactive, |
| 5357 | * reset parsing machinery and start parsing anew, |
| 5358 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5359 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5360 | static struct pipe *parse_stream(char **pstring, |
| 5361 | struct in_str *input, |
| 5362 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5363 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5364 | struct parse_context ctx; |
| 5365 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5366 | int is_in_dquote; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5367 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5368 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5369 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5370 | * 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] | 5371 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 5372 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5373 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 5374 | end_trigger ? : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5375 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5376 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5377 | G.ifs = get_local_var_value("IFS"); |
| 5378 | if (G.ifs == NULL) |
| 5379 | G.ifs = " \t\n"; |
| 5380 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5381 | reset: |
| 5382 | #if ENABLE_HUSH_INTERACTIVE |
| 5383 | input->promptmode = 0; /* PS1 */ |
| 5384 | #endif |
| 5385 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 5386 | initialize_context(&ctx); |
| 5387 | is_in_dquote = 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5388 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5389 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5390 | const char *is_ifs; |
| 5391 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5392 | int ch; |
| 5393 | int next; |
| 5394 | int redir_fd; |
| 5395 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5396 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5397 | if (is_in_dquote) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5398 | /* dest.o_quoted = 1; - already is (see below) */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5399 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5400 | goto parse_error; |
| 5401 | } |
| 5402 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5403 | is_in_dquote = 0; |
| 5404 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5405 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5406 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5407 | ch, ch, dest.o_escape); |
| 5408 | if (ch == EOF) { |
| 5409 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5410 | |
| 5411 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5412 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5413 | xfunc_die(); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5414 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5415 | if (done_word(&dest, &ctx)) { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5416 | xfunc_die(); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5417 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5418 | o_free(&dest); |
| 5419 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5420 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5421 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5422 | /* (this makes bare "&" cmd a no-op. |
| 5423 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5424 | if (pi->num_cmds == 0 |
| 5425 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 5426 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5427 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5428 | pi = NULL; |
| 5429 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5430 | #if !BB_MMU |
| 5431 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5432 | if (pstring) |
| 5433 | *pstring = ctx.as_string.data; |
| 5434 | else |
| 5435 | o_free_unsafe(&ctx.as_string); |
| 5436 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5437 | debug_leave(); |
| 5438 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5439 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5440 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5441 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5442 | is_ifs = strchr(G.ifs, ch); |
| 5443 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
| 5444 | "\\$\"" USE_HUSH_TICK("`") /* always special */ |
| 5445 | , ch); |
| 5446 | |
| 5447 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5448 | ordinary_char: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5449 | o_addQchr(&dest, ch); |
| 5450 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 5451 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5452 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5453 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5454 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5455 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5456 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5457 | continue; |
| 5458 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5459 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5460 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5461 | if (done_word(&dest, &ctx)) { |
| 5462 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5463 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5464 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5465 | #if ENABLE_HUSH_CASE |
| 5466 | /* "case ... in <newline> word) ..." - |
| 5467 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5468 | if (ctx.command->argv == NULL |
| 5469 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5470 | ) { |
| 5471 | continue; |
| 5472 | } |
| 5473 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5474 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5475 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5476 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5477 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5478 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5479 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5480 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5481 | heredoc_cnt = 0; |
| 5482 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5483 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5484 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 5485 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5486 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5487 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5488 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5489 | |
| 5490 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 5491 | * } is an ordinary char in this case, even inside { cmd; } |
| 5492 | * Pathological example: { ""}; } should exec "}" cmd |
| 5493 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5494 | if (ch == '}') { |
| 5495 | if (!IS_NULL_CMD(ctx.command) /* cmd } */ |
| 5496 | || dest.length != 0 /* word} */ |
| 5497 | || dest.o_quoted /* ""} */ |
| 5498 | ) { |
| 5499 | goto ordinary_char; |
| 5500 | } |
| 5501 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
| 5502 | goto skip_end_trigger; |
| 5503 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5504 | } |
| 5505 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5506 | if (end_trigger && end_trigger == ch |
| 5507 | && (heredoc_cnt == 0 || end_trigger != ';') |
| 5508 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5509 | if (heredoc_cnt) { |
| 5510 | /* This is technically valid: |
| 5511 | * { cat <<HERE; }; echo Ok |
| 5512 | * heredoc |
| 5513 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5514 | * HERE |
| 5515 | * but we don't support this. |
| 5516 | * We require heredoc to be in enclosing {}/(), |
| 5517 | * if any. |
| 5518 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5519 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5520 | goto parse_error; |
| 5521 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5522 | if (done_word(&dest, &ctx)) { |
| 5523 | goto parse_error; |
| 5524 | } |
| 5525 | done_pipe(&ctx, PIPE_SEQ); |
| 5526 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5527 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5528 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5529 | 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] | 5530 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5531 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5532 | #if !BB_MMU |
| 5533 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5534 | if (pstring) |
| 5535 | *pstring = ctx.as_string.data; |
| 5536 | else |
| 5537 | o_free_unsafe(&ctx.as_string); |
| 5538 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5539 | debug_leave(); |
| 5540 | debug_printf_parse("parse_stream return %p: " |
| 5541 | "end_trigger char found\n", |
| 5542 | ctx.list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5543 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5544 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5545 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5546 | skip_end_trigger: |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5547 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5548 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5549 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5550 | next = '\0'; |
| 5551 | if (ch != '\n') { |
| 5552 | next = i_peek(input); |
| 5553 | } |
| 5554 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5555 | /* Catch <, > before deciding whether this word is |
| 5556 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5557 | switch (ch) { |
| 5558 | case '>': |
| 5559 | redir_fd = redirect_opt_num(&dest); |
| 5560 | if (done_word(&dest, &ctx)) { |
| 5561 | goto parse_error; |
| 5562 | } |
| 5563 | redir_style = REDIRECT_OVERWRITE; |
| 5564 | if (next == '>') { |
| 5565 | redir_style = REDIRECT_APPEND; |
| 5566 | ch = i_getch(input); |
| 5567 | nommu_addchr(&ctx.as_string, ch); |
| 5568 | } |
| 5569 | #if 0 |
| 5570 | else if (next == '(') { |
| 5571 | syntax_error(">(process) not supported"); |
| 5572 | goto parse_error; |
| 5573 | } |
| 5574 | #endif |
| 5575 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5576 | goto parse_error; |
| 5577 | continue; /* back to top of while (1) */ |
| 5578 | case '<': |
| 5579 | redir_fd = redirect_opt_num(&dest); |
| 5580 | if (done_word(&dest, &ctx)) { |
| 5581 | goto parse_error; |
| 5582 | } |
| 5583 | redir_style = REDIRECT_INPUT; |
| 5584 | if (next == '<') { |
| 5585 | redir_style = REDIRECT_HEREDOC; |
| 5586 | heredoc_cnt++; |
| 5587 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5588 | ch = i_getch(input); |
| 5589 | nommu_addchr(&ctx.as_string, ch); |
| 5590 | } else if (next == '>') { |
| 5591 | redir_style = REDIRECT_IO; |
| 5592 | ch = i_getch(input); |
| 5593 | nommu_addchr(&ctx.as_string, ch); |
| 5594 | } |
| 5595 | #if 0 |
| 5596 | else if (next == '(') { |
| 5597 | syntax_error("<(process) not supported"); |
| 5598 | goto parse_error; |
| 5599 | } |
| 5600 | #endif |
| 5601 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5602 | goto parse_error; |
| 5603 | continue; /* back to top of while (1) */ |
| 5604 | } |
| 5605 | |
| 5606 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5607 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5608 | && !ctx.pending_redirect |
| 5609 | ) { |
| 5610 | /* ch is a special char and thus this word |
| 5611 | * cannot be an assignment */ |
| 5612 | dest.o_assignment = NOT_ASSIGNMENT; |
| 5613 | } |
| 5614 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5615 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5616 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5617 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5618 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5619 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5620 | if (ch == EOF || ch == '\n') |
| 5621 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5622 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5623 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5624 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5625 | nommu_addchr(&ctx.as_string, '\n'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5626 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5627 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5628 | } |
| 5629 | break; |
| 5630 | case '\\': |
| 5631 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5632 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5633 | xfunc_die(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5634 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5635 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5636 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5637 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5638 | o_addchr(&dest, ch); |
| 5639 | /* Example: echo Hello \2>file |
| 5640 | * we need to know that word 2 is quoted */ |
| 5641 | dest.o_quoted = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5642 | break; |
| 5643 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5644 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5645 | debug_printf_parse("parse_stream parse error: " |
| 5646 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5647 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5648 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5649 | break; |
| 5650 | case '\'': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5651 | dest.o_quoted = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5652 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5653 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5654 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5655 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5656 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5657 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5658 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5659 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5660 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5661 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5662 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5663 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5664 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5665 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5666 | break; |
| 5667 | case '"': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5668 | dest.o_quoted = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5669 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5670 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5671 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5672 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5673 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5674 | case '`': { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5675 | #if !BB_MMU |
| 5676 | int pos; |
| 5677 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5678 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5679 | o_addchr(&dest, '`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5680 | #if !BB_MMU |
| 5681 | pos = dest.length; |
| 5682 | #endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5683 | add_till_backquote(&dest, input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5684 | #if !BB_MMU |
| 5685 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5686 | o_addchr(&ctx.as_string, '`'); |
| 5687 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5688 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5689 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5690 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5691 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5692 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5693 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5694 | #if ENABLE_HUSH_CASE |
| 5695 | case_semi: |
| 5696 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5697 | if (done_word(&dest, &ctx)) { |
| 5698 | goto parse_error; |
| 5699 | } |
| 5700 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5701 | #if ENABLE_HUSH_CASE |
| 5702 | /* Eat multiple semicolons, detect |
| 5703 | * whether it means something special */ |
| 5704 | while (1) { |
| 5705 | ch = i_peek(input); |
| 5706 | if (ch != ';') |
| 5707 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5708 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5709 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5710 | if (ctx.ctx_res_w == RES_CASEI) { |
| 5711 | ctx.ctx_dsemicolon = 1; |
| 5712 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5713 | break; |
| 5714 | } |
| 5715 | } |
| 5716 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5717 | new_cmd: |
| 5718 | /* We just finished a cmd. New one may start |
| 5719 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5720 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5721 | break; |
| 5722 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5723 | if (done_word(&dest, &ctx)) { |
| 5724 | goto parse_error; |
| 5725 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5726 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5727 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5728 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5729 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5730 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5731 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5732 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5733 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5734 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5735 | if (done_word(&dest, &ctx)) { |
| 5736 | goto parse_error; |
| 5737 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5738 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5739 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5740 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5741 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5742 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5743 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5744 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5745 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5746 | } else { |
| 5747 | /* we could pick up a file descriptor choice here |
| 5748 | * with redirect_opt_num(), but bash doesn't do it. |
| 5749 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5750 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5751 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5752 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5753 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5754 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5755 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5756 | if (ctx.ctx_res_w == RES_MATCH |
| 5757 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5758 | && dest.length == 0 /* not word(... */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5759 | && dest.o_quoted == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5760 | ) { |
| 5761 | continue; |
| 5762 | } |
| 5763 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5764 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5765 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5766 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5767 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5768 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5769 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5770 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5771 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5772 | goto case_semi; |
| 5773 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5774 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5775 | /* proper use of this character is caught by end_trigger: |
| 5776 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5777 | * and it will match } earlier (not here). */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 5778 | syntax_error_unexpected_ch(ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5779 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5780 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5781 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5782 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5783 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5784 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5785 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5786 | parse_error: |
| 5787 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5788 | struct parse_context *pctx; |
| 5789 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5790 | |
| 5791 | /* Clean up allocated tree. |
| 5792 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5793 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 5794 | * while if false; then false; fi do break; done |
| 5795 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5796 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5797 | * Samples to catch leaks at execution: |
| 5798 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 5799 | * 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] | 5800 | */ |
| 5801 | pctx = &ctx; |
| 5802 | do { |
| 5803 | /* Update pipe/command counts, |
| 5804 | * otherwise freeing may miss some */ |
| 5805 | done_pipe(pctx, PIPE_SEQ); |
| 5806 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5807 | pctx->list_head, pctx); |
| 5808 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5809 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5810 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5811 | #if !BB_MMU |
| 5812 | o_free_unsafe(&pctx->as_string); |
| 5813 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5814 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5815 | if (pctx != &ctx) { |
| 5816 | free(pctx); |
| 5817 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5818 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5819 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5820 | /* Free text, clear all dest fields */ |
| 5821 | o_free(&dest); |
| 5822 | /* If we are not in top-level parse, we return, |
| 5823 | * our caller will propagate error. |
| 5824 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5825 | if (end_trigger != ';') { |
| 5826 | #if !BB_MMU |
| 5827 | if (pstring) |
| 5828 | *pstring = NULL; |
| 5829 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5830 | debug_leave(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5831 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5832 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5833 | /* Discard cached input, force prompt */ |
| 5834 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5835 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5836 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5837 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5838 | } |
| 5839 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5840 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5841 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 5842 | * end_trigger controls how often we stop parsing |
| 5843 | * NUL: parse all, execute, return |
| 5844 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 5845 | */ |
| 5846 | 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] | 5847 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5848 | while (1) { |
| 5849 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5850 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5851 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5852 | if (!pipe_list) /* EOF */ |
| 5853 | break; |
| 5854 | debug_print_tree(pipe_list, 0); |
| 5855 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 5856 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5857 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5858 | } |
| 5859 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5860 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5861 | { |
| 5862 | struct in_str input; |
| 5863 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5864 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5865 | } |
| 5866 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5867 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5868 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5869 | struct in_str input; |
| 5870 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5871 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5872 | } |
| 5873 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5874 | /* Called a few times only (or even once if "sh -c") */ |
| 5875 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5876 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5877 | unsigned sig; |
| 5878 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5879 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5880 | mask = (1 << SIGQUIT); |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 5881 | if (G_interactive_fd) |
| 5882 | mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5883 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5884 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5885 | if (!second_time) |
| 5886 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 5887 | sig = 0; |
| 5888 | while (mask) { |
| 5889 | if (mask & 1) |
| 5890 | sigaddset(&G.blocked_set, sig); |
| 5891 | mask >>= 1; |
| 5892 | sig++; |
| 5893 | } |
| 5894 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5895 | |
| 5896 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 5897 | second_time ? NULL : &G.inherited_set); |
| 5898 | /* POSIX allows shell to re-enable SIGCHLD |
| 5899 | * even if it was SIG_IGN on entry */ |
| 5900 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5901 | if (!second_time) |
| 5902 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 5903 | } |
| 5904 | |
| 5905 | #if ENABLE_HUSH_JOB |
| 5906 | /* helper */ |
| 5907 | static void maybe_set_to_sigexit(int sig) |
| 5908 | { |
| 5909 | void (*handler)(int); |
| 5910 | /* non_DFL_mask'ed signals are, well, masked, |
| 5911 | * no need to set handler for them. |
| 5912 | */ |
| 5913 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 5914 | handler = signal(sig, sigexit); |
| 5915 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 5916 | signal(sig, handler); |
| 5917 | } |
| 5918 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5919 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5920 | static void set_fatal_handlers(void) |
| 5921 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 5922 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5923 | if (HUSH_DEBUG) { |
| 5924 | maybe_set_to_sigexit(SIGILL ); |
| 5925 | maybe_set_to_sigexit(SIGFPE ); |
| 5926 | maybe_set_to_sigexit(SIGBUS ); |
| 5927 | maybe_set_to_sigexit(SIGSEGV); |
| 5928 | maybe_set_to_sigexit(SIGTRAP); |
| 5929 | } /* else: hush is perfect. what SEGV? */ |
| 5930 | maybe_set_to_sigexit(SIGABRT); |
| 5931 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 5932 | maybe_set_to_sigexit(SIGPIPE); |
| 5933 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 5934 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5935 | * if we aren't interactive... but in this case |
| 5936 | * 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] | 5937 | /*maybe_set_to_sigexit(SIGHUP );*/ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5938 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 5939 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 5940 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5941 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5942 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5943 | static int set_mode(const char cstate, const char mode) |
| 5944 | { |
| 5945 | int state = (cstate == '-' ? 1 : 0); |
| 5946 | switch (mode) { |
| 5947 | case 'n': G.fake_mode = state; break; |
| 5948 | case 'x': /*G.debug_mode = state;*/ break; |
| 5949 | default: return EXIT_FAILURE; |
| 5950 | } |
| 5951 | return EXIT_SUCCESS; |
| 5952 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5953 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 5954 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 5955 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5956 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5957 | static const struct variable const_shell_ver = { |
| 5958 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5959 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5960 | .max_len = 1, /* 0 can provoke free(name) */ |
| 5961 | .flg_export = 1, |
| 5962 | .flg_read_only = 1, |
| 5963 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5964 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5965 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5966 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5967 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 5968 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 5969 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5970 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5971 | G.last_exitcode = EXIT_SUCCESS; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5972 | #if !BB_MMU |
| 5973 | G.argv0_for_re_execing = argv[0]; |
| 5974 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5975 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5976 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 5977 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5978 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5979 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 5980 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5981 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5982 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5983 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5984 | if (e) while (*e) { |
| 5985 | char *value = strchr(*e, '='); |
| 5986 | if (value) { /* paranoia */ |
| 5987 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 5988 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5989 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5990 | cur_var->max_len = strlen(*e); |
| 5991 | cur_var->flg_export = 1; |
| 5992 | } |
| 5993 | e++; |
| 5994 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5995 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5996 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5997 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5998 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 5999 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6000 | G.global_argc = argc; |
| 6001 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 6002 | /* Initialize some more globals to non-zero values */ |
| 6003 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6004 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 6005 | if (ENABLE_FEATURE_EDITING) |
| 6006 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6007 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6008 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 6009 | |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 6010 | if (setjmp(die_jmp)) { |
| 6011 | /* xfunc has failed! die die die */ |
| 6012 | /* no EXIT traps, this is an escape hatch! */ |
| 6013 | G.exiting = 1; |
| 6014 | hush_exit(xfunc_error_retval); |
| 6015 | } |
| 6016 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6017 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6018 | * block_signals(0) if we are going to execute "sh <script>", |
| 6019 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6020 | * If we later decide that we are interactive, we run block_signals(0) |
| 6021 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 6022 | * in order to intercept (more) signals. |
| 6023 | */ |
| 6024 | |
| 6025 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6026 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6027 | while (1) { |
| 6028 | opt = getopt(argc, argv, "c:xins" |
| 6029 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6030 | "<:$:R:V:" |
| 6031 | # if ENABLE_HUSH_FUNCTIONS |
| 6032 | "F:" |
| 6033 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6034 | #endif |
| 6035 | ); |
| 6036 | if (opt <= 0) |
| 6037 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6038 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6039 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6040 | if (!G.root_pid) |
| 6041 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6042 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 6043 | if (!argv[optind]) { |
| 6044 | /* -c 'script' (no params): prevent empty $0 */ |
| 6045 | *--G.global_argv = argv[0]; |
| 6046 | optind--; |
| 6047 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6048 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6049 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6050 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6051 | goto final_return; |
| 6052 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 6053 | /* Well, we cannot just declare interactiveness, |
| 6054 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6055 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6056 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6057 | case 's': |
| 6058 | /* "-s" means "read from stdin", but this is how we always |
| 6059 | * operate, so simply do nothing here. */ |
| 6060 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6061 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 6062 | case '<': /* "big heredoc" support */ |
| 6063 | full_write(STDOUT_FILENO, optarg, strlen(optarg)); |
| 6064 | _exit(0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6065 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6066 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 6067 | optarg++; |
| 6068 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 6069 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6070 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6071 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6072 | optarg++; |
| 6073 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6074 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6075 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6076 | case 'R': |
| 6077 | case 'V': |
| 6078 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 6079 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6080 | # if ENABLE_HUSH_FUNCTIONS |
| 6081 | case 'F': { |
| 6082 | struct function *funcp = new_function(optarg); |
| 6083 | /* funcp->name is already set to optarg */ |
| 6084 | /* funcp->body is set to NULL. It's a special case. */ |
| 6085 | funcp->body_as_string = argv[optind]; |
| 6086 | optind++; |
| 6087 | break; |
| 6088 | } |
| 6089 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6090 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6091 | case 'n': |
| 6092 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6093 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6094 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6095 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6096 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6097 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 6098 | " or: sh -c command [args]...\n\n"); |
| 6099 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6100 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6101 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6102 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6103 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6104 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6105 | |
| 6106 | if (!G.root_pid) |
| 6107 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6108 | |
| 6109 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6110 | if (argv[0] && argv[0][0] == '-') { |
| 6111 | FILE *input; |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 6112 | /* TODO: what should argv be while sourcing /etc/profile? */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6113 | debug_printf("sourcing /etc/profile\n"); |
| 6114 | input = fopen_for_read("/etc/profile"); |
| 6115 | if (input != NULL) { |
| 6116 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6117 | block_signals(0); /* 0: called 1st time */ |
| 6118 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6119 | parse_and_run_file(input); |
| 6120 | fclose(input); |
| 6121 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6122 | /* bash: after sourcing /etc/profile, |
| 6123 | * tries to source (in the given order): |
| 6124 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 6125 | * stopping of first found. --noprofile turns this off. |
| 6126 | * bash also sources ~/.bash_logout on exit. |
| 6127 | * If called as sh, skips .bash_XXX files. |
| 6128 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6129 | } |
| 6130 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6131 | if (argv[optind]) { |
| 6132 | FILE *input; |
| 6133 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6134 | * "bash <script>" (which is never interactive (unless -i?)) |
| 6135 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6136 | * If called as sh, does the same but with $ENV. |
| 6137 | */ |
| 6138 | debug_printf("running script '%s'\n", argv[optind]); |
| 6139 | G.global_argv = argv + optind; |
| 6140 | G.global_argc = argc - optind; |
| 6141 | input = xfopen_for_read(argv[optind]); |
| 6142 | close_on_exec_on(fileno(input)); |
| 6143 | if (!signal_mask_is_inited) |
| 6144 | block_signals(0); /* 0: called 1st time */ |
| 6145 | parse_and_run_file(input); |
| 6146 | #if ENABLE_FEATURE_CLEAN_UP |
| 6147 | fclose(input); |
| 6148 | #endif |
| 6149 | goto final_return; |
| 6150 | } |
| 6151 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6152 | /* Up to here, shell was non-interactive. Now it may become one. |
| 6153 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 6154 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6155 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6156 | /* 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] | 6157 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 6158 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6159 | * no arguments remaining or the -s flag given |
| 6160 | * standard input is a terminal |
| 6161 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6162 | * Refer to Posix.2, the description of the 'sh' utility. |
| 6163 | */ |
| 6164 | #if ENABLE_HUSH_JOB |
| 6165 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6166 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6167 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6168 | //TODO: "interactive" and "have job control" are two different things. |
| 6169 | //If tcgetpgrp fails here, "have job control" is false, but "interactive" |
| 6170 | //should stay on! Currently, we mix these into one. |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6171 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6172 | /* try to dup stdin to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6173 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6174 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6175 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6176 | G_interactive_fd = dup(STDIN_FILENO); |
| 6177 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6178 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6179 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6180 | } |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6181 | // TODO: track & disallow any attempts of user |
| 6182 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6183 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6184 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6185 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6186 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6187 | pid_t shell_pgrp; |
| 6188 | |
| 6189 | /* We are indeed interactive shell, and we will perform |
| 6190 | * job control. Setting up for that. */ |
| 6191 | |
| 6192 | close_on_exec_on(G_interactive_fd); |
| 6193 | /* If we were run as 'hush &', sleep until we are |
| 6194 | * in the foreground (tty pgrp == our pgrp). |
| 6195 | * If we get started under a job aware app (like bash), |
| 6196 | * make sure we are now in charge so we don't fight over |
| 6197 | * who gets the foreground */ |
| 6198 | while (1) { |
| 6199 | shell_pgrp = getpgrp(); |
| 6200 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 6201 | if (G.saved_tty_pgrp == shell_pgrp) |
| 6202 | break; |
| 6203 | /* send TTIN to ourself (should stop us) */ |
| 6204 | kill(- shell_pgrp, SIGTTIN); |
| 6205 | } |
| 6206 | /* Block some signals */ |
| 6207 | block_signals(signal_mask_is_inited); |
| 6208 | /* Set other signals to restore saved_tty_pgrp */ |
| 6209 | set_fatal_handlers(); |
| 6210 | /* Put ourselves in our own process group */ |
| 6211 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 6212 | /* Grab control of the terminal */ |
| 6213 | tcsetpgrp(G_interactive_fd, getpid()); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 6214 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 6215 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 6216 | enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6217 | } else if (!signal_mask_is_inited) { |
| 6218 | block_signals(0); /* 0: called 1st time */ |
| 6219 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6220 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6221 | /* No job control compiled in, only prompt/line editing */ |
| 6222 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6223 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6224 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6225 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6226 | G_interactive_fd = dup(STDIN_FILENO); |
| 6227 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6228 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6229 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6230 | } |
| 6231 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6232 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6233 | close_on_exec_on(G_interactive_fd); |
| 6234 | block_signals(signal_mask_is_inited); |
| 6235 | } else if (!signal_mask_is_inited) { |
| 6236 | block_signals(0); |
| 6237 | } |
| 6238 | #else |
| 6239 | /* We have interactiveness code disabled */ |
| 6240 | if (!signal_mask_is_inited) { |
| 6241 | block_signals(0); |
| 6242 | } |
| 6243 | #endif |
| 6244 | /* bash: |
| 6245 | * if interactive but not a login shell, sources ~/.bashrc |
| 6246 | * (--norc turns this off, --rcfile <file> overrides) |
| 6247 | */ |
| 6248 | |
| 6249 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 6250 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 6251 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 6252 | } |
| 6253 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6254 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6255 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6256 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 6257 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6258 | if (G.cwd != bb_msg_unknown) |
| 6259 | free((char*)G.cwd); |
| 6260 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6261 | while (cur_var) { |
| 6262 | struct variable *tmp = cur_var; |
| 6263 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 6264 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6265 | cur_var = cur_var->next; |
| 6266 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 6267 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6268 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6269 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6270 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 6271 | |
| 6272 | |
| 6273 | #if ENABLE_LASH |
| 6274 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 6275 | int lash_main(int argc, char **argv) |
| 6276 | { |
| 6277 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 6278 | return hush_main(argc, argv); |
| 6279 | } |
| 6280 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6281 | |
| 6282 | |
| 6283 | /* |
| 6284 | * Built-ins |
| 6285 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6286 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6287 | { |
| 6288 | return 0; |
| 6289 | } |
| 6290 | |
| 6291 | static int builtin_test(char **argv) |
| 6292 | { |
| 6293 | int argc = 0; |
| 6294 | while (*argv) { |
| 6295 | argc++; |
| 6296 | argv++; |
| 6297 | } |
| 6298 | return test_main(argc, argv - argc); |
| 6299 | } |
| 6300 | |
| 6301 | static int builtin_echo(char **argv) |
| 6302 | { |
| 6303 | int argc = 0; |
| 6304 | while (*argv) { |
| 6305 | argc++; |
| 6306 | argv++; |
| 6307 | } |
| 6308 | return echo_main(argc, argv - argc); |
| 6309 | } |
| 6310 | |
| 6311 | static int builtin_eval(char **argv) |
| 6312 | { |
| 6313 | int rcode = EXIT_SUCCESS; |
| 6314 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6315 | if (*++argv) { |
| 6316 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6317 | /* bash: |
| 6318 | * eval "echo Hi; done" ("done" is syntax error): |
| 6319 | * "echo Hi" will not execute too. |
| 6320 | */ |
| 6321 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6322 | free(str); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6323 | rcode = G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6324 | } |
| 6325 | return rcode; |
| 6326 | } |
| 6327 | |
| 6328 | static int builtin_cd(char **argv) |
| 6329 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6330 | const char *newdir = argv[1]; |
| 6331 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6332 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6333 | * bash says "bash: cd: HOME not set" and does nothing |
| 6334 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6335 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6336 | newdir = getenv("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6337 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6338 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6339 | /* Mimic bash message exactly */ |
| 6340 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6341 | return EXIT_FAILURE; |
| 6342 | } |
| 6343 | set_cwd(); |
| 6344 | return EXIT_SUCCESS; |
| 6345 | } |
| 6346 | |
| 6347 | static int builtin_exec(char **argv) |
| 6348 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6349 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6350 | return EXIT_SUCCESS; /* bash does this */ |
| 6351 | { |
| 6352 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6353 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6354 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6355 | /* TODO: if exec fails, bash does NOT exit! We do... */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6356 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6357 | /* never returns */ |
| 6358 | } |
| 6359 | } |
| 6360 | |
| 6361 | static int builtin_exit(char **argv) |
| 6362 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 6363 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6364 | |
| 6365 | /* interactive bash: |
| 6366 | * # trap "echo EEE" EXIT |
| 6367 | * # exit |
| 6368 | * exit |
| 6369 | * There are stopped jobs. |
| 6370 | * (if there are _stopped_ jobs, running ones don't count) |
| 6371 | * # exit |
| 6372 | * exit |
| 6373 | # EEE (then bash exits) |
| 6374 | * |
| 6375 | * we can use G.exiting = -1 as indicator "last cmd was exit" |
| 6376 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 6377 | |
| 6378 | /* note: EXIT trap is run by hush_exit */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6379 | if (*++argv == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6380 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6381 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 6382 | xfunc_error_retval = 255; |
| 6383 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6384 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6385 | } |
| 6386 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6387 | static void print_escaped(const char *s) |
| 6388 | { |
| 6389 | do { |
| 6390 | if (*s != '\'') { |
| 6391 | const char *p; |
| 6392 | |
| 6393 | p = strchrnul(s, '\''); |
| 6394 | /* print 'xxxx', possibly just '' */ |
| 6395 | printf("'%.*s'", (int)(p - s), s); |
| 6396 | if (*p == '\0') |
| 6397 | break; |
| 6398 | s = p; |
| 6399 | } |
| 6400 | /* s points to '; print "'''...'''" */ |
| 6401 | putchar('"'); |
| 6402 | do putchar('\''); while (*++s == '\''); |
| 6403 | putchar('"'); |
| 6404 | } while (*s); |
| 6405 | } |
| 6406 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6407 | static int builtin_export(char **argv) |
| 6408 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6409 | unsigned opt_unexport; |
| 6410 | |
| 6411 | if (argv[1] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6412 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6413 | if (e) { |
| 6414 | while (*e) { |
| 6415 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6416 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6417 | #else |
| 6418 | /* ash emits: export VAR='VAL' |
| 6419 | * bash: declare -x VAR="VAL" |
| 6420 | * we follow ash example */ |
| 6421 | const char *s = *e++; |
| 6422 | const char *p = strchr(s, '='); |
| 6423 | |
| 6424 | if (!p) /* wtf? take next variable */ |
| 6425 | continue; |
| 6426 | /* export var= */ |
| 6427 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6428 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6429 | putchar('\n'); |
| 6430 | #endif |
| 6431 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6432 | /*fflush(stdout); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6433 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6434 | return EXIT_SUCCESS; |
| 6435 | } |
| 6436 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6437 | #if ENABLE_HUSH_EXPORT_N |
| 6438 | opt_unexport = getopt32(argv, "+n"); /* "+": stop at 1st non-option */ |
| 6439 | argv += optind; |
| 6440 | #else |
| 6441 | opt_unexport = 0; |
| 6442 | argv++; |
| 6443 | #endif |
| 6444 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6445 | do { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6446 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6447 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6448 | /* So far we do not check that name is valid (TODO?) */ |
| 6449 | |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6450 | if (strchr(name, '=') == NULL) { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6451 | struct variable *var; |
| 6452 | |
| 6453 | var = get_local_var(name); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6454 | if (opt_unexport) { |
| 6455 | /* export -n NAME (without =VALUE) */ |
| 6456 | if (var) { |
| 6457 | var->flg_export = 0; |
| 6458 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 6459 | unsetenv(name); |
| 6460 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 6461 | continue; |
| 6462 | } |
| 6463 | /* export NAME (without =VALUE) */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6464 | if (var) { |
| 6465 | var->flg_export = 1; |
| 6466 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 6467 | putenv(var->varstr); |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6468 | continue; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6469 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6470 | /* Exporting non-existing variable. |
| 6471 | * bash does not put it in environment, |
| 6472 | * but remembers that it is exported, |
| 6473 | * and does put it in env when it is set later. |
| 6474 | * We just set it to "" and export. */ |
| 6475 | name = xasprintf("%s=", name); |
| 6476 | } else { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6477 | /* (Un)exporting NAME=VALUE */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6478 | name = xstrdup(name); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6479 | } |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame^] | 6480 | set_local_var(name, |
| 6481 | /*export:*/ (opt_unexport ? -1 : 1), |
| 6482 | /*readonly:*/ 0 |
| 6483 | ); |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6484 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6485 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6486 | return EXIT_SUCCESS; |
| 6487 | } |
| 6488 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6489 | static int builtin_trap(char **argv) |
| 6490 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6491 | int sig; |
| 6492 | char *new_cmd; |
| 6493 | |
| 6494 | if (!G.traps) |
| 6495 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
| 6496 | |
| 6497 | argv++; |
| 6498 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6499 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6500 | /* No args: print all trapped */ |
| 6501 | for (i = 0; i < NSIG; ++i) { |
| 6502 | if (G.traps[i]) { |
| 6503 | printf("trap -- "); |
| 6504 | print_escaped(G.traps[i]); |
| 6505 | printf(" %s\n", get_signame(i)); |
| 6506 | } |
| 6507 | } |
| 6508 | /*fflush(stdout); - done after each builtin anyway */ |
| 6509 | return EXIT_SUCCESS; |
| 6510 | } |
| 6511 | |
| 6512 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6513 | /* If first arg is a number: reset all specified signals */ |
| 6514 | sig = bb_strtou(*argv, NULL, 10); |
| 6515 | if (errno == 0) { |
| 6516 | int ret; |
| 6517 | process_sig_list: |
| 6518 | ret = EXIT_SUCCESS; |
| 6519 | while (*argv) { |
| 6520 | sig = get_signum(*argv++); |
| 6521 | if (sig < 0 || sig >= NSIG) { |
| 6522 | ret = EXIT_FAILURE; |
| 6523 | /* Mimic bash message exactly */ |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6524 | bb_perror_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6525 | continue; |
| 6526 | } |
| 6527 | |
| 6528 | free(G.traps[sig]); |
| 6529 | G.traps[sig] = xstrdup(new_cmd); |
| 6530 | |
| 6531 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 6532 | get_signame(sig), sig, G.traps[sig]); |
| 6533 | |
| 6534 | /* There is no signal for 0 (EXIT) */ |
| 6535 | if (sig == 0) |
| 6536 | continue; |
| 6537 | |
| 6538 | if (new_cmd) { |
| 6539 | sigaddset(&G.blocked_set, sig); |
| 6540 | } else { |
| 6541 | /* There was a trap handler, we are removing it |
| 6542 | * (if sig has non-DFL handling, |
| 6543 | * we don't need to do anything) */ |
| 6544 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 6545 | continue; |
| 6546 | sigdelset(&G.blocked_set, sig); |
| 6547 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6548 | } |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6549 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6550 | return ret; |
| 6551 | } |
| 6552 | |
| 6553 | if (!argv[1]) { /* no second arg */ |
| 6554 | bb_error_msg("trap: invalid arguments"); |
| 6555 | return EXIT_FAILURE; |
| 6556 | } |
| 6557 | |
| 6558 | /* First arg is "-": reset all specified to default */ |
| 6559 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 6560 | /* Everything else: set arg as signal handler |
| 6561 | * (includes "" case, which ignores signal) */ |
| 6562 | if (argv[0][0] == '-') { |
| 6563 | if (argv[0][1] == '\0') { /* "-" */ |
| 6564 | /* new_cmd remains NULL: "reset these sigs" */ |
| 6565 | goto reset_traps; |
| 6566 | } |
| 6567 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 6568 | argv++; |
| 6569 | } |
| 6570 | /* else: "-something", no special meaning */ |
| 6571 | } |
| 6572 | new_cmd = *argv; |
| 6573 | reset_traps: |
| 6574 | argv++; |
| 6575 | goto process_sig_list; |
| 6576 | } |
| 6577 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6578 | #if ENABLE_HUSH_JOB |
| 6579 | /* built-in 'fg' and 'bg' handler */ |
| 6580 | static int builtin_fg_bg(char **argv) |
| 6581 | { |
| 6582 | int i, jobnum; |
| 6583 | struct pipe *pi; |
| 6584 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6585 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6586 | return EXIT_FAILURE; |
| 6587 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 6588 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6589 | for (pi = G.job_list; pi; pi = pi->next) { |
| 6590 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6591 | goto found; |
| 6592 | } |
| 6593 | } |
| 6594 | bb_error_msg("%s: no current job", argv[0]); |
| 6595 | return EXIT_FAILURE; |
| 6596 | } |
| 6597 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 6598 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 6599 | return EXIT_FAILURE; |
| 6600 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6601 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6602 | if (pi->jobid == jobnum) { |
| 6603 | goto found; |
| 6604 | } |
| 6605 | } |
| 6606 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 6607 | return EXIT_FAILURE; |
| 6608 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6609 | /* TODO: bash prints a string representation |
| 6610 | * of job being foregrounded (like "sleep 1 | cat") */ |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6611 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6612 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6613 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6614 | } |
| 6615 | |
| 6616 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6617 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 6618 | for (i = 0; i < pi->num_cmds; i++) { |
| 6619 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 6620 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6621 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6622 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6623 | |
| 6624 | i = kill(- pi->pgrp, SIGCONT); |
| 6625 | if (i < 0) { |
| 6626 | if (errno == ESRCH) { |
| 6627 | delete_finished_bg_job(pi); |
| 6628 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6629 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6630 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6631 | } |
| 6632 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6633 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6634 | remove_bg_job(pi); |
| 6635 | return checkjobs_and_fg_shell(pi); |
| 6636 | } |
| 6637 | return EXIT_SUCCESS; |
| 6638 | } |
| 6639 | #endif |
| 6640 | |
| 6641 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6642 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6643 | { |
| 6644 | const struct built_in_command *x; |
| 6645 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6646 | printf("\n" |
| 6647 | "Built-in commands:\n" |
| 6648 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6649 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 6650 | printf("%s\t%s\n", x->cmd, x->descr); |
| 6651 | } |
| 6652 | printf("\n\n"); |
| 6653 | return EXIT_SUCCESS; |
| 6654 | } |
| 6655 | #endif |
| 6656 | |
| 6657 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6658 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6659 | { |
| 6660 | struct pipe *job; |
| 6661 | const char *status_string; |
| 6662 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6663 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6664 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6665 | status_string = "Stopped"; |
| 6666 | else |
| 6667 | status_string = "Running"; |
| 6668 | |
| 6669 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 6670 | } |
| 6671 | return EXIT_SUCCESS; |
| 6672 | } |
| 6673 | #endif |
| 6674 | |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 6675 | #if HUSH_DEBUG |
| 6676 | static int builtin_memleak(char **argv UNUSED_PARAM) |
| 6677 | { |
| 6678 | void *p; |
| 6679 | unsigned long l; |
| 6680 | |
| 6681 | /* Crude attempt to find where "free memory" starts, |
| 6682 | * sans fragmentation. */ |
| 6683 | p = malloc(240); |
| 6684 | l = (unsigned long)p; |
| 6685 | free(p); |
| 6686 | p = malloc(3400); |
| 6687 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 6688 | free(p); |
| 6689 | |
| 6690 | if (!G.memleak_value) |
| 6691 | G.memleak_value = l; |
| 6692 | |
| 6693 | l -= G.memleak_value; |
| 6694 | if ((long)l < 0) |
| 6695 | l = 0; |
| 6696 | l /= 1024; |
| 6697 | if (l > 127) |
| 6698 | l = 127; |
| 6699 | |
| 6700 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 6701 | return l; |
| 6702 | } |
| 6703 | #endif |
| 6704 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6705 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6706 | { |
| 6707 | puts(set_cwd()); |
| 6708 | return EXIT_SUCCESS; |
| 6709 | } |
| 6710 | |
| 6711 | static int builtin_read(char **argv) |
| 6712 | { |
| 6713 | char *string; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6714 | const char *name = "REPLY"; |
| 6715 | |
| 6716 | if (argv[1]) { |
| 6717 | name = argv[1]; |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6718 | /* bash (3.2.33(1)) bug: "read 0abcd" will execute, |
| 6719 | * and _after_ that_ it will complain */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6720 | if (!is_well_formed_var_name(name, '\0')) { |
| 6721 | /* Mimic bash message */ |
| 6722 | bb_error_msg("read: '%s': not a valid identifier", name); |
| 6723 | return 1; |
| 6724 | } |
| 6725 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6726 | |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6727 | //TODO: bash unbackslashes input, splits words and puts them in argv[i] |
| 6728 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6729 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6730 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6731 | } |
| 6732 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6733 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 6734 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6735 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6736 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 6737 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6738 | * set -- [argument...] |
| 6739 | * set -o |
| 6740 | * set +o |
| 6741 | * Implementations shall support the options in both their hyphen and |
| 6742 | * plus-sign forms. These options can also be specified as options to sh. |
| 6743 | * Examples: |
| 6744 | * Write out all variables and their values: set |
| 6745 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 6746 | * Turn on the -x and -v options: set -xv |
| 6747 | * Unset all positional parameters: set -- |
| 6748 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 6749 | * Set the positional parameters to the expansion of x, even if x expands |
| 6750 | * with a leading '-' or '+': set -- $x |
| 6751 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6752 | * 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] | 6753 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6754 | static int builtin_set(char **argv) |
| 6755 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6756 | int n; |
| 6757 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6758 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6759 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6760 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6761 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6762 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6763 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6764 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6765 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6766 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6767 | do { |
| 6768 | if (!strcmp(arg, "--")) { |
| 6769 | ++argv; |
| 6770 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6771 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 6772 | if (arg[0] != '+' && arg[0] != '-') |
| 6773 | break; |
| 6774 | for (n = 1; arg[n]; ++n) |
| 6775 | if (set_mode(arg[0], arg[n])) |
| 6776 | goto error; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6777 | } while ((arg = *++argv) != NULL); |
| 6778 | /* Now argv[0] is 1st argument */ |
| 6779 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6780 | if (arg == NULL) |
| 6781 | return EXIT_SUCCESS; |
| 6782 | set_argv: |
| 6783 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6784 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 6785 | g_argv = G.global_argv; |
| 6786 | if (G.global_args_malloced) { |
| 6787 | pp = g_argv; |
| 6788 | while (*++pp) |
| 6789 | free(*pp); |
| 6790 | g_argv[1] = NULL; |
| 6791 | } else { |
| 6792 | G.global_args_malloced = 1; |
| 6793 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 6794 | pp[0] = g_argv[0]; /* retain $0 */ |
| 6795 | g_argv = pp; |
| 6796 | } |
| 6797 | /* This realloc's G.global_argv */ |
| 6798 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 6799 | |
| 6800 | n = 1; |
| 6801 | while (*++pp) |
| 6802 | n++; |
| 6803 | G.global_argc = n; |
| 6804 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6805 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6806 | |
| 6807 | /* Nothing known, so abort */ |
| 6808 | error: |
| 6809 | bb_error_msg("set: %s: invalid option", arg); |
| 6810 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6811 | } |
| 6812 | |
| 6813 | static int builtin_shift(char **argv) |
| 6814 | { |
| 6815 | int n = 1; |
| 6816 | if (argv[1]) { |
| 6817 | n = atoi(argv[1]); |
| 6818 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6819 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6820 | if (G.global_args_malloced) { |
| 6821 | int m = 1; |
| 6822 | while (m <= n) |
| 6823 | free(G.global_argv[m++]); |
| 6824 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6825 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6826 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 6827 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6828 | return EXIT_SUCCESS; |
| 6829 | } |
| 6830 | return EXIT_FAILURE; |
| 6831 | } |
| 6832 | |
| 6833 | static int builtin_source(char **argv) |
| 6834 | { |
| 6835 | FILE *input; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6836 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6837 | #if ENABLE_HUSH_FUNCTIONS |
| 6838 | smallint sv_flg; |
| 6839 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6840 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6841 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6842 | return EXIT_FAILURE; |
| 6843 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6844 | // TODO: search through $PATH is missing |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6845 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6846 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6847 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6848 | return EXIT_FAILURE; |
| 6849 | } |
| 6850 | close_on_exec_on(fileno(input)); |
| 6851 | |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6852 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6853 | sv_flg = G.flag_return_in_progress; |
| 6854 | /* "we are inside sourced file, ok to use return" */ |
| 6855 | G.flag_return_in_progress = -1; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6856 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6857 | save_and_replace_G_args(&sv, argv); |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6858 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6859 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6860 | fclose(input); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6861 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6862 | restore_G_args(&sv, argv); |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6863 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6864 | G.flag_return_in_progress = sv_flg; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6865 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6866 | |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6867 | return G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6868 | } |
| 6869 | |
| 6870 | static int builtin_umask(char **argv) |
| 6871 | { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6872 | int rc; |
| 6873 | mode_t mask; |
| 6874 | |
| 6875 | mask = umask(0); |
| 6876 | if (argv[1]) { |
| 6877 | mode_t old_mask = mask; |
| 6878 | |
| 6879 | mask ^= 0777; |
| 6880 | rc = bb_parse_mode(argv[1], &mask); |
| 6881 | mask ^= 0777; |
| 6882 | if (rc == 0) { |
| 6883 | mask = old_mask; |
| 6884 | /* bash messages: |
| 6885 | * bash: umask: 'q': invalid symbolic mode operator |
| 6886 | * bash: umask: 999: octal number out of range |
| 6887 | */ |
| 6888 | bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6889 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6890 | } else { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6891 | rc = 1; |
| 6892 | /* Mimic bash */ |
| 6893 | printf("%04o\n", (unsigned) mask); |
| 6894 | /* fall through and restore mask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6895 | } |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6896 | umask(mask); |
| 6897 | |
| 6898 | return !rc; /* rc != 0 - success */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6899 | } |
| 6900 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6901 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6902 | static int builtin_unset(char **argv) |
| 6903 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6904 | int ret; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6905 | char var; |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6906 | char *arg; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6907 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6908 | if (!*++argv) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6909 | return EXIT_SUCCESS; |
| 6910 | |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6911 | var = 0; |
| 6912 | while ((arg = *argv) != NULL && arg[0] == '-') { |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 6913 | arg++; |
| 6914 | do { |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6915 | switch (*arg) { |
| 6916 | case 'v': |
| 6917 | case 'f': |
| 6918 | if (var == 0 || var == *arg) { |
| 6919 | var = *arg; |
| 6920 | break; |
| 6921 | } |
| 6922 | /* else: unset -vf, which is illegal. |
| 6923 | * fall through */ |
| 6924 | default: |
| 6925 | bb_error_msg("unset: %s: invalid option", *argv); |
| 6926 | return EXIT_FAILURE; |
| 6927 | } |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 6928 | } while (*++arg); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6929 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6930 | } |
| 6931 | |
| 6932 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6933 | while (*argv) { |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6934 | if (var != 'f') { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6935 | if (unset_local_var(*argv)) { |
| 6936 | /* unset <nonexistent_var> doesn't fail. |
| 6937 | * Error is when one tries to unset RO var. |
| 6938 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6939 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6940 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6941 | } |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6942 | #if ENABLE_HUSH_FUNCTIONS |
| 6943 | else { |
| 6944 | unset_func(*argv); |
| 6945 | } |
| 6946 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6947 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6948 | } |
| 6949 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6950 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6951 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6952 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 6953 | static int builtin_wait(char **argv) |
| 6954 | { |
| 6955 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6956 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6957 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6958 | if (*++argv == NULL) { |
| 6959 | /* Don't care about wait results */ |
| 6960 | /* Note 1: must wait until there are no more children */ |
| 6961 | /* Note 2: must be interruptible */ |
| 6962 | /* Examples: |
| 6963 | * $ sleep 3 & sleep 6 & wait |
| 6964 | * [1] 30934 sleep 3 |
| 6965 | * [2] 30935 sleep 6 |
| 6966 | * [1] Done sleep 3 |
| 6967 | * [2] Done sleep 6 |
| 6968 | * $ sleep 3 & sleep 6 & wait |
| 6969 | * [1] 30936 sleep 3 |
| 6970 | * [2] 30937 sleep 6 |
| 6971 | * [1] Done sleep 3 |
| 6972 | * ^C <-- after ~4 sec from keyboard |
| 6973 | * $ |
| 6974 | */ |
| 6975 | sigaddset(&G.blocked_set, SIGCHLD); |
| 6976 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6977 | while (1) { |
| 6978 | checkjobs(NULL); |
| 6979 | if (errno == ECHILD) |
| 6980 | break; |
| 6981 | /* Wait for SIGCHLD or any other signal of interest */ |
| 6982 | /* sigtimedwait with infinite timeout: */ |
| 6983 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 6984 | if (sig > 0) { |
| 6985 | sig = check_and_run_traps(sig); |
| 6986 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 6987 | ret = 128 + sig; |
| 6988 | break; |
| 6989 | } |
| 6990 | } |
| 6991 | } |
| 6992 | sigdelset(&G.blocked_set, SIGCHLD); |
| 6993 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6994 | return ret; |
| 6995 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6996 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6997 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6998 | while (*argv) { |
| 6999 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 7000 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7001 | /* mimic bash message */ |
| 7002 | 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] | 7003 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7004 | } |
| 7005 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7006 | if (WIFSIGNALED(status)) |
| 7007 | ret = 128 + WTERMSIG(status); |
| 7008 | else if (WIFEXITED(status)) |
| 7009 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7010 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7011 | ret = EXIT_FAILURE; |
| 7012 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7013 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7014 | ret = 127; |
| 7015 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7016 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7017 | } |
| 7018 | |
| 7019 | return ret; |
| 7020 | } |
| 7021 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7022 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 7023 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 7024 | { |
| 7025 | if (argv[1]) { |
| 7026 | def = bb_strtou(argv[1], NULL, 10); |
| 7027 | if (errno || def < def_min || argv[2]) { |
| 7028 | bb_error_msg("%s: bad arguments", argv[0]); |
| 7029 | def = UINT_MAX; |
| 7030 | } |
| 7031 | } |
| 7032 | return def; |
| 7033 | } |
| 7034 | #endif |
| 7035 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7036 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7037 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7038 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7039 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7040 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7041 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 7042 | return EXIT_SUCCESS; /* bash compat */ |
| 7043 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7044 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7045 | |
| 7046 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 7047 | if (depth == UINT_MAX) |
| 7048 | G.flag_break_continue = BC_BREAK; |
| 7049 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7050 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7051 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7052 | return EXIT_SUCCESS; |
| 7053 | } |
| 7054 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7055 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7056 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7057 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 7058 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7059 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7060 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7061 | |
| 7062 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 7b9e5c5 | 2009-04-17 23:53:15 +0000 | [diff] [blame] | 7063 | static int builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7064 | { |
| 7065 | int rc; |
| 7066 | |
| 7067 | if (G.flag_return_in_progress != -1) { |
| 7068 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 7069 | return EXIT_FAILURE; /* bash compat */ |
| 7070 | } |
| 7071 | |
| 7072 | G.flag_return_in_progress = 1; |
| 7073 | |
| 7074 | /* bash: |
| 7075 | * out of range: wraps around at 256, does not error out |
| 7076 | * non-numeric param: |
| 7077 | * f() { false; return qwe; }; f; echo $? |
| 7078 | * bash: return: qwe: numeric argument required <== we do this |
| 7079 | * 255 <== we also do this |
| 7080 | */ |
| 7081 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 7082 | return rc; |
| 7083 | } |
| 7084 | #endif |