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) |
Denis Vlasenko | fa4ca78 | 2009-04-16 12:00:15 +0000 | [diff] [blame] | 53 | * $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] | 54 | * builtins: ulimit |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 55 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 56 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 57 | * 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] | 58 | */ |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 59 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 60 | #include <glob.h> |
| 61 | /* #include <dmalloc.h> */ |
| 62 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 63 | # include <fnmatch.h> |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 64 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 65 | #include "math.h" |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 66 | #include "match.h" |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 67 | #ifndef PIPE_BUF |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 68 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 69 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 70 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 71 | |
| 72 | /* Debug build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 73 | #define LEAK_HUNTING 0 |
| 74 | #define BUILD_AS_NOMMU 0 |
| 75 | /* Enable/disable sanity checks. Ok to enable in production, |
| 76 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 77 | * Keeping 1 for now even in released versions. |
| 78 | */ |
| 79 | #define HUSH_DEBUG 1 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 80 | |
| 81 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 82 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 83 | # undef BB_MMU |
| 84 | # undef USE_FOR_NOMMU |
| 85 | # undef USE_FOR_MMU |
| 86 | # define BB_MMU 0 |
| 87 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 88 | # define USE_FOR_MMU(...) |
| 89 | #endif |
| 90 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 91 | #if defined SINGLE_APPLET_MAIN |
| 92 | /* STANDALONE does not make sense, and won't compile */ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 93 | # undef CONFIG_FEATURE_SH_STANDALONE |
| 94 | # undef ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 95 | # undef IF_FEATURE_SH_STANDALONE |
| 96 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 97 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 98 | # define IF_FEATURE_SH_STANDALONE(...) |
| 99 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 100 | #endif |
| 101 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 102 | #if !ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 103 | # undef ENABLE_FEATURE_EDITING |
| 104 | # define ENABLE_FEATURE_EDITING 0 |
| 105 | # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 106 | # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 107 | #endif |
| 108 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 109 | /* Do we support ANY keywords? */ |
| 110 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 111 | # define HAS_KEYWORDS 1 |
| 112 | # define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 113 | # define IF_HAS_NO_KEYWORDS(...) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 114 | #else |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 115 | # define HAS_KEYWORDS 0 |
| 116 | # define IF_HAS_KEYWORDS(...) |
| 117 | # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 118 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 119 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 120 | /* If you comment out one of these below, it will be #defined later |
| 121 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 122 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 123 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 124 | #define debug_printf_parse(...) do {} while (0) |
| 125 | #define debug_print_tree(a, b) do {} while (0) |
| 126 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 127 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 128 | #define debug_printf_jobs(...) do {} while (0) |
| 129 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 130 | #define debug_printf_glob(...) do {} while (0) |
| 131 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 132 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 133 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 134 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 135 | #define ERR_PTR ((void*)(long)1) |
| 136 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 137 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 139 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 140 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 141 | struct variable; |
| 142 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 143 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 144 | |
| 145 | /* This supports saving pointers malloced in vfork child, |
Denis Vlasenko | c376db3 | 2009-04-15 21:49:48 +0000 | [diff] [blame] | 146 | * to be freed in the parent. |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 147 | */ |
| 148 | #if !BB_MMU |
| 149 | typedef struct nommu_save_t { |
| 150 | char **new_env; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 151 | struct variable *old_vars; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 152 | char **argv; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 153 | char **argv_from_re_execing; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 154 | } nommu_save_t; |
| 155 | #endif |
| 156 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 157 | /* The descrip member of this structure is only used to make |
| 158 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 159 | static const struct { |
| 160 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 161 | signed char default_fd; |
| 162 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 163 | } redir_table[] = { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 164 | { 0, 0, "??" }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 165 | { O_RDONLY, 0, "<" }, |
| 166 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 167 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 168 | { O_RDONLY, 0, "<<" }, |
| 169 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 170 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 171 | /* { O_RDONLY, 77, "<<" }, */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 172 | }; |
| 173 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 174 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 175 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 176 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 177 | RES_IF , |
| 178 | RES_THEN , |
| 179 | RES_ELIF , |
| 180 | RES_ELSE , |
| 181 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 182 | #endif |
| 183 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 184 | RES_FOR , |
| 185 | RES_WHILE , |
| 186 | RES_UNTIL , |
| 187 | RES_DO , |
| 188 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 189 | #endif |
| 190 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 191 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 192 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 193 | #if ENABLE_HUSH_CASE |
| 194 | RES_CASE , |
| 195 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 196 | RES_MATCH , /* "word)" */ |
| 197 | RES_CASEI , /* "this command is inside CASE" */ |
| 198 | RES_ESAC , |
| 199 | #endif |
| 200 | RES_XXXX , |
| 201 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 202 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 203 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 204 | typedef struct o_string { |
| 205 | char *data; |
| 206 | int length; /* position where data is appended */ |
| 207 | int maxlen; |
| 208 | /* Protect newly added chars against globbing |
| 209 | * (by prepending \ to *, ?, [, \) */ |
| 210 | smallint o_escape; |
| 211 | smallint o_glob; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 212 | /* At least some part of the string was inside '' or "", |
| 213 | * possibly empty one: word"", wo''rd etc. */ |
| 214 | smallint o_quoted; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 215 | smallint has_empty_slot; |
| 216 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 217 | } o_string; |
| 218 | enum { |
| 219 | MAYBE_ASSIGNMENT = 0, |
| 220 | DEFINITELY_ASSIGNMENT = 1, |
| 221 | NOT_ASSIGNMENT = 2, |
| 222 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 223 | }; |
| 224 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 225 | #define NULL_O_STRING { NULL } |
| 226 | |
| 227 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 228 | * available? Where is it documented? */ |
| 229 | typedef struct in_str { |
| 230 | const char *p; |
| 231 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 232 | char eof_flag; /* meaningless if ->p == NULL */ |
| 233 | char peek_buf[2]; |
| 234 | #if ENABLE_HUSH_INTERACTIVE |
| 235 | smallint promptme; |
| 236 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 237 | #endif |
| 238 | FILE *file; |
| 239 | int (*get) (struct in_str *); |
| 240 | int (*peek) (struct in_str *); |
| 241 | } in_str; |
| 242 | #define i_getch(input) ((input)->get(input)) |
| 243 | #define i_peek(input) ((input)->peek(input)) |
| 244 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 245 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 246 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 247 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 248 | int rd_fd; /* fd to redirect */ |
| 249 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 250 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 251 | smallint rd_type; /* (enum redir_type) */ |
| 252 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 253 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
| 254 | * 1: do we need to trim leading tabs? |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 255 | * 2: is heredoc quoted (<<'delim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 256 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 257 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 258 | typedef enum redir_type { |
| 259 | REDIRECT_INVALID = 0, |
| 260 | REDIRECT_INPUT = 1, |
| 261 | REDIRECT_OVERWRITE = 2, |
| 262 | REDIRECT_APPEND = 3, |
| 263 | REDIRECT_HEREDOC = 4, |
| 264 | REDIRECT_IO = 5, |
| 265 | REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 266 | |
| 267 | REDIRFD_CLOSE = -3, |
| 268 | REDIRFD_SYNTAX_ERR = -2, |
Denis Vlasenko | 835fcfd | 2009-04-10 13:51:56 +0000 | [diff] [blame] | 269 | REDIRFD_TO_FILE = -1, |
| 270 | /* otherwise, rd_fd is redirected to rd_dup */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 271 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 272 | HEREDOC_SKIPTABS = 1, |
| 273 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 274 | } redir_type; |
| 275 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 276 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 277 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 278 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 279 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 280 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 281 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 282 | #define GRP_NORMAL 0 |
| 283 | #define GRP_SUBSHELL 1 |
| 284 | #if ENABLE_HUSH_FUNCTIONS |
| 285 | # define GRP_FUNCTION 2 |
| 286 | #endif |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 287 | /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */ |
| 288 | struct pipe *group; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 289 | #if !BB_MMU |
| 290 | char *group_as_string; |
| 291 | #endif |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 292 | #if ENABLE_HUSH_FUNCTIONS |
| 293 | struct function *child_func; |
| 294 | /* This field is used to prevent a bug here: |
| 295 | * while...do f1() {a;}; f1; f1 {b;}; f1; done |
| 296 | * When we execute "f1() {a;}" cmd, we create new function and clear |
| 297 | * cmd->group, cmd->group_as_string, cmd->argv[0]. |
| 298 | * when we execute "f1 {b;}", we notice that f1 exists, |
| 299 | * and that it's "parent cmd" struct is still "alive", |
| 300 | * we put those fields back into cmd->xxx |
| 301 | * (struct function has ->parent_cmd ptr to facilitate that). |
| 302 | * When we loop back, we can execute "f1() {a;}" again and set f1 correctly. |
| 303 | * Without this trick, loop would execute a;b;b;b;... |
| 304 | * instead of correct sequence a;b;a;b;... |
| 305 | * When command is freed, it severs the link |
| 306 | * (sets ->child_func->parent_cmd to NULL). |
| 307 | */ |
| 308 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 309 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 310 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 311 | * and on execution these are substituted with their values. |
| 312 | * Substitution can make _several_ words out of one argv[n]! |
| 313 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 314 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 315 | */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 316 | struct redir_struct *redirects; /* I/O redirections */ |
| 317 | }; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 318 | /* Is there anything in this command at all? */ |
| 319 | #define IS_NULL_CMD(cmd) \ |
| 320 | (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects) |
| 321 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 322 | |
| 323 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 324 | struct pipe *next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 325 | int num_cmds; /* total number of commands in pipe */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 326 | int alive_cmds; /* number of commands running (not exited) */ |
| 327 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 328 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 329 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 330 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 331 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 332 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 333 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 334 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 335 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 336 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 337 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 338 | typedef enum pipe_style { |
| 339 | PIPE_SEQ = 1, |
| 340 | PIPE_AND = 2, |
| 341 | PIPE_OR = 3, |
| 342 | PIPE_BG = 4, |
| 343 | } pipe_style; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 344 | /* Is there anything in this pipe at all? */ |
| 345 | #define IS_NULL_PIPE(pi) \ |
| 346 | ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 347 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 348 | /* This holds pointers to the various results of parsing */ |
| 349 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 350 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 351 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 352 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 353 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 354 | /* last command in pipe (being constructed right now) */ |
| 355 | struct command *command; |
| 356 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 357 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 358 | #if !BB_MMU |
| 359 | o_string as_string; |
| 360 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 361 | #if HAS_KEYWORDS |
| 362 | smallint ctx_res_w; |
| 363 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 364 | #if ENABLE_HUSH_CASE |
| 365 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 366 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 367 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 368 | int old_flag; |
| 369 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 370 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 371 | * when we see "if" or "then", we malloc and copy current context, |
| 372 | * and make ->stack point to it. then we parse pipeN. |
| 373 | * when closing "then" / fi" / whatever is found, |
| 374 | * we move list_head into ->stack->command->group, |
| 375 | * copy ->stack into current context, and delete ->stack. |
| 376 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 377 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 378 | struct parse_context *stack; |
| 379 | #endif |
| 380 | }; |
| 381 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 382 | /* On program start, environ points to initial environment. |
| 383 | * putenv adds new pointers into it, unsetenv removes them. |
| 384 | * Neither of these (de)allocates the strings. |
| 385 | * setenv allocates new strings in malloc space and does putenv, |
| 386 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 387 | #define setenv(...) setenv_is_leaky_dont_use() |
| 388 | struct variable { |
| 389 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 390 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 391 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 392 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 393 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 394 | }; |
| 395 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 396 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 397 | BC_BREAK = 1, |
| 398 | BC_CONTINUE = 2, |
| 399 | }; |
| 400 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 401 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 402 | struct function { |
| 403 | struct function *next; |
| 404 | char *name; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 405 | struct command *parent_cmd; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 406 | struct pipe *body; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 407 | #if !BB_MMU |
| 408 | char *body_as_string; |
| 409 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 410 | }; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 411 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 412 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 413 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 414 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 415 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 416 | struct globals { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 417 | /* interactive_fd != 0 means we are an interactive shell. |
| 418 | * If we are, then saved_tty_pgrp can also be != 0, meaning |
| 419 | * that controlling tty is available. With saved_tty_pgrp == 0, |
| 420 | * job control still works, but terminal signals |
| 421 | * (^C, ^Z, ^Y, ^\) won't work at all, and background |
| 422 | * process groups can only be created with "cmd &". |
| 423 | * With saved_tty_pgrp != 0, hush will use tcsetpgrp() |
| 424 | * to give tty to the foreground process group, |
| 425 | * and will take it back when the group is stopped (^Z) |
| 426 | * or killed (^C). |
| 427 | */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 428 | #if ENABLE_HUSH_INTERACTIVE |
| 429 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 430 | * _AND_ if we decided to act interactively */ |
| 431 | int interactive_fd; |
| 432 | const char *PS1; |
| 433 | const char *PS2; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 434 | # define G_interactive_fd (G.interactive_fd) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 435 | #else |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 436 | # define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 437 | #endif |
| 438 | #if ENABLE_FEATURE_EDITING |
| 439 | line_input_t *line_input_state; |
| 440 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 441 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 442 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 443 | #if ENABLE_HUSH_JOB |
| 444 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 445 | int last_jobid; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 446 | pid_t saved_tty_pgrp; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 447 | struct pipe *job_list; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 448 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 449 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 450 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 451 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 452 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 453 | #if ENABLE_HUSH_FUNCTIONS |
| 454 | /* 0: outside of a function (or sourced file) |
| 455 | * -1: inside of a function, ok to use return builtin |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 456 | * 1: return is invoked, skip all till end of func |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 457 | */ |
| 458 | smallint flag_return_in_progress; |
| 459 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 460 | smallint fake_mode; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 461 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 462 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 463 | smalluint last_exitcode; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 464 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 465 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 466 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 467 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 468 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 469 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 470 | char *argv0_for_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 471 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 472 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 473 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 474 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 475 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 476 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 477 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 478 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 479 | struct variable shell_ver; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 480 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 481 | struct function *top_func; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 482 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 483 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 484 | // unsigned count_SIGCHLD; |
| 485 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 486 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 487 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 488 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 489 | sigset_t blocked_set; |
| 490 | sigset_t inherited_set; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 491 | #if HUSH_DEBUG |
| 492 | unsigned long memleak_value; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 493 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 494 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 495 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 496 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 497 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 498 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 499 | * (too many defines). Also, I actually prefer to see when a variable |
| 500 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 501 | #define INIT_G() do { \ |
| 502 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 503 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 504 | |
| 505 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 506 | /* Function prototypes for builtins */ |
| 507 | static int builtin_cd(char **argv); |
| 508 | static int builtin_echo(char **argv); |
| 509 | static int builtin_eval(char **argv); |
| 510 | static int builtin_exec(char **argv); |
| 511 | static int builtin_exit(char **argv); |
| 512 | static int builtin_export(char **argv); |
| 513 | #if ENABLE_HUSH_JOB |
| 514 | static int builtin_fg_bg(char **argv); |
| 515 | static int builtin_jobs(char **argv); |
| 516 | #endif |
| 517 | #if ENABLE_HUSH_HELP |
| 518 | static int builtin_help(char **argv); |
| 519 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 520 | #if HUSH_DEBUG |
| 521 | static int builtin_memleak(char **argv); |
| 522 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 523 | static int builtin_pwd(char **argv); |
| 524 | static int builtin_read(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 525 | static int builtin_set(char **argv); |
| 526 | static int builtin_shift(char **argv); |
| 527 | static int builtin_source(char **argv); |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 528 | static int builtin_test(char **argv); |
| 529 | static int builtin_trap(char **argv); |
| 530 | static int builtin_true(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 531 | static int builtin_umask(char **argv); |
| 532 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 533 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 534 | #if ENABLE_HUSH_LOOPS |
| 535 | static int builtin_break(char **argv); |
| 536 | static int builtin_continue(char **argv); |
| 537 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 538 | #if ENABLE_HUSH_FUNCTIONS |
| 539 | static int builtin_return(char **argv); |
| 540 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 541 | |
| 542 | /* Table of built-in functions. They can be forked or not, depending on |
| 543 | * context: within pipes, they fork. As simple commands, they do not. |
| 544 | * When used in non-forking context, they can change global variables |
| 545 | * in the parent shell process. If forked, of course they cannot. |
| 546 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 547 | * still be set at the end. */ |
| 548 | struct built_in_command { |
| 549 | const char *cmd; |
| 550 | int (*function)(char **argv); |
| 551 | #if ENABLE_HUSH_HELP |
| 552 | const char *descr; |
| 553 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 554 | #else |
| 555 | #define BLTIN(cmd, func, help) { cmd, func } |
| 556 | #endif |
| 557 | }; |
| 558 | |
| 559 | /* For now, echo and test are unconditionally enabled. |
| 560 | * Maybe make it configurable? */ |
| 561 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 562 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 563 | BLTIN(":" , builtin_true , "No-op"), |
| 564 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 565 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 566 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 567 | #endif |
| 568 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 569 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 570 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 571 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 572 | #if ENABLE_HUSH_LOOPS |
| 573 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 574 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 575 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 576 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 577 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 578 | BLTIN("exit" , builtin_exit , "Exit"), |
| 579 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 580 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 581 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 582 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 583 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 584 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 585 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 586 | #if ENABLE_HUSH_JOB |
| 587 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 588 | #endif |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 589 | #if HUSH_DEBUG |
| 590 | BLTIN("memleak" , builtin_memleak , "Debug tool"), |
| 591 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 592 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 593 | BLTIN("read" , builtin_read , "Input environment variable"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 594 | #if ENABLE_HUSH_FUNCTIONS |
| 595 | BLTIN("return" , builtin_return , "Return from a function"), |
| 596 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 597 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 598 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 599 | BLTIN("test" , builtin_test , "Test condition"), |
| 600 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 601 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 602 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 603 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 604 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 605 | }; |
| 606 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 607 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 608 | /* Debug printouts. |
| 609 | */ |
| 610 | #if HUSH_DEBUG |
| 611 | /* prevent disasters with G.debug_indent < 0 */ |
| 612 | # define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "") |
| 613 | # define debug_enter() (G.debug_indent++) |
| 614 | # define debug_leave() (G.debug_indent--) |
| 615 | #else |
| 616 | # define indent() ((void)0) |
| 617 | # define debug_enter() ((void)0) |
| 618 | # define debug_leave() ((void)0) |
| 619 | #endif |
| 620 | |
| 621 | #ifndef debug_printf |
| 622 | # define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 623 | #endif |
| 624 | |
| 625 | #ifndef debug_printf_parse |
| 626 | # define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 627 | #endif |
| 628 | |
| 629 | #ifndef debug_printf_exec |
| 630 | #define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 631 | #endif |
| 632 | |
| 633 | #ifndef debug_printf_env |
| 634 | # define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 635 | #endif |
| 636 | |
| 637 | #ifndef debug_printf_jobs |
| 638 | # define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 639 | # define DEBUG_JOBS 1 |
| 640 | #else |
| 641 | # define DEBUG_JOBS 0 |
| 642 | #endif |
| 643 | |
| 644 | #ifndef debug_printf_expand |
| 645 | # define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 646 | # define DEBUG_EXPAND 1 |
| 647 | #else |
| 648 | # define DEBUG_EXPAND 0 |
| 649 | #endif |
| 650 | |
| 651 | #ifndef debug_printf_glob |
| 652 | # define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 653 | # define DEBUG_GLOB 1 |
| 654 | #else |
| 655 | # define DEBUG_GLOB 0 |
| 656 | #endif |
| 657 | |
| 658 | #ifndef debug_printf_list |
| 659 | # define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 660 | #endif |
| 661 | |
| 662 | #ifndef debug_printf_subst |
| 663 | # define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 664 | #endif |
| 665 | |
| 666 | #ifndef debug_printf_clean |
| 667 | # define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__)) |
| 668 | # define DEBUG_CLEAN 1 |
| 669 | #else |
| 670 | # define DEBUG_CLEAN 0 |
| 671 | #endif |
| 672 | |
| 673 | #if DEBUG_EXPAND |
| 674 | static void debug_print_strings(const char *prefix, char **vv) |
| 675 | { |
| 676 | indent(); |
| 677 | fprintf(stderr, "%s:\n", prefix); |
| 678 | while (*vv) |
| 679 | fprintf(stderr, " '%s'\n", *vv++); |
| 680 | } |
| 681 | #else |
| 682 | #define debug_print_strings(prefix, vv) ((void)0) |
| 683 | #endif |
| 684 | |
| 685 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 686 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 687 | */ |
| 688 | #if LEAK_HUNTING |
| 689 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 690 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 691 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 692 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 693 | return ptr; |
| 694 | } |
| 695 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 696 | { |
| 697 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 698 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 699 | return ptr; |
| 700 | } |
| 701 | static char *xxstrdup(int lineno, const char *str) |
| 702 | { |
| 703 | char *ptr = xstrdup(str); |
| 704 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 705 | return ptr; |
| 706 | } |
| 707 | static void xxfree(void *ptr) |
| 708 | { |
| 709 | fdprintf(2, "free %p\n", ptr); |
| 710 | free(ptr); |
| 711 | } |
| 712 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 713 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 714 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 715 | #define free(p) xxfree(p) |
| 716 | #endif |
| 717 | |
| 718 | |
| 719 | /* Syntax and runtime errors. They always abort scripts. |
| 720 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 721 | * and return to the prompt. |
| 722 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 723 | */ |
| 724 | #if HUSH_DEBUG < 2 |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 725 | # define die_if_script(lineno, fmt...) die_if_script(fmt) |
| 726 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 727 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 728 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 729 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 730 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 731 | #endif |
| 732 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 733 | static void die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 734 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 735 | va_list p; |
| 736 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 737 | #if HUSH_DEBUG >= 2 |
| 738 | bb_error_msg("hush.c:%u", lineno); |
| 739 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 740 | va_start(p, fmt); |
| 741 | bb_verror_msg(fmt, p, NULL); |
| 742 | va_end(p); |
| 743 | if (!G_interactive_fd) |
| 744 | xfunc_die(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 745 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 746 | |
| 747 | static void syntax_error(unsigned lineno, const char *msg) |
| 748 | { |
| 749 | if (msg) |
| 750 | die_if_script(lineno, "syntax error: %s", msg); |
| 751 | else |
| 752 | die_if_script(lineno, "syntax error", NULL); |
| 753 | } |
| 754 | |
| 755 | static void syntax_error_at(unsigned lineno, const char *msg) |
| 756 | { |
| 757 | die_if_script(lineno, "syntax error at '%s'", msg); |
| 758 | } |
| 759 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 760 | /* It so happens that all such cases are totally fatal |
| 761 | * even if shell is interactive: EOF while looking for closing |
| 762 | * delimiter. There is nowhere to read stuff from after that, |
| 763 | * it's EOF! The only choice is to terminate. |
| 764 | */ |
| 765 | static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 766 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 767 | { |
| 768 | char msg[2]; |
| 769 | msg[0] = ch; |
| 770 | msg[1] = '\0'; |
| 771 | die_if_script(lineno, "syntax error: unterminated %s", msg); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 772 | xfunc_die(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 773 | } |
| 774 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 775 | static void syntax_error_unterm_str(unsigned lineno, const char *s) |
| 776 | { |
| 777 | die_if_script(lineno, "syntax error: unterminated %s", s); |
| 778 | } |
| 779 | |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 780 | static void syntax_error_unexpected_ch(unsigned lineno, int ch) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 781 | { |
| 782 | char msg[2]; |
| 783 | msg[0] = ch; |
| 784 | msg[1] = '\0'; |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 785 | die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 786 | } |
| 787 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 788 | #if HUSH_DEBUG < 2 |
| 789 | # undef die_if_script |
| 790 | # undef syntax_error |
| 791 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 792 | # undef syntax_error_unterm_ch |
| 793 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 794 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 795 | #else |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 796 | # define die_if_script(fmt...) die_if_script(__LINE__, fmt) |
| 797 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 798 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 799 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 800 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 801 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 802 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 803 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 804 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 805 | #if ENABLE_HUSH_INTERACTIVE |
| 806 | static void cmdedit_update_prompt(void); |
| 807 | #else |
| 808 | # define cmdedit_update_prompt() |
| 809 | #endif |
| 810 | |
| 811 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 812 | /* Utility functions |
| 813 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 814 | static int glob_needed(const char *s) |
| 815 | { |
| 816 | while (*s) { |
| 817 | if (*s == '\\') |
| 818 | s++; |
| 819 | if (*s == '*' || *s == '[' || *s == '?') |
| 820 | return 1; |
| 821 | s++; |
| 822 | } |
| 823 | return 0; |
| 824 | } |
| 825 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 826 | static int is_well_formed_var_name(const char *s, char terminator) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 827 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 828 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 829 | return 0; |
| 830 | s++; |
| 831 | while (isalnum(*s) || *s == '_') |
| 832 | s++; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 833 | return *s == terminator; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 834 | } |
| 835 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 836 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 837 | static char *unbackslash(char *src) |
| 838 | { |
| 839 | char *dst = src; |
| 840 | while (1) { |
| 841 | if (*src == '\\') |
| 842 | src++; |
| 843 | if ((*dst++ = *src++) == '\0') |
| 844 | break; |
| 845 | } |
| 846 | return dst; |
| 847 | } |
| 848 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 849 | 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] | 850 | { |
| 851 | int i; |
| 852 | unsigned count1; |
| 853 | unsigned count2; |
| 854 | char **v; |
| 855 | |
| 856 | v = strings; |
| 857 | count1 = 0; |
| 858 | if (v) { |
| 859 | while (*v) { |
| 860 | count1++; |
| 861 | v++; |
| 862 | } |
| 863 | } |
| 864 | count2 = 0; |
| 865 | v = add; |
| 866 | while (*v) { |
| 867 | count2++; |
| 868 | v++; |
| 869 | } |
| 870 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 871 | v[count1 + count2] = NULL; |
| 872 | i = count2; |
| 873 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 874 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 875 | return v; |
| 876 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 877 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 878 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 879 | { |
| 880 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 881 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 882 | return ptr; |
| 883 | } |
| 884 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 885 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 886 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 887 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 888 | /* Note: takes ownership of "add" ptr (it is not strdup'ed) */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 889 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 890 | { |
| 891 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 892 | v[0] = add; |
| 893 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 894 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 895 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 896 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 897 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 898 | { |
| 899 | char **ptr = add_string_to_strings(strings, add); |
| 900 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 901 | return ptr; |
| 902 | } |
| 903 | #define add_string_to_strings(strings, add) \ |
| 904 | xx_add_string_to_strings(__LINE__, strings, add) |
| 905 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 906 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 907 | static void free_strings(char **strings) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 908 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 909 | char **v; |
| 910 | |
| 911 | if (!strings) |
| 912 | return; |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 913 | v = strings; |
| 914 | while (*v) { |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 915 | free(*v); |
| 916 | v++; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 917 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 918 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 921 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 922 | /* Helpers for setting new $n and restoring them back |
| 923 | */ |
| 924 | typedef struct save_arg_t { |
| 925 | char *sv_argv0; |
| 926 | char **sv_g_argv; |
| 927 | int sv_g_argc; |
| 928 | smallint sv_g_malloced; |
| 929 | } save_arg_t; |
| 930 | |
| 931 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 932 | { |
| 933 | int n; |
| 934 | |
| 935 | sv->sv_argv0 = argv[0]; |
| 936 | sv->sv_g_argv = G.global_argv; |
| 937 | sv->sv_g_argc = G.global_argc; |
| 938 | sv->sv_g_malloced = G.global_args_malloced; |
| 939 | |
| 940 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 941 | G.global_argv = argv; |
| 942 | G.global_args_malloced = 0; |
| 943 | |
| 944 | n = 1; |
| 945 | while (*++argv) |
| 946 | n++; |
| 947 | G.global_argc = n; |
| 948 | } |
| 949 | |
| 950 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 951 | { |
| 952 | char **pp; |
| 953 | |
| 954 | if (G.global_args_malloced) { |
| 955 | /* someone ran "set -- arg1 arg2 ...", undo */ |
| 956 | pp = G.global_argv; |
| 957 | while (*++pp) /* note: does not free $0 */ |
| 958 | free(*pp); |
| 959 | free(G.global_argv); |
| 960 | } |
| 961 | argv[0] = sv->sv_argv0; |
| 962 | G.global_argv = sv->sv_g_argv; |
| 963 | G.global_argc = sv->sv_g_argc; |
| 964 | G.global_args_malloced = sv->sv_g_malloced; |
| 965 | } |
| 966 | |
| 967 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 968 | /* Basic theory of signal handling in shell |
| 969 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 970 | * This does not describe what hush does, rather, it is current understanding |
| 971 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 972 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 973 | * |
| 974 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 975 | * is finished or backgrounded. It is the same in interactive and |
| 976 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 977 | * 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] | 978 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 979 | * backgrounds (i.e. stops) or kills all members of currently running |
| 980 | * pipe. |
| 981 | * |
| 982 | * Wait builtin in interruptible by signals for which user trap is set |
| 983 | * or by SIGINT in interactive shell. |
| 984 | * |
| 985 | * Trap handlers will execute even within trap handlers. (right?) |
| 986 | * |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 987 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 988 | * |
| 989 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 990 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 991 | * |
| 992 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 993 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 994 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 995 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 996 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 997 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 998 | * Siganls which differ from SIG_DFL action |
| 999 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1000 | * |
| 1001 | * SIGQUIT: ignore |
| 1002 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1003 | * SIGHUP (interactive): |
| 1004 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1005 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1006 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1007 | * that all pipe members are stopped. Try this in bash: |
| 1008 | * while :; do :; done - ^Z does not background it |
| 1009 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1010 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1011 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1012 | * to interactive shell while shell is waiting for a pipe, |
| 1013 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1014 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1015 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1016 | * Example 2: this does not wait and does not execute ls: |
| 1017 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1018 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1019 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1020 | * |
| 1021 | * (What happens to signals which are IGN on shell start?) |
| 1022 | * (What happens with signal mask on shell start?) |
| 1023 | * |
| 1024 | * Implementation in hush |
| 1025 | * ====================== |
| 1026 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1027 | * We block all signals which we don't want to take action immediately, |
| 1028 | * i.e. we block all signals which need to have special handling as described |
| 1029 | * above, and all signals which have traps set. |
| 1030 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1031 | * and act on them. |
| 1032 | * |
| 1033 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 1034 | * sigset_t blocked_set: current blocked signal set |
| 1035 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1036 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1037 | * 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] | 1038 | * "trap 'cmd' SIGxxx": |
| 1039 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1040 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1041 | * unblock signals with special interactive handling |
| 1042 | * (child shell is not interactive), |
| 1043 | * unset all traps (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1044 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1045 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 1046 | * 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] | 1047 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1048 | * Note: as a result, we do not use signal handlers much. The only uses |
| 1049 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 1050 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1051 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1052 | enum { |
| 1053 | SPECIAL_INTERACTIVE_SIGS = 0 |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1054 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1055 | | (1 << SIGINT) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1056 | | (1 << SIGHUP) |
| 1057 | , |
| 1058 | #if ENABLE_HUSH_JOB |
| 1059 | SPECIAL_JOB_SIGS = 0 |
| 1060 | | (1 << SIGTTIN) |
| 1061 | | (1 << SIGTTOU) |
| 1062 | | (1 << SIGTSTP) |
| 1063 | #endif |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1064 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1065 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1066 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 1067 | //{ |
| 1068 | // G.count_SIGCHLD++; |
| 1069 | //} |
| 1070 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 1071 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1072 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1073 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
| 1074 | #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1075 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1076 | #define enable_restore_tty_pgrp_on_exit() (die_sleep = -1) |
| 1077 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1078 | /* Restores tty foreground process group, and exits. |
| 1079 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1080 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1081 | * or called directly with -EXITCODE. |
| 1082 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1083 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1084 | static void sigexit(int sig) |
| 1085 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1086 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 1087 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1088 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1089 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1090 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1091 | if (G.saved_tty_pgrp && getpid() == G.root_pid) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1092 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1093 | |
| 1094 | /* Not a signal, just exit */ |
| 1095 | if (sig <= 0) |
| 1096 | _exit(- sig); |
| 1097 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1098 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1099 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1100 | #else |
| 1101 | |
| 1102 | #define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1103 | #define enable_restore_tty_pgrp_on_exit() ((void)0) |
| 1104 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1105 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1106 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1107 | /* Restores tty foreground process group, and exits. */ |
| 1108 | static void hush_exit(int exitcode) NORETURN; |
| 1109 | static void hush_exit(int exitcode) |
| 1110 | { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 1111 | if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) { |
| 1112 | /* Prevent recursion: |
| 1113 | * trap "echo Hi; exit" EXIT; exit |
| 1114 | */ |
| 1115 | char *argv[] = { NULL, G.traps[0], NULL }; |
| 1116 | G.traps[0] = NULL; |
| 1117 | G.exiting = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1118 | builtin_eval(argv); |
| 1119 | free(argv[1]); |
| 1120 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1121 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1122 | #if ENABLE_HUSH_JOB |
| 1123 | fflush(NULL); /* flush all streams */ |
| 1124 | sigexit(- (exitcode & 0xff)); |
| 1125 | #else |
| 1126 | exit(exitcode); |
| 1127 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1128 | } |
| 1129 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1130 | static int check_and_run_traps(int sig) |
| 1131 | { |
| 1132 | static const struct timespec zero_timespec = { 0, 0 }; |
| 1133 | smalluint save_rcode; |
| 1134 | int last_sig = 0; |
| 1135 | |
| 1136 | if (sig) |
| 1137 | goto jump_in; |
| 1138 | while (1) { |
| 1139 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
| 1140 | if (sig <= 0) |
| 1141 | break; |
| 1142 | jump_in: |
| 1143 | last_sig = sig; |
| 1144 | if (G.traps && G.traps[sig]) { |
| 1145 | if (G.traps[sig][0]) { |
| 1146 | /* We have user-defined handler */ |
| 1147 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 1148 | save_rcode = G.last_exitcode; |
| 1149 | builtin_eval(argv); |
| 1150 | free(argv[1]); |
| 1151 | G.last_exitcode = save_rcode; |
| 1152 | } /* else: "" trap, ignoring signal */ |
| 1153 | continue; |
| 1154 | } |
| 1155 | /* not a trap: special action */ |
| 1156 | switch (sig) { |
| 1157 | // case SIGCHLD: |
| 1158 | // G.count_SIGCHLD++; |
| 1159 | // break; |
| 1160 | case SIGINT: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1161 | /* Builtin was ^C'ed, make it look prettier: */ |
| 1162 | bb_putchar('\n'); |
| 1163 | G.flag_SIGINT = 1; |
| 1164 | break; |
| 1165 | #if ENABLE_HUSH_JOB |
| 1166 | case SIGHUP: { |
| 1167 | struct pipe *job; |
| 1168 | /* bash is observed to signal whole process groups, |
| 1169 | * not individual processes */ |
| 1170 | for (job = G.job_list; job; job = job->next) { |
| 1171 | if (job->pgrp <= 0) |
| 1172 | continue; |
| 1173 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 1174 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 1175 | kill(- job->pgrp, SIGCONT); |
| 1176 | } |
| 1177 | sigexit(SIGHUP); |
| 1178 | } |
| 1179 | #endif |
| 1180 | default: /* ignored: */ |
| 1181 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
| 1182 | break; |
| 1183 | } |
| 1184 | } |
| 1185 | return last_sig; |
| 1186 | } |
| 1187 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1188 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1189 | static const char *set_cwd(void) |
| 1190 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1191 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1192 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1193 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1194 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1195 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1196 | if (!G.cwd) |
| 1197 | G.cwd = bb_msg_unknown; |
| 1198 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1201 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1202 | /* |
| 1203 | * Shell and environment variable support |
| 1204 | */ |
| 1205 | static struct variable **get_ptr_to_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1206 | { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1207 | struct variable **pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1208 | struct variable *cur; |
| 1209 | int len; |
| 1210 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1211 | len = strlen(name); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1212 | pp = &G.top_var; |
| 1213 | while ((cur = *pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1214 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1215 | return pp; |
| 1216 | pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1217 | } |
| 1218 | return NULL; |
| 1219 | } |
| 1220 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1221 | static struct variable *get_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1222 | { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1223 | struct variable **pp = get_ptr_to_local_var(name); |
| 1224 | if (pp) |
| 1225 | return *pp; |
| 1226 | return NULL; |
| 1227 | } |
| 1228 | |
| 1229 | static const char *get_local_var_value(const char *name) |
| 1230 | { |
| 1231 | struct variable **pp = get_ptr_to_local_var(name); |
| 1232 | if (pp) |
| 1233 | return strchr((*pp)->varstr, '=') + 1; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1234 | return NULL; |
| 1235 | } |
| 1236 | |
| 1237 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1238 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1239 | * flg_export: |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 1240 | * 0: do not change export flag |
| 1241 | * (if creating new variable, flag will be 0) |
| 1242 | * 1: set export flag and putenv the variable |
| 1243 | * -1: clear export flag and unsetenv the variable |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1244 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1245 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1246 | #if BB_MMU |
| 1247 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1248 | set_local_var(str, flg_export) |
| 1249 | #endif |
| 1250 | 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] | 1251 | { |
| 1252 | struct variable *cur; |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1253 | char *eq_sign; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1254 | int name_len; |
| 1255 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1256 | eq_sign = strchr(str, '='); |
| 1257 | if (!eq_sign) { /* not expected to ever happen? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1258 | free(str); |
| 1259 | return -1; |
| 1260 | } |
| 1261 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1262 | name_len = eq_sign - str + 1; /* including '=' */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1263 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1264 | while (1) { |
| 1265 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1266 | if (!cur->next) { |
| 1267 | /* Bail out. Note that now cur points |
| 1268 | * to last var in linked list */ |
| 1269 | break; |
| 1270 | } |
| 1271 | cur = cur->next; |
| 1272 | continue; |
| 1273 | } |
| 1274 | /* We found an existing var with this name */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1275 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1276 | #if !BB_MMU |
| 1277 | if (!flg_read_only) |
| 1278 | #endif |
| 1279 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1280 | free(str); |
| 1281 | return -1; |
| 1282 | } |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 1283 | if (flg_export == -1) { |
| 1284 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1285 | *eq_sign = '\0'; |
| 1286 | unsetenv(str); |
| 1287 | *eq_sign = '='; |
| 1288 | } |
| 1289 | if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1290 | free_and_exp: |
| 1291 | free(str); |
| 1292 | goto exp; |
| 1293 | } |
| 1294 | if (cur->max_len >= strlen(str)) { |
| 1295 | /* This one is from startup env, reuse space */ |
| 1296 | strcpy(cur->varstr, str); |
| 1297 | goto free_and_exp; |
| 1298 | } |
| 1299 | /* max_len == 0 signifies "malloced" var, which we can |
| 1300 | * (and has to) free */ |
| 1301 | if (!cur->max_len) |
| 1302 | free(cur->varstr); |
| 1303 | cur->max_len = 0; |
| 1304 | goto set_str_and_exp; |
| 1305 | } |
| 1306 | |
| 1307 | /* Not found - create next variable struct */ |
| 1308 | cur->next = xzalloc(sizeof(*cur)); |
| 1309 | cur = cur->next; |
| 1310 | |
| 1311 | set_str_and_exp: |
| 1312 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1313 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1314 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1315 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1316 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1317 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1318 | cur->flg_export = 1; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1319 | if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 1320 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1321 | if (cur->flg_export) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 1322 | if (flg_export == -1) { |
| 1323 | cur->flg_export = 0; |
| 1324 | /* unsetenv was already done */ |
| 1325 | } else { |
| 1326 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1327 | return putenv(cur->varstr); |
| 1328 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1329 | } |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1333 | static int unset_local_var_len(const char *name, int name_len) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1334 | { |
| 1335 | struct variable *cur; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1336 | struct variable **var_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1337 | |
| 1338 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1339 | return EXIT_SUCCESS; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1340 | var_pp = &G.top_var; |
| 1341 | while ((cur = *var_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1342 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1343 | if (cur->flg_read_only) { |
| 1344 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1345 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1346 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1347 | *var_pp = cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1348 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1349 | bb_unsetenv(cur->varstr); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1350 | if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 1351 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1352 | if (!cur->max_len) |
| 1353 | free(cur->varstr); |
| 1354 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1355 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1356 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1357 | var_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1358 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1359 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1362 | static int unset_local_var(const char *name) |
| 1363 | { |
| 1364 | return unset_local_var_len(name, strlen(name)); |
| 1365 | } |
| 1366 | |
| 1367 | static void unset_vars(char **strings) |
| 1368 | { |
| 1369 | char **v; |
| 1370 | |
| 1371 | if (!strings) |
| 1372 | return; |
| 1373 | v = strings; |
| 1374 | while (*v) { |
| 1375 | const char *eq = strchrnul(*v, '='); |
| 1376 | unset_local_var_len(*v, (int)(eq - *v)); |
| 1377 | v++; |
| 1378 | } |
| 1379 | free(strings); |
| 1380 | } |
| 1381 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1382 | #if ENABLE_SH_MATH_SUPPORT |
| 1383 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1384 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1385 | static char *endofname(const char *name) |
| 1386 | { |
| 1387 | char *p; |
| 1388 | |
| 1389 | p = (char *) name; |
| 1390 | if (!is_name(*p)) |
| 1391 | return p; |
| 1392 | while (*++p) { |
| 1393 | if (!is_in_name(*p)) |
| 1394 | break; |
| 1395 | } |
| 1396 | return p; |
| 1397 | } |
| 1398 | |
| 1399 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1400 | { |
| 1401 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1402 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1403 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1404 | } |
| 1405 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1406 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1407 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1408 | /* |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1409 | * Helpers for "var1=val1 var2=val2 cmd" feature |
| 1410 | */ |
| 1411 | static void add_vars(struct variable *var) |
| 1412 | { |
| 1413 | struct variable *next; |
| 1414 | |
| 1415 | while (var) { |
| 1416 | next = var->next; |
| 1417 | var->next = G.top_var; |
| 1418 | G.top_var = var; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1419 | if (var->flg_export) { |
| 1420 | debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1421 | putenv(var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1422 | } else { |
| 1423 | debug_printf_env("%s: restoring local '%s'\n", __func__, var->varstr); |
| 1424 | } |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1425 | var = next; |
| 1426 | } |
| 1427 | } |
| 1428 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1429 | static struct variable *set_vars_and_save_old(char **strings) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1430 | { |
| 1431 | char **s; |
| 1432 | struct variable *old = NULL; |
| 1433 | |
| 1434 | if (!strings) |
| 1435 | return old; |
| 1436 | s = strings; |
| 1437 | while (*s) { |
| 1438 | struct variable *var_p; |
| 1439 | struct variable **var_pp; |
| 1440 | char *eq; |
| 1441 | |
| 1442 | eq = strchr(*s, '='); |
| 1443 | if (eq) { |
| 1444 | *eq = '\0'; |
| 1445 | var_pp = get_ptr_to_local_var(*s); |
| 1446 | *eq = '='; |
| 1447 | if (var_pp) { |
| 1448 | /* Remove variable from global linked list */ |
| 1449 | var_p = *var_pp; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1450 | debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1451 | *var_pp = var_p->next; |
| 1452 | /* Add it to returned list */ |
| 1453 | var_p->next = old; |
| 1454 | old = var_p; |
| 1455 | } |
| 1456 | set_local_var(*s, 1, 0); |
| 1457 | } |
| 1458 | s++; |
| 1459 | } |
| 1460 | return old; |
| 1461 | } |
| 1462 | |
| 1463 | |
| 1464 | /* |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1465 | * in_str support |
| 1466 | */ |
| 1467 | static int static_get(struct in_str *i) |
| 1468 | { |
| 1469 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1470 | if (ch != '\0') |
| 1471 | return ch; |
| 1472 | i->p--; |
| 1473 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1474 | } |
| 1475 | |
| 1476 | static int static_peek(struct in_str *i) |
| 1477 | { |
| 1478 | return *i->p; |
| 1479 | } |
| 1480 | |
| 1481 | #if ENABLE_HUSH_INTERACTIVE |
| 1482 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1483 | static void cmdedit_update_prompt(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1484 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1485 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1486 | G.PS1 = get_local_var_value("PS1"); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1487 | if (G.PS1 == NULL) |
| 1488 | G.PS1 = "\\w \\$ "; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1489 | G.PS2 = get_local_var_value("PS2"); |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 1490 | } else { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1491 | G.PS1 = NULL; |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 1492 | } |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1493 | if (G.PS2 == NULL) |
| 1494 | G.PS2 = "> "; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1495 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1496 | |
| 1497 | static const char* setup_prompt_string(int promptmode) |
| 1498 | { |
| 1499 | const char *prompt_str; |
| 1500 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1501 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1502 | /* Set up the prompt */ |
| 1503 | if (promptmode == 0) { /* PS1 */ |
| 1504 | free((char*)G.PS1); |
| 1505 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1506 | prompt_str = G.PS1; |
| 1507 | } else |
| 1508 | prompt_str = G.PS2; |
| 1509 | } else |
| 1510 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1511 | debug_printf("result '%s'\n", prompt_str); |
| 1512 | return prompt_str; |
| 1513 | } |
| 1514 | |
| 1515 | static void get_user_input(struct in_str *i) |
| 1516 | { |
| 1517 | int r; |
| 1518 | const char *prompt_str; |
| 1519 | |
| 1520 | prompt_str = setup_prompt_string(i->promptmode); |
| 1521 | #if ENABLE_FEATURE_EDITING |
| 1522 | /* Enable command line editing only while a command line |
| 1523 | * is actually being read */ |
| 1524 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1525 | G.flag_SIGINT = 0; |
| 1526 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1527 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1528 | 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] | 1529 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1530 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1531 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1532 | i->eof_flag = (r < 0); |
| 1533 | if (i->eof_flag) { /* EOF/error detected */ |
| 1534 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1535 | G.user_input_buf[1] = '\0'; |
| 1536 | } |
| 1537 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1538 | do { |
| 1539 | G.flag_SIGINT = 0; |
| 1540 | fputs(prompt_str, stdout); |
| 1541 | fflush(stdout); |
| 1542 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1543 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1544 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1545 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1546 | i->eof_flag = (r == EOF); |
| 1547 | #endif |
| 1548 | i->p = G.user_input_buf; |
| 1549 | } |
| 1550 | |
| 1551 | #endif /* INTERACTIVE */ |
| 1552 | |
| 1553 | /* This is the magic location that prints prompts |
| 1554 | * and gets data back from the user */ |
| 1555 | static int file_get(struct in_str *i) |
| 1556 | { |
| 1557 | int ch; |
| 1558 | |
| 1559 | /* If there is data waiting, eat it up */ |
| 1560 | if (i->p && *i->p) { |
| 1561 | #if ENABLE_HUSH_INTERACTIVE |
| 1562 | take_cached: |
| 1563 | #endif |
| 1564 | ch = *i->p++; |
| 1565 | if (i->eof_flag && !*i->p) |
| 1566 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1567 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1568 | } else { |
| 1569 | /* need to double check i->file because we might be doing something |
| 1570 | * more complicated by now, like sourcing or substituting. */ |
| 1571 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1572 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1573 | do { |
| 1574 | get_user_input(i); |
| 1575 | } while (!*i->p); /* need non-empty line */ |
| 1576 | i->promptmode = 1; /* PS2 */ |
| 1577 | i->promptme = 0; |
| 1578 | goto take_cached; |
| 1579 | } |
| 1580 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1581 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1582 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1583 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1584 | #if ENABLE_HUSH_INTERACTIVE |
| 1585 | if (ch == '\n') |
| 1586 | i->promptme = 1; |
| 1587 | #endif |
| 1588 | return ch; |
| 1589 | } |
| 1590 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1591 | /* All callers guarantee this routine will never |
| 1592 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1593 | */ |
| 1594 | static int file_peek(struct in_str *i) |
| 1595 | { |
| 1596 | int ch; |
| 1597 | if (i->p && *i->p) { |
| 1598 | if (i->eof_flag && !i->p[1]) |
| 1599 | return EOF; |
| 1600 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1601 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1602 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1603 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1604 | i->eof_flag = (ch == EOF); |
| 1605 | i->peek_buf[0] = ch; |
| 1606 | i->peek_buf[1] = '\0'; |
| 1607 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1608 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1609 | return ch; |
| 1610 | } |
| 1611 | |
| 1612 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1613 | { |
| 1614 | i->peek = file_peek; |
| 1615 | i->get = file_get; |
| 1616 | #if ENABLE_HUSH_INTERACTIVE |
| 1617 | i->promptme = 1; |
| 1618 | i->promptmode = 0; /* PS1 */ |
| 1619 | #endif |
| 1620 | i->file = f; |
| 1621 | i->p = NULL; |
| 1622 | } |
| 1623 | |
| 1624 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1625 | { |
| 1626 | i->peek = static_peek; |
| 1627 | i->get = static_get; |
| 1628 | #if ENABLE_HUSH_INTERACTIVE |
| 1629 | i->promptme = 1; |
| 1630 | i->promptmode = 0; /* PS1 */ |
| 1631 | #endif |
| 1632 | i->p = s; |
| 1633 | i->eof_flag = 0; |
| 1634 | } |
| 1635 | |
| 1636 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1637 | /* |
| 1638 | * o_string support |
| 1639 | */ |
| 1640 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1641 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 1642 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1643 | { |
| 1644 | o->length = 0; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1645 | o->o_quoted = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1646 | if (o->data) |
| 1647 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1650 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1651 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1652 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1653 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1654 | } |
| 1655 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1656 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1657 | { |
| 1658 | free(o->data); |
| 1659 | } |
| 1660 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1661 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1662 | { |
| 1663 | if (o->length + len > o->maxlen) { |
| 1664 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1665 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1666 | } |
| 1667 | } |
| 1668 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1669 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1670 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1671 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1672 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1673 | o->data[o->length] = ch; |
| 1674 | o->length++; |
| 1675 | o->data[o->length] = '\0'; |
| 1676 | } |
| 1677 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1678 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1679 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1680 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1681 | memcpy(&o->data[o->length], str, len); |
| 1682 | o->length += len; |
| 1683 | o->data[o->length] = '\0'; |
| 1684 | } |
| 1685 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1686 | #if !BB_MMU |
| 1687 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1688 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1689 | o_addblock(o, str, strlen(str)); |
| 1690 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1691 | static void nommu_addchr(o_string *o, int ch) |
| 1692 | { |
| 1693 | if (o) |
| 1694 | o_addchr(o, ch); |
| 1695 | } |
| 1696 | #else |
| 1697 | #define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1698 | #endif |
| 1699 | |
| 1700 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1701 | { |
| 1702 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1703 | } |
| 1704 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1705 | 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] | 1706 | { |
| 1707 | while (len) { |
| 1708 | o_addchr(o, *str); |
| 1709 | if (*str++ == '\\' |
| 1710 | && (*str != '*' && *str != '?' && *str != '[') |
| 1711 | ) { |
| 1712 | o_addchr(o, '\\'); |
| 1713 | } |
| 1714 | len--; |
| 1715 | } |
| 1716 | } |
| 1717 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1718 | /* My analysis of quoting semantics tells me that state information |
| 1719 | * is associated with a destination, not a source. |
| 1720 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1721 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1722 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1723 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1724 | char *found = strchr("*?[\\", ch); |
| 1725 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1726 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1727 | o_grow_by(o, sz); |
| 1728 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1729 | o->data[o->length] = '\\'; |
| 1730 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1731 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1732 | o->data[o->length] = ch; |
| 1733 | o->length++; |
| 1734 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1735 | } |
| 1736 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1737 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1738 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1739 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1740 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1741 | sz++; |
| 1742 | o->data[o->length] = '\\'; |
| 1743 | o->length++; |
| 1744 | } |
| 1745 | o_grow_by(o, sz); |
| 1746 | o->data[o->length] = ch; |
| 1747 | o->length++; |
| 1748 | o->data[o->length] = '\0'; |
| 1749 | } |
| 1750 | |
| 1751 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1752 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1753 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1754 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1755 | return; |
| 1756 | } |
| 1757 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1758 | char ch; |
| 1759 | int sz; |
| 1760 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1761 | if (ordinary_cnt > len) /* paranoia */ |
| 1762 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1763 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1764 | if (ordinary_cnt == len) |
| 1765 | return; |
| 1766 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1767 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1768 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1769 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1770 | sz = 1; |
| 1771 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1772 | sz++; |
| 1773 | o->data[o->length] = '\\'; |
| 1774 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1775 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1776 | o_grow_by(o, sz); |
| 1777 | o->data[o->length] = ch; |
| 1778 | o->length++; |
| 1779 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1780 | } |
| 1781 | } |
| 1782 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1783 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1784 | * 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] | 1785 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1786 | * list[i] contains an INDEX (int!) into this string data. |
| 1787 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1788 | * but list[i]'s need not be modified. |
| 1789 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1790 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1791 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1792 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1793 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1794 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1795 | { |
| 1796 | char **list = (char**)o->data; |
| 1797 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1798 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1799 | |
| 1800 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1801 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1802 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1803 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1804 | indent(); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1805 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1806 | o->data + (int)list[i] + string_start, |
| 1807 | o->data + (int)list[i] + string_start); |
| 1808 | i++; |
| 1809 | } |
| 1810 | if (n) { |
| 1811 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1812 | indent(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1813 | 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] | 1814 | } |
| 1815 | } |
| 1816 | #else |
| 1817 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1818 | #endif |
| 1819 | |
| 1820 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1821 | * in list[n] so that it points past last stored byte so far. |
| 1822 | * It returns n+1. */ |
| 1823 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1824 | { |
| 1825 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1826 | int string_start; |
| 1827 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1828 | |
| 1829 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1830 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1831 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1832 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1833 | 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] | 1834 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1835 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1836 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1837 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1838 | memmove(list + n + 0x10, list + n, string_len); |
| 1839 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1840 | } else { |
| 1841 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1842 | n, string_len, string_start); |
| 1843 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1844 | } else { |
| 1845 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1846 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1847 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1848 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1849 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1850 | o->has_empty_slot = 0; |
| 1851 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1852 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1853 | return n + 1; |
| 1854 | } |
| 1855 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1856 | /* "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] | 1857 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1858 | { |
| 1859 | char **list = (char**)o->data; |
| 1860 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1861 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1862 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1863 | } |
| 1864 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1865 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1866 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1867 | static int o_glob(o_string *o, int n) |
| 1868 | { |
| 1869 | glob_t globdata; |
| 1870 | int gr; |
| 1871 | char *pattern; |
| 1872 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1873 | 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] | 1874 | if (!o->data) |
| 1875 | return o_save_ptr_helper(o, n); |
| 1876 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1877 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1878 | if (!glob_needed(pattern)) { |
| 1879 | literal: |
| 1880 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1881 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1882 | return o_save_ptr_helper(o, n); |
| 1883 | } |
| 1884 | |
| 1885 | memset(&globdata, 0, sizeof(globdata)); |
| 1886 | gr = glob(pattern, 0, NULL, &globdata); |
| 1887 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1888 | if (gr == GLOB_NOSPACE) |
| 1889 | bb_error_msg_and_die("out of memory during glob"); |
| 1890 | if (gr == GLOB_NOMATCH) { |
| 1891 | globfree(&globdata); |
| 1892 | goto literal; |
| 1893 | } |
| 1894 | if (gr != 0) { /* GLOB_ABORTED ? */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 1895 | /* TODO: testcase for bad glob pattern behavior */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1896 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1897 | } |
| 1898 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1899 | char **argv = globdata.gl_pathv; |
| 1900 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1901 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1902 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1903 | n = o_save_ptr_helper(o, n); |
| 1904 | argv++; |
| 1905 | if (!*argv) |
| 1906 | break; |
| 1907 | } |
| 1908 | } |
| 1909 | globfree(&globdata); |
| 1910 | if (DEBUG_GLOB) |
| 1911 | debug_print_list("o_glob returning", o, n); |
| 1912 | return n; |
| 1913 | } |
| 1914 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1915 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1916 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1917 | static int o_save_ptr(o_string *o, int n) |
| 1918 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1919 | if (o->o_glob) { /* if globbing is requested */ |
| 1920 | /* If o->has_empty_slot, list[n] was already globbed |
| 1921 | * (if it was requested back then when it was filled) |
| 1922 | * so don't do that again! */ |
| 1923 | if (!o->has_empty_slot) |
| 1924 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1925 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1926 | return o_save_ptr_helper(o, n); |
| 1927 | } |
| 1928 | |
| 1929 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1930 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1931 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1932 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1933 | int string_start; |
| 1934 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1935 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1936 | if (DEBUG_EXPAND) |
| 1937 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1938 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1939 | list = (char**)o->data; |
| 1940 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1941 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1942 | while (n) { |
| 1943 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1944 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1945 | } |
| 1946 | return list; |
| 1947 | } |
| 1948 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1949 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1950 | /* Expansion can recurse */ |
| 1951 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1952 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1953 | #endif |
| 1954 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1955 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1956 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1957 | parse_stream_dquoted(dest, input, dquote_end) |
| 1958 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1959 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1960 | o_string *dest, |
| 1961 | struct in_str *input, |
| 1962 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1963 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1964 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1965 | * all variable references within and returns a pointer to |
| 1966 | * a list of expanded strings, possibly with larger number |
| 1967 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1968 | * This new list is allocated as a single malloc block. |
| 1969 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1970 | * followed by strings themself. |
| 1971 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1972 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1973 | /* Store given string, finalizing the word and starting new one whenever |
| 1974 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1975 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1976 | 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] | 1977 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1978 | while (1) { |
| 1979 | int word_len = strcspn(str, G.ifs); |
| 1980 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1981 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1982 | o_addQstr(output, str, word_len); |
| 1983 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1984 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1985 | str += word_len; |
| 1986 | } |
| 1987 | if (!*str) /* EOL - do not finalize word */ |
| 1988 | break; |
| 1989 | o_addchr(output, '\0'); |
| 1990 | debug_print_list("expand_on_ifs", output, n); |
| 1991 | n = o_save_ptr(output, n); |
| 1992 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1993 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1994 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1995 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1996 | } |
| 1997 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 1998 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 1999 | * they are in double quotes, with the exception that they are not :). |
| 2000 | * Just the rules are similar: "expand only $var and `cmd`" |
| 2001 | * |
| 2002 | * Returns malloced string. |
| 2003 | * As an optimization, we return NULL if expansion is not needed. |
| 2004 | */ |
| 2005 | static char *expand_pseudo_dquoted(const char *str) |
| 2006 | { |
| 2007 | char *exp_str; |
| 2008 | struct in_str input; |
| 2009 | o_string dest = NULL_O_STRING; |
| 2010 | |
| 2011 | if (strchr(str, '$') == NULL |
| 2012 | #if ENABLE_HUSH_TICK |
| 2013 | && strchr(str, '`') == NULL |
| 2014 | #endif |
| 2015 | ) { |
| 2016 | return NULL; |
| 2017 | } |
| 2018 | |
| 2019 | /* We need to expand. Example: |
| 2020 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 2021 | */ |
| 2022 | setup_string_in_str(&input, str); |
| 2023 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
| 2024 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
| 2025 | exp_str = expand_string_to_string(dest.data); |
| 2026 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 2027 | o_free_unsafe(&dest); |
| 2028 | return exp_str; |
| 2029 | } |
| 2030 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2031 | /* Expand all variable references in given string, adding words to list[] |
| 2032 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 2033 | * to be filled). This routine is extremely tricky: has to deal with |
| 2034 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 2035 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 2036 | 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] | 2037 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2038 | /* or_mask is either 0 (normal case) or 0x80 |
| 2039 | * (expansion of right-hand side of assignment == 1-element expand. |
| 2040 | * 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] | 2041 | |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2042 | char ored_ch; |
| 2043 | char *p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2044 | |
| 2045 | ored_ch = 0; |
| 2046 | |
| 2047 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 2048 | debug_print_list("expand_vars_to_list", output, n); |
| 2049 | n = o_save_ptr(output, n); |
| 2050 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 2051 | |
| 2052 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2053 | char first_ch; |
| 2054 | int i; |
| 2055 | char *dyn_val = NULL; |
| 2056 | const char *val = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2057 | #if ENABLE_HUSH_TICK |
| 2058 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 2059 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2060 | #if ENABLE_SH_MATH_SUPPORT |
| 2061 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 2062 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2063 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2064 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 2065 | arg = ++p; |
| 2066 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 2067 | |
| 2068 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 2069 | /* "$@" is special. Even if quoted, it can still |
| 2070 | * expand to nothing (not even an empty string) */ |
| 2071 | if ((first_ch & 0x7f) != '@') |
| 2072 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2073 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2074 | switch (first_ch & 0x7f) { |
| 2075 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 2076 | case '$': /* pid */ |
| 2077 | val = utoa(G.root_pid); |
| 2078 | break; |
| 2079 | case '!': /* bg pid */ |
| 2080 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 2081 | break; |
| 2082 | case '?': /* exitcode */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 2083 | val = utoa(G.last_exitcode); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2084 | break; |
| 2085 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2086 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 2087 | /* actually, it's a ${#var} */ |
| 2088 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2089 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 2090 | break; |
| 2091 | case '*': |
| 2092 | case '@': |
| 2093 | i = 1; |
| 2094 | if (!G.global_argv[i]) |
| 2095 | break; |
| 2096 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 2097 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2098 | smallint sv = output->o_escape; |
| 2099 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2100 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2101 | while (G.global_argv[i]) { |
| 2102 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 2103 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 2104 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 2105 | /* this argv[] is not empty and not last: |
| 2106 | * put terminating NUL, start new word */ |
| 2107 | o_addchr(output, '\0'); |
| 2108 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 2109 | n = o_save_ptr(output, n); |
| 2110 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 2111 | } |
| 2112 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2113 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2114 | } else |
| 2115 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 2116 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 2117 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 2118 | while (1) { |
| 2119 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2120 | if (++i >= G.global_argc) |
| 2121 | break; |
| 2122 | o_addchr(output, '\0'); |
| 2123 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 2124 | n = o_save_ptr(output, n); |
| 2125 | } |
| 2126 | } else { /* quoted $*: add as one word */ |
| 2127 | while (1) { |
| 2128 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 2129 | if (!G.global_argv[++i]) |
| 2130 | break; |
| 2131 | if (G.ifs[0]) |
| 2132 | o_addchr(output, G.ifs[0]); |
| 2133 | } |
| 2134 | } |
| 2135 | break; |
| 2136 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 2137 | /* "Empty variable", used to make "" etc to not disappear */ |
| 2138 | arg++; |
| 2139 | ored_ch = 0x80; |
| 2140 | break; |
| 2141 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2142 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2143 | *p = '\0'; |
| 2144 | arg++; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2145 | /* Can't just stuff it into output o_string, |
| 2146 | * expanded result may need to be globbed |
| 2147 | * and $IFS-splitted */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2148 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 2149 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2150 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 2151 | val = subst_result.data; |
| 2152 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 2153 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2154 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2155 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2156 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2157 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2158 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2159 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2160 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2161 | arg++; /* skip '+' */ |
| 2162 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2163 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2164 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2165 | exp_str = expand_pseudo_dquoted(arg); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2166 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2167 | hooks.setvar = arith_set_local_var; |
| 2168 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2169 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 2170 | free(exp_str); |
| 2171 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2172 | if (errcode < 0) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2173 | const char *msg = "error in arithmetic"; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2174 | switch (errcode) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2175 | case -3: |
| 2176 | msg = "exponent less than 0"; |
| 2177 | break; |
| 2178 | case -2: |
| 2179 | msg = "divide by 0"; |
| 2180 | break; |
| 2181 | case -5: |
| 2182 | msg = "expression recursion loop detected"; |
| 2183 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2184 | } |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2185 | die_if_script(msg); |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2186 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2187 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2188 | sprintf(arith_buf, arith_t_fmt, res); |
| 2189 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2190 | break; |
| 2191 | } |
| 2192 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2193 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2194 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2195 | bool exp_len = false; |
| 2196 | bool exp_null = false; |
| 2197 | char *var = arg; |
| 2198 | char exp_save = exp_save; /* for compiler */ |
| 2199 | char exp_op = exp_op; /* for compiler */ |
| 2200 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2201 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 2202 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2203 | *p = '\0'; |
| 2204 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2205 | |
| 2206 | /* prepare for expansions */ |
| 2207 | if (var[0] == '#') { |
| 2208 | /* handle length expansion ${#var} */ |
| 2209 | exp_len = true; |
| 2210 | ++var; |
| 2211 | } else { |
| 2212 | /* maybe handle parameter expansion */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2213 | exp_off = strcspn(var, ":-=+?%#"); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2214 | if (!var[exp_off]) |
| 2215 | exp_off = 0; |
| 2216 | if (exp_off) { |
| 2217 | exp_save = var[exp_off]; |
| 2218 | exp_null = exp_save == ':'; |
| 2219 | exp_word = var + exp_off; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2220 | if (exp_null) |
| 2221 | ++exp_word; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2222 | exp_op = *exp_word++; |
| 2223 | var[exp_off] = '\0'; |
| 2224 | } |
| 2225 | } |
| 2226 | |
| 2227 | /* lookup the variable in question */ |
| 2228 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 2229 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2230 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2231 | if (i < G.global_argc) |
| 2232 | val = G.global_argv[i]; |
| 2233 | /* else val remains NULL: $N with too big N */ |
| 2234 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 2235 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2236 | |
| 2237 | /* handle any expansions */ |
| 2238 | if (exp_len) { |
| 2239 | debug_printf_expand("expand: length of '%s' = ", val); |
| 2240 | val = utoa(val ? strlen(val) : 0); |
| 2241 | debug_printf_expand("%s\n", val); |
| 2242 | } else if (exp_off) { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2243 | if (exp_op == '%' || exp_op == '#') { |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2244 | if (val) { |
| 2245 | /* we need to do a pattern match */ |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2246 | bool match_at_left; |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2247 | char *loc; |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2248 | scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left); |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2249 | if (exp_op == *exp_word) /* ## or %% */ |
| 2250 | ++exp_word; |
| 2251 | val = dyn_val = xstrdup(val); |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2252 | loc = scan(dyn_val, exp_word, match_at_left); |
| 2253 | if (match_at_left) /* # or ## */ |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2254 | val = loc; |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2255 | else if (loc) /* % or %% and match was found */ |
Mike Frysinger | 57e7467 | 2009-04-09 23:00:33 +0000 | [diff] [blame] | 2256 | *loc = '\0'; |
| 2257 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2258 | } else { |
| 2259 | /* we need to do an expansion */ |
| 2260 | int exp_test = (!val || (exp_null && !val[0])); |
| 2261 | if (exp_op == '+') |
| 2262 | exp_test = !exp_test; |
| 2263 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 2264 | exp_null ? "true" : "false", exp_test); |
| 2265 | if (exp_test) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2266 | if (exp_op == '?') { |
| 2267 | //TODO: how interactive bash aborts expansion mid-command? |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2268 | /* ${var?[error_msg_if_unset]} */ |
| 2269 | /* ${var:?[error_msg_if_unset_or_null]} */ |
| 2270 | /* mimic bash message */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2271 | die_if_script("%s: %s", |
| 2272 | var, |
| 2273 | exp_word[0] ? exp_word : "parameter null or not set" |
| 2274 | ); |
| 2275 | } else { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2276 | val = exp_word; |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 2277 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2278 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2279 | if (exp_op == '=') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2280 | /* ${var=[word]} or ${var:=[word]} */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2281 | if (isdigit(var[0]) || var[0] == '#') { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2282 | /* mimic bash message */ |
| 2283 | die_if_script("$%s: cannot assign in this way", var); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2284 | val = NULL; |
| 2285 | } else { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 2286 | char *new_var = xasprintf("%s=%s", var, val); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2287 | set_local_var(new_var, 0, 0); |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2288 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2289 | } |
| 2290 | } |
| 2291 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2292 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2293 | var[exp_off] = exp_save; |
| 2294 | } |
| 2295 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2296 | arg[0] = first_ch; |
| 2297 | #if ENABLE_HUSH_TICK |
| 2298 | store_val: |
| 2299 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2300 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2301 | 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] | 2302 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2303 | /* unquoted var's contents should be globbed, so don't escape */ |
| 2304 | smallint sv = output->o_escape; |
| 2305 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2306 | n = expand_on_ifs(output, n, val); |
| 2307 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2308 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2309 | } |
| 2310 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2311 | 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] | 2312 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2313 | } /* default: */ |
| 2314 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 5b7589e | 2009-04-26 11:25:19 +0000 | [diff] [blame] | 2315 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2316 | if (val) { |
| 2317 | o_addQstr(output, val, strlen(val)); |
| 2318 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 2319 | free(dyn_val); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2320 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 2321 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2322 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2323 | |
| 2324 | #if ENABLE_HUSH_TICK |
| 2325 | o_free(&subst_result); |
| 2326 | #endif |
| 2327 | arg = ++p; |
| 2328 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 2329 | |
| 2330 | if (arg[0]) { |
| 2331 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 2332 | /* this part is literal, and it was already pre-quoted |
| 2333 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2334 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2335 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 2336 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 2337 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 2338 | ) { |
| 2339 | n--; |
| 2340 | /* allow to reuse list[n] later without re-growth */ |
| 2341 | output->has_empty_slot = 1; |
| 2342 | } else { |
| 2343 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2344 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2345 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2346 | } |
| 2347 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2348 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2349 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2350 | int n; |
| 2351 | char **list; |
| 2352 | char **v; |
| 2353 | o_string output = NULL_O_STRING; |
| 2354 | |
| 2355 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2356 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2357 | /* (unquoted $var will temporarily switch it off) */ |
| 2358 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2359 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2360 | |
| 2361 | n = 0; |
| 2362 | v = argv; |
| 2363 | while (*v) { |
| 2364 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2365 | v++; |
| 2366 | } |
| 2367 | debug_print_list("expand_variables", &output, n); |
| 2368 | |
| 2369 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2370 | list = o_finalize_list(&output, n); |
| 2371 | debug_print_strings("expand_variables[1]", list); |
| 2372 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2373 | } |
| 2374 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2375 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2376 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2377 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2380 | /* Used for expansion of right hand of assignments */ |
| 2381 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2382 | * "v=/bin/c*" */ |
| 2383 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2384 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2385 | char *argv[2], **list; |
| 2386 | |
| 2387 | argv[0] = (char*)str; |
| 2388 | argv[1] = NULL; |
| 2389 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2390 | if (HUSH_DEBUG) |
| 2391 | if (!list[0] || list[1]) |
| 2392 | bb_error_msg_and_die("BUG in varexp2"); |
| 2393 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2394 | overlapping_strcpy((char*)list, list[0]); |
| 2395 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2396 | return (char*)list; |
| 2397 | } |
| 2398 | |
| 2399 | /* Used for "eval" builtin */ |
| 2400 | static char* expand_strvec_to_string(char **argv) |
| 2401 | { |
| 2402 | char **list; |
| 2403 | |
| 2404 | list = expand_variables(argv, 0x80); |
| 2405 | /* Convert all NULs to spaces */ |
| 2406 | if (list[0]) { |
| 2407 | int n = 1; |
| 2408 | while (list[n]) { |
| 2409 | if (HUSH_DEBUG) |
| 2410 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2411 | bb_error_msg_and_die("BUG in varexp3"); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 2412 | /* bash uses ' ' regardless of $IFS contents */ |
| 2413 | list[n][-1] = ' '; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2414 | n++; |
| 2415 | } |
| 2416 | } |
| 2417 | overlapping_strcpy((char*)list, list[0]); |
| 2418 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2419 | return (char*)list; |
| 2420 | } |
| 2421 | |
| 2422 | static char **expand_assignments(char **argv, int count) |
| 2423 | { |
| 2424 | int i; |
| 2425 | char **p = NULL; |
| 2426 | /* Expand assignments into one string each */ |
| 2427 | for (i = 0; i < count; i++) { |
| 2428 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2429 | } |
| 2430 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2433 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2434 | #if BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2435 | /* never called */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2436 | 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] | 2437 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2438 | static void reset_traps_to_defaults(void) |
| 2439 | { |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2440 | /* This function is always called in a child shell |
| 2441 | * after fork (not vfork, NOMMU doesn't use this function). |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2442 | * Child shells are not interactive. |
| 2443 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 2444 | * Testcase: (while :; do :; done) + ^Z should background. |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2445 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2446 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2447 | unsigned sig; |
| 2448 | unsigned mask; |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2449 | |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2450 | if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS)) |
| 2451 | return; |
| 2452 | |
| 2453 | /* Stupid. It can be done with *single* &= op, but we can't use |
| 2454 | * the fact that G.blocked_set is implemented as a bitmask... */ |
| 2455 | mask = (SPECIAL_INTERACTIVE_SIGS >> 1); |
| 2456 | sig = 1; |
| 2457 | while (1) { |
| 2458 | if (mask & 1) |
| 2459 | sigdelset(&G.blocked_set, sig); |
| 2460 | mask >>= 1; |
| 2461 | if (!mask) |
| 2462 | break; |
| 2463 | sig++; |
| 2464 | } |
| 2465 | |
| 2466 | G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
| 2467 | mask = G.non_DFL_mask; |
| 2468 | if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) { |
| 2469 | if (!G.traps[sig]) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2470 | continue; |
| 2471 | free(G.traps[sig]); |
| 2472 | G.traps[sig] = NULL; |
| 2473 | /* There is no signal for 0 (EXIT) */ |
| 2474 | if (sig == 0) |
| 2475 | continue; |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 2476 | /* There was a trap handler, we are removing it. |
| 2477 | * But if sig still has non-DFL handling, |
| 2478 | * we should not unblock it. */ |
| 2479 | if (mask & 1) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2480 | continue; |
| 2481 | sigdelset(&G.blocked_set, sig); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2482 | } |
Denis Vlasenko | 74a931a | 2009-04-15 23:29:44 +0000 | [diff] [blame] | 2483 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2484 | } |
| 2485 | |
| 2486 | #else /* !BB_MMU */ |
| 2487 | |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2488 | static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN; |
| 2489 | 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] | 2490 | { |
| 2491 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2492 | char *heredoc_argv[4]; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2493 | struct variable *cur; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2494 | #if ENABLE_HUSH_FUNCTIONS |
| 2495 | struct function *funcp; |
| 2496 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2497 | char **argv, **pp; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2498 | unsigned cnt; |
| 2499 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2500 | if (!g_argv0) { /* heredoc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2501 | argv = heredoc_argv; |
| 2502 | argv[0] = (char *) G.argv0_for_re_execing; |
| 2503 | argv[1] = (char *) "-<"; |
| 2504 | argv[2] = (char *) s; |
| 2505 | argv[3] = NULL; |
Denis Vlasenko | f50caac | 2009-04-09 01:40:15 +0000 | [diff] [blame] | 2506 | pp = &argv[3]; /* used as pointer to empty environment */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2507 | goto do_exec; |
| 2508 | } |
| 2509 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2510 | sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x") |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2511 | , (unsigned) G.root_pid |
| 2512 | , (unsigned) G.last_bg_pid |
| 2513 | , (unsigned) G.last_exitcode |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2514 | IF_HUSH_LOOPS(, G.depth_of_loop) |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2515 | ); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2516 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...> |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2517 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2518 | */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2519 | cnt = 6; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2520 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2521 | if (!cur->flg_export || cur->flg_read_only) |
| 2522 | cnt += 2; |
| 2523 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2524 | #if ENABLE_HUSH_FUNCTIONS |
| 2525 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 2526 | cnt += 3; |
| 2527 | #endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2528 | pp = g_argv; |
| 2529 | while (*pp++) |
| 2530 | cnt++; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2531 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2532 | *pp++ = (char *) G.argv0_for_re_execing; |
| 2533 | *pp++ = param_buf; |
| 2534 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2535 | if (cur->varstr == hush_version_str) |
| 2536 | continue; |
| 2537 | if (cur->flg_read_only) { |
| 2538 | *pp++ = (char *) "-R"; |
| 2539 | *pp++ = cur->varstr; |
| 2540 | } else if (!cur->flg_export) { |
| 2541 | *pp++ = (char *) "-V"; |
| 2542 | *pp++ = cur->varstr; |
| 2543 | } |
| 2544 | } |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2545 | #if ENABLE_HUSH_FUNCTIONS |
| 2546 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 2547 | *pp++ = (char *) "-F"; |
| 2548 | *pp++ = funcp->name; |
| 2549 | *pp++ = funcp->body_as_string; |
| 2550 | } |
| 2551 | #endif |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2552 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2553 | * |
| 2554 | * However, POSIX says that subshells reset signals with traps |
| 2555 | * to SIG_DFL. |
| 2556 | * I tested bash-3.2 and it not only does that with true subshells |
| 2557 | * of the form ( list ), but with any forked children shells. |
| 2558 | * I set trap "echo W" WINCH; and then tried: |
| 2559 | * |
| 2560 | * { echo 1; sleep 20; echo 2; } & |
| 2561 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2562 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2563 | * |
| 2564 | * In all these cases sending SIGWINCH to the child shell |
| 2565 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2566 | * _inside_ group (just before echo 1), it works. |
| 2567 | * |
| 2568 | * I conclude it means we don't need to pass active traps here. |
| 2569 | * exec syscall below resets them to SIG_DFL for us. |
| 2570 | */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2571 | *pp++ = (char *) "-c"; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2572 | *pp++ = (char *) s; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2573 | *pp++ = g_argv0; |
| 2574 | while (*g_argv) |
| 2575 | *pp++ = *g_argv++; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2576 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2577 | pp = environ; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2578 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2579 | do_exec: |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2580 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
| 2581 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2582 | execve(bb_busybox_exec_path, argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2583 | /* Fallback. Useful for init=/bin/hush usage etc */ |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2584 | if (argv[0][0] == '/') |
| 2585 | execve(argv[0], argv, pp); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2586 | xfunc_error_retval = 127; |
| 2587 | bb_error_msg_and_die("can't re-execute the shell"); |
| 2588 | } |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2589 | #endif /* !BB_MMU */ |
| 2590 | |
| 2591 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2592 | static void setup_heredoc(struct redir_struct *redir) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2593 | { |
| 2594 | struct fd_pair pair; |
| 2595 | pid_t pid; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2596 | int len, written; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2597 | /* the _body_ of heredoc (misleading field name) */ |
| 2598 | const char *heredoc = redir->rd_filename; |
| 2599 | char *expanded; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2600 | #if !BB_MMU |
| 2601 | char **to_free; |
| 2602 | #endif |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2603 | |
| 2604 | expanded = NULL; |
| 2605 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
| 2606 | expanded = expand_pseudo_dquoted(heredoc); |
| 2607 | if (expanded) |
| 2608 | heredoc = expanded; |
| 2609 | } |
| 2610 | len = strlen(heredoc); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2611 | |
Denis Vlasenko | a2218dd | 2009-04-09 01:39:02 +0000 | [diff] [blame] | 2612 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2613 | xpiped_pair(pair); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2614 | xmove_fd(pair.rd, redir->rd_fd); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2615 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2616 | /* Try writing without forking. Newer kernels have |
| 2617 | * dynamically growing pipes. Must use non-blocking write! */ |
| 2618 | ndelay_on(pair.wr); |
| 2619 | while (1) { |
| 2620 | written = write(pair.wr, heredoc, len); |
| 2621 | if (written <= 0) |
| 2622 | break; |
| 2623 | len -= written; |
| 2624 | if (len == 0) { |
| 2625 | close(pair.wr); |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 2626 | free(expanded); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2627 | return; |
| 2628 | } |
| 2629 | heredoc += written; |
| 2630 | } |
| 2631 | ndelay_off(pair.wr); |
| 2632 | |
| 2633 | /* Okay, pipe buffer was not big enough */ |
| 2634 | /* Note: we must not create a stray child (bastard? :) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2635 | * for the unsuspecting parent process. Child creates a grandchild |
| 2636 | * and exits before parent execs the process which consumes heredoc |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2637 | * (that exec happens after we return from this function) */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2638 | #if !BB_MMU |
| 2639 | to_free = NULL; |
| 2640 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2641 | pid = vfork(); |
| 2642 | if (pid < 0) |
| 2643 | bb_perror_msg_and_die("vfork"); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2644 | if (pid == 0) { |
| 2645 | /* child */ |
Denis Vlasenko | 41ddecd | 2009-04-15 21:58:14 +0000 | [diff] [blame] | 2646 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2647 | pid = BB_MMU ? fork() : vfork(); |
| 2648 | if (pid < 0) |
| 2649 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
| 2650 | if (pid != 0) |
| 2651 | _exit(0); |
| 2652 | /* grandchild */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2653 | close(redir->rd_fd); /* read side of the pipe */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2654 | #if BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2655 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2656 | _exit(0); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2657 | #else |
| 2658 | /* Delegate blocking writes to another process */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2659 | xmove_fd(pair.wr, STDOUT_FILENO); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2660 | re_execute_shell(&to_free, heredoc, NULL, NULL); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2661 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2662 | } |
| 2663 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2664 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2665 | #if !BB_MMU |
| 2666 | free(to_free); |
| 2667 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2668 | close(pair.wr); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2669 | free(expanded); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2670 | wait(NULL); /* wait till child has died */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2671 | } |
| 2672 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2673 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2674 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2675 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2676 | { |
| 2677 | int openfd, mode; |
| 2678 | struct redir_struct *redir; |
| 2679 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2680 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2681 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2682 | /* rd_fd<<HERE case */ |
Denys Vlasenko | 1dd6cf8 | 2009-05-02 14:17:31 +0200 | [diff] [blame] | 2683 | if (squirrel && redir->rd_fd < 3 |
| 2684 | && squirrel[redir->rd_fd] < 0 |
| 2685 | ) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2686 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2687 | } |
| 2688 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 2689 | * of the heredoc */ |
| 2690 | debug_printf_parse("set heredoc '%s'\n", |
| 2691 | redir->rd_filename); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2692 | setup_heredoc(redir); |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2693 | continue; |
| 2694 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2695 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2696 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
| 2697 | /* rd_fd<*>file case (<*> is <,>,>>,<>) */ |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2698 | char *p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2699 | if (redir->rd_filename == NULL) { |
| 2700 | /* Something went wrong in the parse. |
| 2701 | * Pretend it didn't happen */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2702 | bb_error_msg("bug in redirect parse"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2703 | continue; |
| 2704 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2705 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2706 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2707 | openfd = open_or_warn(p, mode); |
| 2708 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2709 | if (openfd < 0) { |
| 2710 | /* this could get lost if stderr has been redirected, but |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2711 | * bash and ash both lose it as well (though zsh doesn't!) */ |
| 2712 | //what the above comment tries to say? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2713 | return 1; |
| 2714 | } |
| 2715 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2716 | /* rd_fd<*>rd_dup or rd_fd<*>- cases */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2717 | openfd = redir->rd_dup; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2718 | } |
| 2719 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2720 | if (openfd != redir->rd_fd) { |
Denys Vlasenko | 1dd6cf8 | 2009-05-02 14:17:31 +0200 | [diff] [blame] | 2721 | if (squirrel && redir->rd_fd < 3 |
| 2722 | && squirrel[redir->rd_fd] < 0 |
| 2723 | ) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2724 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2725 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2726 | if (openfd == REDIRFD_CLOSE) { |
| 2727 | /* "n>-" means "close me" */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2728 | close(redir->rd_fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2729 | } else { |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2730 | xdup2(openfd, redir->rd_fd); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 2731 | if (redir->rd_dup == REDIRFD_TO_FILE) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2732 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2733 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2734 | } |
| 2735 | } |
| 2736 | return 0; |
| 2737 | } |
| 2738 | |
| 2739 | static void restore_redirects(int squirrel[]) |
| 2740 | { |
| 2741 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2742 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2743 | fd = squirrel[i]; |
| 2744 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2745 | /* We simply die on error */ |
| 2746 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2747 | } |
| 2748 | } |
| 2749 | } |
| 2750 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2751 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2752 | static void free_pipe_list(struct pipe *head); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2753 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2754 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2755 | static void free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2756 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2757 | char **p; |
| 2758 | struct command *command; |
| 2759 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2760 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2761 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2762 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2763 | return; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2764 | debug_printf_clean("run pipe: (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2765 | for (i = 0; i < pi->num_cmds; i++) { |
| 2766 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2767 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2768 | if (command->argv) { |
| 2769 | for (a = 0, p = command->argv; *p; a++, p++) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2770 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2771 | } |
| 2772 | free_strings(command->argv); |
| 2773 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2774 | } |
| 2775 | /* not "else if": on syntax error, we may have both! */ |
| 2776 | if (command->group) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2777 | debug_printf_clean(" begin group (grp_type:%d)\n", |
| 2778 | command->grp_type); |
| 2779 | free_pipe_list(command->group); |
| 2780 | debug_printf_clean(" end group\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2781 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2782 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 2783 | /* else is crucial here. |
| 2784 | * If group != NULL, child_func is meaningless */ |
| 2785 | #if ENABLE_HUSH_FUNCTIONS |
| 2786 | else if (command->child_func) { |
| 2787 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 2788 | command->child_func->parent_cmd = NULL; |
| 2789 | } |
| 2790 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2791 | #if !BB_MMU |
| 2792 | free(command->group_as_string); |
| 2793 | command->group_as_string = NULL; |
| 2794 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2795 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2796 | debug_printf_clean(" redirect %d%s", |
| 2797 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2798 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2799 | if (r->rd_filename) { |
| 2800 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 2801 | free(r->rd_filename); |
| 2802 | r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2803 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 2804 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2805 | rnext = r->next; |
| 2806 | free(r); |
| 2807 | } |
| 2808 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2809 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2810 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2811 | pi->cmds = NULL; |
| 2812 | #if ENABLE_HUSH_JOB |
| 2813 | free(pi->cmdtext); |
| 2814 | pi->cmdtext = NULL; |
| 2815 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2816 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2817 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2818 | static void free_pipe_list(struct pipe *head) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2819 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2820 | struct pipe *pi, *next; |
| 2821 | |
| 2822 | for (pi = head; pi; pi = next) { |
| 2823 | #if HAS_KEYWORDS |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2824 | debug_printf_clean(" pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2825 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2826 | free_pipe(pi); |
| 2827 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2828 | next = pi->next; |
| 2829 | /*pi->next = NULL;*/ |
| 2830 | free(pi); |
| 2831 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2832 | } |
| 2833 | |
| 2834 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2835 | static int run_list(struct pipe *pi); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2836 | #if BB_MMU |
| 2837 | #define parse_stream(pstring, input, end_trigger) \ |
| 2838 | parse_stream(input, end_trigger) |
| 2839 | #endif |
| 2840 | static struct pipe *parse_stream(char **pstring, |
| 2841 | struct in_str *input, |
| 2842 | int end_trigger); |
| 2843 | static void parse_and_run_string(const char *s); |
| 2844 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2845 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2846 | static const struct built_in_command* find_builtin(const char *name) |
| 2847 | { |
| 2848 | const struct built_in_command *x; |
| 2849 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2850 | if (strcmp(name, x->cmd) != 0) |
| 2851 | continue; |
| 2852 | debug_printf_exec("found builtin '%s'\n", name); |
| 2853 | return x; |
| 2854 | } |
| 2855 | return NULL; |
| 2856 | } |
| 2857 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2858 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2859 | static const struct function *find_function(const char *name) |
| 2860 | { |
| 2861 | const struct function *funcp = G.top_func; |
| 2862 | while (funcp) { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2863 | if (strcmp(name, funcp->name) == 0) { |
| 2864 | break; |
| 2865 | } |
| 2866 | funcp = funcp->next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 2867 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2868 | if (funcp) |
| 2869 | debug_printf_exec("found function '%s'\n", name); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2870 | return funcp; |
| 2871 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2872 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2873 | /* Note: takes ownership on name ptr */ |
| 2874 | static struct function *new_function(char *name) |
| 2875 | { |
| 2876 | struct function *funcp; |
| 2877 | struct function **funcpp = &G.top_func; |
| 2878 | |
| 2879 | while ((funcp = *funcpp) != NULL) { |
| 2880 | struct command *cmd; |
| 2881 | |
| 2882 | if (strcmp(funcp->name, name) != 0) { |
| 2883 | funcpp = &funcp->next; |
| 2884 | continue; |
| 2885 | } |
| 2886 | |
| 2887 | cmd = funcp->parent_cmd; |
| 2888 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 2889 | if (!cmd) { |
| 2890 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 2891 | free(funcp->name); |
| 2892 | /* Note: if !funcp->body, do not free body_as_string! |
| 2893 | * This is a special case of "-F name body" function: |
| 2894 | * body_as_string was not malloced! */ |
| 2895 | if (funcp->body) { |
| 2896 | free_pipe_list(funcp->body); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2897 | # if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2898 | free(funcp->body_as_string); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2899 | # endif |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2900 | } |
| 2901 | } else { |
| 2902 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 2903 | cmd->argv[0] = funcp->name; |
| 2904 | cmd->group = funcp->body; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2905 | # if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2906 | cmd->group_as_string = funcp->body_as_string; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2907 | # endif |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2908 | } |
| 2909 | goto skip; |
| 2910 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2911 | debug_printf_exec("remembering new function '%s'\n", name); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2912 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 2913 | /*funcp->next = NULL;*/ |
| 2914 | skip: |
| 2915 | funcp->name = name; |
| 2916 | return funcp; |
| 2917 | } |
| 2918 | |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2919 | static void unset_func(const char *name) |
| 2920 | { |
| 2921 | struct function *funcp; |
| 2922 | struct function **funcpp = &G.top_func; |
| 2923 | |
| 2924 | while ((funcp = *funcpp) != NULL) { |
| 2925 | if (strcmp(funcp->name, name) == 0) { |
| 2926 | *funcpp = funcp->next; |
root | 6245202 | 2009-05-04 12:00:19 +0200 | [diff] [blame] | 2927 | /* funcp is unlinked now, deleting it. |
| 2928 | * Note: if !funcp->body, the function was created by |
| 2929 | * "-F name body", do not free ->body_as_string |
| 2930 | * and ->name as they were not malloced. */ |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2931 | if (funcp->body) { |
| 2932 | free_pipe_list(funcp->body); |
root | 6245202 | 2009-05-04 12:00:19 +0200 | [diff] [blame] | 2933 | free(funcp->name); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2934 | # if !BB_MMU |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2935 | free(funcp->body_as_string); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2936 | # endif |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2937 | } |
| 2938 | free(funcp); |
| 2939 | break; |
| 2940 | } |
Denis Vlasenko | 7301067 | 2009-04-18 11:25:18 +0000 | [diff] [blame] | 2941 | funcpp = &funcp->next; |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 2942 | } |
| 2943 | } |
| 2944 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2945 | # if BB_MMU |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2946 | #define exec_function(nommu_save, funcp, argv) \ |
| 2947 | exec_function(funcp, argv) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2948 | # endif |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2949 | static void exec_function(nommu_save_t *nommu_save, |
| 2950 | const struct function *funcp, |
| 2951 | char **argv) NORETURN; |
| 2952 | static void exec_function(nommu_save_t *nommu_save, |
| 2953 | const struct function *funcp, |
| 2954 | char **argv) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2955 | { |
| 2956 | # if BB_MMU |
| 2957 | int n = 1; |
| 2958 | |
| 2959 | argv[0] = G.global_argv[0]; |
| 2960 | G.global_argv = argv; |
| 2961 | while (*++argv) |
| 2962 | n++; |
| 2963 | G.global_argc = n; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2964 | /* On MMU, funcp->body is always non-NULL */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 2965 | n = run_list(funcp->body); |
| 2966 | fflush(NULL); |
| 2967 | _exit(n); |
| 2968 | # else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 2969 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 2970 | funcp->body_as_string, |
| 2971 | G.global_argv[0], |
| 2972 | argv + 1); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2973 | # endif |
| 2974 | } |
| 2975 | |
| 2976 | static int run_function(const struct function *funcp, char **argv) |
| 2977 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2978 | int rc; |
| 2979 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 2980 | smallint sv_flg; |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 2981 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2982 | save_and_replace_G_args(&sv, argv); |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2983 | /* "we are in function, ok to use return" */ |
| 2984 | sv_flg = G.flag_return_in_progress; |
| 2985 | G.flag_return_in_progress = -1; |
| 2986 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2987 | /* On MMU, funcp->body is always non-NULL */ |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2988 | # if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2989 | if (!funcp->body) { |
| 2990 | /* Function defined by -F */ |
| 2991 | parse_and_run_string(funcp->body_as_string); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2992 | rc = G.last_exitcode; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2993 | } else |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2994 | # endif |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2995 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 2996 | rc = run_list(funcp->body); |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 2997 | } |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 2998 | |
| 2999 | G.flag_return_in_progress = sv_flg; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 3000 | restore_G_args(&sv, argv); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 3001 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 3002 | return rc; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3003 | } |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3004 | #endif /* ENABLE_HUSH_FUNCTIONS */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3005 | |
| 3006 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 3007 | #if BB_MMU |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3008 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 3009 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 3010 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 3011 | pseudo_exec(command, argv_expanded) |
| 3012 | #endif |
| 3013 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3014 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3015 | * Never returns. |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3016 | * Don't exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3017 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 3018 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3019 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 3020 | char **argv, int assignment_cnt, |
| 3021 | char **argv_expanded) NORETURN; |
| 3022 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 3023 | char **argv, int assignment_cnt, |
| 3024 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3025 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3026 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 3027 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3028 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3029 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3030 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 3031 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 3032 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3033 | #if BB_MMU |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3034 | set_vars_and_save_old(new_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3035 | free(new_env); /* optional */ |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3036 | /* we can also destroy set_vars_and_save_old's return value, |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3037 | * to save memory */ |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3038 | #else |
| 3039 | nommu_save->new_env = new_env; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3040 | nommu_save->old_vars = set_vars_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3041 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3042 | if (argv_expanded) { |
| 3043 | argv = argv_expanded; |
| 3044 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 3045 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3046 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3047 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3048 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3049 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 3050 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3051 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 3052 | if (strchr(argv[0], '/') != NULL) |
| 3053 | goto skip; |
| 3054 | #endif |
| 3055 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3056 | /* On NOMMU, we must never block! |
| 3057 | * Example: { sleep 99999 | read line } & echo Ok |
| 3058 | * read builtin will block on read syscall, leaving parent blocked |
| 3059 | * in vfork. Therefore we can't do this: |
| 3060 | */ |
| 3061 | #if BB_MMU |
| 3062 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3063 | * Depending on context, this might be redundant. But it's |
| 3064 | * easier to waste a few CPU cycles than it is to figure out |
| 3065 | * if this is one of those cases. |
| 3066 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3067 | { |
| 3068 | int rcode; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3069 | const struct built_in_command *x = find_builtin(argv[0]); |
| 3070 | if (x) { |
| 3071 | rcode = x->function(argv); |
| 3072 | fflush(NULL); |
| 3073 | _exit(rcode); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3074 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3075 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3076 | #endif |
| 3077 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3078 | /* Check if the command matches any functions */ |
| 3079 | { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3080 | const struct function *funcp = find_function(argv[0]); |
| 3081 | if (funcp) { |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3082 | exec_function(nommu_save, funcp, argv); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3083 | } |
| 3084 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3085 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3086 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 3087 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3088 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3089 | { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3090 | int a = find_applet_by_name(argv[0]); |
| 3091 | if (a >= 0) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3092 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3093 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3094 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 3095 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3096 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3097 | # endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3098 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3099 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3100 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 3101 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3102 | /* If they called chroot or otherwise made the binary no longer |
| 3103 | * executable, fall through */ |
| 3104 | } |
| 3105 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 3106 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3107 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3108 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3109 | skip: |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3110 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3111 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3112 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3113 | execvp(argv[0], argv); |
Denis Vlasenko | f9d4fc3 | 2009-04-21 20:40:51 +0000 | [diff] [blame] | 3114 | bb_perror_msg("can't execute '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 3115 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3116 | } |
| 3117 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3118 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3119 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3120 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3121 | struct command *command, |
| 3122 | char **argv_expanded) NORETURN; |
| 3123 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 3124 | struct command *command, |
| 3125 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3126 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3127 | if (command->argv) { |
| 3128 | pseudo_exec_argv(nommu_save, command->argv, |
| 3129 | command->assignment_cnt, argv_expanded); |
| 3130 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3131 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3132 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3133 | /* Cases when we are here: |
| 3134 | * ( list ) |
| 3135 | * { list } & |
| 3136 | * ... | ( list ) | ... |
| 3137 | * ... | { list } | ... |
| 3138 | */ |
| 3139 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 3140 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3141 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 3142 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3143 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 3144 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3145 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 3146 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3147 | #else |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3148 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 3149 | command->group_as_string, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3150 | G.global_argv[0], |
| 3151 | G.global_argv + 1); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3152 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3153 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3154 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3155 | /* Case when we are here: ... | >file */ |
| 3156 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3157 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3158 | } |
| 3159 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3160 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3161 | static const char *get_cmdtext(struct pipe *pi) |
| 3162 | { |
| 3163 | char **argv; |
| 3164 | char *p; |
| 3165 | int len; |
| 3166 | |
| 3167 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 3168 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3169 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3170 | if (pi->cmdtext) |
| 3171 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3172 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3173 | if (!argv || !argv[0]) { |
| 3174 | pi->cmdtext = xzalloc(1); |
| 3175 | return pi->cmdtext; |
| 3176 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3177 | |
| 3178 | len = 0; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3179 | do { |
| 3180 | len += strlen(*argv) + 1; |
| 3181 | } while (*++argv); |
| 3182 | p = xmalloc(len); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3183 | pi->cmdtext = p; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3184 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3185 | do { |
| 3186 | len = strlen(*argv); |
| 3187 | memcpy(p, *argv, len); |
| 3188 | p += len; |
| 3189 | *p++ = ' '; |
| 3190 | } while (*++argv); |
| 3191 | p[-1] = '\0'; |
| 3192 | return pi->cmdtext; |
| 3193 | } |
| 3194 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3195 | static void insert_bg_job(struct pipe *pi) |
| 3196 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3197 | struct pipe *job, **jobp; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3198 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3199 | |
| 3200 | /* Linear search for the ID of the job to use */ |
| 3201 | pi->jobid = 1; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3202 | for (job = G.job_list; job; job = job->next) |
| 3203 | if (job->jobid >= pi->jobid) |
| 3204 | pi->jobid = job->jobid + 1; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3205 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3206 | /* Add job to the list of running jobs */ |
| 3207 | jobp = &G.job_list; |
| 3208 | while ((job = *jobp) != NULL) |
| 3209 | jobp = &job->next; |
| 3210 | job = *jobp = xmalloc(sizeof(*job)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3211 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3212 | *job = *pi; /* physical copy */ |
| 3213 | job->next = NULL; |
| 3214 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 3215 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3216 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3217 | job->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3218 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3219 | } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3220 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3221 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3222 | if (G_interactive_fd) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3223 | printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext); |
| 3224 | /* Last command's pid goes to $! */ |
| 3225 | G.last_bg_pid = job->cmds[job->num_cmds - 1].pid; |
| 3226 | G.last_jobid = job->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3227 | } |
| 3228 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3229 | static void remove_bg_job(struct pipe *pi) |
| 3230 | { |
| 3231 | struct pipe *prev_pipe; |
| 3232 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3233 | if (pi == G.job_list) { |
| 3234 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3235 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3236 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3237 | while (prev_pipe->next != pi) |
| 3238 | prev_pipe = prev_pipe->next; |
| 3239 | prev_pipe->next = pi->next; |
| 3240 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3241 | if (G.job_list) |
| 3242 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3243 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3244 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3245 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3246 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3247 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3248 | static void delete_finished_bg_job(struct pipe *pi) |
| 3249 | { |
| 3250 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3251 | pi->stopped_cmds = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3252 | free_pipe(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3253 | free(pi); |
| 3254 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3255 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3256 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3257 | /* Check to see if any processes have exited -- if they |
| 3258 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3259 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3260 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3261 | int attributes; |
| 3262 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3263 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3264 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3265 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3266 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3267 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3268 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3269 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 3270 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3271 | errno = 0; |
| 3272 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 3273 | // /* avoid doing syscall, nothing there anyway */ |
| 3274 | // return rcode; |
| 3275 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3276 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3277 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3278 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3279 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3280 | /* Do we do this right? |
| 3281 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3282 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3283 | * [3]+ Stopped sleep 20 | false |
| 3284 | * bash-3.00# echo $? |
| 3285 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3286 | * [hush 1.14.0: yes we do it right] |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3287 | */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3288 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3289 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3290 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3291 | int dead; |
| 3292 | |
| 3293 | // i = G.count_SIGCHLD; |
| 3294 | childpid = waitpid(-1, &status, attributes); |
| 3295 | if (childpid <= 0) { |
| 3296 | if (childpid && errno != ECHILD) |
| 3297 | bb_perror_msg("waitpid"); |
| 3298 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 3299 | // G.handled_SIGCHLD = i; |
| 3300 | break; |
| 3301 | } |
| 3302 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 3303 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3304 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3305 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3306 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3307 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 3308 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3309 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3310 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 3311 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 3312 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3313 | childpid, WEXITSTATUS(status)); |
| 3314 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3315 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3316 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3317 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 3318 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 3319 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3320 | continue; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3321 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3322 | fg_pipe->cmds[i].pid = 0; |
| 3323 | fg_pipe->alive_cmds--; |
| 3324 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3325 | /* last process gives overall exitstatus */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3326 | /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */ |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3327 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3328 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3329 | /* bash prints killing signal's name for *last* |
| 3330 | * process in pipe (prints just newline for SIGINT). |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3331 | * Mimic this. Example: "sleep 5" + ^\ |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3332 | */ |
| 3333 | if (WIFSIGNALED(status)) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3334 | int sig = WTERMSIG(status); |
| 3335 | printf("%s\n", sig == SIGINT ? "" : get_signame(sig)); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 3336 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3337 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3338 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3339 | fg_pipe->cmds[i].is_stopped = 1; |
| 3340 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3341 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3342 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 3343 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 3344 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3345 | /* All processes in fg pipe have exited or stopped */ |
| 3346 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 3347 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 3348 | * and "killall -STOP cat" */ |
| 3349 | if (G_interactive_fd) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3350 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3351 | if (fg_pipe->alive_cmds) |
| 3352 | insert_bg_job(fg_pipe); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3353 | #endif |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3354 | return rcode; |
| 3355 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3356 | } |
| 3357 | /* There are still running processes in the fg pipe */ |
| 3358 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3359 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3360 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 3361 | } |
| 3362 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3363 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3364 | /* We asked to wait for bg or orphaned children */ |
| 3365 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3366 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3367 | for (i = 0; i < pi->num_cmds; i++) { |
| 3368 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3369 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3370 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3371 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3372 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 3373 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3374 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 3375 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3376 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3377 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3378 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3379 | pi->cmds[i].pid = 0; |
| 3380 | pi->alive_cmds--; |
| 3381 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3382 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 3383 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 3384 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 3385 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3386 | } |
| 3387 | } else { |
| 3388 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3389 | pi->cmds[i].is_stopped = 1; |
| 3390 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3391 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3392 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 3393 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 3394 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3395 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 3396 | } |
| 3397 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3398 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3399 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 3400 | { |
| 3401 | pid_t p; |
| 3402 | int rcode = checkjobs(fg_pipe); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3403 | if (G.saved_tty_pgrp) { |
| 3404 | /* Job finished, move the shell to the foreground */ |
| 3405 | p = getpgrp(); /* our process group id */ |
| 3406 | debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p); |
| 3407 | tcsetpgrp(G_interactive_fd, p); |
| 3408 | } |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3409 | return rcode; |
| 3410 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3411 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 3412 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 3413 | /* Start all the jobs, but don't wait for anything to finish. |
| 3414 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3415 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3416 | * 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] | 3417 | * to finish to determine the exit status of the pipe. If the pipe |
| 3418 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3419 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3420 | * return value. |
| 3421 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3422 | * Returns -1 only if started some children. IOW: we have to |
| 3423 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3424 | * |
| 3425 | * The only case when we do not need to [v]fork is when the pipe |
| 3426 | * is single, non-backgrounded, non-subshell command. Examples: |
| 3427 | * cmd ; ... { list } ; ... |
| 3428 | * cmd && ... { list } && ... |
| 3429 | * cmd || ... { list } || ... |
| 3430 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 3431 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 3432 | * 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] | 3433 | * |
| 3434 | * Cases when we must fork: |
| 3435 | * non-single: cmd | cmd |
| 3436 | * backgrounded: cmd & { list } & |
| 3437 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3438 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3439 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3440 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3441 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3442 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3443 | int nextin; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3444 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3445 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3446 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3447 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3448 | /* it is not always needed, but we aim to smaller code */ |
| 3449 | int squirrel[] = { -1, -1, -1 }; |
| 3450 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3451 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3452 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3453 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3454 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 3455 | IF_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3456 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3457 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3458 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3459 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3460 | if (pi->num_cmds != 1 |
| 3461 | || pi->followup == PIPE_BG |
| 3462 | || command->grp_type == GRP_SUBSHELL |
| 3463 | ) { |
| 3464 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3465 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3466 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3467 | pi->alive_cmds = 1; |
| 3468 | |
| 3469 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 3470 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 3471 | |
| 3472 | if (command->group) { |
| 3473 | #if ENABLE_HUSH_FUNCTIONS |
| 3474 | if (command->grp_type == GRP_FUNCTION) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3475 | /* "executing" func () { list } */ |
| 3476 | struct function *funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3477 | |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 3478 | funcp = new_function(command->argv[0]); |
| 3479 | /* funcp->name is already set to argv[0] */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3480 | funcp->body = command->group; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3481 | # if !BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3482 | funcp->body_as_string = command->group_as_string; |
| 3483 | command->group_as_string = NULL; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3484 | # endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3485 | command->group = NULL; |
| 3486 | command->argv[0] = NULL; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3487 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 3488 | funcp->parent_cmd = command; |
| 3489 | command->child_func = funcp; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3490 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3491 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 3492 | debug_leave(); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3493 | return EXIT_SUCCESS; |
| 3494 | } |
| 3495 | #endif |
| 3496 | /* { list } */ |
| 3497 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3498 | rcode = 1; /* exitcode if redir failed */ |
| 3499 | if (setup_redirects(command, squirrel) == 0) { |
| 3500 | debug_printf_exec(": run_list\n"); |
| 3501 | rcode = run_list(command->group) & 0xff; |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3502 | } |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 3503 | restore_redirects(squirrel); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3504 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3505 | debug_leave(); |
| 3506 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3507 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 3508 | } |
| 3509 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3510 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 3511 | { |
| 3512 | const struct built_in_command *x; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3513 | #if ENABLE_HUSH_FUNCTIONS |
| 3514 | const struct function *funcp; |
| 3515 | #else |
| 3516 | enum { funcp = 0 }; |
| 3517 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3518 | char **new_env = NULL; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3519 | struct variable *old_vars = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3520 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3521 | if (argv[command->assignment_cnt] == NULL) { |
| 3522 | /* Assignments, but no command */ |
| 3523 | /* Ensure redirects take effect. Try "a=t >file" */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3524 | rcode = setup_redirects(command, squirrel); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3525 | restore_redirects(squirrel); |
| 3526 | /* Set shell variables */ |
| 3527 | while (*argv) { |
| 3528 | p = expand_string_to_string(*argv); |
| 3529 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 3530 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 3531 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3532 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3533 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3534 | /* Do we need to flag set_local_var() errors? |
| 3535 | * "assignment to readonly var" and "putenv error" |
| 3536 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3537 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3538 | debug_leave(); |
| 3539 | debug_printf_exec("run_pipe: return %d\n", rcode); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3540 | return rcode; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3541 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3542 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3543 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3544 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3545 | |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3546 | x = find_builtin(argv_expanded[0]); |
| 3547 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 3548 | funcp = NULL; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3549 | if (!x) |
| 3550 | funcp = find_function(argv_expanded[0]); |
| 3551 | #endif |
| 3552 | if (x || funcp) { |
| 3553 | if (!funcp) { |
| 3554 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 3555 | debug_printf("exec with redirects only\n"); |
| 3556 | rcode = setup_redirects(command, NULL); |
| 3557 | goto clean_up_and_ret1; |
| 3558 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3559 | } |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3560 | /* setup_redirects acts on file descriptors, not FILEs. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3561 | * This is perfect for work that comes after exec(). |
| 3562 | * Is it really safe for inline use? Experimentally, |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 3563 | * things seem to work. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3564 | rcode = setup_redirects(command, squirrel); |
| 3565 | if (rcode == 0) { |
| 3566 | new_env = expand_assignments(argv, command->assignment_cnt); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3567 | old_vars = set_vars_and_save_old(new_env); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3568 | if (!funcp) { |
| 3569 | debug_printf_exec(": builtin '%s' '%s'...\n", |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3570 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3571 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 3572 | fflush(NULL); |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3573 | } |
| 3574 | #if ENABLE_HUSH_FUNCTIONS |
| 3575 | else { |
| 3576 | debug_printf_exec(": function '%s' '%s'...\n", |
| 3577 | funcp->name, argv_expanded[1]); |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 3578 | rcode = run_function(funcp, argv_expanded) & 0xff; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3579 | } |
| 3580 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3581 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3582 | #if ENABLE_FEATURE_SH_STANDALONE |
| 3583 | clean_up_and_ret: |
| 3584 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3585 | restore_redirects(squirrel); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3586 | unset_vars(new_env); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3587 | add_vars(old_vars); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3588 | clean_up_and_ret1: |
| 3589 | free(argv_expanded); |
| 3590 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3591 | debug_leave(); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3592 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 3593 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3594 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3595 | |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3596 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3597 | i = find_applet_by_name(argv_expanded[0]); |
| 3598 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3599 | rcode = setup_redirects(command, squirrel); |
| 3600 | if (rcode == 0) { |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3601 | new_env = expand_assignments(argv, command->assignment_cnt); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3602 | old_vars = set_vars_and_save_old(new_env); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3603 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3604 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3605 | rcode = run_nofork_applet(i, argv_expanded); |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3606 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3607 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 3608 | } |
| 3609 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3610 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3611 | } |
| 3612 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3613 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3614 | /* NB: argv_expanded may already be created, and that |
| 3615 | * might include `cmd` runs! Do not rerun it! We *must* |
| 3616 | * use argv_expanded if it's non-NULL */ |
| 3617 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3618 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3619 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3620 | nextin = 0; |
| 3621 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3622 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3623 | struct fd_pair pipefds; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3624 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3625 | volatile nommu_save_t nommu_save; |
| 3626 | nommu_save.new_env = NULL; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3627 | nommu_save.old_vars = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3628 | nommu_save.argv = NULL; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3629 | nommu_save.argv_from_re_execing = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 3630 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3631 | command = &(pi->cmds[i]); |
| 3632 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3633 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 3634 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3635 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3636 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 3637 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3638 | |
| 3639 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3640 | pipefds.rd = 0; |
| 3641 | pipefds.wr = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3642 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3643 | xpiped_pair(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3644 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3645 | command->pid = BB_MMU ? fork() : vfork(); |
| 3646 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3647 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3648 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3649 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3650 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3651 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3652 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3653 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3654 | pgrp = pi->pgrp; |
| 3655 | if (pgrp < 0) /* true for 1st process only */ |
| 3656 | pgrp = getpid(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 3657 | if (setpgid(0, pgrp) == 0 |
| 3658 | && pi->followup != PIPE_BG |
| 3659 | && G.saved_tty_pgrp /* we have ctty */ |
| 3660 | ) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3661 | /* We do it in *every* child, not just first, |
| 3662 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3663 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3664 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3665 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3666 | #endif |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3667 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 3668 | /* 1st cmd in backgrounded pipe |
| 3669 | * should have its stdin /dev/null'ed */ |
| 3670 | close(0); |
| 3671 | if (open(bb_dev_null, O_RDONLY)) |
| 3672 | xopen("/", O_RDONLY); |
| 3673 | } else { |
| 3674 | xmove_fd(nextin, 0); |
| 3675 | } |
| 3676 | xmove_fd(pipefds.wr, 1); |
| 3677 | if (pipefds.rd > 1) |
| 3678 | close(pipefds.rd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3679 | /* Like bash, explicit redirects override pipes, |
| 3680 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 3681 | if (setup_redirects(command, NULL)) |
| 3682 | _exit(1); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3683 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3684 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3685 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 3686 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3687 | /* Stores to nommu_save list of env vars putenv'ed |
| 3688 | * (NOMMU, on MMU we don't need that) */ |
| 3689 | /* cast away volatility... */ |
| 3690 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3691 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3692 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3693 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3694 | /* parent or error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3695 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3696 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3697 | /* Clean up after vforked child */ |
| 3698 | free(nommu_save.argv); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 3699 | free(nommu_save.argv_from_re_execing); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 3700 | unset_vars(nommu_save.new_env); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 3701 | add_vars(nommu_save.old_vars); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3702 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3703 | free(argv_expanded); |
| 3704 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3705 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3706 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3707 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3708 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3709 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3710 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3711 | /* Second and next children need to know pid of first one */ |
| 3712 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3713 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3714 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3715 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3716 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3717 | if (i) |
| 3718 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3719 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3720 | close(pipefds.wr); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3721 | /* Pass read (output) pipe end to next iteration */ |
Denis Vlasenko | 8c64e03 | 2009-04-20 00:34:01 +0000 | [diff] [blame] | 3722 | nextin = pipefds.rd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3723 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3724 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3725 | if (!pi->alive_cmds) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3726 | debug_leave(); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3727 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 3728 | return 1; |
| 3729 | } |
| 3730 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3731 | debug_leave(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3732 | 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] | 3733 | return -1; |
| 3734 | } |
| 3735 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3736 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3737 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3738 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3739 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3740 | [PIPE_SEQ] = "SEQ", |
| 3741 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3742 | [PIPE_OR ] = "OR" , |
| 3743 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3744 | }; |
| 3745 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3746 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3747 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3748 | [RES_IF ] = "IF" , |
| 3749 | [RES_THEN ] = "THEN" , |
| 3750 | [RES_ELIF ] = "ELIF" , |
| 3751 | [RES_ELSE ] = "ELSE" , |
| 3752 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3753 | #endif |
| 3754 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3755 | [RES_FOR ] = "FOR" , |
| 3756 | [RES_WHILE] = "WHILE", |
| 3757 | [RES_UNTIL] = "UNTIL", |
| 3758 | [RES_DO ] = "DO" , |
| 3759 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3760 | #endif |
| 3761 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3762 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3763 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3764 | #if ENABLE_HUSH_CASE |
| 3765 | [RES_CASE ] = "CASE" , |
| 3766 | [RES_MATCH] = "MATCH", |
| 3767 | [RES_CASEI] = "CASEI", |
| 3768 | [RES_ESAC ] = "ESAC" , |
| 3769 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3770 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3771 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3772 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3773 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3774 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 3775 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3776 | #if ENABLE_HUSH_FUNCTIONS |
| 3777 | "func()", |
| 3778 | #endif |
| 3779 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3780 | |
| 3781 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3782 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3783 | pin = 0; |
| 3784 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3785 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3786 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3787 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3788 | while (prn < pi->num_cmds) { |
| 3789 | struct command *command = &pi->cmds[prn]; |
| 3790 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3791 | |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3792 | fprintf(stderr, "%*s cmd %d assignment_cnt:%d", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3793 | lvl*2, "", prn, |
| 3794 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3795 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3796 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3797 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3798 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3799 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3800 | prn++; |
| 3801 | continue; |
| 3802 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3803 | if (argv) while (*argv) { |
| 3804 | fprintf(stderr, " '%s'", *argv); |
| 3805 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3806 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3807 | fprintf(stderr, "\n"); |
| 3808 | prn++; |
| 3809 | } |
| 3810 | pi = pi->next; |
| 3811 | pin++; |
| 3812 | } |
| 3813 | } |
| 3814 | #endif |
| 3815 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3816 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3817 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3818 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3819 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3820 | #if ENABLE_HUSH_CASE |
| 3821 | char *case_word = NULL; |
| 3822 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3823 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3824 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3825 | char *for_varname = NULL; |
| 3826 | char **for_lcur = NULL; |
| 3827 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3828 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3829 | smallint last_followup; |
| 3830 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3831 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3832 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3833 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3834 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3835 | #endif |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3836 | #if HAS_KEYWORDS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3837 | smallint rword; /* enum reserved_style */ |
| 3838 | smallint last_rword; /* ditto */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3839 | #endif |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3840 | |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3841 | 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] | 3842 | debug_enter(); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3843 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3844 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3845 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3846 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3847 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3848 | continue; |
| 3849 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3850 | if (cpipe->next == NULL) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3851 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3852 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3853 | 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] | 3854 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3855 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3856 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3857 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3858 | continue; |
| 3859 | /* 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] | 3860 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3861 | || 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] | 3862 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3863 | syntax_error("malformed for"); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3864 | debug_leave(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3865 | 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] | 3866 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3867 | } |
| 3868 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3869 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3870 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3871 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3872 | * in order to return, no direct "return" statements please. |
| 3873 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3874 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3875 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 3876 | G.run_list_level++; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3877 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3878 | |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3879 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3880 | rword = RES_NONE; |
| 3881 | last_rword = RES_XXXX; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3882 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3883 | last_followup = PIPE_SEQ; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3884 | rcode = G.last_exitcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3885 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3886 | /* Go through list of pipes, (maybe) executing them. */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 3887 | for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 3888 | if (G.flag_SIGINT) |
| 3889 | break; |
| 3890 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3891 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3892 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3893 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3894 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3895 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3896 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3897 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3898 | /* start of a loop: remember where loop starts */ |
| 3899 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3900 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3901 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3902 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3903 | /* Still in the same "if...", "then..." or "do..." branch? */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3904 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3905 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3906 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3907 | ) { |
| 3908 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3909 | * and we should not execute CMD */ |
| 3910 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3911 | last_followup = pi->followup; |
| 3912 | continue; |
| 3913 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3914 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3915 | last_followup = pi->followup; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3916 | IF_HAS_KEYWORDS(last_rword = rword;) |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3917 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3918 | if (cond_code) { |
| 3919 | if (rword == RES_THEN) { |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3920 | /* if false; then ... fi has exitcode 0! */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3921 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3922 | /* "if <false> THEN cmd": skip cmd */ |
| 3923 | continue; |
| 3924 | } |
| 3925 | } else { |
| 3926 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3927 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3928 | * skip cmd and all following ones */ |
| 3929 | break; |
| 3930 | } |
| 3931 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3932 | #endif |
| 3933 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3934 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3935 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3936 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3937 | |
| 3938 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3939 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3940 | }; /* encoded representation of "$@" */ |
| 3941 | static const char *const encoded_dollar_at_argv[] = { |
| 3942 | encoded_dollar_at, NULL |
| 3943 | }; /* argv list with one element: "$@" */ |
| 3944 | char **vals; |
| 3945 | |
| 3946 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3947 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3948 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3949 | if (!pi->next->cmds[0].argv) { |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3950 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3951 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3952 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3953 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3954 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3955 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3956 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3957 | debug_print_strings("for_list made from", vals); |
| 3958 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3959 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3960 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3961 | for_varname = pi->cmds[0].argv[0]; |
| 3962 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3963 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3964 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3965 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3966 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3967 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3968 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3969 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3970 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3971 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3972 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3973 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3974 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3975 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3976 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3977 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3978 | if (rword == RES_IN) { |
| 3979 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3980 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3981 | if (rword == RES_DONE) { |
| 3982 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3983 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3984 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3985 | #if ENABLE_HUSH_CASE |
| 3986 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3987 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3988 | continue; |
| 3989 | } |
| 3990 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3991 | char **argv; |
| 3992 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3993 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3994 | break; |
| 3995 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3996 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3997 | while (*argv) { |
| 3998 | char *pattern = expand_string_to_string(*argv); |
| 3999 | /* TODO: which FNM_xxx flags to use? */ |
| 4000 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 4001 | free(pattern); |
| 4002 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 4003 | free(case_word); /* make future "word)" stop */ |
| 4004 | case_word = NULL; |
| 4005 | break; |
| 4006 | } |
| 4007 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4008 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4009 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4010 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4011 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4012 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4013 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4014 | } |
| 4015 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4016 | /* Just pressing <enter> in shell should check for jobs. |
| 4017 | * OTOH, in non-interactive shell this is useless |
| 4018 | * and only leads to extra job checks */ |
| 4019 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4020 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4021 | goto check_jobs_and_continue; |
| 4022 | continue; |
| 4023 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4024 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4025 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4026 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4027 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4028 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4029 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4030 | { |
| 4031 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4032 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4033 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4034 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4035 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 4036 | if (r != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 4037 | /* We ran a builtin, function, or group. |
| 4038 | * rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4039 | * and we don't need to wait for anything. */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4040 | G.last_exitcode = rcode; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4041 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4042 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4043 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4044 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4045 | if (G.flag_break_continue) { |
| 4046 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4047 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4048 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4049 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4050 | G.depth_break_continue--; |
| 4051 | if (G.depth_break_continue == 0) |
| 4052 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4053 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 4054 | } /* 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] | 4055 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4056 | goto check_jobs_and_break; |
| 4057 | /* "continue": simulate end of loop */ |
| 4058 | rword = RES_DONE; |
| 4059 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4060 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4061 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 4062 | #if ENABLE_HUSH_FUNCTIONS |
| 4063 | if (G.flag_return_in_progress == 1) |
| 4064 | goto check_jobs_and_break; |
| 4065 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4066 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4067 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4068 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4069 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 4070 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4071 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4072 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4073 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4074 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4075 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4076 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4077 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4078 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4079 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4080 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4081 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4082 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4083 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4084 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4085 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4086 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4087 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4088 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4089 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4090 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4091 | } |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4092 | G.last_exitcode = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4093 | } |
| 4094 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4095 | |
| 4096 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4097 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 4098 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4099 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4100 | #endif |
| 4101 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4102 | /* Beware of "while false; true; do ..."! */ |
| 4103 | if (pi->next && pi->next->res_word == RES_DO) { |
| 4104 | if (rword == RES_WHILE) { |
| 4105 | if (rcode) { |
| 4106 | /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4107 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4108 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
| 4109 | goto check_jobs_and_break; |
| 4110 | } |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 4111 | } |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4112 | if (rword == RES_UNTIL) { |
| 4113 | if (!rcode) { |
| 4114 | debug_printf_exec(": until expr is true: breaking\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4115 | check_jobs_and_break: |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4116 | checkjobs(NULL); |
| 4117 | break; |
| 4118 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4119 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 4120 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4121 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 4122 | |
| 4123 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 4124 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4125 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4126 | |
| 4127 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4128 | G.run_list_level--; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 4129 | #endif |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4130 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4131 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4132 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 4133 | free(for_list); |
| 4134 | #endif |
| 4135 | #if ENABLE_HUSH_CASE |
| 4136 | free(case_word); |
| 4137 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4138 | debug_leave(); |
| 4139 | 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] | 4140 | return rcode; |
| 4141 | } |
| 4142 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4143 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4144 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4145 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4146 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4147 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4148 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 4149 | 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] | 4150 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4151 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4152 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4153 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4154 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4155 | free_pipe_list(pi); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 4156 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4157 | return rcode; |
| 4158 | } |
| 4159 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4160 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 4161 | static struct pipe *new_pipe(void) |
| 4162 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4163 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 4164 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4165 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4166 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4167 | return pi; |
| 4168 | } |
| 4169 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4170 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 4171 | * if ctx->command is NULL. |
| 4172 | * No errors possible here. |
| 4173 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4174 | static int done_command(struct parse_context *ctx) |
| 4175 | { |
| 4176 | /* The command is really already in the pipe structure, so |
| 4177 | * advance the pipe counter and make a new, null command. */ |
| 4178 | struct pipe *pi = ctx->pipe; |
| 4179 | struct command *command = ctx->command; |
| 4180 | |
| 4181 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4182 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4183 | 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] | 4184 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4185 | } |
| 4186 | pi->num_cmds++; |
| 4187 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4188 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4189 | } else { |
| 4190 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 4191 | } |
| 4192 | |
| 4193 | /* Only real trickiness here is that the uncommitted |
| 4194 | * command structure is not counted in pi->num_cmds. */ |
| 4195 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4196 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 4197 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4198 | memset(command, 0, sizeof(*command)); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4199 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 4200 | } |
| 4201 | |
| 4202 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 4203 | { |
| 4204 | int not_null; |
| 4205 | |
| 4206 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 4207 | /* Close previous command */ |
| 4208 | not_null = done_command(ctx); |
| 4209 | ctx->pipe->followup = type; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4210 | #if HAS_KEYWORDS |
| 4211 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 4212 | ctx->ctx_inverted = 0; |
| 4213 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 4214 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4215 | |
| 4216 | /* Without this check, even just <enter> on command line generates |
| 4217 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4218 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4219 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4220 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4221 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4222 | #endif |
| 4223 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4224 | || ctx->ctx_res_w == RES_DONE |
| 4225 | || ctx->ctx_res_w == RES_FOR |
| 4226 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 4227 | #endif |
| 4228 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4229 | || ctx->ctx_res_w == RES_ESAC |
| 4230 | #endif |
| 4231 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4232 | struct pipe *new_p; |
| 4233 | debug_printf_parse("done_pipe: adding new pipe: " |
| 4234 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 4235 | not_null, ctx->ctx_res_w); |
| 4236 | new_p = new_pipe(); |
| 4237 | ctx->pipe->next = new_p; |
| 4238 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4239 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4240 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4241 | * This is used to control execution. |
| 4242 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 4243 | * cases where variable or value happens to match a keyword): |
| 4244 | */ |
| 4245 | #if ENABLE_HUSH_LOOPS |
| 4246 | if (ctx->ctx_res_w == RES_FOR |
| 4247 | || ctx->ctx_res_w == RES_IN) |
| 4248 | ctx->ctx_res_w = RES_NONE; |
| 4249 | #endif |
| 4250 | #if ENABLE_HUSH_CASE |
| 4251 | if (ctx->ctx_res_w == RES_MATCH) |
| 4252 | ctx->ctx_res_w = RES_CASEI; |
| 4253 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4254 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4255 | /* Create the memory for command, roughly: |
| 4256 | * ctx->pipe->cmds = new struct command; |
| 4257 | * ctx->command = &ctx->pipe->cmds[0]; |
| 4258 | */ |
| 4259 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 4260 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4261 | } |
| 4262 | debug_printf_parse("done_pipe return\n"); |
| 4263 | } |
| 4264 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4265 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4266 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4267 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4268 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4269 | /* Create the memory for command, roughly: |
| 4270 | * ctx->pipe->cmds = new struct command; |
| 4271 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4272 | */ |
| 4273 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4274 | } |
| 4275 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4276 | /* If a reserved word is found and processed, parse context is modified |
| 4277 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4278 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4279 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4280 | struct reserved_combo { |
| 4281 | char literal[6]; |
| 4282 | unsigned char res; |
| 4283 | unsigned char assignment_flag; |
| 4284 | int flag; |
| 4285 | }; |
| 4286 | enum { |
| 4287 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4288 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4289 | FLAG_IF = (1 << RES_IF ), |
| 4290 | FLAG_THEN = (1 << RES_THEN ), |
| 4291 | FLAG_ELIF = (1 << RES_ELIF ), |
| 4292 | FLAG_ELSE = (1 << RES_ELSE ), |
| 4293 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4294 | #endif |
| 4295 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4296 | FLAG_FOR = (1 << RES_FOR ), |
| 4297 | FLAG_WHILE = (1 << RES_WHILE), |
| 4298 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 4299 | FLAG_DO = (1 << RES_DO ), |
| 4300 | FLAG_DONE = (1 << RES_DONE ), |
| 4301 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4302 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4303 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4304 | FLAG_MATCH = (1 << RES_MATCH), |
| 4305 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4306 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4307 | FLAG_START = (1 << RES_XXXX ), |
| 4308 | }; |
| 4309 | |
| 4310 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 4311 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4312 | /* Mostly a list of accepted follow-up reserved words. |
| 4313 | * FLAG_END means we are done with the sequence, and are ready |
| 4314 | * to turn the compound list into a command. |
| 4315 | * FLAG_START means the word must start a new compound list. |
| 4316 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4317 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4318 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4319 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 4320 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 4321 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 4322 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 4323 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 4324 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4325 | #endif |
| 4326 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4327 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 4328 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4329 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 4330 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 4331 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 4332 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4333 | #endif |
| 4334 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4335 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 4336 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4337 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4338 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4339 | const struct reserved_combo *r; |
| 4340 | |
| 4341 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 4342 | if (strcmp(word->data, r->literal) == 0) |
| 4343 | return r; |
| 4344 | } |
| 4345 | return NULL; |
| 4346 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4347 | /* Return 0: not a keyword, 1: keyword |
| 4348 | */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4349 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 4350 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4351 | #if ENABLE_HUSH_CASE |
| 4352 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4353 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4354 | }; |
| 4355 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4356 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 4357 | |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4358 | if (word->o_quoted) |
| 4359 | return 0; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4360 | r = match_reserved_word(word); |
| 4361 | if (!r) |
| 4362 | return 0; |
| 4363 | |
| 4364 | 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] | 4365 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4366 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 4367 | /* "case word IN ..." - IN part starts first match part */ |
| 4368 | r = &reserved_match; |
| 4369 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4370 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4371 | if (r->flag == 0) { /* '!' */ |
| 4372 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4373 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4374 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4375 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4376 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4377 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4378 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4379 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4380 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4381 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4382 | old = xmalloc(sizeof(*old)); |
| 4383 | debug_printf_parse("push stack %p\n", old); |
| 4384 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4385 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4386 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4387 | } 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] | 4388 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4389 | ctx->ctx_res_w = RES_SNTX; |
| 4390 | return 1; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4391 | } else { |
| 4392 | /* "{...} fi" is ok. "{...} if" is not |
| 4393 | * Example: |
| 4394 | * if { echo foo; } then { echo bar; } fi */ |
| 4395 | if (ctx->command->group) |
| 4396 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4397 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4398 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4399 | ctx->ctx_res_w = r->res; |
| 4400 | ctx->old_flag = r->flag; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4401 | word->o_assignment = r->assignment_flag; |
| 4402 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4403 | if (ctx->old_flag & FLAG_END) { |
| 4404 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4405 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4406 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4407 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4408 | old = ctx->stack; |
| 4409 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4410 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4411 | #if !BB_MMU |
| 4412 | o_addstr(&old->as_string, ctx->as_string.data); |
| 4413 | o_free_unsafe(&ctx->as_string); |
| 4414 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 4415 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 4416 | old->command->group_as_string); |
| 4417 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4418 | *ctx = *old; /* physical copy */ |
| 4419 | free(old); |
| 4420 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4421 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4422 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4423 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4424 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4425 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4426 | * Normal return is 0. Syntax errors return 1. |
| 4427 | * Note: on return, word is reset, but not o_free'd! |
| 4428 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4429 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4430 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4431 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4432 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4433 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4434 | if (word->length == 0 && word->o_quoted == 0) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4435 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 4436 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4437 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4438 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4439 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4440 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 4441 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4442 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4443 | * "2.7 Redirection |
| 4444 | * ...the word that follows the redirection operator |
| 4445 | * shall be subjected to tilde expansion, parameter expansion, |
| 4446 | * command substitution, arithmetic expansion, and quote |
| 4447 | * removal. Pathname expansion shall not be performed |
| 4448 | * on the word by a non-interactive shell; an interactive |
| 4449 | * shell may perform it, but shall do so only when |
| 4450 | * the expansion would result in one word." |
| 4451 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4452 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4453 | /* Cater for >\file case: |
| 4454 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 4455 | * Same with heredocs: |
| 4456 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 4457 | */ |
| 4458 | unbackslash(ctx->pending_redirect->rd_filename); |
| 4459 | /* Is it <<"HEREDOC"? */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4460 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC |
| 4461 | && word->o_quoted |
| 4462 | ) { |
| 4463 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 4464 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4465 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4466 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4467 | } else { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4468 | /* If this word wasn't an assignment, next ones definitely |
| 4469 | * can't be assignments. Even if they look like ones. */ |
| 4470 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 4471 | && word->o_assignment != WORD_IS_KEYWORD |
| 4472 | ) { |
| 4473 | word->o_assignment = NOT_ASSIGNMENT; |
| 4474 | } else { |
| 4475 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
| 4476 | command->assignment_cnt++; |
| 4477 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 4478 | } |
| 4479 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4480 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4481 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 4482 | if (ctx->ctx_dsemicolon |
| 4483 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 4484 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 4485 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4486 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 4487 | ctx->ctx_dsemicolon = 0; |
| 4488 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4489 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4490 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4491 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4492 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 4493 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4494 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4495 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4496 | debug_printf_parse("checking '%s' for reserved-ness\n", word->data); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4497 | if (reserved_word(word, ctx)) { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4498 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4499 | debug_printf_parse("done_word return %d\n", |
| 4500 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4501 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4502 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4503 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4504 | #endif |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4505 | if (command->group) { |
| 4506 | /* "{ echo foo; } echo bar" - bad */ |
| 4507 | syntax_error_at(word->data); |
| 4508 | debug_printf_parse("done_word return 1: syntax error, " |
| 4509 | "groups and arglists don't mix\n"); |
| 4510 | return 1; |
| 4511 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4512 | 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] | 4513 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 4514 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4515 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 4516 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4517 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4518 | char *p = word->data; |
| 4519 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 4520 | && (p[1] & 0x7f) == '@' |
| 4521 | && p[2] == SPECIAL_VAR_SYMBOL |
| 4522 | ) { |
| 4523 | p += 3; |
| 4524 | } |
| 4525 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4526 | /* saw no "$@", or not only "$@" but some |
| 4527 | * real text is there too */ |
| 4528 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 4529 | * e.g. "", $empty"" etc to not disappear */ |
| 4530 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4531 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 4532 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 4533 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4534 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4535 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4536 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4537 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4538 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4539 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4540 | if (word->o_quoted |
| 4541 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 4542 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4543 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4544 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4545 | return 1; |
| 4546 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4547 | /* Force FOR to have just one word (variable name) */ |
| 4548 | /* NB: basically, this makes hush see "for v in ..." |
| 4549 | * syntax as if it is "for v; in ...". FOR and IN become |
| 4550 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4551 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4552 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4553 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4554 | #if ENABLE_HUSH_CASE |
| 4555 | /* Force CASE to have just one word */ |
| 4556 | if (ctx->ctx_res_w == RES_CASE) { |
| 4557 | done_pipe(ctx, PIPE_SEQ); |
| 4558 | } |
| 4559 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4560 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4561 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4562 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4563 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4564 | return 0; |
| 4565 | } |
| 4566 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4567 | |
| 4568 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 4569 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4570 | * Return: |
| 4571 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 4572 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 4573 | * REDIRFD_TO_FILE if no & was seen, |
| 4574 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4575 | */ |
| 4576 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4577 | #define parse_redir_right_fd(as_string, input) \ |
| 4578 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4579 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4580 | 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] | 4581 | { |
| 4582 | int ch, d, ok; |
| 4583 | |
| 4584 | ch = i_peek(input); |
| 4585 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4586 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4587 | |
| 4588 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4589 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4590 | ch = i_peek(input); |
| 4591 | if (ch == '-') { |
| 4592 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4593 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4594 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4595 | } |
| 4596 | d = 0; |
| 4597 | ok = 0; |
| 4598 | while (ch != EOF && isdigit(ch)) { |
| 4599 | d = d*10 + (ch-'0'); |
| 4600 | ok = 1; |
| 4601 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4602 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4603 | ch = i_peek(input); |
| 4604 | } |
| 4605 | if (ok) return d; |
| 4606 | |
| 4607 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 4608 | |
| 4609 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4610 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4611 | } |
| 4612 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4613 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4614 | */ |
| 4615 | static int parse_redirect(struct parse_context *ctx, |
| 4616 | int fd, |
| 4617 | redir_type style, |
| 4618 | struct in_str *input) |
| 4619 | { |
| 4620 | struct command *command = ctx->command; |
| 4621 | struct redir_struct *redir; |
| 4622 | struct redir_struct **redirp; |
| 4623 | int dup_num; |
| 4624 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4625 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4626 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4627 | /* Check for a '>&1' type redirect */ |
| 4628 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4629 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4630 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4631 | } else { |
| 4632 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4633 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4634 | if (dup_num) { /* <<-... */ |
| 4635 | ch = i_getch(input); |
| 4636 | nommu_addchr(&ctx->as_string, ch); |
| 4637 | ch = i_peek(input); |
| 4638 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4639 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4640 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4641 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4642 | int ch = i_peek(input); |
| 4643 | if (ch == '|') { |
| 4644 | /* >|FILE redirect ("clobbering" >). |
| 4645 | * Since we do not support "set -o noclobber" yet, |
| 4646 | * >| and > are the same for now. Just eat |. |
| 4647 | */ |
| 4648 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4649 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4650 | } |
| 4651 | } |
| 4652 | |
| 4653 | /* Create a new redir_struct and append it to the linked list */ |
| 4654 | redirp = &command->redirects; |
| 4655 | while ((redir = *redirp) != NULL) { |
| 4656 | redirp = &(redir->next); |
| 4657 | } |
| 4658 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4659 | /* redir->next = NULL; */ |
| 4660 | /* redir->rd_filename = NULL; */ |
| 4661 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4662 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4663 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4664 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4665 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4666 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4667 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4668 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4669 | /* Erik had a check here that the file descriptor in question |
| 4670 | * is legit; I postpone that to "run time" |
| 4671 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4672 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4673 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4674 | } else { |
| 4675 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4676 | * end of the next parsed word. */ |
| 4677 | ctx->pending_redirect = redir; |
| 4678 | } |
| 4679 | return 0; |
| 4680 | } |
| 4681 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4682 | /* If a redirect is immediately preceded by a number, that number is |
| 4683 | * supposed to tell which file descriptor to redirect. This routine |
| 4684 | * looks for such preceding numbers. In an ideal world this routine |
| 4685 | * needs to handle all the following classes of redirects... |
| 4686 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4687 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4688 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4689 | * 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] | 4690 | * |
| 4691 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4692 | * "2.7 Redirection |
| 4693 | * ... If n is quoted, the number shall not be recognized as part of |
| 4694 | * the redirection expression. For example: |
| 4695 | * echo \2>a |
| 4696 | * writes the character 2 into file a" |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4697 | * We are getting it right by setting ->o_quoted on any \<char> |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4698 | * |
| 4699 | * A -1 return means no valid number was found, |
| 4700 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4701 | */ |
| 4702 | static int redirect_opt_num(o_string *o) |
| 4703 | { |
| 4704 | int num; |
| 4705 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4706 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4707 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4708 | num = bb_strtou(o->data, NULL, 10); |
| 4709 | if (errno || num < 0) |
| 4710 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4711 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4712 | return num; |
| 4713 | } |
| 4714 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4715 | #if BB_MMU |
| 4716 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4717 | fetch_till_str(input, word, skip_tabs) |
| 4718 | #endif |
| 4719 | static char *fetch_till_str(o_string *as_string, |
| 4720 | struct in_str *input, |
| 4721 | const char *word, |
| 4722 | int skip_tabs) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4723 | { |
| 4724 | o_string heredoc = NULL_O_STRING; |
| 4725 | int past_EOL = 0; |
| 4726 | int ch; |
| 4727 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4728 | goto jump_in; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4729 | while (1) { |
| 4730 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4731 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4732 | if (ch == '\n') { |
| 4733 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4734 | heredoc.data[past_EOL] = '\0'; |
| 4735 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4736 | return heredoc.data; |
| 4737 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4738 | do { |
| 4739 | o_addchr(&heredoc, ch); |
| 4740 | past_EOL = heredoc.length; |
| 4741 | jump_in: |
| 4742 | do { |
| 4743 | ch = i_getch(input); |
| 4744 | nommu_addchr(as_string, ch); |
| 4745 | } while (skip_tabs && ch == '\t'); |
| 4746 | } while (ch == '\n'); |
| 4747 | } |
| 4748 | if (ch == EOF) { |
| 4749 | o_free_unsafe(&heredoc); |
| 4750 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4751 | } |
| 4752 | o_addchr(&heredoc, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4753 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4754 | } |
| 4755 | } |
| 4756 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4757 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4758 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4759 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4760 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4761 | { |
| 4762 | struct pipe *pi = ctx->list_head; |
| 4763 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4764 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4765 | int i; |
| 4766 | struct command *cmd = pi->cmds; |
| 4767 | |
| 4768 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4769 | pi->num_cmds, |
| 4770 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4771 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4772 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4773 | |
| 4774 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4775 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4776 | while (redir) { |
| 4777 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4778 | char *p; |
| 4779 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4780 | redir->rd_type = REDIRECT_HEREDOC2; |
| 4781 | /* redir->dup is (ab)used to indicate <<- */ |
| 4782 | p = fetch_till_str(&ctx->as_string, input, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4783 | redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4784 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4785 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4786 | return 1; |
| 4787 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4788 | free(redir->rd_filename); |
| 4789 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4790 | heredoc_cnt--; |
| 4791 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4792 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4793 | } |
| 4794 | cmd++; |
| 4795 | } |
| 4796 | pi = pi->next; |
| 4797 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4798 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4799 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4800 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4801 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4802 | #endif |
| 4803 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4804 | } |
| 4805 | |
| 4806 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4807 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4808 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4809 | { |
| 4810 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4811 | int pid, channel[2]; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4812 | #if !BB_MMU |
| 4813 | char **to_free; |
| 4814 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4815 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 4816 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 4817 | pid = BB_MMU ? fork() : vfork(); |
| 4818 | if (pid < 0) |
| 4819 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4820 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4821 | if (pid == 0) { /* child */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4822 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4823 | /* Process substitution is not considered to be usual |
| 4824 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4825 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 4826 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 4827 | bb_signals(0 |
| 4828 | + (1 << SIGTSTP) |
| 4829 | + (1 << SIGTTIN) |
| 4830 | + (1 << SIGTTOU) |
| 4831 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4832 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 4833 | xmove_fd(channel[1], 1); |
| 4834 | /* Prevent it from trying to handle ctrl-z etc */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 4835 | IF_HUSH_JOB(G.run_list_level = 1;) |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4836 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4837 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4838 | parse_and_run_string(s); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4839 | _exit(G.last_exitcode); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4840 | #else |
| 4841 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4842 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 4843 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4844 | * echo OK |
| 4845 | */ |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4846 | re_execute_shell(&to_free, |
| 4847 | s, |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4848 | G.global_argv[0], |
| 4849 | G.global_argv + 1); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4850 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4851 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4852 | |
| 4853 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4854 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 4855 | #if !BB_MMU |
| 4856 | free(to_free); |
| 4857 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4858 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 4859 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4860 | return pf; |
| 4861 | } |
| 4862 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4863 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4864 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4865 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4866 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4867 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4868 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4869 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4870 | pf = generate_stream_from_string(s); |
| 4871 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4872 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4873 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4874 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4875 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4876 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4877 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4878 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4879 | if (ch == '\n') { |
| 4880 | eol_cnt++; |
| 4881 | continue; |
| 4882 | } |
| 4883 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4884 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4885 | eol_cnt--; |
| 4886 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4887 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4888 | } |
| 4889 | |
| 4890 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4891 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 4892 | * 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] | 4893 | * Try these: |
| 4894 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 4895 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4896 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4897 | fclose(pf); |
| 4898 | debug_printf("closed FILE from child. return 0\n"); |
| 4899 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4900 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4901 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4902 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4903 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4904 | struct in_str *input, int ch) |
| 4905 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4906 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4907 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4908 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4909 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4910 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4911 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4912 | |
| 4913 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4914 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4915 | if (ch == '(' && !dest->o_quoted) { |
| 4916 | if (dest->length) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4917 | if (done_word(dest, ctx)) |
| 4918 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4919 | if (!command->argv) |
| 4920 | goto skip; /* (... */ |
| 4921 | if (command->argv[1]) { /* word word ... (... */ |
| 4922 | syntax_error_unexpected_ch('('); |
| 4923 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4924 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4925 | /* it is "word(..." or "word (..." */ |
| 4926 | do |
| 4927 | ch = i_getch(input); |
| 4928 | while (ch == ' ' || ch == '\t'); |
| 4929 | if (ch != ')') { |
| 4930 | syntax_error_unexpected_ch(ch); |
| 4931 | return 1; |
| 4932 | } |
| 4933 | nommu_addchr(&ctx->as_string, ch); |
| 4934 | do |
| 4935 | ch = i_getch(input); |
| 4936 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
| 4937 | if (ch != '{') { |
| 4938 | syntax_error_unexpected_ch(ch); |
| 4939 | return 1; |
| 4940 | } |
| 4941 | nommu_addchr(&ctx->as_string, ch); |
| 4942 | command->grp_type = GRP_FUNCTION; |
| 4943 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4944 | } |
| 4945 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4946 | if (command->argv /* word [word]{... */ |
| 4947 | || dest->length /* word{... */ |
| 4948 | || dest->o_quoted /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4949 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4950 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4951 | debug_printf_parse("parse_group return 1: " |
| 4952 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4953 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4954 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4955 | |
| 4956 | #if ENABLE_HUSH_FUNCTIONS |
| 4957 | skip: |
| 4958 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4959 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4960 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4961 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4962 | command->grp_type = GRP_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4963 | } else { |
| 4964 | /* bash does not allow "{echo...", requires whitespace */ |
| 4965 | ch = i_getch(input); |
| 4966 | if (ch != ' ' && ch != '\t' && ch != '\n') { |
| 4967 | syntax_error_unexpected_ch(ch); |
| 4968 | return 1; |
| 4969 | } |
| 4970 | nommu_addchr(&ctx->as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4971 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4972 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4973 | { |
| 4974 | #if !BB_MMU |
| 4975 | char *as_string = NULL; |
| 4976 | #endif |
| 4977 | pipe_list = parse_stream(&as_string, input, endch); |
| 4978 | #if !BB_MMU |
| 4979 | if (as_string) |
| 4980 | o_addstr(&ctx->as_string, as_string); |
| 4981 | #endif |
| 4982 | /* empty ()/{} or parse error? */ |
| 4983 | if (!pipe_list || pipe_list == ERR_PTR) { |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4984 | /* parse_stream already emitted error msg */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4985 | #if !BB_MMU |
| 4986 | free(as_string); |
| 4987 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4988 | debug_printf_parse("parse_group return 1: " |
| 4989 | "parse_stream returned %p\n", pipe_list); |
| 4990 | return 1; |
| 4991 | } |
| 4992 | command->group = pipe_list; |
| 4993 | #if !BB_MMU |
| 4994 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4995 | command->group_as_string = as_string; |
| 4996 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4997 | command->group_as_string); |
| 4998 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4999 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5000 | debug_printf_parse("parse_group return 0\n"); |
| 5001 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5002 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5003 | } |
| 5004 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5005 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5006 | /* Subroutines for copying $(...) and `...` things */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5007 | static void add_till_backquote(o_string *dest, struct in_str *input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5008 | /* '...' */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5009 | 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] | 5010 | { |
| 5011 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5012 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5013 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5014 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5015 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5016 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5017 | if (ch == '\'') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5018 | return; |
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 | } |
| 5021 | } |
| 5022 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5023 | 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] | 5024 | { |
| 5025 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5026 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5027 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5028 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5029 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5030 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5031 | if (ch == '"') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5032 | return; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5033 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5034 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5035 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5036 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5037 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5038 | if (ch == '`') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5039 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5040 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5041 | continue; |
| 5042 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 5043 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5044 | } |
| 5045 | } |
| 5046 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 5047 | * \` quoting. |
| 5048 | * "Within the backquoted style of command substitution, backslash |
| 5049 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 5050 | * The search for the matching backquote shall be satisfied by the first |
| 5051 | * backquote found without a preceding backslash; during this search, |
| 5052 | * if a non-escaped backquote is encountered within a shell comment, |
| 5053 | * a here-document, an embedded command substitution of the $(command) |
| 5054 | * form, or a quoted string, undefined results occur. A single-quoted |
| 5055 | * or double-quoted string that begins, but does not end, within the |
| 5056 | * "`...`" sequence produces undefined results." |
| 5057 | * Example Output |
| 5058 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 5059 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5060 | static void add_till_backquote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5061 | { |
| 5062 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5063 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5064 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5065 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5066 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5067 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5068 | if (ch == '`') |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5069 | return; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5070 | if (ch == '\\') { |
| 5071 | /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5072 | int ch2 = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5073 | if (ch2 == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5074 | syntax_error_unterm_ch('`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5075 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5076 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5077 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5078 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5079 | ch = ch2; |
| 5080 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5081 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5082 | } |
| 5083 | } |
| 5084 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 5085 | * quoting and nested ()s. |
| 5086 | * "With the $(command) style of command substitution, all characters |
| 5087 | * following the open parenthesis to the matching closing parenthesis |
| 5088 | * constitute the command. Any valid shell script can be used for command, |
| 5089 | * except a script consisting solely of redirections which produces |
| 5090 | * unspecified results." |
| 5091 | * Example Output |
| 5092 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 5093 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 5094 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 5095 | */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5096 | 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] | 5097 | { |
| 5098 | int count = 0; |
| 5099 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5100 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5101 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5102 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5103 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5104 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5105 | if (ch == '(') |
| 5106 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5107 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5108 | if (--count < 0) { |
| 5109 | if (!dbl) |
| 5110 | break; |
| 5111 | if (i_peek(input) == ')') { |
| 5112 | i_getch(input); |
| 5113 | break; |
| 5114 | } |
| 5115 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5116 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5117 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5118 | if (ch == '\'') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5119 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5120 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5121 | continue; |
| 5122 | } |
| 5123 | if (ch == '"') { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5124 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5125 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5126 | continue; |
| 5127 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5128 | if (ch == '\\') { |
| 5129 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5130 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5131 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5132 | syntax_error_unterm_ch(')'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5133 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5134 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 5135 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5136 | continue; |
| 5137 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5138 | } |
| 5139 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5140 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5141 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5142 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5143 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5144 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5145 | handle_dollar(dest, input) |
| 5146 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5147 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5148 | o_string *dest, |
| 5149 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5150 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5151 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5152 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5153 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5154 | |
| 5155 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5156 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5157 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5158 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 5159 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5160 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5161 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5162 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5163 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 5164 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5165 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5166 | if (!isalnum(ch) && ch != '_') |
| 5167 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5168 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5169 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5170 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5171 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5172 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5173 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5174 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5175 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5176 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 5177 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5178 | o_addchr(dest, ch | quote_mask); |
| 5179 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5180 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5181 | case '$': /* pid */ |
| 5182 | case '!': /* last bg pid */ |
| 5183 | case '?': /* last exit code */ |
| 5184 | case '#': /* number of args */ |
| 5185 | case '*': /* args */ |
| 5186 | case '@': /* args */ |
| 5187 | goto make_one_char_var; |
| 5188 | case '{': { |
| 5189 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 5190 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5191 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5192 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5193 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 4ea187f | 2009-04-17 14:35:43 +0000 | [diff] [blame] | 5194 | /* TODO: maybe someone will try to escape the '}' */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5195 | expansion = 0; |
| 5196 | first_char = true; |
| 5197 | all_digits = false; |
| 5198 | while (1) { |
| 5199 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5200 | nommu_addchr(as_string, ch); |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5201 | if (ch == '}') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5202 | break; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5203 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 5204 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5205 | if (first_char) { |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5206 | if (ch == '#') { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5207 | /* ${#var}: length of var contents */ |
| 5208 | goto char_ok; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5209 | } |
| 5210 | if (isdigit(ch)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5211 | all_digits = true; |
| 5212 | goto char_ok; |
| 5213 | } |
| 5214 | } |
| 5215 | |
| 5216 | if (expansion < 2 |
| 5217 | && ( (all_digits && !isdigit(ch)) |
| 5218 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 5219 | ) |
| 5220 | ) { |
| 5221 | /* handle parameter expansions |
| 5222 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 5223 | */ |
| 5224 | if (first_char) |
| 5225 | goto case_default; |
| 5226 | switch (ch) { |
| 5227 | case ':': /* null modifier */ |
| 5228 | if (expansion == 0) { |
| 5229 | debug_printf_parse(": null modifier\n"); |
| 5230 | ++expansion; |
| 5231 | break; |
| 5232 | } |
| 5233 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5234 | case '#': /* remove prefix */ |
| 5235 | case '%': /* remove suffix */ |
| 5236 | if (expansion == 0) { |
| 5237 | debug_printf_parse(": remove suffix/prefix\n"); |
| 5238 | expansion = 2; |
| 5239 | break; |
| 5240 | } |
| 5241 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5242 | case '-': /* default value */ |
| 5243 | case '=': /* assign default */ |
| 5244 | case '+': /* alternative */ |
| 5245 | case '?': /* error indicate */ |
| 5246 | debug_printf_parse(": parameter expansion\n"); |
| 5247 | expansion = 2; |
| 5248 | break; |
| 5249 | default: |
| 5250 | case_default: |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5251 | syntax_error_unterm_str("${name}"); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5252 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 5253 | return 1; |
| 5254 | } |
| 5255 | } |
| 5256 | char_ok: |
| 5257 | debug_printf_parse(": '%c'\n", ch); |
| 5258 | o_addchr(dest, ch | quote_mask); |
| 5259 | quote_mask = 0; |
| 5260 | first_char = false; |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5261 | } /* while (1) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5262 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5263 | break; |
| 5264 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5265 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5266 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5267 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5268 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5269 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5270 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5271 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5272 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5273 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5274 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5275 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5276 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5277 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5278 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5279 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5280 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5281 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5282 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5283 | if (as_string) { |
| 5284 | o_addstr(as_string, dest->data + pos); |
| 5285 | o_addchr(as_string, ')'); |
| 5286 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5287 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5288 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5289 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5290 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 5291 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5292 | # endif |
| 5293 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5294 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5295 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5296 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5297 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5298 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5299 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5300 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5301 | if (as_string) { |
| 5302 | o_addstr(as_string, dest->data + pos); |
| 5303 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5304 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5305 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5306 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5307 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5308 | break; |
| 5309 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 5310 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5311 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5312 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5313 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5314 | ch = i_peek(input); |
| 5315 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 5316 | ch = '_'; |
| 5317 | goto make_var; |
| 5318 | } |
| 5319 | /* else: it's $_ */ |
| 5320 | /* TODO: */ |
| 5321 | /* $_ Shell or shell script name; or last cmd name */ |
| 5322 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 5323 | default: |
| 5324 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5325 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 5326 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5327 | return 0; |
| 5328 | } |
| 5329 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5330 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5331 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5332 | parse_stream_dquoted(dest, input, dquote_end) |
| 5333 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5334 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5335 | o_string *dest, |
| 5336 | struct in_str *input, |
| 5337 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5338 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5339 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5340 | int next; |
| 5341 | |
| 5342 | again: |
| 5343 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5344 | if (ch != EOF) |
| 5345 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5346 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5347 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5348 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5349 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 5350 | return 0; |
| 5351 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5352 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5353 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5354 | syntax_error_unterm_ch('"'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5355 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5356 | } |
| 5357 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5358 | if (ch != '\n') { |
| 5359 | next = i_peek(input); |
| 5360 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5361 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5362 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5363 | if (ch == '\\') { |
| 5364 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5365 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5366 | xfunc_die(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5367 | } |
| 5368 | /* bash: |
| 5369 | * "The backslash retains its special meaning [in "..."] |
| 5370 | * only when followed by one of the following characters: |
| 5371 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 5372 | * within double quotes by preceding it with a backslash. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5373 | */ |
Denys Vlasenko | e19e193 | 2009-05-03 02:15:18 +0200 | [diff] [blame] | 5374 | if (strchr("$`\"\\\n", next) != NULL) { |
Denis Vlasenko | 5729300 | 2009-04-26 20:06:14 +0000 | [diff] [blame] | 5375 | ch = i_getch(input); |
Denys Vlasenko | e19e193 | 2009-05-03 02:15:18 +0200 | [diff] [blame] | 5376 | if (ch != '\n') { |
| 5377 | o_addqchr(dest, ch); |
| 5378 | nommu_addchr(as_string, ch); |
| 5379 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5380 | } else { |
| 5381 | o_addqchr(dest, '\\'); |
Denis Vlasenko | 5729300 | 2009-04-26 20:06:14 +0000 | [diff] [blame] | 5382 | nommu_addchr(as_string, '\\'); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5383 | } |
| 5384 | goto again; |
| 5385 | } |
| 5386 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5387 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5388 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 5389 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5390 | return 1; |
| 5391 | } |
| 5392 | goto again; |
| 5393 | } |
| 5394 | #if ENABLE_HUSH_TICK |
| 5395 | if (ch == '`') { |
| 5396 | //int pos = dest->length; |
| 5397 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5398 | o_addchr(dest, 0x80 | '`'); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5399 | add_till_backquote(dest, input); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5400 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 5401 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5402 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5403 | } |
| 5404 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5405 | o_addQchr(dest, ch); |
| 5406 | if (ch == '=' |
| 5407 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 5408 | || dest->o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5409 | && is_well_formed_var_name(dest->data, '=') |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 5410 | ) { |
| 5411 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 5412 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5413 | goto again; |
| 5414 | } |
| 5415 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5416 | /* |
| 5417 | * Scan input until EOF or end_trigger char. |
| 5418 | * Return a list of pipes to execute, or NULL on EOF |
| 5419 | * or if end_trigger character is met. |
| 5420 | * On syntax error, exit is shell is not interactive, |
| 5421 | * reset parsing machinery and start parsing anew, |
| 5422 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5423 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5424 | static struct pipe *parse_stream(char **pstring, |
| 5425 | struct in_str *input, |
| 5426 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5427 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5428 | struct parse_context ctx; |
| 5429 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5430 | int is_in_dquote; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5431 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5432 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 5433 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5434 | * 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] | 5435 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 5436 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5437 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 5438 | end_trigger ? : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5439 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5440 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5441 | G.ifs = get_local_var_value("IFS"); |
| 5442 | if (G.ifs == NULL) |
| 5443 | G.ifs = " \t\n"; |
| 5444 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5445 | reset: |
| 5446 | #if ENABLE_HUSH_INTERACTIVE |
| 5447 | input->promptmode = 0; /* PS1 */ |
| 5448 | #endif |
| 5449 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 5450 | initialize_context(&ctx); |
| 5451 | is_in_dquote = 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5452 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5453 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5454 | const char *is_ifs; |
| 5455 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5456 | int ch; |
| 5457 | int next; |
| 5458 | int redir_fd; |
| 5459 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5460 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5461 | if (is_in_dquote) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5462 | /* dest.o_quoted = 1; - already is (see below) */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5463 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5464 | goto parse_error; |
| 5465 | } |
| 5466 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5467 | is_in_dquote = 0; |
| 5468 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5469 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5470 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 5471 | ch, ch, dest.o_escape); |
| 5472 | if (ch == EOF) { |
| 5473 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5474 | |
| 5475 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5476 | syntax_error_unterm_str("here document"); |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5477 | goto parse_error; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5478 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5479 | /* end_trigger == '}' case errors out earlier, |
| 5480 | * checking only ')' */ |
| 5481 | if (end_trigger == ')') { |
| 5482 | syntax_error_unterm_ch('('); /* exits */ |
| 5483 | /* goto parse_error; */ |
| 5484 | } |
| 5485 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5486 | if (done_word(&dest, &ctx)) { |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5487 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5488 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5489 | o_free(&dest); |
| 5490 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5491 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5492 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5493 | /* (this makes bare "&" cmd a no-op. |
| 5494 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5495 | if (pi->num_cmds == 0 |
| 5496 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 5497 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5498 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5499 | pi = NULL; |
| 5500 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5501 | #if !BB_MMU |
| 5502 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5503 | if (pstring) |
| 5504 | *pstring = ctx.as_string.data; |
| 5505 | else |
| 5506 | o_free_unsafe(&ctx.as_string); |
| 5507 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5508 | debug_leave(); |
| 5509 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5510 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5511 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5512 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5513 | is_ifs = strchr(G.ifs, ch); |
| 5514 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 5515 | "\\$\"" IF_HUSH_TICK("`") /* always special */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5516 | , ch); |
| 5517 | |
| 5518 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5519 | ordinary_char: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5520 | o_addQchr(&dest, ch); |
| 5521 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 5522 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5523 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5524 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5525 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5526 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5527 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5528 | continue; |
| 5529 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5530 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5531 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5532 | if (done_word(&dest, &ctx)) { |
| 5533 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5534 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5535 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5536 | #if ENABLE_HUSH_CASE |
| 5537 | /* "case ... in <newline> word) ..." - |
| 5538 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5539 | if (ctx.command->argv == NULL |
| 5540 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5541 | ) { |
| 5542 | continue; |
| 5543 | } |
| 5544 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5545 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5546 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5547 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5548 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5549 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5550 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5551 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5552 | heredoc_cnt = 0; |
| 5553 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5554 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5555 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 5556 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5557 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5558 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5559 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5560 | |
| 5561 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 5562 | * } is an ordinary char in this case, even inside { cmd; } |
| 5563 | * Pathological example: { ""}; } should exec "}" cmd |
| 5564 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5565 | if (ch == '}') { |
| 5566 | if (!IS_NULL_CMD(ctx.command) /* cmd } */ |
| 5567 | || dest.length != 0 /* word} */ |
| 5568 | || dest.o_quoted /* ""} */ |
| 5569 | ) { |
| 5570 | goto ordinary_char; |
| 5571 | } |
| 5572 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
| 5573 | goto skip_end_trigger; |
| 5574 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5575 | } |
| 5576 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5577 | if (end_trigger && end_trigger == ch |
| 5578 | && (heredoc_cnt == 0 || end_trigger != ';') |
| 5579 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5580 | if (heredoc_cnt) { |
| 5581 | /* This is technically valid: |
| 5582 | * { cat <<HERE; }; echo Ok |
| 5583 | * heredoc |
| 5584 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5585 | * HERE |
| 5586 | * but we don't support this. |
| 5587 | * We require heredoc to be in enclosing {}/(), |
| 5588 | * if any. |
| 5589 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5590 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5591 | goto parse_error; |
| 5592 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5593 | if (done_word(&dest, &ctx)) { |
| 5594 | goto parse_error; |
| 5595 | } |
| 5596 | done_pipe(&ctx, PIPE_SEQ); |
| 5597 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5598 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5599 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5600 | 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] | 5601 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5602 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5603 | #if !BB_MMU |
| 5604 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 5605 | if (pstring) |
| 5606 | *pstring = ctx.as_string.data; |
| 5607 | else |
| 5608 | o_free_unsafe(&ctx.as_string); |
| 5609 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5610 | debug_leave(); |
| 5611 | debug_printf_parse("parse_stream return %p: " |
| 5612 | "end_trigger char found\n", |
| 5613 | ctx.list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5614 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5615 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5616 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5617 | skip_end_trigger: |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5618 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5619 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5620 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5621 | next = '\0'; |
| 5622 | if (ch != '\n') { |
| 5623 | next = i_peek(input); |
| 5624 | } |
| 5625 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5626 | /* Catch <, > before deciding whether this word is |
| 5627 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5628 | switch (ch) { |
| 5629 | case '>': |
| 5630 | redir_fd = redirect_opt_num(&dest); |
| 5631 | if (done_word(&dest, &ctx)) { |
| 5632 | goto parse_error; |
| 5633 | } |
| 5634 | redir_style = REDIRECT_OVERWRITE; |
| 5635 | if (next == '>') { |
| 5636 | redir_style = REDIRECT_APPEND; |
| 5637 | ch = i_getch(input); |
| 5638 | nommu_addchr(&ctx.as_string, ch); |
| 5639 | } |
| 5640 | #if 0 |
| 5641 | else if (next == '(') { |
| 5642 | syntax_error(">(process) not supported"); |
| 5643 | goto parse_error; |
| 5644 | } |
| 5645 | #endif |
| 5646 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5647 | goto parse_error; |
| 5648 | continue; /* back to top of while (1) */ |
| 5649 | case '<': |
| 5650 | redir_fd = redirect_opt_num(&dest); |
| 5651 | if (done_word(&dest, &ctx)) { |
| 5652 | goto parse_error; |
| 5653 | } |
| 5654 | redir_style = REDIRECT_INPUT; |
| 5655 | if (next == '<') { |
| 5656 | redir_style = REDIRECT_HEREDOC; |
| 5657 | heredoc_cnt++; |
| 5658 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5659 | ch = i_getch(input); |
| 5660 | nommu_addchr(&ctx.as_string, ch); |
| 5661 | } else if (next == '>') { |
| 5662 | redir_style = REDIRECT_IO; |
| 5663 | ch = i_getch(input); |
| 5664 | nommu_addchr(&ctx.as_string, ch); |
| 5665 | } |
| 5666 | #if 0 |
| 5667 | else if (next == '(') { |
| 5668 | syntax_error("<(process) not supported"); |
| 5669 | goto parse_error; |
| 5670 | } |
| 5671 | #endif |
| 5672 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5673 | goto parse_error; |
| 5674 | continue; /* back to top of while (1) */ |
| 5675 | } |
| 5676 | |
| 5677 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5678 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5679 | && !ctx.pending_redirect |
| 5680 | ) { |
| 5681 | /* ch is a special char and thus this word |
| 5682 | * cannot be an assignment */ |
| 5683 | dest.o_assignment = NOT_ASSIGNMENT; |
| 5684 | } |
| 5685 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5686 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5687 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5688 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5689 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5690 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5691 | if (ch == EOF || ch == '\n') |
| 5692 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5693 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5694 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5695 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5696 | nommu_addchr(&ctx.as_string, '\n'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5697 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5698 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5699 | } |
| 5700 | break; |
| 5701 | case '\\': |
| 5702 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5703 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5704 | xfunc_die(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5705 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5706 | ch = i_getch(input); |
Denys Vlasenko | e19e193 | 2009-05-03 02:15:18 +0200 | [diff] [blame] | 5707 | if (ch != '\n') { |
| 5708 | o_addchr(&dest, '\\'); |
| 5709 | nommu_addchr(&ctx.as_string, '\\'); |
| 5710 | o_addchr(&dest, ch); |
| 5711 | nommu_addchr(&ctx.as_string, ch); |
| 5712 | /* Example: echo Hello \2>file |
| 5713 | * we need to know that word 2 is quoted */ |
| 5714 | dest.o_quoted = 1; |
| 5715 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5716 | break; |
| 5717 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5718 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5719 | debug_printf_parse("parse_stream parse error: " |
| 5720 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5721 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5722 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5723 | break; |
| 5724 | case '\'': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5725 | dest.o_quoted = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5726 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5727 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5728 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5729 | syntax_error_unterm_ch('\''); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5730 | /*xfunc_die(); - redundant */ |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5731 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5732 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5733 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 5734 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5735 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5736 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5737 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5738 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5739 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5740 | break; |
| 5741 | case '"': |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5742 | dest.o_quoted = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 5743 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5744 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 5745 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5746 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5747 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5748 | case '`': { |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5749 | #if !BB_MMU |
| 5750 | int pos; |
| 5751 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5752 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5753 | o_addchr(&dest, '`'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5754 | #if !BB_MMU |
| 5755 | pos = dest.length; |
| 5756 | #endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5757 | add_till_backquote(&dest, input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5758 | #if !BB_MMU |
| 5759 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5760 | o_addchr(&ctx.as_string, '`'); |
| 5761 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5762 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5763 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5764 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5765 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5766 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5767 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5768 | #if ENABLE_HUSH_CASE |
| 5769 | case_semi: |
| 5770 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5771 | if (done_word(&dest, &ctx)) { |
| 5772 | goto parse_error; |
| 5773 | } |
| 5774 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5775 | #if ENABLE_HUSH_CASE |
| 5776 | /* Eat multiple semicolons, detect |
| 5777 | * whether it means something special */ |
| 5778 | while (1) { |
| 5779 | ch = i_peek(input); |
| 5780 | if (ch != ';') |
| 5781 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5782 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5783 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5784 | if (ctx.ctx_res_w == RES_CASEI) { |
| 5785 | ctx.ctx_dsemicolon = 1; |
| 5786 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5787 | break; |
| 5788 | } |
| 5789 | } |
| 5790 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5791 | new_cmd: |
| 5792 | /* We just finished a cmd. New one may start |
| 5793 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5794 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5795 | break; |
| 5796 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5797 | if (done_word(&dest, &ctx)) { |
| 5798 | goto parse_error; |
| 5799 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5800 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5801 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5802 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5803 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5804 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5805 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5806 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5807 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5808 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5809 | if (done_word(&dest, &ctx)) { |
| 5810 | goto parse_error; |
| 5811 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5812 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5813 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5814 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5815 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5816 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5817 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5818 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5819 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5820 | } else { |
| 5821 | /* we could pick up a file descriptor choice here |
| 5822 | * with redirect_opt_num(), but bash doesn't do it. |
| 5823 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5824 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5825 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5826 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5827 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5828 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5829 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5830 | if (ctx.ctx_res_w == RES_MATCH |
| 5831 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5832 | && dest.length == 0 /* not word(... */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 5833 | && dest.o_quoted == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5834 | ) { |
| 5835 | continue; |
| 5836 | } |
| 5837 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5838 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5839 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5840 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5841 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5842 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5843 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5844 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5845 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5846 | goto case_semi; |
| 5847 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5848 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5849 | /* proper use of this character is caught by end_trigger: |
| 5850 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5851 | * and it will match } earlier (not here). */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 5852 | syntax_error_unexpected_ch(ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5853 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5854 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5855 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5856 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5857 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5858 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5859 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5860 | parse_error: |
| 5861 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5862 | struct parse_context *pctx; |
| 5863 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5864 | |
| 5865 | /* Clean up allocated tree. |
| 5866 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5867 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 5868 | * while if false; then false; fi do break; done |
| 5869 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5870 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5871 | * Samples to catch leaks at execution: |
| 5872 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 5873 | * 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] | 5874 | */ |
| 5875 | pctx = &ctx; |
| 5876 | do { |
| 5877 | /* Update pipe/command counts, |
| 5878 | * otherwise freeing may miss some */ |
| 5879 | done_pipe(pctx, PIPE_SEQ); |
| 5880 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5881 | pctx->list_head, pctx); |
| 5882 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5883 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5884 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5885 | #if !BB_MMU |
| 5886 | o_free_unsafe(&pctx->as_string); |
| 5887 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5888 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5889 | if (pctx != &ctx) { |
| 5890 | free(pctx); |
| 5891 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5892 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5893 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5894 | /* Free text, clear all dest fields */ |
| 5895 | o_free(&dest); |
| 5896 | /* If we are not in top-level parse, we return, |
| 5897 | * our caller will propagate error. |
| 5898 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5899 | if (end_trigger != ';') { |
| 5900 | #if !BB_MMU |
| 5901 | if (pstring) |
| 5902 | *pstring = NULL; |
| 5903 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5904 | debug_leave(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5905 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5906 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5907 | /* Discard cached input, force prompt */ |
| 5908 | input->p = NULL; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 5909 | IF_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5910 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5911 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5912 | } |
| 5913 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5914 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5915 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 5916 | * end_trigger controls how often we stop parsing |
| 5917 | * NUL: parse all, execute, return |
| 5918 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 5919 | */ |
| 5920 | 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] | 5921 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5922 | while (1) { |
| 5923 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5924 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5925 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5926 | if (!pipe_list) /* EOF */ |
| 5927 | break; |
| 5928 | debug_print_tree(pipe_list, 0); |
| 5929 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 5930 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5931 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5932 | } |
| 5933 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5934 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5935 | { |
| 5936 | struct in_str input; |
| 5937 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5938 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5939 | } |
| 5940 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5941 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5942 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5943 | struct in_str input; |
| 5944 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5945 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5946 | } |
| 5947 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5948 | /* Called a few times only (or even once if "sh -c") */ |
| 5949 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5950 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5951 | unsigned sig; |
| 5952 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5953 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5954 | mask = (1 << SIGQUIT); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 5955 | if (G_interactive_fd) { |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 5956 | mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 5957 | if (G.saved_tty_pgrp) /* we have ctty, job control sigs work */ |
| 5958 | mask |= SPECIAL_JOB_SIGS; |
| 5959 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5960 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5961 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5962 | if (!second_time) |
| 5963 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 5964 | sig = 0; |
| 5965 | while (mask) { |
| 5966 | if (mask & 1) |
| 5967 | sigaddset(&G.blocked_set, sig); |
| 5968 | mask >>= 1; |
| 5969 | sig++; |
| 5970 | } |
| 5971 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5972 | |
| 5973 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 5974 | second_time ? NULL : &G.inherited_set); |
| 5975 | /* POSIX allows shell to re-enable SIGCHLD |
| 5976 | * even if it was SIG_IGN on entry */ |
| 5977 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5978 | if (!second_time) |
| 5979 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 5980 | } |
| 5981 | |
| 5982 | #if ENABLE_HUSH_JOB |
| 5983 | /* helper */ |
| 5984 | static void maybe_set_to_sigexit(int sig) |
| 5985 | { |
| 5986 | void (*handler)(int); |
| 5987 | /* non_DFL_mask'ed signals are, well, masked, |
| 5988 | * no need to set handler for them. |
| 5989 | */ |
| 5990 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 5991 | handler = signal(sig, sigexit); |
| 5992 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 5993 | signal(sig, handler); |
| 5994 | } |
| 5995 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5996 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5997 | static void set_fatal_handlers(void) |
| 5998 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 5999 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6000 | if (HUSH_DEBUG) { |
| 6001 | maybe_set_to_sigexit(SIGILL ); |
| 6002 | maybe_set_to_sigexit(SIGFPE ); |
| 6003 | maybe_set_to_sigexit(SIGBUS ); |
| 6004 | maybe_set_to_sigexit(SIGSEGV); |
| 6005 | maybe_set_to_sigexit(SIGTRAP); |
| 6006 | } /* else: hush is perfect. what SEGV? */ |
| 6007 | maybe_set_to_sigexit(SIGABRT); |
| 6008 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 6009 | maybe_set_to_sigexit(SIGPIPE); |
| 6010 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6011 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6012 | * if we aren't interactive... but in this case |
| 6013 | * 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] | 6014 | /*maybe_set_to_sigexit(SIGHUP );*/ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6015 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 6016 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 6017 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 6018 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 6019 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6020 | static int set_mode(const char cstate, const char mode) |
| 6021 | { |
| 6022 | int state = (cstate == '-' ? 1 : 0); |
| 6023 | switch (mode) { |
| 6024 | case 'n': G.fake_mode = state; break; |
| 6025 | case 'x': /*G.debug_mode = state;*/ break; |
| 6026 | default: return EXIT_FAILURE; |
| 6027 | } |
| 6028 | return EXIT_SUCCESS; |
| 6029 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6030 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 6031 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 6032 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6033 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6034 | static const struct variable const_shell_ver = { |
| 6035 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 6036 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6037 | .max_len = 1, /* 0 can provoke free(name) */ |
| 6038 | .flg_export = 1, |
| 6039 | .flg_read_only = 1, |
| 6040 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6041 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6042 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6043 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6044 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 6045 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 6046 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6047 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6048 | G.last_exitcode = EXIT_SUCCESS; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6049 | #if !BB_MMU |
| 6050 | G.argv0_for_re_execing = argv[0]; |
| 6051 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6052 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6053 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 6054 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6055 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6056 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 6057 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6058 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6059 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 6060 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6061 | if (e) while (*e) { |
| 6062 | char *value = strchr(*e, '='); |
| 6063 | if (value) { /* paranoia */ |
| 6064 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 6065 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 6066 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6067 | cur_var->max_len = strlen(*e); |
| 6068 | cur_var->flg_export = 1; |
| 6069 | } |
| 6070 | e++; |
| 6071 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6072 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 6073 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 6074 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6075 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 6076 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6077 | G.global_argc = argc; |
| 6078 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 6079 | /* Initialize some more globals to non-zero values */ |
| 6080 | set_cwd(); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 6081 | cmdedit_update_prompt(); |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 6082 | |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 6083 | if (setjmp(die_jmp)) { |
| 6084 | /* xfunc has failed! die die die */ |
| 6085 | /* no EXIT traps, this is an escape hatch! */ |
| 6086 | G.exiting = 1; |
| 6087 | hush_exit(xfunc_error_retval); |
| 6088 | } |
| 6089 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6090 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6091 | * block_signals(0) if we are going to execute "sh <script>", |
| 6092 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6093 | * If we later decide that we are interactive, we run block_signals(0) |
| 6094 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 6095 | * in order to intercept (more) signals. |
| 6096 | */ |
| 6097 | |
| 6098 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6099 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6100 | while (1) { |
| 6101 | opt = getopt(argc, argv, "c:xins" |
| 6102 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6103 | "<:$:R:V:" |
| 6104 | # if ENABLE_HUSH_FUNCTIONS |
| 6105 | "F:" |
| 6106 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6107 | #endif |
| 6108 | ); |
| 6109 | if (opt <= 0) |
| 6110 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6111 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6112 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6113 | if (!G.root_pid) |
| 6114 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6115 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 6116 | if (!argv[optind]) { |
| 6117 | /* -c 'script' (no params): prevent empty $0 */ |
| 6118 | *--G.global_argv = argv[0]; |
| 6119 | optind--; |
| 6120 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6121 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6122 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6123 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6124 | goto final_return; |
| 6125 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 6126 | /* Well, we cannot just declare interactiveness, |
| 6127 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6128 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6129 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 6130 | case 's': |
| 6131 | /* "-s" means "read from stdin", but this is how we always |
| 6132 | * operate, so simply do nothing here. */ |
| 6133 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6134 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 6135 | case '<': /* "big heredoc" support */ |
| 6136 | full_write(STDOUT_FILENO, optarg, strlen(optarg)); |
| 6137 | _exit(0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6138 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6139 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 6140 | optarg++; |
| 6141 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 6142 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6143 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6144 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6145 | optarg++; |
| 6146 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6147 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 6148 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6149 | case 'R': |
| 6150 | case 'V': |
| 6151 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 6152 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 6153 | # if ENABLE_HUSH_FUNCTIONS |
| 6154 | case 'F': { |
| 6155 | struct function *funcp = new_function(optarg); |
| 6156 | /* funcp->name is already set to optarg */ |
| 6157 | /* funcp->body is set to NULL. It's a special case. */ |
| 6158 | funcp->body_as_string = argv[optind]; |
| 6159 | optind++; |
| 6160 | break; |
| 6161 | } |
| 6162 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6163 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6164 | case 'n': |
| 6165 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6166 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6167 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6168 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6169 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6170 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 6171 | " or: sh -c command [args]...\n\n"); |
| 6172 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6173 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6174 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 6175 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6176 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6177 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6178 | |
| 6179 | if (!G.root_pid) |
| 6180 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6181 | |
| 6182 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6183 | if (argv[0] && argv[0][0] == '-') { |
| 6184 | FILE *input; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6185 | debug_printf("sourcing /etc/profile\n"); |
| 6186 | input = fopen_for_read("/etc/profile"); |
| 6187 | if (input != NULL) { |
| 6188 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6189 | block_signals(0); /* 0: called 1st time */ |
| 6190 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6191 | parse_and_run_file(input); |
| 6192 | fclose(input); |
| 6193 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6194 | /* bash: after sourcing /etc/profile, |
| 6195 | * tries to source (in the given order): |
| 6196 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 6197 | * stopping of first found. --noprofile turns this off. |
| 6198 | * bash also sources ~/.bash_logout on exit. |
| 6199 | * If called as sh, skips .bash_XXX files. |
| 6200 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 6201 | } |
| 6202 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6203 | if (argv[optind]) { |
| 6204 | FILE *input; |
| 6205 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 6206 | * "bash <script>" (which is never interactive (unless -i?)) |
| 6207 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6208 | * If called as sh, does the same but with $ENV. |
| 6209 | */ |
| 6210 | debug_printf("running script '%s'\n", argv[optind]); |
| 6211 | G.global_argv = argv + optind; |
| 6212 | G.global_argc = argc - optind; |
| 6213 | input = xfopen_for_read(argv[optind]); |
| 6214 | close_on_exec_on(fileno(input)); |
| 6215 | if (!signal_mask_is_inited) |
| 6216 | block_signals(0); /* 0: called 1st time */ |
| 6217 | parse_and_run_file(input); |
| 6218 | #if ENABLE_FEATURE_CLEAN_UP |
| 6219 | fclose(input); |
| 6220 | #endif |
| 6221 | goto final_return; |
| 6222 | } |
| 6223 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 6224 | /* Up to here, shell was non-interactive. Now it may become one. |
| 6225 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 6226 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6227 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 6228 | /* 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] | 6229 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 6230 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6231 | * no arguments remaining or the -s flag given |
| 6232 | * standard input is a terminal |
| 6233 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6234 | * Refer to Posix.2, the description of the 'sh' utility. |
| 6235 | */ |
| 6236 | #if ENABLE_HUSH_JOB |
| 6237 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6238 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6239 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6240 | if (G.saved_tty_pgrp < 0) |
| 6241 | G.saved_tty_pgrp = 0; |
| 6242 | |
| 6243 | /* try to dup stdin to high fd#, >= 255 */ |
| 6244 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6245 | if (G_interactive_fd < 0) { |
| 6246 | /* try to dup to any fd */ |
| 6247 | G_interactive_fd = dup(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6248 | if (G_interactive_fd < 0) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6249 | /* give up */ |
| 6250 | G_interactive_fd = 0; |
| 6251 | G.saved_tty_pgrp = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 6252 | } |
| 6253 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6254 | // TODO: track & disallow any attempts of user |
| 6255 | // to (inadvertently) close/redirect G_interactive_fd |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6256 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6257 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6258 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6259 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6260 | |
| 6261 | if (G.saved_tty_pgrp) { |
| 6262 | /* If we were run as 'hush &', sleep until we are |
| 6263 | * in the foreground (tty pgrp == our pgrp). |
| 6264 | * If we get started under a job aware app (like bash), |
| 6265 | * make sure we are now in charge so we don't fight over |
| 6266 | * who gets the foreground */ |
| 6267 | while (1) { |
| 6268 | pid_t shell_pgrp = getpgrp(); |
| 6269 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 6270 | if (G.saved_tty_pgrp == shell_pgrp) |
| 6271 | break; |
| 6272 | /* send TTIN to ourself (should stop us) */ |
| 6273 | kill(- shell_pgrp, SIGTTIN); |
| 6274 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6275 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6276 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6277 | /* Block some signals */ |
| 6278 | block_signals(signal_mask_is_inited); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6279 | |
| 6280 | if (G.saved_tty_pgrp) { |
| 6281 | /* Set other signals to restore saved_tty_pgrp */ |
| 6282 | set_fatal_handlers(); |
| 6283 | /* Put ourselves in our own process group |
| 6284 | * (bash, too, does this only if ctty is available) */ |
| 6285 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 6286 | /* Grab control of the terminal */ |
| 6287 | tcsetpgrp(G_interactive_fd, getpid()); |
| 6288 | } |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 6289 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 6290 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 6291 | enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6292 | } else if (!signal_mask_is_inited) { |
| 6293 | block_signals(0); /* 0: called 1st time */ |
| 6294 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6295 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6296 | /* No job control compiled in, only prompt/line editing */ |
| 6297 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6298 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 6299 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6300 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6301 | G_interactive_fd = dup(STDIN_FILENO); |
| 6302 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6303 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6304 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 6305 | } |
| 6306 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6307 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6308 | close_on_exec_on(G_interactive_fd); |
| 6309 | block_signals(signal_mask_is_inited); |
| 6310 | } else if (!signal_mask_is_inited) { |
| 6311 | block_signals(0); |
| 6312 | } |
| 6313 | #else |
| 6314 | /* We have interactiveness code disabled */ |
| 6315 | if (!signal_mask_is_inited) { |
| 6316 | block_signals(0); |
| 6317 | } |
| 6318 | #endif |
| 6319 | /* bash: |
| 6320 | * if interactive but not a login shell, sources ~/.bashrc |
| 6321 | * (--norc turns this off, --rcfile <file> overrides) |
| 6322 | */ |
| 6323 | |
| 6324 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 6325 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | 26cf283 | 2009-04-24 06:40:30 +0000 | [diff] [blame] | 6326 | if (ENABLE_HUSH_HELP) |
| 6327 | puts("Enter 'help' for a list of built-in commands."); |
| 6328 | puts(""); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 6329 | } |
| 6330 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 6331 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6332 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6333 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 6334 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6335 | if (G.cwd != bb_msg_unknown) |
| 6336 | free((char*)G.cwd); |
| 6337 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6338 | while (cur_var) { |
| 6339 | struct variable *tmp = cur_var; |
| 6340 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 6341 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 6342 | cur_var = cur_var->next; |
| 6343 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 6344 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6345 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6346 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6347 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 6348 | |
| 6349 | |
| 6350 | #if ENABLE_LASH |
| 6351 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 6352 | int lash_main(int argc, char **argv) |
| 6353 | { |
| 6354 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 6355 | return hush_main(argc, argv); |
| 6356 | } |
| 6357 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6358 | |
| 6359 | |
| 6360 | /* |
| 6361 | * Built-ins |
| 6362 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6363 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6364 | { |
| 6365 | return 0; |
| 6366 | } |
| 6367 | |
| 6368 | static int builtin_test(char **argv) |
| 6369 | { |
| 6370 | int argc = 0; |
| 6371 | while (*argv) { |
| 6372 | argc++; |
| 6373 | argv++; |
| 6374 | } |
| 6375 | return test_main(argc, argv - argc); |
| 6376 | } |
| 6377 | |
| 6378 | static int builtin_echo(char **argv) |
| 6379 | { |
| 6380 | int argc = 0; |
| 6381 | while (*argv) { |
| 6382 | argc++; |
| 6383 | argv++; |
| 6384 | } |
| 6385 | return echo_main(argc, argv - argc); |
| 6386 | } |
| 6387 | |
| 6388 | static int builtin_eval(char **argv) |
| 6389 | { |
| 6390 | int rcode = EXIT_SUCCESS; |
| 6391 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6392 | if (*++argv) { |
| 6393 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6394 | /* bash: |
| 6395 | * eval "echo Hi; done" ("done" is syntax error): |
| 6396 | * "echo Hi" will not execute too. |
| 6397 | */ |
| 6398 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6399 | free(str); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6400 | rcode = G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6401 | } |
| 6402 | return rcode; |
| 6403 | } |
| 6404 | |
| 6405 | static int builtin_cd(char **argv) |
| 6406 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6407 | const char *newdir = argv[1]; |
| 6408 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6409 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6410 | * bash says "bash: cd: HOME not set" and does nothing |
| 6411 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6412 | */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 6413 | newdir = get_local_var_value("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6414 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6415 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6416 | /* Mimic bash message exactly */ |
| 6417 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6418 | return EXIT_FAILURE; |
| 6419 | } |
| 6420 | set_cwd(); |
| 6421 | return EXIT_SUCCESS; |
| 6422 | } |
| 6423 | |
| 6424 | static int builtin_exec(char **argv) |
| 6425 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6426 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6427 | return EXIT_SUCCESS; /* bash does this */ |
| 6428 | { |
| 6429 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 6430 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6431 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6432 | /* TODO: if exec fails, bash does NOT exit! We do... */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6433 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6434 | /* never returns */ |
| 6435 | } |
| 6436 | } |
| 6437 | |
| 6438 | static int builtin_exit(char **argv) |
| 6439 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 6440 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 6441 | |
| 6442 | /* interactive bash: |
| 6443 | * # trap "echo EEE" EXIT |
| 6444 | * # exit |
| 6445 | * exit |
| 6446 | * There are stopped jobs. |
| 6447 | * (if there are _stopped_ jobs, running ones don't count) |
| 6448 | * # exit |
| 6449 | * exit |
| 6450 | # EEE (then bash exits) |
| 6451 | * |
| 6452 | * we can use G.exiting = -1 as indicator "last cmd was exit" |
| 6453 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 6454 | |
| 6455 | /* note: EXIT trap is run by hush_exit */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6456 | if (*++argv == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6457 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6458 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 6459 | xfunc_error_retval = 255; |
| 6460 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6461 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6462 | } |
| 6463 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6464 | static void print_escaped(const char *s) |
| 6465 | { |
| 6466 | do { |
| 6467 | if (*s != '\'') { |
| 6468 | const char *p; |
| 6469 | |
| 6470 | p = strchrnul(s, '\''); |
| 6471 | /* print 'xxxx', possibly just '' */ |
| 6472 | printf("'%.*s'", (int)(p - s), s); |
| 6473 | if (*p == '\0') |
| 6474 | break; |
| 6475 | s = p; |
| 6476 | } |
| 6477 | /* s points to '; print "'''...'''" */ |
| 6478 | putchar('"'); |
| 6479 | do putchar('\''); while (*++s == '\''); |
| 6480 | putchar('"'); |
| 6481 | } while (*s); |
| 6482 | } |
| 6483 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6484 | static int builtin_export(char **argv) |
| 6485 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6486 | unsigned opt_unexport; |
| 6487 | |
| 6488 | if (argv[1] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6489 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6490 | if (e) { |
| 6491 | while (*e) { |
| 6492 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6493 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6494 | #else |
| 6495 | /* ash emits: export VAR='VAL' |
| 6496 | * bash: declare -x VAR="VAL" |
| 6497 | * we follow ash example */ |
| 6498 | const char *s = *e++; |
| 6499 | const char *p = strchr(s, '='); |
| 6500 | |
| 6501 | if (!p) /* wtf? take next variable */ |
| 6502 | continue; |
| 6503 | /* export var= */ |
| 6504 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6505 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6506 | putchar('\n'); |
| 6507 | #endif |
| 6508 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6509 | /*fflush(stdout); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 6510 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6511 | return EXIT_SUCCESS; |
| 6512 | } |
| 6513 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6514 | #if ENABLE_HUSH_EXPORT_N |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 6515 | /* "!": do not abort on errors */ |
| 6516 | /* "+": stop at 1st non-option */ |
| 6517 | opt_unexport = getopt32(argv, "!+n"); |
| 6518 | if (opt_unexport == (unsigned)-1) |
| 6519 | return EXIT_FAILURE; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6520 | argv += optind; |
| 6521 | #else |
| 6522 | opt_unexport = 0; |
| 6523 | argv++; |
| 6524 | #endif |
| 6525 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6526 | do { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6527 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6528 | |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6529 | /* So far we do not check that name is valid (TODO?) */ |
| 6530 | |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6531 | if (strchr(name, '=') == NULL) { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6532 | struct variable *var; |
| 6533 | |
| 6534 | var = get_local_var(name); |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6535 | if (opt_unexport) { |
| 6536 | /* export -n NAME (without =VALUE) */ |
| 6537 | if (var) { |
| 6538 | var->flg_export = 0; |
| 6539 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 6540 | unsetenv(name); |
| 6541 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 6542 | continue; |
| 6543 | } |
| 6544 | /* export NAME (without =VALUE) */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6545 | if (var) { |
| 6546 | var->flg_export = 1; |
| 6547 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 6548 | putenv(var->varstr); |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6549 | continue; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6550 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6551 | /* Exporting non-existing variable. |
| 6552 | * bash does not put it in environment, |
| 6553 | * but remembers that it is exported, |
| 6554 | * and does put it in env when it is set later. |
| 6555 | * We just set it to "" and export. */ |
| 6556 | name = xasprintf("%s=", name); |
| 6557 | } else { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6558 | /* (Un)exporting NAME=VALUE */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 6559 | name = xstrdup(name); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6560 | } |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 6561 | set_local_var(name, |
| 6562 | /*export:*/ (opt_unexport ? -1 : 1), |
| 6563 | /*readonly:*/ 0 |
| 6564 | ); |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 6565 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6566 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6567 | return EXIT_SUCCESS; |
| 6568 | } |
| 6569 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6570 | static int builtin_trap(char **argv) |
| 6571 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6572 | int sig; |
| 6573 | char *new_cmd; |
| 6574 | |
| 6575 | if (!G.traps) |
| 6576 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
| 6577 | |
| 6578 | argv++; |
| 6579 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6580 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6581 | /* No args: print all trapped */ |
| 6582 | for (i = 0; i < NSIG; ++i) { |
| 6583 | if (G.traps[i]) { |
| 6584 | printf("trap -- "); |
| 6585 | print_escaped(G.traps[i]); |
| 6586 | printf(" %s\n", get_signame(i)); |
| 6587 | } |
| 6588 | } |
| 6589 | /*fflush(stdout); - done after each builtin anyway */ |
| 6590 | return EXIT_SUCCESS; |
| 6591 | } |
| 6592 | |
| 6593 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6594 | /* If first arg is a number: reset all specified signals */ |
| 6595 | sig = bb_strtou(*argv, NULL, 10); |
| 6596 | if (errno == 0) { |
| 6597 | int ret; |
| 6598 | process_sig_list: |
| 6599 | ret = EXIT_SUCCESS; |
| 6600 | while (*argv) { |
| 6601 | sig = get_signum(*argv++); |
| 6602 | if (sig < 0 || sig >= NSIG) { |
| 6603 | ret = EXIT_FAILURE; |
| 6604 | /* Mimic bash message exactly */ |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6605 | bb_perror_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6606 | continue; |
| 6607 | } |
| 6608 | |
| 6609 | free(G.traps[sig]); |
| 6610 | G.traps[sig] = xstrdup(new_cmd); |
| 6611 | |
| 6612 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 6613 | get_signame(sig), sig, G.traps[sig]); |
| 6614 | |
| 6615 | /* There is no signal for 0 (EXIT) */ |
| 6616 | if (sig == 0) |
| 6617 | continue; |
| 6618 | |
| 6619 | if (new_cmd) { |
| 6620 | sigaddset(&G.blocked_set, sig); |
| 6621 | } else { |
| 6622 | /* There was a trap handler, we are removing it |
| 6623 | * (if sig has non-DFL handling, |
| 6624 | * we don't need to do anything) */ |
| 6625 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 6626 | continue; |
| 6627 | sigdelset(&G.blocked_set, sig); |
| 6628 | } |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6629 | } |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 6630 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 6631 | return ret; |
| 6632 | } |
| 6633 | |
| 6634 | if (!argv[1]) { /* no second arg */ |
| 6635 | bb_error_msg("trap: invalid arguments"); |
| 6636 | return EXIT_FAILURE; |
| 6637 | } |
| 6638 | |
| 6639 | /* First arg is "-": reset all specified to default */ |
| 6640 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 6641 | /* Everything else: set arg as signal handler |
| 6642 | * (includes "" case, which ignores signal) */ |
| 6643 | if (argv[0][0] == '-') { |
| 6644 | if (argv[0][1] == '\0') { /* "-" */ |
| 6645 | /* new_cmd remains NULL: "reset these sigs" */ |
| 6646 | goto reset_traps; |
| 6647 | } |
| 6648 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 6649 | argv++; |
| 6650 | } |
| 6651 | /* else: "-something", no special meaning */ |
| 6652 | } |
| 6653 | new_cmd = *argv; |
| 6654 | reset_traps: |
| 6655 | argv++; |
| 6656 | goto process_sig_list; |
| 6657 | } |
| 6658 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6659 | #if ENABLE_HUSH_JOB |
| 6660 | /* built-in 'fg' and 'bg' handler */ |
| 6661 | static int builtin_fg_bg(char **argv) |
| 6662 | { |
| 6663 | int i, jobnum; |
| 6664 | struct pipe *pi; |
| 6665 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6666 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6667 | return EXIT_FAILURE; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6668 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6669 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 6670 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6671 | for (pi = G.job_list; pi; pi = pi->next) { |
| 6672 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6673 | goto found; |
| 6674 | } |
| 6675 | } |
| 6676 | bb_error_msg("%s: no current job", argv[0]); |
| 6677 | return EXIT_FAILURE; |
| 6678 | } |
| 6679 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 6680 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 6681 | return EXIT_FAILURE; |
| 6682 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6683 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6684 | if (pi->jobid == jobnum) { |
| 6685 | goto found; |
| 6686 | } |
| 6687 | } |
| 6688 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 6689 | return EXIT_FAILURE; |
| 6690 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 6691 | /* TODO: bash prints a string representation |
| 6692 | * of job being foregrounded (like "sleep 1 | cat") */ |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 6693 | if (argv[0][0] == 'f' && G.saved_tty_pgrp) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6694 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 6695 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6696 | } |
| 6697 | |
| 6698 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6699 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 6700 | for (i = 0; i < pi->num_cmds; i++) { |
| 6701 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 6702 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6703 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6704 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6705 | |
| 6706 | i = kill(- pi->pgrp, SIGCONT); |
| 6707 | if (i < 0) { |
| 6708 | if (errno == ESRCH) { |
| 6709 | delete_finished_bg_job(pi); |
| 6710 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6711 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6712 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6713 | } |
| 6714 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6715 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6716 | remove_bg_job(pi); |
| 6717 | return checkjobs_and_fg_shell(pi); |
| 6718 | } |
| 6719 | return EXIT_SUCCESS; |
| 6720 | } |
| 6721 | #endif |
| 6722 | |
| 6723 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6724 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6725 | { |
| 6726 | const struct built_in_command *x; |
| 6727 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 6728 | printf("\n" |
| 6729 | "Built-in commands:\n" |
| 6730 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6731 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 6732 | printf("%s\t%s\n", x->cmd, x->descr); |
| 6733 | } |
| 6734 | printf("\n\n"); |
| 6735 | return EXIT_SUCCESS; |
| 6736 | } |
| 6737 | #endif |
| 6738 | |
| 6739 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6740 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6741 | { |
| 6742 | struct pipe *job; |
| 6743 | const char *status_string; |
| 6744 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6745 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 6746 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6747 | status_string = "Stopped"; |
| 6748 | else |
| 6749 | status_string = "Running"; |
| 6750 | |
| 6751 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 6752 | } |
| 6753 | return EXIT_SUCCESS; |
| 6754 | } |
| 6755 | #endif |
| 6756 | |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 6757 | #if HUSH_DEBUG |
| 6758 | static int builtin_memleak(char **argv UNUSED_PARAM) |
| 6759 | { |
| 6760 | void *p; |
| 6761 | unsigned long l; |
| 6762 | |
| 6763 | /* Crude attempt to find where "free memory" starts, |
| 6764 | * sans fragmentation. */ |
| 6765 | p = malloc(240); |
| 6766 | l = (unsigned long)p; |
| 6767 | free(p); |
| 6768 | p = malloc(3400); |
| 6769 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 6770 | free(p); |
| 6771 | |
| 6772 | if (!G.memleak_value) |
| 6773 | G.memleak_value = l; |
| 6774 | |
| 6775 | l -= G.memleak_value; |
| 6776 | if ((long)l < 0) |
| 6777 | l = 0; |
| 6778 | l /= 1024; |
| 6779 | if (l > 127) |
| 6780 | l = 127; |
| 6781 | |
| 6782 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 6783 | return l; |
| 6784 | } |
| 6785 | #endif |
| 6786 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 6787 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6788 | { |
| 6789 | puts(set_cwd()); |
| 6790 | return EXIT_SUCCESS; |
| 6791 | } |
| 6792 | |
| 6793 | static int builtin_read(char **argv) |
| 6794 | { |
| 6795 | char *string; |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6796 | const char *name = "REPLY"; |
| 6797 | |
| 6798 | if (argv[1]) { |
| 6799 | name = argv[1]; |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6800 | /* bash (3.2.33(1)) bug: "read 0abcd" will execute, |
| 6801 | * and _after_ that_ it will complain */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 6802 | if (!is_well_formed_var_name(name, '\0')) { |
| 6803 | /* Mimic bash message */ |
| 6804 | bb_error_msg("read: '%s': not a valid identifier", name); |
| 6805 | return 1; |
| 6806 | } |
| 6807 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6808 | |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 6809 | //TODO: bash unbackslashes input, splits words and puts them in argv[i] |
| 6810 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6811 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 6812 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6813 | } |
| 6814 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6815 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 6816 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6817 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6818 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 6819 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6820 | * set -- [argument...] |
| 6821 | * set -o |
| 6822 | * set +o |
| 6823 | * Implementations shall support the options in both their hyphen and |
| 6824 | * plus-sign forms. These options can also be specified as options to sh. |
| 6825 | * Examples: |
| 6826 | * Write out all variables and their values: set |
| 6827 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 6828 | * Turn on the -x and -v options: set -xv |
| 6829 | * Unset all positional parameters: set -- |
| 6830 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 6831 | * Set the positional parameters to the expansion of x, even if x expands |
| 6832 | * with a leading '-' or '+': set -- $x |
| 6833 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6834 | * 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] | 6835 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6836 | static int builtin_set(char **argv) |
| 6837 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6838 | int n; |
| 6839 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6840 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6841 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6842 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6843 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6844 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6845 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6846 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 6847 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6848 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6849 | do { |
| 6850 | if (!strcmp(arg, "--")) { |
| 6851 | ++argv; |
| 6852 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6853 | } |
Denis Vlasenko | 6ba6f54 | 2009-04-10 21:57:50 +0000 | [diff] [blame] | 6854 | if (arg[0] != '+' && arg[0] != '-') |
| 6855 | break; |
| 6856 | for (n = 1; arg[n]; ++n) |
| 6857 | if (set_mode(arg[0], arg[n])) |
| 6858 | goto error; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6859 | } while ((arg = *++argv) != NULL); |
| 6860 | /* Now argv[0] is 1st argument */ |
| 6861 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6862 | if (arg == NULL) |
| 6863 | return EXIT_SUCCESS; |
| 6864 | set_argv: |
| 6865 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 6866 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 6867 | g_argv = G.global_argv; |
| 6868 | if (G.global_args_malloced) { |
| 6869 | pp = g_argv; |
| 6870 | while (*++pp) |
| 6871 | free(*pp); |
| 6872 | g_argv[1] = NULL; |
| 6873 | } else { |
| 6874 | G.global_args_malloced = 1; |
| 6875 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 6876 | pp[0] = g_argv[0]; /* retain $0 */ |
| 6877 | g_argv = pp; |
| 6878 | } |
| 6879 | /* This realloc's G.global_argv */ |
| 6880 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 6881 | |
| 6882 | n = 1; |
| 6883 | while (*++pp) |
| 6884 | n++; |
| 6885 | G.global_argc = n; |
| 6886 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6887 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6888 | |
| 6889 | /* Nothing known, so abort */ |
| 6890 | error: |
| 6891 | bb_error_msg("set: %s: invalid option", arg); |
| 6892 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6893 | } |
| 6894 | |
| 6895 | static int builtin_shift(char **argv) |
| 6896 | { |
| 6897 | int n = 1; |
| 6898 | if (argv[1]) { |
| 6899 | n = atoi(argv[1]); |
| 6900 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6901 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6902 | if (G.global_args_malloced) { |
| 6903 | int m = 1; |
| 6904 | while (m <= n) |
| 6905 | free(G.global_argv[m++]); |
| 6906 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6907 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6908 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 6909 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6910 | return EXIT_SUCCESS; |
| 6911 | } |
| 6912 | return EXIT_FAILURE; |
| 6913 | } |
| 6914 | |
| 6915 | static int builtin_source(char **argv) |
| 6916 | { |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6917 | const char *PATH; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6918 | FILE *input; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6919 | save_arg_t sv; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6920 | #if ENABLE_HUSH_FUNCTIONS |
| 6921 | smallint sv_flg; |
| 6922 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6923 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6924 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6925 | return EXIT_FAILURE; |
| 6926 | |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6927 | if (strchr(*argv, '/') == NULL |
| 6928 | && (PATH = get_local_var_value("PATH")) != NULL |
| 6929 | ) { |
| 6930 | /* Search through $PATH */ |
| 6931 | while (1) { |
| 6932 | const char *end = strchrnul(PATH, ':'); |
| 6933 | int sz = end - PATH; /* must be int! */ |
| 6934 | |
| 6935 | if (sz != 0) { |
| 6936 | char *tmp = xasprintf("%.*s/%s", sz, PATH, *argv); |
| 6937 | input = fopen_for_read(tmp); |
| 6938 | free(tmp); |
| 6939 | } else { |
| 6940 | /* We have xxx::yyyy in $PATH, |
| 6941 | * it means "use current dir" */ |
| 6942 | input = fopen_for_read(*argv); |
| 6943 | } |
| 6944 | if (input) |
| 6945 | goto opened_ok; |
| 6946 | if (*end == '\0') |
| 6947 | break; |
| 6948 | PATH = end + 1; |
| 6949 | } |
| 6950 | } |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6951 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6952 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6953 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6954 | return EXIT_FAILURE; |
| 6955 | } |
Denys Vlasenko | 54e0843 | 2009-05-02 02:34:19 +0200 | [diff] [blame] | 6956 | opened_ok: |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6957 | close_on_exec_on(fileno(input)); |
| 6958 | |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6959 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6960 | sv_flg = G.flag_return_in_progress; |
| 6961 | /* "we are inside sourced file, ok to use return" */ |
| 6962 | G.flag_return_in_progress = -1; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6963 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6964 | save_and_replace_G_args(&sv, argv); |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6965 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6966 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6967 | fclose(input); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 6968 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6969 | restore_G_args(&sv, argv); |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6970 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6971 | G.flag_return_in_progress = sv_flg; |
Mike Frysinger | 885b6f2 | 2009-04-18 21:04:25 +0000 | [diff] [blame] | 6972 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 6973 | |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6974 | return G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6975 | } |
| 6976 | |
| 6977 | static int builtin_umask(char **argv) |
| 6978 | { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6979 | int rc; |
| 6980 | mode_t mask; |
| 6981 | |
| 6982 | mask = umask(0); |
| 6983 | if (argv[1]) { |
| 6984 | mode_t old_mask = mask; |
| 6985 | |
| 6986 | mask ^= 0777; |
| 6987 | rc = bb_parse_mode(argv[1], &mask); |
| 6988 | mask ^= 0777; |
| 6989 | if (rc == 0) { |
| 6990 | mask = old_mask; |
| 6991 | /* bash messages: |
| 6992 | * bash: umask: 'q': invalid symbolic mode operator |
| 6993 | * bash: umask: 999: octal number out of range |
| 6994 | */ |
| 6995 | bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6996 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6997 | } else { |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 6998 | rc = 1; |
| 6999 | /* Mimic bash */ |
| 7000 | printf("%04o\n", (unsigned) mask); |
| 7001 | /* fall through and restore mask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 7002 | } |
Denis Vlasenko | eb85849 | 2009-04-18 02:06:54 +0000 | [diff] [blame] | 7003 | umask(mask); |
| 7004 | |
| 7005 | return !rc; /* rc != 0 - success */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 7006 | } |
| 7007 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7008 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 7009 | static int builtin_unset(char **argv) |
| 7010 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7011 | int ret; |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 7012 | unsigned opts; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7013 | |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 7014 | /* "!": do not abort on errors */ |
| 7015 | /* "+": stop at 1st non-option */ |
| 7016 | opts = getopt32(argv, "!+vf"); |
| 7017 | if (opts == (unsigned)-1) |
| 7018 | return EXIT_FAILURE; |
| 7019 | if (opts == 3) { |
| 7020 | bb_error_msg("unset: -v and -f are exclusive"); |
| 7021 | return EXIT_FAILURE; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7022 | } |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 7023 | argv += optind; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7024 | |
| 7025 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7026 | while (*argv) { |
Denis Vlasenko | 28e6796 | 2009-04-26 23:22:40 +0000 | [diff] [blame] | 7027 | if (!(opts & 2)) { /* not -f */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7028 | if (unset_local_var(*argv)) { |
| 7029 | /* unset <nonexistent_var> doesn't fail. |
| 7030 | * Error is when one tries to unset RO var. |
| 7031 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7032 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7033 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7034 | } |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 7035 | #if ENABLE_HUSH_FUNCTIONS |
| 7036 | else { |
| 7037 | unset_func(*argv); |
| 7038 | } |
| 7039 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 7040 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 7041 | } |
| 7042 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 7043 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7044 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7045 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 7046 | static int builtin_wait(char **argv) |
| 7047 | { |
| 7048 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7049 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7050 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7051 | if (*++argv == NULL) { |
| 7052 | /* Don't care about wait results */ |
| 7053 | /* Note 1: must wait until there are no more children */ |
| 7054 | /* Note 2: must be interruptible */ |
| 7055 | /* Examples: |
| 7056 | * $ sleep 3 & sleep 6 & wait |
| 7057 | * [1] 30934 sleep 3 |
| 7058 | * [2] 30935 sleep 6 |
| 7059 | * [1] Done sleep 3 |
| 7060 | * [2] Done sleep 6 |
| 7061 | * $ sleep 3 & sleep 6 & wait |
| 7062 | * [1] 30936 sleep 3 |
| 7063 | * [2] 30937 sleep 6 |
| 7064 | * [1] Done sleep 3 |
| 7065 | * ^C <-- after ~4 sec from keyboard |
| 7066 | * $ |
| 7067 | */ |
| 7068 | sigaddset(&G.blocked_set, SIGCHLD); |
| 7069 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 7070 | while (1) { |
| 7071 | checkjobs(NULL); |
| 7072 | if (errno == ECHILD) |
| 7073 | break; |
| 7074 | /* Wait for SIGCHLD or any other signal of interest */ |
| 7075 | /* sigtimedwait with infinite timeout: */ |
| 7076 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 7077 | if (sig > 0) { |
| 7078 | sig = check_and_run_traps(sig); |
| 7079 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 7080 | ret = 128 + sig; |
| 7081 | break; |
| 7082 | } |
| 7083 | } |
| 7084 | } |
| 7085 | sigdelset(&G.blocked_set, SIGCHLD); |
| 7086 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 7087 | return ret; |
| 7088 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7089 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 7090 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7091 | while (*argv) { |
| 7092 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 7093 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7094 | /* mimic bash message */ |
| 7095 | 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] | 7096 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7097 | } |
| 7098 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7099 | if (WIFSIGNALED(status)) |
| 7100 | ret = 128 + WTERMSIG(status); |
| 7101 | else if (WIFEXITED(status)) |
| 7102 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7103 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7104 | ret = EXIT_FAILURE; |
| 7105 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7106 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7107 | ret = 127; |
| 7108 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 7109 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 7110 | } |
| 7111 | |
| 7112 | return ret; |
| 7113 | } |
| 7114 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7115 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 7116 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 7117 | { |
| 7118 | if (argv[1]) { |
| 7119 | def = bb_strtou(argv[1], NULL, 10); |
| 7120 | if (errno || def < def_min || argv[2]) { |
| 7121 | bb_error_msg("%s: bad arguments", argv[0]); |
| 7122 | def = UINT_MAX; |
| 7123 | } |
| 7124 | } |
| 7125 | return def; |
| 7126 | } |
| 7127 | #endif |
| 7128 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7129 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7130 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7131 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7132 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7133 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7134 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 7135 | return EXIT_SUCCESS; /* bash compat */ |
| 7136 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7137 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7138 | |
| 7139 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 7140 | if (depth == UINT_MAX) |
| 7141 | G.flag_break_continue = BC_BREAK; |
| 7142 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 7143 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7144 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7145 | return EXIT_SUCCESS; |
| 7146 | } |
| 7147 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 7148 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7149 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 7150 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 7151 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 7152 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 7153 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7154 | |
| 7155 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | 7b9e5c5 | 2009-04-17 23:53:15 +0000 | [diff] [blame] | 7156 | static int builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 7157 | { |
| 7158 | int rc; |
| 7159 | |
| 7160 | if (G.flag_return_in_progress != -1) { |
| 7161 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 7162 | return EXIT_FAILURE; /* bash compat */ |
| 7163 | } |
| 7164 | |
| 7165 | G.flag_return_in_progress = 1; |
| 7166 | |
| 7167 | /* bash: |
| 7168 | * out of range: wraps around at 256, does not error out |
| 7169 | * non-numeric param: |
| 7170 | * f() { false; return qwe; }; f; echo $? |
| 7171 | * bash: return: qwe: numeric argument required <== we do this |
| 7172 | * 255 <== we also do this |
| 7173 | */ |
| 7174 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 7175 | return rc; |
| 7176 | } |
| 7177 | #endif |