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 | * |
Denys Vlasenko | bbecd74 | 2010-10-03 17:22:52 +0200 | [diff] [blame] | 11 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
| 12 | * |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 13 | * Credits: |
| 14 | * The parser routines proper are all original material, first |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 15 | * written Dec 2000 and Jan 2001 by Larry Doolittle. The |
| 16 | * execution engine, the builtins, and much of the underlying |
| 17 | * support has been adapted from busybox-0.49pre's lash, which is |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 18 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 19 | * written by Erik Andersen <andersen@codepoet.org>. That, in turn, |
| 20 | * is based in part on ladsh.c, by Michael K. Johnson and Erik W. |
| 21 | * Troan, which they placed in the public domain. I don't know |
| 22 | * how much of the Johnson/Troan code has survived the repeated |
| 23 | * rewrites. |
| 24 | * |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 25 | * Other credits: |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 26 | * o_addchr derived from similar w_addchar function in glibc-2.2. |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 27 | * parse_redirect, redirect_opt_num, and big chunks of main |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 28 | * and many builtins derived from contributions by Erik Andersen. |
| 29 | * Miscellaneous bugfixes from Matt Kraai. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 30 | * |
| 31 | * There are two big (and related) architecture differences between |
| 32 | * this parser and the lash parser. One is that this version is |
| 33 | * actually designed from the ground up to understand nearly all |
| 34 | * of the Bourne grammar. The second, consequential change is that |
| 35 | * the parser and input reader have been turned inside out. Now, |
| 36 | * the parser is in control, and asks for input as needed. The old |
| 37 | * way had the input reader in control, and it asked for parsing to |
| 38 | * take place as needed. The new way makes it much easier to properly |
| 39 | * handle the recursion implicit in the various substitutions, especially |
| 40 | * across continuation lines. |
| 41 | * |
Denys Vlasenko | 349ef96 | 2010-05-21 15:46:24 +0200 | [diff] [blame] | 42 | * TODOs: |
| 43 | * grep for "TODO" and fix (some of them are easy) |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 44 | * make complex ${var%...} constructs support optional |
| 45 | * make here documents optional |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 46 | * special variables (done: PWD, PPID, RANDOM) |
| 47 | * follow IFS rules more precisely, including update semantics |
| 48 | * tilde expansion |
| 49 | * aliases |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 50 | * "command" missing features: |
| 51 | * command -p CMD: run CMD using default $PATH |
| 52 | * (can use this to override standalone shell as well?) |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 53 | * command BLTIN: disables special-ness (e.g. errors do not abort) |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 54 | * command -V CMD1 CMD2 CMD3 (multiple args) (not in standard) |
| 55 | * builtins mandated by standards we don't support: |
| 56 | * [un]alias, fc: |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 57 | * fc -l[nr] [BEG] [END]: list range of commands in history |
| 58 | * fc [-e EDITOR] [BEG] [END]: edit/rerun range of commands |
| 59 | * fc -s [PAT=REP] [CMD]: rerun CMD, replacing PAT with REP |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 60 | * |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 61 | * Bash compat TODO: |
| 62 | * redirection of stdout+stderr: &> and >& |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 63 | * reserved words: function select |
| 64 | * advanced test: [[ ]] |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 65 | * process substitution: <(list) and >(list) |
| 66 | * =~: regex operator |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 67 | * let EXPR [EXPR...] |
Denys Vlasenko | 349ef96 | 2010-05-21 15:46:24 +0200 | [diff] [blame] | 68 | * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION) |
| 69 | * If the last arg evaluates to 0, let returns 1; 0 otherwise. |
| 70 | * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used) |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 71 | * ((EXPR)) |
Denys Vlasenko | 349ef96 | 2010-05-21 15:46:24 +0200 | [diff] [blame] | 72 | * The EXPR is evaluated according to ARITHMETIC EVALUATION. |
| 73 | * This is exactly equivalent to let "EXPR". |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 74 | * $[EXPR]: synonym for $((EXPR)) |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 75 | * indirect expansion: ${!VAR} |
| 76 | * substring op on @: ${@:n:m} |
Denys Vlasenko | bbecd74 | 2010-10-03 17:22:52 +0200 | [diff] [blame] | 77 | * |
| 78 | * Won't do: |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 79 | * Some builtins mandated by standards: |
| 80 | * newgrp [GRP]: not a builtin in bash but a suid binary |
| 81 | * which spawns a new shell with new group ID |
Denys Vlasenko | bbecd74 | 2010-10-03 17:22:52 +0200 | [diff] [blame] | 82 | * In bash, export builtin is special, its arguments are assignments |
Denys Vlasenko | 0821801 | 2009-06-03 14:43:56 +0200 | [diff] [blame] | 83 | * and therefore expansion of them should be "one-word" expansion: |
| 84 | * $ export i=`echo 'a b'` # export has one arg: "i=a b" |
| 85 | * compare with: |
| 86 | * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b" |
| 87 | * ls: cannot access i=a: No such file or directory |
| 88 | * ls: cannot access b: No such file or directory |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 89 | * Note1: same applies to local builtin. |
Denys Vlasenko | 0821801 | 2009-06-03 14:43:56 +0200 | [diff] [blame] | 90 | * Note2: bash 3.2.33(1) does this only if export word itself |
| 91 | * is not quoted: |
| 92 | * $ export i=`echo 'aaa bbb'`; echo "$i" |
| 93 | * aaa bbb |
| 94 | * $ "export" i=`echo 'aaa bbb'`; echo "$i" |
| 95 | * aaa |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 96 | */ |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 97 | //config:config HUSH |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 98 | //config: bool "hush (64 kb)" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 99 | //config: default y |
| 100 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 101 | //config: hush is a small shell. It handles the normal flow control |
| 102 | //config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops, |
| 103 | //config: case/esac. Redirections, here documents, $((arithmetic)) |
| 104 | //config: and functions are supported. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 105 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 106 | //config: It will compile and work on no-mmu systems. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 107 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 108 | //config: It does not handle select, aliases, tilde expansion, |
| 109 | //config: &>file and >&file redirection of stdout+stderr. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 110 | //config: |
| 111 | //config:config HUSH_BASH_COMPAT |
| 112 | //config: bool "bash-compatible extensions" |
| 113 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 114 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 115 | //config: |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 116 | //config:config HUSH_BRACE_EXPANSION |
| 117 | //config: bool "Brace expansion" |
| 118 | //config: default y |
| 119 | //config: depends on HUSH_BASH_COMPAT |
| 120 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 121 | //config: Enable {abc,def} extension. |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 122 | //config: |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 123 | //config:config HUSH_LINENO_VAR |
| 124 | //config: bool "$LINENO variable" |
| 125 | //config: default y |
| 126 | //config: depends on HUSH_BASH_COMPAT |
| 127 | //config: |
Denys Vlasenko | 54c2111 | 2018-01-27 20:46:45 +0100 | [diff] [blame] | 128 | //config:config HUSH_BASH_SOURCE_CURDIR |
| 129 | //config: bool "'source' and '.' builtins search current directory after $PATH" |
| 130 | //config: default n # do not encourage non-standard behavior |
| 131 | //config: depends on HUSH_BASH_COMPAT |
| 132 | //config: help |
| 133 | //config: This is not compliant with standards. Avoid if possible. |
| 134 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 135 | //config:config HUSH_INTERACTIVE |
| 136 | //config: bool "Interactive mode" |
| 137 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 138 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 139 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 140 | //config: Enable interactive mode (prompt and command editing). |
| 141 | //config: Without this, hush simply reads and executes commands |
| 142 | //config: from stdin just like a shell script from a file. |
| 143 | //config: No prompt, no PS1/PS2 magic shell variables. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 144 | //config: |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 145 | //config:config HUSH_SAVEHISTORY |
| 146 | //config: bool "Save command history to .hush_history" |
| 147 | //config: default y |
| 148 | //config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 149 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 150 | //config:config HUSH_JOB |
| 151 | //config: bool "Job control" |
| 152 | //config: default y |
| 153 | //config: depends on HUSH_INTERACTIVE |
| 154 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 155 | //config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current |
| 156 | //config: command (not entire shell), fg/bg builtins work. Without this option, |
| 157 | //config: "cmd &" still works by simply spawning a process and immediately |
| 158 | //config: prompting for next command (or executing next command in a script), |
| 159 | //config: but no separate process group is formed. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 160 | //config: |
| 161 | //config:config HUSH_TICK |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 162 | //config: bool "Support process substitution" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 163 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 164 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 165 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 166 | //config: Enable `command` and $(command). |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 167 | //config: |
| 168 | //config:config HUSH_IF |
| 169 | //config: bool "Support if/then/elif/else/fi" |
| 170 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 171 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 172 | //config: |
| 173 | //config:config HUSH_LOOPS |
| 174 | //config: bool "Support for, while and until loops" |
| 175 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 176 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 177 | //config: |
| 178 | //config:config HUSH_CASE |
| 179 | //config: bool "Support case ... esac statement" |
| 180 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 181 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 182 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 183 | //config: Enable case ... esac statement. +400 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 184 | //config: |
| 185 | //config:config HUSH_FUNCTIONS |
| 186 | //config: bool "Support funcname() { commands; } syntax" |
| 187 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 188 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 189 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 190 | //config: Enable support for shell functions. +800 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 191 | //config: |
| 192 | //config:config HUSH_LOCAL |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 193 | //config: bool "local builtin" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 194 | //config: default y |
| 195 | //config: depends on HUSH_FUNCTIONS |
| 196 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 197 | //config: Enable support for local variables in functions. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 198 | //config: |
| 199 | //config:config HUSH_RANDOM_SUPPORT |
| 200 | //config: bool "Pseudorandom generator and $RANDOM variable" |
| 201 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 202 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 203 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 204 | //config: Enable pseudorandom generator and dynamic variable "$RANDOM". |
| 205 | //config: Each read of "$RANDOM" will generate a new pseudorandom value. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 206 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 207 | //config:config HUSH_MODE_X |
| 208 | //config: bool "Support 'hush -x' option and 'set -x' command" |
| 209 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 210 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 211 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 212 | //config: This instructs hush to print commands before execution. |
| 213 | //config: Adds ~300 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 214 | //config: |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 215 | //config:config HUSH_ECHO |
| 216 | //config: bool "echo builtin" |
| 217 | //config: default y |
| 218 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 219 | //config: |
| 220 | //config:config HUSH_PRINTF |
| 221 | //config: bool "printf builtin" |
| 222 | //config: default y |
| 223 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 224 | //config: |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 225 | //config:config HUSH_TEST |
| 226 | //config: bool "test builtin" |
| 227 | //config: default y |
| 228 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 229 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 230 | //config:config HUSH_HELP |
| 231 | //config: bool "help builtin" |
| 232 | //config: default y |
| 233 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 234 | //config: |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 235 | //config:config HUSH_EXPORT |
| 236 | //config: bool "export builtin" |
| 237 | //config: default y |
| 238 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 239 | //config: |
| 240 | //config:config HUSH_EXPORT_N |
| 241 | //config: bool "Support 'export -n' option" |
| 242 | //config: default y |
| 243 | //config: depends on HUSH_EXPORT |
| 244 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 245 | //config: export -n unexports variables. It is a bash extension. |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 246 | //config: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 247 | //config:config HUSH_READONLY |
| 248 | //config: bool "readonly builtin" |
| 249 | //config: default y |
Denys Vlasenko | 6b0695b | 2017-07-17 21:47:27 +0200 | [diff] [blame] | 250 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 251 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 252 | //config: Enable support for read-only variables. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 253 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 254 | //config:config HUSH_KILL |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 255 | //config: bool "kill builtin (supports kill %jobspec)" |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 256 | //config: default y |
| 257 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 258 | //config: |
| 259 | //config:config HUSH_WAIT |
| 260 | //config: bool "wait builtin" |
| 261 | //config: default y |
| 262 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 263 | //config: |
Denys Vlasenko | 3bb3e1d | 2018-01-11 18:05:05 +0100 | [diff] [blame] | 264 | //config:config HUSH_COMMAND |
| 265 | //config: bool "command builtin" |
| 266 | //config: default y |
| 267 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 268 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 269 | //config:config HUSH_TRAP |
| 270 | //config: bool "trap builtin" |
| 271 | //config: default y |
| 272 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 273 | //config: |
| 274 | //config:config HUSH_TYPE |
| 275 | //config: bool "type builtin" |
| 276 | //config: default y |
| 277 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 278 | //config: |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 279 | //config:config HUSH_TIMES |
| 280 | //config: bool "times builtin" |
| 281 | //config: default y |
| 282 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 283 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 284 | //config:config HUSH_READ |
| 285 | //config: bool "read builtin" |
| 286 | //config: default y |
| 287 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 288 | //config: |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 289 | //config:config HUSH_SET |
| 290 | //config: bool "set builtin" |
| 291 | //config: default y |
| 292 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 293 | //config: |
| 294 | //config:config HUSH_UNSET |
| 295 | //config: bool "unset builtin" |
| 296 | //config: default y |
| 297 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 298 | //config: |
| 299 | //config:config HUSH_ULIMIT |
| 300 | //config: bool "ulimit builtin" |
| 301 | //config: default y |
| 302 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 303 | //config: |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 304 | //config:config HUSH_UMASK |
| 305 | //config: bool "umask builtin" |
| 306 | //config: default y |
| 307 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 308 | //config: |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 309 | //config:config HUSH_GETOPTS |
| 310 | //config: bool "getopts builtin" |
| 311 | //config: default y |
| 312 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 313 | //config: |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 314 | //config:config HUSH_MEMLEAK |
| 315 | //config: bool "memleak builtin (debugging)" |
| 316 | //config: default n |
| 317 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 318 | |
Denys Vlasenko | 20704f0 | 2011-03-23 17:59:27 +0100 | [diff] [blame] | 319 | //applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 320 | // APPLET_ODDNAME:name main location suid_type help |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 321 | //applet:IF_SH_IS_HUSH( APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush)) |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 322 | //applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush)) |
Denys Vlasenko | 20704f0 | 2011-03-23 17:59:27 +0100 | [diff] [blame] | 323 | |
| 324 | //kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 325 | //kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o |
| 326 | //kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o |
Denys Vlasenko | 20704f0 | 2011-03-23 17:59:27 +0100 | [diff] [blame] | 327 | //kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o |
| 328 | |
Dan Fandrich | 89ca2f9 | 2010-11-28 01:54:39 +0100 | [diff] [blame] | 329 | /* -i (interactive) and -s (read stdin) are also accepted, |
| 330 | * but currently do nothing, therefore aren't shown in help. |
| 331 | * NOMMU-specific options are not meant to be used by users, |
| 332 | * therefore we don't show them either. |
| 333 | */ |
| 334 | //usage:#define hush_trivial_usage |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 335 | //usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]" |
Denys Vlasenko | b0b8343 | 2011-03-07 12:34:59 +0100 | [diff] [blame] | 336 | //usage:#define hush_full_usage "\n\n" |
| 337 | //usage: "Unix shell interpreter" |
| 338 | |
Denys Vlasenko | 6704746 | 2016-12-22 15:21:58 +0100 | [diff] [blame] | 339 | #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
| 340 | || defined(__APPLE__) \ |
| 341 | ) |
| 342 | # include <malloc.h> /* for malloc_trim */ |
| 343 | #endif |
| 344 | #include <glob.h> |
| 345 | /* #include <dmalloc.h> */ |
| 346 | #if ENABLE_HUSH_CASE |
| 347 | # include <fnmatch.h> |
| 348 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 349 | #include <sys/times.h> |
Denys Vlasenko | 6704746 | 2016-12-22 15:21:58 +0100 | [diff] [blame] | 350 | #include <sys/utsname.h> /* for setting $HOSTNAME */ |
| 351 | |
| 352 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
| 353 | #include "unicode.h" |
| 354 | #include "shell_common.h" |
| 355 | #include "math.h" |
| 356 | #include "match.h" |
| 357 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 358 | # include "random.h" |
| 359 | #else |
| 360 | # define CLEAR_RANDOM_T(rnd) ((void)0) |
| 361 | #endif |
| 362 | #ifndef F_DUPFD_CLOEXEC |
| 363 | # define F_DUPFD_CLOEXEC F_DUPFD |
| 364 | #endif |
| 365 | #ifndef PIPE_BUF |
| 366 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 367 | #endif |
| 368 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 369 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 370 | /* So far, all bash compat is controlled by one config option */ |
| 371 | /* Separate defines document which part of code implements what */ |
| 372 | #define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT |
| 373 | #define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 374 | #define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT |
| 375 | #define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 376 | #define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST) |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 377 | #define BASH_READ_D ENABLE_HUSH_BASH_COMPAT |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 378 | |
| 379 | |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 380 | /* Build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 381 | #define LEAK_HUNTING 0 |
| 382 | #define BUILD_AS_NOMMU 0 |
| 383 | /* Enable/disable sanity checks. Ok to enable in production, |
| 384 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 385 | * Keeping 1 for now even in released versions. |
| 386 | */ |
| 387 | #define HUSH_DEBUG 1 |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 388 | /* Slightly bigger (+200 bytes), but faster hush. |
| 389 | * So far it only enables a trick with counting SIGCHLDs and forks, |
| 390 | * which allows us to do fewer waitpid's. |
| 391 | * (we can detect a case where neither forks were done nor SIGCHLDs happened |
| 392 | * and therefore waitpid will return the same result as last time) |
| 393 | */ |
| 394 | #define ENABLE_HUSH_FAST 0 |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 395 | /* TODO: implement simplified code for users which do not need ${var%...} ops |
| 396 | * So far ${var%...} ops are always enabled: |
| 397 | */ |
| 398 | #define ENABLE_HUSH_DOLLAR_OPS 1 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 399 | |
| 400 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 401 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 402 | # undef BB_MMU |
| 403 | # undef USE_FOR_NOMMU |
| 404 | # undef USE_FOR_MMU |
| 405 | # define BB_MMU 0 |
| 406 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 407 | # define USE_FOR_MMU(...) |
| 408 | #endif |
| 409 | |
Denys Vlasenko | 1fcbff2 | 2010-06-26 02:40:08 +0200 | [diff] [blame] | 410 | #include "NUM_APPLETS.h" |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 411 | #if NUM_APPLETS == 1 |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 412 | /* STANDALONE does not make sense, and won't compile */ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 413 | # undef CONFIG_FEATURE_SH_STANDALONE |
| 414 | # undef ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 415 | # undef IF_FEATURE_SH_STANDALONE |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 416 | # undef IF_NOT_FEATURE_SH_STANDALONE |
| 417 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 418 | # define IF_FEATURE_SH_STANDALONE(...) |
| 419 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 420 | #endif |
| 421 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 422 | #if !ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 423 | # undef ENABLE_FEATURE_EDITING |
| 424 | # define ENABLE_FEATURE_EDITING 0 |
| 425 | # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 426 | # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 427 | # undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 428 | # define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 429 | #endif |
| 430 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 431 | /* Do we support ANY keywords? */ |
| 432 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 433 | # define HAS_KEYWORDS 1 |
| 434 | # define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 435 | # define IF_HAS_NO_KEYWORDS(...) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 436 | #else |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 437 | # define HAS_KEYWORDS 0 |
| 438 | # define IF_HAS_KEYWORDS(...) |
| 439 | # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 440 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 441 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 442 | /* If you comment out one of these below, it will be #defined later |
| 443 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 444 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 445 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 446 | #define debug_printf_parse(...) do {} while (0) |
| 447 | #define debug_print_tree(a, b) do {} while (0) |
| 448 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 449 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 450 | #define debug_printf_jobs(...) do {} while (0) |
| 451 | #define debug_printf_expand(...) do {} while (0) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 452 | #define debug_printf_varexp(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 453 | #define debug_printf_glob(...) do {} while (0) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 454 | #define debug_printf_redir(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 455 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 456 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 457 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 458 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 459 | #define ERR_PTR ((void*)(long)1) |
| 460 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 461 | #define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 462 | |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 463 | #define _SPECIAL_VARS_STR "_*@$!?#" |
| 464 | #define SPECIAL_VARS_STR ("_*@$!?#" + 1) |
| 465 | #define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3) |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 466 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 467 | /* Support / and // replace ops */ |
| 468 | /* Note that // is stored as \ in "encoded" string representation */ |
| 469 | # define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?" |
| 470 | # define VAR_SUBST_OPS ("\\/%#:-=+?" + 1) |
| 471 | # define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5) |
| 472 | #else |
| 473 | # define VAR_ENCODED_SUBST_OPS "%#:-=+?" |
| 474 | # define VAR_SUBST_OPS "%#:-=+?" |
| 475 | # define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3) |
| 476 | #endif |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 477 | |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 478 | #define SPECIAL_VAR_SYMBOL_STR "\3" |
| 479 | #define SPECIAL_VAR_SYMBOL 3 |
| 480 | /* The "variable" with name "\1" emits string "\3". Testcase: "echo ^C" */ |
| 481 | #define SPECIAL_VAR_QUOTED_SVS 1 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 482 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 483 | struct variable; |
| 484 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 485 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 486 | |
| 487 | /* This supports saving pointers malloced in vfork child, |
Denis Vlasenko | c376db3 | 2009-04-15 21:49:48 +0000 | [diff] [blame] | 488 | * to be freed in the parent. |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 489 | */ |
| 490 | #if !BB_MMU |
| 491 | typedef struct nommu_save_t { |
| 492 | char **new_env; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 493 | struct variable *old_vars; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 494 | char **argv; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 495 | char **argv_from_re_execing; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 496 | } nommu_save_t; |
| 497 | #endif |
| 498 | |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 499 | enum { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 500 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 501 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 502 | RES_IF , |
| 503 | RES_THEN , |
| 504 | RES_ELIF , |
| 505 | RES_ELSE , |
| 506 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 507 | #endif |
| 508 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 509 | RES_FOR , |
| 510 | RES_WHILE , |
| 511 | RES_UNTIL , |
| 512 | RES_DO , |
| 513 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 514 | #endif |
| 515 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 516 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 517 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 518 | #if ENABLE_HUSH_CASE |
| 519 | RES_CASE , |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 520 | /* three pseudo-keywords support contrived "case" syntax: */ |
| 521 | RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */ |
| 522 | RES_MATCH , /* "word)" */ |
| 523 | RES_CASE_BODY, /* "this command is inside CASE" */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 524 | RES_ESAC , |
| 525 | #endif |
| 526 | RES_XXXX , |
| 527 | RES_SNTX |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 528 | }; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 529 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 530 | typedef struct o_string { |
| 531 | char *data; |
| 532 | int length; /* position where data is appended */ |
| 533 | int maxlen; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 534 | int o_expflags; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 535 | /* At least some part of the string was inside '' or "", |
| 536 | * possibly empty one: word"", wo''rd etc. */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 537 | smallint has_quoted_part; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 538 | smallint has_empty_slot; |
| 539 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 540 | } o_string; |
| 541 | enum { |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 542 | EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */ |
| 543 | EXP_FLAG_GLOB = 0x2, |
| 544 | /* Protect newly added chars against globbing |
| 545 | * by prepending \ to *, ?, [, \ */ |
| 546 | EXP_FLAG_ESC_GLOB_CHARS = 0x1, |
| 547 | }; |
| 548 | enum { |
| 549 | MAYBE_ASSIGNMENT = 0, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 550 | DEFINITELY_ASSIGNMENT = 1, |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 551 | NOT_ASSIGNMENT = 2, |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 552 | /* Not an assignment, but next word may be: "if v=xyz cmd;" */ |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 553 | WORD_IS_KEYWORD = 3, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 554 | }; |
| 555 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 556 | #define NULL_O_STRING { NULL } |
| 557 | |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 558 | #ifndef debug_printf_parse |
| 559 | static const char *const assignment_flag[] = { |
| 560 | "MAYBE_ASSIGNMENT", |
| 561 | "DEFINITELY_ASSIGNMENT", |
| 562 | "NOT_ASSIGNMENT", |
| 563 | "WORD_IS_KEYWORD", |
| 564 | }; |
| 565 | #endif |
| 566 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 567 | typedef struct in_str { |
| 568 | const char *p; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 569 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 570 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 571 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 572 | int peek_buf[2]; |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 573 | int last_char; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 574 | FILE *file; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 575 | } in_str; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 576 | |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 577 | /* The descrip member of this structure is only used to make |
| 578 | * debugging output pretty */ |
| 579 | static const struct { |
| 580 | int mode; |
| 581 | signed char default_fd; |
| 582 | char descrip[3]; |
| 583 | } redir_table[] = { |
| 584 | { O_RDONLY, 0, "<" }, |
| 585 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 586 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 587 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 588 | { O_RDONLY, 0, "<<" }, |
| 589 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 590 | /* { O_RDONLY, 77, "<<" }, */ |
| 591 | }; |
| 592 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 593 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 594 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 595 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 596 | int rd_fd; /* fd to redirect */ |
| 597 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 598 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 599 | smallint rd_type; /* (enum redir_type) */ |
| 600 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 601 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 602 | * bit 0: do we need to trim leading tabs? |
| 603 | * bit 1: is heredoc quoted (<<'delim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 604 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 605 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 606 | typedef enum redir_type { |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 607 | REDIRECT_INPUT = 0, |
| 608 | REDIRECT_OVERWRITE = 1, |
| 609 | REDIRECT_APPEND = 2, |
| 610 | REDIRECT_IO = 3, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 611 | REDIRECT_HEREDOC = 4, |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 612 | REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 613 | |
| 614 | REDIRFD_CLOSE = -3, |
| 615 | REDIRFD_SYNTAX_ERR = -2, |
Denis Vlasenko | 835fcfd | 2009-04-10 13:51:56 +0000 | [diff] [blame] | 616 | REDIRFD_TO_FILE = -1, |
| 617 | /* otherwise, rd_fd is redirected to rd_dup */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 618 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 619 | HEREDOC_SKIPTABS = 1, |
| 620 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 621 | } redir_type; |
| 622 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 623 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 624 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 625 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 626 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 627 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 628 | unsigned lineno; |
| 629 | #endif |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 630 | smallint cmd_type; /* CMD_xxx */ |
| 631 | #define CMD_NORMAL 0 |
| 632 | #define CMD_SUBSHELL 1 |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 633 | #if BASH_TEST2 |
Denys Vlasenko | d383b49 | 2010-09-06 10:22:13 +0200 | [diff] [blame] | 634 | /* used for "[[ EXPR ]]" */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 635 | # define CMD_SINGLEWORD_NOGLOB 2 |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 636 | #endif |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 637 | #if ENABLE_HUSH_FUNCTIONS |
| 638 | # define CMD_FUNCDEF 3 |
| 639 | #endif |
| 640 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 641 | smalluint cmd_exitcode; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 642 | /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */ |
| 643 | struct pipe *group; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 644 | #if !BB_MMU |
| 645 | char *group_as_string; |
| 646 | #endif |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 647 | #if ENABLE_HUSH_FUNCTIONS |
| 648 | struct function *child_func; |
| 649 | /* This field is used to prevent a bug here: |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 650 | * while...do f1() {a;}; f1; f1() {b;}; f1; done |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 651 | * When we execute "f1() {a;}" cmd, we create new function and clear |
| 652 | * cmd->group, cmd->group_as_string, cmd->argv[0]. |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 653 | * When we execute "f1() {b;}", we notice that f1 exists, |
| 654 | * and that its "parent cmd" struct is still "alive", |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 655 | * we put those fields back into cmd->xxx |
| 656 | * (struct function has ->parent_cmd ptr to facilitate that). |
| 657 | * When we loop back, we can execute "f1() {a;}" again and set f1 correctly. |
| 658 | * Without this trick, loop would execute a;b;b;b;... |
| 659 | * instead of correct sequence a;b;a;b;... |
| 660 | * When command is freed, it severs the link |
| 661 | * (sets ->child_func->parent_cmd to NULL). |
| 662 | */ |
| 663 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 664 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 665 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 666 | * and on execution these are substituted with their values. |
| 667 | * Substitution can make _several_ words out of one argv[n]! |
| 668 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 669 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 670 | */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 671 | struct redir_struct *redirects; /* I/O redirections */ |
| 672 | }; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 673 | /* Is there anything in this command at all? */ |
| 674 | #define IS_NULL_CMD(cmd) \ |
| 675 | (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects) |
| 676 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 677 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 678 | struct pipe *next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 679 | int num_cmds; /* total number of commands in pipe */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 680 | int alive_cmds; /* number of commands running (not exited) */ |
| 681 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 682 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 683 | unsigned jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 684 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 685 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 686 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 687 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 688 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 689 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 690 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 691 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 692 | typedef enum pipe_style { |
Denys Vlasenko | 00a06b9 | 2016-11-08 20:35:53 +0100 | [diff] [blame] | 693 | PIPE_SEQ = 0, |
| 694 | PIPE_AND = 1, |
| 695 | PIPE_OR = 2, |
| 696 | PIPE_BG = 3, |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 697 | } pipe_style; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 698 | /* Is there anything in this pipe at all? */ |
| 699 | #define IS_NULL_PIPE(pi) \ |
| 700 | ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 701 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 702 | /* This holds pointers to the various results of parsing */ |
| 703 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 704 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 705 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 706 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 707 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 708 | /* last command in pipe (being constructed right now) */ |
| 709 | struct command *command; |
| 710 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 711 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 712 | #if !BB_MMU |
| 713 | o_string as_string; |
| 714 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 715 | #if HAS_KEYWORDS |
| 716 | smallint ctx_res_w; |
| 717 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 718 | #if ENABLE_HUSH_CASE |
| 719 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 720 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 721 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 722 | int old_flag; |
| 723 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 724 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 725 | * when we see "if" or "then", we malloc and copy current context, |
| 726 | * and make ->stack point to it. then we parse pipeN. |
| 727 | * when closing "then" / fi" / whatever is found, |
| 728 | * we move list_head into ->stack->command->group, |
| 729 | * copy ->stack into current context, and delete ->stack. |
| 730 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 731 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 732 | struct parse_context *stack; |
| 733 | #endif |
| 734 | }; |
| 735 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 736 | /* On program start, environ points to initial environment. |
| 737 | * putenv adds new pointers into it, unsetenv removes them. |
| 738 | * Neither of these (de)allocates the strings. |
| 739 | * setenv allocates new strings in malloc space and does putenv, |
| 740 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 741 | #define setenv(...) setenv_is_leaky_dont_use() |
| 742 | struct variable { |
| 743 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 744 | char *varstr; /* points to "name=" portion */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 745 | #if ENABLE_HUSH_LOCAL |
| 746 | unsigned func_nest_level; |
| 747 | #endif |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 748 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 749 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 750 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 751 | }; |
| 752 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 753 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 754 | BC_BREAK = 1, |
| 755 | BC_CONTINUE = 2, |
| 756 | }; |
| 757 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 758 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 759 | struct function { |
| 760 | struct function *next; |
| 761 | char *name; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 762 | struct command *parent_cmd; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 763 | struct pipe *body; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 764 | # if !BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 765 | char *body_as_string; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 766 | # endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 767 | }; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 768 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 769 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 770 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 771 | /* set -/+o OPT support. (TODO: make it optional) |
| 772 | * bash supports the following opts: |
| 773 | * allexport off |
| 774 | * braceexpand on |
| 775 | * emacs on |
| 776 | * errexit off |
| 777 | * errtrace off |
| 778 | * functrace off |
| 779 | * hashall on |
| 780 | * histexpand off |
| 781 | * history on |
| 782 | * ignoreeof off |
| 783 | * interactive-comments on |
| 784 | * keyword off |
| 785 | * monitor on |
| 786 | * noclobber off |
| 787 | * noexec off |
| 788 | * noglob off |
| 789 | * nolog off |
| 790 | * notify off |
| 791 | * nounset off |
| 792 | * onecmd off |
| 793 | * physical off |
| 794 | * pipefail off |
| 795 | * posix off |
| 796 | * privileged off |
| 797 | * verbose off |
| 798 | * vi off |
| 799 | * xtrace off |
| 800 | */ |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 801 | static const char o_opt_strings[] ALIGN1 = |
| 802 | "pipefail\0" |
| 803 | "noexec\0" |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 804 | "errexit\0" |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 805 | #if ENABLE_HUSH_MODE_X |
| 806 | "xtrace\0" |
| 807 | #endif |
| 808 | ; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 809 | enum { |
| 810 | OPT_O_PIPEFAIL, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 811 | OPT_O_NOEXEC, |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 812 | OPT_O_ERREXIT, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 813 | #if ENABLE_HUSH_MODE_X |
| 814 | OPT_O_XTRACE, |
| 815 | #endif |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 816 | NUM_OPT_O |
| 817 | }; |
| 818 | |
| 819 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 820 | struct FILE_list { |
| 821 | struct FILE_list *next; |
| 822 | FILE *fp; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 823 | int fd; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 824 | }; |
| 825 | |
| 826 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 827 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 828 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 829 | struct globals { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 830 | /* interactive_fd != 0 means we are an interactive shell. |
| 831 | * If we are, then saved_tty_pgrp can also be != 0, meaning |
| 832 | * that controlling tty is available. With saved_tty_pgrp == 0, |
| 833 | * job control still works, but terminal signals |
| 834 | * (^C, ^Z, ^Y, ^\) won't work at all, and background |
| 835 | * process groups can only be created with "cmd &". |
| 836 | * With saved_tty_pgrp != 0, hush will use tcsetpgrp() |
| 837 | * to give tty to the foreground process group, |
| 838 | * and will take it back when the group is stopped (^Z) |
| 839 | * or killed (^C). |
| 840 | */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 841 | #if ENABLE_HUSH_INTERACTIVE |
| 842 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 843 | * _AND_ if we decided to act interactively */ |
| 844 | int interactive_fd; |
| 845 | const char *PS1; |
| 846 | const char *PS2; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 847 | # define G_interactive_fd (G.interactive_fd) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 848 | #else |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 849 | # define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 850 | #endif |
| 851 | #if ENABLE_FEATURE_EDITING |
| 852 | line_input_t *line_input_state; |
| 853 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 854 | pid_t root_pid; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 855 | pid_t root_ppid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 856 | pid_t last_bg_pid; |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 857 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 858 | random_t random_gen; |
| 859 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 860 | #if ENABLE_HUSH_JOB |
| 861 | int run_list_level; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 862 | unsigned last_jobid; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 863 | pid_t saved_tty_pgrp; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 864 | struct pipe *job_list; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 865 | # define G_saved_tty_pgrp (G.saved_tty_pgrp) |
| 866 | #else |
| 867 | # define G_saved_tty_pgrp 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 868 | #endif |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 869 | /* How deeply are we in context where "set -e" is ignored */ |
| 870 | int errexit_depth; |
| 871 | /* "set -e" rules (do we follow them correctly?): |
| 872 | * Exit if pipe, list, or compound command exits with a non-zero status. |
| 873 | * Shell does not exit if failed command is part of condition in |
| 874 | * if/while, part of && or || list except the last command, any command |
| 875 | * in a pipe but the last, or if the command's return value is being |
| 876 | * inverted with !. If a compound command other than a subshell returns a |
| 877 | * non-zero status because a command failed while -e was being ignored, the |
| 878 | * shell does not exit. A trap on ERR, if set, is executed before the shell |
| 879 | * exits [ERR is a bashism]. |
| 880 | * |
| 881 | * If a compound command or function executes in a context where -e is |
| 882 | * ignored, none of the commands executed within are affected by the -e |
| 883 | * setting. If a compound command or function sets -e while executing in a |
| 884 | * context where -e is ignored, that setting does not have any effect until |
| 885 | * the compound command or the command containing the function call completes. |
| 886 | */ |
| 887 | |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 888 | char o_opt[NUM_OPT_O]; |
Denys Vlasenko | 57542eb | 2010-11-28 03:59:30 +0100 | [diff] [blame] | 889 | #if ENABLE_HUSH_MODE_X |
| 890 | # define G_x_mode (G.o_opt[OPT_O_XTRACE]) |
| 891 | #else |
| 892 | # define G_x_mode 0 |
| 893 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 894 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 895 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 896 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 897 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 898 | #if ENABLE_HUSH_FUNCTIONS |
| 899 | /* 0: outside of a function (or sourced file) |
| 900 | * -1: inside of a function, ok to use return builtin |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 901 | * 1: return is invoked, skip all till end of func |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 902 | */ |
| 903 | smallint flag_return_in_progress; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 904 | # define G_flag_return_in_progress (G.flag_return_in_progress) |
| 905 | #else |
| 906 | # define G_flag_return_in_progress 0 |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 907 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 908 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 909 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 910 | smalluint last_exitcode; |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 911 | smalluint last_bg_pid_exitcode; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 912 | #if ENABLE_HUSH_SET |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 913 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 914 | smalluint global_args_malloced; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 915 | # define G_global_args_malloced (G.global_args_malloced) |
| 916 | #else |
| 917 | # define G_global_args_malloced 0 |
| 918 | #endif |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 919 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 920 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 921 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 922 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 923 | char *argv0_for_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 924 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 925 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 926 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 927 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 928 | #endif |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 929 | #if ENABLE_HUSH_GETOPTS |
| 930 | unsigned getopt_count; |
| 931 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 932 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 933 | const char *cwd; |
Denys Vlasenko | 52e460b | 2010-09-16 16:12:00 +0200 | [diff] [blame] | 934 | struct variable *top_var; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 935 | char **expanded_assignments; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 936 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 937 | struct function *top_func; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 938 | # if ENABLE_HUSH_LOCAL |
| 939 | struct variable **shadowed_vars_pp; |
| 940 | unsigned func_nest_level; |
| 941 | # endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 942 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 943 | /* Signal and trap handling */ |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 944 | #if ENABLE_HUSH_FAST |
| 945 | unsigned count_SIGCHLD; |
| 946 | unsigned handled_SIGCHLD; |
Denys Vlasenko | e2df5f4 | 2009-05-26 14:34:10 +0200 | [diff] [blame] | 947 | smallint we_have_children; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 948 | #endif |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 949 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 950 | unsigned lineno; |
| 951 | char *lineno_var; |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 952 | #endif |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 953 | struct FILE_list *FILE_list; |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 954 | /* Which signals have non-DFL handler (even with no traps set)? |
| 955 | * Set at the start to: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 956 | * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS) |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 957 | * SPECIAL_INTERACTIVE_SIGS are cleared after fork. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 958 | * The rest is cleared right before execv syscalls. |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 959 | * Other than these two times, never modified. |
| 960 | */ |
| 961 | unsigned special_sig_mask; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 962 | #if ENABLE_HUSH_JOB |
| 963 | unsigned fatal_sig_mask; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 964 | # define G_fatal_sig_mask (G.fatal_sig_mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 965 | #else |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 966 | # define G_fatal_sig_mask 0 |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 967 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 968 | #if ENABLE_HUSH_TRAP |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 969 | char **traps; /* char *traps[NSIG] */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 970 | # define G_traps G.traps |
| 971 | #else |
| 972 | # define G_traps ((char**)NULL) |
| 973 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 974 | sigset_t pending_set; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 975 | #if ENABLE_HUSH_MEMLEAK |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 976 | unsigned long memleak_value; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 977 | #endif |
| 978 | #if HUSH_DEBUG |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 979 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 980 | #endif |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 981 | struct sigaction sa; |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 982 | #if ENABLE_FEATURE_EDITING |
| 983 | char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN]; |
| 984 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 985 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 986 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 987 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 988 | * (too many defines). Also, I actually prefer to see when a variable |
| 989 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 990 | #define INIT_G() do { \ |
| 991 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 992 | /* memset(&G.sa, 0, sizeof(G.sa)); */ \ |
| 993 | sigfillset(&G.sa.sa_mask); \ |
| 994 | G.sa.sa_flags = SA_RESTART; \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 995 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 996 | |
| 997 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 998 | /* Function prototypes for builtins */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 999 | static int builtin_cd(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1000 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1001 | static int builtin_echo(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1002 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1003 | static int builtin_eval(char **argv) FAST_FUNC; |
| 1004 | static int builtin_exec(char **argv) FAST_FUNC; |
| 1005 | static int builtin_exit(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1006 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1007 | static int builtin_export(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1008 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 1009 | #if ENABLE_HUSH_READONLY |
| 1010 | static int builtin_readonly(char **argv) FAST_FUNC; |
| 1011 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1012 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1013 | static int builtin_fg_bg(char **argv) FAST_FUNC; |
| 1014 | static int builtin_jobs(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1015 | #endif |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 1016 | #if ENABLE_HUSH_GETOPTS |
| 1017 | static int builtin_getopts(char **argv) FAST_FUNC; |
| 1018 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1019 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1020 | static int builtin_help(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1021 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 1022 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 1023 | static int builtin_history(char **argv) FAST_FUNC; |
| 1024 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1025 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1026 | static int builtin_local(char **argv) FAST_FUNC; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1027 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 1028 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1029 | static int builtin_memleak(char **argv) FAST_FUNC; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 1030 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1031 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 1032 | static int builtin_printf(char **argv) FAST_FUNC; |
| 1033 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1034 | static int builtin_pwd(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1035 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1036 | static int builtin_read(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1037 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1038 | #if ENABLE_HUSH_SET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1039 | static int builtin_set(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1040 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1041 | static int builtin_shift(char **argv) FAST_FUNC; |
| 1042 | static int builtin_source(char **argv) FAST_FUNC; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1043 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1044 | static int builtin_test(char **argv) FAST_FUNC; |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1045 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1046 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1047 | static int builtin_trap(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1048 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1049 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1050 | static int builtin_type(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1051 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 1052 | #if ENABLE_HUSH_TIMES |
| 1053 | static int builtin_times(char **argv) FAST_FUNC; |
| 1054 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1055 | static int builtin_true(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1056 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1057 | static int builtin_umask(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1058 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1059 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1060 | static int builtin_unset(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1061 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1062 | #if ENABLE_HUSH_KILL |
| 1063 | static int builtin_kill(char **argv) FAST_FUNC; |
| 1064 | #endif |
| 1065 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1066 | static int builtin_wait(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1067 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1068 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1069 | static int builtin_break(char **argv) FAST_FUNC; |
| 1070 | static int builtin_continue(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1071 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1072 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1073 | static int builtin_return(char **argv) FAST_FUNC; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1074 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1075 | |
| 1076 | /* Table of built-in functions. They can be forked or not, depending on |
| 1077 | * context: within pipes, they fork. As simple commands, they do not. |
| 1078 | * When used in non-forking context, they can change global variables |
| 1079 | * in the parent shell process. If forked, of course they cannot. |
| 1080 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 1081 | * still be set at the end. */ |
| 1082 | struct built_in_command { |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1083 | const char *b_cmd; |
| 1084 | int (*b_function)(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1085 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1086 | const char *b_descr; |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1087 | # define BLTIN(cmd, func, help) { cmd, func, help } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1088 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1089 | # define BLTIN(cmd, func, help) { cmd, func } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1090 | #endif |
| 1091 | }; |
| 1092 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1093 | static const struct built_in_command bltins1[] = { |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1094 | BLTIN("." , builtin_source , "Run commands in file"), |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1095 | BLTIN(":" , builtin_true , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1096 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1097 | BLTIN("bg" , builtin_fg_bg , "Resume job in background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1098 | #endif |
| 1099 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1100 | BLTIN("break" , builtin_break , "Exit loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1101 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1102 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1103 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1104 | BLTIN("continue" , builtin_continue, "Start new loop iteration"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1105 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1106 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 1107 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1108 | BLTIN("exit" , builtin_exit , NULL), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1109 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1110 | BLTIN("export" , builtin_export , "Set environment variables"), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1111 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1112 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1113 | BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1114 | #endif |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 1115 | #if ENABLE_HUSH_GETOPTS |
| 1116 | BLTIN("getopts" , builtin_getopts , NULL), |
| 1117 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1118 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1119 | BLTIN("help" , builtin_help , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1120 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 1121 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1122 | BLTIN("history" , builtin_history , "Show history"), |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 1123 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1124 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1125 | BLTIN("jobs" , builtin_jobs , "List jobs"), |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1126 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1127 | #if ENABLE_HUSH_KILL |
| 1128 | BLTIN("kill" , builtin_kill , "Send signals to processes"), |
| 1129 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1130 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1131 | BLTIN("local" , builtin_local , "Set local variables"), |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1132 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 1133 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1134 | BLTIN("memleak" , builtin_memleak , NULL), |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 1135 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1136 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1137 | BLTIN("read" , builtin_read , "Input into variable"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1138 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 1139 | #if ENABLE_HUSH_READONLY |
| 1140 | BLTIN("readonly" , builtin_readonly, "Make variables read-only"), |
| 1141 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1142 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1143 | BLTIN("return" , builtin_return , "Return from function"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1144 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1145 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1146 | BLTIN("set" , builtin_set , "Set positional parameters"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1147 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1148 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1149 | #if BASH_SOURCE |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1150 | BLTIN("source" , builtin_source , NULL), |
Denys Vlasenko | 82731b4 | 2010-05-17 17:49:52 +0200 | [diff] [blame] | 1151 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 1152 | #if ENABLE_HUSH_TIMES |
| 1153 | BLTIN("times" , builtin_times , NULL), |
| 1154 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1155 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1156 | BLTIN("trap" , builtin_trap , "Trap signals"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1157 | #endif |
Denys Vlasenko | 2bba591 | 2014-03-14 12:43:57 +0100 | [diff] [blame] | 1158 | BLTIN("true" , builtin_true , NULL), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1159 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 1160 | BLTIN("type" , builtin_type , "Show command type"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1161 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1162 | #if ENABLE_HUSH_ULIMIT |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1163 | BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1164 | #endif |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1165 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1166 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1167 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1168 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1169 | BLTIN("unset" , builtin_unset , "Unset variables"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1170 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1171 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1172 | BLTIN("wait" , builtin_wait , "Wait for process to finish"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1173 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1174 | }; |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1175 | /* These builtins won't be used if we are on NOMMU and need to re-exec |
| 1176 | * (it's cheaper to run an external program in this case): |
| 1177 | */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1178 | static const struct built_in_command bltins2[] = { |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1179 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1180 | BLTIN("[" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1181 | #endif |
Denys Vlasenko | 8944c67 | 2017-01-11 14:22:00 +0100 | [diff] [blame] | 1182 | #if BASH_TEST2 |
| 1183 | BLTIN("[[" , builtin_test , NULL), |
| 1184 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1185 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1186 | BLTIN("echo" , builtin_echo , NULL), |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1187 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1188 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 1189 | BLTIN("printf" , builtin_printf , NULL), |
| 1190 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1191 | BLTIN("pwd" , builtin_pwd , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1192 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1193 | BLTIN("test" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1194 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1195 | }; |
| 1196 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 1197 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1198 | /* Debug printouts. |
| 1199 | */ |
| 1200 | #if HUSH_DEBUG |
| 1201 | /* prevent disasters with G.debug_indent < 0 */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1202 | # define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "") |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1203 | # define debug_enter() (G.debug_indent++) |
| 1204 | # define debug_leave() (G.debug_indent--) |
| 1205 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1206 | # define indent() ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1207 | # define debug_enter() ((void)0) |
| 1208 | # define debug_leave() ((void)0) |
| 1209 | #endif |
| 1210 | |
| 1211 | #ifndef debug_printf |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1212 | # define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1213 | #endif |
| 1214 | |
| 1215 | #ifndef debug_printf_parse |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1216 | # define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1217 | #endif |
| 1218 | |
| 1219 | #ifndef debug_printf_exec |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1220 | #define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1221 | #endif |
| 1222 | |
| 1223 | #ifndef debug_printf_env |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1224 | # define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1225 | #endif |
| 1226 | |
| 1227 | #ifndef debug_printf_jobs |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1228 | # define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1229 | # define DEBUG_JOBS 1 |
| 1230 | #else |
| 1231 | # define DEBUG_JOBS 0 |
| 1232 | #endif |
| 1233 | |
| 1234 | #ifndef debug_printf_expand |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1235 | # define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1236 | # define DEBUG_EXPAND 1 |
| 1237 | #else |
| 1238 | # define DEBUG_EXPAND 0 |
| 1239 | #endif |
| 1240 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1241 | #ifndef debug_printf_varexp |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1242 | # define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1243 | #endif |
| 1244 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1245 | #ifndef debug_printf_glob |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1246 | # define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1247 | # define DEBUG_GLOB 1 |
| 1248 | #else |
| 1249 | # define DEBUG_GLOB 0 |
| 1250 | #endif |
| 1251 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1252 | #ifndef debug_printf_redir |
| 1253 | # define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__)) |
| 1254 | #endif |
| 1255 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1256 | #ifndef debug_printf_list |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1257 | # define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1258 | #endif |
| 1259 | |
| 1260 | #ifndef debug_printf_subst |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1261 | # define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1262 | #endif |
| 1263 | |
| 1264 | #ifndef debug_printf_clean |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1265 | # define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1266 | # define DEBUG_CLEAN 1 |
| 1267 | #else |
| 1268 | # define DEBUG_CLEAN 0 |
| 1269 | #endif |
| 1270 | |
| 1271 | #if DEBUG_EXPAND |
| 1272 | static void debug_print_strings(const char *prefix, char **vv) |
| 1273 | { |
| 1274 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1275 | fdprintf(2, "%s:\n", prefix); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1276 | while (*vv) |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1277 | fdprintf(2, " '%s'\n", *vv++); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1278 | } |
| 1279 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1280 | # define debug_print_strings(prefix, vv) ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1281 | #endif |
| 1282 | |
| 1283 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1284 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 1285 | */ |
| 1286 | #if LEAK_HUNTING |
| 1287 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1288 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1289 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 1290 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 1291 | return ptr; |
| 1292 | } |
| 1293 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 1294 | { |
| 1295 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 1296 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 1297 | return ptr; |
| 1298 | } |
| 1299 | static char *xxstrdup(int lineno, const char *str) |
| 1300 | { |
| 1301 | char *ptr = xstrdup(str); |
| 1302 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 1303 | return ptr; |
| 1304 | } |
| 1305 | static void xxfree(void *ptr) |
| 1306 | { |
| 1307 | fdprintf(2, "free %p\n", ptr); |
| 1308 | free(ptr); |
| 1309 | } |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1310 | # define xmalloc(s) xxmalloc(__LINE__, s) |
| 1311 | # define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 1312 | # define xstrdup(s) xxstrdup(__LINE__, s) |
| 1313 | # define free(p) xxfree(p) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1314 | #endif |
| 1315 | |
| 1316 | |
| 1317 | /* Syntax and runtime errors. They always abort scripts. |
| 1318 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 1319 | * and return to the prompt. |
| 1320 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 1321 | */ |
| 1322 | #if HUSH_DEBUG < 2 |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1323 | # define msg_and_die_if_script(lineno, ...) msg_and_die_if_script(__VA_ARGS__) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1324 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 1325 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 1326 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 1327 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 1328 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1329 | #endif |
| 1330 | |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1331 | static void die_if_script(void) |
| 1332 | { |
| 1333 | if (!G_interactive_fd) { |
| 1334 | if (G.last_exitcode) /* sometines it's 2, not 1 (bash compat) */ |
| 1335 | xfunc_error_retval = G.last_exitcode; |
| 1336 | xfunc_die(); |
| 1337 | } |
| 1338 | } |
| 1339 | |
| 1340 | static void msg_and_die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1341 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1342 | va_list p; |
| 1343 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1344 | #if HUSH_DEBUG >= 2 |
| 1345 | bb_error_msg("hush.c:%u", lineno); |
| 1346 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1347 | va_start(p, fmt); |
| 1348 | bb_verror_msg(fmt, p, NULL); |
| 1349 | va_end(p); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1350 | die_if_script(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1351 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1352 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1353 | static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1354 | { |
| 1355 | if (msg) |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1356 | bb_error_msg("syntax error: %s", msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1357 | else |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1358 | bb_error_msg("syntax error"); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1359 | die_if_script(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1362 | static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1363 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1364 | bb_error_msg("syntax error at '%s'", msg); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1365 | die_if_script(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1368 | static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s) |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1369 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1370 | bb_error_msg("syntax error: unterminated %s", s); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1371 | //? source4.tests fails: in bash, echo ${^} in script does not terminate the script |
| 1372 | // die_if_script(); |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1373 | } |
| 1374 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1375 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1376 | { |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1377 | char msg[2] = { ch, '\0' }; |
| 1378 | syntax_error_unterm_str(lineno, msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1379 | } |
| 1380 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1381 | static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1382 | { |
| 1383 | char msg[2]; |
| 1384 | msg[0] = ch; |
| 1385 | msg[1] = '\0'; |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 1386 | #if HUSH_DEBUG >= 2 |
| 1387 | bb_error_msg("hush.c:%u", lineno); |
| 1388 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1389 | bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1390 | die_if_script(); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1393 | #if HUSH_DEBUG < 2 |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1394 | # undef msg_and_die_if_script |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1395 | # undef syntax_error |
| 1396 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1397 | # undef syntax_error_unterm_ch |
| 1398 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1399 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1400 | #else |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1401 | # define msg_and_die_if_script(...) msg_and_die_if_script(__LINE__, __VA_ARGS__) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1402 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 1403 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 1404 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 1405 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 1406 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1407 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1408 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1409 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1410 | #if ENABLE_HUSH_INTERACTIVE |
| 1411 | static void cmdedit_update_prompt(void); |
| 1412 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1413 | # define cmdedit_update_prompt() ((void)0) |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1414 | #endif |
| 1415 | |
| 1416 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1417 | /* Utility functions |
| 1418 | */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1419 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 1420 | static char *unbackslash(char *src) |
| 1421 | { |
Denys Vlasenko | 7188540 | 2009-09-24 01:44:13 +0200 | [diff] [blame] | 1422 | char *dst = src = strchrnul(src, '\\'); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1423 | while (1) { |
| 1424 | if (*src == '\\') |
| 1425 | src++; |
| 1426 | if ((*dst++ = *src++) == '\0') |
| 1427 | break; |
| 1428 | } |
| 1429 | return dst; |
| 1430 | } |
| 1431 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1432 | 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] | 1433 | { |
| 1434 | int i; |
| 1435 | unsigned count1; |
| 1436 | unsigned count2; |
| 1437 | char **v; |
| 1438 | |
| 1439 | v = strings; |
| 1440 | count1 = 0; |
| 1441 | if (v) { |
| 1442 | while (*v) { |
| 1443 | count1++; |
| 1444 | v++; |
| 1445 | } |
| 1446 | } |
| 1447 | count2 = 0; |
| 1448 | v = add; |
| 1449 | while (*v) { |
| 1450 | count2++; |
| 1451 | v++; |
| 1452 | } |
| 1453 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 1454 | v[count1 + count2] = NULL; |
| 1455 | i = count2; |
| 1456 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1457 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1458 | return v; |
| 1459 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1460 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1461 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 1462 | { |
| 1463 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 1464 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 1465 | return ptr; |
| 1466 | } |
| 1467 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 1468 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 1469 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1470 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1471 | /* Note: takes ownership of "add" ptr (it is not strdup'ed) */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1472 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1473 | { |
| 1474 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1475 | v[0] = add; |
| 1476 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1477 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1478 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1479 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1480 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 1481 | { |
| 1482 | char **ptr = add_string_to_strings(strings, add); |
| 1483 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 1484 | return ptr; |
| 1485 | } |
| 1486 | #define add_string_to_strings(strings, add) \ |
| 1487 | xx_add_string_to_strings(__LINE__, strings, add) |
| 1488 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1489 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1490 | static void free_strings(char **strings) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1491 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1492 | char **v; |
| 1493 | |
| 1494 | if (!strings) |
| 1495 | return; |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1496 | v = strings; |
| 1497 | while (*v) { |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1498 | free(*v); |
| 1499 | v++; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1500 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1501 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 1504 | static int dup_CLOEXEC(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1505 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1506 | int newfd; |
| 1507 | repeat: |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 1508 | newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); |
| 1509 | if (newfd >= 0) { |
| 1510 | if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ |
| 1511 | fcntl(newfd, F_SETFD, FD_CLOEXEC); |
| 1512 | } else { /* newfd < 0 */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1513 | if (errno == EBUSY) |
| 1514 | goto repeat; |
| 1515 | if (errno == EINTR) |
| 1516 | goto repeat; |
| 1517 | } |
| 1518 | return newfd; |
| 1519 | } |
| 1520 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1521 | static int xdup_CLOEXEC_and_close(int fd, int avoid_fd) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1522 | { |
| 1523 | int newfd; |
| 1524 | repeat: |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1525 | newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1526 | if (newfd < 0) { |
| 1527 | if (errno == EBUSY) |
| 1528 | goto repeat; |
| 1529 | if (errno == EINTR) |
| 1530 | goto repeat; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1531 | /* fd was not open? */ |
| 1532 | if (errno == EBADF) |
| 1533 | return fd; |
| 1534 | xfunc_die(); |
| 1535 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1536 | if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ |
| 1537 | fcntl(newfd, F_SETFD, FD_CLOEXEC); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1538 | close(fd); |
| 1539 | return newfd; |
| 1540 | } |
| 1541 | |
| 1542 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1543 | /* Manipulating the list of open FILEs */ |
| 1544 | static FILE *remember_FILE(FILE *fp) |
| 1545 | { |
| 1546 | if (fp) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1547 | struct FILE_list *n = xmalloc(sizeof(*n)); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1548 | n->next = G.FILE_list; |
| 1549 | G.FILE_list = n; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1550 | n->fp = fp; |
| 1551 | n->fd = fileno(fp); |
| 1552 | close_on_exec_on(n->fd); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1553 | } |
| 1554 | return fp; |
| 1555 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1556 | static void fclose_and_forget(FILE *fp) |
| 1557 | { |
| 1558 | struct FILE_list **pp = &G.FILE_list; |
| 1559 | while (*pp) { |
| 1560 | struct FILE_list *cur = *pp; |
| 1561 | if (cur->fp == fp) { |
| 1562 | *pp = cur->next; |
| 1563 | free(cur); |
| 1564 | break; |
| 1565 | } |
| 1566 | pp = &cur->next; |
| 1567 | } |
| 1568 | fclose(fp); |
| 1569 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1570 | static int save_FILEs_on_redirect(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1571 | { |
| 1572 | struct FILE_list *fl = G.FILE_list; |
| 1573 | while (fl) { |
| 1574 | if (fd == fl->fd) { |
| 1575 | /* We use it only on script files, they are all CLOEXEC */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1576 | fl->fd = xdup_CLOEXEC_and_close(fd, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1577 | debug_printf_redir("redirect_fd %d: matches a script fd, moving it to %d\n", fd, fl->fd); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1578 | return 1; |
| 1579 | } |
| 1580 | fl = fl->next; |
| 1581 | } |
| 1582 | return 0; |
| 1583 | } |
| 1584 | static void restore_redirected_FILEs(void) |
| 1585 | { |
| 1586 | struct FILE_list *fl = G.FILE_list; |
| 1587 | while (fl) { |
| 1588 | int should_be = fileno(fl->fp); |
| 1589 | if (fl->fd != should_be) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1590 | debug_printf_redir("restoring script fd from %d to %d\n", fl->fd, should_be); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1591 | xmove_fd(fl->fd, should_be); |
| 1592 | fl->fd = should_be; |
| 1593 | } |
| 1594 | fl = fl->next; |
| 1595 | } |
| 1596 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 1597 | #if ENABLE_FEATURE_SH_STANDALONE && BB_MMU |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1598 | static void close_all_FILE_list(void) |
| 1599 | { |
| 1600 | struct FILE_list *fl = G.FILE_list; |
| 1601 | while (fl) { |
| 1602 | /* fclose would also free FILE object. |
| 1603 | * It is disastrous if we share memory with a vforked parent. |
| 1604 | * I'm not sure we never come here after vfork. |
| 1605 | * Therefore just close fd, nothing more. |
| 1606 | */ |
| 1607 | /*fclose(fl->fp); - unsafe */ |
| 1608 | close(fl->fd); |
| 1609 | fl = fl->next; |
| 1610 | } |
| 1611 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1612 | #endif |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 1613 | static int fd_in_FILEs(int fd) |
| 1614 | { |
| 1615 | struct FILE_list *fl = G.FILE_list; |
| 1616 | while (fl) { |
| 1617 | if (fl->fd == fd) |
| 1618 | return 1; |
| 1619 | fl = fl->next; |
| 1620 | } |
| 1621 | return 0; |
| 1622 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1623 | |
| 1624 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1625 | /* Helpers for setting new $n and restoring them back |
| 1626 | */ |
| 1627 | typedef struct save_arg_t { |
| 1628 | char *sv_argv0; |
| 1629 | char **sv_g_argv; |
| 1630 | int sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1631 | IF_HUSH_SET(smallint sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1632 | } save_arg_t; |
| 1633 | |
| 1634 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 1635 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1636 | sv->sv_argv0 = argv[0]; |
| 1637 | sv->sv_g_argv = G.global_argv; |
| 1638 | sv->sv_g_argc = G.global_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1639 | IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1640 | |
| 1641 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 1642 | G.global_argv = argv; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1643 | IF_HUSH_SET(G.global_args_malloced = 0;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1644 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 1645 | G.global_argc = 1 + string_array_len(argv + 1); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1646 | } |
| 1647 | |
| 1648 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 1649 | { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1650 | #if ENABLE_HUSH_SET |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1651 | if (G.global_args_malloced) { |
| 1652 | /* someone ran "set -- arg1 arg2 ...", undo */ |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1653 | char **pp = G.global_argv; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1654 | while (*++pp) /* note: does not free $0 */ |
| 1655 | free(*pp); |
| 1656 | free(G.global_argv); |
| 1657 | } |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1658 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1659 | argv[0] = sv->sv_argv0; |
| 1660 | G.global_argv = sv->sv_g_argv; |
| 1661 | G.global_argc = sv->sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1662 | IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1666 | /* Basic theory of signal handling in shell |
| 1667 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1668 | * This does not describe what hush does, rather, it is current understanding |
| 1669 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1670 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 1671 | * |
| 1672 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 1673 | * is finished or backgrounded. It is the same in interactive and |
| 1674 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1675 | * a user trap handler is installed or a shell special one is in effect. |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 1676 | * ^C or ^Z from keyboard seems to execute "at once" because it usually |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1677 | * backgrounds (i.e. stops) or kills all members of currently running |
| 1678 | * pipe. |
| 1679 | * |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1680 | * Wait builtin is interruptible by signals for which user trap is set |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1681 | * or by SIGINT in interactive shell. |
| 1682 | * |
| 1683 | * Trap handlers will execute even within trap handlers. (right?) |
| 1684 | * |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1685 | * User trap handlers are forgotten when subshell ("(cmd)") is entered, |
| 1686 | * except for handlers set to '' (empty string). |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1687 | * |
| 1688 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1689 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1690 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1691 | * Commands which are run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1692 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1693 | * |
Denys Vlasenko | 4b7db4f | 2009-05-29 10:39:06 +0200 | [diff] [blame] | 1694 | * Ordinary commands have signals set to SIG_IGN/DFL as inherited |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1695 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1696 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1697 | * Signals which differ from SIG_DFL action |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1698 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1699 | * |
| 1700 | * SIGQUIT: ignore |
| 1701 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1702 | * SIGHUP (interactive): |
| 1703 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1704 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1705 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1706 | * that all pipe members are stopped. Try this in bash: |
| 1707 | * while :; do :; done - ^Z does not background it |
| 1708 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1709 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1710 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1711 | * to interactive shell while shell is waiting for a pipe, |
| 1712 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1713 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1714 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1715 | * Example 2: this does not wait and does not execute ls: |
| 1716 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1717 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1718 | * "sleep 5; ls -l" + press ^C |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1719 | * Example 4: this does not wait and does not execute ls: |
| 1720 | * "sleep 5 & wait; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1721 | * |
| 1722 | * (What happens to signals which are IGN on shell start?) |
| 1723 | * (What happens with signal mask on shell start?) |
| 1724 | * |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1725 | * Old implementation |
| 1726 | * ================== |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1727 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1728 | * We block all signals which we don't want to take action immediately, |
| 1729 | * i.e. we block all signals which need to have special handling as described |
| 1730 | * above, and all signals which have traps set. |
| 1731 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1732 | * and act on them. |
| 1733 | * |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1734 | * unsigned special_sig_mask: a mask of such "special" signals |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1735 | * sigset_t blocked_set: current blocked signal set |
| 1736 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1737 | * "trap - SIGxxx": |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1738 | * clear bit in blocked_set unless it is also in special_sig_mask |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1739 | * "trap 'cmd' SIGxxx": |
| 1740 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1741 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1742 | * unblock signals with special interactive handling |
| 1743 | * (child shell is not interactive), |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1744 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1745 | * after [v]fork, if we plan to exec: |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 1746 | * POSIX says fork clears pending signal mask in child - no need to clear it. |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1747 | * 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] | 1748 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1749 | * Note: as a result, we do not use signal handlers much. The only uses |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1750 | * are to count SIGCHLDs |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1751 | * and to restore tty pgrp on signal-induced exit. |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1752 | * |
Denys Vlasenko | 67f7186 | 2009-09-25 14:21:06 +0200 | [diff] [blame] | 1753 | * Note 2 (compat): |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1754 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1755 | * are set to the default actions". bash interprets it so that traps which |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1756 | * are set to '' (ignore) are NOT reset to defaults. We do the same. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1757 | * |
| 1758 | * Problem: the above approach makes it unwieldy to catch signals while |
Denys Vlasenko | e95738f | 2013-07-08 03:13:08 +0200 | [diff] [blame] | 1759 | * we are in read builtin, or while we read commands from stdin: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1760 | * masked signals are not visible! |
| 1761 | * |
| 1762 | * New implementation |
| 1763 | * ================== |
| 1764 | * We record each signal we are interested in by installing signal handler |
| 1765 | * for them - a bit like emulating kernel pending signal mask in userspace. |
| 1766 | * We are interested in: signals which need to have special handling |
| 1767 | * as described above, and all signals which have traps set. |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1768 | * Signals are recorded in pending_set. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1769 | * After each pipe execution, we extract any pending signals |
| 1770 | * and act on them. |
| 1771 | * |
| 1772 | * unsigned special_sig_mask: a mask of shell-special signals. |
| 1773 | * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp. |
| 1774 | * char *traps[sig] if trap for sig is set (even if it's ''). |
| 1775 | * sigset_t pending_set: set of sigs we received. |
| 1776 | * |
| 1777 | * "trap - SIGxxx": |
| 1778 | * if sig is in special_sig_mask, set handler back to: |
| 1779 | * record_pending_signo, or to IGN if it's a tty stop signal |
| 1780 | * if sig is in fatal_sig_mask, set handler back to sigexit. |
| 1781 | * else: set handler back to SIG_DFL |
| 1782 | * "trap 'cmd' SIGxxx": |
| 1783 | * set handler to record_pending_signo. |
| 1784 | * "trap '' SIGxxx": |
| 1785 | * set handler to SIG_IGN. |
| 1786 | * after [v]fork, if we plan to be a shell: |
| 1787 | * set signals with special interactive handling to SIG_DFL |
| 1788 | * (because child shell is not interactive), |
| 1789 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
| 1790 | * after [v]fork, if we plan to exec: |
| 1791 | * POSIX says fork clears pending signal mask in child - no need to clear it. |
| 1792 | * |
| 1793 | * To make wait builtin interruptible, we handle SIGCHLD as special signal, |
| 1794 | * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it. |
| 1795 | * |
| 1796 | * Note (compat): |
| 1797 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1798 | * are set to the default actions". bash interprets it so that traps which |
| 1799 | * are set to '' (ignore) are NOT reset to defaults. We do the same. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1800 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1801 | enum { |
| 1802 | SPECIAL_INTERACTIVE_SIGS = 0 |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1803 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1804 | | (1 << SIGINT) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1805 | | (1 << SIGHUP) |
| 1806 | , |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1807 | SPECIAL_JOBSTOP_SIGS = 0 |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1808 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1809 | | (1 << SIGTTIN) |
| 1810 | | (1 << SIGTTOU) |
| 1811 | | (1 << SIGTSTP) |
| 1812 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1813 | , |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1814 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1815 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1816 | static void record_pending_signo(int sig) |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 1817 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1818 | sigaddset(&G.pending_set, sig); |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1819 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1820 | if (sig == SIGCHLD) { |
| 1821 | G.count_SIGCHLD++; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1822 | //bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1823 | } |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1824 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1825 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1826 | |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 1827 | static sighandler_t install_sighandler(int sig, sighandler_t handler) |
| 1828 | { |
| 1829 | struct sigaction old_sa; |
| 1830 | |
| 1831 | /* We could use signal() to install handlers... almost: |
| 1832 | * except that we need to mask ALL signals while handlers run. |
| 1833 | * I saw signal nesting in strace, race window isn't small. |
| 1834 | * SA_RESTART is also needed, but in Linux, signal() |
| 1835 | * sets SA_RESTART too. |
| 1836 | */ |
| 1837 | /* memset(&G.sa, 0, sizeof(G.sa)); - already done */ |
| 1838 | /* sigfillset(&G.sa.sa_mask); - already done */ |
| 1839 | /* G.sa.sa_flags = SA_RESTART; - already done */ |
| 1840 | G.sa.sa_handler = handler; |
| 1841 | sigaction(sig, &G.sa, &old_sa); |
| 1842 | return old_sa.sa_handler; |
| 1843 | } |
| 1844 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1845 | static void hush_exit(int exitcode) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1846 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1847 | static void restore_ttypgrp_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1848 | static void restore_ttypgrp_and__exit(void) |
| 1849 | { |
| 1850 | /* xfunc has failed! die die die */ |
| 1851 | /* no EXIT traps, this is an escape hatch! */ |
| 1852 | G.exiting = 1; |
| 1853 | hush_exit(xfunc_error_retval); |
| 1854 | } |
| 1855 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1856 | #if ENABLE_HUSH_JOB |
| 1857 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1858 | /* Needed only on some libc: |
| 1859 | * It was observed that on exit(), fgetc'ed buffered data |
| 1860 | * gets "unwound" via lseek(fd, -NUM, SEEK_CUR). |
| 1861 | * With the net effect that even after fork(), not vfork(), |
| 1862 | * exit() in NOEXECed applet in "sh SCRIPT": |
| 1863 | * noexec_applet_here |
| 1864 | * echo END_OF_SCRIPT |
| 1865 | * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT". |
| 1866 | * This makes "echo END_OF_SCRIPT" executed twice. |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1867 | * Similar problems can be seen with msg_and_die_if_script() -> xfunc_die() |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1868 | * and in `cmd` handling. |
| 1869 | * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit(): |
| 1870 | */ |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1871 | static void fflush_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1872 | static void fflush_and__exit(void) |
| 1873 | { |
| 1874 | fflush_all(); |
| 1875 | _exit(xfunc_error_retval); |
| 1876 | } |
| 1877 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1878 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1879 | # define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1880 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1881 | # define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1882 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1883 | /* Restores tty foreground process group, and exits. |
| 1884 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1885 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1886 | * or called directly with -EXITCODE. |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1887 | * We also call it if xfunc is exiting. |
| 1888 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1889 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1890 | static void sigexit(int sig) |
| 1891 | { |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1892 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1893 | * tty pgrp then, only top-level shell process does that */ |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1894 | if (G_saved_tty_pgrp && getpid() == G.root_pid) { |
| 1895 | /* Disable all signals: job control, SIGPIPE, etc. |
| 1896 | * Mostly paranoid measure, to prevent infinite SIGTTOU. |
| 1897 | */ |
| 1898 | sigprocmask_allsigs(SIG_BLOCK); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1899 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1900 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1901 | |
| 1902 | /* Not a signal, just exit */ |
| 1903 | if (sig <= 0) |
| 1904 | _exit(- sig); |
| 1905 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1906 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1907 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1908 | #else |
| 1909 | |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1910 | # define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1911 | # define enable_restore_tty_pgrp_on_exit() ((void)0) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1912 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1913 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1914 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1915 | static sighandler_t pick_sighandler(unsigned sig) |
| 1916 | { |
| 1917 | sighandler_t handler = SIG_DFL; |
| 1918 | if (sig < sizeof(unsigned)*8) { |
| 1919 | unsigned sigmask = (1 << sig); |
| 1920 | |
| 1921 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1922 | /* is sig fatal? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1923 | if (G_fatal_sig_mask & sigmask) |
| 1924 | handler = sigexit; |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1925 | else |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1926 | #endif |
| 1927 | /* sig has special handling? */ |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1928 | if (G.special_sig_mask & sigmask) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1929 | handler = record_pending_signo; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1930 | /* TTIN/TTOU/TSTP can't be set to record_pending_signo |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1931 | * in order to ignore them: they will be raised |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 1932 | * in an endless loop when we try to do some |
| 1933 | * terminal ioctls! We do have to _ignore_ these. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1934 | */ |
| 1935 | if (SPECIAL_JOBSTOP_SIGS & sigmask) |
| 1936 | handler = SIG_IGN; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1937 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1938 | } |
| 1939 | return handler; |
| 1940 | } |
| 1941 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1942 | /* Restores tty foreground process group, and exits. */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1943 | static void hush_exit(int exitcode) |
| 1944 | { |
Denys Vlasenko | bede215 | 2011-09-04 16:12:33 +0200 | [diff] [blame] | 1945 | #if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 1946 | save_history(G.line_input_state); |
| 1947 | #endif |
| 1948 | |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 1949 | fflush_all(); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1950 | if (G.exiting <= 0 && G_traps && G_traps[0] && G_traps[0][0]) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 1951 | char *argv[3]; |
| 1952 | /* argv[0] is unused */ |
Denys Vlasenko | 46f839c | 2018-01-19 16:58:44 +0100 | [diff] [blame] | 1953 | argv[1] = xstrdup(G_traps[0]); /* copy, since EXIT trap handler may modify G_traps[0] */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 1954 | argv[2] = NULL; |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 1955 | G.exiting = 1; /* prevent EXIT trap recursion */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1956 | /* Note: G_traps[0] is not cleared! |
Denys Vlasenko | de8c3f6 | 2010-09-12 16:13:44 +0200 | [diff] [blame] | 1957 | * "trap" will still show it, if executed |
| 1958 | * in the handler */ |
| 1959 | builtin_eval(argv); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1960 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1961 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1962 | #if ENABLE_FEATURE_CLEAN_UP |
| 1963 | { |
| 1964 | struct variable *cur_var; |
| 1965 | if (G.cwd != bb_msg_unknown) |
| 1966 | free((char*)G.cwd); |
| 1967 | cur_var = G.top_var; |
| 1968 | while (cur_var) { |
| 1969 | struct variable *tmp = cur_var; |
| 1970 | if (!cur_var->max_len) |
| 1971 | free(cur_var->varstr); |
| 1972 | cur_var = cur_var->next; |
| 1973 | free(tmp); |
| 1974 | } |
| 1975 | } |
| 1976 | #endif |
| 1977 | |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 1978 | fflush_all(); |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1979 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1980 | sigexit(- (exitcode & 0xff)); |
| 1981 | #else |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1982 | _exit(exitcode); |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1983 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 1986 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1987 | //TODO: return a mask of ALL handled sigs? |
| 1988 | static int check_and_run_traps(void) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1989 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1990 | int last_sig = 0; |
| 1991 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1992 | while (1) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1993 | int sig; |
Denys Vlasenko | 80542ba | 2011-05-08 21:23:43 +0200 | [diff] [blame] | 1994 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1995 | if (sigisemptyset(&G.pending_set)) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1996 | break; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1997 | sig = 0; |
| 1998 | do { |
| 1999 | sig++; |
| 2000 | if (sigismember(&G.pending_set, sig)) { |
| 2001 | sigdelset(&G.pending_set, sig); |
| 2002 | goto got_sig; |
| 2003 | } |
| 2004 | } while (sig < NSIG); |
| 2005 | break; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2006 | got_sig: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 2007 | if (G_traps && G_traps[sig]) { |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2008 | debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 2009 | if (G_traps[sig][0]) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2010 | /* We have user-defined handler */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2011 | smalluint save_rcode; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2012 | char *argv[3]; |
| 2013 | /* argv[0] is unused */ |
Denys Vlasenko | 749575d | 2018-01-30 04:29:03 +0100 | [diff] [blame] | 2014 | argv[1] = xstrdup(G_traps[sig]); |
| 2015 | /* why strdup? trap can modify itself: trap 'trap "echo oops" INT' INT */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2016 | argv[2] = NULL; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2017 | save_rcode = G.last_exitcode; |
| 2018 | builtin_eval(argv); |
Denys Vlasenko | 749575d | 2018-01-30 04:29:03 +0100 | [diff] [blame] | 2019 | free(argv[1]); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2020 | //FIXME: shouldn't it be set to 128 + sig instead? |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2021 | G.last_exitcode = save_rcode; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2022 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2023 | } /* else: "" trap, ignoring signal */ |
| 2024 | continue; |
| 2025 | } |
| 2026 | /* not a trap: special action */ |
| 2027 | switch (sig) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2028 | case SIGINT: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2029 | debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2030 | G.flag_SIGINT = 1; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2031 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2032 | break; |
| 2033 | #if ENABLE_HUSH_JOB |
| 2034 | case SIGHUP: { |
Denys Vlasenko | 49e6bf2 | 2017-08-04 14:28:16 +0200 | [diff] [blame] | 2035 | //TODO: why are we doing this? ash and dash don't do this, |
| 2036 | //they have no handler for SIGHUP at all, |
| 2037 | //they rely on kernel to send SIGHUP+SIGCONT to orphaned process groups |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2038 | struct pipe *job; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2039 | debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2040 | /* bash is observed to signal whole process groups, |
| 2041 | * not individual processes */ |
| 2042 | for (job = G.job_list; job; job = job->next) { |
| 2043 | if (job->pgrp <= 0) |
| 2044 | continue; |
| 2045 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 2046 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 2047 | kill(- job->pgrp, SIGCONT); |
| 2048 | } |
| 2049 | sigexit(SIGHUP); |
| 2050 | } |
| 2051 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2052 | #if ENABLE_HUSH_FAST |
| 2053 | case SIGCHLD: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2054 | debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2055 | G.count_SIGCHLD++; |
| 2056 | //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 2057 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2058 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2059 | * This simplifies wait builtin a bit. |
| 2060 | */ |
| 2061 | break; |
| 2062 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2063 | default: /* ignored: */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2064 | debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2065 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2066 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2067 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2068 | * Example: wait is not interrupted by TERM |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2069 | * in interactive shell, because TERM is ignored. |
| 2070 | */ |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2071 | break; |
| 2072 | } |
| 2073 | } |
| 2074 | return last_sig; |
| 2075 | } |
| 2076 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2077 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2078 | static const char *get_cwd(int force) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2079 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2080 | if (force || G.cwd == NULL) { |
| 2081 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 2082 | * we must not try to free(bb_msg_unknown) */ |
| 2083 | if (G.cwd == bb_msg_unknown) |
| 2084 | G.cwd = NULL; |
| 2085 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 2086 | if (!G.cwd) |
| 2087 | G.cwd = bb_msg_unknown; |
| 2088 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2089 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2090 | } |
| 2091 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 2092 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2093 | /* |
| 2094 | * Shell and environment variable support |
| 2095 | */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2096 | static struct variable **get_ptr_to_local_var(const char *name, unsigned len) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2097 | { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2098 | struct variable **pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2099 | struct variable *cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2100 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2101 | pp = &G.top_var; |
| 2102 | while ((cur = *pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2103 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2104 | return pp; |
| 2105 | pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2106 | } |
| 2107 | return NULL; |
| 2108 | } |
| 2109 | |
Denys Vlasenko | 03dad22 | 2010-01-12 23:29:57 +0100 | [diff] [blame] | 2110 | static const char* FAST_FUNC get_local_var_value(const char *name) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2111 | { |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2112 | struct variable **vpp; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2113 | unsigned len = strlen(name); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2114 | |
| 2115 | if (G.expanded_assignments) { |
| 2116 | char **cpp = G.expanded_assignments; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2117 | while (*cpp) { |
| 2118 | char *cp = *cpp; |
| 2119 | if (strncmp(cp, name, len) == 0 && cp[len] == '=') |
| 2120 | return cp + len + 1; |
| 2121 | cpp++; |
| 2122 | } |
| 2123 | } |
| 2124 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2125 | vpp = get_ptr_to_local_var(name, len); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2126 | if (vpp) |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2127 | return (*vpp)->varstr + len + 1; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2128 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 2129 | if (strcmp(name, "PPID") == 0) |
| 2130 | return utoa(G.root_ppid); |
| 2131 | // bash compat: UID? EUID? |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2132 | #if ENABLE_HUSH_RANDOM_SUPPORT |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2133 | if (strcmp(name, "RANDOM") == 0) |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2134 | return utoa(next_random(&G.random_gen)); |
| 2135 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2136 | return NULL; |
| 2137 | } |
| 2138 | |
| 2139 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2140 | * We take ownership of it. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2141 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2142 | #define SETFLAG_EXPORT (1 << 0) |
| 2143 | #define SETFLAG_UNEXPORT (1 << 1) |
| 2144 | #define SETFLAG_MAKE_RO (1 << 2) |
| 2145 | #define SETFLAG_LOCAL_SHIFT 3 |
| 2146 | static int set_local_var(char *str, unsigned flags) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2147 | { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2148 | struct variable **var_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2149 | struct variable *cur; |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2150 | char *free_me = NULL; |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2151 | char *eq_sign; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2152 | int name_len; |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2153 | IF_HUSH_LOCAL(unsigned local_lvl = (flags >> SETFLAG_LOCAL_SHIFT);) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2154 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2155 | eq_sign = strchr(str, '='); |
| 2156 | if (!eq_sign) { /* not expected to ever happen? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2157 | free(str); |
| 2158 | return -1; |
| 2159 | } |
| 2160 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2161 | name_len = eq_sign - str + 1; /* including '=' */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2162 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2163 | if (G.lineno_var) { |
| 2164 | if (name_len == 7 && strncmp("LINENO", str, 6) == 0) |
| 2165 | G.lineno_var = NULL; |
| 2166 | } |
| 2167 | #endif |
| 2168 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2169 | var_pp = &G.top_var; |
| 2170 | while ((cur = *var_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2171 | if (strncmp(cur->varstr, str, name_len) != 0) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2172 | var_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2173 | continue; |
| 2174 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2175 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2176 | /* We found an existing var with this name */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2177 | if (cur->flg_read_only) { |
Denys Vlasenko | 6b48e1f | 2017-07-17 21:31:17 +0200 | [diff] [blame] | 2178 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2179 | free(str); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2180 | //NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1, |
| 2181 | //but export per se succeeds (does put the var in env). We don't mimic that. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2182 | return -1; |
| 2183 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2184 | if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ? |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2185 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 2186 | *eq_sign = '\0'; |
| 2187 | unsetenv(str); |
| 2188 | *eq_sign = '='; |
| 2189 | } |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2190 | #if ENABLE_HUSH_LOCAL |
| 2191 | if (cur->func_nest_level < local_lvl) { |
| 2192 | /* New variable is declared as local, |
| 2193 | * and existing one is global, or local |
| 2194 | * from enclosing function. |
| 2195 | * Remove and save old one: */ |
| 2196 | *var_pp = cur->next; |
| 2197 | cur->next = *G.shadowed_vars_pp; |
| 2198 | *G.shadowed_vars_pp = cur; |
| 2199 | /* bash 3.2.33(1) and exported vars: |
| 2200 | * # export z=z |
| 2201 | * # f() { local z=a; env | grep ^z; } |
| 2202 | * # f |
| 2203 | * z=a |
| 2204 | * # env | grep ^z |
| 2205 | * z=z |
| 2206 | */ |
| 2207 | if (cur->flg_export) |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2208 | flags |= SETFLAG_EXPORT; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2209 | break; |
| 2210 | } |
| 2211 | #endif |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2212 | if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2213 | free_and_exp: |
| 2214 | free(str); |
| 2215 | goto exp; |
| 2216 | } |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2217 | if (cur->max_len != 0) { |
| 2218 | if (cur->max_len >= strlen(str)) { |
| 2219 | /* This one is from startup env, reuse space */ |
| 2220 | strcpy(cur->varstr, str); |
| 2221 | goto free_and_exp; |
| 2222 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2223 | /* Can't reuse */ |
| 2224 | cur->max_len = 0; |
| 2225 | goto set_str_and_exp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2226 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2227 | /* max_len == 0 signifies "malloced" var, which we can |
| 2228 | * (and have to) free. But we can't free(cur->varstr) here: |
| 2229 | * if cur->flg_export is 1, it is in the environment. |
| 2230 | * We should either unsetenv+free, or wait until putenv, |
| 2231 | * then putenv(new)+free(old). |
| 2232 | */ |
| 2233 | free_me = cur->varstr; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2234 | goto set_str_and_exp; |
| 2235 | } |
| 2236 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2237 | /* Not found - create new variable struct */ |
| 2238 | cur = xzalloc(sizeof(*cur)); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2239 | IF_HUSH_LOCAL(cur->func_nest_level = local_lvl;) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2240 | cur->next = *var_pp; |
| 2241 | *var_pp = cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2242 | |
| 2243 | set_str_and_exp: |
| 2244 | cur->varstr = str; |
| 2245 | exp: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2246 | #if !BB_MMU || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2247 | if (flags & SETFLAG_MAKE_RO) { |
| 2248 | cur->flg_read_only = 1; |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2249 | } |
| 2250 | #endif |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2251 | if (flags & SETFLAG_EXPORT) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2252 | cur->flg_export = 1; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2253 | if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 2254 | cmdedit_update_prompt(); |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 2255 | #if ENABLE_HUSH_GETOPTS |
Denys Vlasenko | 55af51c | 2017-08-29 13:48:49 +0200 | [diff] [blame] | 2256 | /* defoptindvar is a "OPTIND=..." constant string */ |
| 2257 | if (strncmp(cur->varstr, defoptindvar, 7) == 0) |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 2258 | G.getopt_count = 0; |
| 2259 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2260 | if (cur->flg_export) { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2261 | if (flags & SETFLAG_UNEXPORT) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2262 | cur->flg_export = 0; |
| 2263 | /* unsetenv was already done */ |
| 2264 | } else { |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2265 | int i; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2266 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2267 | i = putenv(cur->varstr); |
| 2268 | /* only now we can free old exported malloced string */ |
| 2269 | free(free_me); |
| 2270 | return i; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2271 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2272 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2273 | free(free_me); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2274 | return 0; |
| 2275 | } |
| 2276 | |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2277 | /* Used at startup and after each cd */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2278 | static void set_pwd_var(unsigned flag) |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2279 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2280 | set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2281 | } |
| 2282 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2283 | static int unset_local_var_len(const char *name, int name_len) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2284 | { |
| 2285 | struct variable *cur; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2286 | struct variable **var_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2287 | |
| 2288 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2289 | return EXIT_SUCCESS; |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2290 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 2291 | #if ENABLE_HUSH_GETOPTS |
| 2292 | if (name_len == 6 && strncmp(name, "OPTIND", 6) == 0) |
| 2293 | G.getopt_count = 0; |
| 2294 | #endif |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2295 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2296 | if (name_len == 6 && G.lineno_var && strncmp(name, "LINENO", 6) == 0) |
| 2297 | G.lineno_var = NULL; |
| 2298 | #endif |
| 2299 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2300 | var_pp = &G.top_var; |
| 2301 | while ((cur = *var_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2302 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 2303 | if (cur->flg_read_only) { |
| 2304 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2305 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2306 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2307 | *var_pp = cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2308 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 2309 | bb_unsetenv(cur->varstr); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2310 | if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 2311 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2312 | if (!cur->max_len) |
| 2313 | free(cur->varstr); |
| 2314 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2315 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2316 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2317 | var_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2318 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2319 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2320 | } |
| 2321 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 2322 | #if ENABLE_HUSH_UNSET || ENABLE_HUSH_GETOPTS |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2323 | static int unset_local_var(const char *name) |
| 2324 | { |
| 2325 | return unset_local_var_len(name, strlen(name)); |
| 2326 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 2327 | #endif |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2328 | |
| 2329 | static void unset_vars(char **strings) |
| 2330 | { |
| 2331 | char **v; |
| 2332 | |
| 2333 | if (!strings) |
| 2334 | return; |
| 2335 | v = strings; |
| 2336 | while (*v) { |
| 2337 | const char *eq = strchrnul(*v, '='); |
| 2338 | unset_local_var_len(*v, (int)(eq - *v)); |
| 2339 | v++; |
| 2340 | } |
| 2341 | free(strings); |
| 2342 | } |
| 2343 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 2344 | #if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ || ENABLE_HUSH_GETOPTS |
Denys Vlasenko | 03dad22 | 2010-01-12 23:29:57 +0100 | [diff] [blame] | 2345 | static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2346 | { |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2347 | char *var = xasprintf("%s=%s", name, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2348 | set_local_var(var, /*flag:*/ 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2349 | } |
Denys Vlasenko | cc2fd5a | 2017-01-09 06:19:55 +0100 | [diff] [blame] | 2350 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2351 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2352 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2353 | /* |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2354 | * Helpers for "var1=val1 var2=val2 cmd" feature |
| 2355 | */ |
| 2356 | static void add_vars(struct variable *var) |
| 2357 | { |
| 2358 | struct variable *next; |
| 2359 | |
| 2360 | while (var) { |
| 2361 | next = var->next; |
| 2362 | var->next = G.top_var; |
| 2363 | G.top_var = var; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2364 | if (var->flg_export) { |
| 2365 | debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2366 | putenv(var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2367 | } else { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2368 | debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2369 | } |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2370 | var = next; |
| 2371 | } |
| 2372 | } |
| 2373 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2374 | static struct variable *set_vars_and_save_old(char **strings) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2375 | { |
| 2376 | char **s; |
| 2377 | struct variable *old = NULL; |
| 2378 | |
| 2379 | if (!strings) |
| 2380 | return old; |
| 2381 | s = strings; |
| 2382 | while (*s) { |
| 2383 | struct variable *var_p; |
| 2384 | struct variable **var_pp; |
| 2385 | char *eq; |
| 2386 | |
| 2387 | eq = strchr(*s, '='); |
| 2388 | if (eq) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2389 | var_pp = get_ptr_to_local_var(*s, eq - *s); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2390 | if (var_pp) { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2391 | var_p = *var_pp; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2392 | if (var_p->flg_read_only) { |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2393 | char **p; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2394 | bb_error_msg("%s: readonly variable", *s); |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2395 | /* |
| 2396 | * "VAR=V BLTIN" unsets VARs after BLTIN completes. |
| 2397 | * If VAR is readonly, leaving it in the list |
| 2398 | * after asssignment error (msg above) |
| 2399 | * causes doubled error message later, on unset. |
| 2400 | */ |
| 2401 | debug_printf_env("removing/freeing '%s' element\n", *s); |
| 2402 | free(*s); |
| 2403 | p = s; |
| 2404 | do { *p = p[1]; p++; } while (*p); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2405 | goto next; |
| 2406 | } |
| 2407 | /* Remove variable from global linked list */ |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2408 | debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2409 | *var_pp = var_p->next; |
| 2410 | /* Add it to returned list */ |
| 2411 | var_p->next = old; |
| 2412 | old = var_p; |
| 2413 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2414 | set_local_var(*s, SETFLAG_EXPORT); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2415 | } |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2416 | next: |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2417 | s++; |
| 2418 | } |
| 2419 | return old; |
| 2420 | } |
| 2421 | |
| 2422 | |
| 2423 | /* |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2424 | * Unicode helper |
| 2425 | */ |
| 2426 | static void reinit_unicode_for_hush(void) |
| 2427 | { |
| 2428 | /* Unicode support should be activated even if LANG is set |
| 2429 | * _during_ shell execution, not only if it was set when |
| 2430 | * shell was started. Therefore, re-check LANG every time: |
| 2431 | */ |
Denys Vlasenko | 841f833 | 2014-08-13 10:09:49 +0200 | [diff] [blame] | 2432 | if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV |
| 2433 | || ENABLE_UNICODE_USING_LOCALE |
| 2434 | ) { |
| 2435 | const char *s = get_local_var_value("LC_ALL"); |
| 2436 | if (!s) s = get_local_var_value("LC_CTYPE"); |
| 2437 | if (!s) s = get_local_var_value("LANG"); |
| 2438 | reinit_unicode(s); |
| 2439 | } |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2440 | } |
| 2441 | |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2442 | /* |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2443 | * in_str support (strings, and "strings" read from files). |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2444 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2445 | |
| 2446 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2447 | /* To test correct lineedit/interactive behavior, type from command line: |
| 2448 | * echo $P\ |
| 2449 | * \ |
| 2450 | * AT\ |
| 2451 | * H\ |
| 2452 | * \ |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2453 | * It exercises a lot of corner cases. |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2454 | */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2455 | static void cmdedit_update_prompt(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2456 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2457 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2458 | G.PS1 = get_local_var_value("PS1"); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2459 | if (G.PS1 == NULL) |
| 2460 | G.PS1 = "\\w \\$ "; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2461 | G.PS2 = get_local_var_value("PS2"); |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 2462 | } else { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2463 | G.PS1 = NULL; |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 2464 | } |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2465 | if (G.PS2 == NULL) |
| 2466 | G.PS2 = "> "; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2467 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2468 | static const char *setup_prompt_string(int promptmode) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2469 | { |
| 2470 | const char *prompt_str; |
| 2471 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2472 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 2473 | /* Set up the prompt */ |
| 2474 | if (promptmode == 0) { /* PS1 */ |
| 2475 | free((char*)G.PS1); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2476 | /* bash uses $PWD value, even if it is set by user. |
| 2477 | * It uses current dir only if PWD is unset. |
| 2478 | * We always use current dir. */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2479 | G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#'); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2480 | prompt_str = G.PS1; |
| 2481 | } else |
| 2482 | prompt_str = G.PS2; |
| 2483 | } else |
| 2484 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2485 | debug_printf("prompt_str '%s'\n", prompt_str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2486 | return prompt_str; |
| 2487 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2488 | static int get_user_input(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2489 | { |
| 2490 | int r; |
| 2491 | const char *prompt_str; |
| 2492 | |
| 2493 | prompt_str = setup_prompt_string(i->promptmode); |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2494 | # if ENABLE_FEATURE_EDITING |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2495 | for (;;) { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2496 | reinit_unicode_for_hush(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2497 | if (G.flag_SIGINT) { |
| 2498 | /* There was ^C'ed, make it look prettier: */ |
| 2499 | bb_putchar('\n'); |
| 2500 | G.flag_SIGINT = 0; |
| 2501 | } |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2502 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2503 | * only after <Enter>. (^C works immediately) */ |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 2504 | r = read_line_input(G.line_input_state, prompt_str, |
Denys Vlasenko | 84ea60e | 2017-08-02 17:27:28 +0200 | [diff] [blame] | 2505 | G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1 |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 2506 | ); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2507 | /* read_line_input intercepts ^C, "convert" it to SIGINT */ |
Denys Vlasenko | dd4b446 | 2017-08-02 16:52:12 +0200 | [diff] [blame] | 2508 | if (r == 0) |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2509 | raise(SIGINT); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2510 | check_and_run_traps(); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2511 | if (r != 0 && !G.flag_SIGINT) |
| 2512 | break; |
| 2513 | /* ^C or SIGINT: repeat */ |
Denys Vlasenko | dd4b446 | 2017-08-02 16:52:12 +0200 | [diff] [blame] | 2514 | /* bash prints ^C even on real SIGINT (non-kbd generated) */ |
| 2515 | write(STDOUT_FILENO, "^C", 2); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2516 | G.last_exitcode = 128 + SIGINT; |
| 2517 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2518 | if (r < 0) { |
| 2519 | /* EOF/error detected */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2520 | i->p = NULL; |
| 2521 | i->peek_buf[0] = r = EOF; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2522 | return r; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2523 | } |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2524 | i->p = G.user_input_buf; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2525 | return (unsigned char)*i->p++; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2526 | # else |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2527 | for (;;) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2528 | G.flag_SIGINT = 0; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2529 | if (i->last_char == '\0' || i->last_char == '\n') { |
| 2530 | /* Why check_and_run_traps here? Try this interactively: |
| 2531 | * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) & |
| 2532 | * $ <[enter], repeatedly...> |
| 2533 | * Without check_and_run_traps, handler never runs. |
| 2534 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2535 | check_and_run_traps(); |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2536 | fputs(prompt_str, stdout); |
| 2537 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 2538 | fflush_all(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2539 | //FIXME: here ^C or SIGINT will have effect only after <Enter> |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2540 | r = fgetc(i->file); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2541 | /* In !ENABLE_FEATURE_EDITING we don't use read_line_input, |
| 2542 | * no ^C masking happens during fgetc, no special code for ^C: |
| 2543 | * it generates SIGINT as usual. |
| 2544 | */ |
| 2545 | check_and_run_traps(); |
| 2546 | if (G.flag_SIGINT) |
| 2547 | G.last_exitcode = 128 + SIGINT; |
| 2548 | if (r != '\0') |
| 2549 | break; |
| 2550 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2551 | return r; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2552 | # endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2553 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2554 | /* This is the magic location that prints prompts |
| 2555 | * and gets data back from the user */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2556 | static int fgetc_interactive(struct in_str *i) |
| 2557 | { |
| 2558 | int ch; |
| 2559 | /* If it's interactive stdin, get new line. */ |
| 2560 | if (G_interactive_fd && i->file == stdin) { |
| 2561 | /* Returns first char (or EOF), the rest is in i->p[] */ |
| 2562 | ch = get_user_input(i); |
| 2563 | i->promptmode = 1; /* PS2 */ |
| 2564 | } else { |
| 2565 | /* Not stdin: script file, sourced file, etc */ |
| 2566 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2567 | } |
| 2568 | return ch; |
| 2569 | } |
| 2570 | #else |
| 2571 | static inline int fgetc_interactive(struct in_str *i) |
| 2572 | { |
| 2573 | int ch; |
| 2574 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2575 | return ch; |
| 2576 | } |
| 2577 | #endif /* INTERACTIVE */ |
| 2578 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2579 | static int i_getch(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2580 | { |
| 2581 | int ch; |
| 2582 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2583 | if (!i->file) { |
| 2584 | /* string-based in_str */ |
| 2585 | ch = (unsigned char)*i->p; |
| 2586 | if (ch != '\0') { |
| 2587 | i->p++; |
| 2588 | i->last_char = ch; |
| 2589 | return ch; |
| 2590 | } |
| 2591 | return EOF; |
| 2592 | } |
| 2593 | |
| 2594 | /* FILE-based in_str */ |
| 2595 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2596 | #if ENABLE_FEATURE_EDITING |
| 2597 | /* This can be stdin, check line editing char[] buffer */ |
| 2598 | if (i->p && *i->p != '\0') { |
| 2599 | ch = (unsigned char)*i->p++; |
| 2600 | goto out; |
| 2601 | } |
| 2602 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2603 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2604 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2605 | if (ch != 0) { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2606 | int ch2 = i->peek_buf[1]; |
| 2607 | i->peek_buf[0] = ch2; |
| 2608 | if (ch2 == 0) /* very likely, avoid redundant write */ |
| 2609 | goto out; |
| 2610 | i->peek_buf[1] = 0; |
| 2611 | goto out; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2612 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2613 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2614 | ch = fgetc_interactive(i); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2615 | out: |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 2616 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 2617 | i->last_char = ch; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2618 | #if ENABLE_HUSH_LINENO_VAR |
| 2619 | if (ch == '\n') { |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2620 | G.lineno++; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2621 | debug_printf_parse("G.lineno++ = %u\n", G.lineno); |
| 2622 | } |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2623 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2624 | return ch; |
| 2625 | } |
| 2626 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2627 | static int i_peek(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2628 | { |
| 2629 | int ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2630 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2631 | if (!i->file) { |
| 2632 | /* string-based in_str */ |
| 2633 | /* Doesn't report EOF on NUL. None of the callers care. */ |
| 2634 | return (unsigned char)*i->p; |
| 2635 | } |
| 2636 | |
| 2637 | /* FILE-based in_str */ |
| 2638 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2639 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2640 | /* This can be stdin, check line editing char[] buffer */ |
| 2641 | if (i->p && *i->p != '\0') |
| 2642 | return (unsigned char)*i->p; |
| 2643 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2644 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2645 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2646 | if (ch != 0) |
| 2647 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2648 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2649 | /* Need to get a new char */ |
| 2650 | ch = fgetc_interactive(i); |
| 2651 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
| 2652 | |
| 2653 | /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */ |
| 2654 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
| 2655 | if (i->p) { |
| 2656 | i->p -= 1; |
| 2657 | return ch; |
| 2658 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2659 | #endif |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2660 | i->peek_buf[0] = ch; |
| 2661 | /*i->peek_buf[1] = 0; - already is */ |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2662 | return ch; |
| 2663 | } |
| 2664 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2665 | /* Only ever called if i_peek() was called, and did not return EOF. |
| 2666 | * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL, |
| 2667 | * not end-of-line. Therefore we never need to read a new editing line here. |
| 2668 | */ |
| 2669 | static int i_peek2(struct in_str *i) |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2670 | { |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2671 | int ch; |
| 2672 | |
| 2673 | /* There are two cases when i->p[] buffer exists. |
| 2674 | * (1) it's a string in_str. |
Denys Vlasenko | 08755f9 | 2016-09-30 02:02:25 +0200 | [diff] [blame] | 2675 | * (2) It's a file, and we have a saved line editing buffer. |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2676 | * In both cases, we know that i->p[0] exists and not NUL, and |
| 2677 | * the peek2 result is in i->p[1]. |
| 2678 | */ |
| 2679 | if (i->p) |
| 2680 | return (unsigned char)i->p[1]; |
| 2681 | |
| 2682 | /* Now we know it is a file-based in_str. */ |
| 2683 | |
| 2684 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2685 | /* Is there 2nd char? */ |
| 2686 | ch = i->peek_buf[1]; |
| 2687 | if (ch == 0) { |
| 2688 | /* We did not read it yet, get it now */ |
| 2689 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2690 | i->peek_buf[1] = ch; |
| 2691 | } |
| 2692 | |
| 2693 | debug_printf("file_peek2: got '%c' %d\n", ch, ch); |
| 2694 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2695 | } |
| 2696 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2697 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 2698 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2699 | memset(i, 0, sizeof(*i)); |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2700 | /* i->promptmode = 0; - PS1 (memset did it) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2701 | i->file = f; |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2702 | /* i->p = NULL; */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2703 | } |
| 2704 | |
| 2705 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 2706 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2707 | memset(i, 0, sizeof(*i)); |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2708 | /* i->promptmode = 0; - PS1 (memset did it) */ |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2709 | /*i->file = NULL */; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2710 | i->p = s; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2711 | } |
| 2712 | |
| 2713 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2714 | /* |
| 2715 | * o_string support |
| 2716 | */ |
| 2717 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2718 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 2719 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2720 | { |
| 2721 | o->length = 0; |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2722 | o->has_quoted_part = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2723 | if (o->data) |
| 2724 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2725 | } |
| 2726 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2727 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2728 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 2729 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2730 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2731 | } |
| 2732 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2733 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 2734 | { |
| 2735 | free(o->data); |
| 2736 | } |
| 2737 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2738 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2739 | { |
| 2740 | if (o->length + len > o->maxlen) { |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2741 | o->maxlen += (2 * len) | (B_CHUNK-1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2742 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 2743 | } |
| 2744 | } |
| 2745 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2746 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2747 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2748 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2749 | if (o->length < o->maxlen) { |
| 2750 | /* likely. avoid o_grow_by() call */ |
| 2751 | add: |
| 2752 | o->data[o->length] = ch; |
| 2753 | o->length++; |
| 2754 | o->data[o->length] = '\0'; |
| 2755 | return; |
| 2756 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2757 | o_grow_by(o, 1); |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2758 | goto add; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2759 | } |
| 2760 | |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 2761 | #if 0 |
| 2762 | /* Valid only if we know o_string is not empty */ |
| 2763 | static void o_delchr(o_string *o) |
| 2764 | { |
| 2765 | o->length--; |
| 2766 | o->data[o->length] = '\0'; |
| 2767 | } |
| 2768 | #endif |
| 2769 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2770 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2771 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2772 | o_grow_by(o, len); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 2773 | ((char*)mempcpy(&o->data[o->length], str, len))[0] = '\0'; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2774 | o->length += len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2775 | } |
| 2776 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2777 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2778 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2779 | o_addblock(o, str, strlen(str)); |
| 2780 | } |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 2781 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 2782 | #if !BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2783 | static void nommu_addchr(o_string *o, int ch) |
| 2784 | { |
| 2785 | if (o) |
| 2786 | o_addchr(o, ch); |
| 2787 | } |
| 2788 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 2789 | # define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2790 | #endif |
| 2791 | |
| 2792 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 2793 | { |
| 2794 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2795 | } |
| 2796 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2797 | /* |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 2798 | * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side. |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2799 | * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v. |
| 2800 | * Apparently, on unquoted $v bash still does globbing |
| 2801 | * ("v='*.txt'; echo $v" prints all .txt files), |
| 2802 | * but NOT brace expansion! Thus, there should be TWO independent |
| 2803 | * quoting mechanisms on $v expansion side: one protects |
| 2804 | * $v from brace expansion, and other additionally protects "$v" against globbing. |
| 2805 | * We have only second one. |
| 2806 | */ |
| 2807 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 2808 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2809 | # define MAYBE_BRACES "{}" |
| 2810 | #else |
| 2811 | # define MAYBE_BRACES "" |
| 2812 | #endif |
| 2813 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2814 | /* My analysis of quoting semantics tells me that state information |
| 2815 | * is associated with a destination, not a source. |
| 2816 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2817 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2818 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2819 | int sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2820 | char *found = strchr("*?[\\" MAYBE_BRACES, ch); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2821 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2822 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2823 | o_grow_by(o, sz); |
| 2824 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2825 | o->data[o->length] = '\\'; |
| 2826 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2827 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2828 | o->data[o->length] = ch; |
| 2829 | o->length++; |
| 2830 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2831 | } |
| 2832 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2833 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2834 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2835 | int sz = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2836 | if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS) |
| 2837 | && strchr("*?[\\" MAYBE_BRACES, ch) |
| 2838 | ) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2839 | sz++; |
| 2840 | o->data[o->length] = '\\'; |
| 2841 | o->length++; |
| 2842 | } |
| 2843 | o_grow_by(o, sz); |
| 2844 | o->data[o->length] = ch; |
| 2845 | o->length++; |
| 2846 | o->data[o->length] = '\0'; |
| 2847 | } |
| 2848 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2849 | static void o_addqblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2850 | { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2851 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2852 | char ch; |
| 2853 | int sz; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2854 | int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2855 | if (ordinary_cnt > len) /* paranoia */ |
| 2856 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2857 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2858 | if (ordinary_cnt == len) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2859 | return; /* NUL is already added by o_addblock */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2860 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 2861 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2862 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2863 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2864 | sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2865 | if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2866 | sz++; |
| 2867 | o->data[o->length] = '\\'; |
| 2868 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2869 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2870 | o_grow_by(o, sz); |
| 2871 | o->data[o->length] = ch; |
| 2872 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2873 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2874 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2875 | } |
| 2876 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2877 | static void o_addQblock(o_string *o, const char *str, int len) |
| 2878 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2879 | if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2880 | o_addblock(o, str, len); |
| 2881 | return; |
| 2882 | } |
| 2883 | o_addqblock(o, str, len); |
| 2884 | } |
| 2885 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2886 | static void o_addQstr(o_string *o, const char *str) |
| 2887 | { |
| 2888 | o_addQblock(o, str, strlen(str)); |
| 2889 | } |
| 2890 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2891 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 2892 | * 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] | 2893 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2894 | * list[i] contains an INDEX (int!) into this string data. |
| 2895 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 2896 | * but list[i]'s need not be modified. |
| 2897 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2898 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2899 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 2900 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2901 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 2902 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 2903 | { |
| 2904 | char **list = (char**)o->data; |
| 2905 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2906 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2907 | |
| 2908 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2909 | fdprintf(2, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d glob:%d quoted:%d escape:%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2910 | prefix, list, n, string_start, o->length, o->maxlen, |
| 2911 | !!(o->o_expflags & EXP_FLAG_GLOB), |
| 2912 | o->has_quoted_part, |
| 2913 | !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2914 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2915 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2916 | fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i], |
| 2917 | o->data + (int)(uintptr_t)list[i] + string_start, |
| 2918 | o->data + (int)(uintptr_t)list[i] + string_start); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2919 | i++; |
| 2920 | } |
| 2921 | if (n) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2922 | const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2923 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2924 | fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data)); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2925 | } |
| 2926 | } |
| 2927 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 2928 | # define debug_print_list(prefix, o, n) ((void)0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2929 | #endif |
| 2930 | |
| 2931 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 2932 | * in list[n] so that it points past last stored byte so far. |
| 2933 | * It returns n+1. */ |
| 2934 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2935 | { |
| 2936 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2937 | int string_start; |
| 2938 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2939 | |
| 2940 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2941 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2942 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2943 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 2944 | 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] | 2945 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 2946 | o->maxlen += 0x10 * sizeof(list[0]); |
| 2947 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 2948 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2949 | memmove(list + n + 0x10, list + n, string_len); |
| 2950 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2951 | } else { |
| 2952 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 2953 | n, string_len, string_start); |
| 2954 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2955 | } else { |
| 2956 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2957 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 2958 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2959 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 2960 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2961 | o->has_empty_slot = 0; |
| 2962 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2963 | o->has_quoted_part = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2964 | list[n] = (char*)(uintptr_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2965 | return n + 1; |
| 2966 | } |
| 2967 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2968 | /* "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] | 2969 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2970 | { |
| 2971 | char **list = (char**)o->data; |
| 2972 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2973 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2974 | return ((int)(uintptr_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2975 | } |
| 2976 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 2977 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2978 | /* There in a GNU extension, GLOB_BRACE, but it is not usable: |
| 2979 | * first, it processes even {a} (no commas), second, |
| 2980 | * I didn't manage to make it return strings when they don't match |
Denys Vlasenko | 160746b | 2009-11-16 05:51:18 +0100 | [diff] [blame] | 2981 | * existing files. Need to re-implement it. |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2982 | */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2983 | |
| 2984 | /* Helper */ |
| 2985 | static int glob_needed(const char *s) |
| 2986 | { |
| 2987 | while (*s) { |
| 2988 | if (*s == '\\') { |
| 2989 | if (!s[1]) |
| 2990 | return 0; |
| 2991 | s += 2; |
| 2992 | continue; |
| 2993 | } |
| 2994 | if (*s == '*' || *s == '[' || *s == '?' || *s == '{') |
| 2995 | return 1; |
| 2996 | s++; |
| 2997 | } |
| 2998 | return 0; |
| 2999 | } |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3000 | /* Return pointer to next closing brace or to comma */ |
| 3001 | static const char *next_brace_sub(const char *cp) |
| 3002 | { |
| 3003 | unsigned depth = 0; |
| 3004 | cp++; |
| 3005 | while (*cp != '\0') { |
| 3006 | if (*cp == '\\') { |
| 3007 | if (*++cp == '\0') |
| 3008 | break; |
| 3009 | cp++; |
| 3010 | continue; |
Denys Vlasenko | 3581c62 | 2010-01-25 13:39:24 +0100 | [diff] [blame] | 3011 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3012 | if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0)) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3013 | break; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3014 | if (*cp++ == '{') |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3015 | depth++; |
| 3016 | } |
| 3017 | |
| 3018 | return *cp != '\0' ? cp : NULL; |
| 3019 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3020 | /* Recursive brace globber. Note: may garble pattern[]. */ |
| 3021 | static int glob_brace(char *pattern, o_string *o, int n) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3022 | { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3023 | char *new_pattern_buf; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3024 | const char *begin; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3025 | const char *next; |
| 3026 | const char *rest; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3027 | const char *p; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3028 | size_t rest_len; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3029 | |
| 3030 | debug_printf_glob("glob_brace('%s')\n", pattern); |
| 3031 | |
| 3032 | begin = pattern; |
| 3033 | while (1) { |
| 3034 | if (*begin == '\0') |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3035 | goto simple_glob; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3036 | if (*begin == '{') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3037 | /* Find the first sub-pattern and at the same time |
| 3038 | * find the rest after the closing brace */ |
| 3039 | next = next_brace_sub(begin); |
| 3040 | if (next == NULL) { |
| 3041 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3042 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3043 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3044 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3045 | /* "{abc}" with no commas - illegal |
| 3046 | * brace expr, disregard and skip it */ |
| 3047 | begin = next + 1; |
| 3048 | continue; |
| 3049 | } |
| 3050 | break; |
| 3051 | } |
| 3052 | if (*begin == '\\' && begin[1] != '\0') |
| 3053 | begin++; |
| 3054 | begin++; |
| 3055 | } |
| 3056 | debug_printf_glob("begin:%s\n", begin); |
| 3057 | debug_printf_glob("next:%s\n", next); |
| 3058 | |
| 3059 | /* Now find the end of the whole brace expression */ |
| 3060 | rest = next; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3061 | while (*rest != '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3062 | rest = next_brace_sub(rest); |
| 3063 | if (rest == NULL) { |
| 3064 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3065 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3066 | } |
| 3067 | debug_printf_glob("rest:%s\n", rest); |
| 3068 | } |
| 3069 | rest_len = strlen(++rest) + 1; |
| 3070 | |
| 3071 | /* We are sure the brace expression is well-formed */ |
| 3072 | |
| 3073 | /* Allocate working buffer large enough for our work */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3074 | new_pattern_buf = xmalloc(strlen(pattern)); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3075 | |
| 3076 | /* We have a brace expression. BEGIN points to the opening {, |
| 3077 | * NEXT points past the terminator of the first element, and REST |
| 3078 | * points past the final }. We will accumulate result names from |
| 3079 | * recursive runs for each brace alternative in the buffer using |
| 3080 | * GLOB_APPEND. */ |
| 3081 | |
| 3082 | p = begin + 1; |
| 3083 | while (1) { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3084 | /* Construct the new glob expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3085 | memcpy( |
| 3086 | mempcpy( |
| 3087 | mempcpy(new_pattern_buf, |
| 3088 | /* We know the prefix for all sub-patterns */ |
| 3089 | pattern, begin - pattern), |
| 3090 | p, next - p), |
| 3091 | rest, rest_len); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3092 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3093 | /* Note: glob_brace() may garble new_pattern_buf[]. |
| 3094 | * That's why we re-copy prefix every time (1st memcpy above). |
| 3095 | */ |
| 3096 | n = glob_brace(new_pattern_buf, o, n); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3097 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3098 | /* We saw the last entry */ |
| 3099 | break; |
| 3100 | } |
| 3101 | p = next + 1; |
| 3102 | next = next_brace_sub(next); |
| 3103 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3104 | free(new_pattern_buf); |
| 3105 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3106 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3107 | simple_glob: |
| 3108 | { |
| 3109 | int gr; |
| 3110 | glob_t globdata; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3111 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3112 | memset(&globdata, 0, sizeof(globdata)); |
| 3113 | gr = glob(pattern, 0, NULL, &globdata); |
| 3114 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 3115 | if (gr != 0) { |
| 3116 | if (gr == GLOB_NOMATCH) { |
| 3117 | globfree(&globdata); |
| 3118 | /* NB: garbles parameter */ |
| 3119 | unbackslash(pattern); |
| 3120 | o_addstr_with_NUL(o, pattern); |
| 3121 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3122 | return o_save_ptr_helper(o, n); |
| 3123 | } |
| 3124 | if (gr == GLOB_NOSPACE) |
| 3125 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
| 3126 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3127 | * but we didn't specify it. Paranoia again. */ |
| 3128 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
| 3129 | } |
| 3130 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3131 | char **argv = globdata.gl_pathv; |
| 3132 | while (1) { |
| 3133 | o_addstr_with_NUL(o, *argv); |
| 3134 | n = o_save_ptr_helper(o, n); |
| 3135 | argv++; |
| 3136 | if (!*argv) |
| 3137 | break; |
| 3138 | } |
| 3139 | } |
| 3140 | globfree(&globdata); |
| 3141 | } |
| 3142 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3143 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3144 | /* Performs globbing on last list[], |
| 3145 | * saving each result as a new list[]. |
| 3146 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3147 | static int perform_glob(o_string *o, int n) |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3148 | { |
| 3149 | char *pattern, *copy; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3150 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3151 | debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3152 | if (!o->data) |
| 3153 | return o_save_ptr_helper(o, n); |
| 3154 | pattern = o->data + o_get_last_ptr(o, n); |
| 3155 | debug_printf_glob("glob pattern '%s'\n", pattern); |
| 3156 | if (!glob_needed(pattern)) { |
| 3157 | /* unbackslash last string in o in place, fix length */ |
| 3158 | o->length = unbackslash(pattern) - o->data; |
| 3159 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3160 | return o_save_ptr_helper(o, n); |
| 3161 | } |
| 3162 | |
| 3163 | copy = xstrdup(pattern); |
| 3164 | /* "forget" pattern in o */ |
| 3165 | o->length = pattern - o->data; |
| 3166 | n = glob_brace(copy, o, n); |
| 3167 | free(copy); |
| 3168 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3169 | debug_print_list("perform_glob returning", o, n); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3170 | return n; |
| 3171 | } |
| 3172 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3173 | #else /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3174 | |
| 3175 | /* Helper */ |
| 3176 | static int glob_needed(const char *s) |
| 3177 | { |
| 3178 | while (*s) { |
| 3179 | if (*s == '\\') { |
| 3180 | if (!s[1]) |
| 3181 | return 0; |
| 3182 | s += 2; |
| 3183 | continue; |
| 3184 | } |
| 3185 | if (*s == '*' || *s == '[' || *s == '?') |
| 3186 | return 1; |
| 3187 | s++; |
| 3188 | } |
| 3189 | return 0; |
| 3190 | } |
| 3191 | /* Performs globbing on last list[], |
| 3192 | * saving each result as a new list[]. |
| 3193 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3194 | static int perform_glob(o_string *o, int n) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3195 | { |
| 3196 | glob_t globdata; |
| 3197 | int gr; |
| 3198 | char *pattern; |
| 3199 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3200 | debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3201 | if (!o->data) |
| 3202 | return o_save_ptr_helper(o, n); |
| 3203 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3204 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3205 | if (!glob_needed(pattern)) { |
| 3206 | literal: |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3207 | /* unbackslash last string in o in place, fix length */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3208 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3209 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3210 | return o_save_ptr_helper(o, n); |
| 3211 | } |
| 3212 | |
| 3213 | memset(&globdata, 0, sizeof(globdata)); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3214 | /* Can't use GLOB_NOCHECK: it does not unescape the string. |
| 3215 | * If we glob "*.\*" and don't find anything, we need |
| 3216 | * to fall back to using literal "*.*", but GLOB_NOCHECK |
| 3217 | * will return "*.\*"! |
| 3218 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3219 | gr = glob(pattern, 0, NULL, &globdata); |
| 3220 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3221 | if (gr != 0) { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3222 | if (gr == GLOB_NOMATCH) { |
| 3223 | globfree(&globdata); |
| 3224 | goto literal; |
| 3225 | } |
| 3226 | if (gr == GLOB_NOSPACE) |
| 3227 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3228 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3229 | * but we didn't specify it. Paranoia again. */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3230 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3231 | } |
| 3232 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3233 | char **argv = globdata.gl_pathv; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3234 | /* "forget" pattern in o */ |
| 3235 | o->length = pattern - o->data; |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3236 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3237 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3238 | n = o_save_ptr_helper(o, n); |
| 3239 | argv++; |
| 3240 | if (!*argv) |
| 3241 | break; |
| 3242 | } |
| 3243 | } |
| 3244 | globfree(&globdata); |
| 3245 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3246 | debug_print_list("perform_glob returning", o, n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3247 | return n; |
| 3248 | } |
| 3249 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3250 | #endif /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3251 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3252 | /* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3253 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3254 | static int o_save_ptr(o_string *o, int n) |
| 3255 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3256 | if (o->o_expflags & EXP_FLAG_GLOB) { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3257 | /* If o->has_empty_slot, list[n] was already globbed |
| 3258 | * (if it was requested back then when it was filled) |
| 3259 | * so don't do that again! */ |
| 3260 | if (!o->has_empty_slot) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3261 | return perform_glob(o, n); /* o_save_ptr_helper is inside */ |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3262 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3263 | return o_save_ptr_helper(o, n); |
| 3264 | } |
| 3265 | |
| 3266 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3267 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3268 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3269 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3270 | int string_start; |
| 3271 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3272 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 3273 | if (DEBUG_EXPAND) |
| 3274 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3275 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3276 | list = (char**)o->data; |
| 3277 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 3278 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3279 | while (n) { |
| 3280 | n--; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3281 | list[n] = o->data + (int)(uintptr_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3282 | } |
| 3283 | return list; |
| 3284 | } |
| 3285 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3286 | static void free_pipe_list(struct pipe *pi); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3287 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3288 | /* Returns pi->next - next pipe in the list */ |
| 3289 | static struct pipe *free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3290 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3291 | struct pipe *next; |
| 3292 | int i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3293 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3294 | debug_printf_clean("free_pipe (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3295 | for (i = 0; i < pi->num_cmds; i++) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3296 | struct command *command; |
| 3297 | struct redir_struct *r, *rnext; |
| 3298 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3299 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3300 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3301 | if (command->argv) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3302 | if (DEBUG_CLEAN) { |
| 3303 | int a; |
| 3304 | char **p; |
| 3305 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 3306 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
| 3307 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3308 | } |
| 3309 | free_strings(command->argv); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3310 | //command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3311 | } |
| 3312 | /* not "else if": on syntax error, we may have both! */ |
| 3313 | if (command->group) { |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3314 | debug_printf_clean(" begin group (cmd_type:%d)\n", |
| 3315 | command->cmd_type); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3316 | free_pipe_list(command->group); |
| 3317 | debug_printf_clean(" end group\n"); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3318 | //command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3319 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3320 | /* else is crucial here. |
| 3321 | * If group != NULL, child_func is meaningless */ |
| 3322 | #if ENABLE_HUSH_FUNCTIONS |
| 3323 | else if (command->child_func) { |
| 3324 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 3325 | command->child_func->parent_cmd = NULL; |
| 3326 | } |
| 3327 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3328 | #if !BB_MMU |
| 3329 | free(command->group_as_string); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3330 | //command->group_as_string = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3331 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3332 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3333 | debug_printf_clean(" redirect %d%s", |
| 3334 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3335 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 3336 | if (r->rd_filename) { |
| 3337 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 3338 | free(r->rd_filename); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3339 | //r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3340 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3341 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3342 | rnext = r->next; |
| 3343 | free(r); |
| 3344 | } |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3345 | //command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3346 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3347 | free(pi->cmds); /* children are an array, they get freed all at once */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3348 | //pi->cmds = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3349 | #if ENABLE_HUSH_JOB |
| 3350 | free(pi->cmdtext); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3351 | //pi->cmdtext = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3352 | #endif |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3353 | |
| 3354 | next = pi->next; |
| 3355 | free(pi); |
| 3356 | return next; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3357 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3358 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3359 | static void free_pipe_list(struct pipe *pi) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3360 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3361 | while (pi) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3362 | #if HAS_KEYWORDS |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3363 | debug_printf_clean("pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3364 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3365 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3366 | pi = free_pipe(pi); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3367 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3368 | } |
| 3369 | |
| 3370 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 3371 | /*** Parsing routines ***/ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3372 | |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3373 | #ifndef debug_print_tree |
| 3374 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3375 | { |
| 3376 | static const char *const PIPE[] = { |
| 3377 | [PIPE_SEQ] = "SEQ", |
| 3378 | [PIPE_AND] = "AND", |
| 3379 | [PIPE_OR ] = "OR" , |
| 3380 | [PIPE_BG ] = "BG" , |
| 3381 | }; |
| 3382 | static const char *RES[] = { |
| 3383 | [RES_NONE ] = "NONE" , |
| 3384 | # if ENABLE_HUSH_IF |
| 3385 | [RES_IF ] = "IF" , |
| 3386 | [RES_THEN ] = "THEN" , |
| 3387 | [RES_ELIF ] = "ELIF" , |
| 3388 | [RES_ELSE ] = "ELSE" , |
| 3389 | [RES_FI ] = "FI" , |
| 3390 | # endif |
| 3391 | # if ENABLE_HUSH_LOOPS |
| 3392 | [RES_FOR ] = "FOR" , |
| 3393 | [RES_WHILE] = "WHILE", |
| 3394 | [RES_UNTIL] = "UNTIL", |
| 3395 | [RES_DO ] = "DO" , |
| 3396 | [RES_DONE ] = "DONE" , |
| 3397 | # endif |
| 3398 | # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 3399 | [RES_IN ] = "IN" , |
| 3400 | # endif |
| 3401 | # if ENABLE_HUSH_CASE |
| 3402 | [RES_CASE ] = "CASE" , |
| 3403 | [RES_CASE_IN ] = "CASE_IN" , |
| 3404 | [RES_MATCH] = "MATCH", |
| 3405 | [RES_CASE_BODY] = "CASE_BODY", |
| 3406 | [RES_ESAC ] = "ESAC" , |
| 3407 | # endif |
| 3408 | [RES_XXXX ] = "XXXX" , |
| 3409 | [RES_SNTX ] = "SNTX" , |
| 3410 | }; |
| 3411 | static const char *const CMDTYPE[] = { |
| 3412 | "{}", |
| 3413 | "()", |
| 3414 | "[noglob]", |
| 3415 | # if ENABLE_HUSH_FUNCTIONS |
| 3416 | "func()", |
| 3417 | # endif |
| 3418 | }; |
| 3419 | |
| 3420 | int pin, prn; |
| 3421 | |
| 3422 | pin = 0; |
| 3423 | while (pi) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3424 | fdprintf(2, "%*spipe %d %sres_word=%s followup=%d %s\n", |
| 3425 | lvl*2, "", |
| 3426 | pin, |
| 3427 | (IF_HAS_KEYWORDS(pi->pi_inverted ? "! " :) ""), |
| 3428 | RES[pi->res_word], |
| 3429 | pi->followup, PIPE[pi->followup] |
| 3430 | ); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3431 | prn = 0; |
| 3432 | while (prn < pi->num_cmds) { |
| 3433 | struct command *command = &pi->cmds[prn]; |
| 3434 | char **argv = command->argv; |
| 3435 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3436 | fdprintf(2, "%*s cmd %d assignment_cnt:%d", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3437 | lvl*2, "", prn, |
| 3438 | command->assignment_cnt); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3439 | #if ENABLE_HUSH_LINENO_VAR |
| 3440 | fdprintf(2, " LINENO:%u", command->lineno); |
| 3441 | #endif |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3442 | if (command->group) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3443 | fdprintf(2, " group %s: (argv=%p)%s%s\n", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3444 | CMDTYPE[command->cmd_type], |
| 3445 | argv |
| 3446 | # if !BB_MMU |
| 3447 | , " group_as_string:", command->group_as_string |
| 3448 | # else |
| 3449 | , "", "" |
| 3450 | # endif |
| 3451 | ); |
| 3452 | debug_print_tree(command->group, lvl+1); |
| 3453 | prn++; |
| 3454 | continue; |
| 3455 | } |
| 3456 | if (argv) while (*argv) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3457 | fdprintf(2, " '%s'", *argv); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3458 | argv++; |
| 3459 | } |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3460 | fdprintf(2, "\n"); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3461 | prn++; |
| 3462 | } |
| 3463 | pi = pi->next; |
| 3464 | pin++; |
| 3465 | } |
| 3466 | } |
| 3467 | #endif /* debug_print_tree */ |
| 3468 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3469 | static struct pipe *new_pipe(void) |
| 3470 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3471 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3472 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3473 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3474 | return pi; |
| 3475 | } |
| 3476 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3477 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 3478 | * if ctx->command is NULL. |
| 3479 | * No errors possible here. |
| 3480 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3481 | static int done_command(struct parse_context *ctx) |
| 3482 | { |
| 3483 | /* The command is really already in the pipe structure, so |
| 3484 | * advance the pipe counter and make a new, null command. */ |
| 3485 | struct pipe *pi = ctx->pipe; |
| 3486 | struct command *command = ctx->command; |
| 3487 | |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3488 | #if 0 /* Instead we emit error message at run time */ |
| 3489 | if (ctx->pending_redirect) { |
| 3490 | /* For example, "cmd >" (no filename to redirect to) */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 3491 | syntax_error("invalid redirect"); |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3492 | ctx->pending_redirect = NULL; |
| 3493 | } |
| 3494 | #endif |
| 3495 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3496 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3497 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3498 | 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] | 3499 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3500 | } |
| 3501 | pi->num_cmds++; |
| 3502 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3503 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3504 | } else { |
| 3505 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3506 | } |
| 3507 | |
| 3508 | /* Only real trickiness here is that the uncommitted |
| 3509 | * command structure is not counted in pi->num_cmds. */ |
| 3510 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3511 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 3512 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3513 | memset(command, 0, sizeof(*command)); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3514 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 3515 | command->lineno = G.lineno; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3516 | debug_printf_parse("command->lineno = G.lineno (%u)\n", G.lineno); |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 3517 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3518 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3519 | } |
| 3520 | |
| 3521 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3522 | { |
| 3523 | int not_null; |
| 3524 | |
| 3525 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3526 | /* Close previous command */ |
| 3527 | not_null = done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3528 | #if HAS_KEYWORDS |
| 3529 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 3530 | ctx->ctx_inverted = 0; |
| 3531 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 3532 | #endif |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3533 | if (type == PIPE_BG && ctx->list_head != ctx->pipe) { |
| 3534 | /* Necessary since && and || have precedence over &: |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3535 | * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2, |
| 3536 | * in a backgrounded subshell. |
| 3537 | */ |
| 3538 | struct pipe *pi; |
| 3539 | struct command *command; |
| 3540 | |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3541 | /* Is this actually this construct, all pipes end with && or ||? */ |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3542 | pi = ctx->list_head; |
| 3543 | while (pi != ctx->pipe) { |
| 3544 | if (pi->followup != PIPE_AND && pi->followup != PIPE_OR) |
| 3545 | goto no_conv; |
| 3546 | pi = pi->next; |
| 3547 | } |
| 3548 | |
| 3549 | debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n"); |
| 3550 | pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */ |
| 3551 | pi = xzalloc(sizeof(*pi)); |
| 3552 | pi->followup = PIPE_BG; |
| 3553 | pi->num_cmds = 1; |
| 3554 | pi->cmds = xzalloc(sizeof(pi->cmds[0])); |
| 3555 | command = &pi->cmds[0]; |
| 3556 | if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */ |
| 3557 | command->cmd_type = CMD_NORMAL; |
| 3558 | command->group = ctx->list_head; |
| 3559 | #if !BB_MMU |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3560 | command->group_as_string = xstrndup( |
| 3561 | ctx->as_string.data, |
| 3562 | ctx->as_string.length - 1 /* do not copy last char, "&" */ |
| 3563 | ); |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3564 | #endif |
| 3565 | /* Replace all pipes in ctx with one newly created */ |
| 3566 | ctx->list_head = ctx->pipe = pi; |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3567 | } else { |
| 3568 | no_conv: |
| 3569 | ctx->pipe->followup = type; |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3570 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3571 | |
| 3572 | /* Without this check, even just <enter> on command line generates |
| 3573 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3574 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3575 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3576 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3577 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3578 | #endif |
| 3579 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3580 | || ctx->ctx_res_w == RES_DONE |
| 3581 | || ctx->ctx_res_w == RES_FOR |
| 3582 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3583 | #endif |
| 3584 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3585 | || ctx->ctx_res_w == RES_ESAC |
| 3586 | #endif |
| 3587 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3588 | struct pipe *new_p; |
| 3589 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3590 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3591 | not_null, ctx->ctx_res_w); |
| 3592 | new_p = new_pipe(); |
| 3593 | ctx->pipe->next = new_p; |
| 3594 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3595 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3596 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3597 | * This is used to control execution. |
| 3598 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3599 | * cases where variable or value happens to match a keyword): |
| 3600 | */ |
| 3601 | #if ENABLE_HUSH_LOOPS |
| 3602 | if (ctx->ctx_res_w == RES_FOR |
| 3603 | || ctx->ctx_res_w == RES_IN) |
| 3604 | ctx->ctx_res_w = RES_NONE; |
| 3605 | #endif |
| 3606 | #if ENABLE_HUSH_CASE |
| 3607 | if (ctx->ctx_res_w == RES_MATCH) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3608 | ctx->ctx_res_w = RES_CASE_BODY; |
| 3609 | if (ctx->ctx_res_w == RES_CASE) |
| 3610 | ctx->ctx_res_w = RES_CASE_IN; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3611 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3612 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3613 | /* Create the memory for command, roughly: |
| 3614 | * ctx->pipe->cmds = new struct command; |
| 3615 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3616 | */ |
| 3617 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3618 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3619 | } |
| 3620 | debug_printf_parse("done_pipe return\n"); |
| 3621 | } |
| 3622 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3623 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3624 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3625 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3626 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3627 | /* Create the memory for command, roughly: |
| 3628 | * ctx->pipe->cmds = new struct command; |
| 3629 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3630 | */ |
| 3631 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3632 | } |
| 3633 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3634 | /* If a reserved word is found and processed, parse context is modified |
| 3635 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3636 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3637 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3638 | struct reserved_combo { |
| 3639 | char literal[6]; |
| 3640 | unsigned char res; |
| 3641 | unsigned char assignment_flag; |
| 3642 | int flag; |
| 3643 | }; |
| 3644 | enum { |
| 3645 | FLAG_END = (1 << RES_NONE ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3646 | # if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3647 | FLAG_IF = (1 << RES_IF ), |
| 3648 | FLAG_THEN = (1 << RES_THEN ), |
| 3649 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3650 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3651 | FLAG_FI = (1 << RES_FI ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3652 | # endif |
| 3653 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3654 | FLAG_FOR = (1 << RES_FOR ), |
| 3655 | FLAG_WHILE = (1 << RES_WHILE), |
| 3656 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3657 | FLAG_DO = (1 << RES_DO ), |
| 3658 | FLAG_DONE = (1 << RES_DONE ), |
| 3659 | FLAG_IN = (1 << RES_IN ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3660 | # endif |
| 3661 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3662 | FLAG_MATCH = (1 << RES_MATCH), |
| 3663 | FLAG_ESAC = (1 << RES_ESAC ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3664 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3665 | FLAG_START = (1 << RES_XXXX ), |
| 3666 | }; |
| 3667 | |
| 3668 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3669 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3670 | /* Mostly a list of accepted follow-up reserved words. |
| 3671 | * FLAG_END means we are done with the sequence, and are ready |
| 3672 | * to turn the compound list into a command. |
| 3673 | * FLAG_START means the word must start a new compound list. |
| 3674 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3675 | static const struct reserved_combo reserved_list[] = { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3676 | # if ENABLE_HUSH_IF |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3677 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3678 | { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START }, |
| 3679 | { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3680 | { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN }, |
| 3681 | { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI }, |
| 3682 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3683 | # endif |
| 3684 | # if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3685 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3686 | { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3687 | { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3688 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3689 | { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE }, |
| 3690 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3691 | # endif |
| 3692 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3693 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3694 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3695 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3696 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3697 | const struct reserved_combo *r; |
| 3698 | |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 3699 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3700 | if (strcmp(word->data, r->literal) == 0) |
| 3701 | return r; |
| 3702 | } |
| 3703 | return NULL; |
| 3704 | } |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3705 | /* Return NULL: not a keyword, else: keyword |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3706 | */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3707 | static const struct reserved_combo* reserved_word(o_string *word, struct parse_context *ctx) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3708 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3709 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3710 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3711 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3712 | }; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3713 | # endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3714 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3715 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3716 | if (word->has_quoted_part) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3717 | return 0; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3718 | r = match_reserved_word(word); |
| 3719 | if (!r) |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3720 | return r; /* NULL */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3721 | |
| 3722 | debug_printf("found reserved word %s, res %d\n", r->literal, r->res); |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3723 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3724 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) { |
| 3725 | /* "case word IN ..." - IN part starts first MATCH part */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3726 | r = &reserved_match; |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3727 | } else |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3728 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3729 | if (r->flag == 0) { /* '!' */ |
| 3730 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3731 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3732 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3733 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3734 | ctx->ctx_inverted = 1; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3735 | return r; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3736 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3737 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3738 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3739 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 3740 | old = xmemdup(ctx, sizeof(*ctx)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3741 | debug_printf_parse("push stack %p\n", old); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3742 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3743 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3744 | } 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] | 3745 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3746 | ctx->ctx_res_w = RES_SNTX; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3747 | return r; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3748 | } else { |
| 3749 | /* "{...} fi" is ok. "{...} if" is not |
| 3750 | * Example: |
| 3751 | * if { echo foo; } then { echo bar; } fi */ |
| 3752 | if (ctx->command->group) |
| 3753 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3754 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3755 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3756 | ctx->ctx_res_w = r->res; |
| 3757 | ctx->old_flag = r->flag; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3758 | word->o_assignment = r->assignment_flag; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3759 | debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3760 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3761 | if (ctx->old_flag & FLAG_END) { |
| 3762 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3763 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3764 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3765 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3766 | old = ctx->stack; |
| 3767 | old->command->group = ctx->list_head; |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3768 | old->command->cmd_type = CMD_NORMAL; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3769 | # if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 3770 | /* At this point, the compound command's string is in |
| 3771 | * ctx->as_string... except for the leading keyword! |
| 3772 | * Consider this example: "echo a | if true; then echo a; fi" |
| 3773 | * ctx->as_string will contain "true; then echo a; fi", |
| 3774 | * with "if " remaining in old->as_string! |
| 3775 | */ |
| 3776 | { |
| 3777 | char *str; |
| 3778 | int len = old->as_string.length; |
| 3779 | /* Concatenate halves */ |
| 3780 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3781 | o_free_unsafe(&ctx->as_string); |
| 3782 | /* Find where leading keyword starts in first half */ |
| 3783 | str = old->as_string.data + len; |
| 3784 | if (str > old->as_string.data) |
| 3785 | str--; /* skip whitespace after keyword */ |
| 3786 | while (str > old->as_string.data && isalpha(str[-1])) |
| 3787 | str--; |
| 3788 | /* Ugh, we're done with this horrid hack */ |
| 3789 | old->command->group_as_string = xstrdup(str); |
| 3790 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3791 | old->command->group_as_string); |
| 3792 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3793 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3794 | *ctx = *old; /* physical copy */ |
| 3795 | free(old); |
| 3796 | } |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3797 | return r; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3798 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3799 | #endif /* HAS_KEYWORDS */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3800 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3801 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3802 | * Normal return is 0. Syntax errors return 1. |
| 3803 | * Note: on return, word is reset, but not o_free'd! |
| 3804 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3805 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3806 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3807 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3808 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3809 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3810 | if (word->length == 0 && !word->has_quoted_part) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3811 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3812 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3813 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3814 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3815 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3816 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3817 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3818 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 3819 | * "2.7 Redirection |
| 3820 | * ...the word that follows the redirection operator |
| 3821 | * shall be subjected to tilde expansion, parameter expansion, |
| 3822 | * command substitution, arithmetic expansion, and quote |
| 3823 | * removal. Pathname expansion shall not be performed |
| 3824 | * on the word by a non-interactive shell; an interactive |
| 3825 | * shell may perform it, but shall do so only when |
| 3826 | * the expansion would result in one word." |
| 3827 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3828 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3829 | /* Cater for >\file case: |
| 3830 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 3831 | * Same with heredocs: |
| 3832 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 3833 | */ |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3834 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) { |
| 3835 | unbackslash(ctx->pending_redirect->rd_filename); |
| 3836 | /* Is it <<"HEREDOC"? */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3837 | if (word->has_quoted_part) { |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3838 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 3839 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3840 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3841 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3842 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3843 | } else { |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3844 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3845 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3846 | if (ctx->ctx_dsemicolon |
| 3847 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3848 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3849 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3850 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3851 | ctx->ctx_dsemicolon = 0; |
| 3852 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3853 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3854 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3855 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3856 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3857 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3858 | # endif |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3859 | # if ENABLE_HUSH_CASE |
| 3860 | && ctx->ctx_res_w != RES_CASE |
| 3861 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3862 | ) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3863 | const struct reserved_combo *reserved; |
| 3864 | reserved = reserved_word(word, ctx); |
| 3865 | debug_printf_parse("checking for reserved-ness: %d\n", !!reserved); |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3866 | if (reserved) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3867 | # if ENABLE_HUSH_LINENO_VAR |
| 3868 | /* Case: |
| 3869 | * "while ...; do |
| 3870 | * cmd ..." |
| 3871 | * If we don't close the pipe _now_, immediately after "do", lineno logic |
| 3872 | * sees "cmd" as starting at "do" - i.e., at the previous line. |
| 3873 | */ |
| 3874 | if (0 |
| 3875 | IF_HUSH_IF(|| reserved->res == RES_THEN) |
| 3876 | IF_HUSH_IF(|| reserved->res == RES_ELIF) |
| 3877 | IF_HUSH_IF(|| reserved->res == RES_ELSE) |
| 3878 | IF_HUSH_LOOPS(|| reserved->res == RES_DO) |
| 3879 | ) { |
| 3880 | done_pipe(ctx, PIPE_SEQ); |
| 3881 | } |
| 3882 | # endif |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 3883 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3884 | debug_printf_parse("done_word return %d\n", |
| 3885 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3886 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3887 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 3888 | # if BASH_TEST2 |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3889 | if (strcmp(word->data, "[[") == 0) { |
| 3890 | command->cmd_type = CMD_SINGLEWORD_NOGLOB; |
| 3891 | } |
| 3892 | /* fall through */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 3893 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3894 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3895 | #endif |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3896 | if (command->group) { |
| 3897 | /* "{ echo foo; } echo bar" - bad */ |
| 3898 | syntax_error_at(word->data); |
| 3899 | debug_printf_parse("done_word return 1: syntax error, " |
| 3900 | "groups and arglists don't mix\n"); |
| 3901 | return 1; |
| 3902 | } |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3903 | |
| 3904 | /* If this word wasn't an assignment, next ones definitely |
| 3905 | * can't be assignments. Even if they look like ones. */ |
| 3906 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3907 | && word->o_assignment != WORD_IS_KEYWORD |
| 3908 | ) { |
| 3909 | word->o_assignment = NOT_ASSIGNMENT; |
| 3910 | } else { |
| 3911 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) { |
| 3912 | command->assignment_cnt++; |
| 3913 | debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt); |
| 3914 | } |
| 3915 | debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]); |
| 3916 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3917 | } |
| 3918 | debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3919 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3920 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3921 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3922 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3923 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3924 | if (ctx->ctx_res_w == RES_FOR) { |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3925 | if (word->has_quoted_part |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3926 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 3927 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3928 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3929 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3930 | return 1; |
| 3931 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3932 | /* Force FOR to have just one word (variable name) */ |
| 3933 | /* NB: basically, this makes hush see "for v in ..." |
| 3934 | * syntax as if it is "for v; in ...". FOR and IN become |
| 3935 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3936 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3937 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3938 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3939 | #if ENABLE_HUSH_CASE |
| 3940 | /* Force CASE to have just one word */ |
| 3941 | if (ctx->ctx_res_w == RES_CASE) { |
| 3942 | done_pipe(ctx, PIPE_SEQ); |
| 3943 | } |
| 3944 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3945 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 3946 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3947 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3948 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3949 | return 0; |
| 3950 | } |
| 3951 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3952 | |
| 3953 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 3954 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3955 | * Return: |
| 3956 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 3957 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 3958 | * REDIRFD_TO_FILE if no & was seen, |
| 3959 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3960 | */ |
| 3961 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3962 | #define parse_redir_right_fd(as_string, input) \ |
| 3963 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3964 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3965 | 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] | 3966 | { |
| 3967 | int ch, d, ok; |
| 3968 | |
| 3969 | ch = i_peek(input); |
| 3970 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3971 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3972 | |
| 3973 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3974 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3975 | ch = i_peek(input); |
| 3976 | if (ch == '-') { |
| 3977 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3978 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3979 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3980 | } |
| 3981 | d = 0; |
| 3982 | ok = 0; |
| 3983 | while (ch != EOF && isdigit(ch)) { |
| 3984 | d = d*10 + (ch-'0'); |
| 3985 | ok = 1; |
| 3986 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3987 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3988 | ch = i_peek(input); |
| 3989 | } |
| 3990 | if (ok) return d; |
| 3991 | |
| 3992 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 3993 | |
| 3994 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3995 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3996 | } |
| 3997 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3998 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3999 | */ |
| 4000 | static int parse_redirect(struct parse_context *ctx, |
| 4001 | int fd, |
| 4002 | redir_type style, |
| 4003 | struct in_str *input) |
| 4004 | { |
| 4005 | struct command *command = ctx->command; |
| 4006 | struct redir_struct *redir; |
| 4007 | struct redir_struct **redirp; |
| 4008 | int dup_num; |
| 4009 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4010 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4011 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4012 | /* Check for a '>&1' type redirect */ |
| 4013 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4014 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4015 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4016 | } else { |
| 4017 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4018 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4019 | if (dup_num) { /* <<-... */ |
| 4020 | ch = i_getch(input); |
| 4021 | nommu_addchr(&ctx->as_string, ch); |
| 4022 | ch = i_peek(input); |
| 4023 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4024 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4025 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4026 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4027 | int ch = i_peek(input); |
| 4028 | if (ch == '|') { |
| 4029 | /* >|FILE redirect ("clobbering" >). |
| 4030 | * Since we do not support "set -o noclobber" yet, |
| 4031 | * >| and > are the same for now. Just eat |. |
| 4032 | */ |
| 4033 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4034 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4035 | } |
| 4036 | } |
| 4037 | |
| 4038 | /* Create a new redir_struct and append it to the linked list */ |
| 4039 | redirp = &command->redirects; |
| 4040 | while ((redir = *redirp) != NULL) { |
| 4041 | redirp = &(redir->next); |
| 4042 | } |
| 4043 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4044 | /* redir->next = NULL; */ |
| 4045 | /* redir->rd_filename = NULL; */ |
| 4046 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4047 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4048 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4049 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4050 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4051 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4052 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4053 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4054 | /* Erik had a check here that the file descriptor in question |
| 4055 | * is legit; I postpone that to "run time" |
| 4056 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4057 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4058 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4059 | } else { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 4060 | #if 0 /* Instead we emit error message at run time */ |
| 4061 | if (ctx->pending_redirect) { |
| 4062 | /* For example, "cmd > <file" */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 4063 | syntax_error("invalid redirect"); |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 4064 | } |
| 4065 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4066 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4067 | * end of the next parsed word. */ |
| 4068 | ctx->pending_redirect = redir; |
| 4069 | } |
| 4070 | return 0; |
| 4071 | } |
| 4072 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4073 | /* If a redirect is immediately preceded by a number, that number is |
| 4074 | * supposed to tell which file descriptor to redirect. This routine |
| 4075 | * looks for such preceding numbers. In an ideal world this routine |
| 4076 | * needs to handle all the following classes of redirects... |
| 4077 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4078 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4079 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4080 | * 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] | 4081 | * |
| 4082 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4083 | * "2.7 Redirection |
| 4084 | * ... If n is quoted, the number shall not be recognized as part of |
| 4085 | * the redirection expression. For example: |
| 4086 | * echo \2>a |
| 4087 | * writes the character 2 into file a" |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4088 | * We are getting it right by setting ->has_quoted_part on any \<char> |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4089 | * |
| 4090 | * A -1 return means no valid number was found, |
| 4091 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4092 | */ |
| 4093 | static int redirect_opt_num(o_string *o) |
| 4094 | { |
| 4095 | int num; |
| 4096 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4097 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4098 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4099 | num = bb_strtou(o->data, NULL, 10); |
| 4100 | if (errno || num < 0) |
| 4101 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4102 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4103 | return num; |
| 4104 | } |
| 4105 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4106 | #if BB_MMU |
| 4107 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4108 | fetch_till_str(input, word, skip_tabs) |
| 4109 | #endif |
| 4110 | static char *fetch_till_str(o_string *as_string, |
| 4111 | struct in_str *input, |
| 4112 | const char *word, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4113 | int heredoc_flags) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4114 | { |
| 4115 | o_string heredoc = NULL_O_STRING; |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4116 | unsigned past_EOL; |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4117 | int prev = 0; /* not \ */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4118 | int ch; |
| 4119 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4120 | goto jump_in; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 4121 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4122 | while (1) { |
| 4123 | ch = i_getch(input); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4124 | if (ch != EOF) |
| 4125 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0f018b3 | 2017-07-29 20:43:26 +0200 | [diff] [blame] | 4126 | if (ch == '\n' || ch == EOF) { |
| 4127 | check_heredoc_end: |
| 4128 | if ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\') { |
| 4129 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4130 | heredoc.data[past_EOL] = '\0'; |
| 4131 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4132 | return heredoc.data; |
| 4133 | } |
| 4134 | if (ch == '\n') { |
| 4135 | /* This is a new line. |
| 4136 | * Remember position and backslash-escaping status. |
| 4137 | */ |
| 4138 | o_addchr(&heredoc, ch); |
| 4139 | prev = ch; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4140 | jump_in: |
Denys Vlasenko | 0f018b3 | 2017-07-29 20:43:26 +0200 | [diff] [blame] | 4141 | past_EOL = heredoc.length; |
| 4142 | /* Get 1st char of next line, possibly skipping leading tabs */ |
| 4143 | do { |
| 4144 | ch = i_getch(input); |
| 4145 | if (ch != EOF) |
| 4146 | nommu_addchr(as_string, ch); |
| 4147 | } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t'); |
| 4148 | /* If this immediately ended the line, |
| 4149 | * go back to end-of-line checks. |
| 4150 | */ |
| 4151 | if (ch == '\n') |
| 4152 | goto check_heredoc_end; |
| 4153 | } |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4154 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4155 | } |
| 4156 | if (ch == EOF) { |
| 4157 | o_free_unsafe(&heredoc); |
| 4158 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4159 | } |
| 4160 | o_addchr(&heredoc, ch); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4161 | nommu_addchr(as_string, ch); |
Denys Vlasenko | c3adfac | 2010-09-06 11:46:03 +0200 | [diff] [blame] | 4162 | if (prev == '\\' && ch == '\\') |
| 4163 | /* Correctly handle foo\\<eol> (not a line cont.) */ |
| 4164 | prev = 0; /* not \ */ |
| 4165 | else |
| 4166 | prev = ch; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4167 | } |
| 4168 | } |
| 4169 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4170 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4171 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4172 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4173 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4174 | { |
| 4175 | struct pipe *pi = ctx->list_head; |
| 4176 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4177 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4178 | int i; |
| 4179 | struct command *cmd = pi->cmds; |
| 4180 | |
| 4181 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4182 | pi->num_cmds, |
| 4183 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4184 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4185 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4186 | |
| 4187 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4188 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4189 | while (redir) { |
| 4190 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4191 | char *p; |
| 4192 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4193 | redir->rd_type = REDIRECT_HEREDOC2; |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 4194 | /* redir->rd_dup is (ab)used to indicate <<- */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4195 | p = fetch_till_str(&ctx->as_string, input, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4196 | redir->rd_filename, redir->rd_dup); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4197 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4198 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4199 | return 1; |
| 4200 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4201 | free(redir->rd_filename); |
| 4202 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4203 | heredoc_cnt--; |
| 4204 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4205 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4206 | } |
| 4207 | cmd++; |
| 4208 | } |
| 4209 | pi = pi->next; |
| 4210 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4211 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4212 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4213 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4214 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4215 | #endif |
| 4216 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4217 | } |
| 4218 | |
| 4219 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 4220 | static int run_list(struct pipe *pi); |
| 4221 | #if BB_MMU |
| 4222 | #define parse_stream(pstring, input, end_trigger) \ |
| 4223 | parse_stream(input, end_trigger) |
| 4224 | #endif |
| 4225 | static struct pipe *parse_stream(char **pstring, |
| 4226 | struct in_str *input, |
| 4227 | int end_trigger); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4228 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4229 | |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 4230 | #if !ENABLE_HUSH_FUNCTIONS |
| 4231 | #define parse_group(dest, ctx, input, ch) \ |
| 4232 | parse_group(ctx, input, ch) |
| 4233 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4234 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4235 | struct in_str *input, int ch) |
| 4236 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4237 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4238 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4239 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4240 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4241 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4242 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4243 | |
| 4244 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4245 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4246 | if (ch == '(' && !dest->has_quoted_part) { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4247 | if (dest->length) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4248 | if (done_word(dest, ctx)) |
| 4249 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4250 | if (!command->argv) |
| 4251 | goto skip; /* (... */ |
| 4252 | if (command->argv[1]) { /* word word ... (... */ |
| 4253 | syntax_error_unexpected_ch('('); |
| 4254 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4255 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4256 | /* it is "word(..." or "word (..." */ |
| 4257 | do |
| 4258 | ch = i_getch(input); |
| 4259 | while (ch == ' ' || ch == '\t'); |
| 4260 | if (ch != ')') { |
| 4261 | syntax_error_unexpected_ch(ch); |
| 4262 | return 1; |
| 4263 | } |
| 4264 | nommu_addchr(&ctx->as_string, ch); |
| 4265 | do |
| 4266 | ch = i_getch(input); |
| 4267 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
| 4268 | if (ch != '{') { |
| 4269 | syntax_error_unexpected_ch(ch); |
| 4270 | return 1; |
| 4271 | } |
| 4272 | nommu_addchr(&ctx->as_string, ch); |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 4273 | command->cmd_type = CMD_FUNCDEF; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4274 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4275 | } |
| 4276 | #endif |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4277 | |
| 4278 | #if 0 /* Prevented by caller */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4279 | if (command->argv /* word [word]{... */ |
| 4280 | || dest->length /* word{... */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4281 | || dest->has_quoted_part /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4282 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4283 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4284 | debug_printf_parse("parse_group return 1: " |
| 4285 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4286 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4287 | } |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4288 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4289 | |
| 4290 | #if ENABLE_HUSH_FUNCTIONS |
| 4291 | skip: |
| 4292 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4293 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4294 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4295 | endch = ')'; |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 4296 | command->cmd_type = CMD_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4297 | } else { |
| 4298 | /* bash does not allow "{echo...", requires whitespace */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4299 | ch = i_peek(input); |
| 4300 | if (ch != ' ' && ch != '\t' && ch != '\n' |
| 4301 | && ch != '(' /* but "{(..." is allowed (without whitespace) */ |
| 4302 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4303 | syntax_error_unexpected_ch(ch); |
| 4304 | return 1; |
| 4305 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4306 | if (ch != '(') { |
| 4307 | ch = i_getch(input); |
| 4308 | nommu_addchr(&ctx->as_string, ch); |
| 4309 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4310 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4311 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4312 | { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4313 | #if BB_MMU |
| 4314 | # define as_string NULL |
| 4315 | #else |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4316 | char *as_string = NULL; |
| 4317 | #endif |
| 4318 | pipe_list = parse_stream(&as_string, input, endch); |
| 4319 | #if !BB_MMU |
| 4320 | if (as_string) |
| 4321 | o_addstr(&ctx->as_string, as_string); |
| 4322 | #endif |
| 4323 | /* empty ()/{} or parse error? */ |
| 4324 | if (!pipe_list || pipe_list == ERR_PTR) { |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4325 | /* parse_stream already emitted error msg */ |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4326 | if (!BB_MMU) |
| 4327 | free(as_string); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4328 | debug_printf_parse("parse_group return 1: " |
| 4329 | "parse_stream returned %p\n", pipe_list); |
| 4330 | return 1; |
| 4331 | } |
| 4332 | command->group = pipe_list; |
| 4333 | #if !BB_MMU |
| 4334 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4335 | command->group_as_string = as_string; |
| 4336 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4337 | command->group_as_string); |
| 4338 | #endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4339 | #undef as_string |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4340 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4341 | debug_printf_parse("parse_group return 0\n"); |
| 4342 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4343 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4344 | } |
| 4345 | |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 4346 | static int i_getch_and_eat_bkslash_nl(struct in_str *input) |
| 4347 | { |
| 4348 | for (;;) { |
| 4349 | int ch, ch2; |
| 4350 | |
| 4351 | ch = i_getch(input); |
| 4352 | if (ch != '\\') |
| 4353 | return ch; |
| 4354 | ch2 = i_peek(input); |
| 4355 | if (ch2 != '\n') |
| 4356 | return ch; |
| 4357 | /* backslash+newline, skip it */ |
| 4358 | i_getch(input); |
| 4359 | } |
| 4360 | } |
| 4361 | |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4362 | static int i_peek_and_eat_bkslash_nl(struct in_str *input) |
| 4363 | { |
| 4364 | for (;;) { |
| 4365 | int ch, ch2; |
| 4366 | |
| 4367 | ch = i_peek(input); |
| 4368 | if (ch != '\\') |
| 4369 | return ch; |
| 4370 | ch2 = i_peek2(input); |
| 4371 | if (ch2 != '\n') |
| 4372 | return ch; |
| 4373 | /* backslash+newline, skip it */ |
| 4374 | i_getch(input); |
| 4375 | i_getch(input); |
| 4376 | } |
| 4377 | } |
| 4378 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4379 | #if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4380 | /* Subroutines for copying $(...) and `...` things */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4381 | static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4382 | /* '...' */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4383 | static int add_till_single_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4384 | { |
| 4385 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4386 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4387 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4388 | syntax_error_unterm_ch('\''); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4389 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4390 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4391 | if (ch == '\'') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4392 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4393 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4394 | } |
| 4395 | } |
| 4396 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4397 | static int add_till_double_quote(o_string *dest, struct in_str *input) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4398 | { |
| 4399 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4400 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4401 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4402 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4403 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4404 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4405 | if (ch == '"') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4406 | return 1; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4407 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4408 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4409 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4410 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4411 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4412 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4413 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 1)) |
| 4414 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4415 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4416 | continue; |
| 4417 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4418 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4419 | } |
| 4420 | } |
| 4421 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4422 | * \` quoting. |
| 4423 | * "Within the backquoted style of command substitution, backslash |
| 4424 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4425 | * The search for the matching backquote shall be satisfied by the first |
| 4426 | * backquote found without a preceding backslash; during this search, |
| 4427 | * if a non-escaped backquote is encountered within a shell comment, |
| 4428 | * a here-document, an embedded command substitution of the $(command) |
| 4429 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4430 | * or double-quoted string that begins, but does not end, within the |
| 4431 | * "`...`" sequence produces undefined results." |
| 4432 | * Example Output |
| 4433 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4434 | */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4435 | static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4436 | { |
| 4437 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4438 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4439 | if (ch == '`') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4440 | return 1; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4441 | if (ch == '\\') { |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4442 | /* \x. Copy both unless it is \`, \$, \\ and maybe \" */ |
| 4443 | ch = i_getch(input); |
| 4444 | if (ch != '`' |
| 4445 | && ch != '$' |
| 4446 | && ch != '\\' |
| 4447 | && (!in_dquote || ch != '"') |
| 4448 | ) { |
| 4449 | o_addchr(dest, '\\'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4450 | } |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4451 | } |
| 4452 | if (ch == EOF) { |
| 4453 | syntax_error_unterm_ch('`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4454 | return 0; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4455 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4456 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4457 | } |
| 4458 | } |
| 4459 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4460 | * quoting and nested ()s. |
| 4461 | * "With the $(command) style of command substitution, all characters |
| 4462 | * following the open parenthesis to the matching closing parenthesis |
| 4463 | * constitute the command. Any valid shell script can be used for command, |
| 4464 | * except a script consisting solely of redirections which produces |
| 4465 | * unspecified results." |
| 4466 | * Example Output |
| 4467 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4468 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4469 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4470 | * |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4471 | * Also adapted to eat ${var%...} and $((...)) constructs, since ... part |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4472 | * can contain arbitrary constructs, just like $(cmd). |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4473 | * In bash compat mode, it needs to also be able to stop on ':' or '/' |
| 4474 | * for ${var:N[:M]} and ${var/P[/R]} parsing. |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4475 | */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4476 | #define DOUBLE_CLOSE_CHAR_FLAG 0x80 |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4477 | static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4478 | { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4479 | int ch; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4480 | char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4481 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4482 | char end_char2 = end_ch >> 8; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4483 | # endif |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4484 | end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1); |
| 4485 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4486 | while (1) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4487 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4488 | if (ch == EOF) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4489 | syntax_error_unterm_ch(end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4490 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4491 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4492 | if (ch == end_ch |
| 4493 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 4494 | || ch == end_char2 |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4495 | # endif |
| 4496 | ) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4497 | if (!dbl) |
| 4498 | break; |
| 4499 | /* we look for closing )) of $((EXPR)) */ |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4500 | if (i_peek_and_eat_bkslash_nl(input) == end_ch) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4501 | i_getch(input); /* eat second ')' */ |
| 4502 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4503 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4504 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4505 | o_addchr(dest, ch); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4506 | //bb_error_msg("%s:o_addchr('%c')", __func__, ch); |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4507 | if (ch == '(' || ch == '{') { |
| 4508 | ch = (ch == '(' ? ')' : '}'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4509 | if (!add_till_closing_bracket(dest, input, ch)) |
| 4510 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4511 | o_addchr(dest, ch); |
| 4512 | continue; |
| 4513 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4514 | if (ch == '\'') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4515 | if (!add_till_single_quote(dest, input)) |
| 4516 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4517 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4518 | continue; |
| 4519 | } |
| 4520 | if (ch == '"') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4521 | if (!add_till_double_quote(dest, input)) |
| 4522 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4523 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4524 | continue; |
| 4525 | } |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4526 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4527 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 0)) |
| 4528 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4529 | o_addchr(dest, ch); |
| 4530 | continue; |
| 4531 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4532 | if (ch == '\\') { |
| 4533 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4534 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4535 | if (ch == EOF) { |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4536 | syntax_error_unterm_ch(end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4537 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4538 | } |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4539 | #if 0 |
| 4540 | if (ch == '\n') { |
| 4541 | /* "backslash+newline", ignore both */ |
| 4542 | o_delchr(dest); /* undo insertion of '\' */ |
| 4543 | continue; |
| 4544 | } |
| 4545 | #endif |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4546 | o_addchr(dest, ch); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4547 | //bb_error_msg("%s:o_addchr('%c') after '\\'", __func__, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4548 | continue; |
| 4549 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4550 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4551 | return ch; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4552 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4553 | #endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4554 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4555 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4556 | #if BB_MMU |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4557 | #define parse_dollar(as_string, dest, input, quote_mask) \ |
| 4558 | parse_dollar(dest, input, quote_mask) |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4559 | #define as_string NULL |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4560 | #endif |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4561 | static int parse_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4562 | o_string *dest, |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4563 | struct in_str *input, unsigned char quote_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4564 | { |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4565 | int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */ |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4566 | |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4567 | debug_printf_parse("parse_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4568 | if (isalpha(ch)) { |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4569 | make_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4570 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4571 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4572 | /*make_var1:*/ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4573 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4574 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4575 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4576 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4577 | quote_mask = 0; |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4578 | ch = i_peek_and_eat_bkslash_nl(input); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4579 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4580 | /* End of variable name reached */ |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4581 | break; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4582 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4583 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4584 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4585 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4586 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4587 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4588 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4589 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4590 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4591 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4592 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4593 | o_addchr(dest, ch | quote_mask); |
| 4594 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4595 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4596 | case '$': /* pid */ |
| 4597 | case '!': /* last bg pid */ |
| 4598 | case '?': /* last exit code */ |
| 4599 | case '#': /* number of args */ |
| 4600 | case '*': /* args */ |
| 4601 | case '@': /* args */ |
| 4602 | goto make_one_char_var; |
| 4603 | case '{': { |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4604 | char len_single_ch; |
| 4605 | |
Mike Frysinger | ef3e7fd | 2009-06-01 14:13:39 -0400 | [diff] [blame] | 4606 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4607 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4608 | ch = i_getch(input); /* eat '{' */ |
| 4609 | nommu_addchr(as_string, ch); |
| 4610 | |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 4611 | ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4612 | /* It should be ${?}, or ${#var}, |
| 4613 | * or even ${?+subst} - operator acting on a special variable, |
| 4614 | * or the beginning of variable name. |
| 4615 | */ |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4616 | if (ch == EOF |
| 4617 | || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */ |
| 4618 | ) { |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4619 | bad_dollar_syntax: |
| 4620 | syntax_error_unterm_str("${name}"); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4621 | debug_printf_parse("parse_dollar return 0: unterminated ${name}\n"); |
| 4622 | return 0; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4623 | } |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4624 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4625 | len_single_ch = ch; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4626 | ch |= quote_mask; |
| 4627 | |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4628 | /* It's possible to just call add_till_closing_bracket() at this point. |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4629 | * However, this regresses some of our testsuite cases |
| 4630 | * which check invalid constructs like ${%}. |
| 4631 | * Oh well... let's check that the var name part is fine... */ |
| 4632 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4633 | while (1) { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4634 | unsigned pos; |
| 4635 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4636 | o_addchr(dest, ch); |
| 4637 | debug_printf_parse(": '%c'\n", ch); |
| 4638 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4639 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4640 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4641 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4642 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4643 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4644 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4645 | unsigned end_ch; |
| 4646 | unsigned char last_ch; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4647 | /* handle parameter expansions |
| 4648 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4649 | */ |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4650 | if (!strchr(VAR_SUBST_OPS, ch)) { /* ${var<bad_char>... */ |
| 4651 | if (len_single_ch != '#' |
| 4652 | /*|| !strchr(SPECIAL_VARS_STR, ch) - disallow errors like ${#+} ? */ |
| 4653 | || i_peek(input) != '}' |
| 4654 | ) { |
| 4655 | goto bad_dollar_syntax; |
| 4656 | } |
| 4657 | /* else: it's "length of C" ${#C} op, |
| 4658 | * where C is a single char |
| 4659 | * special var name, e.g. ${#!}. |
| 4660 | */ |
| 4661 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4662 | /* Eat everything until closing '}' (or ':') */ |
| 4663 | end_ch = '}'; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4664 | if (BASH_SUBSTR |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4665 | && ch == ':' |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4666 | && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4667 | ) { |
| 4668 | /* It's ${var:N[:M]} thing */ |
| 4669 | end_ch = '}' * 0x100 + ':'; |
| 4670 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4671 | if (BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4672 | && ch == '/' |
| 4673 | ) { |
| 4674 | /* It's ${var/[/]pattern[/repl]} thing */ |
| 4675 | if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */ |
| 4676 | i_getch(input); |
| 4677 | nommu_addchr(as_string, '/'); |
| 4678 | ch = '\\'; |
| 4679 | } |
| 4680 | end_ch = '}' * 0x100 + '/'; |
| 4681 | } |
| 4682 | o_addchr(dest, ch); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4683 | again: |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4684 | if (!BB_MMU) |
| 4685 | pos = dest->length; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4686 | #if ENABLE_HUSH_DOLLAR_OPS |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4687 | last_ch = add_till_closing_bracket(dest, input, end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4688 | if (last_ch == 0) /* error? */ |
| 4689 | return 0; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4690 | #else |
| 4691 | #error Simple code to only allow ${var} is not implemented |
| 4692 | #endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4693 | if (as_string) { |
| 4694 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4695 | o_addchr(as_string, last_ch); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4696 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4697 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4698 | if ((BASH_SUBSTR || BASH_PATTERN_SUBST) |
| 4699 | && (end_ch & 0xff00) |
| 4700 | ) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4701 | /* close the first block: */ |
| 4702 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4703 | /* while parsing N from ${var:N[:M]} |
| 4704 | * or pattern from ${var/[/]pattern[/repl]} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4705 | if ((end_ch & 0xff) == last_ch) { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4706 | /* got ':' or '/'- parse the rest */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4707 | end_ch = '}'; |
| 4708 | goto again; |
| 4709 | } |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4710 | /* got '}' */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4711 | if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4712 | /* it's ${var:N} - emulate :999999999 */ |
| 4713 | o_addstr(dest, "999999999"); |
| 4714 | } /* else: it's ${var/[/]pattern} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4715 | } |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4716 | break; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4717 | } |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4718 | len_single_ch = 0; /* it can't be ${#C} op */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4719 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4720 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4721 | break; |
| 4722 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4723 | #if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4724 | case '(': { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4725 | unsigned pos; |
| 4726 | |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4727 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4728 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4729 | # if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4730 | if (i_peek_and_eat_bkslash_nl(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4731 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4732 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4733 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4734 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4735 | if (!BB_MMU) |
| 4736 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4737 | if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG)) |
| 4738 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4739 | if (as_string) { |
| 4740 | o_addstr(as_string, dest->data + pos); |
| 4741 | o_addchr(as_string, ')'); |
| 4742 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4743 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4744 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4745 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4746 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4747 | # endif |
| 4748 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4749 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4750 | o_addchr(dest, quote_mask | '`'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4751 | if (!BB_MMU) |
| 4752 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4753 | if (!add_till_closing_bracket(dest, input, ')')) |
| 4754 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4755 | if (as_string) { |
| 4756 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | b70cef7 | 2010-01-12 13:45:45 +0100 | [diff] [blame] | 4757 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4758 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4759 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4760 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4761 | break; |
| 4762 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4763 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4764 | case '_': |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4765 | goto make_var; |
| 4766 | #if 0 |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 4767 | /* TODO: $_ and $-: */ |
| 4768 | /* $_ Shell or shell script name; or last argument of last command |
| 4769 | * (if last command wasn't a pipe; if it was, bash sets $_ to ""); |
| 4770 | * but in command's env, set to full pathname used to invoke it */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4771 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4772 | ch = i_getch(input); |
| 4773 | nommu_addchr(as_string, ch); |
| 4774 | ch = i_peek_and_eat_bkslash_nl(input); |
| 4775 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4776 | ch = '_'; |
| 4777 | goto make_var1; |
| 4778 | } |
| 4779 | /* else: it's $_ */ |
| 4780 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4781 | default: |
| 4782 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4783 | } |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4784 | debug_printf_parse("parse_dollar return 1 (ok)\n"); |
| 4785 | return 1; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4786 | #undef as_string |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4787 | } |
| 4788 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4789 | #if BB_MMU |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4790 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4791 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4792 | encode_string(dest, input, dquote_end, process_bkslash) |
| 4793 | # else |
| 4794 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 4795 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4796 | encode_string(dest, input, dquote_end) |
| 4797 | # endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4798 | #define as_string NULL |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4799 | |
| 4800 | #else /* !MMU */ |
| 4801 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4802 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4803 | /* all parameters are needed, no macro tricks */ |
| 4804 | # else |
| 4805 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4806 | encode_string(as_string, dest, input, dquote_end) |
| 4807 | # endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4808 | #endif |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4809 | static int encode_string(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4810 | o_string *dest, |
| 4811 | struct in_str *input, |
Denys Vlasenko | 14e289b | 2010-09-10 10:15:18 +0200 | [diff] [blame] | 4812 | int dquote_end, |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4813 | int process_bkslash) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4814 | { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4815 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4816 | const int process_bkslash = 1; |
| 4817 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4818 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4819 | int next; |
| 4820 | |
| 4821 | again: |
| 4822 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4823 | if (ch != EOF) |
| 4824 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4825 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4826 | debug_printf_parse("encode_string return 1 (ok)\n"); |
| 4827 | return 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4828 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4829 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4830 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4831 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4832 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4833 | } |
| 4834 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4835 | if (ch != '\n') { |
| 4836 | next = i_peek(input); |
| 4837 | } |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 4838 | debug_printf_parse("\" ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4839 | ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4840 | if (process_bkslash && ch == '\\') { |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4841 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4842 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4843 | xfunc_die(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4844 | } |
| 4845 | /* bash: |
| 4846 | * "The backslash retains its special meaning [in "..."] |
| 4847 | * only when followed by one of the following characters: |
| 4848 | * $, `, ", \, or <newline>. A double quote may be quoted |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 4849 | * within double quotes by preceding it with a backslash." |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4850 | * NB: in (unquoted) heredoc, above does not apply to ", |
| 4851 | * therefore we check for it by "next == dquote_end" cond. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4852 | */ |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4853 | if (next == dquote_end || strchr("$`\\\n", next)) { |
Denys Vlasenko | 850b15b | 2010-09-09 12:58:19 +0200 | [diff] [blame] | 4854 | ch = i_getch(input); /* eat next */ |
| 4855 | if (ch == '\n') |
| 4856 | goto again; /* skip \<newline> */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 4857 | } /* else: ch remains == '\\', and we double it below: */ |
| 4858 | o_addqchr(dest, ch); /* \c if c is a glob char, else just c */ |
Denys Vlasenko | 850b15b | 2010-09-09 12:58:19 +0200 | [diff] [blame] | 4859 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4860 | goto again; |
| 4861 | } |
| 4862 | if (ch == '$') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4863 | if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) { |
| 4864 | debug_printf_parse("encode_string return 0: " |
| 4865 | "parse_dollar returned 0 (error)\n"); |
| 4866 | return 0; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4867 | } |
| 4868 | goto again; |
| 4869 | } |
| 4870 | #if ENABLE_HUSH_TICK |
| 4871 | if (ch == '`') { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4872 | //unsigned pos = dest->length; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4873 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4874 | o_addchr(dest, 0x80 | '`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4875 | if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"')) |
| 4876 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4877 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4878 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4879 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4880 | } |
| 4881 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4882 | o_addQchr(dest, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4883 | goto again; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4884 | #undef as_string |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4885 | } |
| 4886 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4887 | /* |
| 4888 | * Scan input until EOF or end_trigger char. |
| 4889 | * Return a list of pipes to execute, or NULL on EOF |
| 4890 | * or if end_trigger character is met. |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 4891 | * On syntax error, exit if shell is not interactive, |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4892 | * reset parsing machinery and start parsing anew, |
| 4893 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4894 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4895 | static struct pipe *parse_stream(char **pstring, |
| 4896 | struct in_str *input, |
| 4897 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4898 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4899 | struct parse_context ctx; |
| 4900 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4901 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4902 | |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4903 | /* Single-quote triggers a bypass of the main loop until its mate is |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4904 | * found. When recursing, quote state is passed in via dest->o_expflags. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4905 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4906 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 4907 | end_trigger ? end_trigger : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4908 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4909 | |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 4910 | /* If very first arg is "" or '', dest.data may end up NULL. |
| 4911 | * Preventing this: */ |
| 4912 | o_addchr(&dest, '\0'); |
| 4913 | dest.length = 0; |
| 4914 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4915 | /* We used to separate words on $IFS here. This was wrong. |
| 4916 | * $IFS is used only for word splitting when $var is expanded, |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4917 | * here we should use blank chars as separators, not $IFS |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4918 | */ |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4919 | |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4920 | if (MAYBE_ASSIGNMENT != 0) |
| 4921 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4922 | initialize_context(&ctx); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4923 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4924 | while (1) { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4925 | const char *is_blank; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4926 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4927 | int ch; |
| 4928 | int next; |
| 4929 | int redir_fd; |
| 4930 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4931 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4932 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4933 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4934 | ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4935 | if (ch == EOF) { |
| 4936 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4937 | |
| 4938 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4939 | syntax_error_unterm_str("here document"); |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4940 | goto parse_error; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4941 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4942 | if (end_trigger == ')') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4943 | syntax_error_unterm_ch('('); |
| 4944 | goto parse_error; |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4945 | } |
Denys Vlasenko | 4224647 | 2016-11-07 16:22:35 +0100 | [diff] [blame] | 4946 | if (end_trigger == '}') { |
| 4947 | syntax_error_unterm_ch('{'); |
| 4948 | goto parse_error; |
| 4949 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4950 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4951 | if (done_word(&dest, &ctx)) { |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4952 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4953 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4954 | o_free(&dest); |
| 4955 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4956 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4957 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4958 | /* (this makes bare "&" cmd a no-op. |
| 4959 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4960 | if (pi->num_cmds == 0 |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 4961 | IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE) |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4962 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4963 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4964 | pi = NULL; |
| 4965 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4966 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 4967 | debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4968 | if (pstring) |
| 4969 | *pstring = ctx.as_string.data; |
| 4970 | else |
| 4971 | o_free_unsafe(&ctx.as_string); |
| 4972 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4973 | debug_leave(); |
| 4974 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4975 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4976 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4977 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4978 | |
| 4979 | next = '\0'; |
| 4980 | if (ch != '\n') |
| 4981 | next = i_peek(input); |
| 4982 | |
| 4983 | is_special = "{}<>;&|()#'" /* special outside of "str" */ |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 4984 | "\\$\"" IF_HUSH_TICK("`") /* always special */ |
| 4985 | SPECIAL_VAR_SYMBOL_STR; |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4986 | /* Are { and } special here? */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 4987 | if (ctx.command->argv /* word [word]{... - non-special */ |
| 4988 | || dest.length /* word{... - non-special */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4989 | || dest.has_quoted_part /* ""{... - non-special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4990 | || (next != ';' /* }; - special */ |
| 4991 | && next != ')' /* }) - special */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4992 | && next != '(' /* {( - special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4993 | && next != '&' /* }& and }&& ... - special */ |
| 4994 | && next != '|' /* }|| ... - special */ |
| 4995 | && !strchr(defifs, next) /* {word - non-special */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 4996 | ) |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4997 | ) { |
| 4998 | /* They are not special, skip "{}" */ |
| 4999 | is_special += 2; |
| 5000 | } |
| 5001 | is_special = strchr(is_special, ch); |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5002 | is_blank = strchr(defifs, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5003 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5004 | if (!is_special && !is_blank) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5005 | ordinary_char: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5006 | o_addQchr(&dest, ch); |
| 5007 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 5008 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5009 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5010 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5011 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5012 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5013 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5014 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5015 | continue; |
| 5016 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5017 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5018 | if (is_blank) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5019 | #if ENABLE_HUSH_LINENO_VAR |
| 5020 | /* Case: |
| 5021 | * "while ...; do<whitespace><newline> |
| 5022 | * cmd ..." |
| 5023 | * would think that "cmd" starts in <whitespace> - |
| 5024 | * i.e., at the previous line. |
| 5025 | * We need to skip all whitespace before newlines. |
| 5026 | */ |
Denys Vlasenko | f786901 | 2018-02-08 19:39:42 +0100 | [diff] [blame] | 5027 | while (ch != '\n') { |
| 5028 | next = i_peek(input); |
| 5029 | if (next != ' ' && next != '\t' && next != '\n') |
| 5030 | break; /* next char is not ws */ |
| 5031 | ch = i_getch(input); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5032 | } |
Denys Vlasenko | f786901 | 2018-02-08 19:39:42 +0100 | [diff] [blame] | 5033 | /* ch == last eaten whitespace char */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5034 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5035 | if (done_word(&dest, &ctx)) { |
| 5036 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5037 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5038 | if (ch == '\n') { |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5039 | /* Is this a case when newline is simply ignored? |
| 5040 | * Some examples: |
| 5041 | * "cmd | <newline> cmd ..." |
| 5042 | * "case ... in <newline> word) ..." |
| 5043 | */ |
| 5044 | if (IS_NULL_CMD(ctx.command) |
| 5045 | && dest.length == 0 && !dest.has_quoted_part |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5046 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5047 | /* This newline can be ignored. But... |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5048 | * Without check #1, interactive shell |
| 5049 | * ignores even bare <newline>, |
| 5050 | * and shows the continuation prompt: |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5051 | * ps1_prompt$ <enter> |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5052 | * ps2> _ <=== wrong, should be ps1 |
| 5053 | * Without check #2, "cmd & <newline>" |
| 5054 | * is similarly mistreated. |
| 5055 | * (BTW, this makes "cmd & cmd" |
| 5056 | * and "cmd && cmd" non-orthogonal. |
| 5057 | * Really, ask yourself, why |
| 5058 | * "cmd && <newline>" doesn't start |
| 5059 | * cmd but waits for more input? |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 5060 | * The only reason is that it might be |
| 5061 | * a "cmd1 && <nl> cmd2 &" construct, |
| 5062 | * cmd1 may need to run in BG). |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5063 | */ |
| 5064 | struct pipe *pi = ctx.list_head; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5065 | if (pi->num_cmds != 0 /* check #1 */ |
| 5066 | && pi->followup != PIPE_BG /* check #2 */ |
| 5067 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5068 | continue; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5069 | } |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5070 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5071 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5072 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5073 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5074 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5075 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5076 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5077 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5078 | heredoc_cnt = 0; |
| 5079 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5080 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5081 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5082 | ch = ';'; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5083 | /* note: if (is_blank) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5084 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5085 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5086 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5087 | |
| 5088 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 5089 | * } is an ordinary char in this case, even inside { cmd; } |
| 5090 | * Pathological example: { ""}; } should exec "}" cmd |
| 5091 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5092 | if (ch == '}') { |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5093 | if (dest.length != 0 /* word} */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5094 | || dest.has_quoted_part /* ""} */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5095 | ) { |
| 5096 | goto ordinary_char; |
| 5097 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5098 | if (!IS_NULL_CMD(ctx.command)) { /* cmd } */ |
| 5099 | /* Generally, there should be semicolon: "cmd; }" |
| 5100 | * However, bash allows to omit it if "cmd" is |
| 5101 | * a group. Examples: |
| 5102 | * { { echo 1; } } |
| 5103 | * {(echo 1)} |
| 5104 | * { echo 0 >&2 | { echo 1; } } |
| 5105 | * { while false; do :; done } |
| 5106 | * { case a in b) ;; esac } |
| 5107 | */ |
| 5108 | if (ctx.command->group) |
| 5109 | goto term_group; |
| 5110 | goto ordinary_char; |
| 5111 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5112 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5113 | /* Can't be an end of {cmd}, skip the check */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5114 | goto skip_end_trigger; |
| 5115 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5116 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5117 | term_group: |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5118 | if (end_trigger && end_trigger == ch |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5119 | && (ch != ';' || heredoc_cnt == 0) |
| 5120 | #if ENABLE_HUSH_CASE |
| 5121 | && (ch != ')' |
| 5122 | || ctx.ctx_res_w != RES_MATCH |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5123 | || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5124 | ) |
| 5125 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5126 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5127 | if (heredoc_cnt) { |
| 5128 | /* This is technically valid: |
| 5129 | * { cat <<HERE; }; echo Ok |
| 5130 | * heredoc |
| 5131 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5132 | * HERE |
| 5133 | * but we don't support this. |
| 5134 | * We require heredoc to be in enclosing {}/(), |
| 5135 | * if any. |
| 5136 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5137 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5138 | goto parse_error; |
| 5139 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5140 | if (done_word(&dest, &ctx)) { |
| 5141 | goto parse_error; |
| 5142 | } |
| 5143 | done_pipe(&ctx, PIPE_SEQ); |
| 5144 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5145 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5146 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5147 | if (!HAS_KEYWORDS |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 5148 | 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] | 5149 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5150 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5151 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 5152 | debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5153 | if (pstring) |
| 5154 | *pstring = ctx.as_string.data; |
| 5155 | else |
| 5156 | o_free_unsafe(&ctx.as_string); |
| 5157 | #endif |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5158 | if (ch != ';' && IS_NULL_PIPE(ctx.list_head)) { |
| 5159 | /* Example: bare "{ }", "()" */ |
| 5160 | G.last_exitcode = 2; /* bash compat */ |
| 5161 | syntax_error_unexpected_ch(ch); |
| 5162 | goto parse_error2; |
| 5163 | } |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5164 | debug_printf_parse("parse_stream return %p: " |
| 5165 | "end_trigger char found\n", |
| 5166 | ctx.list_head); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5167 | debug_leave(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5168 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5169 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5170 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5171 | skip_end_trigger: |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5172 | if (is_blank) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5173 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5174 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5175 | /* Catch <, > before deciding whether this word is |
| 5176 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5177 | switch (ch) { |
| 5178 | case '>': |
| 5179 | redir_fd = redirect_opt_num(&dest); |
| 5180 | if (done_word(&dest, &ctx)) { |
| 5181 | goto parse_error; |
| 5182 | } |
| 5183 | redir_style = REDIRECT_OVERWRITE; |
| 5184 | if (next == '>') { |
| 5185 | redir_style = REDIRECT_APPEND; |
| 5186 | ch = i_getch(input); |
| 5187 | nommu_addchr(&ctx.as_string, ch); |
| 5188 | } |
| 5189 | #if 0 |
| 5190 | else if (next == '(') { |
| 5191 | syntax_error(">(process) not supported"); |
| 5192 | goto parse_error; |
| 5193 | } |
| 5194 | #endif |
| 5195 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5196 | goto parse_error; |
| 5197 | continue; /* back to top of while (1) */ |
| 5198 | case '<': |
| 5199 | redir_fd = redirect_opt_num(&dest); |
| 5200 | if (done_word(&dest, &ctx)) { |
| 5201 | goto parse_error; |
| 5202 | } |
| 5203 | redir_style = REDIRECT_INPUT; |
| 5204 | if (next == '<') { |
| 5205 | redir_style = REDIRECT_HEREDOC; |
| 5206 | heredoc_cnt++; |
| 5207 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5208 | ch = i_getch(input); |
| 5209 | nommu_addchr(&ctx.as_string, ch); |
| 5210 | } else if (next == '>') { |
| 5211 | redir_style = REDIRECT_IO; |
| 5212 | ch = i_getch(input); |
| 5213 | nommu_addchr(&ctx.as_string, ch); |
| 5214 | } |
| 5215 | #if 0 |
| 5216 | else if (next == '(') { |
| 5217 | syntax_error("<(process) not supported"); |
| 5218 | goto parse_error; |
| 5219 | } |
| 5220 | #endif |
| 5221 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5222 | goto parse_error; |
| 5223 | continue; /* back to top of while (1) */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5224 | case '#': |
| 5225 | if (dest.length == 0 && !dest.has_quoted_part) { |
| 5226 | /* skip "#comment" */ |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5227 | /* note: we do not add it to &ctx.as_string */ |
| 5228 | /* TODO: in bash: |
| 5229 | * comment inside $() goes to the next \n, even inside quoted string (!): |
| 5230 | * cmd "$(cmd2 #comment)" - syntax error |
| 5231 | * cmd "`cmd2 #comment`" - ok |
| 5232 | * We accept both (comment ends where command subst ends, in both cases). |
| 5233 | */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5234 | while (1) { |
| 5235 | ch = i_peek(input); |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5236 | if (ch == '\n') { |
| 5237 | nommu_addchr(&ctx.as_string, '\n'); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5238 | break; |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5239 | } |
| 5240 | ch = i_getch(input); |
| 5241 | if (ch == EOF) |
| 5242 | break; |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5243 | } |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5244 | continue; /* back to top of while (1) */ |
| 5245 | } |
| 5246 | break; |
| 5247 | case '\\': |
| 5248 | if (next == '\n') { |
| 5249 | /* It's "\<newline>" */ |
| 5250 | #if !BB_MMU |
| 5251 | /* Remove trailing '\' from ctx.as_string */ |
| 5252 | ctx.as_string.data[--ctx.as_string.length] = '\0'; |
| 5253 | #endif |
| 5254 | ch = i_getch(input); /* eat it */ |
| 5255 | continue; /* back to top of while (1) */ |
| 5256 | } |
| 5257 | break; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5258 | } |
| 5259 | |
| 5260 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5261 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5262 | && !ctx.pending_redirect |
| 5263 | ) { |
| 5264 | /* ch is a special char and thus this word |
| 5265 | * cannot be an assignment */ |
| 5266 | dest.o_assignment = NOT_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5267 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5268 | } |
| 5269 | |
Denys Vlasenko | cbfe6ad | 2009-08-12 19:47:44 +0200 | [diff] [blame] | 5270 | /* Note: nommu_addchr(&ctx.as_string, ch) is already done */ |
| 5271 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5272 | switch (ch) { |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 5273 | case SPECIAL_VAR_SYMBOL: |
| 5274 | /* Convert raw ^C to corresponding special variable reference */ |
| 5275 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5276 | o_addchr(&dest, SPECIAL_VAR_QUOTED_SVS); |
| 5277 | /* fall through */ |
| 5278 | case '#': |
| 5279 | /* non-comment #: "echo a#b" etc */ |
| 5280 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5281 | break; |
| 5282 | case '\\': |
| 5283 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5284 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5285 | xfunc_die(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5286 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5287 | ch = i_getch(input); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5288 | /* note: ch != '\n' (that case does not reach this place) */ |
| 5289 | o_addchr(&dest, '\\'); |
| 5290 | /*nommu_addchr(&ctx.as_string, '\\'); - already done */ |
| 5291 | o_addchr(&dest, ch); |
| 5292 | nommu_addchr(&ctx.as_string, ch); |
| 5293 | /* Example: echo Hello \2>file |
| 5294 | * we need to know that word 2 is quoted */ |
| 5295 | dest.has_quoted_part = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5296 | break; |
| 5297 | case '$': |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5298 | if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5299 | debug_printf_parse("parse_stream parse error: " |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5300 | "parse_dollar returned 0 (error)\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5301 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5302 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5303 | break; |
| 5304 | case '\'': |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5305 | dest.has_quoted_part = 1; |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5306 | if (next == '\'' && !ctx.pending_redirect) { |
| 5307 | insert_empty_quoted_str_marker: |
| 5308 | nommu_addchr(&ctx.as_string, next); |
| 5309 | i_getch(input); /* eat second ' */ |
| 5310 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5311 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5312 | } else { |
| 5313 | while (1) { |
| 5314 | ch = i_getch(input); |
| 5315 | if (ch == EOF) { |
| 5316 | syntax_error_unterm_ch('\''); |
| 5317 | goto parse_error; |
| 5318 | } |
| 5319 | nommu_addchr(&ctx.as_string, ch); |
| 5320 | if (ch == '\'') |
| 5321 | break; |
Denys Vlasenko | 9809a82 | 2018-01-13 19:14:27 +0100 | [diff] [blame] | 5322 | if (ch == SPECIAL_VAR_SYMBOL) { |
| 5323 | /* Convert raw ^C to corresponding special variable reference */ |
| 5324 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5325 | o_addchr(&dest, SPECIAL_VAR_QUOTED_SVS); |
| 5326 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5327 | o_addqchr(&dest, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5328 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5329 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5330 | break; |
| 5331 | case '"': |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5332 | dest.has_quoted_part = 1; |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5333 | if (next == '"' && !ctx.pending_redirect) |
| 5334 | goto insert_empty_quoted_str_marker; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5335 | if (dest.o_assignment == NOT_ASSIGNMENT) |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 5336 | dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5337 | if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1)) |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5338 | goto parse_error; |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 5339 | dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5340 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5341 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5342 | case '`': { |
Denys Vlasenko | 60a9414 | 2011-05-13 20:57:01 +0200 | [diff] [blame] | 5343 | USE_FOR_NOMMU(unsigned pos;) |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5344 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5345 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5346 | o_addchr(&dest, '`'); |
Denys Vlasenko | 60a9414 | 2011-05-13 20:57:01 +0200 | [diff] [blame] | 5347 | USE_FOR_NOMMU(pos = dest.length;) |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5348 | if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0)) |
| 5349 | goto parse_error; |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5350 | # if !BB_MMU |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5351 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5352 | o_addchr(&ctx.as_string, '`'); |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5353 | # endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5354 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5355 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5356 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5357 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5358 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5359 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5360 | #if ENABLE_HUSH_CASE |
| 5361 | case_semi: |
| 5362 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5363 | if (done_word(&dest, &ctx)) { |
| 5364 | goto parse_error; |
| 5365 | } |
| 5366 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5367 | #if ENABLE_HUSH_CASE |
| 5368 | /* Eat multiple semicolons, detect |
| 5369 | * whether it means something special */ |
| 5370 | while (1) { |
| 5371 | ch = i_peek(input); |
| 5372 | if (ch != ';') |
| 5373 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5374 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5375 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5376 | if (ctx.ctx_res_w == RES_CASE_BODY) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5377 | ctx.ctx_dsemicolon = 1; |
| 5378 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5379 | break; |
| 5380 | } |
| 5381 | } |
| 5382 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5383 | new_cmd: |
| 5384 | /* We just finished a cmd. New one may start |
| 5385 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5386 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5387 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5388 | break; |
| 5389 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5390 | if (done_word(&dest, &ctx)) { |
| 5391 | goto parse_error; |
| 5392 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5393 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5394 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5395 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5396 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5397 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5398 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5399 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5400 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5401 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5402 | if (done_word(&dest, &ctx)) { |
| 5403 | goto parse_error; |
| 5404 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5405 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5406 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5407 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5408 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5409 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5410 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5411 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5412 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5413 | } else { |
| 5414 | /* we could pick up a file descriptor choice here |
| 5415 | * with redirect_opt_num(), but bash doesn't do it. |
| 5416 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5417 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5418 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5419 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5420 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5421 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5422 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5423 | if (ctx.ctx_res_w == RES_MATCH |
| 5424 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5425 | && dest.length == 0 /* not word(... */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5426 | && dest.has_quoted_part == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5427 | ) { |
| 5428 | continue; |
| 5429 | } |
| 5430 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5431 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5432 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5433 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5434 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5435 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5436 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5437 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5438 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5439 | goto case_semi; |
| 5440 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5441 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5442 | /* proper use of this character is caught by end_trigger: |
| 5443 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5444 | * and it will match } earlier (not here). */ |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5445 | G.last_exitcode = 2; |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5446 | syntax_error_unexpected_ch(ch); |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5447 | goto parse_error2; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5448 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5449 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5450 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5451 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5452 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5453 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5454 | parse_error: |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5455 | G.last_exitcode = 1; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5456 | parse_error2: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5457 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5458 | struct parse_context *pctx; |
| 5459 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5460 | |
| 5461 | /* Clean up allocated tree. |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 5462 | * Sample for finding leaks on syntax error recovery path. |
| 5463 | * Run it from interactive shell, watch pmap `pidof hush`. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5464 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5465 | * Samples to catch leaks at execution: |
Denys Vlasenko | 5d5a611 | 2016-11-07 19:36:50 +0100 | [diff] [blame] | 5466 | * while if (true | { true;}); then echo ok; fi; do break; done |
| 5467 | * 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] | 5468 | */ |
| 5469 | pctx = &ctx; |
| 5470 | do { |
| 5471 | /* Update pipe/command counts, |
| 5472 | * otherwise freeing may miss some */ |
| 5473 | done_pipe(pctx, PIPE_SEQ); |
| 5474 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5475 | pctx->list_head, pctx); |
| 5476 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5477 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5478 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5479 | #if !BB_MMU |
| 5480 | o_free_unsafe(&pctx->as_string); |
| 5481 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5482 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5483 | if (pctx != &ctx) { |
| 5484 | free(pctx); |
| 5485 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5486 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5487 | } while (HAS_KEYWORDS && pctx); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5488 | |
Denys Vlasenko | a439fa9 | 2011-03-30 19:11:46 +0200 | [diff] [blame] | 5489 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5490 | #if !BB_MMU |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5491 | if (pstring) |
| 5492 | *pstring = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5493 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5494 | debug_leave(); |
| 5495 | return ERR_PTR; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5496 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5497 | } |
| 5498 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5499 | |
| 5500 | /*** Execution routines ***/ |
| 5501 | |
| 5502 | /* Expansion can recurse, need forward decls: */ |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5503 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5504 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 5505 | #define expand_string_to_string(str, do_unbackslash) \ |
| 5506 | expand_string_to_string(str) |
| 5507 | #endif |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 5508 | static char *expand_string_to_string(const char *str, int do_unbackslash); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5509 | #if ENABLE_HUSH_TICK |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5510 | static int process_command_subs(o_string *dest, const char *s); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5511 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5512 | |
| 5513 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 5514 | * all variable references within and returns a pointer to |
| 5515 | * a list of expanded strings, possibly with larger number |
| 5516 | * of strings. (Think VAR="a b"; echo $VAR). |
| 5517 | * This new list is allocated as a single malloc block. |
| 5518 | * NULL-terminated list of char* pointers is at the beginning of it, |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5519 | * followed by strings themselves. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5520 | * Caller can deallocate entire list by single free(list). */ |
| 5521 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5522 | /* A horde of its helpers come first: */ |
| 5523 | |
| 5524 | static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len) |
| 5525 | { |
| 5526 | while (--len >= 0) { |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5527 | char c = *str++; |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5528 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5529 | #if ENABLE_HUSH_BRACE_EXPANSION |
| 5530 | if (c == '{' || c == '}') { |
| 5531 | /* { -> \{, } -> \} */ |
| 5532 | o_addchr(o, '\\'); |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5533 | /* And now we want to add { or } and continue: |
| 5534 | * o_addchr(o, c); |
| 5535 | * continue; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 5536 | * luckily, just falling through achieves this. |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5537 | */ |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5538 | } |
| 5539 | #endif |
| 5540 | o_addchr(o, c); |
| 5541 | if (c == '\\') { |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5542 | /* \z -> \\\z; \<eol> -> \\<eol> */ |
| 5543 | o_addchr(o, '\\'); |
| 5544 | if (len) { |
| 5545 | len--; |
| 5546 | o_addchr(o, '\\'); |
| 5547 | o_addchr(o, *str++); |
| 5548 | } |
| 5549 | } |
| 5550 | } |
| 5551 | } |
| 5552 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5553 | /* Store given string, finalizing the word and starting new one whenever |
| 5554 | * we encounter IFS char(s). This is used for expanding variable values. |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5555 | * End-of-string does NOT finalize word: think about 'echo -$VAR-'. |
| 5556 | * Return in *ended_with_ifs: |
| 5557 | * 1 - ended with IFS char, else 0 (this includes case of empty str). |
| 5558 | */ |
| 5559 | static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5560 | { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5561 | int last_is_ifs = 0; |
| 5562 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5563 | while (1) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5564 | int word_len; |
| 5565 | |
| 5566 | if (!*str) /* EOL - do not finalize word */ |
| 5567 | break; |
| 5568 | word_len = strcspn(str, G.ifs); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5569 | if (word_len) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5570 | /* We have WORD_LEN leading non-IFS chars */ |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5571 | if (!(output->o_expflags & EXP_FLAG_GLOB)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5572 | o_addblock(output, str, word_len); |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5573 | } else { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5574 | /* Protect backslashes against globbing up :) |
Denys Vlasenko | a769e02 | 2010-09-10 10:12:34 +0200 | [diff] [blame] | 5575 | * Example: "v='\*'; echo b$v" prints "b\*" |
| 5576 | * (and does not try to glob on "*") |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5577 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5578 | o_addblock_duplicate_backslash(output, str, word_len); |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5579 | /*/ Why can't we do it easier? */ |
| 5580 | /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */ |
| 5581 | /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */ |
| 5582 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5583 | last_is_ifs = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5584 | str += word_len; |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5585 | if (!*str) /* EOL - do not finalize word */ |
| 5586 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5587 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5588 | |
| 5589 | /* We know str here points to at least one IFS char */ |
| 5590 | last_is_ifs = 1; |
| 5591 | str += strspn(str, G.ifs); /* skip IFS chars */ |
| 5592 | if (!*str) /* EOL - do not finalize word */ |
| 5593 | break; |
| 5594 | |
| 5595 | /* Start new word... but not always! */ |
| 5596 | /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5597 | if (output->has_quoted_part |
| 5598 | /* Case "v=' a'; echo $v": |
| 5599 | * here nothing precedes the space in $v expansion, |
| 5600 | * therefore we should not finish the word |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5601 | * (IOW: if there *is* word to finalize, only then do it): |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5602 | */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5603 | || (n > 0 && output->data[output->length - 1]) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5604 | ) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5605 | o_addchr(output, '\0'); |
| 5606 | debug_print_list("expand_on_ifs", output, n); |
| 5607 | n = o_save_ptr(output, n); |
| 5608 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5609 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5610 | |
| 5611 | if (ended_with_ifs) |
| 5612 | *ended_with_ifs = last_is_ifs; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5613 | debug_print_list("expand_on_ifs[1]", output, n); |
| 5614 | return n; |
| 5615 | } |
| 5616 | |
| 5617 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 5618 | * they are in double quotes, with the exception that they are not :). |
| 5619 | * Just the rules are similar: "expand only $var and `cmd`" |
| 5620 | * |
| 5621 | * Returns malloced string. |
| 5622 | * As an optimization, we return NULL if expansion is not needed. |
| 5623 | */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5624 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5625 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 5626 | #define encode_then_expand_string(str, process_bkslash, do_unbackslash) \ |
| 5627 | encode_then_expand_string(str) |
| 5628 | #endif |
| 5629 | static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5630 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5631 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 5632 | enum { do_unbackslash = 1 }; |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5633 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5634 | char *exp_str; |
| 5635 | struct in_str input; |
| 5636 | o_string dest = NULL_O_STRING; |
| 5637 | |
| 5638 | if (!strchr(str, '$') |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 5639 | && !strchr(str, '\\') |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5640 | #if ENABLE_HUSH_TICK |
| 5641 | && !strchr(str, '`') |
| 5642 | #endif |
| 5643 | ) { |
| 5644 | return NULL; |
| 5645 | } |
| 5646 | |
| 5647 | /* We need to expand. Example: |
| 5648 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 5649 | */ |
| 5650 | setup_string_in_str(&input, str); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5651 | encode_string(NULL, &dest, &input, EOF, process_bkslash); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5652 | //TODO: error check (encode_string returns 0 on error)? |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5653 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 5654 | exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5655 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 5656 | o_free_unsafe(&dest); |
| 5657 | return exp_str; |
| 5658 | } |
| 5659 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 5660 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5661 | static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5662 | { |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5663 | arith_state_t math_state; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5664 | arith_t res; |
| 5665 | char *exp_str; |
| 5666 | |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5667 | math_state.lookupvar = get_local_var_value; |
| 5668 | math_state.setvar = set_local_var_from_halves; |
| 5669 | //math_state.endofname = endofname; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5670 | exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5671 | res = arith(&math_state, exp_str ? exp_str : arg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5672 | free(exp_str); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5673 | if (errmsg_p) |
| 5674 | *errmsg_p = math_state.errmsg; |
| 5675 | if (math_state.errmsg) |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5676 | msg_and_die_if_script(math_state.errmsg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5677 | return res; |
| 5678 | } |
| 5679 | #endif |
| 5680 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5681 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5682 | /* ${var/[/]pattern[/repl]} helpers */ |
| 5683 | static char *strstr_pattern(char *val, const char *pattern, int *size) |
| 5684 | { |
| 5685 | while (1) { |
| 5686 | char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF); |
| 5687 | debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end); |
| 5688 | if (end) { |
| 5689 | *size = end - val; |
| 5690 | return val; |
| 5691 | } |
| 5692 | if (*val == '\0') |
| 5693 | return NULL; |
| 5694 | /* Optimization: if "*pat" did not match the start of "string", |
| 5695 | * we know that "tring", "ring" etc will not match too: |
| 5696 | */ |
| 5697 | if (pattern[0] == '*') |
| 5698 | return NULL; |
| 5699 | val++; |
| 5700 | } |
| 5701 | } |
| 5702 | static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op) |
| 5703 | { |
| 5704 | char *result = NULL; |
| 5705 | unsigned res_len = 0; |
| 5706 | unsigned repl_len = strlen(repl); |
| 5707 | |
Denys Vlasenko | cba79a8 | 2018-01-25 14:07:40 +0100 | [diff] [blame] | 5708 | /* Null pattern never matches, including if "var" is empty */ |
| 5709 | if (!pattern[0]) |
| 5710 | return result; /* NULL, no replaces happened */ |
| 5711 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5712 | while (1) { |
| 5713 | int size; |
| 5714 | char *s = strstr_pattern(val, pattern, &size); |
| 5715 | if (!s) |
| 5716 | break; |
| 5717 | |
| 5718 | result = xrealloc(result, res_len + (s - val) + repl_len + 1); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5719 | strcpy(mempcpy(result + res_len, val, s - val), repl); |
| 5720 | res_len += (s - val) + repl_len; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5721 | debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result); |
| 5722 | |
| 5723 | val = s + size; |
| 5724 | if (exp_op == '/') |
| 5725 | break; |
| 5726 | } |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5727 | if (*val && result) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5728 | result = xrealloc(result, res_len + strlen(val) + 1); |
| 5729 | strcpy(result + res_len, val); |
| 5730 | debug_printf_varexp("val:'%s' result:'%s'\n", val, result); |
| 5731 | } |
| 5732 | debug_printf_varexp("result:'%s'\n", result); |
| 5733 | return result; |
| 5734 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5735 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5736 | |
| 5737 | /* Helper: |
| 5738 | * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct. |
| 5739 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5740 | static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5741 | { |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 5742 | const char *val; |
| 5743 | char *to_be_freed; |
| 5744 | char *p; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5745 | char *var; |
| 5746 | char first_char; |
| 5747 | char exp_op; |
| 5748 | char exp_save = exp_save; /* for compiler */ |
| 5749 | char *exp_saveptr; /* points to expansion operator */ |
| 5750 | char *exp_word = exp_word; /* for compiler */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5751 | char arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5752 | |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 5753 | val = NULL; |
| 5754 | to_be_freed = NULL; |
| 5755 | p = *pp; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5756 | *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5757 | var = arg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5758 | exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5759 | arg0 = arg[0]; |
| 5760 | first_char = arg[0] = arg0 & 0x7f; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5761 | exp_op = 0; |
| 5762 | |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 5763 | if (first_char == '#' && arg[1] /* ${#...} but not ${#} */ |
| 5764 | && (!exp_saveptr /* and ( not(${#<op_char>...}) */ |
| 5765 | || (arg[2] == '\0' && strchr(SPECIAL_VARS_STR, arg[1])) /* or ${#C} "len of $C" ) */ |
| 5766 | ) /* NB: skipping ^^^specvar check mishandles ${#::2} */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5767 | ) { |
| 5768 | /* It must be length operator: ${#var} */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5769 | var++; |
| 5770 | exp_op = 'L'; |
| 5771 | } else { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5772 | /* Maybe handle parameter expansion */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5773 | if (exp_saveptr /* if 2nd char is one of expansion operators */ |
| 5774 | && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */ |
| 5775 | ) { |
| 5776 | /* ${?:0}, ${#[:]%0} etc */ |
| 5777 | exp_saveptr = var + 1; |
| 5778 | } else { |
| 5779 | /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */ |
| 5780 | exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS); |
| 5781 | } |
| 5782 | exp_op = exp_save = *exp_saveptr; |
| 5783 | if (exp_op) { |
| 5784 | exp_word = exp_saveptr + 1; |
| 5785 | if (exp_op == ':') { |
| 5786 | exp_op = *exp_word++; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5787 | //TODO: try ${var:} and ${var:bogus} in non-bash config |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5788 | if (BASH_SUBSTR |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5789 | && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op)) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5790 | ) { |
| 5791 | /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */ |
| 5792 | exp_op = ':'; |
| 5793 | exp_word--; |
| 5794 | } |
| 5795 | } |
| 5796 | *exp_saveptr = '\0'; |
| 5797 | } /* else: it's not an expansion op, but bare ${var} */ |
| 5798 | } |
| 5799 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5800 | /* Look up the variable in question */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5801 | if (isdigit(var[0])) { |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5802 | /* parse_dollar should have vetted var for us */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5803 | int n = xatoi_positive(var); |
| 5804 | if (n < G.global_argc) |
| 5805 | val = G.global_argv[n]; |
| 5806 | /* else val remains NULL: $N with too big N */ |
| 5807 | } else { |
| 5808 | switch (var[0]) { |
| 5809 | case '$': /* pid */ |
| 5810 | val = utoa(G.root_pid); |
| 5811 | break; |
| 5812 | case '!': /* bg pid */ |
| 5813 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : ""; |
| 5814 | break; |
| 5815 | case '?': /* exitcode */ |
| 5816 | val = utoa(G.last_exitcode); |
| 5817 | break; |
| 5818 | case '#': /* argc */ |
| 5819 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 5820 | break; |
| 5821 | default: |
| 5822 | val = get_local_var_value(var); |
| 5823 | } |
| 5824 | } |
| 5825 | |
| 5826 | /* Handle any expansions */ |
| 5827 | if (exp_op == 'L') { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5828 | reinit_unicode_for_hush(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5829 | debug_printf_expand("expand: length(%s)=", val); |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5830 | val = utoa(val ? unicode_strlen(val) : 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5831 | debug_printf_expand("%s\n", val); |
| 5832 | } else if (exp_op) { |
| 5833 | if (exp_op == '%' || exp_op == '#') { |
| 5834 | /* Standard-mandated substring removal ops: |
| 5835 | * ${parameter%word} - remove smallest suffix pattern |
| 5836 | * ${parameter%%word} - remove largest suffix pattern |
| 5837 | * ${parameter#word} - remove smallest prefix pattern |
| 5838 | * ${parameter##word} - remove largest prefix pattern |
| 5839 | * |
| 5840 | * Word is expanded to produce a glob pattern. |
| 5841 | * Then var's value is matched to it and matching part removed. |
| 5842 | */ |
| 5843 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5844 | char *t; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5845 | char *exp_exp_word; |
| 5846 | char *loc; |
| 5847 | unsigned scan_flags = pick_scan(exp_op, *exp_word); |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 5848 | if (exp_op == *exp_word) /* ## or %% */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5849 | exp_word++; |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5850 | debug_printf_expand("expand: exp_word:'%s'\n", exp_word); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 5851 | /* |
| 5852 | * process_bkslash:1 unbackslash:1 breaks this: |
| 5853 | * a='a\\'; echo ${a%\\\\} # correct output is: a |
| 5854 | * process_bkslash:1 unbackslash:0 breaks this: |
| 5855 | * a='a}'; echo ${a%\}} # correct output is: a |
| 5856 | */ |
| 5857 | exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5858 | if (exp_exp_word) |
| 5859 | exp_word = exp_exp_word; |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5860 | debug_printf_expand("expand: exp_exp_word:'%s'\n", exp_word); |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5861 | /* HACK ALERT. We depend here on the fact that |
| 5862 | * G.global_argv and results of utoa and get_local_var_value |
| 5863 | * are actually in writable memory: |
| 5864 | * scan_and_match momentarily stores NULs there. */ |
| 5865 | t = (char*)val; |
| 5866 | loc = scan_and_match(t, exp_word, scan_flags); |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5867 | debug_printf_expand("op:%c str:'%s' pat:'%s' res:'%s'\n", exp_op, t, exp_word, loc); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5868 | free(exp_exp_word); |
| 5869 | if (loc) { /* match was found */ |
| 5870 | if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5871 | val = loc; /* take right part */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5872 | else /* %[%] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5873 | val = to_be_freed = xstrndup(val, loc - val); /* left */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5874 | } |
| 5875 | } |
| 5876 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5877 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5878 | else if (exp_op == '/' || exp_op == '\\') { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5879 | /* It's ${var/[/]pattern[/repl]} thing. |
| 5880 | * Note that in encoded form it has TWO parts: |
| 5881 | * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5882 | * and if // is used, it is encoded as \: |
| 5883 | * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5884 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5885 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5886 | /* pattern uses non-standard expansion. |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5887 | * repl should be unbackslashed and globbed |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5888 | * by the usual expansion rules: |
| 5889 | * >az; >bz; |
| 5890 | * v='a bz'; echo "${v/a*z/a*z}" prints "a*z" |
| 5891 | * v='a bz'; echo "${v/a*z/\z}" prints "\z" |
| 5892 | * v='a bz'; echo ${v/a*z/a*z} prints "az" |
| 5893 | * v='a bz'; echo ${v/a*z/\z} prints "z" |
| 5894 | * (note that a*z _pattern_ is never globbed!) |
| 5895 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5896 | char *pattern, *repl, *t; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5897 | pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5898 | if (!pattern) |
| 5899 | pattern = xstrdup(exp_word); |
| 5900 | debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern); |
| 5901 | *p++ = SPECIAL_VAR_SYMBOL; |
| 5902 | exp_word = p; |
| 5903 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5904 | *p = '\0'; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5905 | repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5906 | debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl); |
| 5907 | /* HACK ALERT. We depend here on the fact that |
| 5908 | * G.global_argv and results of utoa and get_local_var_value |
| 5909 | * are actually in writable memory: |
| 5910 | * replace_pattern momentarily stores NULs there. */ |
| 5911 | t = (char*)val; |
| 5912 | to_be_freed = replace_pattern(t, |
| 5913 | pattern, |
| 5914 | (repl ? repl : exp_word), |
| 5915 | exp_op); |
| 5916 | if (to_be_freed) /* at least one replace happened */ |
| 5917 | val = to_be_freed; |
| 5918 | free(pattern); |
| 5919 | free(repl); |
Denys Vlasenko | cba79a8 | 2018-01-25 14:07:40 +0100 | [diff] [blame] | 5920 | } else { |
| 5921 | /* Empty variable always gives nothing */ |
| 5922 | // "v=''; echo ${v/*/w}" prints "", not "w" |
| 5923 | /* Just skip "replace" part */ |
| 5924 | *p++ = SPECIAL_VAR_SYMBOL; |
| 5925 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5926 | *p = '\0'; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5927 | } |
| 5928 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5929 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5930 | else if (exp_op == ':') { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5931 | #if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5932 | /* It's ${var:N[:M]} bashism. |
| 5933 | * Note that in encoded form it has TWO parts: |
| 5934 | * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL> |
| 5935 | */ |
| 5936 | arith_t beg, len; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5937 | const char *errmsg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5938 | |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5939 | beg = expand_and_evaluate_arith(exp_word, &errmsg); |
| 5940 | if (errmsg) |
| 5941 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5942 | debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg); |
| 5943 | *p++ = SPECIAL_VAR_SYMBOL; |
| 5944 | exp_word = p; |
| 5945 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5946 | *p = '\0'; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5947 | len = expand_and_evaluate_arith(exp_word, &errmsg); |
| 5948 | if (errmsg) |
| 5949 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5950 | debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5951 | if (beg < 0) { |
| 5952 | /* negative beg counts from the end */ |
| 5953 | beg = (arith_t)strlen(val) + beg; |
| 5954 | if (beg < 0) /* ${v: -999999} is "" */ |
| 5955 | beg = len = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5956 | } |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5957 | debug_printf_varexp("from val:'%s'\n", val); |
| 5958 | if (len < 0) { |
| 5959 | /* in bash, len=-n means strlen()-n */ |
| 5960 | len = (arith_t)strlen(val) - beg + len; |
| 5961 | if (len < 0) /* bash compat */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5962 | msg_and_die_if_script("%s: substring expression < 0", var); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5963 | } |
Denys Vlasenko | 0ba80e4 | 2017-07-17 16:50:20 +0200 | [diff] [blame] | 5964 | if (len <= 0 || !val || beg >= strlen(val)) { |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5965 | arith_err: |
| 5966 | val = NULL; |
| 5967 | } else { |
| 5968 | /* Paranoia. What if user entered 9999999999999 |
| 5969 | * which fits in arith_t but not int? */ |
| 5970 | if (len >= INT_MAX) |
| 5971 | len = INT_MAX; |
| 5972 | val = to_be_freed = xstrndup(val + beg, len); |
| 5973 | } |
| 5974 | debug_printf_varexp("val:'%s'\n", val); |
| 5975 | #else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5976 | msg_and_die_if_script("malformed ${%s:...}", var); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5977 | val = NULL; |
| 5978 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5979 | } else { /* one of "-=+?" */ |
| 5980 | /* Standard-mandated substitution ops: |
| 5981 | * ${var?word} - indicate error if unset |
| 5982 | * If var is unset, word (or a message indicating it is unset |
| 5983 | * if word is null) is written to standard error |
| 5984 | * and the shell exits with a non-zero exit status. |
| 5985 | * Otherwise, the value of var is substituted. |
| 5986 | * ${var-word} - use default value |
| 5987 | * If var is unset, word is substituted. |
| 5988 | * ${var=word} - assign and use default value |
| 5989 | * If var is unset, word is assigned to var. |
| 5990 | * In all cases, final value of var is substituted. |
| 5991 | * ${var+word} - use alternative value |
| 5992 | * If var is unset, null is substituted. |
| 5993 | * Otherwise, word is substituted. |
| 5994 | * |
| 5995 | * Word is subjected to tilde expansion, parameter expansion, |
| 5996 | * command substitution, and arithmetic expansion. |
| 5997 | * If word is not needed, it is not expanded. |
| 5998 | * |
| 5999 | * Colon forms (${var:-word}, ${var:=word} etc) do the same, |
| 6000 | * but also treat null var as if it is unset. |
| 6001 | */ |
| 6002 | int use_word = (!val || ((exp_save == ':') && !val[0])); |
| 6003 | if (exp_op == '+') |
| 6004 | use_word = !use_word; |
| 6005 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 6006 | (exp_save == ':') ? "true" : "false", use_word); |
| 6007 | if (use_word) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6008 | to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6009 | if (to_be_freed) |
| 6010 | exp_word = to_be_freed; |
| 6011 | if (exp_op == '?') { |
| 6012 | /* mimic bash message */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6013 | msg_and_die_if_script("%s: %s", |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6014 | var, |
Denys Vlasenko | 645c697 | 2017-07-25 15:18:57 +0200 | [diff] [blame] | 6015 | exp_word[0] |
| 6016 | ? exp_word |
| 6017 | : "parameter null or not set" |
| 6018 | /* ash has more specific messages, a-la: */ |
| 6019 | /*: (exp_save == ':' ? "parameter null or not set" : "parameter not set")*/ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6020 | ); |
| 6021 | //TODO: how interactive bash aborts expansion mid-command? |
| 6022 | } else { |
| 6023 | val = exp_word; |
| 6024 | } |
| 6025 | |
| 6026 | if (exp_op == '=') { |
| 6027 | /* ${var=[word]} or ${var:=[word]} */ |
| 6028 | if (isdigit(var[0]) || var[0] == '#') { |
| 6029 | /* mimic bash message */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6030 | msg_and_die_if_script("$%s: cannot assign in this way", var); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6031 | val = NULL; |
| 6032 | } else { |
| 6033 | char *new_var = xasprintf("%s=%s", var, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 6034 | set_local_var(new_var, /*flag:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6035 | } |
| 6036 | } |
| 6037 | } |
| 6038 | } /* one of "-=+?" */ |
| 6039 | |
| 6040 | *exp_saveptr = exp_save; |
| 6041 | } /* if (exp_op) */ |
| 6042 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6043 | arg[0] = arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6044 | |
| 6045 | *pp = p; |
| 6046 | *to_be_freed_pp = to_be_freed; |
| 6047 | return val; |
| 6048 | } |
| 6049 | |
| 6050 | /* Expand all variable references in given string, adding words to list[] |
| 6051 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 6052 | * to be filled). This routine is extremely tricky: has to deal with |
| 6053 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 6054 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6055 | static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6056 | { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6057 | /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6058 | * expansion of right-hand side of assignment == 1-element expand. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6059 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6060 | char cant_be_null = 0; /* only bit 0x80 matters */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6061 | int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6062 | char *p; |
| 6063 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6064 | debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg, |
| 6065 | !!(output->o_expflags & EXP_FLAG_SINGLEWORD)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6066 | debug_print_list("expand_vars_to_list", output, n); |
| 6067 | n = o_save_ptr(output, n); |
| 6068 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 6069 | |
| 6070 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 6071 | char first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6072 | char *to_be_freed = NULL; |
| 6073 | const char *val = NULL; |
| 6074 | #if ENABLE_HUSH_TICK |
| 6075 | o_string subst_result = NULL_O_STRING; |
| 6076 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 6077 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6078 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 6079 | #endif |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6080 | |
| 6081 | if (ended_in_ifs) { |
| 6082 | o_addchr(output, '\0'); |
| 6083 | n = o_save_ptr(output, n); |
| 6084 | ended_in_ifs = 0; |
| 6085 | } |
| 6086 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6087 | o_addblock(output, arg, p - arg); |
| 6088 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 6089 | arg = ++p; |
| 6090 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 6091 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6092 | /* Fetch special var name (if it is indeed one of them) |
| 6093 | * and quote bit, force the bit on if singleword expansion - |
| 6094 | * important for not getting v=$@ expand to many words. */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6095 | first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6096 | |
| 6097 | /* Is this variable quoted and thus expansion can't be null? |
| 6098 | * "$@" is special. Even if quoted, it can still |
| 6099 | * expand to nothing (not even an empty string), |
| 6100 | * thus it is excluded. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6101 | if ((first_ch & 0x7f) != '@') |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6102 | cant_be_null |= first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6103 | |
| 6104 | switch (first_ch & 0x7f) { |
| 6105 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 6106 | case '*': |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6107 | case '@': { |
| 6108 | int i; |
| 6109 | if (!G.global_argv[1]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6110 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6111 | i = 1; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6112 | cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6113 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6114 | while (G.global_argv[i]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6115 | n = expand_on_ifs(NULL, output, n, G.global_argv[i]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6116 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 6117 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 6118 | /* this argv[] is not empty and not last: |
| 6119 | * put terminating NUL, start new word */ |
| 6120 | o_addchr(output, '\0'); |
| 6121 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 6122 | n = o_save_ptr(output, n); |
| 6123 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 6124 | } |
| 6125 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6126 | } else |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6127 | /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....' |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6128 | * and in this case should treat it like '$*' - see 'else...' below */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6129 | if (first_ch == ('@'|0x80) /* quoted $@ */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6130 | && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6131 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6132 | while (1) { |
| 6133 | o_addQstr(output, G.global_argv[i]); |
| 6134 | if (++i >= G.global_argc) |
| 6135 | break; |
| 6136 | o_addchr(output, '\0'); |
| 6137 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 6138 | n = o_save_ptr(output, n); |
| 6139 | } |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6140 | } else { /* quoted $* (or v="$@" case): add as one word */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6141 | while (1) { |
| 6142 | o_addQstr(output, G.global_argv[i]); |
| 6143 | if (!G.global_argv[++i]) |
| 6144 | break; |
| 6145 | if (G.ifs[0]) |
| 6146 | o_addchr(output, G.ifs[0]); |
| 6147 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6148 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6149 | } |
| 6150 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6151 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6152 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 6153 | /* "Empty variable", used to make "" etc to not disappear */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6154 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6155 | arg++; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6156 | cant_be_null = 0x80; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6157 | break; |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 6158 | case SPECIAL_VAR_QUOTED_SVS: |
| 6159 | /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_QUOTED_SVS><SPECIAL_VAR_SYMBOL> */ |
| 6160 | arg++; |
| 6161 | val = SPECIAL_VAR_SYMBOL_STR; |
| 6162 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6163 | #if ENABLE_HUSH_TICK |
| 6164 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6165 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6166 | arg++; |
| 6167 | /* Can't just stuff it into output o_string, |
| 6168 | * expanded result may need to be globbed |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 6169 | * and $IFS-split */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6170 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
| 6171 | G.last_exitcode = process_command_subs(&subst_result, arg); |
| 6172 | debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data); |
| 6173 | val = subst_result.data; |
| 6174 | goto store_val; |
| 6175 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 6176 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6177 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
| 6178 | arith_t res; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6179 | |
| 6180 | arg++; /* skip '+' */ |
| 6181 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
| 6182 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 6183 | res = expand_and_evaluate_arith(arg, NULL); |
Denys Vlasenko | bed7c81 | 2010-09-16 11:50:46 +0200 | [diff] [blame] | 6184 | debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res); |
| 6185 | sprintf(arith_buf, ARITH_FMT, res); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6186 | val = arith_buf; |
| 6187 | break; |
| 6188 | } |
| 6189 | #endif |
| 6190 | default: |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6191 | val = expand_one_var(&to_be_freed, arg, &p); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6192 | IF_HUSH_TICK(store_val:) |
| 6193 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6194 | debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, |
| 6195 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6196 | if (val && val[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6197 | n = expand_on_ifs(&ended_in_ifs, output, n, val); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6198 | val = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6199 | } |
| 6200 | } else { /* quoted $VAR, val will be appended below */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6201 | output->has_quoted_part = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6202 | debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, |
| 6203 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6204 | } |
| 6205 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6206 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
| 6207 | |
| 6208 | if (val && val[0]) { |
| 6209 | o_addQstr(output, val); |
| 6210 | } |
| 6211 | free(to_be_freed); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6212 | |
| 6213 | /* Restore NULL'ed SPECIAL_VAR_SYMBOL. |
| 6214 | * Do the check to avoid writing to a const string. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6215 | if (*p != SPECIAL_VAR_SYMBOL) |
| 6216 | *p = SPECIAL_VAR_SYMBOL; |
| 6217 | |
| 6218 | #if ENABLE_HUSH_TICK |
| 6219 | o_free(&subst_result); |
| 6220 | #endif |
| 6221 | arg = ++p; |
| 6222 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 6223 | |
| 6224 | if (arg[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6225 | if (ended_in_ifs) { |
| 6226 | o_addchr(output, '\0'); |
| 6227 | n = o_save_ptr(output, n); |
| 6228 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6229 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 6230 | /* this part is literal, and it was already pre-quoted |
| 6231 | * if needed (much earlier), do not use o_addQstr here! */ |
| 6232 | o_addstr_with_NUL(output, arg); |
| 6233 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 6234 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6235 | && !(cant_be_null & 0x80) /* and all vars were not quoted. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6236 | ) { |
| 6237 | n--; |
| 6238 | /* allow to reuse list[n] later without re-growth */ |
| 6239 | output->has_empty_slot = 1; |
| 6240 | } else { |
| 6241 | o_addchr(output, '\0'); |
| 6242 | } |
| 6243 | |
| 6244 | return n; |
| 6245 | } |
| 6246 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6247 | static char **expand_variables(char **argv, unsigned expflags) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6248 | { |
| 6249 | int n; |
| 6250 | char **list; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6251 | o_string output = NULL_O_STRING; |
| 6252 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6253 | output.o_expflags = expflags; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6254 | |
| 6255 | n = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6256 | while (*argv) { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6257 | n = expand_vars_to_list(&output, n, *argv); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6258 | argv++; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6259 | } |
| 6260 | debug_print_list("expand_variables", &output, n); |
| 6261 | |
| 6262 | /* output.data (malloced in one block) gets returned in "list" */ |
| 6263 | list = o_finalize_list(&output, n); |
| 6264 | debug_print_strings("expand_variables[1]", list); |
| 6265 | return list; |
| 6266 | } |
| 6267 | |
| 6268 | static char **expand_strvec_to_strvec(char **argv) |
| 6269 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6270 | return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6271 | } |
| 6272 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 6273 | #if BASH_TEST2 |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6274 | static char **expand_strvec_to_strvec_singleword_noglob(char **argv) |
| 6275 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6276 | return expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6277 | } |
| 6278 | #endif |
| 6279 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 6280 | /* Used for expansion of right hand of assignments, |
| 6281 | * $((...)), heredocs, variable espansion parts. |
| 6282 | * |
| 6283 | * NB: should NOT do globbing! |
| 6284 | * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*" |
| 6285 | */ |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6286 | static char *expand_string_to_string(const char *str, int do_unbackslash) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6287 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 6288 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6289 | const int do_unbackslash = 1; |
| 6290 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6291 | char *argv[2], **list; |
| 6292 | |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6293 | debug_printf_expand("string_to_string<='%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6294 | /* This is generally an optimization, but it also |
| 6295 | * handles "", which otherwise trips over !list[0] check below. |
| 6296 | * (is this ever happens that we actually get str="" here?) |
| 6297 | */ |
| 6298 | if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) { |
| 6299 | //TODO: Can use on strings with \ too, just unbackslash() them? |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6300 | debug_printf_expand("string_to_string(fast)=>'%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6301 | return xstrdup(str); |
| 6302 | } |
| 6303 | |
| 6304 | argv[0] = (char*)str; |
| 6305 | argv[1] = NULL; |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6306 | list = expand_variables(argv, do_unbackslash |
| 6307 | ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD |
| 6308 | : EXP_FLAG_SINGLEWORD |
| 6309 | ); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6310 | if (HUSH_DEBUG) |
| 6311 | if (!list[0] || list[1]) |
| 6312 | bb_error_msg_and_die("BUG in varexp2"); |
| 6313 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 6314 | overlapping_strcpy((char*)list, list[0]); |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6315 | if (do_unbackslash) |
| 6316 | unbackslash((char*)list); |
| 6317 | debug_printf_expand("string_to_string=>'%s'\n", (char*)list); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6318 | return (char*)list; |
| 6319 | } |
| 6320 | |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 6321 | #if ENABLE_HUSH_CASE |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6322 | static char* expand_strvec_to_string(char **argv) |
| 6323 | { |
| 6324 | char **list; |
| 6325 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6326 | list = expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6327 | /* Convert all NULs to spaces */ |
| 6328 | if (list[0]) { |
| 6329 | int n = 1; |
| 6330 | while (list[n]) { |
| 6331 | if (HUSH_DEBUG) |
| 6332 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 6333 | bb_error_msg_and_die("BUG in varexp3"); |
| 6334 | /* bash uses ' ' regardless of $IFS contents */ |
| 6335 | list[n][-1] = ' '; |
| 6336 | n++; |
| 6337 | } |
| 6338 | } |
Denys Vlasenko | 78c9c73 | 2016-09-29 01:44:17 +0200 | [diff] [blame] | 6339 | overlapping_strcpy((char*)list, list[0] ? list[0] : ""); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6340 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 6341 | return (char*)list; |
| 6342 | } |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 6343 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6344 | |
| 6345 | static char **expand_assignments(char **argv, int count) |
| 6346 | { |
| 6347 | int i; |
| 6348 | char **p; |
| 6349 | |
| 6350 | G.expanded_assignments = p = NULL; |
| 6351 | /* Expand assignments into one string each */ |
| 6352 | for (i = 0; i < count; i++) { |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6353 | G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6354 | } |
| 6355 | G.expanded_assignments = NULL; |
| 6356 | return p; |
| 6357 | } |
| 6358 | |
| 6359 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6360 | static void switch_off_special_sigs(unsigned mask) |
| 6361 | { |
| 6362 | unsigned sig = 0; |
| 6363 | while ((mask >>= 1) != 0) { |
| 6364 | sig++; |
| 6365 | if (!(mask & 1)) |
| 6366 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6367 | #if ENABLE_HUSH_TRAP |
| 6368 | if (G_traps) { |
| 6369 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6370 | /* trap is '', has to remain SIG_IGN */ |
| 6371 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6372 | free(G_traps[sig]); |
| 6373 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6374 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6375 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6376 | /* We are here only if no trap or trap was not '' */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6377 | install_sighandler(sig, SIG_DFL); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6378 | } |
| 6379 | } |
| 6380 | |
Denys Vlasenko | b347df9 | 2011-08-09 22:49:15 +0200 | [diff] [blame] | 6381 | #if BB_MMU |
| 6382 | /* never called */ |
| 6383 | void re_execute_shell(char ***to_free, const char *s, |
| 6384 | char *g_argv0, char **g_argv, |
| 6385 | char **builtin_argv) NORETURN; |
| 6386 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6387 | static void reset_traps_to_defaults(void) |
| 6388 | { |
| 6389 | /* This function is always called in a child shell |
| 6390 | * after fork (not vfork, NOMMU doesn't use this function). |
| 6391 | */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6392 | IF_HUSH_TRAP(unsigned sig;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6393 | unsigned mask; |
| 6394 | |
| 6395 | /* Child shells are not interactive. |
| 6396 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 6397 | * Testcase: (while :; do :; done) + ^Z should background. |
| 6398 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
| 6399 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6400 | mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6401 | if (!G_traps && !mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6402 | return; /* already no traps and no special sigs */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6403 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6404 | /* Switch off special sigs */ |
| 6405 | switch_off_special_sigs(mask); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6406 | # if ENABLE_HUSH_JOB |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6407 | G_fatal_sig_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6408 | # endif |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 6409 | G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 6410 | /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS |
| 6411 | * remain set in G.special_sig_mask */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6412 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6413 | # if ENABLE_HUSH_TRAP |
| 6414 | if (!G_traps) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6415 | return; |
| 6416 | |
| 6417 | /* Reset all sigs to default except ones with empty traps */ |
| 6418 | for (sig = 0; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6419 | if (!G_traps[sig]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6420 | continue; /* no trap: nothing to do */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6421 | if (!G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6422 | continue; /* empty trap: has to remain SIG_IGN */ |
| 6423 | /* sig has non-empty trap, reset it: */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6424 | free(G_traps[sig]); |
| 6425 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6426 | /* There is no signal for trap 0 (EXIT) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6427 | if (sig == 0) |
| 6428 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6429 | install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6430 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6431 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6432 | } |
| 6433 | |
| 6434 | #else /* !BB_MMU */ |
| 6435 | |
| 6436 | static void re_execute_shell(char ***to_free, const char *s, |
| 6437 | char *g_argv0, char **g_argv, |
| 6438 | char **builtin_argv) NORETURN; |
| 6439 | static void re_execute_shell(char ***to_free, const char *s, |
| 6440 | char *g_argv0, char **g_argv, |
| 6441 | char **builtin_argv) |
| 6442 | { |
| 6443 | # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x")) |
| 6444 | /* delims + 2 * (number of bytes in printed hex numbers) */ |
| 6445 | char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)]; |
| 6446 | char *heredoc_argv[4]; |
| 6447 | struct variable *cur; |
| 6448 | # if ENABLE_HUSH_FUNCTIONS |
| 6449 | struct function *funcp; |
| 6450 | # endif |
| 6451 | char **argv, **pp; |
| 6452 | unsigned cnt; |
| 6453 | unsigned long long empty_trap_mask; |
| 6454 | |
| 6455 | if (!g_argv0) { /* heredoc */ |
| 6456 | argv = heredoc_argv; |
| 6457 | argv[0] = (char *) G.argv0_for_re_execing; |
| 6458 | argv[1] = (char *) "-<"; |
| 6459 | argv[2] = (char *) s; |
| 6460 | argv[3] = NULL; |
| 6461 | pp = &argv[3]; /* used as pointer to empty environment */ |
| 6462 | goto do_exec; |
| 6463 | } |
| 6464 | |
| 6465 | cnt = 0; |
| 6466 | pp = builtin_argv; |
| 6467 | if (pp) while (*pp++) |
| 6468 | cnt++; |
| 6469 | |
| 6470 | empty_trap_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6471 | if (G_traps) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6472 | int sig; |
| 6473 | for (sig = 1; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6474 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6475 | empty_trap_mask |= 1LL << sig; |
| 6476 | } |
| 6477 | } |
| 6478 | |
| 6479 | sprintf(param_buf, NOMMU_HACK_FMT |
| 6480 | , (unsigned) G.root_pid |
| 6481 | , (unsigned) G.root_ppid |
| 6482 | , (unsigned) G.last_bg_pid |
| 6483 | , (unsigned) G.last_exitcode |
| 6484 | , cnt |
| 6485 | , empty_trap_mask |
| 6486 | IF_HUSH_LOOPS(, G.depth_of_loop) |
| 6487 | ); |
| 6488 | # undef NOMMU_HACK_FMT |
| 6489 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...> |
| 6490 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
| 6491 | */ |
| 6492 | cnt += 6; |
| 6493 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6494 | if (!cur->flg_export || cur->flg_read_only) |
| 6495 | cnt += 2; |
| 6496 | } |
| 6497 | # if ENABLE_HUSH_FUNCTIONS |
| 6498 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 6499 | cnt += 3; |
| 6500 | # endif |
| 6501 | pp = g_argv; |
| 6502 | while (*pp++) |
| 6503 | cnt++; |
| 6504 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
| 6505 | *pp++ = (char *) G.argv0_for_re_execing; |
| 6506 | *pp++ = param_buf; |
| 6507 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6508 | if (strcmp(cur->varstr, hush_version_str) == 0) |
| 6509 | continue; |
| 6510 | if (cur->flg_read_only) { |
| 6511 | *pp++ = (char *) "-R"; |
| 6512 | *pp++ = cur->varstr; |
| 6513 | } else if (!cur->flg_export) { |
| 6514 | *pp++ = (char *) "-V"; |
| 6515 | *pp++ = cur->varstr; |
| 6516 | } |
| 6517 | } |
| 6518 | # if ENABLE_HUSH_FUNCTIONS |
| 6519 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 6520 | *pp++ = (char *) "-F"; |
| 6521 | *pp++ = funcp->name; |
| 6522 | *pp++ = funcp->body_as_string; |
| 6523 | } |
| 6524 | # endif |
| 6525 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 6526 | * |
| 6527 | * However, POSIX says that subshells reset signals with traps |
| 6528 | * to SIG_DFL. |
| 6529 | * I tested bash-3.2 and it not only does that with true subshells |
| 6530 | * of the form ( list ), but with any forked children shells. |
| 6531 | * I set trap "echo W" WINCH; and then tried: |
| 6532 | * |
| 6533 | * { echo 1; sleep 20; echo 2; } & |
| 6534 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 6535 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 6536 | * |
| 6537 | * In all these cases sending SIGWINCH to the child shell |
| 6538 | * did not run the trap. If I add trap "echo V" WINCH; |
| 6539 | * _inside_ group (just before echo 1), it works. |
| 6540 | * |
| 6541 | * I conclude it means we don't need to pass active traps here. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6542 | */ |
| 6543 | *pp++ = (char *) "-c"; |
| 6544 | *pp++ = (char *) s; |
| 6545 | if (builtin_argv) { |
| 6546 | while (*++builtin_argv) |
| 6547 | *pp++ = *builtin_argv; |
| 6548 | *pp++ = (char *) ""; |
| 6549 | } |
| 6550 | *pp++ = g_argv0; |
| 6551 | while (*g_argv) |
| 6552 | *pp++ = *g_argv++; |
| 6553 | /* *pp = NULL; - is already there */ |
| 6554 | pp = environ; |
| 6555 | |
| 6556 | do_exec: |
| 6557 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 6558 | /* Don't propagate SIG_IGN to the child */ |
| 6559 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 6560 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6561 | execve(bb_busybox_exec_path, argv, pp); |
| 6562 | /* Fallback. Useful for init=/bin/hush usage etc */ |
| 6563 | if (argv[0][0] == '/') |
| 6564 | execve(argv[0], argv, pp); |
| 6565 | xfunc_error_retval = 127; |
| 6566 | bb_error_msg_and_die("can't re-execute the shell"); |
| 6567 | } |
| 6568 | #endif /* !BB_MMU */ |
| 6569 | |
| 6570 | |
| 6571 | static int run_and_free_list(struct pipe *pi); |
| 6572 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6573 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6574 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 6575 | * end_trigger controls how often we stop parsing |
| 6576 | * NUL: parse all, execute, return |
| 6577 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 6578 | */ |
| 6579 | 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] | 6580 | { |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6581 | /* Why we need empty flag? |
| 6582 | * An obscure corner case "false; ``; echo $?": |
| 6583 | * empty command in `` should still set $? to 0. |
| 6584 | * But we can't just set $? to 0 at the start, |
| 6585 | * this breaks "false; echo `echo $?`" case. |
| 6586 | */ |
| 6587 | bool empty = 1; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6588 | while (1) { |
| 6589 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 6590 | |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 6591 | #if ENABLE_HUSH_INTERACTIVE |
| 6592 | if (end_trigger == ';') |
| 6593 | inp->promptmode = 0; /* PS1 */ |
| 6594 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6595 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 6596 | if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */ |
| 6597 | /* If we are in "big" script |
| 6598 | * (not in `cmd` or something similar)... |
| 6599 | */ |
| 6600 | if (pipe_list == ERR_PTR && end_trigger == ';') { |
| 6601 | /* Discard cached input (rest of line) */ |
| 6602 | int ch = inp->last_char; |
| 6603 | while (ch != EOF && ch != '\n') { |
| 6604 | //bb_error_msg("Discarded:'%c'", ch); |
| 6605 | ch = i_getch(inp); |
| 6606 | } |
| 6607 | /* Force prompt */ |
| 6608 | inp->p = NULL; |
| 6609 | /* This stream isn't empty */ |
| 6610 | empty = 0; |
| 6611 | continue; |
| 6612 | } |
| 6613 | if (!pipe_list && empty) |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6614 | G.last_exitcode = 0; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6615 | break; |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6616 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6617 | debug_print_tree(pipe_list, 0); |
| 6618 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 6619 | run_and_free_list(pipe_list); |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6620 | empty = 0; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 6621 | if (G_flag_return_in_progress == 1) |
Denys Vlasenko | 68d5cb5 | 2011-03-24 02:50:03 +0100 | [diff] [blame] | 6622 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6623 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6624 | } |
| 6625 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6626 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6627 | { |
| 6628 | struct in_str input; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6629 | //IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;) |
| 6630 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6631 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6632 | parse_and_run_stream(&input, '\0'); |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6633 | //IF_HUSH_LINENO_VAR(G.lineno = sv;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6634 | } |
| 6635 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6636 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6637 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6638 | struct in_str input; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6639 | IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;) |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 6640 | |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6641 | IF_HUSH_LINENO_VAR(G.lineno = 1;) |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 6642 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6643 | parse_and_run_stream(&input, ';'); |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6644 | IF_HUSH_LINENO_VAR(G.lineno = sv;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6645 | } |
| 6646 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6647 | #if ENABLE_HUSH_TICK |
| 6648 | static FILE *generate_stream_from_string(const char *s, pid_t *pid_p) |
| 6649 | { |
| 6650 | pid_t pid; |
| 6651 | int channel[2]; |
| 6652 | # if !BB_MMU |
| 6653 | char **to_free = NULL; |
| 6654 | # endif |
| 6655 | |
| 6656 | xpipe(channel); |
| 6657 | pid = BB_MMU ? xfork() : xvfork(); |
| 6658 | if (pid == 0) { /* child */ |
| 6659 | disable_restore_tty_pgrp_on_exit(); |
| 6660 | /* Process substitution is not considered to be usual |
| 6661 | * 'command execution'. |
| 6662 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 6663 | */ |
| 6664 | bb_signals(0 |
| 6665 | + (1 << SIGTSTP) |
| 6666 | + (1 << SIGTTIN) |
| 6667 | + (1 << SIGTTOU) |
| 6668 | , SIG_IGN); |
| 6669 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 6670 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 6671 | xmove_fd(channel[1], 1); |
| 6672 | /* Prevent it from trying to handle ctrl-z etc */ |
| 6673 | IF_HUSH_JOB(G.run_list_level = 1;) |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6674 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6675 | /* Awful hack for `trap` or $(trap). |
| 6676 | * |
| 6677 | * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html |
| 6678 | * contains an example where "trap" is executed in a subshell: |
| 6679 | * |
| 6680 | * save_traps=$(trap) |
| 6681 | * ... |
| 6682 | * eval "$save_traps" |
| 6683 | * |
| 6684 | * Standard does not say that "trap" in subshell shall print |
| 6685 | * parent shell's traps. It only says that its output |
| 6686 | * must have suitable form, but then, in the above example |
| 6687 | * (which is not supposed to be normative), it implies that. |
| 6688 | * |
| 6689 | * bash (and probably other shell) does implement it |
| 6690 | * (traps are reset to defaults, but "trap" still shows them), |
| 6691 | * but as a result, "trap" logic is hopelessly messed up: |
| 6692 | * |
| 6693 | * # trap |
| 6694 | * trap -- 'echo Ho' SIGWINCH <--- we have a handler |
| 6695 | * # (trap) <--- trap is in subshell - no output (correct, traps are reset) |
| 6696 | * # true | trap <--- trap is in subshell - no output (ditto) |
| 6697 | * # echo `true | trap` <--- in subshell - output (but traps are reset!) |
| 6698 | * trap -- 'echo Ho' SIGWINCH |
| 6699 | * # echo `(trap)` <--- in subshell in subshell - output |
| 6700 | * trap -- 'echo Ho' SIGWINCH |
| 6701 | * # echo `true | (trap)` <--- in subshell in subshell in subshell - output! |
| 6702 | * trap -- 'echo Ho' SIGWINCH |
| 6703 | * |
| 6704 | * The rules when to forget and when to not forget traps |
| 6705 | * get really complex and nonsensical. |
| 6706 | * |
| 6707 | * Our solution: ONLY bare $(trap) or `trap` is special. |
| 6708 | */ |
| 6709 | s = skip_whitespace(s); |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 6710 | if (is_prefixed_with(s, "trap") |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6711 | && skip_whitespace(s + 4)[0] == '\0' |
| 6712 | ) { |
| 6713 | static const char *const argv[] = { NULL, NULL }; |
| 6714 | builtin_trap((char**)argv); |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 6715 | fflush_all(); /* important */ |
| 6716 | _exit(0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6717 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6718 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6719 | # if BB_MMU |
| 6720 | reset_traps_to_defaults(); |
| 6721 | parse_and_run_string(s); |
| 6722 | _exit(G.last_exitcode); |
| 6723 | # else |
| 6724 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
| 6725 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 6726 | * huge=`cat BIG` # was blocking here forever |
| 6727 | * echo OK |
| 6728 | */ |
| 6729 | re_execute_shell(&to_free, |
| 6730 | s, |
| 6731 | G.global_argv[0], |
| 6732 | G.global_argv + 1, |
| 6733 | NULL); |
| 6734 | # endif |
| 6735 | } |
| 6736 | |
| 6737 | /* parent */ |
| 6738 | *pid_p = pid; |
| 6739 | # if ENABLE_HUSH_FAST |
| 6740 | G.count_SIGCHLD++; |
| 6741 | //bb_error_msg("[%d] fork in generate_stream_from_string:" |
| 6742 | // " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", |
| 6743 | // getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6744 | # endif |
| 6745 | enable_restore_tty_pgrp_on_exit(); |
| 6746 | # if !BB_MMU |
| 6747 | free(to_free); |
| 6748 | # endif |
| 6749 | close(channel[1]); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6750 | return remember_FILE(xfdopen_for_read(channel[0])); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6751 | } |
| 6752 | |
| 6753 | /* Return code is exit status of the process that is run. */ |
| 6754 | static int process_command_subs(o_string *dest, const char *s) |
| 6755 | { |
| 6756 | FILE *fp; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6757 | pid_t pid; |
| 6758 | int status, ch, eol_cnt; |
| 6759 | |
| 6760 | fp = generate_stream_from_string(s, &pid); |
| 6761 | |
| 6762 | /* Now send results of command back into original context */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6763 | eol_cnt = 0; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6764 | while ((ch = getc(fp)) != EOF) { |
| 6765 | if (ch == '\0') |
| 6766 | continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6767 | if (ch == '\n') { |
| 6768 | eol_cnt++; |
| 6769 | continue; |
| 6770 | } |
| 6771 | while (eol_cnt) { |
| 6772 | o_addchr(dest, '\n'); |
| 6773 | eol_cnt--; |
| 6774 | } |
| 6775 | o_addQchr(dest, ch); |
| 6776 | } |
| 6777 | |
| 6778 | debug_printf("done reading from `cmd` pipe, closing it\n"); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6779 | fclose_and_forget(fp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6780 | /* We need to extract exitcode. Test case |
| 6781 | * "true; echo `sleep 1; false` $?" |
| 6782 | * should print 1 */ |
| 6783 | safe_waitpid(pid, &status, 0); |
| 6784 | debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status)); |
| 6785 | return WEXITSTATUS(status); |
| 6786 | } |
| 6787 | #endif /* ENABLE_HUSH_TICK */ |
| 6788 | |
| 6789 | |
| 6790 | static void setup_heredoc(struct redir_struct *redir) |
| 6791 | { |
| 6792 | struct fd_pair pair; |
| 6793 | pid_t pid; |
| 6794 | int len, written; |
| 6795 | /* the _body_ of heredoc (misleading field name) */ |
| 6796 | const char *heredoc = redir->rd_filename; |
| 6797 | char *expanded; |
| 6798 | #if !BB_MMU |
| 6799 | char **to_free; |
| 6800 | #endif |
| 6801 | |
| 6802 | expanded = NULL; |
| 6803 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6804 | expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6805 | if (expanded) |
| 6806 | heredoc = expanded; |
| 6807 | } |
| 6808 | len = strlen(heredoc); |
| 6809 | |
| 6810 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
| 6811 | xpiped_pair(pair); |
| 6812 | xmove_fd(pair.rd, redir->rd_fd); |
| 6813 | |
| 6814 | /* Try writing without forking. Newer kernels have |
| 6815 | * dynamically growing pipes. Must use non-blocking write! */ |
| 6816 | ndelay_on(pair.wr); |
| 6817 | while (1) { |
| 6818 | written = write(pair.wr, heredoc, len); |
| 6819 | if (written <= 0) |
| 6820 | break; |
| 6821 | len -= written; |
| 6822 | if (len == 0) { |
| 6823 | close(pair.wr); |
| 6824 | free(expanded); |
| 6825 | return; |
| 6826 | } |
| 6827 | heredoc += written; |
| 6828 | } |
| 6829 | ndelay_off(pair.wr); |
| 6830 | |
| 6831 | /* Okay, pipe buffer was not big enough */ |
| 6832 | /* Note: we must not create a stray child (bastard? :) |
| 6833 | * for the unsuspecting parent process. Child creates a grandchild |
| 6834 | * and exits before parent execs the process which consumes heredoc |
| 6835 | * (that exec happens after we return from this function) */ |
| 6836 | #if !BB_MMU |
| 6837 | to_free = NULL; |
| 6838 | #endif |
| 6839 | pid = xvfork(); |
| 6840 | if (pid == 0) { |
| 6841 | /* child */ |
| 6842 | disable_restore_tty_pgrp_on_exit(); |
| 6843 | pid = BB_MMU ? xfork() : xvfork(); |
| 6844 | if (pid != 0) |
| 6845 | _exit(0); |
| 6846 | /* grandchild */ |
| 6847 | close(redir->rd_fd); /* read side of the pipe */ |
| 6848 | #if BB_MMU |
| 6849 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
| 6850 | _exit(0); |
| 6851 | #else |
| 6852 | /* Delegate blocking writes to another process */ |
| 6853 | xmove_fd(pair.wr, STDOUT_FILENO); |
| 6854 | re_execute_shell(&to_free, heredoc, NULL, NULL, NULL); |
| 6855 | #endif |
| 6856 | } |
| 6857 | /* parent */ |
| 6858 | #if ENABLE_HUSH_FAST |
| 6859 | G.count_SIGCHLD++; |
| 6860 | //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6861 | #endif |
| 6862 | enable_restore_tty_pgrp_on_exit(); |
| 6863 | #if !BB_MMU |
| 6864 | free(to_free); |
| 6865 | #endif |
| 6866 | close(pair.wr); |
| 6867 | free(expanded); |
| 6868 | wait(NULL); /* wait till child has died */ |
| 6869 | } |
| 6870 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6871 | struct squirrel { |
| 6872 | int orig_fd; |
| 6873 | int moved_to; |
| 6874 | /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */ |
| 6875 | /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */ |
| 6876 | }; |
| 6877 | |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 6878 | static struct squirrel *append_squirrel(struct squirrel *sq, int i, int orig, int moved) |
| 6879 | { |
| 6880 | sq = xrealloc(sq, (i + 2) * sizeof(sq[0])); |
| 6881 | sq[i].orig_fd = orig; |
| 6882 | sq[i].moved_to = moved; |
| 6883 | sq[i+1].orig_fd = -1; /* end marker */ |
| 6884 | return sq; |
| 6885 | } |
| 6886 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6887 | static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd) |
| 6888 | { |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 6889 | int moved_to; |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 6890 | int i; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6891 | |
Denys Vlasenko | d16e612 | 2017-08-11 15:41:39 +0200 | [diff] [blame] | 6892 | i = 0; |
| 6893 | if (sq) for (; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6894 | /* If we collide with an already moved fd... */ |
| 6895 | if (fd == sq[i].moved_to) { |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 6896 | sq[i].moved_to = dup_CLOEXEC(sq[i].moved_to, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6897 | debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to); |
| 6898 | if (sq[i].moved_to < 0) /* what? */ |
| 6899 | xfunc_die(); |
| 6900 | return sq; |
| 6901 | } |
| 6902 | if (fd == sq[i].orig_fd) { |
| 6903 | /* Example: echo Hello >/dev/null 1>&2 */ |
| 6904 | debug_printf_redir("redirect_fd %d: already moved\n", fd); |
| 6905 | return sq; |
| 6906 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6907 | } |
| 6908 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6909 | /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */ |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 6910 | moved_to = dup_CLOEXEC(fd, avoid_fd); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 6911 | debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, moved_to); |
| 6912 | if (moved_to < 0 && errno != EBADF) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6913 | xfunc_die(); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 6914 | return append_squirrel(sq, i, fd, moved_to); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6915 | } |
| 6916 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 6917 | static struct squirrel *add_squirrel_closed(struct squirrel *sq, int fd) |
| 6918 | { |
| 6919 | int i; |
| 6920 | |
Denys Vlasenko | d16e612 | 2017-08-11 15:41:39 +0200 | [diff] [blame] | 6921 | i = 0; |
| 6922 | if (sq) for (; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 6923 | /* If we collide with an already moved fd... */ |
| 6924 | if (fd == sq[i].orig_fd) { |
| 6925 | /* Examples: |
| 6926 | * "echo 3>FILE 3>&- 3>FILE" |
| 6927 | * "echo 3>&- 3>FILE" |
| 6928 | * No need for last redirect to insert |
| 6929 | * another "need to close 3" indicator. |
| 6930 | */ |
| 6931 | debug_printf_redir("redirect_fd %d: already moved or closed\n", fd); |
| 6932 | return sq; |
| 6933 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 6934 | } |
| 6935 | |
| 6936 | debug_printf_redir("redirect_fd %d: previous fd was closed\n", fd); |
| 6937 | return append_squirrel(sq, i, fd, -1); |
| 6938 | } |
| 6939 | |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6940 | /* fd: redirect wants this fd to be used (e.g. 3>file). |
| 6941 | * Move all conflicting internally used fds, |
| 6942 | * and remember them so that we can restore them later. |
| 6943 | */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 6944 | static int save_fd_on_redirect(int fd, int avoid_fd, struct squirrel **sqp) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6945 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6946 | if (avoid_fd < 9) /* the important case here is that it can be -1 */ |
| 6947 | avoid_fd = 9; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6948 | |
| 6949 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 6950 | if (fd == G.interactive_fd) { |
| 6951 | /* Testcase: "ls -l /proc/$$/fd 255>&-" should work */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 6952 | G.interactive_fd = xdup_CLOEXEC_and_close(G.interactive_fd, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6953 | debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd); |
| 6954 | return 1; /* "we closed fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6955 | } |
| 6956 | #endif |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6957 | /* Are we called from setup_redirects(squirrel==NULL)? Two cases: |
| 6958 | * (1) Redirect in a forked child. No need to save FILEs' fds, |
| 6959 | * we aren't going to use them anymore, ok to trash. |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6960 | * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds, |
| 6961 | * but how are we doing to restore them? |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6962 | * "fileno(fd) = new_fd" can't be done. |
| 6963 | */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6964 | if (!sqp) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6965 | return 0; |
| 6966 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6967 | /* If this one of script's fds? */ |
| 6968 | if (save_FILEs_on_redirect(fd, avoid_fd)) |
| 6969 | return 1; /* yes. "we closed fd" */ |
| 6970 | |
| 6971 | /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */ |
| 6972 | *sqp = add_squirrel(*sqp, fd, avoid_fd); |
| 6973 | return 0; /* "we did not close fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6974 | } |
| 6975 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6976 | static void restore_redirects(struct squirrel *sq) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6977 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6978 | if (sq) { |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 6979 | int i; |
| 6980 | for (i = 0; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6981 | if (sq[i].moved_to >= 0) { |
| 6982 | /* We simply die on error */ |
| 6983 | debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd); |
| 6984 | xmove_fd(sq[i].moved_to, sq[i].orig_fd); |
| 6985 | } else { |
| 6986 | /* cmd1 9>FILE; cmd2_should_see_fd9_closed */ |
| 6987 | debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd); |
| 6988 | close(sq[i].orig_fd); |
| 6989 | } |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6990 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6991 | free(sq); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6992 | } |
| 6993 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6994 | /* If moved, G.interactive_fd stays on new fd, not restoring it */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6995 | |
| 6996 | restore_redirected_FILEs(); |
| 6997 | } |
| 6998 | |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 6999 | #if ENABLE_FEATURE_SH_STANDALONE && BB_MMU |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7000 | static void close_saved_fds_and_FILE_fds(void) |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 7001 | { |
| 7002 | if (G_interactive_fd) |
| 7003 | close(G_interactive_fd); |
| 7004 | close_all_FILE_list(); |
| 7005 | } |
| 7006 | #endif |
| 7007 | |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7008 | static int internally_opened_fd(int fd, struct squirrel *sq) |
| 7009 | { |
| 7010 | int i; |
| 7011 | |
| 7012 | #if ENABLE_HUSH_INTERACTIVE |
| 7013 | if (fd == G.interactive_fd) |
| 7014 | return 1; |
| 7015 | #endif |
| 7016 | /* If this one of script's fds? */ |
| 7017 | if (fd_in_FILEs(fd)) |
| 7018 | return 1; |
| 7019 | |
| 7020 | if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) { |
| 7021 | if (fd == sq[i].moved_to) |
| 7022 | return 1; |
| 7023 | } |
| 7024 | return 0; |
| 7025 | } |
| 7026 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7027 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 7028 | * and stderr if they are redirected. */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7029 | static int setup_redirects(struct command *prog, struct squirrel **sqp) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7030 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7031 | struct redir_struct *redir; |
| 7032 | |
| 7033 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7034 | int newfd; |
| 7035 | int closed; |
| 7036 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7037 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7038 | /* "rd_fd<<HERE" case */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7039 | save_fd_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7040 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 7041 | * of the heredoc */ |
| 7042 | debug_printf_parse("set heredoc '%s'\n", |
| 7043 | redir->rd_filename); |
| 7044 | setup_heredoc(redir); |
| 7045 | continue; |
| 7046 | } |
| 7047 | |
| 7048 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7049 | /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7050 | char *p; |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7051 | int mode; |
| 7052 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7053 | if (redir->rd_filename == NULL) { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 7054 | /* |
| 7055 | * Examples: |
| 7056 | * "cmd >" (no filename) |
| 7057 | * "cmd > <file" (2nd redirect starts too early) |
| 7058 | */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 7059 | syntax_error("invalid redirect"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7060 | continue; |
| 7061 | } |
| 7062 | mode = redir_table[redir->rd_type].mode; |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 7063 | p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1); |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7064 | newfd = open_or_warn(p, mode); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7065 | free(p); |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7066 | if (newfd < 0) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7067 | /* Error message from open_or_warn can be lost |
| 7068 | * if stderr has been redirected, but bash |
| 7069 | * and ash both lose it as well |
| 7070 | * (though zsh doesn't!) |
| 7071 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7072 | return 1; |
| 7073 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7074 | if (newfd == redir->rd_fd && sqp) { |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7075 | /* open() gave us precisely the fd we wanted. |
| 7076 | * This means that this fd was not busy |
| 7077 | * (not opened to anywhere). |
| 7078 | * Remember to close it on restore: |
| 7079 | */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7080 | *sqp = add_squirrel_closed(*sqp, newfd); |
| 7081 | debug_printf_redir("redir to previously closed fd %d\n", newfd); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7082 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7083 | } else { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7084 | /* "rd_fd>&rd_dup" or "rd_fd>&-" case */ |
| 7085 | newfd = redir->rd_dup; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7086 | } |
| 7087 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7088 | if (newfd == redir->rd_fd) |
| 7089 | continue; |
| 7090 | |
| 7091 | /* if "N>FILE": move newfd to redir->rd_fd */ |
| 7092 | /* if "N>&M": dup newfd to redir->rd_fd */ |
| 7093 | /* if "N>&-": close redir->rd_fd (newfd is REDIRFD_CLOSE) */ |
| 7094 | |
| 7095 | closed = save_fd_on_redirect(redir->rd_fd, /*avoid:*/ newfd, sqp); |
| 7096 | if (newfd == REDIRFD_CLOSE) { |
| 7097 | /* "N>&-" means "close me" */ |
| 7098 | if (!closed) { |
| 7099 | /* ^^^ optimization: saving may already |
| 7100 | * have closed it. If not... */ |
| 7101 | close(redir->rd_fd); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7102 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7103 | /* Sometimes we do another close on restore, getting EBADF. |
| 7104 | * Consider "echo 3>FILE 3>&-" |
| 7105 | * first redirect remembers "need to close 3", |
| 7106 | * and second redirect closes 3! Restore code then closes 3 again. |
| 7107 | */ |
| 7108 | } else { |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7109 | /* if newfd is a script fd or saved fd, simulate EBADF */ |
| 7110 | if (internally_opened_fd(newfd, sqp ? *sqp : NULL)) { |
| 7111 | //errno = EBADF; |
| 7112 | //bb_perror_msg_and_die("can't duplicate file descriptor"); |
| 7113 | newfd = -1; /* same effect as code above */ |
| 7114 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7115 | xdup2(newfd, redir->rd_fd); |
| 7116 | if (redir->rd_dup == REDIRFD_TO_FILE) |
| 7117 | /* "rd_fd > FILE" */ |
| 7118 | close(newfd); |
| 7119 | /* else: "rd_fd > rd_dup" */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7120 | } |
| 7121 | } |
| 7122 | return 0; |
| 7123 | } |
| 7124 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7125 | static char *find_in_path(const char *arg) |
| 7126 | { |
| 7127 | char *ret = NULL; |
| 7128 | const char *PATH = get_local_var_value("PATH"); |
| 7129 | |
| 7130 | if (!PATH) |
| 7131 | return NULL; |
| 7132 | |
| 7133 | while (1) { |
| 7134 | const char *end = strchrnul(PATH, ':'); |
| 7135 | int sz = end - PATH; /* must be int! */ |
| 7136 | |
| 7137 | free(ret); |
| 7138 | if (sz != 0) { |
| 7139 | ret = xasprintf("%.*s/%s", sz, PATH, arg); |
| 7140 | } else { |
| 7141 | /* We have xxx::yyyy in $PATH, |
| 7142 | * it means "use current dir" */ |
| 7143 | ret = xstrdup(arg); |
| 7144 | } |
| 7145 | if (access(ret, F_OK) == 0) |
| 7146 | break; |
| 7147 | |
| 7148 | if (*end == '\0') { |
| 7149 | free(ret); |
| 7150 | return NULL; |
| 7151 | } |
| 7152 | PATH = end + 1; |
| 7153 | } |
| 7154 | |
| 7155 | return ret; |
| 7156 | } |
| 7157 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7158 | static const struct built_in_command *find_builtin_helper(const char *name, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7159 | const struct built_in_command *x, |
| 7160 | const struct built_in_command *end) |
| 7161 | { |
| 7162 | while (x != end) { |
| 7163 | if (strcmp(name, x->b_cmd) != 0) { |
| 7164 | x++; |
| 7165 | continue; |
| 7166 | } |
| 7167 | debug_printf_exec("found builtin '%s'\n", name); |
| 7168 | return x; |
| 7169 | } |
| 7170 | return NULL; |
| 7171 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7172 | static const struct built_in_command *find_builtin1(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7173 | { |
| 7174 | return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]); |
| 7175 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7176 | static const struct built_in_command *find_builtin(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7177 | { |
| 7178 | const struct built_in_command *x = find_builtin1(name); |
| 7179 | if (x) |
| 7180 | return x; |
| 7181 | return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]); |
| 7182 | } |
| 7183 | |
| 7184 | #if ENABLE_HUSH_FUNCTIONS |
| 7185 | static struct function **find_function_slot(const char *name) |
| 7186 | { |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7187 | struct function *funcp; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7188 | struct function **funcpp = &G.top_func; |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7189 | |
| 7190 | while ((funcp = *funcpp) != NULL) { |
| 7191 | if (strcmp(name, funcp->name) == 0) { |
| 7192 | debug_printf_exec("found function '%s'\n", name); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7193 | break; |
| 7194 | } |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7195 | funcpp = &funcp->next; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7196 | } |
| 7197 | return funcpp; |
| 7198 | } |
| 7199 | |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7200 | static ALWAYS_INLINE const struct function *find_function(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7201 | { |
| 7202 | const struct function *funcp = *find_function_slot(name); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7203 | return funcp; |
| 7204 | } |
| 7205 | |
| 7206 | /* Note: takes ownership on name ptr */ |
| 7207 | static struct function *new_function(char *name) |
| 7208 | { |
| 7209 | struct function **funcpp = find_function_slot(name); |
| 7210 | struct function *funcp = *funcpp; |
| 7211 | |
| 7212 | if (funcp != NULL) { |
| 7213 | struct command *cmd = funcp->parent_cmd; |
| 7214 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 7215 | if (!cmd) { |
| 7216 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 7217 | free(funcp->name); |
| 7218 | /* Note: if !funcp->body, do not free body_as_string! |
| 7219 | * This is a special case of "-F name body" function: |
| 7220 | * body_as_string was not malloced! */ |
| 7221 | if (funcp->body) { |
| 7222 | free_pipe_list(funcp->body); |
| 7223 | # if !BB_MMU |
| 7224 | free(funcp->body_as_string); |
| 7225 | # endif |
| 7226 | } |
| 7227 | } else { |
| 7228 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 7229 | cmd->argv[0] = funcp->name; |
| 7230 | cmd->group = funcp->body; |
| 7231 | # if !BB_MMU |
| 7232 | cmd->group_as_string = funcp->body_as_string; |
| 7233 | # endif |
| 7234 | } |
| 7235 | } else { |
| 7236 | debug_printf_exec("remembering new function '%s'\n", name); |
| 7237 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 7238 | /*funcp->next = NULL;*/ |
| 7239 | } |
| 7240 | |
| 7241 | funcp->name = name; |
| 7242 | return funcp; |
| 7243 | } |
| 7244 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7245 | # if ENABLE_HUSH_UNSET |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7246 | static void unset_func(const char *name) |
| 7247 | { |
| 7248 | struct function **funcpp = find_function_slot(name); |
| 7249 | struct function *funcp = *funcpp; |
| 7250 | |
| 7251 | if (funcp != NULL) { |
| 7252 | debug_printf_exec("freeing function '%s'\n", funcp->name); |
| 7253 | *funcpp = funcp->next; |
| 7254 | /* funcp is unlinked now, deleting it. |
| 7255 | * Note: if !funcp->body, the function was created by |
| 7256 | * "-F name body", do not free ->body_as_string |
| 7257 | * and ->name as they were not malloced. */ |
| 7258 | if (funcp->body) { |
| 7259 | free_pipe_list(funcp->body); |
| 7260 | free(funcp->name); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7261 | # if !BB_MMU |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7262 | free(funcp->body_as_string); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7263 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7264 | } |
| 7265 | free(funcp); |
| 7266 | } |
| 7267 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7268 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7269 | |
| 7270 | # if BB_MMU |
| 7271 | #define exec_function(to_free, funcp, argv) \ |
| 7272 | exec_function(funcp, argv) |
| 7273 | # endif |
| 7274 | static void exec_function(char ***to_free, |
| 7275 | const struct function *funcp, |
| 7276 | char **argv) NORETURN; |
| 7277 | static void exec_function(char ***to_free, |
| 7278 | const struct function *funcp, |
| 7279 | char **argv) |
| 7280 | { |
| 7281 | # if BB_MMU |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 7282 | int n; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7283 | |
| 7284 | argv[0] = G.global_argv[0]; |
| 7285 | G.global_argv = argv; |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 7286 | G.global_argc = n = 1 + string_array_len(argv + 1); |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7287 | |
| 7288 | // Example when we are here: "cmd | func" |
| 7289 | // func will run with saved-redirect fds open. |
| 7290 | // $ f() { echo /proc/self/fd/*; } |
| 7291 | // $ true | f |
| 7292 | // /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 |
| 7293 | // stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ DIR fd for glob |
| 7294 | // Same in script: |
| 7295 | // $ . ./SCRIPT |
| 7296 | // /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 /proc/self/fd/4 |
| 7297 | // stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ opened ./SCRIPT DIR fd for glob |
| 7298 | // They are CLOEXEC so external programs won't see them, but |
| 7299 | // for "more correctness" we might want to close those extra fds here: |
| 7300 | //? close_saved_fds_and_FILE_fds(); |
| 7301 | |
| 7302 | /* "we are in function, ok to use return" */ |
| 7303 | G_flag_return_in_progress = -1; |
| 7304 | IF_HUSH_LOCAL(G.func_nest_level++;) |
| 7305 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7306 | /* On MMU, funcp->body is always non-NULL */ |
| 7307 | n = run_list(funcp->body); |
| 7308 | fflush_all(); |
| 7309 | _exit(n); |
| 7310 | # else |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7311 | //? close_saved_fds_and_FILE_fds(); |
| 7312 | |
| 7313 | //TODO: check whether "true | func_with_return" works |
| 7314 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7315 | re_execute_shell(to_free, |
| 7316 | funcp->body_as_string, |
| 7317 | G.global_argv[0], |
| 7318 | argv + 1, |
| 7319 | NULL); |
| 7320 | # endif |
| 7321 | } |
| 7322 | |
| 7323 | static int run_function(const struct function *funcp, char **argv) |
| 7324 | { |
| 7325 | int rc; |
| 7326 | save_arg_t sv; |
| 7327 | smallint sv_flg; |
| 7328 | |
| 7329 | save_and_replace_G_args(&sv, argv); |
| 7330 | |
| 7331 | /* "we are in function, ok to use return" */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7332 | sv_flg = G_flag_return_in_progress; |
| 7333 | G_flag_return_in_progress = -1; |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7334 | IF_HUSH_LOCAL(G.func_nest_level++;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7335 | |
| 7336 | /* On MMU, funcp->body is always non-NULL */ |
| 7337 | # if !BB_MMU |
| 7338 | if (!funcp->body) { |
| 7339 | /* Function defined by -F */ |
| 7340 | parse_and_run_string(funcp->body_as_string); |
| 7341 | rc = G.last_exitcode; |
| 7342 | } else |
| 7343 | # endif |
| 7344 | { |
| 7345 | rc = run_list(funcp->body); |
| 7346 | } |
| 7347 | |
| 7348 | # if ENABLE_HUSH_LOCAL |
| 7349 | { |
| 7350 | struct variable *var; |
| 7351 | struct variable **var_pp; |
| 7352 | |
| 7353 | var_pp = &G.top_var; |
| 7354 | while ((var = *var_pp) != NULL) { |
| 7355 | if (var->func_nest_level < G.func_nest_level) { |
| 7356 | var_pp = &var->next; |
| 7357 | continue; |
| 7358 | } |
| 7359 | /* Unexport */ |
| 7360 | if (var->flg_export) |
| 7361 | bb_unsetenv(var->varstr); |
| 7362 | /* Remove from global list */ |
| 7363 | *var_pp = var->next; |
| 7364 | /* Free */ |
| 7365 | if (!var->max_len) |
| 7366 | free(var->varstr); |
| 7367 | free(var); |
| 7368 | } |
| 7369 | G.func_nest_level--; |
| 7370 | } |
| 7371 | # endif |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7372 | G_flag_return_in_progress = sv_flg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7373 | |
| 7374 | restore_G_args(&sv, argv); |
| 7375 | |
| 7376 | return rc; |
| 7377 | } |
| 7378 | #endif /* ENABLE_HUSH_FUNCTIONS */ |
| 7379 | |
| 7380 | |
| 7381 | #if BB_MMU |
| 7382 | #define exec_builtin(to_free, x, argv) \ |
| 7383 | exec_builtin(x, argv) |
| 7384 | #else |
| 7385 | #define exec_builtin(to_free, x, argv) \ |
| 7386 | exec_builtin(to_free, argv) |
| 7387 | #endif |
| 7388 | static void exec_builtin(char ***to_free, |
| 7389 | const struct built_in_command *x, |
| 7390 | char **argv) NORETURN; |
| 7391 | static void exec_builtin(char ***to_free, |
| 7392 | const struct built_in_command *x, |
| 7393 | char **argv) |
| 7394 | { |
| 7395 | #if BB_MMU |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7396 | int rcode; |
| 7397 | fflush_all(); |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7398 | //? close_saved_fds_and_FILE_fds(); |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7399 | rcode = x->b_function(argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7400 | fflush_all(); |
| 7401 | _exit(rcode); |
| 7402 | #else |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7403 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7404 | /* On NOMMU, we must never block! |
| 7405 | * Example: { sleep 99 | read line; } & echo Ok |
| 7406 | */ |
| 7407 | re_execute_shell(to_free, |
| 7408 | argv[0], |
| 7409 | G.global_argv[0], |
| 7410 | G.global_argv + 1, |
| 7411 | argv); |
| 7412 | #endif |
| 7413 | } |
| 7414 | |
| 7415 | |
| 7416 | static void execvp_or_die(char **argv) NORETURN; |
| 7417 | static void execvp_or_die(char **argv) |
| 7418 | { |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7419 | int e; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7420 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7421 | /* Don't propagate SIG_IGN to the child */ |
| 7422 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7423 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7424 | execvp(argv[0], argv); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7425 | e = 2; |
| 7426 | if (errno == EACCES) e = 126; |
| 7427 | if (errno == ENOENT) e = 127; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7428 | bb_perror_msg("can't execute '%s'", argv[0]); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7429 | _exit(e); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7430 | } |
| 7431 | |
| 7432 | #if ENABLE_HUSH_MODE_X |
| 7433 | static void dump_cmd_in_x_mode(char **argv) |
| 7434 | { |
| 7435 | if (G_x_mode && argv) { |
| 7436 | /* We want to output the line in one write op */ |
| 7437 | char *buf, *p; |
| 7438 | int len; |
| 7439 | int n; |
| 7440 | |
| 7441 | len = 3; |
| 7442 | n = 0; |
| 7443 | while (argv[n]) |
| 7444 | len += strlen(argv[n++]) + 1; |
| 7445 | buf = xmalloc(len); |
| 7446 | buf[0] = '+'; |
| 7447 | p = buf + 1; |
| 7448 | n = 0; |
| 7449 | while (argv[n]) |
| 7450 | p += sprintf(p, " %s", argv[n++]); |
| 7451 | *p++ = '\n'; |
| 7452 | *p = '\0'; |
| 7453 | fputs(buf, stderr); |
| 7454 | free(buf); |
| 7455 | } |
| 7456 | } |
| 7457 | #else |
| 7458 | # define dump_cmd_in_x_mode(argv) ((void)0) |
| 7459 | #endif |
| 7460 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7461 | #if ENABLE_HUSH_COMMAND |
| 7462 | static void if_command_vV_print_and_exit(char opt_vV, char *cmd, const char *explanation) |
| 7463 | { |
| 7464 | char *to_free; |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7465 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7466 | if (!opt_vV) |
| 7467 | return; |
| 7468 | |
| 7469 | to_free = NULL; |
| 7470 | if (!explanation) { |
| 7471 | char *path = getenv("PATH"); |
| 7472 | explanation = to_free = find_executable(cmd, &path); /* path == NULL is ok */ |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7473 | if (!explanation) |
| 7474 | _exit(1); /* PROG was not found */ |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7475 | if (opt_vV != 'V') |
| 7476 | cmd = to_free; /* -v PROG prints "/path/to/PROG" */ |
| 7477 | } |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7478 | printf((opt_vV == 'V') ? "%s is %s\n" : "%s\n", cmd, explanation); |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7479 | free(to_free); |
| 7480 | fflush_all(); |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7481 | _exit(0); |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7482 | } |
| 7483 | #else |
| 7484 | # define if_command_vV_print_and_exit(a,b,c) ((void)0) |
| 7485 | #endif |
| 7486 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7487 | #if BB_MMU |
| 7488 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 7489 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 7490 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 7491 | pseudo_exec(command, argv_expanded) |
| 7492 | #endif |
| 7493 | |
| 7494 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
| 7495 | * Never returns. |
| 7496 | * Don't exit() here. If you don't exec, use _exit instead. |
| 7497 | * The at_exit handlers apparently confuse the calling process, |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7498 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7499 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7500 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7501 | char **argv, int assignment_cnt, |
| 7502 | char **argv_expanded) NORETURN; |
| 7503 | static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7504 | char **argv, int assignment_cnt, |
| 7505 | char **argv_expanded) |
| 7506 | { |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7507 | const struct built_in_command *x; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7508 | char **new_env; |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7509 | #if ENABLE_HUSH_COMMAND |
| 7510 | char opt_vV = 0; |
| 7511 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7512 | |
| 7513 | new_env = expand_assignments(argv, assignment_cnt); |
| 7514 | dump_cmd_in_x_mode(new_env); |
| 7515 | |
| 7516 | if (!argv[assignment_cnt]) { |
| 7517 | /* Case when we are here: ... | var=val | ... |
| 7518 | * (note that we do not exit early, i.e., do not optimize out |
| 7519 | * expand_assignments(): think about ... | var=`sleep 1` | ... |
| 7520 | */ |
| 7521 | free_strings(new_env); |
| 7522 | _exit(EXIT_SUCCESS); |
| 7523 | } |
| 7524 | |
| 7525 | #if BB_MMU |
| 7526 | set_vars_and_save_old(new_env); |
| 7527 | free(new_env); /* optional */ |
| 7528 | /* we can also destroy set_vars_and_save_old's return value, |
| 7529 | * to save memory */ |
| 7530 | #else |
| 7531 | nommu_save->new_env = new_env; |
| 7532 | nommu_save->old_vars = set_vars_and_save_old(new_env); |
| 7533 | #endif |
| 7534 | |
| 7535 | if (argv_expanded) { |
| 7536 | argv = argv_expanded; |
| 7537 | } else { |
| 7538 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
| 7539 | #if !BB_MMU |
| 7540 | nommu_save->argv = argv; |
| 7541 | #endif |
| 7542 | } |
| 7543 | dump_cmd_in_x_mode(argv); |
| 7544 | |
| 7545 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7546 | if (strchr(argv[0], '/') != NULL) |
| 7547 | goto skip; |
| 7548 | #endif |
| 7549 | |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 7550 | #if ENABLE_HUSH_FUNCTIONS |
| 7551 | /* Check if the command matches any functions (this goes before bltins) */ |
| 7552 | { |
| 7553 | const struct function *funcp = find_function(argv[0]); |
| 7554 | if (funcp) { |
| 7555 | exec_function(&nommu_save->argv_from_re_execing, funcp, argv); |
| 7556 | } |
| 7557 | } |
| 7558 | #endif |
| 7559 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7560 | #if ENABLE_HUSH_COMMAND |
| 7561 | /* "command BAR": run BAR without looking it up among functions |
| 7562 | * "command -v BAR": print "BAR" or "/path/to/BAR"; or exit 1 |
| 7563 | * "command -V BAR": print "BAR is {a function,a shell builtin,/path/to/BAR}" |
| 7564 | */ |
| 7565 | while (strcmp(argv[0], "command") == 0 && argv[1]) { |
| 7566 | char *p; |
| 7567 | |
| 7568 | argv++; |
| 7569 | p = *argv; |
| 7570 | if (p[0] != '-' || !p[1]) |
| 7571 | continue; /* bash allows "command command command [-OPT] BAR" */ |
| 7572 | |
| 7573 | for (;;) { |
| 7574 | p++; |
| 7575 | switch (*p) { |
| 7576 | case '\0': |
| 7577 | argv++; |
| 7578 | p = *argv; |
| 7579 | if (p[0] != '-' || !p[1]) |
| 7580 | goto after_opts; |
| 7581 | continue; /* next arg is also -opts, process it too */ |
| 7582 | case 'v': |
| 7583 | case 'V': |
| 7584 | opt_vV = *p; |
| 7585 | continue; |
| 7586 | default: |
| 7587 | bb_error_msg_and_die("%s: %s: invalid option", "command", argv[0]); |
| 7588 | } |
| 7589 | } |
| 7590 | } |
| 7591 | after_opts: |
| 7592 | # if ENABLE_HUSH_FUNCTIONS |
| 7593 | if (opt_vV && find_function(argv[0])) |
| 7594 | if_command_vV_print_and_exit(opt_vV, argv[0], "a function"); |
| 7595 | # endif |
| 7596 | #endif |
| 7597 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7598 | /* Check if the command matches any of the builtins. |
| 7599 | * Depending on context, this might be redundant. But it's |
| 7600 | * easier to waste a few CPU cycles than it is to figure out |
| 7601 | * if this is one of those cases. |
| 7602 | */ |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7603 | /* Why "BB_MMU ? :" difference in logic? - |
| 7604 | * On NOMMU, it is more expensive to re-execute shell |
| 7605 | * just in order to run echo or test builtin. |
| 7606 | * It's better to skip it here and run corresponding |
| 7607 | * non-builtin later. */ |
| 7608 | x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]); |
| 7609 | if (x) { |
| 7610 | if_command_vV_print_and_exit(opt_vV, argv[0], "a shell builtin"); |
| 7611 | exec_builtin(&nommu_save->argv_from_re_execing, x, argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7612 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7613 | |
| 7614 | #if ENABLE_FEATURE_SH_STANDALONE |
| 7615 | /* Check if the command matches any busybox applets */ |
| 7616 | { |
| 7617 | int a = find_applet_by_name(argv[0]); |
| 7618 | if (a >= 0) { |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7619 | if_command_vV_print_and_exit(opt_vV, argv[0], "an applet"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7620 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
| 7621 | if (APPLET_IS_NOEXEC(a)) { |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 7622 | /* Do not leak open fds from opened script files etc. |
| 7623 | * Testcase: interactive "ls -l /proc/self/fd" |
| 7624 | * should not show tty fd open. |
| 7625 | */ |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7626 | close_saved_fds_and_FILE_fds(); |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 7627 | //FIXME: should also close saved redir fds |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 7628 | //This casuses test failures in |
| 7629 | //redir_children_should_not_see_saved_fd_2.tests |
| 7630 | //redir_children_should_not_see_saved_fd_3.tests |
| 7631 | //if you replace "busybox find" with just "find" in them |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 7632 | /* Without this, "rm -i FILE" can't be ^C'ed: */ |
| 7633 | switch_off_special_sigs(G.special_sig_mask); |
Denys Vlasenko | c9c1ccc | 2017-08-07 18:59:35 +0200 | [diff] [blame] | 7634 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 7635 | run_noexec_applet_and_exit(a, argv[0], argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7636 | } |
| 7637 | # endif |
| 7638 | /* Re-exec ourselves */ |
| 7639 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7640 | /* Don't propagate SIG_IGN to the child */ |
| 7641 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7642 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7643 | execv(bb_busybox_exec_path, argv); |
| 7644 | /* If they called chroot or otherwise made the binary no longer |
| 7645 | * executable, fall through */ |
| 7646 | } |
| 7647 | } |
| 7648 | #endif |
| 7649 | |
| 7650 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7651 | skip: |
| 7652 | #endif |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7653 | if_command_vV_print_and_exit(opt_vV, argv[0], NULL); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7654 | execvp_or_die(argv); |
| 7655 | } |
| 7656 | |
| 7657 | /* Called after [v]fork() in run_pipe |
| 7658 | */ |
| 7659 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7660 | struct command *command, |
| 7661 | char **argv_expanded) NORETURN; |
| 7662 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7663 | struct command *command, |
| 7664 | char **argv_expanded) |
| 7665 | { |
| 7666 | if (command->argv) { |
| 7667 | pseudo_exec_argv(nommu_save, command->argv, |
| 7668 | command->assignment_cnt, argv_expanded); |
| 7669 | } |
| 7670 | |
| 7671 | if (command->group) { |
| 7672 | /* Cases when we are here: |
| 7673 | * ( list ) |
| 7674 | * { list } & |
| 7675 | * ... | ( list ) | ... |
| 7676 | * ... | { list } | ... |
| 7677 | */ |
| 7678 | #if BB_MMU |
| 7679 | int rcode; |
| 7680 | debug_printf_exec("pseudo_exec: run_list\n"); |
| 7681 | reset_traps_to_defaults(); |
| 7682 | rcode = run_list(command->group); |
| 7683 | /* OK to leak memory by not calling free_pipe_list, |
| 7684 | * since this process is about to exit */ |
| 7685 | _exit(rcode); |
| 7686 | #else |
| 7687 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 7688 | command->group_as_string, |
| 7689 | G.global_argv[0], |
| 7690 | G.global_argv + 1, |
| 7691 | NULL); |
| 7692 | #endif |
| 7693 | } |
| 7694 | |
| 7695 | /* Case when we are here: ... | >file */ |
| 7696 | debug_printf_exec("pseudo_exec'ed null command\n"); |
| 7697 | _exit(EXIT_SUCCESS); |
| 7698 | } |
| 7699 | |
| 7700 | #if ENABLE_HUSH_JOB |
| 7701 | static const char *get_cmdtext(struct pipe *pi) |
| 7702 | { |
| 7703 | char **argv; |
| 7704 | char *p; |
| 7705 | int len; |
| 7706 | |
| 7707 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 7708 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
| 7709 | * On subsequent bg argv is trashed, but we won't use it */ |
| 7710 | if (pi->cmdtext) |
| 7711 | return pi->cmdtext; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7712 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7713 | argv = pi->cmds[0].argv; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7714 | if (!argv) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7715 | pi->cmdtext = xzalloc(1); |
| 7716 | return pi->cmdtext; |
| 7717 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7718 | len = 0; |
| 7719 | do { |
| 7720 | len += strlen(*argv) + 1; |
| 7721 | } while (*++argv); |
| 7722 | p = xmalloc(len); |
| 7723 | pi->cmdtext = p; |
| 7724 | argv = pi->cmds[0].argv; |
| 7725 | do { |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7726 | p = stpcpy(p, *argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7727 | *p++ = ' '; |
| 7728 | } while (*++argv); |
| 7729 | p[-1] = '\0'; |
| 7730 | return pi->cmdtext; |
| 7731 | } |
| 7732 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7733 | static void remove_job_from_table(struct pipe *pi) |
| 7734 | { |
| 7735 | struct pipe *prev_pipe; |
| 7736 | |
| 7737 | if (pi == G.job_list) { |
| 7738 | G.job_list = pi->next; |
| 7739 | } else { |
| 7740 | prev_pipe = G.job_list; |
| 7741 | while (prev_pipe->next != pi) |
| 7742 | prev_pipe = prev_pipe->next; |
| 7743 | prev_pipe->next = pi->next; |
| 7744 | } |
| 7745 | G.last_jobid = 0; |
| 7746 | if (G.job_list) |
| 7747 | G.last_jobid = G.job_list->jobid; |
| 7748 | } |
| 7749 | |
| 7750 | static void delete_finished_job(struct pipe *pi) |
| 7751 | { |
| 7752 | remove_job_from_table(pi); |
| 7753 | free_pipe(pi); |
| 7754 | } |
| 7755 | |
| 7756 | static void clean_up_last_dead_job(void) |
| 7757 | { |
| 7758 | if (G.job_list && !G.job_list->alive_cmds) |
| 7759 | delete_finished_job(G.job_list); |
| 7760 | } |
| 7761 | |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 7762 | static void insert_job_into_table(struct pipe *pi) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7763 | { |
| 7764 | struct pipe *job, **jobp; |
| 7765 | int i; |
| 7766 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7767 | clean_up_last_dead_job(); |
| 7768 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7769 | /* Find the end of the list, and find next job ID to use */ |
| 7770 | i = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7771 | jobp = &G.job_list; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7772 | while ((job = *jobp) != NULL) { |
| 7773 | if (job->jobid > i) |
| 7774 | i = job->jobid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7775 | jobp = &job->next; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7776 | } |
| 7777 | pi->jobid = i + 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7778 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7779 | /* Create a new job struct at the end */ |
| 7780 | job = *jobp = xmemdup(pi, sizeof(*pi)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7781 | job->next = NULL; |
| 7782 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 7783 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
| 7784 | for (i = 0; i < pi->num_cmds; i++) { |
| 7785 | job->cmds[i].pid = pi->cmds[i].pid; |
| 7786 | /* all other fields are not used and stay zero */ |
| 7787 | } |
| 7788 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
| 7789 | |
| 7790 | if (G_interactive_fd) |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 7791 | printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7792 | G.last_jobid = job->jobid; |
| 7793 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7794 | #endif /* JOB */ |
| 7795 | |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7796 | static int job_exited_or_stopped(struct pipe *pi) |
| 7797 | { |
| 7798 | int rcode, i; |
| 7799 | |
| 7800 | if (pi->alive_cmds != pi->stopped_cmds) |
| 7801 | return -1; |
| 7802 | |
| 7803 | /* All processes in fg pipe have exited or stopped */ |
| 7804 | rcode = 0; |
| 7805 | i = pi->num_cmds; |
| 7806 | while (--i >= 0) { |
| 7807 | rcode = pi->cmds[i].cmd_exitcode; |
| 7808 | /* usually last process gives overall exitstatus, |
| 7809 | * but with "set -o pipefail", last *failed* process does */ |
| 7810 | if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0) |
| 7811 | break; |
| 7812 | } |
| 7813 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7814 | return rcode; |
| 7815 | } |
| 7816 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7817 | static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7818 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7819 | #if ENABLE_HUSH_JOB |
| 7820 | struct pipe *pi; |
| 7821 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7822 | int i, dead; |
| 7823 | |
| 7824 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 7825 | |
| 7826 | #if DEBUG_JOBS |
| 7827 | if (WIFSTOPPED(status)) |
| 7828 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
| 7829 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 7830 | if (WIFSIGNALED(status)) |
| 7831 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
| 7832 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 7833 | if (WIFEXITED(status)) |
| 7834 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
| 7835 | childpid, WEXITSTATUS(status)); |
| 7836 | #endif |
| 7837 | /* Were we asked to wait for a fg pipe? */ |
| 7838 | if (fg_pipe) { |
| 7839 | i = fg_pipe->num_cmds; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7840 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7841 | while (--i >= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7842 | int rcode; |
| 7843 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7844 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 7845 | if (fg_pipe->cmds[i].pid != childpid) |
| 7846 | continue; |
| 7847 | if (dead) { |
| 7848 | int ex; |
| 7849 | fg_pipe->cmds[i].pid = 0; |
| 7850 | fg_pipe->alive_cmds--; |
| 7851 | ex = WEXITSTATUS(status); |
| 7852 | /* bash prints killer signal's name for *last* |
| 7853 | * process in pipe (prints just newline for SIGINT/SIGPIPE). |
| 7854 | * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT) |
| 7855 | */ |
| 7856 | if (WIFSIGNALED(status)) { |
| 7857 | int sig = WTERMSIG(status); |
| 7858 | if (i == fg_pipe->num_cmds-1) |
| 7859 | /* TODO: use strsignal() instead for bash compat? but that's bloat... */ |
| 7860 | puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig)); |
| 7861 | /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */ |
| 7862 | /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here? |
| 7863 | * Maybe we need to use sig | 128? */ |
| 7864 | ex = sig + 128; |
| 7865 | } |
| 7866 | fg_pipe->cmds[i].cmd_exitcode = ex; |
| 7867 | } else { |
| 7868 | fg_pipe->stopped_cmds++; |
| 7869 | } |
| 7870 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 7871 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7872 | rcode = job_exited_or_stopped(fg_pipe); |
| 7873 | if (rcode >= 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7874 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 7875 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 7876 | * and "killall -STOP cat" */ |
| 7877 | if (G_interactive_fd) { |
| 7878 | #if ENABLE_HUSH_JOB |
| 7879 | if (fg_pipe->alive_cmds != 0) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 7880 | insert_job_into_table(fg_pipe); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7881 | #endif |
| 7882 | return rcode; |
| 7883 | } |
| 7884 | if (fg_pipe->alive_cmds == 0) |
| 7885 | return rcode; |
| 7886 | } |
| 7887 | /* There are still running processes in the fg_pipe */ |
| 7888 | return -1; |
| 7889 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 7890 | /* It wasn't in fg_pipe, look for process in bg pipes */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7891 | } |
| 7892 | |
| 7893 | #if ENABLE_HUSH_JOB |
| 7894 | /* We were asked to wait for bg or orphaned children */ |
| 7895 | /* No need to remember exitcode in this case */ |
| 7896 | for (pi = G.job_list; pi; pi = pi->next) { |
| 7897 | for (i = 0; i < pi->num_cmds; i++) { |
| 7898 | if (pi->cmds[i].pid == childpid) |
| 7899 | goto found_pi_and_prognum; |
| 7900 | } |
| 7901 | } |
| 7902 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 7903 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
| 7904 | return -1; /* this wasn't a process from fg_pipe */ |
| 7905 | |
| 7906 | found_pi_and_prognum: |
| 7907 | if (dead) { |
| 7908 | /* child exited */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 7909 | int rcode = WEXITSTATUS(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7910 | if (WIFSIGNALED(status)) |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 7911 | rcode = 128 + WTERMSIG(status); |
| 7912 | pi->cmds[i].cmd_exitcode = rcode; |
| 7913 | if (G.last_bg_pid == pi->cmds[i].pid) |
| 7914 | G.last_bg_pid_exitcode = rcode; |
| 7915 | pi->cmds[i].pid = 0; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7916 | pi->alive_cmds--; |
| 7917 | if (!pi->alive_cmds) { |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7918 | if (G_interactive_fd) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7919 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 7920 | "Done", pi->cmdtext); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7921 | delete_finished_job(pi); |
| 7922 | } else { |
| 7923 | /* |
| 7924 | * bash deletes finished jobs from job table only in interactive mode, |
| 7925 | * after "jobs" cmd, or if pid of a new process matches one of the old ones |
| 7926 | * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source). |
| 7927 | * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash. |
| 7928 | * We only retain one "dead" job, if it's the single job on the list. |
| 7929 | * This covers most of real-world scenarios where this is useful. |
| 7930 | */ |
| 7931 | if (pi != G.job_list) |
| 7932 | delete_finished_job(pi); |
| 7933 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7934 | } |
| 7935 | } else { |
| 7936 | /* child stopped */ |
| 7937 | pi->stopped_cmds++; |
| 7938 | } |
| 7939 | #endif |
| 7940 | return -1; /* this wasn't a process from fg_pipe */ |
| 7941 | } |
| 7942 | |
| 7943 | /* Check to see if any processes have exited -- if they have, |
| 7944 | * figure out why and see if a job has completed. |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7945 | * |
| 7946 | * If non-NULL fg_pipe: wait for its completion or stop. |
| 7947 | * Return its exitcode or zero if stopped. |
| 7948 | * |
| 7949 | * Alternatively (fg_pipe == NULL, waitfor_pid != 0): |
| 7950 | * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1, |
| 7951 | * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 7952 | * or 0 if no children changed status. |
| 7953 | * |
| 7954 | * Alternatively (fg_pipe == NULL, waitfor_pid == 0), |
| 7955 | * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 7956 | * or 0 if no children changed status. |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7957 | */ |
| 7958 | static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid) |
| 7959 | { |
| 7960 | int attributes; |
| 7961 | int status; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7962 | int rcode = 0; |
| 7963 | |
| 7964 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 7965 | |
| 7966 | attributes = WUNTRACED; |
| 7967 | if (fg_pipe == NULL) |
| 7968 | attributes |= WNOHANG; |
| 7969 | |
| 7970 | errno = 0; |
| 7971 | #if ENABLE_HUSH_FAST |
| 7972 | if (G.handled_SIGCHLD == G.count_SIGCHLD) { |
| 7973 | //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p", |
| 7974 | //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe); |
| 7975 | /* There was neither fork nor SIGCHLD since last waitpid */ |
| 7976 | /* Avoid doing waitpid syscall if possible */ |
| 7977 | if (!G.we_have_children) { |
| 7978 | errno = ECHILD; |
| 7979 | return -1; |
| 7980 | } |
| 7981 | if (fg_pipe == NULL) { /* is WNOHANG set? */ |
| 7982 | /* We have children, but they did not exit |
| 7983 | * or stop yet (we saw no SIGCHLD) */ |
| 7984 | return 0; |
| 7985 | } |
| 7986 | /* else: !WNOHANG, waitpid will block, can't short-circuit */ |
| 7987 | } |
| 7988 | #endif |
| 7989 | |
| 7990 | /* Do we do this right? |
| 7991 | * bash-3.00# sleep 20 | false |
| 7992 | * <ctrl-Z pressed> |
| 7993 | * [3]+ Stopped sleep 20 | false |
| 7994 | * bash-3.00# echo $? |
| 7995 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 7996 | * [hush 1.14.0: yes we do it right] |
| 7997 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7998 | while (1) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7999 | pid_t childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8000 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8001 | int i; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8002 | i = G.count_SIGCHLD; |
| 8003 | #endif |
| 8004 | childpid = waitpid(-1, &status, attributes); |
| 8005 | if (childpid <= 0) { |
| 8006 | if (childpid && errno != ECHILD) |
| 8007 | bb_perror_msg("waitpid"); |
| 8008 | #if ENABLE_HUSH_FAST |
| 8009 | else { /* Until next SIGCHLD, waitpid's are useless */ |
| 8010 | G.we_have_children = (childpid == 0); |
| 8011 | G.handled_SIGCHLD = i; |
| 8012 | //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 8013 | } |
| 8014 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8015 | /* ECHILD (no children), or 0 (no change in children status) */ |
| 8016 | rcode = childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8017 | break; |
| 8018 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8019 | rcode = process_wait_result(fg_pipe, childpid, status); |
| 8020 | if (rcode >= 0) { |
| 8021 | /* fg_pipe exited or stopped */ |
| 8022 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8023 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8024 | if (childpid == waitfor_pid) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8025 | debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8026 | rcode = WEXITSTATUS(status); |
| 8027 | if (WIFSIGNALED(status)) |
| 8028 | rcode = 128 + WTERMSIG(status); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8029 | if (WIFSTOPPED(status)) |
| 8030 | /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */ |
| 8031 | rcode = 128 + WSTOPSIG(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8032 | rcode++; |
| 8033 | break; /* "wait PID" called us, give it exitcode+1 */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8034 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8035 | /* This wasn't one of our processes, or */ |
| 8036 | /* fg_pipe still has running processes, do waitpid again */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8037 | } /* while (waitpid succeeds)... */ |
| 8038 | |
| 8039 | return rcode; |
| 8040 | } |
| 8041 | |
| 8042 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 8043 | static int checkjobs_and_fg_shell(struct pipe *fg_pipe) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8044 | { |
| 8045 | pid_t p; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8046 | int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8047 | if (G_saved_tty_pgrp) { |
| 8048 | /* Job finished, move the shell to the foreground */ |
| 8049 | p = getpgrp(); /* our process group id */ |
| 8050 | debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p); |
| 8051 | tcsetpgrp(G_interactive_fd, p); |
| 8052 | } |
| 8053 | return rcode; |
| 8054 | } |
| 8055 | #endif |
| 8056 | |
| 8057 | /* Start all the jobs, but don't wait for anything to finish. |
| 8058 | * See checkjobs(). |
| 8059 | * |
| 8060 | * Return code is normally -1, when the caller has to wait for children |
| 8061 | * to finish to determine the exit status of the pipe. If the pipe |
| 8062 | * is a simple builtin command, however, the action is done by the |
| 8063 | * time run_pipe returns, and the exit code is provided as the |
| 8064 | * return value. |
| 8065 | * |
| 8066 | * Returns -1 only if started some children. IOW: we have to |
| 8067 | * mask out retvals of builtins etc with 0xff! |
| 8068 | * |
| 8069 | * The only case when we do not need to [v]fork is when the pipe |
| 8070 | * is single, non-backgrounded, non-subshell command. Examples: |
| 8071 | * cmd ; ... { list } ; ... |
| 8072 | * cmd && ... { list } && ... |
| 8073 | * cmd || ... { list } || ... |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 8074 | * If it is, then we can run cmd as a builtin, NOFORK, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8075 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
| 8076 | * with run_list. If it isn't one of these, we fork and exec cmd. |
| 8077 | * |
| 8078 | * Cases when we must fork: |
| 8079 | * non-single: cmd | cmd |
| 8080 | * backgrounded: cmd & { list } & |
| 8081 | * subshell: ( list ) [&] |
| 8082 | */ |
| 8083 | #if !ENABLE_HUSH_MODE_X |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 8084 | #define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8085 | redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel) |
| 8086 | #endif |
| 8087 | static int redirect_and_varexp_helper(char ***new_env_p, |
| 8088 | struct variable **old_vars_p, |
| 8089 | struct command *command, |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8090 | struct squirrel **sqp, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8091 | char **argv_expanded) |
| 8092 | { |
| 8093 | /* setup_redirects acts on file descriptors, not FILEs. |
| 8094 | * This is perfect for work that comes after exec(). |
| 8095 | * Is it really safe for inline use? Experimentally, |
| 8096 | * things seem to work. */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8097 | int rcode = setup_redirects(command, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8098 | if (rcode == 0) { |
| 8099 | char **new_env = expand_assignments(command->argv, command->assignment_cnt); |
| 8100 | *new_env_p = new_env; |
| 8101 | dump_cmd_in_x_mode(new_env); |
| 8102 | dump_cmd_in_x_mode(argv_expanded); |
| 8103 | if (old_vars_p) |
| 8104 | *old_vars_p = set_vars_and_save_old(new_env); |
| 8105 | } |
| 8106 | return rcode; |
| 8107 | } |
| 8108 | static NOINLINE int run_pipe(struct pipe *pi) |
| 8109 | { |
| 8110 | static const char *const null_ptr = NULL; |
| 8111 | |
| 8112 | int cmd_no; |
| 8113 | int next_infd; |
| 8114 | struct command *command; |
| 8115 | char **argv_expanded; |
| 8116 | char **argv; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8117 | struct squirrel *squirrel = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8118 | int rcode; |
| 8119 | |
| 8120 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
| 8121 | debug_enter(); |
| 8122 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 8123 | /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*" |
| 8124 | * Result should be 3 lines: q w e, qwe, q w e |
| 8125 | */ |
| 8126 | G.ifs = get_local_var_value("IFS"); |
| 8127 | if (!G.ifs) |
| 8128 | G.ifs = defifs; |
| 8129 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8130 | IF_HUSH_JOB(pi->pgrp = -1;) |
| 8131 | pi->stopped_cmds = 0; |
| 8132 | command = &pi->cmds[0]; |
| 8133 | argv_expanded = NULL; |
| 8134 | |
| 8135 | if (pi->num_cmds != 1 |
| 8136 | || pi->followup == PIPE_BG |
| 8137 | || command->cmd_type == CMD_SUBSHELL |
| 8138 | ) { |
| 8139 | goto must_fork; |
| 8140 | } |
| 8141 | |
| 8142 | pi->alive_cmds = 1; |
| 8143 | |
| 8144 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 8145 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 8146 | |
| 8147 | if (command->group) { |
| 8148 | #if ENABLE_HUSH_FUNCTIONS |
| 8149 | if (command->cmd_type == CMD_FUNCDEF) { |
| 8150 | /* "executing" func () { list } */ |
| 8151 | struct function *funcp; |
| 8152 | |
| 8153 | funcp = new_function(command->argv[0]); |
| 8154 | /* funcp->name is already set to argv[0] */ |
| 8155 | funcp->body = command->group; |
| 8156 | # if !BB_MMU |
| 8157 | funcp->body_as_string = command->group_as_string; |
| 8158 | command->group_as_string = NULL; |
| 8159 | # endif |
| 8160 | command->group = NULL; |
| 8161 | command->argv[0] = NULL; |
| 8162 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 8163 | funcp->parent_cmd = command; |
| 8164 | command->child_func = funcp; |
| 8165 | |
| 8166 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 8167 | debug_leave(); |
| 8168 | return EXIT_SUCCESS; |
| 8169 | } |
| 8170 | #endif |
| 8171 | /* { list } */ |
| 8172 | debug_printf("non-subshell group\n"); |
| 8173 | rcode = 1; /* exitcode if redir failed */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8174 | if (setup_redirects(command, &squirrel) == 0) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8175 | debug_printf_exec(": run_list\n"); |
| 8176 | rcode = run_list(command->group) & 0xff; |
| 8177 | } |
| 8178 | restore_redirects(squirrel); |
| 8179 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8180 | debug_leave(); |
| 8181 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 8182 | return rcode; |
| 8183 | } |
| 8184 | |
| 8185 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 8186 | { |
| 8187 | const struct built_in_command *x; |
| 8188 | #if ENABLE_HUSH_FUNCTIONS |
| 8189 | const struct function *funcp; |
| 8190 | #else |
| 8191 | enum { funcp = 0 }; |
| 8192 | #endif |
| 8193 | char **new_env = NULL; |
| 8194 | struct variable *old_vars = NULL; |
| 8195 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 8196 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 8197 | if (G.lineno_var) |
| 8198 | strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno)); |
| 8199 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 8200 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8201 | if (argv[command->assignment_cnt] == NULL) { |
| 8202 | /* Assignments, but no command */ |
| 8203 | /* Ensure redirects take effect (that is, create files). |
| 8204 | * Try "a=t >file" */ |
| 8205 | #if 0 /* A few cases in testsuite fail with this code. FIXME */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8206 | rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8207 | /* Set shell variables */ |
| 8208 | if (new_env) { |
| 8209 | argv = new_env; |
| 8210 | while (*argv) { |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 8211 | if (set_local_var(*argv, /*flag:*/ 0)) { |
| 8212 | /* assignment to readonly var / putenv error? */ |
| 8213 | rcode = 1; |
| 8214 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8215 | argv++; |
| 8216 | } |
| 8217 | } |
| 8218 | /* Redirect error sets $? to 1. Otherwise, |
| 8219 | * if evaluating assignment value set $?, retain it. |
| 8220 | * Try "false; q=`exit 2`; echo $?" - should print 2: */ |
| 8221 | if (rcode == 0) |
| 8222 | rcode = G.last_exitcode; |
| 8223 | /* Exit, _skipping_ variable restoring code: */ |
| 8224 | goto clean_up_and_ret0; |
| 8225 | |
| 8226 | #else /* Older, bigger, but more correct code */ |
| 8227 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8228 | rcode = setup_redirects(command, &squirrel); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8229 | restore_redirects(squirrel); |
| 8230 | /* Set shell variables */ |
| 8231 | if (G_x_mode) |
| 8232 | bb_putchar_stderr('+'); |
| 8233 | while (*argv) { |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 8234 | char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8235 | if (G_x_mode) |
| 8236 | fprintf(stderr, " %s", p); |
| 8237 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 8238 | *argv, p); |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 8239 | if (set_local_var(p, /*flag:*/ 0)) { |
| 8240 | /* assignment to readonly var / putenv error? */ |
| 8241 | rcode = 1; |
| 8242 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8243 | argv++; |
| 8244 | } |
| 8245 | if (G_x_mode) |
| 8246 | bb_putchar_stderr('\n'); |
| 8247 | /* Redirect error sets $? to 1. Otherwise, |
| 8248 | * if evaluating assignment value set $?, retain it. |
| 8249 | * Try "false; q=`exit 2`; echo $?" - should print 2: */ |
| 8250 | if (rcode == 0) |
| 8251 | rcode = G.last_exitcode; |
| 8252 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8253 | debug_leave(); |
| 8254 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 8255 | return rcode; |
| 8256 | #endif |
| 8257 | } |
| 8258 | |
| 8259 | /* Expand the rest into (possibly) many strings each */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 8260 | #if BASH_TEST2 |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 8261 | if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8262 | argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt); |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 8263 | } else |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8264 | #endif |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 8265 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8266 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
| 8267 | } |
| 8268 | |
| 8269 | /* if someone gives us an empty string: `cmd with empty output` */ |
| 8270 | if (!argv_expanded[0]) { |
| 8271 | free(argv_expanded); |
| 8272 | debug_leave(); |
| 8273 | return G.last_exitcode; |
| 8274 | } |
| 8275 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8276 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 8277 | /* Check if argv[0] matches any functions (this goes before bltins) */ |
| 8278 | funcp = find_function(argv_expanded[0]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8279 | #endif |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 8280 | x = NULL; |
| 8281 | if (!funcp) |
| 8282 | x = find_builtin(argv_expanded[0]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8283 | if (x || funcp) { |
| 8284 | if (!funcp) { |
| 8285 | if (x->b_function == builtin_exec && argv_expanded[1] == NULL) { |
| 8286 | debug_printf("exec with redirects only\n"); |
| 8287 | rcode = setup_redirects(command, NULL); |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8288 | /* rcode=1 can be if redir file can't be opened */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8289 | goto clean_up_and_ret1; |
| 8290 | } |
| 8291 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8292 | rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8293 | if (rcode == 0) { |
| 8294 | if (!funcp) { |
| 8295 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 8296 | x->b_cmd, argv_expanded[1]); |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 8297 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8298 | rcode = x->b_function(argv_expanded) & 0xff; |
| 8299 | fflush_all(); |
| 8300 | } |
| 8301 | #if ENABLE_HUSH_FUNCTIONS |
| 8302 | else { |
| 8303 | # if ENABLE_HUSH_LOCAL |
| 8304 | struct variable **sv; |
| 8305 | sv = G.shadowed_vars_pp; |
| 8306 | G.shadowed_vars_pp = &old_vars; |
| 8307 | # endif |
| 8308 | debug_printf_exec(": function '%s' '%s'...\n", |
| 8309 | funcp->name, argv_expanded[1]); |
| 8310 | rcode = run_function(funcp, argv_expanded) & 0xff; |
| 8311 | # if ENABLE_HUSH_LOCAL |
| 8312 | G.shadowed_vars_pp = sv; |
| 8313 | # endif |
| 8314 | } |
| 8315 | #endif |
| 8316 | } |
| 8317 | clean_up_and_ret: |
| 8318 | unset_vars(new_env); |
| 8319 | add_vars(old_vars); |
| 8320 | /* clean_up_and_ret0: */ |
| 8321 | restore_redirects(squirrel); |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 8322 | /* |
| 8323 | * Try "usleep 99999999" + ^C + "echo $?" |
| 8324 | * with FEATURE_SH_NOFORK=y. |
| 8325 | */ |
| 8326 | if (!funcp) { |
| 8327 | /* It was builtin or nofork. |
| 8328 | * if this would be a real fork/execed program, |
| 8329 | * it should have died if a fatal sig was received. |
| 8330 | * But OTOH, there was no separate process, |
| 8331 | * the sig was sent to _shell_, not to non-existing |
| 8332 | * child. |
| 8333 | * Let's just handle ^C only, this one is obvious: |
| 8334 | * we aren't ok with exitcode 0 when ^C was pressed |
| 8335 | * during builtin/nofork. |
| 8336 | */ |
| 8337 | if (sigismember(&G.pending_set, SIGINT)) |
| 8338 | rcode = 128 + SIGINT; |
| 8339 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8340 | clean_up_and_ret1: |
| 8341 | free(argv_expanded); |
| 8342 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8343 | debug_leave(); |
| 8344 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 8345 | return rcode; |
| 8346 | } |
| 8347 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 8348 | if (ENABLE_FEATURE_SH_NOFORK && NUM_APPLETS > 1) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8349 | int n = find_applet_by_name(argv_expanded[0]); |
| 8350 | if (n >= 0 && APPLET_IS_NOFORK(n)) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8351 | rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8352 | if (rcode == 0) { |
| 8353 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
| 8354 | argv_expanded[0], argv_expanded[1]); |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 8355 | /* |
| 8356 | * Note: signals (^C) can't interrupt here. |
| 8357 | * We remember them and they will be acted upon |
| 8358 | * after applet returns. |
| 8359 | * This makes applets which can run for a long time |
| 8360 | * and/or wait for user input ineligible for NOFORK: |
| 8361 | * for example, "yes" or "rm" (rm -i waits for input). |
| 8362 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8363 | rcode = run_nofork_applet(n, argv_expanded); |
| 8364 | } |
| 8365 | goto clean_up_and_ret; |
| 8366 | } |
| 8367 | } |
| 8368 | /* It is neither builtin nor applet. We must fork. */ |
| 8369 | } |
| 8370 | |
| 8371 | must_fork: |
| 8372 | /* NB: argv_expanded may already be created, and that |
| 8373 | * might include `cmd` runs! Do not rerun it! We *must* |
| 8374 | * use argv_expanded if it's non-NULL */ |
| 8375 | |
| 8376 | /* Going to fork a child per each pipe member */ |
| 8377 | pi->alive_cmds = 0; |
| 8378 | next_infd = 0; |
| 8379 | |
| 8380 | cmd_no = 0; |
| 8381 | while (cmd_no < pi->num_cmds) { |
| 8382 | struct fd_pair pipefds; |
| 8383 | #if !BB_MMU |
| 8384 | volatile nommu_save_t nommu_save; |
| 8385 | nommu_save.new_env = NULL; |
| 8386 | nommu_save.old_vars = NULL; |
| 8387 | nommu_save.argv = NULL; |
| 8388 | nommu_save.argv_from_re_execing = NULL; |
| 8389 | #endif |
| 8390 | command = &pi->cmds[cmd_no]; |
| 8391 | cmd_no++; |
| 8392 | if (command->argv) { |
| 8393 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 8394 | command->argv[0], command->argv[1]); |
| 8395 | } else { |
| 8396 | debug_printf_exec(": pipe member with no argv\n"); |
| 8397 | } |
| 8398 | |
| 8399 | /* pipes are inserted between pairs of commands */ |
| 8400 | pipefds.rd = 0; |
| 8401 | pipefds.wr = 1; |
| 8402 | if (cmd_no < pi->num_cmds) |
| 8403 | xpiped_pair(pipefds); |
| 8404 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 8405 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 8406 | if (G.lineno_var) |
| 8407 | strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno)); |
| 8408 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 8409 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8410 | command->pid = BB_MMU ? fork() : vfork(); |
| 8411 | if (!command->pid) { /* child */ |
| 8412 | #if ENABLE_HUSH_JOB |
| 8413 | disable_restore_tty_pgrp_on_exit(); |
| 8414 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 8415 | |
| 8416 | /* Every child adds itself to new process group |
| 8417 | * with pgid == pid_of_first_child_in_pipe */ |
| 8418 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 8419 | pid_t pgrp; |
| 8420 | pgrp = pi->pgrp; |
| 8421 | if (pgrp < 0) /* true for 1st process only */ |
| 8422 | pgrp = getpid(); |
| 8423 | if (setpgid(0, pgrp) == 0 |
| 8424 | && pi->followup != PIPE_BG |
| 8425 | && G_saved_tty_pgrp /* we have ctty */ |
| 8426 | ) { |
| 8427 | /* We do it in *every* child, not just first, |
| 8428 | * to avoid races */ |
| 8429 | tcsetpgrp(G_interactive_fd, pgrp); |
| 8430 | } |
| 8431 | } |
| 8432 | #endif |
| 8433 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 8434 | /* 1st cmd in backgrounded pipe |
| 8435 | * should have its stdin /dev/null'ed */ |
| 8436 | close(0); |
| 8437 | if (open(bb_dev_null, O_RDONLY)) |
| 8438 | xopen("/", O_RDONLY); |
| 8439 | } else { |
| 8440 | xmove_fd(next_infd, 0); |
| 8441 | } |
| 8442 | xmove_fd(pipefds.wr, 1); |
| 8443 | if (pipefds.rd > 1) |
| 8444 | close(pipefds.rd); |
| 8445 | /* Like bash, explicit redirects override pipes, |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8446 | * and the pipe fd (fd#1) is available for dup'ing: |
| 8447 | * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr |
| 8448 | * of cmd1 goes into pipe. |
| 8449 | */ |
| 8450 | if (setup_redirects(command, NULL)) { |
| 8451 | /* Happens when redir file can't be opened: |
| 8452 | * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ' |
| 8453 | * FOO |
| 8454 | * hush: can't open '/qwe/rty': No such file or directory |
| 8455 | * BAZ |
| 8456 | * (echo BAR is not executed, it hits _exit(1) below) |
| 8457 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8458 | _exit(1); |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8459 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8460 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8461 | /* Stores to nommu_save list of env vars putenv'ed |
| 8462 | * (NOMMU, on MMU we don't need that) */ |
| 8463 | /* cast away volatility... */ |
| 8464 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
| 8465 | /* pseudo_exec() does not return */ |
| 8466 | } |
| 8467 | |
| 8468 | /* parent or error */ |
| 8469 | #if ENABLE_HUSH_FAST |
| 8470 | G.count_SIGCHLD++; |
| 8471 | //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 8472 | #endif |
| 8473 | enable_restore_tty_pgrp_on_exit(); |
| 8474 | #if !BB_MMU |
| 8475 | /* Clean up after vforked child */ |
| 8476 | free(nommu_save.argv); |
| 8477 | free(nommu_save.argv_from_re_execing); |
| 8478 | unset_vars(nommu_save.new_env); |
| 8479 | add_vars(nommu_save.old_vars); |
| 8480 | #endif |
| 8481 | free(argv_expanded); |
| 8482 | argv_expanded = NULL; |
| 8483 | if (command->pid < 0) { /* [v]fork failed */ |
| 8484 | /* Clearly indicate, was it fork or vfork */ |
| 8485 | bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork"); |
| 8486 | } else { |
| 8487 | pi->alive_cmds++; |
| 8488 | #if ENABLE_HUSH_JOB |
| 8489 | /* Second and next children need to know pid of first one */ |
| 8490 | if (pi->pgrp < 0) |
| 8491 | pi->pgrp = command->pid; |
| 8492 | #endif |
| 8493 | } |
| 8494 | |
| 8495 | if (cmd_no > 1) |
| 8496 | close(next_infd); |
| 8497 | if (cmd_no < pi->num_cmds) |
| 8498 | close(pipefds.wr); |
| 8499 | /* Pass read (output) pipe end to next iteration */ |
| 8500 | next_infd = pipefds.rd; |
| 8501 | } |
| 8502 | |
| 8503 | if (!pi->alive_cmds) { |
| 8504 | debug_leave(); |
| 8505 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 8506 | return 1; |
| 8507 | } |
| 8508 | |
| 8509 | debug_leave(); |
| 8510 | debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds); |
| 8511 | return -1; |
| 8512 | } |
| 8513 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8514 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 8515 | * global data until exec/_exit (we can be a child after vfork!) */ |
| 8516 | static int run_list(struct pipe *pi) |
| 8517 | { |
| 8518 | #if ENABLE_HUSH_CASE |
| 8519 | char *case_word = NULL; |
| 8520 | #endif |
| 8521 | #if ENABLE_HUSH_LOOPS |
| 8522 | struct pipe *loop_top = NULL; |
| 8523 | char **for_lcur = NULL; |
| 8524 | char **for_list = NULL; |
| 8525 | #endif |
| 8526 | smallint last_followup; |
| 8527 | smalluint rcode; |
| 8528 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
| 8529 | smalluint cond_code = 0; |
| 8530 | #else |
| 8531 | enum { cond_code = 0 }; |
| 8532 | #endif |
| 8533 | #if HAS_KEYWORDS |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 8534 | smallint rword; /* RES_foo */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8535 | smallint last_rword; /* ditto */ |
| 8536 | #endif |
| 8537 | |
| 8538 | debug_printf_exec("run_list start lvl %d\n", G.run_list_level); |
| 8539 | debug_enter(); |
| 8540 | |
| 8541 | #if ENABLE_HUSH_LOOPS |
| 8542 | /* Check syntax for "for" */ |
Denys Vlasenko | 0d6a4ec | 2010-12-18 01:34:49 +0100 | [diff] [blame] | 8543 | { |
| 8544 | struct pipe *cpipe; |
| 8545 | for (cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 8546 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
| 8547 | continue; |
| 8548 | /* current word is FOR or IN (BOLD in comments below) */ |
| 8549 | if (cpipe->next == NULL) { |
| 8550 | syntax_error("malformed for"); |
| 8551 | debug_leave(); |
| 8552 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8553 | return 1; |
| 8554 | } |
| 8555 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
| 8556 | if (cpipe->next->res_word == RES_DO) |
| 8557 | continue; |
| 8558 | /* next word is not "do". It must be "in" then ("FOR v in ...") */ |
| 8559 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 8560 | || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */ |
| 8561 | ) { |
| 8562 | syntax_error("malformed for"); |
| 8563 | debug_leave(); |
| 8564 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8565 | return 1; |
| 8566 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8567 | } |
| 8568 | } |
| 8569 | #endif |
| 8570 | |
| 8571 | /* Past this point, all code paths should jump to ret: label |
| 8572 | * in order to return, no direct "return" statements please. |
| 8573 | * This helps to ensure that no memory is leaked. */ |
| 8574 | |
| 8575 | #if ENABLE_HUSH_JOB |
| 8576 | G.run_list_level++; |
| 8577 | #endif |
| 8578 | |
| 8579 | #if HAS_KEYWORDS |
| 8580 | rword = RES_NONE; |
| 8581 | last_rword = RES_XXXX; |
| 8582 | #endif |
| 8583 | last_followup = PIPE_SEQ; |
| 8584 | rcode = G.last_exitcode; |
| 8585 | |
| 8586 | /* Go through list of pipes, (maybe) executing them. */ |
| 8587 | for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8588 | int r; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8589 | int sv_errexit_depth; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8590 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8591 | if (G.flag_SIGINT) |
| 8592 | break; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 8593 | if (G_flag_return_in_progress == 1) |
| 8594 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8595 | |
| 8596 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 8597 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 8598 | rword, cond_code, last_rword); |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8599 | |
| 8600 | sv_errexit_depth = G.errexit_depth; |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 8601 | if ( |
| 8602 | #if ENABLE_HUSH_IF |
| 8603 | rword == RES_IF || rword == RES_ELIF || |
| 8604 | #endif |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8605 | pi->followup != PIPE_SEQ |
| 8606 | ) { |
| 8607 | G.errexit_depth++; |
| 8608 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8609 | #if ENABLE_HUSH_LOOPS |
| 8610 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
| 8611 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
| 8612 | ) { |
| 8613 | /* start of a loop: remember where loop starts */ |
| 8614 | loop_top = pi; |
| 8615 | G.depth_of_loop++; |
| 8616 | } |
| 8617 | #endif |
| 8618 | /* Still in the same "if...", "then..." or "do..." branch? */ |
| 8619 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
| 8620 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 8621 | || (rcode != 0 && last_followup == PIPE_AND) |
| 8622 | ) { |
| 8623 | /* It is "<true> || CMD" or "<false> && CMD" |
| 8624 | * and we should not execute CMD */ |
| 8625 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 8626 | last_followup = pi->followup; |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8627 | goto dont_check_jobs_but_continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8628 | } |
| 8629 | } |
| 8630 | last_followup = pi->followup; |
| 8631 | IF_HAS_KEYWORDS(last_rword = rword;) |
| 8632 | #if ENABLE_HUSH_IF |
| 8633 | if (cond_code) { |
| 8634 | if (rword == RES_THEN) { |
| 8635 | /* if false; then ... fi has exitcode 0! */ |
| 8636 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8637 | /* "if <false> THEN cmd": skip cmd */ |
| 8638 | continue; |
| 8639 | } |
| 8640 | } else { |
| 8641 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 8642 | /* "if <true> then ... ELSE/ELIF cmd": |
| 8643 | * skip cmd and all following ones */ |
| 8644 | break; |
| 8645 | } |
| 8646 | } |
| 8647 | #endif |
| 8648 | #if ENABLE_HUSH_LOOPS |
| 8649 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
| 8650 | if (!for_lcur) { |
| 8651 | /* first loop through for */ |
| 8652 | |
| 8653 | static const char encoded_dollar_at[] ALIGN1 = { |
| 8654 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 8655 | }; /* encoded representation of "$@" */ |
| 8656 | static const char *const encoded_dollar_at_argv[] = { |
| 8657 | encoded_dollar_at, NULL |
| 8658 | }; /* argv list with one element: "$@" */ |
| 8659 | char **vals; |
| 8660 | |
| 8661 | vals = (char**)encoded_dollar_at_argv; |
| 8662 | if (pi->next->res_word == RES_IN) { |
| 8663 | /* if no variable values after "in" we skip "for" */ |
| 8664 | if (!pi->next->cmds[0].argv) { |
| 8665 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8666 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
| 8667 | break; |
| 8668 | } |
| 8669 | vals = pi->next->cmds[0].argv; |
| 8670 | } /* else: "for var; do..." -> assume "$@" list */ |
| 8671 | /* create list of variable values */ |
| 8672 | debug_print_strings("for_list made from", vals); |
| 8673 | for_list = expand_strvec_to_strvec(vals); |
| 8674 | for_lcur = for_list; |
| 8675 | debug_print_strings("for_list", for_list); |
| 8676 | } |
| 8677 | if (!*for_lcur) { |
| 8678 | /* "for" loop is over, clean up */ |
| 8679 | free(for_list); |
| 8680 | for_list = NULL; |
| 8681 | for_lcur = NULL; |
| 8682 | break; |
| 8683 | } |
| 8684 | /* Insert next value from for_lcur */ |
| 8685 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 8686 | set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*flag:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8687 | continue; |
| 8688 | } |
| 8689 | if (rword == RES_IN) { |
| 8690 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 8691 | } |
| 8692 | if (rword == RES_DONE) { |
| 8693 | continue; /* "done" has no cmds too */ |
| 8694 | } |
| 8695 | #endif |
| 8696 | #if ENABLE_HUSH_CASE |
| 8697 | if (rword == RES_CASE) { |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8698 | debug_printf_exec("CASE cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8699 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8700 | unbackslash(case_word); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8701 | continue; |
| 8702 | } |
| 8703 | if (rword == RES_MATCH) { |
| 8704 | char **argv; |
| 8705 | |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8706 | debug_printf_exec("MATCH cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8707 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 8708 | break; |
| 8709 | /* all prev words didn't match, does this one match? */ |
| 8710 | argv = pi->cmds->argv; |
| 8711 | while (*argv) { |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8712 | char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8713 | /* TODO: which FNM_xxx flags to use? */ |
| 8714 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8715 | debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8716 | free(pattern); |
| 8717 | if (cond_code == 0) { /* match! we will execute this branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8718 | free(case_word); |
| 8719 | case_word = NULL; /* make future "word)" stop */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8720 | break; |
| 8721 | } |
| 8722 | argv++; |
| 8723 | } |
| 8724 | continue; |
| 8725 | } |
| 8726 | if (rword == RES_CASE_BODY) { /* inside of a case branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8727 | debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8728 | if (cond_code != 0) |
| 8729 | continue; /* not matched yet, skip this pipe */ |
| 8730 | } |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8731 | if (rword == RES_ESAC) { |
| 8732 | debug_printf_exec("ESAC cond_code:%d\n", cond_code); |
| 8733 | if (case_word) { |
| 8734 | /* "case" did not match anything: still set $? (to 0) */ |
| 8735 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8736 | } |
| 8737 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8738 | #endif |
| 8739 | /* Just pressing <enter> in shell should check for jobs. |
| 8740 | * OTOH, in non-interactive shell this is useless |
| 8741 | * and only leads to extra job checks */ |
| 8742 | if (pi->num_cmds == 0) { |
| 8743 | if (G_interactive_fd) |
| 8744 | goto check_jobs_and_continue; |
| 8745 | continue; |
| 8746 | } |
| 8747 | |
| 8748 | /* After analyzing all keywords and conditions, we decided |
| 8749 | * to execute this pipe. NB: have to do checkjobs(NULL) |
| 8750 | * after run_pipe to collect any background children, |
| 8751 | * even if list execution is to be stopped. */ |
| 8752 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8753 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8754 | G.flag_break_continue = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8755 | #endif |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8756 | rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */ |
| 8757 | if (r != -1) { |
| 8758 | /* We ran a builtin, function, or group. |
| 8759 | * rcode is already known |
| 8760 | * and we don't need to wait for anything. */ |
| 8761 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
| 8762 | G.last_exitcode = rcode; |
| 8763 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8764 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8765 | /* Was it "break" or "continue"? */ |
| 8766 | if (G.flag_break_continue) { |
| 8767 | smallint fbc = G.flag_break_continue; |
| 8768 | /* We might fall into outer *loop*, |
| 8769 | * don't want to break it too */ |
| 8770 | if (loop_top) { |
| 8771 | G.depth_break_continue--; |
| 8772 | if (G.depth_break_continue == 0) |
| 8773 | G.flag_break_continue = 0; |
| 8774 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 8775 | } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */ |
| 8776 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8777 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8778 | break; |
| 8779 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8780 | /* "continue": simulate end of loop */ |
| 8781 | rword = RES_DONE; |
| 8782 | continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8783 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8784 | #endif |
| 8785 | if (G_flag_return_in_progress == 1) { |
| 8786 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 8787 | break; |
| 8788 | } |
| 8789 | } else if (pi->followup == PIPE_BG) { |
| 8790 | /* What does bash do with attempts to background builtins? */ |
| 8791 | /* even bash 3.2 doesn't do that well with nested bg: |
| 8792 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 8793 | * I'm NOT treating inner &'s as jobs */ |
| 8794 | #if ENABLE_HUSH_JOB |
| 8795 | if (G.run_list_level == 1) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 8796 | insert_job_into_table(pi); |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8797 | #endif |
| 8798 | /* Last command's pid goes to $! */ |
| 8799 | G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid; |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 8800 | G.last_bg_pid_exitcode = 0; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8801 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 8802 | /* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash say 0 */ |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8803 | rcode = EXIT_SUCCESS; |
| 8804 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8805 | } else { |
| 8806 | #if ENABLE_HUSH_JOB |
| 8807 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 8808 | /* Waits for completion, then fg's main shell */ |
| 8809 | rcode = checkjobs_and_fg_shell(pi); |
| 8810 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8811 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8812 | } |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8813 | #endif |
| 8814 | /* This one just waits for completion */ |
| 8815 | rcode = checkjobs(pi, 0 /*(no pid to wait for)*/); |
| 8816 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
| 8817 | check_traps: |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8818 | G.last_exitcode = rcode; |
| 8819 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8820 | } |
| 8821 | |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8822 | /* Handle "set -e" */ |
| 8823 | if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) { |
| 8824 | debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth); |
| 8825 | if (G.errexit_depth == 0) |
| 8826 | hush_exit(rcode); |
| 8827 | } |
| 8828 | G.errexit_depth = sv_errexit_depth; |
| 8829 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8830 | /* Analyze how result affects subsequent commands */ |
| 8831 | #if ENABLE_HUSH_IF |
| 8832 | if (rword == RES_IF || rword == RES_ELIF) |
| 8833 | cond_code = rcode; |
| 8834 | #endif |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8835 | check_jobs_and_continue: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8836 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8837 | dont_check_jobs_but_continue: ; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8838 | #if ENABLE_HUSH_LOOPS |
| 8839 | /* Beware of "while false; true; do ..."! */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 8840 | if (pi->next |
| 8841 | && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE) |
Denys Vlasenko | 56a3b82 | 2011-06-01 12:47:07 +0200 | [diff] [blame] | 8842 | /* check for RES_DONE is needed for "while ...; do \n done" case */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 8843 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8844 | if (rword == RES_WHILE) { |
| 8845 | if (rcode) { |
| 8846 | /* "while false; do...done" - exitcode 0 */ |
| 8847 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8848 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8849 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8850 | } |
| 8851 | } |
| 8852 | if (rword == RES_UNTIL) { |
| 8853 | if (!rcode) { |
| 8854 | debug_printf_exec(": until expr is true: breaking\n"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8855 | break; |
| 8856 | } |
| 8857 | } |
| 8858 | } |
| 8859 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8860 | } /* for (pi) */ |
| 8861 | |
| 8862 | #if ENABLE_HUSH_JOB |
| 8863 | G.run_list_level--; |
| 8864 | #endif |
| 8865 | #if ENABLE_HUSH_LOOPS |
| 8866 | if (loop_top) |
| 8867 | G.depth_of_loop--; |
| 8868 | free(for_list); |
| 8869 | #endif |
| 8870 | #if ENABLE_HUSH_CASE |
| 8871 | free(case_word); |
| 8872 | #endif |
| 8873 | debug_leave(); |
| 8874 | debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode); |
| 8875 | return rcode; |
| 8876 | } |
| 8877 | |
| 8878 | /* Select which version we will use */ |
| 8879 | static int run_and_free_list(struct pipe *pi) |
| 8880 | { |
| 8881 | int rcode = 0; |
| 8882 | debug_printf_exec("run_and_free_list entered\n"); |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 8883 | if (!G.o_opt[OPT_O_NOEXEC]) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8884 | debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds); |
| 8885 | rcode = run_list(pi); |
| 8886 | } |
| 8887 | /* free_pipe_list has the side effect of clearing memory. |
| 8888 | * In the long run that function can be merged with run_list, |
| 8889 | * but doing that now would hobble the debugging effort. */ |
| 8890 | free_pipe_list(pi); |
| 8891 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
| 8892 | return rcode; |
| 8893 | } |
| 8894 | |
| 8895 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8896 | static void install_sighandlers(unsigned mask) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 8897 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8898 | sighandler_t old_handler; |
| 8899 | unsigned sig = 0; |
| 8900 | while ((mask >>= 1) != 0) { |
| 8901 | sig++; |
| 8902 | if (!(mask & 1)) |
| 8903 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 8904 | old_handler = install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8905 | /* POSIX allows shell to re-enable SIGCHLD |
| 8906 | * even if it was SIG_IGN on entry. |
| 8907 | * Therefore we skip IGN check for it: |
| 8908 | */ |
| 8909 | if (sig == SIGCHLD) |
| 8910 | continue; |
Denys Vlasenko | 49e6bf2 | 2017-08-04 14:28:16 +0200 | [diff] [blame] | 8911 | /* bash re-enables SIGHUP which is SIG_IGNed on entry. |
| 8912 | * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$" |
| 8913 | */ |
| 8914 | //if (sig == SIGHUP) continue; - TODO? |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8915 | if (old_handler == SIG_IGN) { |
| 8916 | /* oops... restore back to IGN, and record this fact */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 8917 | install_sighandler(sig, old_handler); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 8918 | #if ENABLE_HUSH_TRAP |
| 8919 | if (!G_traps) |
| 8920 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
| 8921 | free(G_traps[sig]); |
| 8922 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
| 8923 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8924 | } |
| 8925 | } |
| 8926 | } |
| 8927 | |
| 8928 | /* Called a few times only (or even once if "sh -c") */ |
| 8929 | static void install_special_sighandlers(void) |
| 8930 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8931 | unsigned mask; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8932 | |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8933 | /* Which signals are shell-special? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8934 | mask = (1 << SIGQUIT) | (1 << SIGCHLD); |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8935 | if (G_interactive_fd) { |
| 8936 | mask |= SPECIAL_INTERACTIVE_SIGS; |
| 8937 | if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8938 | mask |= SPECIAL_JOBSTOP_SIGS; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8939 | } |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8940 | /* Careful, do not re-install handlers we already installed */ |
| 8941 | if (G.special_sig_mask != mask) { |
| 8942 | unsigned diff = mask & ~G.special_sig_mask; |
| 8943 | G.special_sig_mask = mask; |
| 8944 | install_sighandlers(diff); |
| 8945 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8946 | } |
| 8947 | |
| 8948 | #if ENABLE_HUSH_JOB |
| 8949 | /* helper */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8950 | /* Set handlers to restore tty pgrp and exit */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8951 | static void install_fatal_sighandlers(void) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8952 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8953 | unsigned mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8954 | |
| 8955 | /* We will restore tty pgrp on these signals */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8956 | mask = 0 |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 8957 | /*+ (1 << SIGILL ) * HUSH_DEBUG*/ |
| 8958 | /*+ (1 << SIGFPE ) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8959 | + (1 << SIGBUS ) * HUSH_DEBUG |
| 8960 | + (1 << SIGSEGV) * HUSH_DEBUG |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 8961 | /*+ (1 << SIGTRAP) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8962 | + (1 << SIGABRT) |
| 8963 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 8964 | + (1 << SIGPIPE) |
| 8965 | + (1 << SIGALRM) |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8966 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs. |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8967 | * if we aren't interactive... but in this case |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8968 | * we never want to restore pgrp on exit, and this fn is not called |
| 8969 | */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8970 | /*+ (1 << SIGHUP )*/ |
| 8971 | /*+ (1 << SIGTERM)*/ |
| 8972 | /*+ (1 << SIGINT )*/ |
| 8973 | ; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8974 | G_fatal_sig_mask = mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8975 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8976 | install_sighandlers(mask); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8977 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 8978 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 8979 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8980 | static int set_mode(int state, char mode, const char *o_opt) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 8981 | { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8982 | int idx; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 8983 | switch (mode) { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8984 | case 'n': |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 8985 | G.o_opt[OPT_O_NOEXEC] = state; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8986 | break; |
| 8987 | case 'x': |
| 8988 | IF_HUSH_MODE_X(G_x_mode = state;) |
| 8989 | break; |
| 8990 | case 'o': |
| 8991 | if (!o_opt) { |
| 8992 | /* "set -+o" without parameter. |
| 8993 | * in bash, set -o produces this output: |
| 8994 | * pipefail off |
| 8995 | * and set +o: |
| 8996 | * set +o pipefail |
| 8997 | * We always use the second form. |
| 8998 | */ |
| 8999 | const char *p = o_opt_strings; |
| 9000 | idx = 0; |
| 9001 | while (*p) { |
| 9002 | printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p); |
| 9003 | idx++; |
| 9004 | p += strlen(p) + 1; |
| 9005 | } |
| 9006 | break; |
| 9007 | } |
| 9008 | idx = index_in_strings(o_opt_strings, o_opt); |
| 9009 | if (idx >= 0) { |
| 9010 | G.o_opt[idx] = state; |
| 9011 | break; |
| 9012 | } |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9013 | case 'e': |
| 9014 | G.o_opt[OPT_O_ERREXIT] = state; |
| 9015 | break; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9016 | default: |
| 9017 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 9018 | } |
| 9019 | return EXIT_SUCCESS; |
| 9020 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9021 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 9022 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 9023 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9024 | { |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9025 | enum { |
| 9026 | OPT_login = (1 << 0), |
| 9027 | }; |
| 9028 | unsigned flags; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9029 | int opt; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9030 | unsigned builtin_argc; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9031 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9032 | struct variable *cur_var; |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9033 | struct variable *shell_ver; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 9034 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 9035 | INIT_G(); |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 9036 | if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9037 | G.last_exitcode = EXIT_SUCCESS; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 9038 | |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 9039 | #if ENABLE_HUSH_FAST |
| 9040 | G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 9041 | #endif |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9042 | #if !BB_MMU |
| 9043 | G.argv0_for_re_execing = argv[0]; |
| 9044 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9045 | |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 9046 | /* Deal with HUSH_VERSION */ |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9047 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
| 9048 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9049 | shell_ver = xzalloc(sizeof(*shell_ver)); |
| 9050 | shell_ver->flg_export = 1; |
| 9051 | shell_ver->flg_read_only = 1; |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 9052 | /* Code which handles ${var<op>...} needs writable values for all variables, |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 9053 | * therefore we xstrdup: */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9054 | shell_ver->varstr = xstrdup(hush_version_str); |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9055 | |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 9056 | /* Create shell local variables from the values |
| 9057 | * currently living in the environment */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9058 | G.top_var = shell_ver; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 9059 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 9060 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9061 | if (e) while (*e) { |
| 9062 | char *value = strchr(*e, '='); |
| 9063 | if (value) { /* paranoia */ |
| 9064 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 9065 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 9066 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9067 | cur_var->max_len = strlen(*e); |
| 9068 | cur_var->flg_export = 1; |
| 9069 | } |
| 9070 | e++; |
| 9071 | } |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 9072 | /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9073 | debug_printf_env("putenv '%s'\n", shell_ver->varstr); |
| 9074 | putenv(shell_ver->varstr); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9075 | |
| 9076 | /* Export PWD */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9077 | set_pwd_var(SETFLAG_EXPORT); |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9078 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 9079 | #if BASH_HOSTNAME_VAR |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9080 | /* Set (but not export) HOSTNAME unless already set */ |
| 9081 | if (!get_local_var_value("HOSTNAME")) { |
| 9082 | struct utsname uts; |
| 9083 | uname(&uts); |
| 9084 | set_local_var_from_halves("HOSTNAME", uts.nodename); |
| 9085 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9086 | /* bash also exports SHLVL and _, |
| 9087 | * and sets (but doesn't export) the following variables: |
| 9088 | * BASH=/bin/bash |
| 9089 | * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu") |
| 9090 | * BASH_VERSION='3.2.0(1)-release' |
| 9091 | * HOSTTYPE=i386 |
| 9092 | * MACHTYPE=i386-pc-linux-gnu |
| 9093 | * OSTYPE=linux-gnu |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9094 | * PPID=<NNNNN> - we also do it elsewhere |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9095 | * EUID=<NNNNN> |
| 9096 | * UID=<NNNNN> |
| 9097 | * GROUPS=() |
| 9098 | * LINES=<NNN> |
| 9099 | * COLUMNS=<NNN> |
| 9100 | * BASH_ARGC=() |
| 9101 | * BASH_ARGV=() |
| 9102 | * BASH_LINENO=() |
| 9103 | * BASH_SOURCE=() |
| 9104 | * DIRSTACK=() |
| 9105 | * PIPESTATUS=([0]="0") |
| 9106 | * HISTFILE=/<xxx>/.bash_history |
| 9107 | * HISTFILESIZE=500 |
| 9108 | * HISTSIZE=500 |
| 9109 | * MAILCHECK=60 |
| 9110 | * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:. |
| 9111 | * SHELL=/bin/bash |
| 9112 | * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor |
| 9113 | * TERM=dumb |
| 9114 | * OPTERR=1 |
| 9115 | * OPTIND=1 |
| 9116 | * IFS=$' \t\n' |
| 9117 | * PS1='\s-\v\$ ' |
| 9118 | * PS2='> ' |
| 9119 | * PS4='+ ' |
| 9120 | */ |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9121 | #endif |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9122 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 9123 | #if ENABLE_HUSH_LINENO_VAR |
| 9124 | if (ENABLE_HUSH_LINENO_VAR) { |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9125 | char *p = xasprintf("LINENO=%*s", (int)(sizeof(int)*3), ""); |
| 9126 | set_local_var(p, /*flags*/ 0); |
| 9127 | G.lineno_var = p; /* can't assign before set_local_var("LINENO=...") */ |
| 9128 | } |
| 9129 | #endif |
| 9130 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 9131 | #if ENABLE_FEATURE_EDITING |
Denys Vlasenko | e45af7a | 2011-09-04 16:15:24 +0200 | [diff] [blame] | 9132 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 9133 | #endif |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 9134 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 9135 | /* Initialize some more globals to non-zero values */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 9136 | cmdedit_update_prompt(); |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 9137 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 9138 | die_func = restore_ttypgrp_and__exit; |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 9139 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9140 | /* Shell is non-interactive at first. We need to call |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9141 | * install_special_sighandlers() if we are going to execute "sh <script>", |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9142 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9143 | * If we later decide that we are interactive, we run install_special_sighandlers() |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9144 | * in order to intercept (more) signals. |
| 9145 | */ |
| 9146 | |
| 9147 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 9148 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9149 | flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9150 | builtin_argc = 0; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9151 | while (1) { |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9152 | opt = getopt(argc, argv, "+c:exinsl" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9153 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 9154 | "<:$:R:V:" |
| 9155 | # if ENABLE_HUSH_FUNCTIONS |
| 9156 | "F:" |
| 9157 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9158 | #endif |
| 9159 | ); |
| 9160 | if (opt <= 0) |
| 9161 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9162 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9163 | case 'c': |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9164 | /* Possibilities: |
| 9165 | * sh ... -c 'script' |
| 9166 | * sh ... -c 'script' ARG0 [ARG1...] |
| 9167 | * On NOMMU, if builtin_argc != 0, |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9168 | * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...] |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9169 | * "" needs to be replaced with NULL |
| 9170 | * and BARGV vector fed to builtin function. |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9171 | * Note: the form without ARG0 never happens: |
| 9172 | * sh ... -c 'builtin' BARGV... "" |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9173 | */ |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9174 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9175 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9176 | G.root_ppid = getppid(); |
| 9177 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 9178 | G.global_argv = argv + optind; |
| 9179 | G.global_argc = argc - optind; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9180 | if (builtin_argc) { |
| 9181 | /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */ |
| 9182 | const struct built_in_command *x; |
| 9183 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9184 | install_special_sighandlers(); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9185 | x = find_builtin(optarg); |
| 9186 | if (x) { /* paranoia */ |
| 9187 | G.global_argc -= builtin_argc; /* skip [BARGV...] "" */ |
| 9188 | G.global_argv += builtin_argc; |
| 9189 | G.global_argv[-1] = NULL; /* replace "" */ |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 9190 | fflush_all(); |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9191 | G.last_exitcode = x->b_function(argv + optind - 1); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9192 | } |
| 9193 | goto final_return; |
| 9194 | } |
| 9195 | if (!G.global_argv[0]) { |
| 9196 | /* -c 'script' (no params): prevent empty $0 */ |
| 9197 | G.global_argv--; /* points to argv[i] of 'script' */ |
| 9198 | G.global_argv[0] = argv[0]; |
Denys Vlasenko | 5ae8f1c | 2010-05-22 06:32:11 +0200 | [diff] [blame] | 9199 | G.global_argc++; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9200 | } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9201 | install_special_sighandlers(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9202 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9203 | goto final_return; |
| 9204 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 9205 | /* Well, we cannot just declare interactiveness, |
| 9206 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9207 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9208 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 9209 | case 's': |
| 9210 | /* "-s" means "read from stdin", but this is how we always |
| 9211 | * operate, so simply do nothing here. */ |
| 9212 | break; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9213 | case 'l': |
| 9214 | flags |= OPT_login; |
| 9215 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9216 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 9217 | case '<': /* "big heredoc" support */ |
Denys Vlasenko | 729ecb8 | 2010-06-07 14:14:26 +0200 | [diff] [blame] | 9218 | full_write1_str(optarg); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 9219 | _exit(0); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9220 | case '$': { |
| 9221 | unsigned long long empty_trap_mask; |
| 9222 | |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9223 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 9224 | optarg++; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9225 | G.root_ppid = bb_strtou(optarg, &optarg, 16); |
| 9226 | optarg++; |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9227 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 9228 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9229 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9230 | optarg++; |
| 9231 | builtin_argc = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9232 | optarg++; |
| 9233 | empty_trap_mask = bb_strtoull(optarg, &optarg, 16); |
| 9234 | if (empty_trap_mask != 0) { |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9235 | IF_HUSH_TRAP(int sig;) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9236 | install_special_sighandlers(); |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9237 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9238 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9239 | for (sig = 1; sig < NSIG; sig++) { |
| 9240 | if (empty_trap_mask & (1LL << sig)) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9241 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 9242 | install_sighandler(sig, SIG_IGN); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9243 | } |
| 9244 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9245 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9246 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9247 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9248 | optarg++; |
| 9249 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9250 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9251 | break; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9252 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9253 | case 'R': |
| 9254 | case 'V': |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9255 | set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9256 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 9257 | # if ENABLE_HUSH_FUNCTIONS |
| 9258 | case 'F': { |
| 9259 | struct function *funcp = new_function(optarg); |
| 9260 | /* funcp->name is already set to optarg */ |
| 9261 | /* funcp->body is set to NULL. It's a special case. */ |
| 9262 | funcp->body_as_string = argv[optind]; |
| 9263 | optind++; |
| 9264 | break; |
| 9265 | } |
| 9266 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9267 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 9268 | case 'n': |
| 9269 | case 'x': |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9270 | case 'e': |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9271 | if (set_mode(1, opt, NULL) == 0) /* no error */ |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 9272 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9273 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9274 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9275 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 9276 | " or: sh -c command [args]...\n\n"); |
| 9277 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9278 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9279 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9280 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9281 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9282 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9283 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9284 | /* Skip options. Try "hush -l": $1 should not be "-l"! */ |
| 9285 | G.global_argc = argc - (optind - 1); |
| 9286 | G.global_argv = argv + (optind - 1); |
| 9287 | G.global_argv[0] = argv[0]; |
| 9288 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9289 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9290 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9291 | G.root_ppid = getppid(); |
| 9292 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9293 | |
| 9294 | /* If we are login shell... */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9295 | if (flags & OPT_login) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9296 | FILE *input; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9297 | debug_printf("sourcing /etc/profile\n"); |
| 9298 | input = fopen_for_read("/etc/profile"); |
| 9299 | if (input != NULL) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9300 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9301 | install_special_sighandlers(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9302 | parse_and_run_file(input); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9303 | fclose_and_forget(input); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9304 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9305 | /* bash: after sourcing /etc/profile, |
| 9306 | * tries to source (in the given order): |
| 9307 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 9308 | * stopping on first found. --noprofile turns this off. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9309 | * bash also sources ~/.bash_logout on exit. |
| 9310 | * If called as sh, skips .bash_XXX files. |
| 9311 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9312 | } |
| 9313 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9314 | if (G.global_argv[1]) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9315 | FILE *input; |
| 9316 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9317 | * "bash <script>" (which is never interactive (unless -i?)) |
| 9318 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9319 | * If called as sh, does the same but with $ENV. |
Denys Vlasenko | 2eb0a7e | 2016-10-27 11:28:59 +0200 | [diff] [blame] | 9320 | * Also NB, per POSIX, $ENV should undergo parameter expansion. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9321 | */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9322 | G.global_argc--; |
| 9323 | G.global_argv++; |
| 9324 | debug_printf("running script '%s'\n", G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 9325 | xfunc_error_retval = 127; /* for "hush /does/not/exist" case */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9326 | input = xfopen_for_read(G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 9327 | xfunc_error_retval = 1; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9328 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9329 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9330 | parse_and_run_file(input); |
| 9331 | #if ENABLE_FEATURE_CLEAN_UP |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9332 | fclose_and_forget(input); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9333 | #endif |
| 9334 | goto final_return; |
| 9335 | } |
| 9336 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9337 | /* Up to here, shell was non-interactive. Now it may become one. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9338 | * NB: don't forget to (re)run install_special_sighandlers() as needed. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9339 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9340 | |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 9341 | /* A shell is interactive if the '-i' flag was given, |
| 9342 | * or if all of the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 9343 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9344 | * no arguments remaining or the -s flag given |
| 9345 | * standard input is a terminal |
| 9346 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9347 | * Refer to Posix.2, the description of the 'sh' utility. |
| 9348 | */ |
| 9349 | #if ENABLE_HUSH_JOB |
| 9350 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9351 | G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 9352 | debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp); |
| 9353 | if (G_saved_tty_pgrp < 0) |
| 9354 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9355 | |
| 9356 | /* try to dup stdin to high fd#, >= 255 */ |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 9357 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9358 | if (G_interactive_fd < 0) { |
| 9359 | /* try to dup to any fd */ |
| 9360 | G_interactive_fd = dup(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9361 | if (G_interactive_fd < 0) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9362 | /* give up */ |
| 9363 | G_interactive_fd = 0; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9364 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 9365 | } |
| 9366 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9367 | // TODO: track & disallow any attempts of user |
| 9368 | // to (inadvertently) close/redirect G_interactive_fd |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9369 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9370 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9371 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9372 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9373 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9374 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9375 | /* If we were run as 'hush &', sleep until we are |
| 9376 | * in the foreground (tty pgrp == our pgrp). |
| 9377 | * If we get started under a job aware app (like bash), |
| 9378 | * make sure we are now in charge so we don't fight over |
| 9379 | * who gets the foreground */ |
| 9380 | while (1) { |
| 9381 | pid_t shell_pgrp = getpgrp(); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9382 | G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 9383 | if (G_saved_tty_pgrp == shell_pgrp) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9384 | break; |
| 9385 | /* send TTIN to ourself (should stop us) */ |
| 9386 | kill(- shell_pgrp, SIGTTIN); |
| 9387 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9388 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9389 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9390 | /* Install more signal handlers */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9391 | install_special_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9392 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9393 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9394 | /* Set other signals to restore saved_tty_pgrp */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9395 | install_fatal_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9396 | /* Put ourselves in our own process group |
| 9397 | * (bash, too, does this only if ctty is available) */ |
| 9398 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 9399 | /* Grab control of the terminal */ |
| 9400 | tcsetpgrp(G_interactive_fd, getpid()); |
| 9401 | } |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 9402 | enable_restore_tty_pgrp_on_exit(); |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 9403 | |
| 9404 | # if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0 |
| 9405 | { |
| 9406 | const char *hp = get_local_var_value("HISTFILE"); |
| 9407 | if (!hp) { |
| 9408 | hp = get_local_var_value("HOME"); |
| 9409 | if (hp) |
| 9410 | hp = concat_path_file(hp, ".hush_history"); |
| 9411 | } else { |
| 9412 | hp = xstrdup(hp); |
| 9413 | } |
| 9414 | if (hp) { |
| 9415 | G.line_input_state->hist_file = hp; |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 9416 | //set_local_var(xasprintf("HISTFILE=%s", ...)); |
| 9417 | } |
| 9418 | # if ENABLE_FEATURE_SH_HISTFILESIZE |
| 9419 | hp = get_local_var_value("HISTFILESIZE"); |
| 9420 | G.line_input_state->max_history = size_from_HISTFILESIZE(hp); |
| 9421 | # endif |
| 9422 | } |
| 9423 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9424 | } else { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9425 | install_special_sighandlers(); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9426 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9427 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9428 | /* No job control compiled in, only prompt/line editing */ |
| 9429 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 9430 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9431 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9432 | /* try to dup to any fd */ |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame^] | 9433 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9434 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9435 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9436 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9437 | } |
| 9438 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9439 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9440 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9441 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9442 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9443 | #else |
| 9444 | /* We have interactiveness code disabled */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9445 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9446 | #endif |
| 9447 | /* bash: |
| 9448 | * if interactive but not a login shell, sources ~/.bashrc |
| 9449 | * (--norc turns this off, --rcfile <file> overrides) |
| 9450 | */ |
| 9451 | |
| 9452 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Denys Vlasenko | c34c033 | 2009-09-29 12:25:30 +0200 | [diff] [blame] | 9453 | /* note: ash and hush share this string */ |
| 9454 | printf("\n\n%s %s\n" |
| 9455 | IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n") |
| 9456 | "\n", |
| 9457 | bb_banner, |
| 9458 | "hush - the humble shell" |
| 9459 | ); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 9460 | } |
| 9461 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9462 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9463 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9464 | final_return: |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9465 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9466 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 9467 | |
| 9468 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9469 | /* |
| 9470 | * Built-ins |
| 9471 | */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9472 | static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9473 | { |
| 9474 | return 0; |
| 9475 | } |
| 9476 | |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9477 | #if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL |
Denys Vlasenko | 8bc7f2c | 2009-10-19 13:20:52 +0200 | [diff] [blame] | 9478 | static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv)) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9479 | { |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 9480 | int argc = string_array_len(argv); |
| 9481 | return applet_main_func(argc, argv); |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9482 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9483 | #endif |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 9484 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9485 | static int FAST_FUNC builtin_test(char **argv) |
| 9486 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9487 | return run_applet_main(argv, test_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9488 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9489 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9490 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9491 | static int FAST_FUNC builtin_echo(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9492 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9493 | return run_applet_main(argv, echo_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9494 | } |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9495 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9496 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9497 | static int FAST_FUNC builtin_printf(char **argv) |
| 9498 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9499 | return run_applet_main(argv, printf_main); |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9500 | } |
| 9501 | #endif |
| 9502 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9503 | #if ENABLE_HUSH_HELP |
| 9504 | static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM) |
| 9505 | { |
| 9506 | const struct built_in_command *x; |
| 9507 | |
| 9508 | printf( |
| 9509 | "Built-in commands:\n" |
| 9510 | "------------------\n"); |
| 9511 | for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) { |
| 9512 | if (x->b_descr) |
| 9513 | printf("%-10s%s\n", x->b_cmd, x->b_descr); |
| 9514 | } |
| 9515 | return EXIT_SUCCESS; |
| 9516 | } |
| 9517 | #endif |
| 9518 | |
| 9519 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
| 9520 | static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM) |
| 9521 | { |
| 9522 | show_history(G.line_input_state); |
| 9523 | return EXIT_SUCCESS; |
| 9524 | } |
| 9525 | #endif |
| 9526 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9527 | static char **skip_dash_dash(char **argv) |
| 9528 | { |
| 9529 | argv++; |
| 9530 | if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0') |
| 9531 | argv++; |
| 9532 | return argv; |
| 9533 | } |
| 9534 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9535 | static int FAST_FUNC builtin_cd(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9536 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9537 | const char *newdir; |
| 9538 | |
| 9539 | argv = skip_dash_dash(argv); |
| 9540 | newdir = argv[0]; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9541 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9542 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9543 | * bash says "bash: cd: HOME not set" and does nothing |
| 9544 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9545 | */ |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 9546 | const char *home = get_local_var_value("HOME"); |
| 9547 | newdir = home ? home : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 9548 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9549 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9550 | /* Mimic bash message exactly */ |
| 9551 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9552 | return EXIT_FAILURE; |
| 9553 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9554 | /* Read current dir (get_cwd(1) is inside) and set PWD. |
| 9555 | * Note: do not enforce exporting. If PWD was unset or unexported, |
| 9556 | * set it again, but do not export. bash does the same. |
| 9557 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9558 | set_pwd_var(/*flag:*/ 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9559 | return EXIT_SUCCESS; |
| 9560 | } |
| 9561 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9562 | static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM) |
| 9563 | { |
| 9564 | puts(get_cwd(0)); |
| 9565 | return EXIT_SUCCESS; |
| 9566 | } |
| 9567 | |
| 9568 | static int FAST_FUNC builtin_eval(char **argv) |
| 9569 | { |
| 9570 | int rcode = EXIT_SUCCESS; |
| 9571 | |
| 9572 | argv = skip_dash_dash(argv); |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 9573 | if (argv[0]) { |
| 9574 | char *str = NULL; |
| 9575 | |
| 9576 | if (argv[1]) { |
| 9577 | /* "The eval utility shall construct a command by |
| 9578 | * concatenating arguments together, separating |
| 9579 | * each with a <space> character." |
| 9580 | */ |
| 9581 | char *p; |
| 9582 | unsigned len = 0; |
| 9583 | char **pp = argv; |
| 9584 | do |
| 9585 | len += strlen(*pp) + 1; |
| 9586 | while (*++pp); |
| 9587 | str = p = xmalloc(len); |
| 9588 | pp = argv; |
| 9589 | do { |
| 9590 | p = stpcpy(p, *pp); |
| 9591 | *p++ = ' '; |
| 9592 | } while (*++pp); |
| 9593 | p[-1] = '\0'; |
| 9594 | } |
| 9595 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9596 | /* bash: |
| 9597 | * eval "echo Hi; done" ("done" is syntax error): |
| 9598 | * "echo Hi" will not execute too. |
| 9599 | */ |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 9600 | parse_and_run_string(str ? str : argv[0]); |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9601 | free(str); |
| 9602 | rcode = G.last_exitcode; |
| 9603 | } |
| 9604 | return rcode; |
| 9605 | } |
| 9606 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9607 | static int FAST_FUNC builtin_exec(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9608 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9609 | argv = skip_dash_dash(argv); |
| 9610 | if (argv[0] == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9611 | return EXIT_SUCCESS; /* bash does this */ |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9612 | |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9613 | /* Careful: we can end up here after [v]fork. Do not restore |
| 9614 | * tty pgrp then, only top-level shell process does that */ |
| 9615 | if (G_saved_tty_pgrp && getpid() == G.root_pid) |
| 9616 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
| 9617 | |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 9618 | /* Saved-redirect fds, script fds and G_interactive_fd are still |
| 9619 | * open here. However, they are all CLOEXEC, and execv below |
| 9620 | * closes them. Try interactive "exec ls -l /proc/self/fd", |
| 9621 | * it should show no extra open fds in the "ls" process. |
| 9622 | * If we'd try to run builtins/NOEXECs, this would need improving. |
| 9623 | */ |
| 9624 | //close_saved_fds_and_FILE_fds(); |
| 9625 | |
Denys Vlasenko | 3ef4f77 | 2009-10-19 23:09:06 +0200 | [diff] [blame] | 9626 | /* TODO: if exec fails, bash does NOT exit! We do. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9627 | * We'll need to undo trap cleanup (it's inside execvp_or_die) |
Denys Vlasenko | 3ef4f77 | 2009-10-19 23:09:06 +0200 | [diff] [blame] | 9628 | * and tcsetpgrp, and this is inherently racy. |
| 9629 | */ |
| 9630 | execvp_or_die(argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9631 | } |
| 9632 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9633 | static int FAST_FUNC builtin_exit(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9634 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 9635 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9636 | |
| 9637 | /* interactive bash: |
| 9638 | * # trap "echo EEE" EXIT |
| 9639 | * # exit |
| 9640 | * exit |
| 9641 | * There are stopped jobs. |
| 9642 | * (if there are _stopped_ jobs, running ones don't count) |
| 9643 | * # exit |
| 9644 | * exit |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 9645 | * EEE (then bash exits) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9646 | * |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 9647 | * TODO: we can use G.exiting = -1 as indicator "last cmd was exit" |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9648 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 9649 | |
| 9650 | /* note: EXIT trap is run by hush_exit */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9651 | argv = skip_dash_dash(argv); |
| 9652 | if (argv[0] == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9653 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9654 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 9655 | xfunc_error_retval = 255; |
| 9656 | /* bash: exit -2 == exit 254, no error msg */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9657 | hush_exit(xatoi(argv[0]) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9658 | } |
| 9659 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9660 | #if ENABLE_HUSH_TYPE |
| 9661 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */ |
| 9662 | static int FAST_FUNC builtin_type(char **argv) |
| 9663 | { |
| 9664 | int ret = EXIT_SUCCESS; |
| 9665 | |
| 9666 | while (*++argv) { |
| 9667 | const char *type; |
| 9668 | char *path = NULL; |
| 9669 | |
| 9670 | if (0) {} /* make conditional compile easier below */ |
| 9671 | /*else if (find_alias(*argv)) |
| 9672 | type = "an alias";*/ |
| 9673 | #if ENABLE_HUSH_FUNCTIONS |
| 9674 | else if (find_function(*argv)) |
| 9675 | type = "a function"; |
| 9676 | #endif |
| 9677 | else if (find_builtin(*argv)) |
| 9678 | type = "a shell builtin"; |
| 9679 | else if ((path = find_in_path(*argv)) != NULL) |
| 9680 | type = path; |
| 9681 | else { |
| 9682 | bb_error_msg("type: %s: not found", *argv); |
| 9683 | ret = EXIT_FAILURE; |
| 9684 | continue; |
| 9685 | } |
| 9686 | |
| 9687 | printf("%s is %s\n", *argv, type); |
| 9688 | free(path); |
| 9689 | } |
| 9690 | |
| 9691 | return ret; |
| 9692 | } |
| 9693 | #endif |
| 9694 | |
| 9695 | #if ENABLE_HUSH_READ |
| 9696 | /* Interruptibility of read builtin in bash |
| 9697 | * (tested on bash-4.2.8 by sending signals (not by ^C)): |
| 9698 | * |
| 9699 | * Empty trap makes read ignore corresponding signal, for any signal. |
| 9700 | * |
| 9701 | * SIGINT: |
| 9702 | * - terminates non-interactive shell; |
| 9703 | * - interrupts read in interactive shell; |
| 9704 | * if it has non-empty trap: |
| 9705 | * - executes trap and returns to command prompt in interactive shell; |
| 9706 | * - executes trap and returns to read in non-interactive shell; |
| 9707 | * SIGTERM: |
| 9708 | * - is ignored (does not interrupt) read in interactive shell; |
| 9709 | * - terminates non-interactive shell; |
| 9710 | * if it has non-empty trap: |
| 9711 | * - executes trap and returns to read; |
| 9712 | * SIGHUP: |
| 9713 | * - terminates shell (regardless of interactivity); |
| 9714 | * if it has non-empty trap: |
| 9715 | * - executes trap and returns to read; |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9716 | * SIGCHLD from children: |
| 9717 | * - does not interrupt read regardless of interactivity: |
| 9718 | * try: sleep 1 & read x; echo $x |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9719 | */ |
| 9720 | static int FAST_FUNC builtin_read(char **argv) |
| 9721 | { |
| 9722 | const char *r; |
| 9723 | char *opt_n = NULL; |
| 9724 | char *opt_p = NULL; |
| 9725 | char *opt_t = NULL; |
| 9726 | char *opt_u = NULL; |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9727 | char *opt_d = NULL; /* optimized out if !BASH */ |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9728 | const char *ifs; |
| 9729 | int read_flags; |
| 9730 | |
| 9731 | /* "!": do not abort on errors. |
| 9732 | * Option string must start with "sr" to match BUILTIN_READ_xxx |
| 9733 | */ |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9734 | read_flags = getopt32(argv, |
| 9735 | #if BASH_READ_D |
| 9736 | "!srn:p:t:u:d:", &opt_n, &opt_p, &opt_t, &opt_u, &opt_d |
| 9737 | #else |
| 9738 | "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u |
| 9739 | #endif |
| 9740 | ); |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9741 | if (read_flags == (uint32_t)-1) |
| 9742 | return EXIT_FAILURE; |
| 9743 | argv += optind; |
| 9744 | ifs = get_local_var_value("IFS"); /* can be NULL */ |
| 9745 | |
| 9746 | again: |
| 9747 | r = shell_builtin_read(set_local_var_from_halves, |
| 9748 | argv, |
| 9749 | ifs, |
| 9750 | read_flags, |
| 9751 | opt_n, |
| 9752 | opt_p, |
| 9753 | opt_t, |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9754 | opt_u, |
| 9755 | opt_d |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9756 | ); |
| 9757 | |
| 9758 | if ((uintptr_t)r == 1 && errno == EINTR) { |
| 9759 | unsigned sig = check_and_run_traps(); |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9760 | if (sig != SIGINT) |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9761 | goto again; |
| 9762 | } |
| 9763 | |
| 9764 | if ((uintptr_t)r > 1) { |
| 9765 | bb_error_msg("%s", r); |
| 9766 | r = (char*)(uintptr_t)1; |
| 9767 | } |
| 9768 | |
| 9769 | return (uintptr_t)r; |
| 9770 | } |
| 9771 | #endif |
| 9772 | |
| 9773 | #if ENABLE_HUSH_UMASK |
| 9774 | static int FAST_FUNC builtin_umask(char **argv) |
| 9775 | { |
| 9776 | int rc; |
| 9777 | mode_t mask; |
| 9778 | |
| 9779 | rc = 1; |
| 9780 | mask = umask(0); |
| 9781 | argv = skip_dash_dash(argv); |
| 9782 | if (argv[0]) { |
| 9783 | mode_t old_mask = mask; |
| 9784 | |
| 9785 | /* numeric umasks are taken as-is */ |
| 9786 | /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */ |
| 9787 | if (!isdigit(argv[0][0])) |
| 9788 | mask ^= 0777; |
| 9789 | mask = bb_parse_mode(argv[0], mask); |
| 9790 | if (!isdigit(argv[0][0])) |
| 9791 | mask ^= 0777; |
| 9792 | if ((unsigned)mask > 0777) { |
| 9793 | mask = old_mask; |
| 9794 | /* bash messages: |
| 9795 | * bash: umask: 'q': invalid symbolic mode operator |
| 9796 | * bash: umask: 999: octal number out of range |
| 9797 | */ |
| 9798 | bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]); |
| 9799 | rc = 0; |
| 9800 | } |
| 9801 | } else { |
| 9802 | /* Mimic bash */ |
| 9803 | printf("%04o\n", (unsigned) mask); |
| 9804 | /* fall through and restore mask which we set to 0 */ |
| 9805 | } |
| 9806 | umask(mask); |
| 9807 | |
| 9808 | return !rc; /* rc != 0 - success */ |
| 9809 | } |
| 9810 | #endif |
| 9811 | |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 9812 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9813 | static void print_escaped(const char *s) |
| 9814 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9815 | if (*s == '\'') |
| 9816 | goto squote; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9817 | do { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9818 | const char *p = strchrnul(s, '\''); |
| 9819 | /* print 'xxxx', possibly just '' */ |
| 9820 | printf("'%.*s'", (int)(p - s), s); |
| 9821 | if (*p == '\0') |
| 9822 | break; |
| 9823 | s = p; |
| 9824 | squote: |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9825 | /* s points to '; print "'''...'''" */ |
| 9826 | putchar('"'); |
| 9827 | do putchar('\''); while (*++s == '\''); |
| 9828 | putchar('"'); |
| 9829 | } while (*s); |
| 9830 | } |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 9831 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9832 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9833 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9834 | static int helper_export_local(char **argv, unsigned flags) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9835 | { |
| 9836 | do { |
| 9837 | char *name = *argv; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9838 | char *name_end = strchrnul(name, '='); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9839 | |
| 9840 | /* So far we do not check that name is valid (TODO?) */ |
| 9841 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9842 | if (*name_end == '\0') { |
| 9843 | struct variable *var, **vpp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9844 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9845 | vpp = get_ptr_to_local_var(name, name_end - name); |
| 9846 | var = vpp ? *vpp : NULL; |
| 9847 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9848 | if (flags & SETFLAG_UNEXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9849 | /* export -n NAME (without =VALUE) */ |
| 9850 | if (var) { |
| 9851 | var->flg_export = 0; |
| 9852 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 9853 | unsetenv(name); |
| 9854 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 9855 | continue; |
| 9856 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9857 | if (flags & SETFLAG_EXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9858 | /* export NAME (without =VALUE) */ |
| 9859 | if (var) { |
| 9860 | var->flg_export = 1; |
| 9861 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 9862 | putenv(var->varstr); |
| 9863 | continue; |
| 9864 | } |
| 9865 | } |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 9866 | if (flags & SETFLAG_MAKE_RO) { |
| 9867 | /* readonly NAME (without =VALUE) */ |
| 9868 | if (var) { |
| 9869 | var->flg_read_only = 1; |
| 9870 | continue; |
| 9871 | } |
| 9872 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9873 | # if ENABLE_HUSH_LOCAL |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 9874 | /* Is this "local" bltin? */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9875 | if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) { |
| 9876 | unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT; |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 9877 | if (var && var->func_nest_level == lvl) { |
| 9878 | /* "local x=abc; ...; local x" - ignore second local decl */ |
| 9879 | continue; |
| 9880 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9881 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9882 | # endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9883 | /* Exporting non-existing variable. |
| 9884 | * bash does not put it in environment, |
| 9885 | * but remembers that it is exported, |
| 9886 | * and does put it in env when it is set later. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9887 | * We just set it to "" and export. |
| 9888 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9889 | /* Or, it's "local NAME" (without =VALUE). |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9890 | * bash sets the value to "". |
| 9891 | */ |
| 9892 | /* Or, it's "readonly NAME" (without =VALUE). |
| 9893 | * bash remembers NAME and disallows its creation |
| 9894 | * in the future. |
| 9895 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9896 | name = xasprintf("%s=", name); |
| 9897 | } else { |
| 9898 | /* (Un)exporting/making local NAME=VALUE */ |
| 9899 | name = xstrdup(name); |
| 9900 | } |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 9901 | if (set_local_var(name, flags)) |
| 9902 | return EXIT_FAILURE; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9903 | } while (*++argv); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9904 | return EXIT_SUCCESS; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9905 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9906 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9907 | |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9908 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9909 | static int FAST_FUNC builtin_export(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9910 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 9911 | unsigned opt_unexport; |
| 9912 | |
Denys Vlasenko | df5131c | 2009-06-07 16:04:17 +0200 | [diff] [blame] | 9913 | #if ENABLE_HUSH_EXPORT_N |
| 9914 | /* "!": do not abort on errors */ |
| 9915 | opt_unexport = getopt32(argv, "!n"); |
| 9916 | if (opt_unexport == (uint32_t)-1) |
| 9917 | return EXIT_FAILURE; |
| 9918 | argv += optind; |
| 9919 | #else |
| 9920 | opt_unexport = 0; |
| 9921 | argv++; |
| 9922 | #endif |
| 9923 | |
| 9924 | if (argv[0] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9925 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9926 | if (e) { |
| 9927 | while (*e) { |
| 9928 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9929 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9930 | #else |
| 9931 | /* ash emits: export VAR='VAL' |
| 9932 | * bash: declare -x VAR="VAL" |
| 9933 | * we follow ash example */ |
| 9934 | const char *s = *e++; |
| 9935 | const char *p = strchr(s, '='); |
| 9936 | |
| 9937 | if (!p) /* wtf? take next variable */ |
| 9938 | continue; |
| 9939 | /* export var= */ |
| 9940 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9941 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9942 | putchar('\n'); |
| 9943 | #endif |
| 9944 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 9945 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9946 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9947 | return EXIT_SUCCESS; |
| 9948 | } |
| 9949 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9950 | return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9951 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9952 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9953 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9954 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9955 | static int FAST_FUNC builtin_local(char **argv) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9956 | { |
| 9957 | if (G.func_nest_level == 0) { |
| 9958 | bb_error_msg("%s: not in a function", argv[0]); |
| 9959 | return EXIT_FAILURE; /* bash compat */ |
| 9960 | } |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9961 | argv++; |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9962 | return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9963 | } |
| 9964 | #endif |
| 9965 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9966 | #if ENABLE_HUSH_READONLY |
| 9967 | static int FAST_FUNC builtin_readonly(char **argv) |
| 9968 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9969 | argv++; |
| 9970 | if (*argv == NULL) { |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9971 | /* bash: readonly [-p]: list all readonly VARs |
| 9972 | * (-p has no effect in bash) |
| 9973 | */ |
| 9974 | struct variable *e; |
| 9975 | for (e = G.top_var; e; e = e->next) { |
| 9976 | if (e->flg_read_only) { |
| 9977 | //TODO: quote value: readonly VAR='VAL' |
| 9978 | printf("readonly %s\n", e->varstr); |
| 9979 | } |
| 9980 | } |
| 9981 | return EXIT_SUCCESS; |
| 9982 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9983 | return helper_export_local(argv, SETFLAG_MAKE_RO); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9984 | } |
| 9985 | #endif |
| 9986 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9987 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9988 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
| 9989 | static int FAST_FUNC builtin_unset(char **argv) |
| 9990 | { |
| 9991 | int ret; |
| 9992 | unsigned opts; |
| 9993 | |
| 9994 | /* "!": do not abort on errors */ |
| 9995 | /* "+": stop at 1st non-option */ |
| 9996 | opts = getopt32(argv, "!+vf"); |
| 9997 | if (opts == (unsigned)-1) |
| 9998 | return EXIT_FAILURE; |
| 9999 | if (opts == 3) { |
| 10000 | bb_error_msg("unset: -v and -f are exclusive"); |
| 10001 | return EXIT_FAILURE; |
| 10002 | } |
| 10003 | argv += optind; |
| 10004 | |
| 10005 | ret = EXIT_SUCCESS; |
| 10006 | while (*argv) { |
| 10007 | if (!(opts & 2)) { /* not -f */ |
| 10008 | if (unset_local_var(*argv)) { |
| 10009 | /* unset <nonexistent_var> doesn't fail. |
| 10010 | * Error is when one tries to unset RO var. |
| 10011 | * Message was printed by unset_local_var. */ |
| 10012 | ret = EXIT_FAILURE; |
| 10013 | } |
| 10014 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10015 | # if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10016 | else { |
| 10017 | unset_func(*argv); |
| 10018 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10019 | # endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10020 | argv++; |
| 10021 | } |
| 10022 | return ret; |
| 10023 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10024 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10025 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10026 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10027 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 10028 | * built-in 'set' handler |
| 10029 | * SUSv3 says: |
| 10030 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 10031 | * set [+abCefhmnuvx] [+o option] [argument...] |
| 10032 | * set -- [argument...] |
| 10033 | * set -o |
| 10034 | * set +o |
| 10035 | * Implementations shall support the options in both their hyphen and |
| 10036 | * plus-sign forms. These options can also be specified as options to sh. |
| 10037 | * Examples: |
| 10038 | * Write out all variables and their values: set |
| 10039 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 10040 | * Turn on the -x and -v options: set -xv |
| 10041 | * Unset all positional parameters: set -- |
| 10042 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 10043 | * Set the positional parameters to the expansion of x, even if x expands |
| 10044 | * with a leading '-' or '+': set -- $x |
| 10045 | * |
| 10046 | * So far, we only support "set -- [argument...]" and some of the short names. |
| 10047 | */ |
| 10048 | static int FAST_FUNC builtin_set(char **argv) |
| 10049 | { |
| 10050 | int n; |
| 10051 | char **pp, **g_argv; |
| 10052 | char *arg = *++argv; |
| 10053 | |
| 10054 | if (arg == NULL) { |
| 10055 | struct variable *e; |
| 10056 | for (e = G.top_var; e; e = e->next) |
| 10057 | puts(e->varstr); |
| 10058 | return EXIT_SUCCESS; |
| 10059 | } |
| 10060 | |
| 10061 | do { |
| 10062 | if (strcmp(arg, "--") == 0) { |
| 10063 | ++argv; |
| 10064 | goto set_argv; |
| 10065 | } |
| 10066 | if (arg[0] != '+' && arg[0] != '-') |
| 10067 | break; |
| 10068 | for (n = 1; arg[n]; ++n) { |
| 10069 | if (set_mode((arg[0] == '-'), arg[n], argv[1])) |
| 10070 | goto error; |
| 10071 | if (arg[n] == 'o' && argv[1]) |
| 10072 | argv++; |
| 10073 | } |
| 10074 | } while ((arg = *++argv) != NULL); |
| 10075 | /* Now argv[0] is 1st argument */ |
| 10076 | |
| 10077 | if (arg == NULL) |
| 10078 | return EXIT_SUCCESS; |
| 10079 | set_argv: |
| 10080 | |
| 10081 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 10082 | g_argv = G.global_argv; |
| 10083 | if (G.global_args_malloced) { |
| 10084 | pp = g_argv; |
| 10085 | while (*++pp) |
| 10086 | free(*pp); |
| 10087 | g_argv[1] = NULL; |
| 10088 | } else { |
| 10089 | G.global_args_malloced = 1; |
| 10090 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 10091 | pp[0] = g_argv[0]; /* retain $0 */ |
| 10092 | g_argv = pp; |
| 10093 | } |
| 10094 | /* This realloc's G.global_argv */ |
| 10095 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 10096 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 10097 | G.global_argc = 1 + string_array_len(pp + 1); |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10098 | |
| 10099 | return EXIT_SUCCESS; |
| 10100 | |
| 10101 | /* Nothing known, so abort */ |
| 10102 | error: |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 10103 | bb_error_msg("%s: %s: invalid option", "set", arg); |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10104 | return EXIT_FAILURE; |
| 10105 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10106 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10107 | |
| 10108 | static int FAST_FUNC builtin_shift(char **argv) |
| 10109 | { |
| 10110 | int n = 1; |
| 10111 | argv = skip_dash_dash(argv); |
| 10112 | if (argv[0]) { |
Denys Vlasenko | e59591a | 2017-07-06 20:12:44 +0200 | [diff] [blame] | 10113 | n = bb_strtou(argv[0], NULL, 10); |
| 10114 | if (errno || n < 0) { |
| 10115 | /* shared string with ash.c */ |
| 10116 | bb_error_msg("Illegal number: %s", argv[0]); |
| 10117 | /* |
| 10118 | * ash aborts in this case. |
| 10119 | * bash prints error message and set $? to 1. |
| 10120 | * Interestingly, for "shift 99999" bash does not |
| 10121 | * print error message, but does set $? to 1 |
| 10122 | * (and does no shifting at all). |
| 10123 | */ |
| 10124 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10125 | } |
| 10126 | if (n >= 0 && n < G.global_argc) { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 10127 | if (G_global_args_malloced) { |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10128 | int m = 1; |
| 10129 | while (m <= n) |
| 10130 | free(G.global_argv[m++]); |
| 10131 | } |
| 10132 | G.global_argc -= n; |
| 10133 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 10134 | G.global_argc * sizeof(G.global_argv[0])); |
| 10135 | return EXIT_SUCCESS; |
| 10136 | } |
| 10137 | return EXIT_FAILURE; |
| 10138 | } |
| 10139 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10140 | #if ENABLE_HUSH_GETOPTS |
| 10141 | static int FAST_FUNC builtin_getopts(char **argv) |
| 10142 | { |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10143 | /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html |
| 10144 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10145 | TODO: |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10146 | If a required argument is not found, and getopts is not silent, |
| 10147 | a question mark (?) is placed in VAR, OPTARG is unset, and a |
| 10148 | diagnostic message is printed. If getopts is silent, then a |
| 10149 | colon (:) is placed in VAR and OPTARG is set to the option |
| 10150 | character found. |
| 10151 | |
| 10152 | Test that VAR is a valid variable name? |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10153 | |
| 10154 | "Whenever the shell is invoked, OPTIND shall be initialized to 1" |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10155 | */ |
| 10156 | char cbuf[2]; |
| 10157 | const char *cp, *optstring, *var; |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10158 | int c, n, exitcode, my_opterr; |
| 10159 | unsigned count; |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10160 | |
| 10161 | optstring = *++argv; |
| 10162 | if (!optstring || !(var = *++argv)) { |
| 10163 | bb_error_msg("usage: getopts OPTSTRING VAR [ARGS]"); |
| 10164 | return EXIT_FAILURE; |
| 10165 | } |
| 10166 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10167 | if (argv[1]) |
| 10168 | argv[0] = G.global_argv[0]; /* for error messages in getopt() */ |
| 10169 | else |
| 10170 | argv = G.global_argv; |
| 10171 | cbuf[1] = '\0'; |
| 10172 | |
| 10173 | my_opterr = 0; |
Denys Vlasenko | 048491f | 2017-08-17 12:36:39 +0200 | [diff] [blame] | 10174 | if (optstring[0] != ':') { |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10175 | cp = get_local_var_value("OPTERR"); |
Denys Vlasenko | 048491f | 2017-08-17 12:36:39 +0200 | [diff] [blame] | 10176 | /* 0 if "OPTERR=0", 1 otherwise */ |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10177 | my_opterr = (!cp || NOT_LONE_CHAR(cp, '0')); |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10178 | } |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10179 | |
| 10180 | /* getopts stops on first non-option. Add "+" to force that */ |
| 10181 | /*if (optstring[0] != '+')*/ { |
| 10182 | char *s = alloca(strlen(optstring) + 2); |
| 10183 | sprintf(s, "+%s", optstring); |
| 10184 | optstring = s; |
| 10185 | } |
| 10186 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10187 | /* Naively, now we should just |
| 10188 | * cp = get_local_var_value("OPTIND"); |
| 10189 | * optind = cp ? atoi(cp) : 0; |
| 10190 | * optarg = NULL; |
| 10191 | * opterr = my_opterr; |
| 10192 | * c = getopt(string_array_len(argv), argv, optstring); |
| 10193 | * and be done? Not so fast... |
| 10194 | * Unlike normal getopt() usage in C programs, here |
| 10195 | * each successive call will (usually) have the same argv[] CONTENTS, |
| 10196 | * but not the ADDRESSES. Worse yet, it's possible that between |
| 10197 | * invocations of "getopts", there will be calls to shell builtins |
| 10198 | * which use getopt() internally. Example: |
| 10199 | * while getopts "abc" RES -a -bc -abc de; do |
| 10200 | * unset -ff func |
| 10201 | * done |
| 10202 | * This would not work correctly: getopt() call inside "unset" |
| 10203 | * modifies internal libc state which is tracking position in |
| 10204 | * multi-option strings ("-abc"). At best, it can skip options |
| 10205 | * or return the same option infinitely. With glibc implementation |
| 10206 | * of getopt(), it would use outright invalid pointers and return |
| 10207 | * garbage even _without_ "unset" mangling internal state. |
| 10208 | * |
| 10209 | * We resort to resetting getopt() state and calling it N times, |
| 10210 | * until we get Nth result (or failure). |
| 10211 | * (N == G.getopt_count is reset to 0 whenever OPTIND is [un]set). |
| 10212 | */ |
Denys Vlasenko | 6016181 | 2017-08-29 14:32:17 +0200 | [diff] [blame] | 10213 | GETOPT_RESET(); |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10214 | count = 0; |
| 10215 | n = string_array_len(argv); |
| 10216 | do { |
| 10217 | optarg = NULL; |
| 10218 | opterr = (count < G.getopt_count) ? 0 : my_opterr; |
| 10219 | c = getopt(n, argv, optstring); |
| 10220 | if (c < 0) |
| 10221 | break; |
| 10222 | count++; |
| 10223 | } while (count <= G.getopt_count); |
| 10224 | |
| 10225 | /* Set OPTIND. Prevent resetting of the magic counter! */ |
| 10226 | set_local_var_from_halves("OPTIND", utoa(optind)); |
| 10227 | G.getopt_count = count; /* "next time, give me N+1'th result" */ |
Denys Vlasenko | 6016181 | 2017-08-29 14:32:17 +0200 | [diff] [blame] | 10228 | GETOPT_RESET(); /* just in case */ |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10229 | |
| 10230 | /* Set OPTARG */ |
| 10231 | /* Always set or unset, never left as-is, even on exit/error: |
| 10232 | * "If no option was found, or if the option that was found |
| 10233 | * does not have an option-argument, OPTARG shall be unset." |
| 10234 | */ |
| 10235 | cp = optarg; |
| 10236 | if (c == '?') { |
| 10237 | /* If ":optstring" and unknown option is seen, |
| 10238 | * it is stored to OPTARG. |
| 10239 | */ |
| 10240 | if (optstring[1] == ':') { |
| 10241 | cbuf[0] = optopt; |
| 10242 | cp = cbuf; |
| 10243 | } |
| 10244 | } |
| 10245 | if (cp) |
| 10246 | set_local_var_from_halves("OPTARG", cp); |
| 10247 | else |
| 10248 | unset_local_var("OPTARG"); |
| 10249 | |
| 10250 | /* Convert -1 to "?" */ |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10251 | exitcode = EXIT_SUCCESS; |
| 10252 | if (c < 0) { /* -1: end of options */ |
| 10253 | exitcode = EXIT_FAILURE; |
| 10254 | c = '?'; |
| 10255 | } |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10256 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10257 | /* Set VAR */ |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10258 | cbuf[0] = c; |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10259 | set_local_var_from_halves(var, cbuf); |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10260 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10261 | return exitcode; |
| 10262 | } |
| 10263 | #endif |
| 10264 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10265 | static int FAST_FUNC builtin_source(char **argv) |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10266 | { |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10267 | char *arg_path, *filename; |
| 10268 | FILE *input; |
| 10269 | save_arg_t sv; |
| 10270 | char *args_need_save; |
| 10271 | #if ENABLE_HUSH_FUNCTIONS |
| 10272 | smallint sv_flg; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10273 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10274 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10275 | argv = skip_dash_dash(argv); |
| 10276 | filename = argv[0]; |
| 10277 | if (!filename) { |
| 10278 | /* bash says: "bash: .: filename argument required" */ |
| 10279 | return 2; /* bash compat */ |
| 10280 | } |
| 10281 | arg_path = NULL; |
| 10282 | if (!strchr(filename, '/')) { |
| 10283 | arg_path = find_in_path(filename); |
| 10284 | if (arg_path) |
| 10285 | filename = arg_path; |
Denys Vlasenko | 54c2111 | 2018-01-27 20:46:45 +0100 | [diff] [blame] | 10286 | else if (!ENABLE_HUSH_BASH_SOURCE_CURDIR) { |
Denys Vlasenko | f7e0fea | 2018-01-27 19:05:59 +0100 | [diff] [blame] | 10287 | errno = ENOENT; |
| 10288 | bb_simple_perror_msg(filename); |
| 10289 | return EXIT_FAILURE; |
| 10290 | } |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10291 | } |
| 10292 | input = remember_FILE(fopen_or_warn(filename, "r")); |
| 10293 | free(arg_path); |
| 10294 | if (!input) { |
| 10295 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
| 10296 | /* POSIX: non-interactive shell should abort here, |
| 10297 | * not merely fail. So far no one complained :) |
| 10298 | */ |
| 10299 | return EXIT_FAILURE; |
| 10300 | } |
| 10301 | |
| 10302 | #if ENABLE_HUSH_FUNCTIONS |
| 10303 | sv_flg = G_flag_return_in_progress; |
| 10304 | /* "we are inside sourced file, ok to use return" */ |
| 10305 | G_flag_return_in_progress = -1; |
| 10306 | #endif |
| 10307 | args_need_save = argv[1]; /* used as a boolean variable */ |
| 10308 | if (args_need_save) |
| 10309 | save_and_replace_G_args(&sv, argv); |
| 10310 | |
| 10311 | /* "false; . ./empty_line; echo Zero:$?" should print 0 */ |
| 10312 | G.last_exitcode = 0; |
| 10313 | parse_and_run_file(input); |
| 10314 | fclose_and_forget(input); |
| 10315 | |
| 10316 | if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */ |
| 10317 | restore_G_args(&sv, argv); |
| 10318 | #if ENABLE_HUSH_FUNCTIONS |
| 10319 | G_flag_return_in_progress = sv_flg; |
| 10320 | #endif |
| 10321 | |
| 10322 | return G.last_exitcode; |
| 10323 | } |
| 10324 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10325 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10326 | static int FAST_FUNC builtin_trap(char **argv) |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10327 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10328 | int sig; |
| 10329 | char *new_cmd; |
| 10330 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10331 | if (!G_traps) |
| 10332 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10333 | |
| 10334 | argv++; |
| 10335 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 10336 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10337 | /* No args: print all trapped */ |
| 10338 | for (i = 0; i < NSIG; ++i) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10339 | if (G_traps[i]) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10340 | printf("trap -- "); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10341 | print_escaped(G_traps[i]); |
Denys Vlasenko | e74aaf9 | 2009-09-27 02:05:45 +0200 | [diff] [blame] | 10342 | /* note: bash adds "SIG", but only if invoked |
| 10343 | * as "bash". If called as "sh", or if set -o posix, |
| 10344 | * then it prints short signal names. |
| 10345 | * We are printing short names: */ |
| 10346 | printf(" %s\n", get_signame(i)); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10347 | } |
| 10348 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 10349 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10350 | return EXIT_SUCCESS; |
| 10351 | } |
| 10352 | |
| 10353 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10354 | /* If first arg is a number: reset all specified signals */ |
| 10355 | sig = bb_strtou(*argv, NULL, 10); |
| 10356 | if (errno == 0) { |
| 10357 | int ret; |
| 10358 | process_sig_list: |
| 10359 | ret = EXIT_SUCCESS; |
| 10360 | while (*argv) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10361 | sighandler_t handler; |
| 10362 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10363 | sig = get_signum(*argv++); |
Denys Vlasenko | 86981e3 | 2017-07-25 20:06:17 +0200 | [diff] [blame] | 10364 | if (sig < 0) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10365 | ret = EXIT_FAILURE; |
| 10366 | /* Mimic bash message exactly */ |
Denys Vlasenko | 7456298 | 2017-07-06 18:40:45 +0200 | [diff] [blame] | 10367 | bb_error_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10368 | continue; |
| 10369 | } |
| 10370 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10371 | free(G_traps[sig]); |
| 10372 | G_traps[sig] = xstrdup(new_cmd); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10373 | |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 10374 | debug_printf("trap: setting SIG%s (%i) to '%s'\n", |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10375 | get_signame(sig), sig, G_traps[sig]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10376 | |
| 10377 | /* There is no signal for 0 (EXIT) */ |
| 10378 | if (sig == 0) |
| 10379 | continue; |
| 10380 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10381 | if (new_cmd) |
| 10382 | handler = (new_cmd[0] ? record_pending_signo : SIG_IGN); |
| 10383 | else |
| 10384 | /* We are removing trap handler */ |
| 10385 | handler = pick_sighandler(sig); |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 10386 | install_sighandler(sig, handler); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10387 | } |
| 10388 | return ret; |
| 10389 | } |
| 10390 | |
| 10391 | if (!argv[1]) { /* no second arg */ |
| 10392 | bb_error_msg("trap: invalid arguments"); |
| 10393 | return EXIT_FAILURE; |
| 10394 | } |
| 10395 | |
| 10396 | /* First arg is "-": reset all specified to default */ |
| 10397 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 10398 | /* Everything else: set arg as signal handler |
| 10399 | * (includes "" case, which ignores signal) */ |
| 10400 | if (argv[0][0] == '-') { |
| 10401 | if (argv[0][1] == '\0') { /* "-" */ |
| 10402 | /* new_cmd remains NULL: "reset these sigs" */ |
| 10403 | goto reset_traps; |
| 10404 | } |
| 10405 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 10406 | argv++; |
| 10407 | } |
| 10408 | /* else: "-something", no special meaning */ |
| 10409 | } |
| 10410 | new_cmd = *argv; |
| 10411 | reset_traps: |
| 10412 | argv++; |
| 10413 | goto process_sig_list; |
| 10414 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10415 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10416 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10417 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10418 | static struct pipe *parse_jobspec(const char *str) |
| 10419 | { |
| 10420 | struct pipe *pi; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10421 | unsigned jobnum; |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10422 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10423 | if (sscanf(str, "%%%u", &jobnum) != 1) { |
| 10424 | if (str[0] != '%' |
| 10425 | || (str[1] != '%' && str[1] != '+' && str[1] != '\0') |
| 10426 | ) { |
| 10427 | bb_error_msg("bad argument '%s'", str); |
| 10428 | return NULL; |
| 10429 | } |
| 10430 | /* It is "%%", "%+" or "%" - current job */ |
| 10431 | jobnum = G.last_jobid; |
| 10432 | if (jobnum == 0) { |
| 10433 | bb_error_msg("no current job"); |
| 10434 | return NULL; |
| 10435 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10436 | } |
| 10437 | for (pi = G.job_list; pi; pi = pi->next) { |
| 10438 | if (pi->jobid == jobnum) { |
| 10439 | return pi; |
| 10440 | } |
| 10441 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10442 | bb_error_msg("%u: no such job", jobnum); |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10443 | return NULL; |
| 10444 | } |
| 10445 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10446 | static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM) |
| 10447 | { |
| 10448 | struct pipe *job; |
| 10449 | const char *status_string; |
| 10450 | |
| 10451 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 10452 | for (job = G.job_list; job; job = job->next) { |
| 10453 | if (job->alive_cmds == job->stopped_cmds) |
| 10454 | status_string = "Stopped"; |
| 10455 | else |
| 10456 | status_string = "Running"; |
| 10457 | |
| 10458 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 10459 | } |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10460 | |
| 10461 | clean_up_last_dead_job(); |
| 10462 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10463 | return EXIT_SUCCESS; |
| 10464 | } |
| 10465 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10466 | /* built-in 'fg' and 'bg' handler */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10467 | static int FAST_FUNC builtin_fg_bg(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10468 | { |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10469 | int i; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10470 | struct pipe *pi; |
| 10471 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 10472 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10473 | return EXIT_FAILURE; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 10474 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10475 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 10476 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10477 | for (pi = G.job_list; pi; pi = pi->next) { |
| 10478 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10479 | goto found; |
| 10480 | } |
| 10481 | } |
| 10482 | bb_error_msg("%s: no current job", argv[0]); |
| 10483 | return EXIT_FAILURE; |
| 10484 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10485 | |
| 10486 | pi = parse_jobspec(argv[1]); |
| 10487 | if (!pi) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10488 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10489 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 10490 | /* TODO: bash prints a string representation |
| 10491 | * of job being foregrounded (like "sleep 1 | cat") */ |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 10492 | if (argv[0][0] == 'f' && G_saved_tty_pgrp) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10493 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 10494 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10495 | } |
| 10496 | |
| 10497 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 10498 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 10499 | for (i = 0; i < pi->num_cmds; i++) { |
| 10500 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10501 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 10502 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10503 | |
| 10504 | i = kill(- pi->pgrp, SIGCONT); |
| 10505 | if (i < 0) { |
| 10506 | if (errno == ESRCH) { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 10507 | delete_finished_job(pi); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10508 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10509 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 10510 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10511 | } |
| 10512 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 10513 | if (argv[0][0] == 'f') { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 10514 | remove_job_from_table(pi); /* FG job shouldn't be in job table */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10515 | return checkjobs_and_fg_shell(pi); |
| 10516 | } |
| 10517 | return EXIT_SUCCESS; |
| 10518 | } |
| 10519 | #endif |
| 10520 | |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10521 | #if ENABLE_HUSH_KILL |
| 10522 | static int FAST_FUNC builtin_kill(char **argv) |
| 10523 | { |
| 10524 | int ret = 0; |
| 10525 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10526 | # if ENABLE_HUSH_JOB |
| 10527 | if (argv[1] && strcmp(argv[1], "-l") != 0) { |
| 10528 | int i = 1; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10529 | |
| 10530 | do { |
| 10531 | struct pipe *pi; |
| 10532 | char *dst; |
| 10533 | int j, n; |
| 10534 | |
| 10535 | if (argv[i][0] != '%') |
| 10536 | continue; |
| 10537 | /* |
| 10538 | * "kill %N" - job kill |
| 10539 | * Converting to pgrp / pid kill |
| 10540 | */ |
| 10541 | pi = parse_jobspec(argv[i]); |
| 10542 | if (!pi) { |
| 10543 | /* Eat bad jobspec */ |
| 10544 | j = i; |
| 10545 | do { |
| 10546 | j++; |
| 10547 | argv[j - 1] = argv[j]; |
| 10548 | } while (argv[j]); |
| 10549 | ret = 1; |
| 10550 | i--; |
| 10551 | continue; |
| 10552 | } |
| 10553 | /* |
| 10554 | * In jobs started under job control, we signal |
| 10555 | * entire process group by kill -PGRP_ID. |
| 10556 | * This happens, f.e., in interactive shell. |
| 10557 | * |
| 10558 | * Otherwise, we signal each child via |
| 10559 | * kill PID1 PID2 PID3. |
| 10560 | * Testcases: |
| 10561 | * sh -c 'sleep 1|sleep 1 & kill %1' |
| 10562 | * sh -c 'true|sleep 2 & sleep 1; kill %1' |
| 10563 | * sh -c 'true|sleep 1 & sleep 2; kill %1' |
| 10564 | */ |
Denys Vlasenko | 5362cc4 | 2017-01-09 05:57:13 +0100 | [diff] [blame] | 10565 | n = G_interactive_fd ? 1 : pi->num_cmds; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10566 | dst = alloca(n * sizeof(int)*4); |
| 10567 | argv[i] = dst; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10568 | if (G_interactive_fd) |
| 10569 | dst += sprintf(dst, " -%u", (int)pi->pgrp); |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10570 | else for (j = 0; j < n; j++) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10571 | struct command *cmd = &pi->cmds[j]; |
| 10572 | /* Skip exited members of the job */ |
| 10573 | if (cmd->pid == 0) |
| 10574 | continue; |
| 10575 | /* |
| 10576 | * kill_main has matching code to expect |
| 10577 | * leading space. Needed to not confuse |
| 10578 | * negative pids with "kill -SIGNAL_NO" syntax |
| 10579 | */ |
| 10580 | dst += sprintf(dst, " %u", (int)cmd->pid); |
| 10581 | } |
| 10582 | *dst = '\0'; |
| 10583 | } while (argv[++i]); |
| 10584 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10585 | # endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10586 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10587 | if (argv[1] || ret == 0) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10588 | ret = run_applet_main(argv, kill_main); |
| 10589 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10590 | /* else: ret = 1, "kill %bad_jobspec" case */ |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10591 | return ret; |
| 10592 | } |
| 10593 | #endif |
| 10594 | |
| 10595 | #if ENABLE_HUSH_WAIT |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10596 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10597 | #if !ENABLE_HUSH_JOB |
| 10598 | # define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid) |
| 10599 | #endif |
| 10600 | static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid) |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10601 | { |
| 10602 | int ret = 0; |
| 10603 | for (;;) { |
| 10604 | int sig; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10605 | sigset_t oldset; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10606 | |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 10607 | if (!sigisemptyset(&G.pending_set)) |
| 10608 | goto check_sig; |
| 10609 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10610 | /* waitpid is not interruptible by SA_RESTARTed |
| 10611 | * signals which we use. Thus, this ugly dance: |
| 10612 | */ |
| 10613 | |
| 10614 | /* Make sure possible SIGCHLD is stored in kernel's |
| 10615 | * pending signal mask before we call waitpid. |
| 10616 | * Or else we may race with SIGCHLD, lose it, |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10617 | * and get stuck in sigsuspend... |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10618 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10619 | sigfillset(&oldset); /* block all signals, remember old set */ |
| 10620 | sigprocmask(SIG_SETMASK, &oldset, &oldset); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10621 | |
| 10622 | if (!sigisemptyset(&G.pending_set)) { |
| 10623 | /* Crap! we raced with some signal! */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10624 | goto restore; |
| 10625 | } |
| 10626 | |
| 10627 | /*errno = 0; - checkjobs does this */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10628 | /* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10629 | ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10630 | debug_printf_exec("checkjobs:%d\n", ret); |
| 10631 | #if ENABLE_HUSH_JOB |
| 10632 | if (waitfor_pipe) { |
| 10633 | int rcode = job_exited_or_stopped(waitfor_pipe); |
| 10634 | debug_printf_exec("job_exited_or_stopped:%d\n", rcode); |
| 10635 | if (rcode >= 0) { |
| 10636 | ret = rcode; |
| 10637 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10638 | break; |
| 10639 | } |
| 10640 | } |
| 10641 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10642 | /* if ECHILD, there are no children (ret is -1 or 0) */ |
| 10643 | /* if ret == 0, no children changed state */ |
| 10644 | /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10645 | if (errno == ECHILD || ret) { |
| 10646 | ret--; |
| 10647 | if (ret < 0) /* if ECHILD, may need to fix "ret" */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10648 | ret = 0; |
| 10649 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10650 | break; |
| 10651 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10652 | /* Wait for SIGCHLD or any other signal */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10653 | /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */ |
| 10654 | /* Note: sigsuspend invokes signal handler */ |
| 10655 | sigsuspend(&oldset); |
| 10656 | restore: |
| 10657 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 10658 | check_sig: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10659 | /* So, did we get a signal? */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10660 | sig = check_and_run_traps(); |
| 10661 | if (sig /*&& sig != SIGCHLD - always true */) { |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 10662 | /* Do this for any (non-ignored) signal, not only for ^C */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10663 | ret = 128 + sig; |
| 10664 | break; |
| 10665 | } |
| 10666 | /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */ |
| 10667 | } |
| 10668 | return ret; |
| 10669 | } |
| 10670 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10671 | static int FAST_FUNC builtin_wait(char **argv) |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10672 | { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10673 | int ret; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10674 | int status; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10675 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 10676 | argv = skip_dash_dash(argv); |
| 10677 | if (argv[0] == NULL) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 10678 | /* Don't care about wait results */ |
| 10679 | /* Note 1: must wait until there are no more children */ |
| 10680 | /* Note 2: must be interruptible */ |
| 10681 | /* Examples: |
| 10682 | * $ sleep 3 & sleep 6 & wait |
| 10683 | * [1] 30934 sleep 3 |
| 10684 | * [2] 30935 sleep 6 |
| 10685 | * [1] Done sleep 3 |
| 10686 | * [2] Done sleep 6 |
| 10687 | * $ sleep 3 & sleep 6 & wait |
| 10688 | * [1] 30936 sleep 3 |
| 10689 | * [2] 30937 sleep 6 |
| 10690 | * [1] Done sleep 3 |
| 10691 | * ^C <-- after ~4 sec from keyboard |
| 10692 | * $ |
| 10693 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10694 | return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 10695 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10696 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10697 | do { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10698 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10699 | if (errno || pid <= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10700 | #if ENABLE_HUSH_JOB |
| 10701 | if (argv[0][0] == '%') { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10702 | struct pipe *wait_pipe; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10703 | ret = 127; /* bash compat for bad jobspecs */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10704 | wait_pipe = parse_jobspec(*argv); |
| 10705 | if (wait_pipe) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10706 | ret = job_exited_or_stopped(wait_pipe); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10707 | if (ret < 0) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10708 | ret = wait_for_child_or_signal(wait_pipe, 0); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10709 | } else { |
| 10710 | /* waiting on "last dead job" removes it */ |
| 10711 | clean_up_last_dead_job(); |
Denys Vlasenko | 1310263 | 2017-07-08 00:24:32 +0200 | [diff] [blame] | 10712 | } |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10713 | } |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10714 | /* else: parse_jobspec() already emitted error msg */ |
| 10715 | continue; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10716 | } |
| 10717 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10718 | /* mimic bash message */ |
| 10719 | bb_error_msg("wait: '%s': not a pid or valid job spec", *argv); |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10720 | ret = EXIT_FAILURE; |
| 10721 | continue; /* bash checks all argv[] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10722 | } |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10723 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10724 | /* Do we have such child? */ |
| 10725 | ret = waitpid(pid, &status, WNOHANG); |
| 10726 | if (ret < 0) { |
| 10727 | /* No */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10728 | ret = 127; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10729 | if (errno == ECHILD) { |
Denys Vlasenko | 0c5657e | 2017-07-14 19:27:03 +0200 | [diff] [blame] | 10730 | if (pid == G.last_bg_pid) { |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10731 | /* "wait $!" but last bg task has already exited. Try: |
| 10732 | * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $? |
| 10733 | * In bash it prints exitcode 0, then 3. |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10734 | * In dash, it is 127. |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10735 | */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10736 | ret = G.last_bg_pid_exitcode; |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10737 | } else { |
| 10738 | /* Example: "wait 1". mimic bash message */ |
| 10739 | bb_error_msg("wait: pid %d is not a child of this shell", (int)pid); |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10740 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10741 | } else { |
| 10742 | /* ??? */ |
| 10743 | bb_perror_msg("wait %s", *argv); |
| 10744 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10745 | continue; /* bash checks all argv[] */ |
| 10746 | } |
| 10747 | if (ret == 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10748 | /* Yes, and it still runs */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10749 | ret = wait_for_child_or_signal(NULL, pid); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10750 | } else { |
| 10751 | /* Yes, and it just exited */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10752 | process_wait_result(NULL, pid, status); |
Denys Vlasenko | 85378cd | 2015-10-11 21:47:11 +0200 | [diff] [blame] | 10753 | ret = WEXITSTATUS(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10754 | if (WIFSIGNALED(status)) |
| 10755 | ret = 128 + WTERMSIG(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10756 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10757 | } while (*++argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10758 | |
| 10759 | return ret; |
| 10760 | } |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10761 | #endif |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10762 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10763 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 10764 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 10765 | { |
| 10766 | if (argv[1]) { |
| 10767 | def = bb_strtou(argv[1], NULL, 10); |
| 10768 | if (errno || def < def_min || argv[2]) { |
| 10769 | bb_error_msg("%s: bad arguments", argv[0]); |
| 10770 | def = UINT_MAX; |
| 10771 | } |
| 10772 | } |
| 10773 | return def; |
| 10774 | } |
| 10775 | #endif |
| 10776 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 10777 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10778 | static int FAST_FUNC builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10779 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10780 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10781 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 10782 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 10783 | /* if we came from builtin_continue(), need to undo "= 1" */ |
| 10784 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 10785 | return EXIT_SUCCESS; /* bash compat */ |
| 10786 | } |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 10787 | G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10788 | |
| 10789 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 10790 | if (depth == UINT_MAX) |
| 10791 | G.flag_break_continue = BC_BREAK; |
| 10792 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10793 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10794 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10795 | return EXIT_SUCCESS; |
| 10796 | } |
| 10797 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10798 | static int FAST_FUNC builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10799 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 10800 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 10801 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10802 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 10803 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10804 | |
| 10805 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10806 | static int FAST_FUNC builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10807 | { |
| 10808 | int rc; |
| 10809 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 10810 | if (G_flag_return_in_progress != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10811 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 10812 | return EXIT_FAILURE; /* bash compat */ |
| 10813 | } |
| 10814 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 10815 | G_flag_return_in_progress = 1; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10816 | |
| 10817 | /* bash: |
| 10818 | * out of range: wraps around at 256, does not error out |
| 10819 | * non-numeric param: |
| 10820 | * f() { false; return qwe; }; f; echo $? |
| 10821 | * bash: return: qwe: numeric argument required <== we do this |
| 10822 | * 255 <== we also do this |
| 10823 | */ |
| 10824 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 10825 | return rc; |
| 10826 | } |
| 10827 | #endif |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10828 | |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 10829 | #if ENABLE_HUSH_TIMES |
| 10830 | static int FAST_FUNC builtin_times(char **argv UNUSED_PARAM) |
| 10831 | { |
| 10832 | static const uint8_t times_tbl[] ALIGN1 = { |
| 10833 | ' ', offsetof(struct tms, tms_utime), |
| 10834 | '\n', offsetof(struct tms, tms_stime), |
| 10835 | ' ', offsetof(struct tms, tms_cutime), |
| 10836 | '\n', offsetof(struct tms, tms_cstime), |
| 10837 | 0 |
| 10838 | }; |
| 10839 | const uint8_t *p; |
| 10840 | unsigned clk_tck; |
| 10841 | struct tms buf; |
| 10842 | |
| 10843 | clk_tck = bb_clk_tck(); |
| 10844 | |
| 10845 | times(&buf); |
| 10846 | p = times_tbl; |
| 10847 | do { |
| 10848 | unsigned sec, frac; |
| 10849 | unsigned long t; |
| 10850 | t = *(clock_t *)(((char *) &buf) + p[1]); |
| 10851 | sec = t / clk_tck; |
| 10852 | frac = t % clk_tck; |
| 10853 | printf("%um%u.%03us%c", |
| 10854 | sec / 60, sec % 60, |
| 10855 | (frac * 1000) / clk_tck, |
| 10856 | p[0]); |
| 10857 | p += 2; |
| 10858 | } while (*p); |
| 10859 | |
| 10860 | return EXIT_SUCCESS; |
| 10861 | } |
| 10862 | #endif |
| 10863 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10864 | #if ENABLE_HUSH_MEMLEAK |
| 10865 | static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM) |
| 10866 | { |
| 10867 | void *p; |
| 10868 | unsigned long l; |
| 10869 | |
| 10870 | # ifdef M_TRIM_THRESHOLD |
| 10871 | /* Optional. Reduces probability of false positives */ |
| 10872 | malloc_trim(0); |
| 10873 | # endif |
| 10874 | /* Crude attempt to find where "free memory" starts, |
| 10875 | * sans fragmentation. */ |
| 10876 | p = malloc(240); |
| 10877 | l = (unsigned long)p; |
| 10878 | free(p); |
| 10879 | p = malloc(3400); |
| 10880 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 10881 | free(p); |
| 10882 | |
| 10883 | |
| 10884 | # if 0 /* debug */ |
| 10885 | { |
| 10886 | struct mallinfo mi = mallinfo(); |
| 10887 | printf("top alloc:0x%lx malloced:%d+%d=%d\n", l, |
| 10888 | mi.arena, mi.hblkhd, mi.arena + mi.hblkhd); |
| 10889 | } |
| 10890 | # endif |
| 10891 | |
| 10892 | if (!G.memleak_value) |
| 10893 | G.memleak_value = l; |
| 10894 | |
| 10895 | l -= G.memleak_value; |
| 10896 | if ((long)l < 0) |
| 10897 | l = 0; |
| 10898 | l /= 1024; |
| 10899 | if (l > 127) |
| 10900 | l = 127; |
| 10901 | |
| 10902 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 10903 | return l; |
| 10904 | } |
| 10905 | #endif |