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 | 3632cb1 | 2018-04-10 15:25:41 +0200 | [diff] [blame] | 82 | * |
| 83 | * Status of [[ support: |
| 84 | * [[ args ]] are CMD_SINGLEWORD_NOGLOB: |
| 85 | * v='a b'; [[ $v = 'a b' ]]; echo 0:$? |
Denys Vlasenko | 89e9d55 | 2018-04-11 01:15:33 +0200 | [diff] [blame] | 86 | * [[ /bin/n* ]]; echo 0:$? |
Denys Vlasenko | 3632cb1 | 2018-04-10 15:25:41 +0200 | [diff] [blame] | 87 | * TODO: |
| 88 | * &&/|| are AND/OR ops, -a/-o are not |
| 89 | * quoting needs to be considered (-f is an operator, "-f" and ""-f are not; etc) |
| 90 | * = is glob match operator, not equality operator: STR = GLOB |
| 91 | * (in GLOB, quoting is significant on char-by-char basis: a*cd"*") |
| 92 | * == same as = |
| 93 | * add =~ regex match operator: STR =~ REGEX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 94 | */ |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 95 | //config:config HUSH |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 96 | //config: bool "hush (64 kb)" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 97 | //config: default y |
| 98 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 99 | //config: hush is a small shell. It handles the normal flow control |
| 100 | //config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops, |
| 101 | //config: case/esac. Redirections, here documents, $((arithmetic)) |
| 102 | //config: and functions are supported. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 103 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 104 | //config: It will compile and work on no-mmu systems. |
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 does not handle select, aliases, tilde expansion, |
| 107 | //config: &>file and >&file redirection of stdout+stderr. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 108 | //config: |
| 109 | //config:config HUSH_BASH_COMPAT |
| 110 | //config: bool "bash-compatible extensions" |
| 111 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 112 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 113 | //config: |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 114 | //config:config HUSH_BRACE_EXPANSION |
| 115 | //config: bool "Brace expansion" |
| 116 | //config: default y |
| 117 | //config: depends on HUSH_BASH_COMPAT |
| 118 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 119 | //config: Enable {abc,def} extension. |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 120 | //config: |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 121 | //config:config HUSH_LINENO_VAR |
| 122 | //config: bool "$LINENO variable" |
| 123 | //config: default y |
| 124 | //config: depends on HUSH_BASH_COMPAT |
| 125 | //config: |
Denys Vlasenko | 54c2111 | 2018-01-27 20:46:45 +0100 | [diff] [blame] | 126 | //config:config HUSH_BASH_SOURCE_CURDIR |
| 127 | //config: bool "'source' and '.' builtins search current directory after $PATH" |
| 128 | //config: default n # do not encourage non-standard behavior |
| 129 | //config: depends on HUSH_BASH_COMPAT |
| 130 | //config: help |
| 131 | //config: This is not compliant with standards. Avoid if possible. |
| 132 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 133 | //config:config HUSH_INTERACTIVE |
| 134 | //config: bool "Interactive mode" |
| 135 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 136 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 137 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 138 | //config: Enable interactive mode (prompt and command editing). |
| 139 | //config: Without this, hush simply reads and executes commands |
| 140 | //config: from stdin just like a shell script from a file. |
| 141 | //config: No prompt, no PS1/PS2 magic shell variables. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 142 | //config: |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 143 | //config:config HUSH_SAVEHISTORY |
| 144 | //config: bool "Save command history to .hush_history" |
| 145 | //config: default y |
| 146 | //config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 147 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 148 | //config:config HUSH_JOB |
| 149 | //config: bool "Job control" |
| 150 | //config: default y |
| 151 | //config: depends on HUSH_INTERACTIVE |
| 152 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 153 | //config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current |
| 154 | //config: command (not entire shell), fg/bg builtins work. Without this option, |
| 155 | //config: "cmd &" still works by simply spawning a process and immediately |
| 156 | //config: prompting for next command (or executing next command in a script), |
| 157 | //config: but no separate process group is formed. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 158 | //config: |
| 159 | //config:config HUSH_TICK |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 160 | //config: bool "Support process substitution" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 161 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 162 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 163 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 164 | //config: Enable `command` and $(command). |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 165 | //config: |
| 166 | //config:config HUSH_IF |
| 167 | //config: bool "Support if/then/elif/else/fi" |
| 168 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 169 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 170 | //config: |
| 171 | //config:config HUSH_LOOPS |
| 172 | //config: bool "Support for, while and until loops" |
| 173 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 174 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 175 | //config: |
| 176 | //config:config HUSH_CASE |
| 177 | //config: bool "Support case ... esac statement" |
| 178 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 179 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 180 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 181 | //config: Enable case ... esac statement. +400 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 182 | //config: |
| 183 | //config:config HUSH_FUNCTIONS |
| 184 | //config: bool "Support funcname() { commands; } syntax" |
| 185 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 186 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 187 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 188 | //config: Enable support for shell functions. +800 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 189 | //config: |
| 190 | //config:config HUSH_LOCAL |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 191 | //config: bool "local builtin" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 192 | //config: default y |
| 193 | //config: depends on HUSH_FUNCTIONS |
| 194 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 195 | //config: Enable support for local variables in functions. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 196 | //config: |
| 197 | //config:config HUSH_RANDOM_SUPPORT |
| 198 | //config: bool "Pseudorandom generator and $RANDOM variable" |
| 199 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 200 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 201 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 202 | //config: Enable pseudorandom generator and dynamic variable "$RANDOM". |
| 203 | //config: Each read of "$RANDOM" will generate a new pseudorandom value. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 204 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 205 | //config:config HUSH_MODE_X |
| 206 | //config: bool "Support 'hush -x' option and 'set -x' command" |
| 207 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 208 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 209 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 210 | //config: This instructs hush to print commands before execution. |
| 211 | //config: Adds ~300 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 212 | //config: |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 213 | //config:config HUSH_ECHO |
| 214 | //config: bool "echo builtin" |
| 215 | //config: default y |
| 216 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 217 | //config: |
| 218 | //config:config HUSH_PRINTF |
| 219 | //config: bool "printf builtin" |
| 220 | //config: default y |
| 221 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 222 | //config: |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 223 | //config:config HUSH_TEST |
| 224 | //config: bool "test builtin" |
| 225 | //config: default y |
| 226 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 227 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 228 | //config:config HUSH_HELP |
| 229 | //config: bool "help builtin" |
| 230 | //config: default y |
| 231 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 232 | //config: |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 233 | //config:config HUSH_EXPORT |
| 234 | //config: bool "export builtin" |
| 235 | //config: default y |
| 236 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 237 | //config: |
| 238 | //config:config HUSH_EXPORT_N |
| 239 | //config: bool "Support 'export -n' option" |
| 240 | //config: default y |
| 241 | //config: depends on HUSH_EXPORT |
| 242 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 243 | //config: export -n unexports variables. It is a bash extension. |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 244 | //config: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 245 | //config:config HUSH_READONLY |
| 246 | //config: bool "readonly builtin" |
| 247 | //config: default y |
Denys Vlasenko | 6b0695b | 2017-07-17 21:47:27 +0200 | [diff] [blame] | 248 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 249 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 250 | //config: Enable support for read-only variables. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 251 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 252 | //config:config HUSH_KILL |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 253 | //config: bool "kill builtin (supports kill %jobspec)" |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 254 | //config: default y |
| 255 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 256 | //config: |
| 257 | //config:config HUSH_WAIT |
| 258 | //config: bool "wait builtin" |
| 259 | //config: default y |
| 260 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 261 | //config: |
Denys Vlasenko | 3bb3e1d | 2018-01-11 18:05:05 +0100 | [diff] [blame] | 262 | //config:config HUSH_COMMAND |
| 263 | //config: bool "command builtin" |
| 264 | //config: default y |
| 265 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 266 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 267 | //config:config HUSH_TRAP |
| 268 | //config: bool "trap builtin" |
| 269 | //config: default y |
| 270 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 271 | //config: |
| 272 | //config:config HUSH_TYPE |
| 273 | //config: bool "type builtin" |
| 274 | //config: default y |
| 275 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 276 | //config: |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 277 | //config:config HUSH_TIMES |
| 278 | //config: bool "times builtin" |
| 279 | //config: default y |
| 280 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 281 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 282 | //config:config HUSH_READ |
| 283 | //config: bool "read builtin" |
| 284 | //config: default y |
| 285 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 286 | //config: |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 287 | //config:config HUSH_SET |
| 288 | //config: bool "set builtin" |
| 289 | //config: default y |
| 290 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 291 | //config: |
| 292 | //config:config HUSH_UNSET |
| 293 | //config: bool "unset builtin" |
| 294 | //config: default y |
| 295 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 296 | //config: |
| 297 | //config:config HUSH_ULIMIT |
| 298 | //config: bool "ulimit builtin" |
| 299 | //config: default y |
| 300 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 301 | //config: |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 302 | //config:config HUSH_UMASK |
| 303 | //config: bool "umask builtin" |
| 304 | //config: default y |
| 305 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 306 | //config: |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 307 | //config:config HUSH_GETOPTS |
| 308 | //config: bool "getopts builtin" |
| 309 | //config: default y |
| 310 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 311 | //config: |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 312 | //config:config HUSH_MEMLEAK |
| 313 | //config: bool "memleak builtin (debugging)" |
| 314 | //config: default n |
| 315 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 316 | |
Denys Vlasenko | 20704f0 | 2011-03-23 17:59:27 +0100 | [diff] [blame] | 317 | //applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 318 | // APPLET_ODDNAME:name main location suid_type help |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 319 | //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] | 320 | //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] | 321 | |
| 322 | //kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 323 | //kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o |
| 324 | //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] | 325 | //kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o |
| 326 | |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 327 | /* -i (interactive) is also accepted, |
| 328 | * but does nothing, therefore not shown in help. |
Dan Fandrich | 89ca2f9 | 2010-11-28 01:54:39 +0100 | [diff] [blame] | 329 | * NOMMU-specific options are not meant to be used by users, |
| 330 | * therefore we don't show them either. |
| 331 | */ |
| 332 | //usage:#define hush_trivial_usage |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 333 | //usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS] / -s [ARGS]]" |
Denys Vlasenko | b0b8343 | 2011-03-07 12:34:59 +0100 | [diff] [blame] | 334 | //usage:#define hush_full_usage "\n\n" |
| 335 | //usage: "Unix shell interpreter" |
| 336 | |
Denys Vlasenko | 6704746 | 2016-12-22 15:21:58 +0100 | [diff] [blame] | 337 | #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
| 338 | || defined(__APPLE__) \ |
| 339 | ) |
| 340 | # include <malloc.h> /* for malloc_trim */ |
| 341 | #endif |
| 342 | #include <glob.h> |
| 343 | /* #include <dmalloc.h> */ |
| 344 | #if ENABLE_HUSH_CASE |
| 345 | # include <fnmatch.h> |
| 346 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 347 | #include <sys/times.h> |
Denys Vlasenko | 6704746 | 2016-12-22 15:21:58 +0100 | [diff] [blame] | 348 | #include <sys/utsname.h> /* for setting $HOSTNAME */ |
| 349 | |
| 350 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
| 351 | #include "unicode.h" |
| 352 | #include "shell_common.h" |
| 353 | #include "math.h" |
| 354 | #include "match.h" |
| 355 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 356 | # include "random.h" |
| 357 | #else |
| 358 | # define CLEAR_RANDOM_T(rnd) ((void)0) |
| 359 | #endif |
| 360 | #ifndef F_DUPFD_CLOEXEC |
| 361 | # define F_DUPFD_CLOEXEC F_DUPFD |
| 362 | #endif |
| 363 | #ifndef PIPE_BUF |
| 364 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 365 | #endif |
| 366 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 367 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 368 | /* So far, all bash compat is controlled by one config option */ |
| 369 | /* Separate defines document which part of code implements what */ |
| 370 | #define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT |
| 371 | #define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 372 | #define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT |
| 373 | #define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 374 | #define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST) |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 375 | #define BASH_READ_D ENABLE_HUSH_BASH_COMPAT |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 376 | |
| 377 | |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 378 | /* Build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 379 | #define LEAK_HUNTING 0 |
| 380 | #define BUILD_AS_NOMMU 0 |
| 381 | /* Enable/disable sanity checks. Ok to enable in production, |
| 382 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 383 | * Keeping 1 for now even in released versions. |
| 384 | */ |
| 385 | #define HUSH_DEBUG 1 |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 386 | /* Slightly bigger (+200 bytes), but faster hush. |
| 387 | * So far it only enables a trick with counting SIGCHLDs and forks, |
| 388 | * which allows us to do fewer waitpid's. |
| 389 | * (we can detect a case where neither forks were done nor SIGCHLDs happened |
| 390 | * and therefore waitpid will return the same result as last time) |
| 391 | */ |
| 392 | #define ENABLE_HUSH_FAST 0 |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 393 | /* TODO: implement simplified code for users which do not need ${var%...} ops |
| 394 | * So far ${var%...} ops are always enabled: |
| 395 | */ |
| 396 | #define ENABLE_HUSH_DOLLAR_OPS 1 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 397 | |
| 398 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 399 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 400 | # undef BB_MMU |
| 401 | # undef USE_FOR_NOMMU |
| 402 | # undef USE_FOR_MMU |
| 403 | # define BB_MMU 0 |
| 404 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 405 | # define USE_FOR_MMU(...) |
| 406 | #endif |
| 407 | |
Denys Vlasenko | 1fcbff2 | 2010-06-26 02:40:08 +0200 | [diff] [blame] | 408 | #include "NUM_APPLETS.h" |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 409 | #if NUM_APPLETS == 1 |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 410 | /* STANDALONE does not make sense, and won't compile */ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 411 | # undef CONFIG_FEATURE_SH_STANDALONE |
| 412 | # undef ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 413 | # undef IF_FEATURE_SH_STANDALONE |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 414 | # undef IF_NOT_FEATURE_SH_STANDALONE |
| 415 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 416 | # define IF_FEATURE_SH_STANDALONE(...) |
| 417 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 418 | #endif |
| 419 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 420 | #if !ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 421 | # undef ENABLE_FEATURE_EDITING |
| 422 | # define ENABLE_FEATURE_EDITING 0 |
| 423 | # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 424 | # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 425 | # undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 426 | # define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 427 | #endif |
| 428 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 429 | /* Do we support ANY keywords? */ |
| 430 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 431 | # define HAS_KEYWORDS 1 |
| 432 | # define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 433 | # define IF_HAS_NO_KEYWORDS(...) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 434 | #else |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 435 | # define HAS_KEYWORDS 0 |
| 436 | # define IF_HAS_KEYWORDS(...) |
| 437 | # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 438 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 439 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 440 | /* If you comment out one of these below, it will be #defined later |
| 441 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 442 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 443 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 444 | #define debug_printf_parse(...) do {} while (0) |
| 445 | #define debug_print_tree(a, b) do {} while (0) |
| 446 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 447 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 448 | #define debug_printf_jobs(...) do {} while (0) |
| 449 | #define debug_printf_expand(...) do {} while (0) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 450 | #define debug_printf_varexp(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 451 | #define debug_printf_glob(...) do {} while (0) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 452 | #define debug_printf_redir(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 453 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 454 | #define debug_printf_subst(...) do {} while (0) |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 455 | #define debug_printf_prompt(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 456 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 457 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 458 | #define ERR_PTR ((void*)(long)1) |
| 459 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 460 | #define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 461 | |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 462 | #define _SPECIAL_VARS_STR "_*@$!?#" |
| 463 | #define SPECIAL_VARS_STR ("_*@$!?#" + 1) |
| 464 | #define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3) |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 465 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 466 | /* Support / and // replace ops */ |
| 467 | /* Note that // is stored as \ in "encoded" string representation */ |
| 468 | # define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?" |
| 469 | # define VAR_SUBST_OPS ("\\/%#:-=+?" + 1) |
| 470 | # define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5) |
| 471 | #else |
| 472 | # define VAR_ENCODED_SUBST_OPS "%#:-=+?" |
| 473 | # define VAR_SUBST_OPS "%#:-=+?" |
| 474 | # define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3) |
| 475 | #endif |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 476 | |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 477 | #define SPECIAL_VAR_SYMBOL_STR "\3" |
| 478 | #define SPECIAL_VAR_SYMBOL 3 |
| 479 | /* The "variable" with name "\1" emits string "\3". Testcase: "echo ^C" */ |
| 480 | #define SPECIAL_VAR_QUOTED_SVS 1 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 481 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 482 | struct variable; |
| 483 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 484 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 485 | |
| 486 | /* This supports saving pointers malloced in vfork child, |
Denis Vlasenko | c376db3 | 2009-04-15 21:49:48 +0000 | [diff] [blame] | 487 | * to be freed in the parent. |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 488 | */ |
| 489 | #if !BB_MMU |
| 490 | typedef struct nommu_save_t { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 491 | struct variable *old_vars; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 492 | char **argv; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 493 | char **argv_from_re_execing; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 494 | } nommu_save_t; |
| 495 | #endif |
| 496 | |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 497 | enum { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 498 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 499 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 500 | RES_IF , |
| 501 | RES_THEN , |
| 502 | RES_ELIF , |
| 503 | RES_ELSE , |
| 504 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 505 | #endif |
| 506 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 507 | RES_FOR , |
| 508 | RES_WHILE , |
| 509 | RES_UNTIL , |
| 510 | RES_DO , |
| 511 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 512 | #endif |
| 513 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 514 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 515 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 516 | #if ENABLE_HUSH_CASE |
| 517 | RES_CASE , |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 518 | /* three pseudo-keywords support contrived "case" syntax: */ |
| 519 | RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */ |
| 520 | RES_MATCH , /* "word)" */ |
| 521 | RES_CASE_BODY, /* "this command is inside CASE" */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 522 | RES_ESAC , |
| 523 | #endif |
| 524 | RES_XXXX , |
| 525 | RES_SNTX |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 526 | }; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 527 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 528 | typedef struct o_string { |
| 529 | char *data; |
| 530 | int length; /* position where data is appended */ |
| 531 | int maxlen; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 532 | int o_expflags; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 533 | /* At least some part of the string was inside '' or "", |
| 534 | * possibly empty one: word"", wo''rd etc. */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 535 | smallint has_quoted_part; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 536 | smallint has_empty_slot; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 537 | } o_string; |
| 538 | enum { |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 539 | EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */ |
| 540 | EXP_FLAG_GLOB = 0x2, |
| 541 | /* Protect newly added chars against globbing |
| 542 | * by prepending \ to *, ?, [, \ */ |
| 543 | EXP_FLAG_ESC_GLOB_CHARS = 0x1, |
| 544 | }; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 545 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 546 | #define NULL_O_STRING { NULL } |
| 547 | |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 548 | #ifndef debug_printf_parse |
| 549 | static const char *const assignment_flag[] = { |
| 550 | "MAYBE_ASSIGNMENT", |
| 551 | "DEFINITELY_ASSIGNMENT", |
| 552 | "NOT_ASSIGNMENT", |
| 553 | "WORD_IS_KEYWORD", |
| 554 | }; |
| 555 | #endif |
| 556 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 557 | typedef struct in_str { |
| 558 | const char *p; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 559 | int peek_buf[2]; |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 560 | int last_char; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 561 | FILE *file; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 562 | } in_str; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 563 | |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 564 | /* The descrip member of this structure is only used to make |
| 565 | * debugging output pretty */ |
| 566 | static const struct { |
| 567 | int mode; |
| 568 | signed char default_fd; |
| 569 | char descrip[3]; |
| 570 | } redir_table[] = { |
| 571 | { O_RDONLY, 0, "<" }, |
| 572 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 573 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 574 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 575 | { O_RDONLY, 0, "<<" }, |
| 576 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 577 | /* { O_RDONLY, 77, "<<" }, */ |
| 578 | }; |
| 579 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 580 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 581 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 582 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 583 | int rd_fd; /* fd to redirect */ |
| 584 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 585 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 586 | smallint rd_type; /* (enum redir_type) */ |
| 587 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 588 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 589 | * bit 0: do we need to trim leading tabs? |
| 590 | * bit 1: is heredoc quoted (<<'delim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 591 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 592 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 593 | typedef enum redir_type { |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 594 | REDIRECT_INPUT = 0, |
| 595 | REDIRECT_OVERWRITE = 1, |
| 596 | REDIRECT_APPEND = 2, |
| 597 | REDIRECT_IO = 3, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 598 | REDIRECT_HEREDOC = 4, |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 599 | REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 600 | |
| 601 | REDIRFD_CLOSE = -3, |
| 602 | REDIRFD_SYNTAX_ERR = -2, |
Denis Vlasenko | 835fcfd | 2009-04-10 13:51:56 +0000 | [diff] [blame] | 603 | REDIRFD_TO_FILE = -1, |
| 604 | /* otherwise, rd_fd is redirected to rd_dup */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 605 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 606 | HEREDOC_SKIPTABS = 1, |
| 607 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 608 | } redir_type; |
| 609 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 610 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 611 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 612 | pid_t pid; /* 0 if exited */ |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 613 | unsigned assignment_cnt; /* how many argv[i] are assignments? */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 614 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 615 | unsigned lineno; |
| 616 | #endif |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 617 | smallint cmd_type; /* CMD_xxx */ |
| 618 | #define CMD_NORMAL 0 |
| 619 | #define CMD_SUBSHELL 1 |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 620 | #if BASH_TEST2 || ENABLE_HUSH_LOCAL || ENABLE_HUSH_EXPORT || ENABLE_HUSH_READONLY |
| 621 | /* used for "[[ EXPR ]]", and to prevent word splitting and globbing in |
| 622 | * "export v=t*" |
| 623 | */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 624 | # define CMD_SINGLEWORD_NOGLOB 2 |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 625 | #endif |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 626 | #if ENABLE_HUSH_FUNCTIONS |
| 627 | # define CMD_FUNCDEF 3 |
| 628 | #endif |
| 629 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 630 | smalluint cmd_exitcode; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 631 | /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */ |
| 632 | struct pipe *group; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 633 | #if !BB_MMU |
| 634 | char *group_as_string; |
| 635 | #endif |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 636 | #if ENABLE_HUSH_FUNCTIONS |
| 637 | struct function *child_func; |
| 638 | /* This field is used to prevent a bug here: |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 639 | * while...do f1() {a;}; f1; f1() {b;}; f1; done |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 640 | * When we execute "f1() {a;}" cmd, we create new function and clear |
| 641 | * cmd->group, cmd->group_as_string, cmd->argv[0]. |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 642 | * When we execute "f1() {b;}", we notice that f1 exists, |
| 643 | * and that its "parent cmd" struct is still "alive", |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 644 | * we put those fields back into cmd->xxx |
| 645 | * (struct function has ->parent_cmd ptr to facilitate that). |
| 646 | * When we loop back, we can execute "f1() {a;}" again and set f1 correctly. |
| 647 | * Without this trick, loop would execute a;b;b;b;... |
| 648 | * instead of correct sequence a;b;a;b;... |
| 649 | * When command is freed, it severs the link |
| 650 | * (sets ->child_func->parent_cmd to NULL). |
| 651 | */ |
| 652 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 653 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 654 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 655 | * and on execution these are substituted with their values. |
| 656 | * Substitution can make _several_ words out of one argv[n]! |
| 657 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 658 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 659 | */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 660 | struct redir_struct *redirects; /* I/O redirections */ |
| 661 | }; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 662 | /* Is there anything in this command at all? */ |
| 663 | #define IS_NULL_CMD(cmd) \ |
| 664 | (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects) |
| 665 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 666 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 667 | struct pipe *next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 668 | int num_cmds; /* total number of commands in pipe */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 669 | int alive_cmds; /* number of commands running (not exited) */ |
| 670 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 671 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 672 | unsigned jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 673 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 674 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 675 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 676 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 677 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 678 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 679 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 680 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 681 | typedef enum pipe_style { |
Denys Vlasenko | 00a06b9 | 2016-11-08 20:35:53 +0100 | [diff] [blame] | 682 | PIPE_SEQ = 0, |
| 683 | PIPE_AND = 1, |
| 684 | PIPE_OR = 2, |
| 685 | PIPE_BG = 3, |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 686 | } pipe_style; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 687 | /* Is there anything in this pipe at all? */ |
| 688 | #define IS_NULL_PIPE(pi) \ |
| 689 | ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 690 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 691 | /* This holds pointers to the various results of parsing */ |
| 692 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 693 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 694 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 695 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 696 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 697 | /* last command in pipe (being constructed right now) */ |
| 698 | struct command *command; |
| 699 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 700 | struct redir_struct *pending_redirect; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 701 | o_string word; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 702 | #if !BB_MMU |
| 703 | o_string as_string; |
| 704 | #endif |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 705 | smallint is_assignment; /* 0:maybe, 1:yes, 2:no, 3:keyword */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 706 | #if HAS_KEYWORDS |
| 707 | smallint ctx_res_w; |
| 708 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 709 | #if ENABLE_HUSH_CASE |
| 710 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 711 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 712 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 713 | int old_flag; |
| 714 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 715 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 716 | * when we see "if" or "then", we malloc and copy current context, |
| 717 | * and make ->stack point to it. then we parse pipeN. |
| 718 | * when closing "then" / fi" / whatever is found, |
| 719 | * we move list_head into ->stack->command->group, |
| 720 | * copy ->stack into current context, and delete ->stack. |
| 721 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 722 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 723 | struct parse_context *stack; |
| 724 | #endif |
| 725 | }; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 726 | enum { |
| 727 | MAYBE_ASSIGNMENT = 0, |
| 728 | DEFINITELY_ASSIGNMENT = 1, |
| 729 | NOT_ASSIGNMENT = 2, |
| 730 | /* Not an assignment, but next word may be: "if v=xyz cmd;" */ |
| 731 | WORD_IS_KEYWORD = 3, |
| 732 | }; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 733 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 734 | /* On program start, environ points to initial environment. |
| 735 | * putenv adds new pointers into it, unsetenv removes them. |
| 736 | * Neither of these (de)allocates the strings. |
| 737 | * setenv allocates new strings in malloc space and does putenv, |
| 738 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 739 | #define setenv(...) setenv_is_leaky_dont_use() |
| 740 | struct variable { |
| 741 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 742 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 743 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 744 | uint16_t var_nest_level; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 745 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 746 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 747 | }; |
| 748 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 749 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 750 | BC_BREAK = 1, |
| 751 | BC_CONTINUE = 2, |
| 752 | }; |
| 753 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 754 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 755 | struct function { |
| 756 | struct function *next; |
| 757 | char *name; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 758 | struct command *parent_cmd; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 759 | struct pipe *body; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 760 | # if !BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 761 | char *body_as_string; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 762 | # endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 763 | }; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 764 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 765 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 766 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 767 | /* set -/+o OPT support. (TODO: make it optional) |
| 768 | * bash supports the following opts: |
| 769 | * allexport off |
| 770 | * braceexpand on |
| 771 | * emacs on |
| 772 | * errexit off |
| 773 | * errtrace off |
| 774 | * functrace off |
| 775 | * hashall on |
| 776 | * histexpand off |
| 777 | * history on |
| 778 | * ignoreeof off |
| 779 | * interactive-comments on |
| 780 | * keyword off |
| 781 | * monitor on |
| 782 | * noclobber off |
| 783 | * noexec off |
| 784 | * noglob off |
| 785 | * nolog off |
| 786 | * notify off |
| 787 | * nounset off |
| 788 | * onecmd off |
| 789 | * physical off |
| 790 | * pipefail off |
| 791 | * posix off |
| 792 | * privileged off |
| 793 | * verbose off |
| 794 | * vi off |
| 795 | * xtrace off |
| 796 | */ |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 797 | static const char o_opt_strings[] ALIGN1 = |
| 798 | "pipefail\0" |
| 799 | "noexec\0" |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 800 | "errexit\0" |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 801 | #if ENABLE_HUSH_MODE_X |
| 802 | "xtrace\0" |
| 803 | #endif |
| 804 | ; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 805 | enum { |
| 806 | OPT_O_PIPEFAIL, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 807 | OPT_O_NOEXEC, |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 808 | OPT_O_ERREXIT, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 809 | #if ENABLE_HUSH_MODE_X |
| 810 | OPT_O_XTRACE, |
| 811 | #endif |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 812 | NUM_OPT_O |
| 813 | }; |
| 814 | |
| 815 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 816 | struct FILE_list { |
| 817 | struct FILE_list *next; |
| 818 | FILE *fp; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 819 | int fd; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 820 | }; |
| 821 | |
| 822 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 823 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 824 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 825 | struct globals { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 826 | /* interactive_fd != 0 means we are an interactive shell. |
| 827 | * If we are, then saved_tty_pgrp can also be != 0, meaning |
| 828 | * that controlling tty is available. With saved_tty_pgrp == 0, |
| 829 | * job control still works, but terminal signals |
| 830 | * (^C, ^Z, ^Y, ^\) won't work at all, and background |
| 831 | * process groups can only be created with "cmd &". |
| 832 | * With saved_tty_pgrp != 0, hush will use tcsetpgrp() |
| 833 | * to give tty to the foreground process group, |
| 834 | * and will take it back when the group is stopped (^Z) |
| 835 | * or killed (^C). |
| 836 | */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 837 | #if ENABLE_HUSH_INTERACTIVE |
| 838 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 839 | * _AND_ if we decided to act interactively */ |
| 840 | int interactive_fd; |
| 841 | const char *PS1; |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 842 | IF_FEATURE_EDITING_FANCY_PROMPT(const char *PS2;) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 843 | # define G_interactive_fd (G.interactive_fd) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 844 | #else |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 845 | # define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 846 | #endif |
| 847 | #if ENABLE_FEATURE_EDITING |
| 848 | line_input_t *line_input_state; |
| 849 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 850 | pid_t root_pid; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 851 | pid_t root_ppid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 852 | pid_t last_bg_pid; |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 853 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 854 | random_t random_gen; |
| 855 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 856 | #if ENABLE_HUSH_JOB |
| 857 | int run_list_level; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 858 | unsigned last_jobid; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 859 | pid_t saved_tty_pgrp; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 860 | struct pipe *job_list; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 861 | # define G_saved_tty_pgrp (G.saved_tty_pgrp) |
| 862 | #else |
| 863 | # define G_saved_tty_pgrp 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 864 | #endif |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 865 | /* How deeply are we in context where "set -e" is ignored */ |
| 866 | int errexit_depth; |
| 867 | /* "set -e" rules (do we follow them correctly?): |
| 868 | * Exit if pipe, list, or compound command exits with a non-zero status. |
| 869 | * Shell does not exit if failed command is part of condition in |
| 870 | * if/while, part of && or || list except the last command, any command |
| 871 | * in a pipe but the last, or if the command's return value is being |
| 872 | * inverted with !. If a compound command other than a subshell returns a |
| 873 | * non-zero status because a command failed while -e was being ignored, the |
| 874 | * shell does not exit. A trap on ERR, if set, is executed before the shell |
| 875 | * exits [ERR is a bashism]. |
| 876 | * |
| 877 | * If a compound command or function executes in a context where -e is |
| 878 | * ignored, none of the commands executed within are affected by the -e |
| 879 | * setting. If a compound command or function sets -e while executing in a |
| 880 | * context where -e is ignored, that setting does not have any effect until |
| 881 | * the compound command or the command containing the function call completes. |
| 882 | */ |
| 883 | |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 884 | char o_opt[NUM_OPT_O]; |
Denys Vlasenko | 57542eb | 2010-11-28 03:59:30 +0100 | [diff] [blame] | 885 | #if ENABLE_HUSH_MODE_X |
| 886 | # define G_x_mode (G.o_opt[OPT_O_XTRACE]) |
| 887 | #else |
| 888 | # define G_x_mode 0 |
| 889 | #endif |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 890 | #if ENABLE_HUSH_INTERACTIVE |
| 891 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 892 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 893 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 894 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 895 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 896 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 897 | #if ENABLE_HUSH_FUNCTIONS |
| 898 | /* 0: outside of a function (or sourced file) |
| 899 | * -1: inside of a function, ok to use return builtin |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 900 | * 1: return is invoked, skip all till end of func |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 901 | */ |
| 902 | smallint flag_return_in_progress; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 903 | # define G_flag_return_in_progress (G.flag_return_in_progress) |
| 904 | #else |
| 905 | # define G_flag_return_in_progress 0 |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 906 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 907 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 908 | /* These support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 909 | smalluint last_exitcode; |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 910 | smalluint expand_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; |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 933 | char *ifs_whitespace; /* = G.ifs or malloced */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 934 | const char *cwd; |
Denys Vlasenko | 52e460b | 2010-09-16 16:12:00 +0200 | [diff] [blame] | 935 | struct variable *top_var; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 936 | char **expanded_assignments; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 937 | struct variable **shadowed_vars_pp; |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 938 | unsigned var_nest_level; |
| 939 | #if ENABLE_HUSH_FUNCTIONS |
| 940 | # if ENABLE_HUSH_LOCAL |
| 941 | unsigned func_nest_level; /* solely to prevent "local v" in non-functions */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 942 | # endif |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 943 | struct function *top_func; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 944 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 945 | /* Signal and trap handling */ |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 946 | #if ENABLE_HUSH_FAST |
| 947 | unsigned count_SIGCHLD; |
| 948 | unsigned handled_SIGCHLD; |
Denys Vlasenko | e2df5f4 | 2009-05-26 14:34:10 +0200 | [diff] [blame] | 949 | smallint we_have_children; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 950 | #endif |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 951 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 952 | unsigned lineno; |
| 953 | char *lineno_var; |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 954 | #endif |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 955 | struct FILE_list *FILE_list; |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 956 | /* Which signals have non-DFL handler (even with no traps set)? |
| 957 | * Set at the start to: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 958 | * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS) |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 959 | * SPECIAL_INTERACTIVE_SIGS are cleared after fork. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 960 | * The rest is cleared right before execv syscalls. |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 961 | * Other than these two times, never modified. |
| 962 | */ |
| 963 | unsigned special_sig_mask; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 964 | #if ENABLE_HUSH_JOB |
| 965 | unsigned fatal_sig_mask; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 966 | # define G_fatal_sig_mask (G.fatal_sig_mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 967 | #else |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 968 | # define G_fatal_sig_mask 0 |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 969 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 970 | #if ENABLE_HUSH_TRAP |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 971 | char **traps; /* char *traps[NSIG] */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 972 | # define G_traps G.traps |
| 973 | #else |
| 974 | # define G_traps ((char**)NULL) |
| 975 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 976 | sigset_t pending_set; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 977 | #if ENABLE_HUSH_MEMLEAK |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 978 | unsigned long memleak_value; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 979 | #endif |
| 980 | #if HUSH_DEBUG |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 981 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 982 | #endif |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 983 | struct sigaction sa; |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 984 | #if ENABLE_FEATURE_EDITING |
| 985 | char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN]; |
| 986 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 987 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 988 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 989 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 990 | * (too many defines). Also, I actually prefer to see when a variable |
| 991 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 992 | #define INIT_G() do { \ |
| 993 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 994 | /* memset(&G.sa, 0, sizeof(G.sa)); */ \ |
| 995 | sigfillset(&G.sa.sa_mask); \ |
| 996 | G.sa.sa_flags = SA_RESTART; \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 997 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 998 | |
| 999 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1000 | /* Function prototypes for builtins */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1001 | static int builtin_cd(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1002 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1003 | static int builtin_echo(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1004 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1005 | static int builtin_eval(char **argv) FAST_FUNC; |
| 1006 | static int builtin_exec(char **argv) FAST_FUNC; |
| 1007 | static int builtin_exit(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1008 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1009 | static int builtin_export(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1010 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 1011 | #if ENABLE_HUSH_READONLY |
| 1012 | static int builtin_readonly(char **argv) FAST_FUNC; |
| 1013 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1014 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1015 | static int builtin_fg_bg(char **argv) FAST_FUNC; |
| 1016 | static int builtin_jobs(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1017 | #endif |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 1018 | #if ENABLE_HUSH_GETOPTS |
| 1019 | static int builtin_getopts(char **argv) FAST_FUNC; |
| 1020 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1021 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1022 | static int builtin_help(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1023 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 1024 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 1025 | static int builtin_history(char **argv) FAST_FUNC; |
| 1026 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1027 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1028 | static int builtin_local(char **argv) FAST_FUNC; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1029 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 1030 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1031 | static int builtin_memleak(char **argv) FAST_FUNC; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 1032 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1033 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 1034 | static int builtin_printf(char **argv) FAST_FUNC; |
| 1035 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1036 | static int builtin_pwd(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1037 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1038 | static int builtin_read(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1039 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1040 | #if ENABLE_HUSH_SET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1041 | static int builtin_set(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1042 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1043 | static int builtin_shift(char **argv) FAST_FUNC; |
| 1044 | static int builtin_source(char **argv) FAST_FUNC; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1045 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1046 | static int builtin_test(char **argv) FAST_FUNC; |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1047 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1048 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1049 | static int builtin_trap(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1050 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1051 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1052 | static int builtin_type(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1053 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 1054 | #if ENABLE_HUSH_TIMES |
| 1055 | static int builtin_times(char **argv) FAST_FUNC; |
| 1056 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1057 | static int builtin_true(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1058 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1059 | static int builtin_umask(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1060 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1061 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1062 | static int builtin_unset(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1063 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1064 | #if ENABLE_HUSH_KILL |
| 1065 | static int builtin_kill(char **argv) FAST_FUNC; |
| 1066 | #endif |
| 1067 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1068 | static int builtin_wait(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1069 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1070 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1071 | static int builtin_break(char **argv) FAST_FUNC; |
| 1072 | static int builtin_continue(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1073 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1074 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1075 | static int builtin_return(char **argv) FAST_FUNC; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1076 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1077 | |
| 1078 | /* Table of built-in functions. They can be forked or not, depending on |
| 1079 | * context: within pipes, they fork. As simple commands, they do not. |
| 1080 | * When used in non-forking context, they can change global variables |
| 1081 | * in the parent shell process. If forked, of course they cannot. |
| 1082 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 1083 | * still be set at the end. */ |
| 1084 | struct built_in_command { |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1085 | const char *b_cmd; |
| 1086 | int (*b_function)(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1087 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1088 | const char *b_descr; |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1089 | # define BLTIN(cmd, func, help) { cmd, func, help } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1090 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1091 | # define BLTIN(cmd, func, help) { cmd, func } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1092 | #endif |
| 1093 | }; |
| 1094 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1095 | static const struct built_in_command bltins1[] = { |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1096 | BLTIN("." , builtin_source , "Run commands in file"), |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1097 | BLTIN(":" , builtin_true , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1098 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1099 | BLTIN("bg" , builtin_fg_bg , "Resume job in background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1100 | #endif |
| 1101 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1102 | BLTIN("break" , builtin_break , "Exit loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1103 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1104 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1105 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1106 | BLTIN("continue" , builtin_continue, "Start new loop iteration"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1107 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1108 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 1109 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1110 | BLTIN("exit" , builtin_exit , NULL), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1111 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1112 | BLTIN("export" , builtin_export , "Set environment variables"), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1113 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1114 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1115 | BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1116 | #endif |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 1117 | #if ENABLE_HUSH_GETOPTS |
| 1118 | BLTIN("getopts" , builtin_getopts , NULL), |
| 1119 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1120 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1121 | BLTIN("help" , builtin_help , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1122 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 1123 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1124 | BLTIN("history" , builtin_history , "Show history"), |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 1125 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1126 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1127 | BLTIN("jobs" , builtin_jobs , "List jobs"), |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1128 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1129 | #if ENABLE_HUSH_KILL |
| 1130 | BLTIN("kill" , builtin_kill , "Send signals to processes"), |
| 1131 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1132 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1133 | BLTIN("local" , builtin_local , "Set local variables"), |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1134 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 1135 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1136 | BLTIN("memleak" , builtin_memleak , NULL), |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 1137 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1138 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1139 | BLTIN("read" , builtin_read , "Input into variable"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1140 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 1141 | #if ENABLE_HUSH_READONLY |
| 1142 | BLTIN("readonly" , builtin_readonly, "Make variables read-only"), |
| 1143 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1144 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1145 | BLTIN("return" , builtin_return , "Return from function"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1146 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1147 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1148 | BLTIN("set" , builtin_set , "Set positional parameters"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1149 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1150 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1151 | #if BASH_SOURCE |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1152 | BLTIN("source" , builtin_source , NULL), |
Denys Vlasenko | 82731b4 | 2010-05-17 17:49:52 +0200 | [diff] [blame] | 1153 | #endif |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 1154 | #if ENABLE_HUSH_TIMES |
| 1155 | BLTIN("times" , builtin_times , NULL), |
| 1156 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1157 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1158 | BLTIN("trap" , builtin_trap , "Trap signals"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1159 | #endif |
Denys Vlasenko | 2bba591 | 2014-03-14 12:43:57 +0100 | [diff] [blame] | 1160 | BLTIN("true" , builtin_true , NULL), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1161 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 1162 | BLTIN("type" , builtin_type , "Show command type"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1163 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1164 | #if ENABLE_HUSH_ULIMIT |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1165 | BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1166 | #endif |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1167 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1168 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1169 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1170 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1171 | BLTIN("unset" , builtin_unset , "Unset variables"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1172 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1173 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1174 | BLTIN("wait" , builtin_wait , "Wait for process to finish"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1175 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1176 | }; |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1177 | /* These builtins won't be used if we are on NOMMU and need to re-exec |
| 1178 | * (it's cheaper to run an external program in this case): |
| 1179 | */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1180 | static const struct built_in_command bltins2[] = { |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1181 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1182 | BLTIN("[" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1183 | #endif |
Denys Vlasenko | 8944c67 | 2017-01-11 14:22:00 +0100 | [diff] [blame] | 1184 | #if BASH_TEST2 |
| 1185 | BLTIN("[[" , builtin_test , NULL), |
| 1186 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1187 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1188 | BLTIN("echo" , builtin_echo , NULL), |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1189 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1190 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 1191 | BLTIN("printf" , builtin_printf , NULL), |
| 1192 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1193 | BLTIN("pwd" , builtin_pwd , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1194 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1195 | BLTIN("test" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1196 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1197 | }; |
| 1198 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 1199 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1200 | /* Debug printouts. |
| 1201 | */ |
| 1202 | #if HUSH_DEBUG |
| 1203 | /* prevent disasters with G.debug_indent < 0 */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1204 | # define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "") |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1205 | # define debug_enter() (G.debug_indent++) |
| 1206 | # define debug_leave() (G.debug_indent--) |
| 1207 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1208 | # define indent() ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1209 | # define debug_enter() ((void)0) |
| 1210 | # define debug_leave() ((void)0) |
| 1211 | #endif |
| 1212 | |
| 1213 | #ifndef debug_printf |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1214 | # define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1215 | #endif |
| 1216 | |
| 1217 | #ifndef debug_printf_parse |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1218 | # define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1219 | #endif |
| 1220 | |
| 1221 | #ifndef debug_printf_exec |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1222 | #define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1223 | #endif |
| 1224 | |
| 1225 | #ifndef debug_printf_env |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1226 | # define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1227 | #endif |
| 1228 | |
| 1229 | #ifndef debug_printf_jobs |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1230 | # define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1231 | # define DEBUG_JOBS 1 |
| 1232 | #else |
| 1233 | # define DEBUG_JOBS 0 |
| 1234 | #endif |
| 1235 | |
| 1236 | #ifndef debug_printf_expand |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1237 | # define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1238 | # define DEBUG_EXPAND 1 |
| 1239 | #else |
| 1240 | # define DEBUG_EXPAND 0 |
| 1241 | #endif |
| 1242 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1243 | #ifndef debug_printf_varexp |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1244 | # define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1245 | #endif |
| 1246 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1247 | #ifndef debug_printf_glob |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1248 | # define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1249 | # define DEBUG_GLOB 1 |
| 1250 | #else |
| 1251 | # define DEBUG_GLOB 0 |
| 1252 | #endif |
| 1253 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1254 | #ifndef debug_printf_redir |
| 1255 | # define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__)) |
| 1256 | #endif |
| 1257 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1258 | #ifndef debug_printf_list |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1259 | # define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1260 | #endif |
| 1261 | |
| 1262 | #ifndef debug_printf_subst |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1263 | # define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1264 | #endif |
| 1265 | |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 1266 | #ifndef debug_printf_prompt |
| 1267 | # define debug_printf_prompt(...) (indent(), fdprintf(2, __VA_ARGS__)) |
| 1268 | #endif |
| 1269 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1270 | #ifndef debug_printf_clean |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1271 | # define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1272 | # define DEBUG_CLEAN 1 |
| 1273 | #else |
| 1274 | # define DEBUG_CLEAN 0 |
| 1275 | #endif |
| 1276 | |
| 1277 | #if DEBUG_EXPAND |
| 1278 | static void debug_print_strings(const char *prefix, char **vv) |
| 1279 | { |
| 1280 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1281 | fdprintf(2, "%s:\n", prefix); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1282 | while (*vv) |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1283 | fdprintf(2, " '%s'\n", *vv++); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1284 | } |
| 1285 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1286 | # define debug_print_strings(prefix, vv) ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1287 | #endif |
| 1288 | |
| 1289 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1290 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 1291 | */ |
| 1292 | #if LEAK_HUNTING |
| 1293 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1294 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1295 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 1296 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 1297 | return ptr; |
| 1298 | } |
| 1299 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 1300 | { |
| 1301 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 1302 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 1303 | return ptr; |
| 1304 | } |
| 1305 | static char *xxstrdup(int lineno, const char *str) |
| 1306 | { |
| 1307 | char *ptr = xstrdup(str); |
| 1308 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 1309 | return ptr; |
| 1310 | } |
| 1311 | static void xxfree(void *ptr) |
| 1312 | { |
| 1313 | fdprintf(2, "free %p\n", ptr); |
| 1314 | free(ptr); |
| 1315 | } |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1316 | # define xmalloc(s) xxmalloc(__LINE__, s) |
| 1317 | # define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 1318 | # define xstrdup(s) xxstrdup(__LINE__, s) |
| 1319 | # define free(p) xxfree(p) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1320 | #endif |
| 1321 | |
| 1322 | |
| 1323 | /* Syntax and runtime errors. They always abort scripts. |
| 1324 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 1325 | * and return to the prompt. |
| 1326 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 1327 | */ |
| 1328 | #if HUSH_DEBUG < 2 |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1329 | # 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] | 1330 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 1331 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 1332 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 1333 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 1334 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1335 | #endif |
| 1336 | |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1337 | static void die_if_script(void) |
| 1338 | { |
| 1339 | if (!G_interactive_fd) { |
| 1340 | if (G.last_exitcode) /* sometines it's 2, not 1 (bash compat) */ |
| 1341 | xfunc_error_retval = G.last_exitcode; |
| 1342 | xfunc_die(); |
| 1343 | } |
| 1344 | } |
| 1345 | |
| 1346 | static void msg_and_die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1347 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1348 | va_list p; |
| 1349 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1350 | #if HUSH_DEBUG >= 2 |
| 1351 | bb_error_msg("hush.c:%u", lineno); |
| 1352 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1353 | va_start(p, fmt); |
| 1354 | bb_verror_msg(fmt, p, NULL); |
| 1355 | va_end(p); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1356 | die_if_script(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1357 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1358 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1359 | static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1360 | { |
| 1361 | if (msg) |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1362 | bb_error_msg("syntax error: %s", msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1363 | else |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1364 | bb_error_msg("syntax error"); |
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_at(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1369 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1370 | bb_error_msg("syntax error at '%s'", msg); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1371 | die_if_script(); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1372 | } |
| 1373 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1374 | 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] | 1375 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1376 | bb_error_msg("syntax error: unterminated %s", s); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1377 | //? source4.tests fails: in bash, echo ${^} in script does not terminate the script |
| 1378 | // die_if_script(); |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1379 | } |
| 1380 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1381 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1382 | { |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1383 | char msg[2] = { ch, '\0' }; |
| 1384 | syntax_error_unterm_str(lineno, msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1387 | static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1388 | { |
| 1389 | char msg[2]; |
| 1390 | msg[0] = ch; |
| 1391 | msg[1] = '\0'; |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 1392 | #if HUSH_DEBUG >= 2 |
| 1393 | bb_error_msg("hush.c:%u", lineno); |
| 1394 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1395 | bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1396 | die_if_script(); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1397 | } |
| 1398 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1399 | #if HUSH_DEBUG < 2 |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1400 | # undef msg_and_die_if_script |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1401 | # undef syntax_error |
| 1402 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1403 | # undef syntax_error_unterm_ch |
| 1404 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1405 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1406 | #else |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1407 | # 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] | 1408 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 1409 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 1410 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 1411 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 1412 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1413 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1414 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1415 | |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 1416 | #if ENABLE_HUSH_INTERACTIVE && ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1417 | static void cmdedit_update_prompt(void); |
| 1418 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1419 | # define cmdedit_update_prompt() ((void)0) |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1420 | #endif |
| 1421 | |
| 1422 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1423 | /* Utility functions |
| 1424 | */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1425 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 1426 | static char *unbackslash(char *src) |
| 1427 | { |
Denys Vlasenko | 7188540 | 2009-09-24 01:44:13 +0200 | [diff] [blame] | 1428 | char *dst = src = strchrnul(src, '\\'); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1429 | while (1) { |
Denys Vlasenko | 89e9d55 | 2018-04-11 01:15:33 +0200 | [diff] [blame] | 1430 | if (*src == '\\') { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1431 | src++; |
Denys Vlasenko | 89e9d55 | 2018-04-11 01:15:33 +0200 | [diff] [blame] | 1432 | if (*src != '\0') { |
| 1433 | /* \x -> x */ |
| 1434 | *dst++ = *src++; |
| 1435 | continue; |
| 1436 | } |
| 1437 | /* else: "\<nul>". Do not delete this backslash. |
| 1438 | * Testcase: eval 'echo ok\' |
| 1439 | */ |
| 1440 | *dst++ = '\\'; |
| 1441 | /* fallthrough */ |
| 1442 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1443 | if ((*dst++ = *src++) == '\0') |
| 1444 | break; |
| 1445 | } |
| 1446 | return dst; |
| 1447 | } |
| 1448 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1449 | 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] | 1450 | { |
| 1451 | int i; |
| 1452 | unsigned count1; |
| 1453 | unsigned count2; |
| 1454 | char **v; |
| 1455 | |
| 1456 | v = strings; |
| 1457 | count1 = 0; |
| 1458 | if (v) { |
| 1459 | while (*v) { |
| 1460 | count1++; |
| 1461 | v++; |
| 1462 | } |
| 1463 | } |
| 1464 | count2 = 0; |
| 1465 | v = add; |
| 1466 | while (*v) { |
| 1467 | count2++; |
| 1468 | v++; |
| 1469 | } |
| 1470 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 1471 | v[count1 + count2] = NULL; |
| 1472 | i = count2; |
| 1473 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1474 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1475 | return v; |
| 1476 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1477 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1478 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 1479 | { |
| 1480 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 1481 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 1482 | return ptr; |
| 1483 | } |
| 1484 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 1485 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 1486 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1487 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1488 | /* Note: takes ownership of "add" ptr (it is not strdup'ed) */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1489 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1490 | { |
| 1491 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1492 | v[0] = add; |
| 1493 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1494 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1495 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1496 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1497 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 1498 | { |
| 1499 | char **ptr = add_string_to_strings(strings, add); |
| 1500 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 1501 | return ptr; |
| 1502 | } |
| 1503 | #define add_string_to_strings(strings, add) \ |
| 1504 | xx_add_string_to_strings(__LINE__, strings, add) |
| 1505 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1506 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1507 | static void free_strings(char **strings) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1508 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1509 | char **v; |
| 1510 | |
| 1511 | if (!strings) |
| 1512 | return; |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1513 | v = strings; |
| 1514 | while (*v) { |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1515 | free(*v); |
| 1516 | v++; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1517 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1518 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1519 | } |
| 1520 | |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 1521 | static int dup_CLOEXEC(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1522 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1523 | int newfd; |
| 1524 | repeat: |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 1525 | newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); |
| 1526 | if (newfd >= 0) { |
| 1527 | if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ |
| 1528 | fcntl(newfd, F_SETFD, FD_CLOEXEC); |
| 1529 | } else { /* newfd < 0 */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1530 | if (errno == EBUSY) |
| 1531 | goto repeat; |
| 1532 | if (errno == EINTR) |
| 1533 | goto repeat; |
| 1534 | } |
| 1535 | return newfd; |
| 1536 | } |
| 1537 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1538 | static int xdup_CLOEXEC_and_close(int fd, int avoid_fd) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1539 | { |
| 1540 | int newfd; |
| 1541 | repeat: |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1542 | newfd = fcntl(fd, F_DUPFD_CLOEXEC, avoid_fd + 1); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1543 | if (newfd < 0) { |
| 1544 | if (errno == EBUSY) |
| 1545 | goto repeat; |
| 1546 | if (errno == EINTR) |
| 1547 | goto repeat; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1548 | /* fd was not open? */ |
| 1549 | if (errno == EBADF) |
| 1550 | return fd; |
| 1551 | xfunc_die(); |
| 1552 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1553 | if (F_DUPFD_CLOEXEC == F_DUPFD) /* if old libc (w/o F_DUPFD_CLOEXEC) */ |
| 1554 | fcntl(newfd, F_SETFD, FD_CLOEXEC); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1555 | close(fd); |
| 1556 | return newfd; |
| 1557 | } |
| 1558 | |
| 1559 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1560 | /* Manipulating the list of open FILEs */ |
| 1561 | static FILE *remember_FILE(FILE *fp) |
| 1562 | { |
| 1563 | if (fp) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1564 | struct FILE_list *n = xmalloc(sizeof(*n)); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1565 | n->next = G.FILE_list; |
| 1566 | G.FILE_list = n; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1567 | n->fp = fp; |
| 1568 | n->fd = fileno(fp); |
| 1569 | close_on_exec_on(n->fd); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1570 | } |
| 1571 | return fp; |
| 1572 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1573 | static void fclose_and_forget(FILE *fp) |
| 1574 | { |
| 1575 | struct FILE_list **pp = &G.FILE_list; |
| 1576 | while (*pp) { |
| 1577 | struct FILE_list *cur = *pp; |
| 1578 | if (cur->fp == fp) { |
| 1579 | *pp = cur->next; |
| 1580 | free(cur); |
| 1581 | break; |
| 1582 | } |
| 1583 | pp = &cur->next; |
| 1584 | } |
| 1585 | fclose(fp); |
| 1586 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1587 | static int save_FILEs_on_redirect(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1588 | { |
| 1589 | struct FILE_list *fl = G.FILE_list; |
| 1590 | while (fl) { |
| 1591 | if (fd == fl->fd) { |
| 1592 | /* We use it only on script files, they are all CLOEXEC */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 1593 | fl->fd = xdup_CLOEXEC_and_close(fd, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1594 | 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] | 1595 | return 1; |
| 1596 | } |
| 1597 | fl = fl->next; |
| 1598 | } |
| 1599 | return 0; |
| 1600 | } |
| 1601 | static void restore_redirected_FILEs(void) |
| 1602 | { |
| 1603 | struct FILE_list *fl = G.FILE_list; |
| 1604 | while (fl) { |
| 1605 | int should_be = fileno(fl->fp); |
| 1606 | if (fl->fd != should_be) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1607 | 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] | 1608 | xmove_fd(fl->fd, should_be); |
| 1609 | fl->fd = should_be; |
| 1610 | } |
| 1611 | fl = fl->next; |
| 1612 | } |
| 1613 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 1614 | #if ENABLE_FEATURE_SH_STANDALONE && BB_MMU |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1615 | static void close_all_FILE_list(void) |
| 1616 | { |
| 1617 | struct FILE_list *fl = G.FILE_list; |
| 1618 | while (fl) { |
| 1619 | /* fclose would also free FILE object. |
| 1620 | * It is disastrous if we share memory with a vforked parent. |
| 1621 | * I'm not sure we never come here after vfork. |
| 1622 | * Therefore just close fd, nothing more. |
| 1623 | */ |
| 1624 | /*fclose(fl->fp); - unsafe */ |
| 1625 | close(fl->fd); |
| 1626 | fl = fl->next; |
| 1627 | } |
| 1628 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1629 | #endif |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 1630 | static int fd_in_FILEs(int fd) |
| 1631 | { |
| 1632 | struct FILE_list *fl = G.FILE_list; |
| 1633 | while (fl) { |
| 1634 | if (fl->fd == fd) |
| 1635 | return 1; |
| 1636 | fl = fl->next; |
| 1637 | } |
| 1638 | return 0; |
| 1639 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1640 | |
| 1641 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1642 | /* Helpers for setting new $n and restoring them back |
| 1643 | */ |
| 1644 | typedef struct save_arg_t { |
| 1645 | char *sv_argv0; |
| 1646 | char **sv_g_argv; |
| 1647 | int sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1648 | IF_HUSH_SET(smallint sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1649 | } save_arg_t; |
| 1650 | |
| 1651 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 1652 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1653 | sv->sv_argv0 = argv[0]; |
| 1654 | sv->sv_g_argv = G.global_argv; |
| 1655 | sv->sv_g_argc = G.global_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1656 | IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1657 | |
| 1658 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 1659 | G.global_argv = argv; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1660 | IF_HUSH_SET(G.global_args_malloced = 0;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1661 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 1662 | G.global_argc = 1 + string_array_len(argv + 1); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 1666 | { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1667 | #if ENABLE_HUSH_SET |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1668 | if (G.global_args_malloced) { |
| 1669 | /* someone ran "set -- arg1 arg2 ...", undo */ |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1670 | char **pp = G.global_argv; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1671 | while (*++pp) /* note: does not free $0 */ |
| 1672 | free(*pp); |
| 1673 | free(G.global_argv); |
| 1674 | } |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1675 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1676 | argv[0] = sv->sv_argv0; |
| 1677 | G.global_argv = sv->sv_g_argv; |
| 1678 | G.global_argc = sv->sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1679 | IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1683 | /* Basic theory of signal handling in shell |
| 1684 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1685 | * This does not describe what hush does, rather, it is current understanding |
| 1686 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1687 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 1688 | * |
| 1689 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 1690 | * is finished or backgrounded. It is the same in interactive and |
| 1691 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1692 | * 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] | 1693 | * ^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] | 1694 | * backgrounds (i.e. stops) or kills all members of currently running |
| 1695 | * pipe. |
| 1696 | * |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1697 | * Wait builtin is interruptible by signals for which user trap is set |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1698 | * or by SIGINT in interactive shell. |
| 1699 | * |
| 1700 | * Trap handlers will execute even within trap handlers. (right?) |
| 1701 | * |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1702 | * User trap handlers are forgotten when subshell ("(cmd)") is entered, |
| 1703 | * except for handlers set to '' (empty string). |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1704 | * |
| 1705 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1706 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1707 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1708 | * Commands which are run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1709 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1710 | * |
Denys Vlasenko | 4b7db4f | 2009-05-29 10:39:06 +0200 | [diff] [blame] | 1711 | * Ordinary commands have signals set to SIG_IGN/DFL as inherited |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1712 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1713 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1714 | * Signals which differ from SIG_DFL action |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1715 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1716 | * |
| 1717 | * SIGQUIT: ignore |
| 1718 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1719 | * SIGHUP (interactive): |
| 1720 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1721 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1722 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1723 | * that all pipe members are stopped. Try this in bash: |
| 1724 | * while :; do :; done - ^Z does not background it |
| 1725 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1726 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1727 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1728 | * to interactive shell while shell is waiting for a pipe, |
| 1729 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1730 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1731 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1732 | * Example 2: this does not wait and does not execute ls: |
| 1733 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1734 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1735 | * "sleep 5; ls -l" + press ^C |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1736 | * Example 4: this does not wait and does not execute ls: |
| 1737 | * "sleep 5 & wait; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1738 | * |
| 1739 | * (What happens to signals which are IGN on shell start?) |
| 1740 | * (What happens with signal mask on shell start?) |
| 1741 | * |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1742 | * Old implementation |
| 1743 | * ================== |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1744 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1745 | * We block all signals which we don't want to take action immediately, |
| 1746 | * i.e. we block all signals which need to have special handling as described |
| 1747 | * above, and all signals which have traps set. |
| 1748 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1749 | * and act on them. |
| 1750 | * |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1751 | * unsigned special_sig_mask: a mask of such "special" signals |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1752 | * sigset_t blocked_set: current blocked signal set |
| 1753 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1754 | * "trap - SIGxxx": |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1755 | * 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] | 1756 | * "trap 'cmd' SIGxxx": |
| 1757 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1758 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1759 | * unblock signals with special interactive handling |
| 1760 | * (child shell is not interactive), |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1761 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1762 | * after [v]fork, if we plan to exec: |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 1763 | * 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] | 1764 | * 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] | 1765 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1766 | * 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] | 1767 | * are to count SIGCHLDs |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1768 | * and to restore tty pgrp on signal-induced exit. |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1769 | * |
Denys Vlasenko | 67f7186 | 2009-09-25 14:21:06 +0200 | [diff] [blame] | 1770 | * Note 2 (compat): |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1771 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1772 | * 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] | 1773 | * 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] | 1774 | * |
| 1775 | * Problem: the above approach makes it unwieldy to catch signals while |
Denys Vlasenko | e95738f | 2013-07-08 03:13:08 +0200 | [diff] [blame] | 1776 | * we are in read builtin, or while we read commands from stdin: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1777 | * masked signals are not visible! |
| 1778 | * |
| 1779 | * New implementation |
| 1780 | * ================== |
| 1781 | * We record each signal we are interested in by installing signal handler |
| 1782 | * for them - a bit like emulating kernel pending signal mask in userspace. |
| 1783 | * We are interested in: signals which need to have special handling |
| 1784 | * as described above, and all signals which have traps set. |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1785 | * Signals are recorded in pending_set. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1786 | * After each pipe execution, we extract any pending signals |
| 1787 | * and act on them. |
| 1788 | * |
| 1789 | * unsigned special_sig_mask: a mask of shell-special signals. |
| 1790 | * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp. |
| 1791 | * char *traps[sig] if trap for sig is set (even if it's ''). |
| 1792 | * sigset_t pending_set: set of sigs we received. |
| 1793 | * |
| 1794 | * "trap - SIGxxx": |
| 1795 | * if sig is in special_sig_mask, set handler back to: |
| 1796 | * record_pending_signo, or to IGN if it's a tty stop signal |
| 1797 | * if sig is in fatal_sig_mask, set handler back to sigexit. |
| 1798 | * else: set handler back to SIG_DFL |
| 1799 | * "trap 'cmd' SIGxxx": |
| 1800 | * set handler to record_pending_signo. |
| 1801 | * "trap '' SIGxxx": |
| 1802 | * set handler to SIG_IGN. |
| 1803 | * after [v]fork, if we plan to be a shell: |
| 1804 | * set signals with special interactive handling to SIG_DFL |
| 1805 | * (because child shell is not interactive), |
| 1806 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
| 1807 | * after [v]fork, if we plan to exec: |
| 1808 | * POSIX says fork clears pending signal mask in child - no need to clear it. |
| 1809 | * |
| 1810 | * To make wait builtin interruptible, we handle SIGCHLD as special signal, |
| 1811 | * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it. |
| 1812 | * |
| 1813 | * Note (compat): |
| 1814 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1815 | * are set to the default actions". bash interprets it so that traps which |
| 1816 | * 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] | 1817 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1818 | enum { |
| 1819 | SPECIAL_INTERACTIVE_SIGS = 0 |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1820 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1821 | | (1 << SIGINT) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1822 | | (1 << SIGHUP) |
| 1823 | , |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1824 | SPECIAL_JOBSTOP_SIGS = 0 |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1825 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1826 | | (1 << SIGTTIN) |
| 1827 | | (1 << SIGTTOU) |
| 1828 | | (1 << SIGTSTP) |
| 1829 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1830 | , |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1831 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1832 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1833 | static void record_pending_signo(int sig) |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 1834 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1835 | sigaddset(&G.pending_set, sig); |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1836 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1837 | if (sig == SIGCHLD) { |
| 1838 | G.count_SIGCHLD++; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1839 | //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] | 1840 | } |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1841 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1842 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1843 | |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 1844 | static sighandler_t install_sighandler(int sig, sighandler_t handler) |
| 1845 | { |
| 1846 | struct sigaction old_sa; |
| 1847 | |
| 1848 | /* We could use signal() to install handlers... almost: |
| 1849 | * except that we need to mask ALL signals while handlers run. |
| 1850 | * I saw signal nesting in strace, race window isn't small. |
| 1851 | * SA_RESTART is also needed, but in Linux, signal() |
| 1852 | * sets SA_RESTART too. |
| 1853 | */ |
| 1854 | /* memset(&G.sa, 0, sizeof(G.sa)); - already done */ |
| 1855 | /* sigfillset(&G.sa.sa_mask); - already done */ |
| 1856 | /* G.sa.sa_flags = SA_RESTART; - already done */ |
| 1857 | G.sa.sa_handler = handler; |
| 1858 | sigaction(sig, &G.sa, &old_sa); |
| 1859 | return old_sa.sa_handler; |
| 1860 | } |
| 1861 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1862 | static void hush_exit(int exitcode) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1863 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1864 | static void restore_ttypgrp_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1865 | static void restore_ttypgrp_and__exit(void) |
| 1866 | { |
| 1867 | /* xfunc has failed! die die die */ |
| 1868 | /* no EXIT traps, this is an escape hatch! */ |
| 1869 | G.exiting = 1; |
| 1870 | hush_exit(xfunc_error_retval); |
| 1871 | } |
| 1872 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1873 | #if ENABLE_HUSH_JOB |
| 1874 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1875 | /* Needed only on some libc: |
| 1876 | * It was observed that on exit(), fgetc'ed buffered data |
| 1877 | * gets "unwound" via lseek(fd, -NUM, SEEK_CUR). |
| 1878 | * With the net effect that even after fork(), not vfork(), |
| 1879 | * exit() in NOEXECed applet in "sh SCRIPT": |
| 1880 | * noexec_applet_here |
| 1881 | * echo END_OF_SCRIPT |
| 1882 | * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT". |
| 1883 | * This makes "echo END_OF_SCRIPT" executed twice. |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 1884 | * 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] | 1885 | * and in `cmd` handling. |
| 1886 | * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit(): |
| 1887 | */ |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1888 | static void fflush_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1889 | static void fflush_and__exit(void) |
| 1890 | { |
| 1891 | fflush_all(); |
| 1892 | _exit(xfunc_error_retval); |
| 1893 | } |
| 1894 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1895 | /* 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] | 1896 | # define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1897 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1898 | # 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] | 1899 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1900 | /* Restores tty foreground process group, and exits. |
| 1901 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1902 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1903 | * or called directly with -EXITCODE. |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1904 | * We also call it if xfunc is exiting. |
| 1905 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1906 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1907 | static void sigexit(int sig) |
| 1908 | { |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1909 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1910 | * tty pgrp then, only top-level shell process does that */ |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1911 | if (G_saved_tty_pgrp && getpid() == G.root_pid) { |
| 1912 | /* Disable all signals: job control, SIGPIPE, etc. |
| 1913 | * Mostly paranoid measure, to prevent infinite SIGTTOU. |
| 1914 | */ |
| 1915 | sigprocmask_allsigs(SIG_BLOCK); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1916 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1917 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1918 | |
| 1919 | /* Not a signal, just exit */ |
| 1920 | if (sig <= 0) |
| 1921 | _exit(- sig); |
| 1922 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1923 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1924 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1925 | #else |
| 1926 | |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1927 | # define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1928 | # define enable_restore_tty_pgrp_on_exit() ((void)0) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1929 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1930 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1931 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1932 | static sighandler_t pick_sighandler(unsigned sig) |
| 1933 | { |
| 1934 | sighandler_t handler = SIG_DFL; |
| 1935 | if (sig < sizeof(unsigned)*8) { |
| 1936 | unsigned sigmask = (1 << sig); |
| 1937 | |
| 1938 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1939 | /* is sig fatal? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1940 | if (G_fatal_sig_mask & sigmask) |
| 1941 | handler = sigexit; |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1942 | else |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1943 | #endif |
| 1944 | /* sig has special handling? */ |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1945 | if (G.special_sig_mask & sigmask) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1946 | handler = record_pending_signo; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1947 | /* TTIN/TTOU/TSTP can't be set to record_pending_signo |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1948 | * in order to ignore them: they will be raised |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 1949 | * in an endless loop when we try to do some |
| 1950 | * terminal ioctls! We do have to _ignore_ these. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1951 | */ |
| 1952 | if (SPECIAL_JOBSTOP_SIGS & sigmask) |
| 1953 | handler = SIG_IGN; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1954 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1955 | } |
| 1956 | return handler; |
| 1957 | } |
| 1958 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1959 | /* Restores tty foreground process group, and exits. */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1960 | static void hush_exit(int exitcode) |
| 1961 | { |
Denys Vlasenko | bede215 | 2011-09-04 16:12:33 +0200 | [diff] [blame] | 1962 | #if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 1963 | save_history(G.line_input_state); |
| 1964 | #endif |
| 1965 | |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 1966 | fflush_all(); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1967 | 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] | 1968 | char *argv[3]; |
| 1969 | /* argv[0] is unused */ |
Denys Vlasenko | 46f839c | 2018-01-19 16:58:44 +0100 | [diff] [blame] | 1970 | 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] | 1971 | argv[2] = NULL; |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 1972 | G.exiting = 1; /* prevent EXIT trap recursion */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1973 | /* Note: G_traps[0] is not cleared! |
Denys Vlasenko | de8c3f6 | 2010-09-12 16:13:44 +0200 | [diff] [blame] | 1974 | * "trap" will still show it, if executed |
| 1975 | * in the handler */ |
| 1976 | builtin_eval(argv); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1977 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1978 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1979 | #if ENABLE_FEATURE_CLEAN_UP |
| 1980 | { |
| 1981 | struct variable *cur_var; |
| 1982 | if (G.cwd != bb_msg_unknown) |
| 1983 | free((char*)G.cwd); |
| 1984 | cur_var = G.top_var; |
| 1985 | while (cur_var) { |
| 1986 | struct variable *tmp = cur_var; |
| 1987 | if (!cur_var->max_len) |
| 1988 | free(cur_var->varstr); |
| 1989 | cur_var = cur_var->next; |
| 1990 | free(tmp); |
| 1991 | } |
| 1992 | } |
| 1993 | #endif |
| 1994 | |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 1995 | fflush_all(); |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1996 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1997 | sigexit(- (exitcode & 0xff)); |
| 1998 | #else |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1999 | _exit(exitcode); |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 2000 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 2001 | } |
| 2002 | |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 2003 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2004 | //TODO: return a mask of ALL handled sigs? |
| 2005 | static int check_and_run_traps(void) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2006 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2007 | int last_sig = 0; |
| 2008 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2009 | while (1) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2010 | int sig; |
Denys Vlasenko | 80542ba | 2011-05-08 21:23:43 +0200 | [diff] [blame] | 2011 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2012 | if (sigisemptyset(&G.pending_set)) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2013 | break; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2014 | sig = 0; |
| 2015 | do { |
| 2016 | sig++; |
| 2017 | if (sigismember(&G.pending_set, sig)) { |
| 2018 | sigdelset(&G.pending_set, sig); |
| 2019 | goto got_sig; |
| 2020 | } |
| 2021 | } while (sig < NSIG); |
| 2022 | break; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2023 | got_sig: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 2024 | if (G_traps && G_traps[sig]) { |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2025 | 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] | 2026 | if (G_traps[sig][0]) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2027 | /* We have user-defined handler */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2028 | smalluint save_rcode; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2029 | char *argv[3]; |
| 2030 | /* argv[0] is unused */ |
Denys Vlasenko | 749575d | 2018-01-30 04:29:03 +0100 | [diff] [blame] | 2031 | argv[1] = xstrdup(G_traps[sig]); |
| 2032 | /* why strdup? trap can modify itself: trap 'trap "echo oops" INT' INT */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2033 | argv[2] = NULL; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2034 | save_rcode = G.last_exitcode; |
| 2035 | builtin_eval(argv); |
Denys Vlasenko | 749575d | 2018-01-30 04:29:03 +0100 | [diff] [blame] | 2036 | free(argv[1]); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2037 | //FIXME: shouldn't it be set to 128 + sig instead? |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2038 | G.last_exitcode = save_rcode; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2039 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2040 | } /* else: "" trap, ignoring signal */ |
| 2041 | continue; |
| 2042 | } |
| 2043 | /* not a trap: special action */ |
| 2044 | switch (sig) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2045 | case SIGINT: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2046 | debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2047 | G.flag_SIGINT = 1; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2048 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2049 | break; |
| 2050 | #if ENABLE_HUSH_JOB |
| 2051 | case SIGHUP: { |
Denys Vlasenko | 49e6bf2 | 2017-08-04 14:28:16 +0200 | [diff] [blame] | 2052 | //TODO: why are we doing this? ash and dash don't do this, |
| 2053 | //they have no handler for SIGHUP at all, |
| 2054 | //they rely on kernel to send SIGHUP+SIGCONT to orphaned process groups |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2055 | struct pipe *job; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2056 | debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2057 | /* bash is observed to signal whole process groups, |
| 2058 | * not individual processes */ |
| 2059 | for (job = G.job_list; job; job = job->next) { |
| 2060 | if (job->pgrp <= 0) |
| 2061 | continue; |
| 2062 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 2063 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 2064 | kill(- job->pgrp, SIGCONT); |
| 2065 | } |
| 2066 | sigexit(SIGHUP); |
| 2067 | } |
| 2068 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2069 | #if ENABLE_HUSH_FAST |
| 2070 | case SIGCHLD: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2071 | debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2072 | G.count_SIGCHLD++; |
| 2073 | //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 2074 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2075 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2076 | * This simplifies wait builtin a bit. |
| 2077 | */ |
| 2078 | break; |
| 2079 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2080 | default: /* ignored: */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 2081 | 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] | 2082 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2083 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2084 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2085 | * Example: wait is not interrupted by TERM |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2086 | * in interactive shell, because TERM is ignored. |
| 2087 | */ |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 2088 | break; |
| 2089 | } |
| 2090 | } |
| 2091 | return last_sig; |
| 2092 | } |
| 2093 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2094 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2095 | static const char *get_cwd(int force) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2096 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2097 | if (force || G.cwd == NULL) { |
| 2098 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 2099 | * we must not try to free(bb_msg_unknown) */ |
| 2100 | if (G.cwd == bb_msg_unknown) |
| 2101 | G.cwd = NULL; |
| 2102 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 2103 | if (!G.cwd) |
| 2104 | G.cwd = bb_msg_unknown; |
| 2105 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2106 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2107 | } |
| 2108 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 2109 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2110 | /* |
| 2111 | * Shell and environment variable support |
| 2112 | */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2113 | 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] | 2114 | { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2115 | struct variable **pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2116 | struct variable *cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2117 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2118 | pp = &G.top_var; |
| 2119 | while ((cur = *pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2120 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2121 | return pp; |
| 2122 | pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2123 | } |
| 2124 | return NULL; |
| 2125 | } |
| 2126 | |
Denys Vlasenko | 03dad22 | 2010-01-12 23:29:57 +0100 | [diff] [blame] | 2127 | static const char* FAST_FUNC get_local_var_value(const char *name) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2128 | { |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2129 | struct variable **vpp; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2130 | unsigned len = strlen(name); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2131 | |
| 2132 | if (G.expanded_assignments) { |
| 2133 | char **cpp = G.expanded_assignments; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2134 | while (*cpp) { |
| 2135 | char *cp = *cpp; |
| 2136 | if (strncmp(cp, name, len) == 0 && cp[len] == '=') |
| 2137 | return cp + len + 1; |
| 2138 | cpp++; |
| 2139 | } |
| 2140 | } |
| 2141 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2142 | vpp = get_ptr_to_local_var(name, len); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2143 | if (vpp) |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2144 | return (*vpp)->varstr + len + 1; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2145 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 2146 | if (strcmp(name, "PPID") == 0) |
| 2147 | return utoa(G.root_ppid); |
| 2148 | // bash compat: UID? EUID? |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2149 | #if ENABLE_HUSH_RANDOM_SUPPORT |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2150 | if (strcmp(name, "RANDOM") == 0) |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2151 | return utoa(next_random(&G.random_gen)); |
| 2152 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2153 | return NULL; |
| 2154 | } |
| 2155 | |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2156 | static void handle_changed_special_names(const char *name, unsigned name_len) |
| 2157 | { |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2158 | if (ENABLE_HUSH_INTERACTIVE && ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 2159 | && name_len == 3 && name[0] == 'P' && name[1] == 'S' |
| 2160 | ) { |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2161 | cmdedit_update_prompt(); |
| 2162 | return; |
| 2163 | } |
| 2164 | |
| 2165 | if ((ENABLE_HUSH_LINENO_VAR || ENABLE_HUSH_GETOPTS) |
| 2166 | && name_len == 6 |
| 2167 | ) { |
| 2168 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 00bd767 | 2018-04-06 14:57:53 +0200 | [diff] [blame] | 2169 | if (strncmp(name, "LINENO", 6) == 0) { |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2170 | G.lineno_var = NULL; |
Denys Vlasenko | 00bd767 | 2018-04-06 14:57:53 +0200 | [diff] [blame] | 2171 | return; |
| 2172 | } |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2173 | #endif |
| 2174 | #if ENABLE_HUSH_GETOPTS |
Denys Vlasenko | 00bd767 | 2018-04-06 14:57:53 +0200 | [diff] [blame] | 2175 | if (strncmp(name, "OPTIND", 6) == 0) { |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2176 | G.getopt_count = 0; |
Denys Vlasenko | 00bd767 | 2018-04-06 14:57:53 +0200 | [diff] [blame] | 2177 | return; |
| 2178 | } |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2179 | #endif |
| 2180 | } |
| 2181 | } |
| 2182 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2183 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2184 | * We take ownership of it. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2185 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2186 | #define SETFLAG_EXPORT (1 << 0) |
| 2187 | #define SETFLAG_UNEXPORT (1 << 1) |
| 2188 | #define SETFLAG_MAKE_RO (1 << 2) |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 2189 | #define SETFLAG_VARLVL_SHIFT 3 |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2190 | static int set_local_var(char *str, unsigned flags) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2191 | { |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2192 | struct variable **cur_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2193 | struct variable *cur; |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2194 | char *free_me = NULL; |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2195 | char *eq_sign; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2196 | int name_len; |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 2197 | unsigned local_lvl = (flags >> SETFLAG_VARLVL_SHIFT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2198 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2199 | eq_sign = strchr(str, '='); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2200 | if (HUSH_DEBUG && !eq_sign) |
| 2201 | bb_error_msg_and_die("BUG in setvar"); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2202 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2203 | name_len = eq_sign - str + 1; /* including '=' */ |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2204 | cur_pp = &G.top_var; |
| 2205 | while ((cur = *cur_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2206 | if (strncmp(cur->varstr, str, name_len) != 0) { |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2207 | cur_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2208 | continue; |
| 2209 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2210 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2211 | /* We found an existing var with this name */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2212 | if (cur->flg_read_only) { |
Denys Vlasenko | 6b48e1f | 2017-07-17 21:31:17 +0200 | [diff] [blame] | 2213 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2214 | free(str); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2215 | //NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1, |
| 2216 | //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] | 2217 | return -1; |
| 2218 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2219 | if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ? |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2220 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 2221 | *eq_sign = '\0'; |
| 2222 | unsetenv(str); |
| 2223 | *eq_sign = '='; |
| 2224 | } |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 2225 | if (cur->var_nest_level < local_lvl) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2226 | /* bash 3.2.33(1) and exported vars: |
| 2227 | * # export z=z |
| 2228 | * # f() { local z=a; env | grep ^z; } |
| 2229 | * # f |
| 2230 | * z=a |
| 2231 | * # env | grep ^z |
| 2232 | * z=z |
| 2233 | */ |
| 2234 | if (cur->flg_export) |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2235 | flags |= SETFLAG_EXPORT; |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2236 | /* New variable is local ("local VAR=VAL" or |
| 2237 | * "VAR=VAL cmd") |
| 2238 | * and existing one is global, or local |
| 2239 | * on a lower level that new one. |
| 2240 | * Remove it from global variable list: |
| 2241 | */ |
| 2242 | *cur_pp = cur->next; |
| 2243 | if (G.shadowed_vars_pp) { |
| 2244 | /* Save in "shadowed" list */ |
| 2245 | debug_printf_env("shadowing %s'%s'/%u by '%s'/%u\n", |
| 2246 | cur->flg_export ? "exported " : "", |
| 2247 | cur->varstr, cur->var_nest_level, str, local_lvl |
| 2248 | ); |
| 2249 | cur->next = *G.shadowed_vars_pp; |
| 2250 | *G.shadowed_vars_pp = cur; |
| 2251 | } else { |
| 2252 | /* Came from pseudo_exec_argv(), no need to save: delete it */ |
| 2253 | debug_printf_env("shadow-deleting %s'%s'/%u by '%s'/%u\n", |
| 2254 | cur->flg_export ? "exported " : "", |
| 2255 | cur->varstr, cur->var_nest_level, str, local_lvl |
| 2256 | ); |
| 2257 | if (cur->max_len == 0) /* allocated "VAR=VAL"? */ |
| 2258 | free_me = cur->varstr; /* then free it later */ |
| 2259 | free(cur); |
| 2260 | } |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2261 | break; |
| 2262 | } |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 2263 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2264 | if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) { |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2265 | debug_printf_env("assignement '%s' does not change anything\n", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2266 | free_and_exp: |
| 2267 | free(str); |
| 2268 | goto exp; |
| 2269 | } |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2270 | |
| 2271 | /* Replace the value in the found "struct variable" */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2272 | if (cur->max_len != 0) { |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2273 | if (cur->max_len >= strnlen(str, cur->max_len + 1)) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2274 | /* This one is from startup env, reuse space */ |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2275 | debug_printf_env("reusing startup env for '%s'\n", str); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2276 | strcpy(cur->varstr, str); |
| 2277 | goto free_and_exp; |
| 2278 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2279 | /* Can't reuse */ |
| 2280 | cur->max_len = 0; |
| 2281 | goto set_str_and_exp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2282 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2283 | /* max_len == 0 signifies "malloced" var, which we can |
| 2284 | * (and have to) free. But we can't free(cur->varstr) here: |
| 2285 | * if cur->flg_export is 1, it is in the environment. |
| 2286 | * We should either unsetenv+free, or wait until putenv, |
| 2287 | * then putenv(new)+free(old). |
| 2288 | */ |
| 2289 | free_me = cur->varstr; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2290 | goto set_str_and_exp; |
| 2291 | } |
| 2292 | |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2293 | /* Not found or shadowed - create new variable struct */ |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 2294 | debug_printf_env("%s: alloc new var '%s'/%u\n", __func__, str, local_lvl); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2295 | cur = xzalloc(sizeof(*cur)); |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 2296 | cur->var_nest_level = local_lvl; |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2297 | cur->next = *cur_pp; |
| 2298 | *cur_pp = cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2299 | |
| 2300 | set_str_and_exp: |
| 2301 | cur->varstr = str; |
| 2302 | exp: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2303 | #if !BB_MMU || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2304 | if (flags & SETFLAG_MAKE_RO) { |
| 2305 | cur->flg_read_only = 1; |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2306 | } |
| 2307 | #endif |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2308 | if (flags & SETFLAG_EXPORT) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2309 | cur->flg_export = 1; |
| 2310 | if (cur->flg_export) { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2311 | if (flags & SETFLAG_UNEXPORT) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2312 | cur->flg_export = 0; |
| 2313 | /* unsetenv was already done */ |
| 2314 | } else { |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2315 | int i; |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2316 | debug_printf_env("%s: putenv '%s'/%u\n", __func__, cur->varstr, cur->var_nest_level); |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2317 | i = putenv(cur->varstr); |
| 2318 | /* only now we can free old exported malloced string */ |
| 2319 | free(free_me); |
| 2320 | return i; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2321 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2322 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2323 | free(free_me); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2324 | |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2325 | handle_changed_special_names(cur->varstr, name_len - 1); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2326 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2327 | return 0; |
| 2328 | } |
| 2329 | |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2330 | /* Used at startup and after each cd */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2331 | static void set_pwd_var(unsigned flag) |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2332 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2333 | set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2334 | } |
| 2335 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2336 | static int unset_local_var_len(const char *name, int name_len) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2337 | { |
| 2338 | struct variable *cur; |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2339 | struct variable **cur_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2340 | |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2341 | cur_pp = &G.top_var; |
| 2342 | while ((cur = *cur_pp) != NULL) { |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2343 | if (strncmp(cur->varstr, name, name_len) == 0 |
| 2344 | && cur->varstr[name_len] == '=' |
| 2345 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2346 | if (cur->flg_read_only) { |
| 2347 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2348 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2349 | } |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2350 | |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2351 | *cur_pp = cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2352 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 2353 | bb_unsetenv(cur->varstr); |
| 2354 | if (!cur->max_len) |
| 2355 | free(cur->varstr); |
| 2356 | free(cur); |
Denys Vlasenko | cf079ff | 2018-04-06 14:50:12 +0200 | [diff] [blame] | 2357 | |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2358 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2359 | } |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2360 | cur_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2361 | } |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2362 | |
| 2363 | /* Handle "unset PS1" et al even if did not find the variable to unset */ |
| 2364 | handle_changed_special_names(name, name_len); |
| 2365 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2366 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2367 | } |
| 2368 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 2369 | #if ENABLE_HUSH_UNSET || ENABLE_HUSH_GETOPTS |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2370 | static int unset_local_var(const char *name) |
| 2371 | { |
| 2372 | return unset_local_var_len(name, strlen(name)); |
| 2373 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 2374 | #endif |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2375 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 2376 | #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] | 2377 | 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] | 2378 | { |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2379 | char *var = xasprintf("%s=%s", name, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2380 | set_local_var(var, /*flag:*/ 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2381 | } |
Denys Vlasenko | cc2fd5a | 2017-01-09 06:19:55 +0100 | [diff] [blame] | 2382 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2383 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2384 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2385 | /* |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2386 | * Helpers for "var1=val1 var2=val2 cmd" feature |
| 2387 | */ |
| 2388 | static void add_vars(struct variable *var) |
| 2389 | { |
| 2390 | struct variable *next; |
| 2391 | |
| 2392 | while (var) { |
| 2393 | next = var->next; |
| 2394 | var->next = G.top_var; |
| 2395 | G.top_var = var; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2396 | if (var->flg_export) { |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2397 | debug_printf_env("%s: restoring exported '%s'/%u\n", __func__, var->varstr, var->var_nest_level); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2398 | putenv(var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2399 | } else { |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2400 | debug_printf_env("%s: restoring variable '%s'/%u\n", __func__, var->varstr, var->var_nest_level); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2401 | } |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2402 | var = next; |
| 2403 | } |
| 2404 | } |
| 2405 | |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2406 | /* We put strings[i] into variable table and possibly putenv them. |
| 2407 | * If variable is read only, we can free the strings[i] |
| 2408 | * which attempts to overwrite it. |
| 2409 | * The strings[] vector itself is freed. |
| 2410 | */ |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2411 | static void set_vars_and_save_old(char **strings) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2412 | { |
| 2413 | char **s; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2414 | |
| 2415 | if (!strings) |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2416 | return; |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2417 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2418 | s = strings; |
| 2419 | while (*s) { |
| 2420 | struct variable *var_p; |
| 2421 | struct variable **var_pp; |
| 2422 | char *eq; |
| 2423 | |
| 2424 | eq = strchr(*s, '='); |
| 2425 | if (eq) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2426 | var_pp = get_ptr_to_local_var(*s, eq - *s); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2427 | if (var_pp) { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2428 | var_p = *var_pp; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2429 | if (var_p->flg_read_only) { |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2430 | char **p; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2431 | bb_error_msg("%s: readonly variable", *s); |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2432 | /* |
| 2433 | * "VAR=V BLTIN" unsets VARs after BLTIN completes. |
| 2434 | * If VAR is readonly, leaving it in the list |
| 2435 | * after asssignment error (msg above) |
| 2436 | * causes doubled error message later, on unset. |
| 2437 | */ |
| 2438 | debug_printf_env("removing/freeing '%s' element\n", *s); |
| 2439 | free(*s); |
| 2440 | p = s; |
| 2441 | do { *p = p[1]; p++; } while (*p); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2442 | goto next; |
| 2443 | } |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 2444 | /* below, set_local_var() with nest level will |
| 2445 | * "shadow" (remove) this variable from |
| 2446 | * global linked list. |
| 2447 | */ |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2448 | } |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 2449 | debug_printf_env("%s: env override '%s'/%u\n", __func__, *s, G.var_nest_level); |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2450 | set_local_var(*s, (G.var_nest_level << SETFLAG_VARLVL_SHIFT) | SETFLAG_EXPORT); |
| 2451 | } else if (HUSH_DEBUG) { |
| 2452 | bb_error_msg_and_die("BUG in varexp4"); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2453 | } |
| 2454 | s++; |
Denys Vlasenko | 6140780 | 2018-04-04 21:14:28 +0200 | [diff] [blame] | 2455 | next: ; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2456 | } |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 2457 | free(strings); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2458 | } |
| 2459 | |
| 2460 | |
| 2461 | /* |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2462 | * Unicode helper |
| 2463 | */ |
| 2464 | static void reinit_unicode_for_hush(void) |
| 2465 | { |
| 2466 | /* Unicode support should be activated even if LANG is set |
| 2467 | * _during_ shell execution, not only if it was set when |
| 2468 | * shell was started. Therefore, re-check LANG every time: |
| 2469 | */ |
Denys Vlasenko | 841f833 | 2014-08-13 10:09:49 +0200 | [diff] [blame] | 2470 | if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV |
| 2471 | || ENABLE_UNICODE_USING_LOCALE |
| 2472 | ) { |
| 2473 | const char *s = get_local_var_value("LC_ALL"); |
| 2474 | if (!s) s = get_local_var_value("LC_CTYPE"); |
| 2475 | if (!s) s = get_local_var_value("LANG"); |
| 2476 | reinit_unicode(s); |
| 2477 | } |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2478 | } |
| 2479 | |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2480 | /* |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2481 | * in_str support (strings, and "strings" read from files). |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2482 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2483 | |
| 2484 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2485 | /* To test correct lineedit/interactive behavior, type from command line: |
| 2486 | * echo $P\ |
| 2487 | * \ |
| 2488 | * AT\ |
| 2489 | * H\ |
| 2490 | * \ |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2491 | * It exercises a lot of corner cases. |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2492 | */ |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2493 | # if ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2494 | static void cmdedit_update_prompt(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2495 | { |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2496 | G.PS1 = get_local_var_value("PS1"); |
| 2497 | if (G.PS1 == NULL) |
| 2498 | G.PS1 = ""; |
| 2499 | G.PS2 = get_local_var_value("PS2"); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2500 | if (G.PS2 == NULL) |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2501 | G.PS2 = ""; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2502 | } |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2503 | # endif |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 2504 | static const char *setup_prompt_string(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2505 | { |
| 2506 | const char *prompt_str; |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2507 | |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 2508 | debug_printf_prompt("%s promptmode:%d\n", __func__, G.promptmode); |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2509 | |
| 2510 | IF_FEATURE_EDITING_FANCY_PROMPT( prompt_str = G.PS2;) |
| 2511 | IF_NOT_FEATURE_EDITING_FANCY_PROMPT(prompt_str = "> ";) |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 2512 | if (G.promptmode == 0) { /* PS1 */ |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2513 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 2514 | /* No fancy prompts supported, (re)generate "CURDIR $ " by hand */ |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2515 | free((char*)G.PS1); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2516 | /* bash uses $PWD value, even if it is set by user. |
| 2517 | * It uses current dir only if PWD is unset. |
| 2518 | * We always use current dir. */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2519 | G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#'); |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 2520 | } |
| 2521 | prompt_str = G.PS1; |
| 2522 | } |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2523 | debug_printf("prompt_str '%s'\n", prompt_str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2524 | return prompt_str; |
| 2525 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2526 | static int get_user_input(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2527 | { |
| 2528 | int r; |
| 2529 | const char *prompt_str; |
| 2530 | |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 2531 | prompt_str = setup_prompt_string(); |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2532 | # if ENABLE_FEATURE_EDITING |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2533 | for (;;) { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2534 | reinit_unicode_for_hush(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2535 | if (G.flag_SIGINT) { |
| 2536 | /* There was ^C'ed, make it look prettier: */ |
| 2537 | bb_putchar('\n'); |
| 2538 | G.flag_SIGINT = 0; |
| 2539 | } |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2540 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2541 | * only after <Enter>. (^C works immediately) */ |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 2542 | r = read_line_input(G.line_input_state, prompt_str, |
Denys Vlasenko | 84ea60e | 2017-08-02 17:27:28 +0200 | [diff] [blame] | 2543 | G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1 |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 2544 | ); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2545 | /* read_line_input intercepts ^C, "convert" it to SIGINT */ |
Denys Vlasenko | dd4b446 | 2017-08-02 16:52:12 +0200 | [diff] [blame] | 2546 | if (r == 0) |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2547 | raise(SIGINT); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2548 | check_and_run_traps(); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2549 | if (r != 0 && !G.flag_SIGINT) |
| 2550 | break; |
| 2551 | /* ^C or SIGINT: repeat */ |
Denys Vlasenko | dd4b446 | 2017-08-02 16:52:12 +0200 | [diff] [blame] | 2552 | /* bash prints ^C even on real SIGINT (non-kbd generated) */ |
| 2553 | write(STDOUT_FILENO, "^C", 2); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2554 | G.last_exitcode = 128 + SIGINT; |
| 2555 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2556 | if (r < 0) { |
| 2557 | /* EOF/error detected */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2558 | i->p = NULL; |
| 2559 | i->peek_buf[0] = r = EOF; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2560 | return r; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2561 | } |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2562 | i->p = G.user_input_buf; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2563 | return (unsigned char)*i->p++; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2564 | # else |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2565 | for (;;) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2566 | G.flag_SIGINT = 0; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2567 | if (i->last_char == '\0' || i->last_char == '\n') { |
| 2568 | /* Why check_and_run_traps here? Try this interactively: |
| 2569 | * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) & |
| 2570 | * $ <[enter], repeatedly...> |
| 2571 | * Without check_and_run_traps, handler never runs. |
| 2572 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2573 | check_and_run_traps(); |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2574 | fputs(prompt_str, stdout); |
| 2575 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 2576 | fflush_all(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2577 | //FIXME: here ^C or SIGINT will have effect only after <Enter> |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2578 | r = fgetc(i->file); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2579 | /* In !ENABLE_FEATURE_EDITING we don't use read_line_input, |
| 2580 | * no ^C masking happens during fgetc, no special code for ^C: |
| 2581 | * it generates SIGINT as usual. |
| 2582 | */ |
| 2583 | check_and_run_traps(); |
| 2584 | if (G.flag_SIGINT) |
| 2585 | G.last_exitcode = 128 + SIGINT; |
| 2586 | if (r != '\0') |
| 2587 | break; |
| 2588 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2589 | return r; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2590 | # endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2591 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2592 | /* This is the magic location that prints prompts |
| 2593 | * and gets data back from the user */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2594 | static int fgetc_interactive(struct in_str *i) |
| 2595 | { |
| 2596 | int ch; |
| 2597 | /* If it's interactive stdin, get new line. */ |
| 2598 | if (G_interactive_fd && i->file == stdin) { |
| 2599 | /* Returns first char (or EOF), the rest is in i->p[] */ |
| 2600 | ch = get_user_input(i); |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 2601 | G.promptmode = 1; /* PS2 */ |
| 2602 | debug_printf_prompt("%s promptmode=%d\n", __func__, G.promptmode); |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2603 | } else { |
| 2604 | /* Not stdin: script file, sourced file, etc */ |
| 2605 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2606 | } |
| 2607 | return ch; |
| 2608 | } |
| 2609 | #else |
| 2610 | static inline int fgetc_interactive(struct in_str *i) |
| 2611 | { |
| 2612 | int ch; |
| 2613 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2614 | return ch; |
| 2615 | } |
| 2616 | #endif /* INTERACTIVE */ |
| 2617 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2618 | static int i_getch(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2619 | { |
| 2620 | int ch; |
| 2621 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2622 | if (!i->file) { |
| 2623 | /* string-based in_str */ |
| 2624 | ch = (unsigned char)*i->p; |
| 2625 | if (ch != '\0') { |
| 2626 | i->p++; |
| 2627 | i->last_char = ch; |
| 2628 | return ch; |
| 2629 | } |
| 2630 | return EOF; |
| 2631 | } |
| 2632 | |
| 2633 | /* FILE-based in_str */ |
| 2634 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2635 | #if ENABLE_FEATURE_EDITING |
| 2636 | /* This can be stdin, check line editing char[] buffer */ |
| 2637 | if (i->p && *i->p != '\0') { |
| 2638 | ch = (unsigned char)*i->p++; |
| 2639 | goto out; |
| 2640 | } |
| 2641 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2642 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2643 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2644 | if (ch != 0) { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2645 | int ch2 = i->peek_buf[1]; |
| 2646 | i->peek_buf[0] = ch2; |
| 2647 | if (ch2 == 0) /* very likely, avoid redundant write */ |
| 2648 | goto out; |
| 2649 | i->peek_buf[1] = 0; |
| 2650 | goto out; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2651 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2652 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2653 | ch = fgetc_interactive(i); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2654 | out: |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 2655 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 2656 | i->last_char = ch; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2657 | #if ENABLE_HUSH_LINENO_VAR |
| 2658 | if (ch == '\n') { |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2659 | G.lineno++; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 2660 | debug_printf_parse("G.lineno++ = %u\n", G.lineno); |
| 2661 | } |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 2662 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2663 | return ch; |
| 2664 | } |
| 2665 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2666 | static int i_peek(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2667 | { |
| 2668 | int ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2669 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2670 | if (!i->file) { |
| 2671 | /* string-based in_str */ |
| 2672 | /* Doesn't report EOF on NUL. None of the callers care. */ |
| 2673 | return (unsigned char)*i->p; |
| 2674 | } |
| 2675 | |
| 2676 | /* FILE-based in_str */ |
| 2677 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2678 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2679 | /* This can be stdin, check line editing char[] buffer */ |
| 2680 | if (i->p && *i->p != '\0') |
| 2681 | return (unsigned char)*i->p; |
| 2682 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2683 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2684 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2685 | if (ch != 0) |
| 2686 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2687 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2688 | /* Need to get a new char */ |
| 2689 | ch = fgetc_interactive(i); |
| 2690 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
| 2691 | |
| 2692 | /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */ |
| 2693 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
| 2694 | if (i->p) { |
| 2695 | i->p -= 1; |
| 2696 | return ch; |
| 2697 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2698 | #endif |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2699 | i->peek_buf[0] = ch; |
| 2700 | /*i->peek_buf[1] = 0; - already is */ |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2701 | return ch; |
| 2702 | } |
| 2703 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2704 | /* Only ever called if i_peek() was called, and did not return EOF. |
| 2705 | * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL, |
| 2706 | * not end-of-line. Therefore we never need to read a new editing line here. |
| 2707 | */ |
| 2708 | static int i_peek2(struct in_str *i) |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2709 | { |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2710 | int ch; |
| 2711 | |
| 2712 | /* There are two cases when i->p[] buffer exists. |
| 2713 | * (1) it's a string in_str. |
Denys Vlasenko | 08755f9 | 2016-09-30 02:02:25 +0200 | [diff] [blame] | 2714 | * (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] | 2715 | * In both cases, we know that i->p[0] exists and not NUL, and |
| 2716 | * the peek2 result is in i->p[1]. |
| 2717 | */ |
| 2718 | if (i->p) |
| 2719 | return (unsigned char)i->p[1]; |
| 2720 | |
| 2721 | /* Now we know it is a file-based in_str. */ |
| 2722 | |
| 2723 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2724 | /* Is there 2nd char? */ |
| 2725 | ch = i->peek_buf[1]; |
| 2726 | if (ch == 0) { |
| 2727 | /* We did not read it yet, get it now */ |
| 2728 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2729 | i->peek_buf[1] = ch; |
| 2730 | } |
| 2731 | |
| 2732 | debug_printf("file_peek2: got '%c' %d\n", ch, ch); |
| 2733 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2734 | } |
| 2735 | |
Denys Vlasenko | a94eeb0 | 2018-03-31 20:16:31 +0200 | [diff] [blame] | 2736 | static int i_getch_and_eat_bkslash_nl(struct in_str *input) |
| 2737 | { |
| 2738 | for (;;) { |
| 2739 | int ch, ch2; |
| 2740 | |
| 2741 | ch = i_getch(input); |
| 2742 | if (ch != '\\') |
| 2743 | return ch; |
| 2744 | ch2 = i_peek(input); |
| 2745 | if (ch2 != '\n') |
| 2746 | return ch; |
| 2747 | /* backslash+newline, skip it */ |
| 2748 | i_getch(input); |
| 2749 | } |
| 2750 | } |
| 2751 | |
| 2752 | /* Note: this function _eats_ \<newline> pairs, safe to use plain |
| 2753 | * i_getch() after it instead of i_getch_and_eat_bkslash_nl(). |
| 2754 | */ |
| 2755 | static int i_peek_and_eat_bkslash_nl(struct in_str *input) |
| 2756 | { |
| 2757 | for (;;) { |
| 2758 | int ch, ch2; |
| 2759 | |
| 2760 | ch = i_peek(input); |
| 2761 | if (ch != '\\') |
| 2762 | return ch; |
| 2763 | ch2 = i_peek2(input); |
| 2764 | if (ch2 != '\n') |
| 2765 | return ch; |
| 2766 | /* backslash+newline, skip it */ |
| 2767 | i_getch(input); |
| 2768 | i_getch(input); |
| 2769 | } |
| 2770 | } |
| 2771 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2772 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 2773 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2774 | memset(i, 0, sizeof(*i)); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2775 | i->file = f; |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2776 | /* i->p = NULL; */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2777 | } |
| 2778 | |
| 2779 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 2780 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2781 | memset(i, 0, sizeof(*i)); |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2782 | /*i->file = NULL */; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2783 | i->p = s; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2784 | } |
| 2785 | |
| 2786 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2787 | /* |
| 2788 | * o_string support |
| 2789 | */ |
| 2790 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2791 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 2792 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2793 | { |
| 2794 | o->length = 0; |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2795 | o->has_quoted_part = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2796 | if (o->data) |
| 2797 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2798 | } |
| 2799 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2800 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2801 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 2802 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2803 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2806 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 2807 | { |
| 2808 | free(o->data); |
| 2809 | } |
| 2810 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2811 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2812 | { |
| 2813 | if (o->length + len > o->maxlen) { |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2814 | o->maxlen += (2 * len) | (B_CHUNK-1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2815 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 2816 | } |
| 2817 | } |
| 2818 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2819 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2820 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2821 | 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] | 2822 | if (o->length < o->maxlen) { |
| 2823 | /* likely. avoid o_grow_by() call */ |
| 2824 | add: |
| 2825 | o->data[o->length] = ch; |
| 2826 | o->length++; |
| 2827 | o->data[o->length] = '\0'; |
| 2828 | return; |
| 2829 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2830 | o_grow_by(o, 1); |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2831 | goto add; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2832 | } |
| 2833 | |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 2834 | #if 0 |
| 2835 | /* Valid only if we know o_string is not empty */ |
| 2836 | static void o_delchr(o_string *o) |
| 2837 | { |
| 2838 | o->length--; |
| 2839 | o->data[o->length] = '\0'; |
| 2840 | } |
| 2841 | #endif |
| 2842 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2843 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2844 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2845 | o_grow_by(o, len); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 2846 | ((char*)mempcpy(&o->data[o->length], str, len))[0] = '\0'; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2847 | o->length += len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2848 | } |
| 2849 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2850 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2851 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2852 | o_addblock(o, str, strlen(str)); |
| 2853 | } |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 2854 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 2855 | #if !BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2856 | static void nommu_addchr(o_string *o, int ch) |
| 2857 | { |
| 2858 | if (o) |
| 2859 | o_addchr(o, ch); |
| 2860 | } |
| 2861 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 2862 | # define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2863 | #endif |
| 2864 | |
| 2865 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 2866 | { |
| 2867 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2868 | } |
| 2869 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2870 | /* |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 2871 | * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side. |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2872 | * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v. |
| 2873 | * Apparently, on unquoted $v bash still does globbing |
| 2874 | * ("v='*.txt'; echo $v" prints all .txt files), |
| 2875 | * but NOT brace expansion! Thus, there should be TWO independent |
| 2876 | * quoting mechanisms on $v expansion side: one protects |
| 2877 | * $v from brace expansion, and other additionally protects "$v" against globbing. |
| 2878 | * We have only second one. |
| 2879 | */ |
| 2880 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 2881 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2882 | # define MAYBE_BRACES "{}" |
| 2883 | #else |
| 2884 | # define MAYBE_BRACES "" |
| 2885 | #endif |
| 2886 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2887 | /* My analysis of quoting semantics tells me that state information |
| 2888 | * is associated with a destination, not a source. |
| 2889 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2890 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2891 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2892 | int sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2893 | char *found = strchr("*?[\\" MAYBE_BRACES, ch); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2894 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2895 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2896 | o_grow_by(o, sz); |
| 2897 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2898 | o->data[o->length] = '\\'; |
| 2899 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2900 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2901 | o->data[o->length] = ch; |
| 2902 | o->length++; |
| 2903 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2904 | } |
| 2905 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2906 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2907 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2908 | int sz = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2909 | if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS) |
| 2910 | && strchr("*?[\\" MAYBE_BRACES, ch) |
| 2911 | ) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2912 | sz++; |
| 2913 | o->data[o->length] = '\\'; |
| 2914 | o->length++; |
| 2915 | } |
| 2916 | o_grow_by(o, sz); |
| 2917 | o->data[o->length] = ch; |
| 2918 | o->length++; |
| 2919 | o->data[o->length] = '\0'; |
| 2920 | } |
| 2921 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2922 | static void o_addqblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2923 | { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2924 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2925 | char ch; |
| 2926 | int sz; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2927 | int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2928 | if (ordinary_cnt > len) /* paranoia */ |
| 2929 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2930 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2931 | if (ordinary_cnt == len) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2932 | return; /* NUL is already added by o_addblock */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2933 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 2934 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2935 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2936 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2937 | sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2938 | if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2939 | sz++; |
| 2940 | o->data[o->length] = '\\'; |
| 2941 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2942 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2943 | o_grow_by(o, sz); |
| 2944 | o->data[o->length] = ch; |
| 2945 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2946 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2947 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2948 | } |
| 2949 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2950 | static void o_addQblock(o_string *o, const char *str, int len) |
| 2951 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2952 | if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2953 | o_addblock(o, str, len); |
| 2954 | return; |
| 2955 | } |
| 2956 | o_addqblock(o, str, len); |
| 2957 | } |
| 2958 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2959 | static void o_addQstr(o_string *o, const char *str) |
| 2960 | { |
| 2961 | o_addQblock(o, str, strlen(str)); |
| 2962 | } |
| 2963 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2964 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 2965 | * 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] | 2966 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2967 | * list[i] contains an INDEX (int!) into this string data. |
| 2968 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 2969 | * but list[i]'s need not be modified. |
| 2970 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2971 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2972 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 2973 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2974 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 2975 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 2976 | { |
| 2977 | char **list = (char**)o->data; |
| 2978 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2979 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2980 | |
| 2981 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2982 | 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] | 2983 | prefix, list, n, string_start, o->length, o->maxlen, |
| 2984 | !!(o->o_expflags & EXP_FLAG_GLOB), |
| 2985 | o->has_quoted_part, |
| 2986 | !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2987 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2988 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2989 | fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i], |
| 2990 | o->data + (int)(uintptr_t)list[i] + string_start, |
| 2991 | o->data + (int)(uintptr_t)list[i] + string_start); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2992 | i++; |
| 2993 | } |
| 2994 | if (n) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2995 | 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] | 2996 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2997 | 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] | 2998 | } |
| 2999 | } |
| 3000 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 3001 | # define debug_print_list(prefix, o, n) ((void)0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3002 | #endif |
| 3003 | |
| 3004 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 3005 | * in list[n] so that it points past last stored byte so far. |
| 3006 | * It returns n+1. */ |
| 3007 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3008 | { |
| 3009 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 3010 | int string_start; |
| 3011 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3012 | |
| 3013 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 3014 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 3015 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3016 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3017 | 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] | 3018 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 3019 | o->maxlen += 0x10 * sizeof(list[0]); |
| 3020 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 3021 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3022 | memmove(list + n + 0x10, list + n, string_len); |
| 3023 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3024 | } else { |
| 3025 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 3026 | n, string_len, string_start); |
| 3027 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3028 | } else { |
| 3029 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 3030 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 3031 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3032 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 3033 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3034 | o->has_empty_slot = 0; |
| 3035 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 3036 | o->has_quoted_part = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3037 | list[n] = (char*)(uintptr_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3038 | return n + 1; |
| 3039 | } |
| 3040 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3041 | /* "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] | 3042 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3043 | { |
| 3044 | char **list = (char**)o->data; |
| 3045 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 3046 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3047 | return ((int)(uintptr_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3048 | } |
| 3049 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 3050 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3051 | /* There in a GNU extension, GLOB_BRACE, but it is not usable: |
| 3052 | * first, it processes even {a} (no commas), second, |
| 3053 | * 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] | 3054 | * existing files. Need to re-implement it. |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3055 | */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3056 | |
| 3057 | /* Helper */ |
| 3058 | static int glob_needed(const char *s) |
| 3059 | { |
| 3060 | while (*s) { |
| 3061 | if (*s == '\\') { |
| 3062 | if (!s[1]) |
| 3063 | return 0; |
| 3064 | s += 2; |
| 3065 | continue; |
| 3066 | } |
| 3067 | if (*s == '*' || *s == '[' || *s == '?' || *s == '{') |
| 3068 | return 1; |
| 3069 | s++; |
| 3070 | } |
| 3071 | return 0; |
| 3072 | } |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3073 | /* Return pointer to next closing brace or to comma */ |
| 3074 | static const char *next_brace_sub(const char *cp) |
| 3075 | { |
| 3076 | unsigned depth = 0; |
| 3077 | cp++; |
| 3078 | while (*cp != '\0') { |
| 3079 | if (*cp == '\\') { |
| 3080 | if (*++cp == '\0') |
| 3081 | break; |
| 3082 | cp++; |
| 3083 | continue; |
Denys Vlasenko | 3581c62 | 2010-01-25 13:39:24 +0100 | [diff] [blame] | 3084 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3085 | if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0)) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3086 | break; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3087 | if (*cp++ == '{') |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3088 | depth++; |
| 3089 | } |
| 3090 | |
| 3091 | return *cp != '\0' ? cp : NULL; |
| 3092 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3093 | /* Recursive brace globber. Note: may garble pattern[]. */ |
| 3094 | static int glob_brace(char *pattern, o_string *o, int n) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3095 | { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3096 | char *new_pattern_buf; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3097 | const char *begin; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3098 | const char *next; |
| 3099 | const char *rest; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3100 | const char *p; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3101 | size_t rest_len; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3102 | |
| 3103 | debug_printf_glob("glob_brace('%s')\n", pattern); |
| 3104 | |
| 3105 | begin = pattern; |
| 3106 | while (1) { |
| 3107 | if (*begin == '\0') |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3108 | goto simple_glob; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3109 | if (*begin == '{') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3110 | /* Find the first sub-pattern and at the same time |
| 3111 | * find the rest after the closing brace */ |
| 3112 | next = next_brace_sub(begin); |
| 3113 | if (next == NULL) { |
| 3114 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3115 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3116 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3117 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3118 | /* "{abc}" with no commas - illegal |
| 3119 | * brace expr, disregard and skip it */ |
| 3120 | begin = next + 1; |
| 3121 | continue; |
| 3122 | } |
| 3123 | break; |
| 3124 | } |
| 3125 | if (*begin == '\\' && begin[1] != '\0') |
| 3126 | begin++; |
| 3127 | begin++; |
| 3128 | } |
| 3129 | debug_printf_glob("begin:%s\n", begin); |
| 3130 | debug_printf_glob("next:%s\n", next); |
| 3131 | |
| 3132 | /* Now find the end of the whole brace expression */ |
| 3133 | rest = next; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3134 | while (*rest != '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3135 | rest = next_brace_sub(rest); |
| 3136 | if (rest == NULL) { |
| 3137 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3138 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3139 | } |
| 3140 | debug_printf_glob("rest:%s\n", rest); |
| 3141 | } |
| 3142 | rest_len = strlen(++rest) + 1; |
| 3143 | |
| 3144 | /* We are sure the brace expression is well-formed */ |
| 3145 | |
| 3146 | /* Allocate working buffer large enough for our work */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3147 | new_pattern_buf = xmalloc(strlen(pattern)); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3148 | |
| 3149 | /* We have a brace expression. BEGIN points to the opening {, |
| 3150 | * NEXT points past the terminator of the first element, and REST |
| 3151 | * points past the final }. We will accumulate result names from |
| 3152 | * recursive runs for each brace alternative in the buffer using |
| 3153 | * GLOB_APPEND. */ |
| 3154 | |
| 3155 | p = begin + 1; |
| 3156 | while (1) { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3157 | /* Construct the new glob expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3158 | memcpy( |
| 3159 | mempcpy( |
| 3160 | mempcpy(new_pattern_buf, |
| 3161 | /* We know the prefix for all sub-patterns */ |
| 3162 | pattern, begin - pattern), |
| 3163 | p, next - p), |
| 3164 | rest, rest_len); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3165 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3166 | /* Note: glob_brace() may garble new_pattern_buf[]. |
| 3167 | * That's why we re-copy prefix every time (1st memcpy above). |
| 3168 | */ |
| 3169 | n = glob_brace(new_pattern_buf, o, n); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 3170 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3171 | /* We saw the last entry */ |
| 3172 | break; |
| 3173 | } |
| 3174 | p = next + 1; |
| 3175 | next = next_brace_sub(next); |
| 3176 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3177 | free(new_pattern_buf); |
| 3178 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3179 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3180 | simple_glob: |
| 3181 | { |
| 3182 | int gr; |
| 3183 | glob_t globdata; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3184 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3185 | memset(&globdata, 0, sizeof(globdata)); |
| 3186 | gr = glob(pattern, 0, NULL, &globdata); |
| 3187 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 3188 | if (gr != 0) { |
| 3189 | if (gr == GLOB_NOMATCH) { |
| 3190 | globfree(&globdata); |
| 3191 | /* NB: garbles parameter */ |
| 3192 | unbackslash(pattern); |
| 3193 | o_addstr_with_NUL(o, pattern); |
| 3194 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3195 | return o_save_ptr_helper(o, n); |
| 3196 | } |
| 3197 | if (gr == GLOB_NOSPACE) |
Denys Vlasenko | 899ae53 | 2018-04-01 19:59:37 +0200 | [diff] [blame] | 3198 | bb_die_memory_exhausted(); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3199 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3200 | * but we didn't specify it. Paranoia again. */ |
| 3201 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
| 3202 | } |
| 3203 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3204 | char **argv = globdata.gl_pathv; |
| 3205 | while (1) { |
| 3206 | o_addstr_with_NUL(o, *argv); |
| 3207 | n = o_save_ptr_helper(o, n); |
| 3208 | argv++; |
| 3209 | if (!*argv) |
| 3210 | break; |
| 3211 | } |
| 3212 | } |
| 3213 | globfree(&globdata); |
| 3214 | } |
| 3215 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3216 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3217 | /* Performs globbing on last list[], |
| 3218 | * saving each result as a new list[]. |
| 3219 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3220 | static int perform_glob(o_string *o, int n) |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3221 | { |
| 3222 | char *pattern, *copy; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3223 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3224 | 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] | 3225 | if (!o->data) |
| 3226 | return o_save_ptr_helper(o, n); |
| 3227 | pattern = o->data + o_get_last_ptr(o, n); |
| 3228 | debug_printf_glob("glob pattern '%s'\n", pattern); |
| 3229 | if (!glob_needed(pattern)) { |
| 3230 | /* unbackslash last string in o in place, fix length */ |
| 3231 | o->length = unbackslash(pattern) - o->data; |
| 3232 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3233 | return o_save_ptr_helper(o, n); |
| 3234 | } |
| 3235 | |
| 3236 | copy = xstrdup(pattern); |
| 3237 | /* "forget" pattern in o */ |
| 3238 | o->length = pattern - o->data; |
| 3239 | n = glob_brace(copy, o, n); |
| 3240 | free(copy); |
| 3241 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3242 | debug_print_list("perform_glob returning", o, n); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3243 | return n; |
| 3244 | } |
| 3245 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3246 | #else /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3247 | |
| 3248 | /* Helper */ |
| 3249 | static int glob_needed(const char *s) |
| 3250 | { |
| 3251 | while (*s) { |
| 3252 | if (*s == '\\') { |
| 3253 | if (!s[1]) |
| 3254 | return 0; |
| 3255 | s += 2; |
| 3256 | continue; |
| 3257 | } |
| 3258 | if (*s == '*' || *s == '[' || *s == '?') |
| 3259 | return 1; |
| 3260 | s++; |
| 3261 | } |
| 3262 | return 0; |
| 3263 | } |
| 3264 | /* Performs globbing on last list[], |
| 3265 | * saving each result as a new list[]. |
| 3266 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3267 | static int perform_glob(o_string *o, int n) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3268 | { |
| 3269 | glob_t globdata; |
| 3270 | int gr; |
| 3271 | char *pattern; |
| 3272 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3273 | 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] | 3274 | if (!o->data) |
| 3275 | return o_save_ptr_helper(o, n); |
| 3276 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3277 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3278 | if (!glob_needed(pattern)) { |
| 3279 | literal: |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3280 | /* unbackslash last string in o in place, fix length */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3281 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3282 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3283 | return o_save_ptr_helper(o, n); |
| 3284 | } |
| 3285 | |
| 3286 | memset(&globdata, 0, sizeof(globdata)); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3287 | /* Can't use GLOB_NOCHECK: it does not unescape the string. |
| 3288 | * If we glob "*.\*" and don't find anything, we need |
| 3289 | * to fall back to using literal "*.*", but GLOB_NOCHECK |
| 3290 | * will return "*.\*"! |
| 3291 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3292 | gr = glob(pattern, 0, NULL, &globdata); |
| 3293 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3294 | if (gr != 0) { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3295 | if (gr == GLOB_NOMATCH) { |
| 3296 | globfree(&globdata); |
| 3297 | goto literal; |
| 3298 | } |
| 3299 | if (gr == GLOB_NOSPACE) |
Denys Vlasenko | 899ae53 | 2018-04-01 19:59:37 +0200 | [diff] [blame] | 3300 | bb_die_memory_exhausted(); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3301 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3302 | * but we didn't specify it. Paranoia again. */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3303 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3304 | } |
| 3305 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3306 | char **argv = globdata.gl_pathv; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3307 | /* "forget" pattern in o */ |
| 3308 | o->length = pattern - o->data; |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3309 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3310 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3311 | n = o_save_ptr_helper(o, n); |
| 3312 | argv++; |
| 3313 | if (!*argv) |
| 3314 | break; |
| 3315 | } |
| 3316 | } |
| 3317 | globfree(&globdata); |
| 3318 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3319 | debug_print_list("perform_glob returning", o, n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3320 | return n; |
| 3321 | } |
| 3322 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3323 | #endif /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3324 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3325 | /* 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] | 3326 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3327 | static int o_save_ptr(o_string *o, int n) |
| 3328 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3329 | if (o->o_expflags & EXP_FLAG_GLOB) { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3330 | /* If o->has_empty_slot, list[n] was already globbed |
| 3331 | * (if it was requested back then when it was filled) |
| 3332 | * so don't do that again! */ |
| 3333 | if (!o->has_empty_slot) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3334 | return perform_glob(o, n); /* o_save_ptr_helper is inside */ |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3335 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3336 | return o_save_ptr_helper(o, n); |
| 3337 | } |
| 3338 | |
| 3339 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3340 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3341 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3342 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3343 | int string_start; |
| 3344 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3345 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 3346 | if (DEBUG_EXPAND) |
| 3347 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3348 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3349 | list = (char**)o->data; |
| 3350 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 3351 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3352 | while (n) { |
| 3353 | n--; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3354 | list[n] = o->data + (int)(uintptr_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3355 | } |
| 3356 | return list; |
| 3357 | } |
| 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 | /* Returns pi->next - next pipe in the list */ |
| 3362 | static struct pipe *free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3363 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3364 | struct pipe *next; |
| 3365 | int i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3366 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3367 | debug_printf_clean("free_pipe (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3368 | for (i = 0; i < pi->num_cmds; i++) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3369 | struct command *command; |
| 3370 | struct redir_struct *r, *rnext; |
| 3371 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3372 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3373 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3374 | if (command->argv) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3375 | if (DEBUG_CLEAN) { |
| 3376 | int a; |
| 3377 | char **p; |
| 3378 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 3379 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
| 3380 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3381 | } |
| 3382 | free_strings(command->argv); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3383 | //command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3384 | } |
| 3385 | /* not "else if": on syntax error, we may have both! */ |
| 3386 | if (command->group) { |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3387 | debug_printf_clean(" begin group (cmd_type:%d)\n", |
| 3388 | command->cmd_type); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3389 | free_pipe_list(command->group); |
| 3390 | debug_printf_clean(" end group\n"); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3391 | //command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3392 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3393 | /* else is crucial here. |
| 3394 | * If group != NULL, child_func is meaningless */ |
| 3395 | #if ENABLE_HUSH_FUNCTIONS |
| 3396 | else if (command->child_func) { |
| 3397 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 3398 | command->child_func->parent_cmd = NULL; |
| 3399 | } |
| 3400 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3401 | #if !BB_MMU |
| 3402 | free(command->group_as_string); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3403 | //command->group_as_string = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3404 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3405 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3406 | debug_printf_clean(" redirect %d%s", |
| 3407 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3408 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 3409 | if (r->rd_filename) { |
| 3410 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 3411 | free(r->rd_filename); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3412 | //r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3413 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3414 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3415 | rnext = r->next; |
| 3416 | free(r); |
| 3417 | } |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3418 | //command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3419 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3420 | 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] | 3421 | //pi->cmds = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3422 | #if ENABLE_HUSH_JOB |
| 3423 | free(pi->cmdtext); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3424 | //pi->cmdtext = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3425 | #endif |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3426 | |
| 3427 | next = pi->next; |
| 3428 | free(pi); |
| 3429 | return next; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3430 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3431 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3432 | static void free_pipe_list(struct pipe *pi) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3433 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3434 | while (pi) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3435 | #if HAS_KEYWORDS |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3436 | debug_printf_clean("pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3437 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3438 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3439 | pi = free_pipe(pi); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3440 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3441 | } |
| 3442 | |
| 3443 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 3444 | /*** Parsing routines ***/ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3445 | |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3446 | #ifndef debug_print_tree |
| 3447 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3448 | { |
| 3449 | static const char *const PIPE[] = { |
| 3450 | [PIPE_SEQ] = "SEQ", |
| 3451 | [PIPE_AND] = "AND", |
| 3452 | [PIPE_OR ] = "OR" , |
| 3453 | [PIPE_BG ] = "BG" , |
| 3454 | }; |
| 3455 | static const char *RES[] = { |
| 3456 | [RES_NONE ] = "NONE" , |
| 3457 | # if ENABLE_HUSH_IF |
| 3458 | [RES_IF ] = "IF" , |
| 3459 | [RES_THEN ] = "THEN" , |
| 3460 | [RES_ELIF ] = "ELIF" , |
| 3461 | [RES_ELSE ] = "ELSE" , |
| 3462 | [RES_FI ] = "FI" , |
| 3463 | # endif |
| 3464 | # if ENABLE_HUSH_LOOPS |
| 3465 | [RES_FOR ] = "FOR" , |
| 3466 | [RES_WHILE] = "WHILE", |
| 3467 | [RES_UNTIL] = "UNTIL", |
| 3468 | [RES_DO ] = "DO" , |
| 3469 | [RES_DONE ] = "DONE" , |
| 3470 | # endif |
| 3471 | # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 3472 | [RES_IN ] = "IN" , |
| 3473 | # endif |
| 3474 | # if ENABLE_HUSH_CASE |
| 3475 | [RES_CASE ] = "CASE" , |
| 3476 | [RES_CASE_IN ] = "CASE_IN" , |
| 3477 | [RES_MATCH] = "MATCH", |
| 3478 | [RES_CASE_BODY] = "CASE_BODY", |
| 3479 | [RES_ESAC ] = "ESAC" , |
| 3480 | # endif |
| 3481 | [RES_XXXX ] = "XXXX" , |
| 3482 | [RES_SNTX ] = "SNTX" , |
| 3483 | }; |
| 3484 | static const char *const CMDTYPE[] = { |
| 3485 | "{}", |
| 3486 | "()", |
| 3487 | "[noglob]", |
| 3488 | # if ENABLE_HUSH_FUNCTIONS |
| 3489 | "func()", |
| 3490 | # endif |
| 3491 | }; |
| 3492 | |
| 3493 | int pin, prn; |
| 3494 | |
| 3495 | pin = 0; |
| 3496 | while (pi) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3497 | fdprintf(2, "%*spipe %d %sres_word=%s followup=%d %s\n", |
| 3498 | lvl*2, "", |
| 3499 | pin, |
| 3500 | (IF_HAS_KEYWORDS(pi->pi_inverted ? "! " :) ""), |
| 3501 | RES[pi->res_word], |
| 3502 | pi->followup, PIPE[pi->followup] |
| 3503 | ); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3504 | prn = 0; |
| 3505 | while (prn < pi->num_cmds) { |
| 3506 | struct command *command = &pi->cmds[prn]; |
| 3507 | char **argv = command->argv; |
| 3508 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3509 | fdprintf(2, "%*s cmd %d assignment_cnt:%d", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3510 | lvl*2, "", prn, |
| 3511 | command->assignment_cnt); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3512 | #if ENABLE_HUSH_LINENO_VAR |
| 3513 | fdprintf(2, " LINENO:%u", command->lineno); |
| 3514 | #endif |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3515 | if (command->group) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3516 | fdprintf(2, " group %s: (argv=%p)%s%s\n", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3517 | CMDTYPE[command->cmd_type], |
| 3518 | argv |
| 3519 | # if !BB_MMU |
| 3520 | , " group_as_string:", command->group_as_string |
| 3521 | # else |
| 3522 | , "", "" |
| 3523 | # endif |
| 3524 | ); |
| 3525 | debug_print_tree(command->group, lvl+1); |
| 3526 | prn++; |
| 3527 | continue; |
| 3528 | } |
| 3529 | if (argv) while (*argv) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3530 | fdprintf(2, " '%s'", *argv); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3531 | argv++; |
| 3532 | } |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3533 | fdprintf(2, "\n"); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3534 | prn++; |
| 3535 | } |
| 3536 | pi = pi->next; |
| 3537 | pin++; |
| 3538 | } |
| 3539 | } |
| 3540 | #endif /* debug_print_tree */ |
| 3541 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3542 | static struct pipe *new_pipe(void) |
| 3543 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3544 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3545 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3546 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3547 | return pi; |
| 3548 | } |
| 3549 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3550 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 3551 | * if ctx->command is NULL. |
| 3552 | * No errors possible here. |
| 3553 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3554 | static int done_command(struct parse_context *ctx) |
| 3555 | { |
| 3556 | /* The command is really already in the pipe structure, so |
| 3557 | * advance the pipe counter and make a new, null command. */ |
| 3558 | struct pipe *pi = ctx->pipe; |
| 3559 | struct command *command = ctx->command; |
| 3560 | |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3561 | #if 0 /* Instead we emit error message at run time */ |
| 3562 | if (ctx->pending_redirect) { |
| 3563 | /* For example, "cmd >" (no filename to redirect to) */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 3564 | syntax_error("invalid redirect"); |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3565 | ctx->pending_redirect = NULL; |
| 3566 | } |
| 3567 | #endif |
| 3568 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3569 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3570 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3571 | 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] | 3572 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3573 | } |
| 3574 | pi->num_cmds++; |
| 3575 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3576 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3577 | } else { |
| 3578 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3579 | } |
| 3580 | |
| 3581 | /* Only real trickiness here is that the uncommitted |
| 3582 | * command structure is not counted in pi->num_cmds. */ |
| 3583 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3584 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 3585 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3586 | memset(command, 0, sizeof(*command)); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3587 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 3588 | command->lineno = G.lineno; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3589 | debug_printf_parse("command->lineno = G.lineno (%u)\n", G.lineno); |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 3590 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3591 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3592 | } |
| 3593 | |
| 3594 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3595 | { |
| 3596 | int not_null; |
| 3597 | |
| 3598 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3599 | /* Close previous command */ |
| 3600 | not_null = done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3601 | #if HAS_KEYWORDS |
| 3602 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 3603 | ctx->ctx_inverted = 0; |
| 3604 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 3605 | #endif |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3606 | if (type == PIPE_BG && ctx->list_head != ctx->pipe) { |
| 3607 | /* Necessary since && and || have precedence over &: |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3608 | * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2, |
| 3609 | * in a backgrounded subshell. |
| 3610 | */ |
| 3611 | struct pipe *pi; |
| 3612 | struct command *command; |
| 3613 | |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3614 | /* Is this actually this construct, all pipes end with && or ||? */ |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3615 | pi = ctx->list_head; |
| 3616 | while (pi != ctx->pipe) { |
| 3617 | if (pi->followup != PIPE_AND && pi->followup != PIPE_OR) |
| 3618 | goto no_conv; |
| 3619 | pi = pi->next; |
| 3620 | } |
| 3621 | |
| 3622 | debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n"); |
| 3623 | pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */ |
| 3624 | pi = xzalloc(sizeof(*pi)); |
| 3625 | pi->followup = PIPE_BG; |
| 3626 | pi->num_cmds = 1; |
| 3627 | pi->cmds = xzalloc(sizeof(pi->cmds[0])); |
| 3628 | command = &pi->cmds[0]; |
| 3629 | if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */ |
| 3630 | command->cmd_type = CMD_NORMAL; |
| 3631 | command->group = ctx->list_head; |
| 3632 | #if !BB_MMU |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3633 | command->group_as_string = xstrndup( |
| 3634 | ctx->as_string.data, |
| 3635 | ctx->as_string.length - 1 /* do not copy last char, "&" */ |
| 3636 | ); |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3637 | #endif |
| 3638 | /* Replace all pipes in ctx with one newly created */ |
| 3639 | ctx->list_head = ctx->pipe = pi; |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3640 | } else { |
| 3641 | no_conv: |
| 3642 | ctx->pipe->followup = type; |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3643 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3644 | |
| 3645 | /* Without this check, even just <enter> on command line generates |
| 3646 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3647 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3648 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3649 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3650 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3651 | #endif |
| 3652 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3653 | || ctx->ctx_res_w == RES_DONE |
| 3654 | || ctx->ctx_res_w == RES_FOR |
| 3655 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3656 | #endif |
| 3657 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3658 | || ctx->ctx_res_w == RES_ESAC |
| 3659 | #endif |
| 3660 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3661 | struct pipe *new_p; |
| 3662 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3663 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3664 | not_null, ctx->ctx_res_w); |
| 3665 | new_p = new_pipe(); |
| 3666 | ctx->pipe->next = new_p; |
| 3667 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3668 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3669 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3670 | * This is used to control execution. |
| 3671 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3672 | * cases where variable or value happens to match a keyword): |
| 3673 | */ |
| 3674 | #if ENABLE_HUSH_LOOPS |
| 3675 | if (ctx->ctx_res_w == RES_FOR |
| 3676 | || ctx->ctx_res_w == RES_IN) |
| 3677 | ctx->ctx_res_w = RES_NONE; |
| 3678 | #endif |
| 3679 | #if ENABLE_HUSH_CASE |
| 3680 | if (ctx->ctx_res_w == RES_MATCH) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3681 | ctx->ctx_res_w = RES_CASE_BODY; |
| 3682 | if (ctx->ctx_res_w == RES_CASE) |
| 3683 | ctx->ctx_res_w = RES_CASE_IN; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3684 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3685 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3686 | /* Create the memory for command, roughly: |
| 3687 | * ctx->pipe->cmds = new struct command; |
| 3688 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3689 | */ |
| 3690 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3691 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3692 | } |
| 3693 | debug_printf_parse("done_pipe return\n"); |
| 3694 | } |
| 3695 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3696 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3697 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3698 | memset(ctx, 0, sizeof(*ctx)); |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3699 | if (MAYBE_ASSIGNMENT != 0) |
| 3700 | ctx->is_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3701 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3702 | /* Create the memory for command, roughly: |
| 3703 | * ctx->pipe->cmds = new struct command; |
| 3704 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3705 | */ |
| 3706 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3707 | } |
| 3708 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3709 | /* If a reserved word is found and processed, parse context is modified |
| 3710 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3711 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3712 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3713 | struct reserved_combo { |
| 3714 | char literal[6]; |
| 3715 | unsigned char res; |
| 3716 | unsigned char assignment_flag; |
| 3717 | int flag; |
| 3718 | }; |
| 3719 | enum { |
| 3720 | FLAG_END = (1 << RES_NONE ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3721 | # if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3722 | FLAG_IF = (1 << RES_IF ), |
| 3723 | FLAG_THEN = (1 << RES_THEN ), |
| 3724 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3725 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3726 | FLAG_FI = (1 << RES_FI ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3727 | # endif |
| 3728 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3729 | FLAG_FOR = (1 << RES_FOR ), |
| 3730 | FLAG_WHILE = (1 << RES_WHILE), |
| 3731 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3732 | FLAG_DO = (1 << RES_DO ), |
| 3733 | FLAG_DONE = (1 << RES_DONE ), |
| 3734 | FLAG_IN = (1 << RES_IN ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3735 | # endif |
| 3736 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3737 | FLAG_MATCH = (1 << RES_MATCH), |
| 3738 | FLAG_ESAC = (1 << RES_ESAC ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3739 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3740 | FLAG_START = (1 << RES_XXXX ), |
| 3741 | }; |
| 3742 | |
| 3743 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3744 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3745 | /* Mostly a list of accepted follow-up reserved words. |
| 3746 | * FLAG_END means we are done with the sequence, and are ready |
| 3747 | * to turn the compound list into a command. |
| 3748 | * FLAG_START means the word must start a new compound list. |
| 3749 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3750 | static const struct reserved_combo reserved_list[] = { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3751 | # if ENABLE_HUSH_IF |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3752 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3753 | { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START }, |
| 3754 | { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3755 | { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN }, |
| 3756 | { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI }, |
| 3757 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3758 | # endif |
| 3759 | # if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3760 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3761 | { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3762 | { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3763 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3764 | { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE }, |
| 3765 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3766 | # endif |
| 3767 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3768 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3769 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3770 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3771 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3772 | const struct reserved_combo *r; |
| 3773 | |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 3774 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3775 | if (strcmp(word->data, r->literal) == 0) |
| 3776 | return r; |
| 3777 | } |
| 3778 | return NULL; |
| 3779 | } |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3780 | /* Return NULL: not a keyword, else: keyword |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3781 | */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3782 | static const struct reserved_combo* reserved_word(struct parse_context *ctx) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3783 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3784 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3785 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3786 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3787 | }; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3788 | # endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3789 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3790 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3791 | if (ctx->word.has_quoted_part) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3792 | return 0; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3793 | r = match_reserved_word(&ctx->word); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3794 | if (!r) |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3795 | return r; /* NULL */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3796 | |
| 3797 | 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] | 3798 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3799 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) { |
| 3800 | /* "case word IN ..." - IN part starts first MATCH part */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3801 | r = &reserved_match; |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3802 | } else |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3803 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3804 | if (r->flag == 0) { /* '!' */ |
| 3805 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3806 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3807 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3808 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3809 | ctx->ctx_inverted = 1; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3810 | return r; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3811 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3812 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3813 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3814 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 3815 | old = xmemdup(ctx, sizeof(*ctx)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3816 | debug_printf_parse("push stack %p\n", old); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3817 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3818 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3819 | } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3820 | syntax_error_at(ctx->word.data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3821 | ctx->ctx_res_w = RES_SNTX; |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3822 | return r; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3823 | } else { |
| 3824 | /* "{...} fi" is ok. "{...} if" is not |
| 3825 | * Example: |
| 3826 | * if { echo foo; } then { echo bar; } fi */ |
| 3827 | if (ctx->command->group) |
| 3828 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3829 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3830 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3831 | ctx->ctx_res_w = r->res; |
| 3832 | ctx->old_flag = r->flag; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3833 | ctx->is_assignment = r->assignment_flag; |
| 3834 | debug_printf_parse("ctx->is_assignment='%s'\n", assignment_flag[ctx->is_assignment]); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3835 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3836 | if (ctx->old_flag & FLAG_END) { |
| 3837 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3838 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3839 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3840 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3841 | old = ctx->stack; |
| 3842 | old->command->group = ctx->list_head; |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3843 | old->command->cmd_type = CMD_NORMAL; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3844 | # if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 3845 | /* At this point, the compound command's string is in |
| 3846 | * ctx->as_string... except for the leading keyword! |
| 3847 | * Consider this example: "echo a | if true; then echo a; fi" |
| 3848 | * ctx->as_string will contain "true; then echo a; fi", |
| 3849 | * with "if " remaining in old->as_string! |
| 3850 | */ |
| 3851 | { |
| 3852 | char *str; |
| 3853 | int len = old->as_string.length; |
| 3854 | /* Concatenate halves */ |
| 3855 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3856 | o_free_unsafe(&ctx->as_string); |
| 3857 | /* Find where leading keyword starts in first half */ |
| 3858 | str = old->as_string.data + len; |
| 3859 | if (str > old->as_string.data) |
| 3860 | str--; /* skip whitespace after keyword */ |
| 3861 | while (str > old->as_string.data && isalpha(str[-1])) |
| 3862 | str--; |
| 3863 | /* Ugh, we're done with this horrid hack */ |
| 3864 | old->command->group_as_string = xstrdup(str); |
| 3865 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3866 | old->command->group_as_string); |
| 3867 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3868 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3869 | *ctx = *old; /* physical copy */ |
| 3870 | free(old); |
| 3871 | } |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3872 | return r; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3873 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3874 | #endif /* HAS_KEYWORDS */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3875 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3876 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3877 | * Normal return is 0. Syntax errors return 1. |
| 3878 | * Note: on return, word is reset, but not o_free'd! |
| 3879 | */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3880 | static int done_word(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3881 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3882 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3883 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3884 | debug_printf_parse("done_word entered: '%s' %p\n", ctx->word.data, command); |
| 3885 | if (ctx->word.length == 0 && !ctx->word.has_quoted_part) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3886 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3887 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3888 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3889 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3890 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3891 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3892 | * only if run as "bash", not "sh" */ |
Denys Vlasenko | e84212f | 2018-04-01 20:11:23 +0200 | [diff] [blame] | 3893 | /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3894 | * "2.7 Redirection |
Denys Vlasenko | e84212f | 2018-04-01 20:11:23 +0200 | [diff] [blame] | 3895 | * If the redirection operator is "<<" or "<<-", the word |
| 3896 | * that follows the redirection operator shall be |
| 3897 | * subjected to quote removal; it is unspecified whether |
| 3898 | * any of the other expansions occur. For the other |
| 3899 | * redirection operators, the word that follows the |
| 3900 | * redirection operator shall be subjected to tilde |
| 3901 | * expansion, parameter expansion, command substitution, |
| 3902 | * arithmetic expansion, and quote removal. |
| 3903 | * Pathname expansion shall not be performed |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3904 | * on the word by a non-interactive shell; an interactive |
| 3905 | * shell may perform it, but shall do so only when |
| 3906 | * the expansion would result in one word." |
| 3907 | */ |
Denys Vlasenko | bb6f573 | 2018-04-01 18:55:00 +0200 | [diff] [blame] | 3908 | //bash does not do parameter/command substitution or arithmetic expansion |
| 3909 | //for _heredoc_ redirection word: these constructs look for exact eof marker |
| 3910 | // as written: |
| 3911 | // <<EOF$t |
| 3912 | // <<EOF$((1)) |
Denys Vlasenko | e84212f | 2018-04-01 20:11:23 +0200 | [diff] [blame] | 3913 | // <<EOF`true` [this case also makes heredoc "quoted", a-la <<"EOF". Probably bash-4.3.43 bug] |
| 3914 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3915 | ctx->pending_redirect->rd_filename = xstrdup(ctx->word.data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3916 | /* Cater for >\file case: |
| 3917 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 3918 | * Same with heredocs: |
| 3919 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 3920 | */ |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3921 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) { |
| 3922 | unbackslash(ctx->pending_redirect->rd_filename); |
| 3923 | /* Is it <<"HEREDOC"? */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3924 | if (ctx->word.has_quoted_part) { |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3925 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 3926 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3927 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3928 | debug_printf_parse("word stored in rd_filename: '%s'\n", ctx->word.data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3929 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3930 | } else { |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3931 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3932 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3933 | if (ctx->ctx_dsemicolon |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3934 | && strcmp(ctx->word.data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3935 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3936 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3937 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3938 | ctx->ctx_dsemicolon = 0; |
| 3939 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3940 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3941 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3942 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3943 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3944 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3945 | # endif |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3946 | # if ENABLE_HUSH_CASE |
| 3947 | && ctx->ctx_res_w != RES_CASE |
| 3948 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3949 | ) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3950 | const struct reserved_combo *reserved; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3951 | reserved = reserved_word(ctx); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3952 | debug_printf_parse("checking for reserved-ness: %d\n", !!reserved); |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3953 | if (reserved) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 3954 | # if ENABLE_HUSH_LINENO_VAR |
| 3955 | /* Case: |
| 3956 | * "while ...; do |
| 3957 | * cmd ..." |
| 3958 | * If we don't close the pipe _now_, immediately after "do", lineno logic |
| 3959 | * sees "cmd" as starting at "do" - i.e., at the previous line. |
| 3960 | */ |
| 3961 | if (0 |
| 3962 | IF_HUSH_IF(|| reserved->res == RES_THEN) |
| 3963 | IF_HUSH_IF(|| reserved->res == RES_ELIF) |
| 3964 | IF_HUSH_IF(|| reserved->res == RES_ELSE) |
| 3965 | IF_HUSH_LOOPS(|| reserved->res == RES_DO) |
| 3966 | ) { |
| 3967 | done_pipe(ctx, PIPE_SEQ); |
| 3968 | } |
| 3969 | # endif |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3970 | o_reset_to_empty_unquoted(&ctx->word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3971 | debug_printf_parse("done_word return %d\n", |
| 3972 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3973 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3974 | } |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 3975 | # if defined(CMD_SINGLEWORD_NOGLOB) |
| 3976 | if (0 |
| 3977 | # if BASH_TEST2 |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3978 | || strcmp(ctx->word.data, "[[") == 0 |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 3979 | # endif |
| 3980 | /* In bash, local/export/readonly are special, args |
| 3981 | * are assignments and therefore expansion of them |
| 3982 | * should be "one-word" expansion: |
| 3983 | * $ export i=`echo 'a b'` # one arg: "i=a b" |
| 3984 | * compare with: |
| 3985 | * $ ls i=`echo 'a b'` # two args: "i=a" and "b" |
| 3986 | * ls: cannot access i=a: No such file or directory |
| 3987 | * ls: cannot access b: No such file or directory |
| 3988 | * Note: bash 3.2.33(1) does this only if export word |
| 3989 | * itself is not quoted: |
| 3990 | * $ export i=`echo 'aaa bbb'`; echo "$i" |
| 3991 | * aaa bbb |
| 3992 | * $ "export" i=`echo 'aaa bbb'`; echo "$i" |
| 3993 | * aaa |
| 3994 | */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 3995 | IF_HUSH_LOCAL( || strcmp(ctx->word.data, "local") == 0) |
| 3996 | IF_HUSH_EXPORT( || strcmp(ctx->word.data, "export") == 0) |
| 3997 | IF_HUSH_READONLY(|| strcmp(ctx->word.data, "readonly") == 0) |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 3998 | ) { |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3999 | command->cmd_type = CMD_SINGLEWORD_NOGLOB; |
| 4000 | } |
| 4001 | /* fall through */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 4002 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4003 | } |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 4004 | #endif /* HAS_KEYWORDS */ |
| 4005 | |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4006 | if (command->group) { |
| 4007 | /* "{ echo foo; } echo bar" - bad */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4008 | syntax_error_at(ctx->word.data); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4009 | debug_printf_parse("done_word return 1: syntax error, " |
| 4010 | "groups and arglists don't mix\n"); |
| 4011 | return 1; |
| 4012 | } |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4013 | |
| 4014 | /* If this word wasn't an assignment, next ones definitely |
| 4015 | * can't be assignments. Even if they look like ones. */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4016 | if (ctx->is_assignment != DEFINITELY_ASSIGNMENT |
| 4017 | && ctx->is_assignment != WORD_IS_KEYWORD |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4018 | ) { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4019 | ctx->is_assignment = NOT_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4020 | } else { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4021 | if (ctx->is_assignment == DEFINITELY_ASSIGNMENT) { |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4022 | command->assignment_cnt++; |
| 4023 | debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt); |
| 4024 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4025 | debug_printf_parse("ctx->is_assignment was:'%s'\n", assignment_flag[ctx->is_assignment]); |
| 4026 | ctx->is_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4027 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4028 | debug_printf_parse("ctx->is_assignment='%s'\n", assignment_flag[ctx->is_assignment]); |
| 4029 | command->argv = add_string_to_strings(command->argv, xstrdup(ctx->word.data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4030 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4031 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4032 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4033 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4034 | if (ctx->ctx_res_w == RES_FOR) { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4035 | if (ctx->word.has_quoted_part |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4036 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 4037 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4038 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4039 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4040 | return 1; |
| 4041 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4042 | /* Force FOR to have just one word (variable name) */ |
| 4043 | /* NB: basically, this makes hush see "for v in ..." |
| 4044 | * syntax as if it is "for v; in ...". FOR and IN become |
| 4045 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4046 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 4047 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 4048 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4049 | #if ENABLE_HUSH_CASE |
| 4050 | /* Force CASE to have just one word */ |
| 4051 | if (ctx->ctx_res_w == RES_CASE) { |
| 4052 | done_pipe(ctx, PIPE_SEQ); |
| 4053 | } |
| 4054 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4055 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4056 | o_reset_to_empty_unquoted(&ctx->word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 4057 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4058 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4059 | return 0; |
| 4060 | } |
| 4061 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4062 | |
| 4063 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 4064 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4065 | * Return: |
| 4066 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 4067 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 4068 | * REDIRFD_TO_FILE if no & was seen, |
| 4069 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4070 | */ |
| 4071 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4072 | #define parse_redir_right_fd(as_string, input) \ |
| 4073 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4074 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4075 | 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] | 4076 | { |
| 4077 | int ch, d, ok; |
| 4078 | |
| 4079 | ch = i_peek(input); |
| 4080 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4081 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4082 | |
| 4083 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4084 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4085 | ch = i_peek(input); |
| 4086 | if (ch == '-') { |
| 4087 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4088 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4089 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4090 | } |
| 4091 | d = 0; |
| 4092 | ok = 0; |
| 4093 | while (ch != EOF && isdigit(ch)) { |
| 4094 | d = d*10 + (ch-'0'); |
| 4095 | ok = 1; |
| 4096 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4097 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4098 | ch = i_peek(input); |
| 4099 | } |
| 4100 | if (ok) return d; |
| 4101 | |
| 4102 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 4103 | |
| 4104 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4105 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4106 | } |
| 4107 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4108 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4109 | */ |
| 4110 | static int parse_redirect(struct parse_context *ctx, |
| 4111 | int fd, |
| 4112 | redir_type style, |
| 4113 | struct in_str *input) |
| 4114 | { |
| 4115 | struct command *command = ctx->command; |
| 4116 | struct redir_struct *redir; |
| 4117 | struct redir_struct **redirp; |
| 4118 | int dup_num; |
| 4119 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4120 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4121 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4122 | /* Check for a '>&1' type redirect */ |
| 4123 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 4124 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 4125 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4126 | } else { |
Denys Vlasenko | a94eeb0 | 2018-03-31 20:16:31 +0200 | [diff] [blame] | 4127 | int ch = i_peek_and_eat_bkslash_nl(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4128 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4129 | if (dup_num) { /* <<-... */ |
| 4130 | ch = i_getch(input); |
| 4131 | nommu_addchr(&ctx->as_string, ch); |
| 4132 | ch = i_peek(input); |
| 4133 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4134 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4135 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4136 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denys Vlasenko | a94eeb0 | 2018-03-31 20:16:31 +0200 | [diff] [blame] | 4137 | int ch = i_peek_and_eat_bkslash_nl(input); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4138 | if (ch == '|') { |
| 4139 | /* >|FILE redirect ("clobbering" >). |
| 4140 | * Since we do not support "set -o noclobber" yet, |
| 4141 | * >| and > are the same for now. Just eat |. |
| 4142 | */ |
| 4143 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4144 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4145 | } |
| 4146 | } |
| 4147 | |
| 4148 | /* Create a new redir_struct and append it to the linked list */ |
| 4149 | redirp = &command->redirects; |
| 4150 | while ((redir = *redirp) != NULL) { |
| 4151 | redirp = &(redir->next); |
| 4152 | } |
| 4153 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4154 | /* redir->next = NULL; */ |
| 4155 | /* redir->rd_filename = NULL; */ |
| 4156 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4157 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4158 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4159 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 4160 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4161 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4162 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 4163 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4164 | /* Erik had a check here that the file descriptor in question |
| 4165 | * is legit; I postpone that to "run time" |
| 4166 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 4167 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 4168 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4169 | } else { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 4170 | #if 0 /* Instead we emit error message at run time */ |
| 4171 | if (ctx->pending_redirect) { |
| 4172 | /* For example, "cmd > <file" */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 4173 | syntax_error("invalid redirect"); |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 4174 | } |
| 4175 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4176 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4177 | * end of the next parsed word. */ |
| 4178 | ctx->pending_redirect = redir; |
| 4179 | } |
| 4180 | return 0; |
| 4181 | } |
| 4182 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4183 | /* If a redirect is immediately preceded by a number, that number is |
| 4184 | * supposed to tell which file descriptor to redirect. This routine |
| 4185 | * looks for such preceding numbers. In an ideal world this routine |
| 4186 | * needs to handle all the following classes of redirects... |
| 4187 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4188 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4189 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4190 | * 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] | 4191 | * |
| 4192 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4193 | * "2.7 Redirection |
| 4194 | * ... If n is quoted, the number shall not be recognized as part of |
| 4195 | * the redirection expression. For example: |
| 4196 | * echo \2>a |
| 4197 | * writes the character 2 into file a" |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4198 | * 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] | 4199 | * |
| 4200 | * A -1 return means no valid number was found, |
| 4201 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4202 | */ |
| 4203 | static int redirect_opt_num(o_string *o) |
| 4204 | { |
| 4205 | int num; |
| 4206 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4207 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4208 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4209 | num = bb_strtou(o->data, NULL, 10); |
| 4210 | if (errno || num < 0) |
| 4211 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4212 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4213 | return num; |
| 4214 | } |
| 4215 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4216 | #if BB_MMU |
| 4217 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4218 | fetch_till_str(input, word, skip_tabs) |
| 4219 | #endif |
| 4220 | static char *fetch_till_str(o_string *as_string, |
| 4221 | struct in_str *input, |
| 4222 | const char *word, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4223 | int heredoc_flags) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4224 | { |
| 4225 | o_string heredoc = NULL_O_STRING; |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4226 | unsigned past_EOL; |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4227 | int prev = 0; /* not \ */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4228 | int ch; |
| 4229 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4230 | goto jump_in; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 4231 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4232 | while (1) { |
| 4233 | ch = i_getch(input); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4234 | if (ch != EOF) |
| 4235 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0f018b3 | 2017-07-29 20:43:26 +0200 | [diff] [blame] | 4236 | if (ch == '\n' || ch == EOF) { |
| 4237 | check_heredoc_end: |
| 4238 | if ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\') { |
| 4239 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4240 | heredoc.data[past_EOL] = '\0'; |
| 4241 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4242 | return heredoc.data; |
| 4243 | } |
| 4244 | if (ch == '\n') { |
| 4245 | /* This is a new line. |
| 4246 | * Remember position and backslash-escaping status. |
| 4247 | */ |
| 4248 | o_addchr(&heredoc, ch); |
| 4249 | prev = ch; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4250 | jump_in: |
Denys Vlasenko | 0f018b3 | 2017-07-29 20:43:26 +0200 | [diff] [blame] | 4251 | past_EOL = heredoc.length; |
| 4252 | /* Get 1st char of next line, possibly skipping leading tabs */ |
| 4253 | do { |
| 4254 | ch = i_getch(input); |
| 4255 | if (ch != EOF) |
| 4256 | nommu_addchr(as_string, ch); |
| 4257 | } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t'); |
| 4258 | /* If this immediately ended the line, |
| 4259 | * go back to end-of-line checks. |
| 4260 | */ |
| 4261 | if (ch == '\n') |
| 4262 | goto check_heredoc_end; |
| 4263 | } |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4264 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4265 | } |
| 4266 | if (ch == EOF) { |
| 4267 | o_free_unsafe(&heredoc); |
| 4268 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4269 | } |
| 4270 | o_addchr(&heredoc, ch); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4271 | nommu_addchr(as_string, ch); |
Denys Vlasenko | c3adfac | 2010-09-06 11:46:03 +0200 | [diff] [blame] | 4272 | if (prev == '\\' && ch == '\\') |
| 4273 | /* Correctly handle foo\\<eol> (not a line cont.) */ |
| 4274 | prev = 0; /* not \ */ |
| 4275 | else |
| 4276 | prev = ch; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4277 | } |
| 4278 | } |
| 4279 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4280 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4281 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4282 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4283 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4284 | { |
| 4285 | struct pipe *pi = ctx->list_head; |
| 4286 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4287 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4288 | int i; |
| 4289 | struct command *cmd = pi->cmds; |
| 4290 | |
| 4291 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4292 | pi->num_cmds, |
| 4293 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4294 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4295 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4296 | |
| 4297 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4298 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4299 | while (redir) { |
| 4300 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4301 | char *p; |
| 4302 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4303 | redir->rd_type = REDIRECT_HEREDOC2; |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 4304 | /* redir->rd_dup is (ab)used to indicate <<- */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4305 | p = fetch_till_str(&ctx->as_string, input, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4306 | redir->rd_filename, redir->rd_dup); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4307 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4308 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4309 | return 1; |
| 4310 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4311 | free(redir->rd_filename); |
| 4312 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4313 | heredoc_cnt--; |
| 4314 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4315 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4316 | } |
| 4317 | cmd++; |
| 4318 | } |
| 4319 | pi = pi->next; |
| 4320 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4321 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4322 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4323 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4324 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4325 | #endif |
| 4326 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4327 | } |
| 4328 | |
| 4329 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 4330 | static int run_list(struct pipe *pi); |
| 4331 | #if BB_MMU |
| 4332 | #define parse_stream(pstring, input, end_trigger) \ |
| 4333 | parse_stream(input, end_trigger) |
| 4334 | #endif |
| 4335 | static struct pipe *parse_stream(char **pstring, |
| 4336 | struct in_str *input, |
| 4337 | int end_trigger); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4338 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4339 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4340 | static int parse_group(struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4341 | struct in_str *input, int ch) |
| 4342 | { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4343 | /* ctx->word contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4344 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4345 | * it contains function name (without '()'). */ |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4346 | #if BB_MMU |
| 4347 | # define as_string NULL |
| 4348 | #else |
| 4349 | char *as_string = NULL; |
| 4350 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4351 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4352 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4353 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4354 | |
| 4355 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4356 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4357 | if (ch == '(' && !ctx->word.has_quoted_part) { |
| 4358 | if (ctx->word.length) |
| 4359 | if (done_word(ctx)) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4360 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4361 | if (!command->argv) |
| 4362 | goto skip; /* (... */ |
| 4363 | if (command->argv[1]) { /* word word ... (... */ |
| 4364 | syntax_error_unexpected_ch('('); |
| 4365 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4366 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4367 | /* it is "word(..." or "word (..." */ |
| 4368 | do |
| 4369 | ch = i_getch(input); |
| 4370 | while (ch == ' ' || ch == '\t'); |
| 4371 | if (ch != ')') { |
| 4372 | syntax_error_unexpected_ch(ch); |
| 4373 | return 1; |
| 4374 | } |
| 4375 | nommu_addchr(&ctx->as_string, ch); |
| 4376 | do |
| 4377 | ch = i_getch(input); |
| 4378 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4379 | if (ch != '{' && ch != '(') { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4380 | syntax_error_unexpected_ch(ch); |
| 4381 | return 1; |
| 4382 | } |
| 4383 | nommu_addchr(&ctx->as_string, ch); |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 4384 | command->cmd_type = CMD_FUNCDEF; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4385 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4386 | } |
| 4387 | #endif |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4388 | |
| 4389 | #if 0 /* Prevented by caller */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4390 | if (command->argv /* word [word]{... */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 4391 | || ctx->word.length /* word{... */ |
| 4392 | || ctx->word.has_quoted_part /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4393 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4394 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4395 | debug_printf_parse("parse_group return 1: " |
| 4396 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4397 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4398 | } |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4399 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4400 | |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4401 | IF_HUSH_FUNCTIONS(skip:) |
| 4402 | |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4403 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4404 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4405 | endch = ')'; |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4406 | IF_HUSH_FUNCTIONS(if (command->cmd_type != CMD_FUNCDEF)) |
| 4407 | command->cmd_type = CMD_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4408 | } else { |
| 4409 | /* bash does not allow "{echo...", requires whitespace */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4410 | ch = i_peek(input); |
| 4411 | if (ch != ' ' && ch != '\t' && ch != '\n' |
| 4412 | && ch != '(' /* but "{(..." is allowed (without whitespace) */ |
| 4413 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4414 | syntax_error_unexpected_ch(ch); |
| 4415 | return 1; |
| 4416 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4417 | if (ch != '(') { |
| 4418 | ch = i_getch(input); |
| 4419 | nommu_addchr(&ctx->as_string, ch); |
| 4420 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4421 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4422 | |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4423 | pipe_list = parse_stream(&as_string, input, endch); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4424 | #if !BB_MMU |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4425 | if (as_string) |
| 4426 | o_addstr(&ctx->as_string, as_string); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4427 | #endif |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4428 | |
| 4429 | /* empty ()/{} or parse error? */ |
| 4430 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 4431 | /* parse_stream already emitted error msg */ |
| 4432 | if (!BB_MMU) |
| 4433 | free(as_string); |
| 4434 | debug_printf_parse("parse_group return 1: " |
| 4435 | "parse_stream returned %p\n", pipe_list); |
| 4436 | return 1; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4437 | } |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4438 | #if !BB_MMU |
| 4439 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4440 | command->group_as_string = as_string; |
| 4441 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4442 | command->group_as_string); |
| 4443 | #endif |
| 4444 | |
| 4445 | #if ENABLE_HUSH_FUNCTIONS |
| 4446 | /* Convert "f() (cmds)" to "f() {(cmds)}" */ |
| 4447 | if (command->cmd_type == CMD_FUNCDEF && endch == ')') { |
| 4448 | struct command *cmd2; |
| 4449 | |
| 4450 | cmd2 = xzalloc(sizeof(*cmd2)); |
| 4451 | cmd2->cmd_type = CMD_SUBSHELL; |
| 4452 | cmd2->group = pipe_list; |
| 4453 | # if !BB_MMU |
| 4454 | //UNTESTED! |
| 4455 | cmd2->group_as_string = command->group_as_string; |
| 4456 | command->group_as_string = xasprintf("(%s)", command->group_as_string); |
| 4457 | # endif |
| 4458 | |
| 4459 | pipe_list = new_pipe(); |
| 4460 | pipe_list->cmds = cmd2; |
| 4461 | pipe_list->num_cmds = 1; |
| 4462 | } |
| 4463 | #endif |
| 4464 | |
| 4465 | command->group = pipe_list; |
| 4466 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4467 | debug_printf_parse("parse_group return 0\n"); |
| 4468 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4469 | /* command remains "open", available for possible redirects */ |
Denys Vlasenko | fbf4485 | 2018-04-03 14:56:52 +0200 | [diff] [blame] | 4470 | #undef as_string |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4471 | } |
| 4472 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4473 | #if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4474 | /* Subroutines for copying $(...) and `...` things */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4475 | 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] | 4476 | /* '...' */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4477 | 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] | 4478 | { |
| 4479 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4480 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4481 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4482 | syntax_error_unterm_ch('\''); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4483 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4484 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4485 | if (ch == '\'') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4486 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4487 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4488 | } |
| 4489 | } |
| 4490 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4491 | 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] | 4492 | { |
| 4493 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4494 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4495 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4496 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4497 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4498 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4499 | if (ch == '"') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4500 | return 1; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4501 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4502 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4503 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4504 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4505 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4506 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4507 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 1)) |
| 4508 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4509 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4510 | continue; |
| 4511 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4512 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4513 | } |
| 4514 | } |
| 4515 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4516 | * \` quoting. |
| 4517 | * "Within the backquoted style of command substitution, backslash |
| 4518 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4519 | * The search for the matching backquote shall be satisfied by the first |
| 4520 | * backquote found without a preceding backslash; during this search, |
| 4521 | * if a non-escaped backquote is encountered within a shell comment, |
| 4522 | * a here-document, an embedded command substitution of the $(command) |
| 4523 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4524 | * or double-quoted string that begins, but does not end, within the |
| 4525 | * "`...`" sequence produces undefined results." |
| 4526 | * Example Output |
| 4527 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4528 | */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4529 | 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] | 4530 | { |
| 4531 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4532 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4533 | if (ch == '`') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4534 | return 1; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4535 | if (ch == '\\') { |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4536 | /* \x. Copy both unless it is \`, \$, \\ and maybe \" */ |
| 4537 | ch = i_getch(input); |
| 4538 | if (ch != '`' |
| 4539 | && ch != '$' |
| 4540 | && ch != '\\' |
| 4541 | && (!in_dquote || ch != '"') |
| 4542 | ) { |
| 4543 | o_addchr(dest, '\\'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4544 | } |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4545 | } |
| 4546 | if (ch == EOF) { |
| 4547 | syntax_error_unterm_ch('`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4548 | return 0; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4549 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4550 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4551 | } |
| 4552 | } |
| 4553 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4554 | * quoting and nested ()s. |
| 4555 | * "With the $(command) style of command substitution, all characters |
| 4556 | * following the open parenthesis to the matching closing parenthesis |
| 4557 | * constitute the command. Any valid shell script can be used for command, |
| 4558 | * except a script consisting solely of redirections which produces |
| 4559 | * unspecified results." |
| 4560 | * Example Output |
| 4561 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4562 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4563 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4564 | * |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4565 | * Also adapted to eat ${var%...} and $((...)) constructs, since ... part |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4566 | * can contain arbitrary constructs, just like $(cmd). |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4567 | * In bash compat mode, it needs to also be able to stop on ':' or '/' |
| 4568 | * for ${var:N[:M]} and ${var/P[/R]} parsing. |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4569 | */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4570 | #define DOUBLE_CLOSE_CHAR_FLAG 0x80 |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4571 | 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] | 4572 | { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4573 | int ch; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4574 | char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4575 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4576 | char end_char2 = end_ch >> 8; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4577 | # endif |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4578 | end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1); |
| 4579 | |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 4580 | G.promptmode = 1; /* PS2 */ |
| 4581 | debug_printf_prompt("%s promptmode=%d\n", __func__, G.promptmode); |
| 4582 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4583 | while (1) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4584 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4585 | if (ch == EOF) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4586 | syntax_error_unterm_ch(end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4587 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4588 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4589 | if (ch == end_ch |
| 4590 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 4591 | || ch == end_char2 |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4592 | # endif |
| 4593 | ) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4594 | if (!dbl) |
| 4595 | break; |
| 4596 | /* we look for closing )) of $((EXPR)) */ |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4597 | if (i_peek_and_eat_bkslash_nl(input) == end_ch) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4598 | i_getch(input); /* eat second ')' */ |
| 4599 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4600 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4601 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4602 | o_addchr(dest, ch); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4603 | //bb_error_msg("%s:o_addchr('%c')", __func__, ch); |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4604 | if (ch == '(' || ch == '{') { |
| 4605 | ch = (ch == '(' ? ')' : '}'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4606 | if (!add_till_closing_bracket(dest, input, ch)) |
| 4607 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4608 | o_addchr(dest, ch); |
| 4609 | continue; |
| 4610 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4611 | if (ch == '\'') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4612 | if (!add_till_single_quote(dest, input)) |
| 4613 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4614 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4615 | continue; |
| 4616 | } |
| 4617 | if (ch == '"') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4618 | if (!add_till_double_quote(dest, input)) |
| 4619 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4620 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4621 | continue; |
| 4622 | } |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4623 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4624 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 0)) |
| 4625 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4626 | o_addchr(dest, ch); |
| 4627 | continue; |
| 4628 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4629 | if (ch == '\\') { |
| 4630 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4631 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4632 | if (ch == EOF) { |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4633 | syntax_error_unterm_ch(end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4634 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4635 | } |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4636 | #if 0 |
| 4637 | if (ch == '\n') { |
| 4638 | /* "backslash+newline", ignore both */ |
| 4639 | o_delchr(dest); /* undo insertion of '\' */ |
| 4640 | continue; |
| 4641 | } |
| 4642 | #endif |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4643 | o_addchr(dest, ch); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 4644 | //bb_error_msg("%s:o_addchr('%c') after '\\'", __func__, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4645 | continue; |
| 4646 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4647 | } |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 4648 | debug_printf_parse("%s return '%s' ch:'%c'\n", __func__, dest->data, ch); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4649 | return ch; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4650 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4651 | #endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4652 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4653 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4654 | #if BB_MMU |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4655 | #define parse_dollar(as_string, dest, input, quote_mask) \ |
| 4656 | parse_dollar(dest, input, quote_mask) |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4657 | #define as_string NULL |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4658 | #endif |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4659 | static int parse_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4660 | o_string *dest, |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4661 | struct in_str *input, unsigned char quote_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4662 | { |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4663 | 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] | 4664 | |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4665 | debug_printf_parse("parse_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4666 | if (isalpha(ch)) { |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4667 | make_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4668 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4669 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4670 | /*make_var1:*/ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4671 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4672 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4673 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4674 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4675 | quote_mask = 0; |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4676 | ch = i_peek_and_eat_bkslash_nl(input); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4677 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4678 | /* End of variable name reached */ |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4679 | break; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4680 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4681 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4682 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4683 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4684 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4685 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4686 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4687 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4688 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4689 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4690 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4691 | o_addchr(dest, ch | quote_mask); |
| 4692 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4693 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4694 | case '$': /* pid */ |
| 4695 | case '!': /* last bg pid */ |
| 4696 | case '?': /* last exit code */ |
| 4697 | case '#': /* number of args */ |
| 4698 | case '*': /* args */ |
| 4699 | case '@': /* args */ |
| 4700 | goto make_one_char_var; |
| 4701 | case '{': { |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4702 | char len_single_ch; |
| 4703 | |
Mike Frysinger | ef3e7fd | 2009-06-01 14:13:39 -0400 | [diff] [blame] | 4704 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4705 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4706 | ch = i_getch(input); /* eat '{' */ |
| 4707 | nommu_addchr(as_string, ch); |
| 4708 | |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 4709 | ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4710 | /* It should be ${?}, or ${#var}, |
| 4711 | * or even ${?+subst} - operator acting on a special variable, |
| 4712 | * or the beginning of variable name. |
| 4713 | */ |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4714 | if (ch == EOF |
| 4715 | || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */ |
| 4716 | ) { |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4717 | bad_dollar_syntax: |
| 4718 | syntax_error_unterm_str("${name}"); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4719 | debug_printf_parse("parse_dollar return 0: unterminated ${name}\n"); |
| 4720 | return 0; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4721 | } |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4722 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4723 | len_single_ch = ch; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4724 | ch |= quote_mask; |
| 4725 | |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4726 | /* 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] | 4727 | * However, this regresses some of our testsuite cases |
| 4728 | * which check invalid constructs like ${%}. |
| 4729 | * Oh well... let's check that the var name part is fine... */ |
| 4730 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4731 | while (1) { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4732 | unsigned pos; |
| 4733 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4734 | o_addchr(dest, ch); |
| 4735 | debug_printf_parse(": '%c'\n", ch); |
| 4736 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4737 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4738 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4739 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4740 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4741 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4742 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4743 | unsigned end_ch; |
| 4744 | unsigned char last_ch; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4745 | /* handle parameter expansions |
| 4746 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4747 | */ |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4748 | if (!strchr(VAR_SUBST_OPS, ch)) { /* ${var<bad_char>... */ |
| 4749 | if (len_single_ch != '#' |
| 4750 | /*|| !strchr(SPECIAL_VARS_STR, ch) - disallow errors like ${#+} ? */ |
| 4751 | || i_peek(input) != '}' |
| 4752 | ) { |
| 4753 | goto bad_dollar_syntax; |
| 4754 | } |
| 4755 | /* else: it's "length of C" ${#C} op, |
| 4756 | * where C is a single char |
| 4757 | * special var name, e.g. ${#!}. |
| 4758 | */ |
| 4759 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4760 | /* Eat everything until closing '}' (or ':') */ |
| 4761 | end_ch = '}'; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4762 | if (BASH_SUBSTR |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4763 | && ch == ':' |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4764 | && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4765 | ) { |
| 4766 | /* It's ${var:N[:M]} thing */ |
| 4767 | end_ch = '}' * 0x100 + ':'; |
| 4768 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4769 | if (BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4770 | && ch == '/' |
| 4771 | ) { |
| 4772 | /* It's ${var/[/]pattern[/repl]} thing */ |
| 4773 | if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */ |
| 4774 | i_getch(input); |
| 4775 | nommu_addchr(as_string, '/'); |
| 4776 | ch = '\\'; |
| 4777 | } |
| 4778 | end_ch = '}' * 0x100 + '/'; |
| 4779 | } |
| 4780 | o_addchr(dest, ch); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4781 | again: |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4782 | if (!BB_MMU) |
| 4783 | pos = dest->length; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4784 | #if ENABLE_HUSH_DOLLAR_OPS |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4785 | last_ch = add_till_closing_bracket(dest, input, end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4786 | if (last_ch == 0) /* error? */ |
| 4787 | return 0; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4788 | #else |
| 4789 | #error Simple code to only allow ${var} is not implemented |
| 4790 | #endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4791 | if (as_string) { |
| 4792 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4793 | o_addchr(as_string, last_ch); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4794 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4795 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4796 | if ((BASH_SUBSTR || BASH_PATTERN_SUBST) |
| 4797 | && (end_ch & 0xff00) |
| 4798 | ) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4799 | /* close the first block: */ |
| 4800 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4801 | /* while parsing N from ${var:N[:M]} |
| 4802 | * or pattern from ${var/[/]pattern[/repl]} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4803 | if ((end_ch & 0xff) == last_ch) { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4804 | /* got ':' or '/'- parse the rest */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4805 | end_ch = '}'; |
| 4806 | goto again; |
| 4807 | } |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4808 | /* got '}' */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4809 | if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4810 | /* it's ${var:N} - emulate :999999999 */ |
| 4811 | o_addstr(dest, "999999999"); |
| 4812 | } /* else: it's ${var/[/]pattern} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4813 | } |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4814 | break; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4815 | } |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 4816 | len_single_ch = 0; /* it can't be ${#C} op */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4817 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4818 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4819 | break; |
| 4820 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4821 | #if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4822 | case '(': { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4823 | unsigned pos; |
| 4824 | |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4825 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4826 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4827 | # if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4828 | if (i_peek_and_eat_bkslash_nl(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4829 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4830 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4831 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4832 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4833 | if (!BB_MMU) |
| 4834 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4835 | if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG)) |
| 4836 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4837 | if (as_string) { |
| 4838 | o_addstr(as_string, dest->data + pos); |
| 4839 | o_addchr(as_string, ')'); |
| 4840 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4841 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4842 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4843 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4844 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4845 | # endif |
| 4846 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4847 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4848 | o_addchr(dest, quote_mask | '`'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4849 | if (!BB_MMU) |
| 4850 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4851 | if (!add_till_closing_bracket(dest, input, ')')) |
| 4852 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4853 | if (as_string) { |
| 4854 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | b70cef7 | 2010-01-12 13:45:45 +0100 | [diff] [blame] | 4855 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4856 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4857 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4858 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4859 | break; |
| 4860 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4861 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4862 | case '_': |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4863 | goto make_var; |
| 4864 | #if 0 |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 4865 | /* TODO: $_ and $-: */ |
| 4866 | /* $_ Shell or shell script name; or last argument of last command |
| 4867 | * (if last command wasn't a pipe; if it was, bash sets $_ to ""); |
| 4868 | * 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] | 4869 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 4870 | ch = i_getch(input); |
| 4871 | nommu_addchr(as_string, ch); |
| 4872 | ch = i_peek_and_eat_bkslash_nl(input); |
| 4873 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4874 | ch = '_'; |
| 4875 | goto make_var1; |
| 4876 | } |
| 4877 | /* else: it's $_ */ |
| 4878 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4879 | default: |
| 4880 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4881 | } |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4882 | debug_printf_parse("parse_dollar return 1 (ok)\n"); |
| 4883 | return 1; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4884 | #undef as_string |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4885 | } |
| 4886 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4887 | #if BB_MMU |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4888 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4889 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4890 | encode_string(dest, input, dquote_end, process_bkslash) |
| 4891 | # else |
| 4892 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 4893 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4894 | encode_string(dest, input, dquote_end) |
| 4895 | # endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4896 | #define as_string NULL |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4897 | |
| 4898 | #else /* !MMU */ |
| 4899 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4900 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4901 | /* all parameters are needed, no macro tricks */ |
| 4902 | # else |
| 4903 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4904 | encode_string(as_string, dest, input, dquote_end) |
| 4905 | # endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4906 | #endif |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4907 | static int encode_string(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4908 | o_string *dest, |
| 4909 | struct in_str *input, |
Denys Vlasenko | 14e289b | 2010-09-10 10:15:18 +0200 | [diff] [blame] | 4910 | int dquote_end, |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4911 | int process_bkslash) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4912 | { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4913 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4914 | const int process_bkslash = 1; |
| 4915 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4916 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4917 | int next; |
| 4918 | |
| 4919 | again: |
| 4920 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4921 | if (ch != EOF) |
| 4922 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4923 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4924 | debug_printf_parse("encode_string return 1 (ok)\n"); |
| 4925 | return 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4926 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4927 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4928 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4929 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4930 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4931 | } |
| 4932 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4933 | if (ch != '\n') { |
| 4934 | next = i_peek(input); |
| 4935 | } |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 4936 | debug_printf_parse("\" ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4937 | ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4938 | if (process_bkslash && ch == '\\') { |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4939 | if (next == EOF) { |
Denys Vlasenko | 4709df0 | 2018-04-10 14:49:01 +0200 | [diff] [blame] | 4940 | /* Testcase: in interactive shell a file with |
| 4941 | * echo "unterminated string\<eof> |
| 4942 | * is sourced. |
| 4943 | */ |
| 4944 | syntax_error_unterm_ch('"'); |
| 4945 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4946 | } |
| 4947 | /* bash: |
| 4948 | * "The backslash retains its special meaning [in "..."] |
| 4949 | * only when followed by one of the following characters: |
| 4950 | * $, `, ", \, or <newline>. A double quote may be quoted |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 4951 | * within double quotes by preceding it with a backslash." |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4952 | * NB: in (unquoted) heredoc, above does not apply to ", |
| 4953 | * therefore we check for it by "next == dquote_end" cond. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4954 | */ |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4955 | if (next == dquote_end || strchr("$`\\\n", next)) { |
Denys Vlasenko | 850b15b | 2010-09-09 12:58:19 +0200 | [diff] [blame] | 4956 | ch = i_getch(input); /* eat next */ |
| 4957 | if (ch == '\n') |
| 4958 | goto again; /* skip \<newline> */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 4959 | } /* else: ch remains == '\\', and we double it below: */ |
| 4960 | 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] | 4961 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4962 | goto again; |
| 4963 | } |
| 4964 | if (ch == '$') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4965 | if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) { |
| 4966 | debug_printf_parse("encode_string return 0: " |
| 4967 | "parse_dollar returned 0 (error)\n"); |
| 4968 | return 0; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4969 | } |
| 4970 | goto again; |
| 4971 | } |
| 4972 | #if ENABLE_HUSH_TICK |
| 4973 | if (ch == '`') { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4974 | //unsigned pos = dest->length; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4975 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4976 | o_addchr(dest, 0x80 | '`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4977 | if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"')) |
| 4978 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4979 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4980 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4981 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4982 | } |
| 4983 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4984 | o_addQchr(dest, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4985 | goto again; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4986 | #undef as_string |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4987 | } |
| 4988 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4989 | /* |
| 4990 | * Scan input until EOF or end_trigger char. |
| 4991 | * Return a list of pipes to execute, or NULL on EOF |
| 4992 | * or if end_trigger character is met. |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 4993 | * On syntax error, exit if shell is not interactive, |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4994 | * reset parsing machinery and start parsing anew, |
| 4995 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4996 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4997 | static struct pipe *parse_stream(char **pstring, |
| 4998 | struct in_str *input, |
| 4999 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5000 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5001 | struct parse_context ctx; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5002 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5003 | |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5004 | /* Single-quote triggers a bypass of the main loop until its mate is |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5005 | * found. When recursing, quote state is passed in via ctx.word.o_expflags. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5006 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5007 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 5008 | end_trigger ? end_trigger : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5009 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5010 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5011 | initialize_context(&ctx); |
| 5012 | |
| 5013 | /* If very first arg is "" or '', ctx.word.data may end up NULL. |
| 5014 | * Preventing this: |
| 5015 | */ |
| 5016 | o_addchr(&ctx.word, '\0'); |
| 5017 | ctx.word.length = 0; |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 5018 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5019 | /* We used to separate words on $IFS here. This was wrong. |
| 5020 | * $IFS is used only for word splitting when $var is expanded, |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5021 | * here we should use blank chars as separators, not $IFS |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5022 | */ |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5023 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5024 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5025 | while (1) { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5026 | const char *is_blank; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5027 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5028 | int ch; |
| 5029 | int next; |
| 5030 | int redir_fd; |
| 5031 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5032 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 5033 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5034 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5035 | ch, ch, !!(ctx.word.o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5036 | if (ch == EOF) { |
| 5037 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5038 | |
| 5039 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5040 | syntax_error_unterm_str("here document"); |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5041 | goto parse_error; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5042 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5043 | if (end_trigger == ')') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5044 | syntax_error_unterm_ch('('); |
| 5045 | goto parse_error; |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5046 | } |
Denys Vlasenko | 4224647 | 2016-11-07 16:22:35 +0100 | [diff] [blame] | 5047 | if (end_trigger == '}') { |
| 5048 | syntax_error_unterm_ch('{'); |
| 5049 | goto parse_error; |
| 5050 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5051 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5052 | if (done_word(&ctx)) { |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 5053 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5054 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5055 | o_free(&ctx.word); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5056 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5057 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5058 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5059 | /* (this makes bare "&" cmd a no-op. |
| 5060 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5061 | if (pi->num_cmds == 0 |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 5062 | IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE) |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5063 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5064 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5065 | pi = NULL; |
| 5066 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5067 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 5068 | debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5069 | if (pstring) |
| 5070 | *pstring = ctx.as_string.data; |
| 5071 | else |
| 5072 | o_free_unsafe(&ctx.as_string); |
| 5073 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5074 | debug_leave(); |
| 5075 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5076 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 5077 | } |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 5078 | |
Denys Vlasenko | 0403bed | 2018-04-11 01:33:54 +0200 | [diff] [blame] | 5079 | /* Handle "'" and "\" first, as they won't play nice with |
| 5080 | * i_peek_and_eat_bkslash_nl() anyway: |
| 5081 | * echo z\\ |
| 5082 | * and |
| 5083 | * echo '\ |
| 5084 | * ' |
| 5085 | * would break. |
| 5086 | */ |
Denys Vlasenko | f693b60 | 2018-04-11 20:00:43 +0200 | [diff] [blame^] | 5087 | if (ch == '\\') { |
| 5088 | ch = i_getch(input); |
| 5089 | if (ch == '\n') |
| 5090 | continue; /* drop \<newline>, get next char */ |
| 5091 | nommu_addchr(&ctx.as_string, '\\'); |
| 5092 | o_addchr(&ctx.word, '\\'); |
| 5093 | if (ch == EOF) { |
| 5094 | /* Testcase: eval 'echo Ok\' */ |
| 5095 | /* bash-4.3.43 was removing backslash, |
| 5096 | * but 4.4.19 retains it, most other shells too |
| 5097 | */ |
| 5098 | continue; /* get next char */ |
| 5099 | } |
| 5100 | /* Example: echo Hello \2>file |
| 5101 | * we need to know that word 2 is quoted |
| 5102 | */ |
| 5103 | ctx.word.has_quoted_part = 1; |
| 5104 | nommu_addchr(&ctx.as_string, ch); |
| 5105 | o_addchr(&ctx.word, ch); |
| 5106 | continue; /* get next char */ |
| 5107 | } |
| 5108 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5109 | if (ch == '\'') { |
| 5110 | ctx.word.has_quoted_part = 1; |
| 5111 | next = i_getch(input); |
| 5112 | if (next == '\'' && !ctx.pending_redirect) |
| 5113 | goto insert_empty_quoted_str_marker; |
| 5114 | |
| 5115 | ch = next; |
| 5116 | while (1) { |
| 5117 | if (ch == EOF) { |
| 5118 | syntax_error_unterm_ch('\''); |
| 5119 | goto parse_error; |
| 5120 | } |
| 5121 | nommu_addchr(&ctx.as_string, ch); |
| 5122 | if (ch == '\'') |
| 5123 | break; |
| 5124 | if (ch == SPECIAL_VAR_SYMBOL) { |
| 5125 | /* Convert raw ^C to corresponding special variable reference */ |
| 5126 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
| 5127 | o_addchr(&ctx.word, SPECIAL_VAR_QUOTED_SVS); |
| 5128 | } |
| 5129 | o_addqchr(&ctx.word, ch); |
| 5130 | ch = i_getch(input); |
| 5131 | } |
| 5132 | continue; /* get next char */ |
Denys Vlasenko | 1e5111b | 2018-04-01 03:04:55 +0200 | [diff] [blame] | 5133 | } |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5134 | |
Denys Vlasenko | 0403bed | 2018-04-11 01:33:54 +0200 | [diff] [blame] | 5135 | next = '\0'; |
| 5136 | if (ch != '\n') |
| 5137 | next = i_peek_and_eat_bkslash_nl(input); |
| 5138 | |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5139 | is_special = "{}<>;&|()#" /* special outside of "str" */ |
Denys Vlasenko | 0403bed | 2018-04-11 01:33:54 +0200 | [diff] [blame] | 5140 | "$\"" IF_HUSH_TICK("`") /* always special */ |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 5141 | SPECIAL_VAR_SYMBOL_STR; |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 5142 | /* Are { and } special here? */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 5143 | if (ctx.command->argv /* word [word]{... - non-special */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5144 | || ctx.word.length /* word{... - non-special */ |
| 5145 | || ctx.word.has_quoted_part /* ""{... - non-special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5146 | || (next != ';' /* }; - special */ |
| 5147 | && next != ')' /* }) - special */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5148 | && next != '(' /* {( - special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5149 | && next != '&' /* }& and }&& ... - special */ |
| 5150 | && next != '|' /* }|| ... - special */ |
| 5151 | && !strchr(defifs, next) /* {word - non-special */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 5152 | ) |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 5153 | ) { |
| 5154 | /* They are not special, skip "{}" */ |
| 5155 | is_special += 2; |
| 5156 | } |
| 5157 | is_special = strchr(is_special, ch); |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5158 | is_blank = strchr(defifs, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 5159 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5160 | if (!is_special && !is_blank) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 5161 | ordinary_char: |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5162 | o_addQchr(&ctx.word, ch); |
| 5163 | if ((ctx.is_assignment == MAYBE_ASSIGNMENT |
| 5164 | || ctx.is_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5165 | && ch == '=' |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5166 | && is_well_formed_var_name(ctx.word.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5167 | ) { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5168 | ctx.is_assignment = DEFINITELY_ASSIGNMENT; |
| 5169 | debug_printf_parse("ctx.is_assignment='%s'\n", assignment_flag[ctx.is_assignment]); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5170 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5171 | continue; |
| 5172 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5173 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5174 | if (is_blank) { |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5175 | #if ENABLE_HUSH_LINENO_VAR |
| 5176 | /* Case: |
| 5177 | * "while ...; do<whitespace><newline> |
| 5178 | * cmd ..." |
| 5179 | * would think that "cmd" starts in <whitespace> - |
| 5180 | * i.e., at the previous line. |
| 5181 | * We need to skip all whitespace before newlines. |
| 5182 | */ |
Denys Vlasenko | f786901 | 2018-02-08 19:39:42 +0100 | [diff] [blame] | 5183 | while (ch != '\n') { |
| 5184 | next = i_peek(input); |
| 5185 | if (next != ' ' && next != '\t' && next != '\n') |
| 5186 | break; /* next char is not ws */ |
| 5187 | ch = i_getch(input); |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5188 | } |
Denys Vlasenko | f786901 | 2018-02-08 19:39:42 +0100 | [diff] [blame] | 5189 | /* ch == last eaten whitespace char */ |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 5190 | #endif |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5191 | if (done_word(&ctx)) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5192 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 5193 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5194 | if (ch == '\n') { |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5195 | /* Is this a case when newline is simply ignored? |
| 5196 | * Some examples: |
| 5197 | * "cmd | <newline> cmd ..." |
| 5198 | * "case ... in <newline> word) ..." |
| 5199 | */ |
| 5200 | if (IS_NULL_CMD(ctx.command) |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5201 | && ctx.word.length == 0 && !ctx.word.has_quoted_part |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5202 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5203 | /* This newline can be ignored. But... |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5204 | * Without check #1, interactive shell |
| 5205 | * ignores even bare <newline>, |
| 5206 | * and shows the continuation prompt: |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5207 | * ps1_prompt$ <enter> |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5208 | * ps2> _ <=== wrong, should be ps1 |
| 5209 | * Without check #2, "cmd & <newline>" |
| 5210 | * is similarly mistreated. |
| 5211 | * (BTW, this makes "cmd & cmd" |
| 5212 | * and "cmd && cmd" non-orthogonal. |
| 5213 | * Really, ask yourself, why |
| 5214 | * "cmd && <newline>" doesn't start |
| 5215 | * cmd but waits for more input? |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 5216 | * The only reason is that it might be |
| 5217 | * a "cmd1 && <nl> cmd2 &" construct, |
| 5218 | * cmd1 may need to run in BG). |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5219 | */ |
| 5220 | struct pipe *pi = ctx.list_head; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5221 | if (pi->num_cmds != 0 /* check #1 */ |
| 5222 | && pi->followup != PIPE_BG /* check #2 */ |
| 5223 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 5224 | continue; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 5225 | } |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5226 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5227 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5228 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5229 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 5230 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5231 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5232 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 5233 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5234 | heredoc_cnt = 0; |
| 5235 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5236 | ctx.is_assignment = MAYBE_ASSIGNMENT; |
| 5237 | debug_printf_parse("ctx.is_assignment='%s'\n", assignment_flag[ctx.is_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5238 | ch = ';'; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5239 | /* note: if (is_blank) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5240 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5241 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5242 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5243 | |
| 5244 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 5245 | * } is an ordinary char in this case, even inside { cmd; } |
| 5246 | * Pathological example: { ""}; } should exec "}" cmd |
| 5247 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5248 | if (ch == '}') { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5249 | if (ctx.word.length != 0 /* word} */ |
| 5250 | || ctx.word.has_quoted_part /* ""} */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5251 | ) { |
| 5252 | goto ordinary_char; |
| 5253 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5254 | if (!IS_NULL_CMD(ctx.command)) { /* cmd } */ |
| 5255 | /* Generally, there should be semicolon: "cmd; }" |
| 5256 | * However, bash allows to omit it if "cmd" is |
| 5257 | * a group. Examples: |
| 5258 | * { { echo 1; } } |
| 5259 | * {(echo 1)} |
| 5260 | * { echo 0 >&2 | { echo 1; } } |
| 5261 | * { while false; do :; done } |
| 5262 | * { case a in b) ;; esac } |
| 5263 | */ |
| 5264 | if (ctx.command->group) |
| 5265 | goto term_group; |
| 5266 | goto ordinary_char; |
| 5267 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5268 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5269 | /* Can't be an end of {cmd}, skip the check */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 5270 | goto skip_end_trigger; |
| 5271 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 5272 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 5273 | term_group: |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5274 | if (end_trigger && end_trigger == ch |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5275 | && (ch != ';' || heredoc_cnt == 0) |
| 5276 | #if ENABLE_HUSH_CASE |
| 5277 | && (ch != ')' |
| 5278 | || ctx.ctx_res_w != RES_MATCH |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5279 | || (!ctx.word.has_quoted_part && strcmp(ctx.word.data, "esac") == 0) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5280 | ) |
| 5281 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5282 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5283 | if (heredoc_cnt) { |
| 5284 | /* This is technically valid: |
| 5285 | * { cat <<HERE; }; echo Ok |
| 5286 | * heredoc |
| 5287 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5288 | * HERE |
| 5289 | * but we don't support this. |
| 5290 | * We require heredoc to be in enclosing {}/(), |
| 5291 | * if any. |
| 5292 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 5293 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5294 | goto parse_error; |
| 5295 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5296 | if (done_word(&ctx)) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5297 | goto parse_error; |
| 5298 | } |
| 5299 | done_pipe(&ctx, PIPE_SEQ); |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5300 | ctx.is_assignment = MAYBE_ASSIGNMENT; |
| 5301 | debug_printf_parse("ctx.is_assignment='%s'\n", assignment_flag[ctx.is_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 5302 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 5303 | if (!HAS_KEYWORDS |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 5304 | 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] | 5305 | ) { |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5306 | o_free(&ctx.word); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5307 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 5308 | debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5309 | if (pstring) |
| 5310 | *pstring = ctx.as_string.data; |
| 5311 | else |
| 5312 | o_free_unsafe(&ctx.as_string); |
| 5313 | #endif |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5314 | if (ch != ';' && IS_NULL_PIPE(ctx.list_head)) { |
| 5315 | /* Example: bare "{ }", "()" */ |
| 5316 | G.last_exitcode = 2; /* bash compat */ |
| 5317 | syntax_error_unexpected_ch(ch); |
| 5318 | goto parse_error2; |
| 5319 | } |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5320 | debug_printf_parse("parse_stream return %p: " |
| 5321 | "end_trigger char found\n", |
| 5322 | ctx.list_head); |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5323 | debug_leave(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5324 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5325 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5326 | } |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5327 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5328 | if (is_blank) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5329 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5330 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5331 | /* Catch <, > before deciding whether this word is |
| 5332 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5333 | switch (ch) { |
| 5334 | case '>': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5335 | redir_fd = redirect_opt_num(&ctx.word); |
| 5336 | if (done_word(&ctx)) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5337 | goto parse_error; |
| 5338 | } |
| 5339 | redir_style = REDIRECT_OVERWRITE; |
| 5340 | if (next == '>') { |
| 5341 | redir_style = REDIRECT_APPEND; |
| 5342 | ch = i_getch(input); |
| 5343 | nommu_addchr(&ctx.as_string, ch); |
| 5344 | } |
| 5345 | #if 0 |
| 5346 | else if (next == '(') { |
| 5347 | syntax_error(">(process) not supported"); |
| 5348 | goto parse_error; |
| 5349 | } |
| 5350 | #endif |
| 5351 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5352 | goto parse_error; |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5353 | continue; /* get next char */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5354 | case '<': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5355 | redir_fd = redirect_opt_num(&ctx.word); |
| 5356 | if (done_word(&ctx)) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5357 | goto parse_error; |
| 5358 | } |
| 5359 | redir_style = REDIRECT_INPUT; |
| 5360 | if (next == '<') { |
| 5361 | redir_style = REDIRECT_HEREDOC; |
| 5362 | heredoc_cnt++; |
| 5363 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5364 | ch = i_getch(input); |
| 5365 | nommu_addchr(&ctx.as_string, ch); |
| 5366 | } else if (next == '>') { |
| 5367 | redir_style = REDIRECT_IO; |
| 5368 | ch = i_getch(input); |
| 5369 | nommu_addchr(&ctx.as_string, ch); |
| 5370 | } |
| 5371 | #if 0 |
| 5372 | else if (next == '(') { |
| 5373 | syntax_error("<(process) not supported"); |
| 5374 | goto parse_error; |
| 5375 | } |
| 5376 | #endif |
| 5377 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5378 | goto parse_error; |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5379 | continue; /* get next char */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5380 | case '#': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5381 | if (ctx.word.length == 0 && !ctx.word.has_quoted_part) { |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5382 | /* skip "#comment" */ |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5383 | /* note: we do not add it to &ctx.as_string */ |
| 5384 | /* TODO: in bash: |
| 5385 | * comment inside $() goes to the next \n, even inside quoted string (!): |
| 5386 | * cmd "$(cmd2 #comment)" - syntax error |
| 5387 | * cmd "`cmd2 #comment`" - ok |
| 5388 | * We accept both (comment ends where command subst ends, in both cases). |
| 5389 | */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5390 | while (1) { |
| 5391 | ch = i_peek(input); |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5392 | if (ch == '\n') { |
| 5393 | nommu_addchr(&ctx.as_string, '\n'); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5394 | break; |
Denys Vlasenko | 25f3b73 | 2017-10-22 15:55:48 +0200 | [diff] [blame] | 5395 | } |
| 5396 | ch = i_getch(input); |
| 5397 | if (ch == EOF) |
| 5398 | break; |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5399 | } |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5400 | continue; /* get next char */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5401 | } |
| 5402 | break; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5403 | } |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5404 | skip_end_trigger: |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5405 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5406 | if (ctx.is_assignment == MAYBE_ASSIGNMENT |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5407 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5408 | && !ctx.pending_redirect |
| 5409 | ) { |
| 5410 | /* ch is a special char and thus this word |
| 5411 | * cannot be an assignment */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5412 | ctx.is_assignment = NOT_ASSIGNMENT; |
| 5413 | debug_printf_parse("ctx.is_assignment='%s'\n", assignment_flag[ctx.is_assignment]); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5414 | } |
| 5415 | |
Denys Vlasenko | cbfe6ad | 2009-08-12 19:47:44 +0200 | [diff] [blame] | 5416 | /* Note: nommu_addchr(&ctx.as_string, ch) is already done */ |
| 5417 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5418 | switch (ch) { |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 5419 | case SPECIAL_VAR_SYMBOL: |
| 5420 | /* Convert raw ^C to corresponding special variable reference */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5421 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
| 5422 | o_addchr(&ctx.word, SPECIAL_VAR_QUOTED_SVS); |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 5423 | /* fall through */ |
| 5424 | case '#': |
| 5425 | /* non-comment #: "echo a#b" etc */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5426 | o_addchr(&ctx.word, ch); |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5427 | continue; /* get next char */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5428 | case '$': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5429 | if (!parse_dollar(&ctx.as_string, &ctx.word, input, /*quote_mask:*/ 0)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5430 | debug_printf_parse("parse_stream parse error: " |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5431 | "parse_dollar returned 0 (error)\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5432 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5433 | } |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5434 | continue; /* get next char */ |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5435 | case '"': |
| 5436 | ctx.word.has_quoted_part = 1; |
| 5437 | if (next == '"' && !ctx.pending_redirect) { |
Denys Vlasenko | 92a930b | 2018-04-10 14:20:48 +0200 | [diff] [blame] | 5438 | i_getch(input); /* eat second " */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5439 | insert_empty_quoted_str_marker: |
| 5440 | nommu_addchr(&ctx.as_string, next); |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5441 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
| 5442 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5443 | continue; /* get next char */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5444 | } |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5445 | if (ctx.is_assignment == NOT_ASSIGNMENT) |
| 5446 | ctx.word.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS; |
| 5447 | if (!encode_string(&ctx.as_string, &ctx.word, input, '"', /*process_bkslash:*/ 1)) |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5448 | goto parse_error; |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5449 | ctx.word.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS; |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5450 | continue; /* get next char */ |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5451 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5452 | case '`': { |
Denys Vlasenko | 60a9414 | 2011-05-13 20:57:01 +0200 | [diff] [blame] | 5453 | USE_FOR_NOMMU(unsigned pos;) |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5454 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5455 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
| 5456 | o_addchr(&ctx.word, '`'); |
| 5457 | USE_FOR_NOMMU(pos = ctx.word.length;) |
| 5458 | if (!add_till_backquote(&ctx.word, input, /*in_dquote:*/ 0)) |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5459 | goto parse_error; |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5460 | # if !BB_MMU |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5461 | o_addstr(&ctx.as_string, ctx.word.data + pos); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5462 | o_addchr(&ctx.as_string, '`'); |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5463 | # endif |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5464 | o_addchr(&ctx.word, SPECIAL_VAR_SYMBOL); |
| 5465 | //debug_printf_subst("SUBST RES3 '%s'\n", ctx.word.data + pos); |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5466 | continue; /* get next char */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5467 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5468 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5469 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5470 | #if ENABLE_HUSH_CASE |
| 5471 | case_semi: |
| 5472 | #endif |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5473 | if (done_word(&ctx)) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5474 | goto parse_error; |
| 5475 | } |
| 5476 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5477 | #if ENABLE_HUSH_CASE |
| 5478 | /* Eat multiple semicolons, detect |
| 5479 | * whether it means something special */ |
| 5480 | while (1) { |
Denys Vlasenko | 1e5111b | 2018-04-01 03:04:55 +0200 | [diff] [blame] | 5481 | ch = i_peek_and_eat_bkslash_nl(input); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5482 | if (ch != ';') |
| 5483 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5484 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5485 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5486 | if (ctx.ctx_res_w == RES_CASE_BODY) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5487 | ctx.ctx_dsemicolon = 1; |
| 5488 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5489 | break; |
| 5490 | } |
| 5491 | } |
| 5492 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5493 | new_cmd: |
| 5494 | /* We just finished a cmd. New one may start |
| 5495 | * with an assignment */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5496 | ctx.is_assignment = MAYBE_ASSIGNMENT; |
| 5497 | debug_printf_parse("ctx.is_assignment='%s'\n", assignment_flag[ctx.is_assignment]); |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5498 | continue; /* get next char */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5499 | case '&': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5500 | if (done_word(&ctx)) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5501 | goto parse_error; |
| 5502 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5503 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5504 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5505 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5506 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5507 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5508 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5509 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5510 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5511 | case '|': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5512 | if (done_word(&ctx)) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5513 | goto parse_error; |
| 5514 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5515 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5516 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5517 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5518 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5519 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5520 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5521 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5522 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5523 | } else { |
| 5524 | /* we could pick up a file descriptor choice here |
| 5525 | * with redirect_opt_num(), but bash doesn't do it. |
| 5526 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5527 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5528 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5529 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5530 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5531 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5532 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5533 | if (ctx.ctx_res_w == RES_MATCH |
| 5534 | && ctx.command->argv == NULL /* not (word|(... */ |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5535 | && ctx.word.length == 0 /* not word(... */ |
| 5536 | && ctx.word.has_quoted_part == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5537 | ) { |
Denys Vlasenko | e8b1bc0 | 2018-04-10 13:13:10 +0200 | [diff] [blame] | 5538 | continue; /* get next char */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5539 | } |
| 5540 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5541 | case '{': |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5542 | if (parse_group(&ctx, input, ch) != 0) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5543 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5544 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5545 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5546 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5547 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5548 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5549 | goto case_semi; |
| 5550 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5551 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5552 | /* proper use of this character is caught by end_trigger: |
| 5553 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5554 | * and it will match } earlier (not here). */ |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5555 | G.last_exitcode = 2; |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5556 | syntax_error_unexpected_ch(ch); |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5557 | goto parse_error2; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5558 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5559 | if (HUSH_DEBUG) |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 5560 | bb_error_msg_and_die("BUG: unexpected %c", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5561 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5562 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5563 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5564 | parse_error: |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5565 | G.last_exitcode = 1; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5566 | parse_error2: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5567 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5568 | struct parse_context *pctx; |
| 5569 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5570 | |
| 5571 | /* Clean up allocated tree. |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 5572 | * Sample for finding leaks on syntax error recovery path. |
| 5573 | * Run it from interactive shell, watch pmap `pidof hush`. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5574 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5575 | * Samples to catch leaks at execution: |
Denys Vlasenko | 5d5a611 | 2016-11-07 19:36:50 +0100 | [diff] [blame] | 5576 | * while if (true | { true;}); then echo ok; fi; do break; done |
| 5577 | * 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] | 5578 | */ |
| 5579 | pctx = &ctx; |
| 5580 | do { |
| 5581 | /* Update pipe/command counts, |
| 5582 | * otherwise freeing may miss some */ |
| 5583 | done_pipe(pctx, PIPE_SEQ); |
| 5584 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5585 | pctx->list_head, pctx); |
| 5586 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5587 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5588 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5589 | #if !BB_MMU |
| 5590 | o_free_unsafe(&pctx->as_string); |
| 5591 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5592 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5593 | if (pctx != &ctx) { |
| 5594 | free(pctx); |
| 5595 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5596 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5597 | } while (HAS_KEYWORDS && pctx); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5598 | |
Denys Vlasenko | 09b7a7e | 2018-04-10 03:22:10 +0200 | [diff] [blame] | 5599 | o_free(&ctx.word); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5600 | #if !BB_MMU |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5601 | if (pstring) |
| 5602 | *pstring = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5603 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5604 | debug_leave(); |
| 5605 | return ERR_PTR; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5606 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5607 | } |
| 5608 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5609 | |
| 5610 | /*** Execution routines ***/ |
| 5611 | |
| 5612 | /* Expansion can recurse, need forward decls: */ |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5613 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 5614 | #define expand_string_to_string(str, EXP_flags, do_unbackslash) \ |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5615 | expand_string_to_string(str) |
| 5616 | #endif |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 5617 | static char *expand_string_to_string(const char *str, int EXP_flags, int do_unbackslash); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5618 | #if ENABLE_HUSH_TICK |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5619 | static int process_command_subs(o_string *dest, const char *s); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5620 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5621 | |
| 5622 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 5623 | * all variable references within and returns a pointer to |
| 5624 | * a list of expanded strings, possibly with larger number |
| 5625 | * of strings. (Think VAR="a b"; echo $VAR). |
| 5626 | * This new list is allocated as a single malloc block. |
| 5627 | * NULL-terminated list of char* pointers is at the beginning of it, |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5628 | * followed by strings themselves. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5629 | * Caller can deallocate entire list by single free(list). */ |
| 5630 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5631 | /* A horde of its helpers come first: */ |
| 5632 | |
| 5633 | static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len) |
| 5634 | { |
| 5635 | while (--len >= 0) { |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5636 | char c = *str++; |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5637 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5638 | #if ENABLE_HUSH_BRACE_EXPANSION |
| 5639 | if (c == '{' || c == '}') { |
| 5640 | /* { -> \{, } -> \} */ |
| 5641 | o_addchr(o, '\\'); |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5642 | /* And now we want to add { or } and continue: |
| 5643 | * o_addchr(o, c); |
| 5644 | * continue; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 5645 | * luckily, just falling through achieves this. |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5646 | */ |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5647 | } |
| 5648 | #endif |
| 5649 | o_addchr(o, c); |
| 5650 | if (c == '\\') { |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5651 | /* \z -> \\\z; \<eol> -> \\<eol> */ |
| 5652 | o_addchr(o, '\\'); |
| 5653 | if (len) { |
| 5654 | len--; |
| 5655 | o_addchr(o, '\\'); |
| 5656 | o_addchr(o, *str++); |
| 5657 | } |
| 5658 | } |
| 5659 | } |
| 5660 | } |
| 5661 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5662 | /* Store given string, finalizing the word and starting new one whenever |
| 5663 | * we encounter IFS char(s). This is used for expanding variable values. |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5664 | * End-of-string does NOT finalize word: think about 'echo -$VAR-'. |
| 5665 | * Return in *ended_with_ifs: |
| 5666 | * 1 - ended with IFS char, else 0 (this includes case of empty str). |
| 5667 | */ |
| 5668 | 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] | 5669 | { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5670 | int last_is_ifs = 0; |
| 5671 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5672 | while (1) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5673 | int word_len; |
| 5674 | |
| 5675 | if (!*str) /* EOL - do not finalize word */ |
| 5676 | break; |
| 5677 | word_len = strcspn(str, G.ifs); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5678 | if (word_len) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5679 | /* We have WORD_LEN leading non-IFS chars */ |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5680 | if (!(output->o_expflags & EXP_FLAG_GLOB)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5681 | o_addblock(output, str, word_len); |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5682 | } else { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5683 | /* Protect backslashes against globbing up :) |
Denys Vlasenko | a769e02 | 2010-09-10 10:12:34 +0200 | [diff] [blame] | 5684 | * Example: "v='\*'; echo b$v" prints "b\*" |
| 5685 | * (and does not try to glob on "*") |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5686 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5687 | o_addblock_duplicate_backslash(output, str, word_len); |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5688 | /*/ Why can't we do it easier? */ |
| 5689 | /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */ |
| 5690 | /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */ |
| 5691 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5692 | last_is_ifs = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5693 | str += word_len; |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5694 | if (!*str) /* EOL - do not finalize word */ |
| 5695 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5696 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5697 | |
| 5698 | /* We know str here points to at least one IFS char */ |
| 5699 | last_is_ifs = 1; |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 5700 | str += strspn(str, G.ifs_whitespace); /* skip IFS whitespace chars */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5701 | if (!*str) /* EOL - do not finalize word */ |
| 5702 | break; |
| 5703 | |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 5704 | if (G.ifs_whitespace != G.ifs /* usually false ($IFS is usually all whitespace), */ |
| 5705 | && strchr(G.ifs, *str) /* the second check would fail */ |
| 5706 | ) { |
| 5707 | /* This is a non-whitespace $IFS char */ |
| 5708 | /* Skip it and IFS whitespace chars, start new word */ |
| 5709 | str++; |
| 5710 | str += strspn(str, G.ifs_whitespace); |
| 5711 | goto new_word; |
| 5712 | } |
| 5713 | |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5714 | /* Start new word... but not always! */ |
| 5715 | /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5716 | if (output->has_quoted_part |
| 5717 | /* Case "v=' a'; echo $v": |
| 5718 | * here nothing precedes the space in $v expansion, |
| 5719 | * therefore we should not finish the word |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5720 | * (IOW: if there *is* word to finalize, only then do it): |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5721 | */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5722 | || (n > 0 && output->data[output->length - 1]) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5723 | ) { |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 5724 | new_word: |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5725 | o_addchr(output, '\0'); |
| 5726 | debug_print_list("expand_on_ifs", output, n); |
| 5727 | n = o_save_ptr(output, n); |
| 5728 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5729 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5730 | |
| 5731 | if (ended_with_ifs) |
| 5732 | *ended_with_ifs = last_is_ifs; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5733 | debug_print_list("expand_on_ifs[1]", output, n); |
| 5734 | return n; |
| 5735 | } |
| 5736 | |
| 5737 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 5738 | * they are in double quotes, with the exception that they are not :). |
| 5739 | * Just the rules are similar: "expand only $var and `cmd`" |
| 5740 | * |
| 5741 | * Returns malloced string. |
| 5742 | * As an optimization, we return NULL if expansion is not needed. |
| 5743 | */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5744 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5745 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 5746 | #define encode_then_expand_string(str, process_bkslash, do_unbackslash) \ |
| 5747 | encode_then_expand_string(str) |
| 5748 | #endif |
| 5749 | 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] | 5750 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5751 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 5752 | enum { do_unbackslash = 1 }; |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5753 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5754 | char *exp_str; |
| 5755 | struct in_str input; |
| 5756 | o_string dest = NULL_O_STRING; |
| 5757 | |
| 5758 | if (!strchr(str, '$') |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 5759 | && !strchr(str, '\\') |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5760 | #if ENABLE_HUSH_TICK |
| 5761 | && !strchr(str, '`') |
| 5762 | #endif |
| 5763 | ) { |
| 5764 | return NULL; |
| 5765 | } |
| 5766 | |
| 5767 | /* We need to expand. Example: |
| 5768 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 5769 | */ |
| 5770 | setup_string_in_str(&input, str); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5771 | encode_string(NULL, &dest, &input, EOF, process_bkslash); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5772 | //TODO: error check (encode_string returns 0 on error)? |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5773 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 5774 | exp_str = expand_string_to_string(dest.data, |
| 5775 | do_unbackslash ? EXP_FLAG_ESC_GLOB_CHARS : 0, |
| 5776 | do_unbackslash |
| 5777 | ); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5778 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 5779 | o_free_unsafe(&dest); |
| 5780 | return exp_str; |
| 5781 | } |
| 5782 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 5783 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5784 | 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] | 5785 | { |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5786 | arith_state_t math_state; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5787 | arith_t res; |
| 5788 | char *exp_str; |
| 5789 | |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5790 | math_state.lookupvar = get_local_var_value; |
| 5791 | math_state.setvar = set_local_var_from_halves; |
| 5792 | //math_state.endofname = endofname; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5793 | exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5794 | res = arith(&math_state, exp_str ? exp_str : arg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5795 | free(exp_str); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5796 | if (errmsg_p) |
| 5797 | *errmsg_p = math_state.errmsg; |
| 5798 | if (math_state.errmsg) |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 5799 | msg_and_die_if_script(math_state.errmsg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5800 | return res; |
| 5801 | } |
| 5802 | #endif |
| 5803 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5804 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5805 | /* ${var/[/]pattern[/repl]} helpers */ |
| 5806 | static char *strstr_pattern(char *val, const char *pattern, int *size) |
| 5807 | { |
| 5808 | while (1) { |
| 5809 | char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF); |
| 5810 | debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end); |
| 5811 | if (end) { |
| 5812 | *size = end - val; |
| 5813 | return val; |
| 5814 | } |
| 5815 | if (*val == '\0') |
| 5816 | return NULL; |
| 5817 | /* Optimization: if "*pat" did not match the start of "string", |
| 5818 | * we know that "tring", "ring" etc will not match too: |
| 5819 | */ |
| 5820 | if (pattern[0] == '*') |
| 5821 | return NULL; |
| 5822 | val++; |
| 5823 | } |
| 5824 | } |
| 5825 | static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op) |
| 5826 | { |
| 5827 | char *result = NULL; |
| 5828 | unsigned res_len = 0; |
| 5829 | unsigned repl_len = strlen(repl); |
| 5830 | |
Denys Vlasenko | cba79a8 | 2018-01-25 14:07:40 +0100 | [diff] [blame] | 5831 | /* Null pattern never matches, including if "var" is empty */ |
| 5832 | if (!pattern[0]) |
| 5833 | return result; /* NULL, no replaces happened */ |
| 5834 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5835 | while (1) { |
| 5836 | int size; |
| 5837 | char *s = strstr_pattern(val, pattern, &size); |
| 5838 | if (!s) |
| 5839 | break; |
| 5840 | |
| 5841 | result = xrealloc(result, res_len + (s - val) + repl_len + 1); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5842 | strcpy(mempcpy(result + res_len, val, s - val), repl); |
| 5843 | res_len += (s - val) + repl_len; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5844 | debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result); |
| 5845 | |
| 5846 | val = s + size; |
| 5847 | if (exp_op == '/') |
| 5848 | break; |
| 5849 | } |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5850 | if (*val && result) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5851 | result = xrealloc(result, res_len + strlen(val) + 1); |
| 5852 | strcpy(result + res_len, val); |
| 5853 | debug_printf_varexp("val:'%s' result:'%s'\n", val, result); |
| 5854 | } |
| 5855 | debug_printf_varexp("result:'%s'\n", result); |
| 5856 | return result; |
| 5857 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5858 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5859 | |
| 5860 | /* Helper: |
| 5861 | * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct. |
| 5862 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5863 | 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] | 5864 | { |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 5865 | const char *val; |
| 5866 | char *to_be_freed; |
| 5867 | char *p; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5868 | char *var; |
| 5869 | char first_char; |
| 5870 | char exp_op; |
| 5871 | char exp_save = exp_save; /* for compiler */ |
| 5872 | char *exp_saveptr; /* points to expansion operator */ |
| 5873 | char *exp_word = exp_word; /* for compiler */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5874 | char arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5875 | |
Denys Vlasenko | 0ca3198 | 2018-01-25 13:20:50 +0100 | [diff] [blame] | 5876 | val = NULL; |
| 5877 | to_be_freed = NULL; |
| 5878 | p = *pp; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5879 | *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5880 | var = arg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5881 | exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5882 | arg0 = arg[0]; |
| 5883 | first_char = arg[0] = arg0 & 0x7f; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5884 | exp_op = 0; |
| 5885 | |
Denys Vlasenko | 2093ad2 | 2017-07-26 00:07:27 +0200 | [diff] [blame] | 5886 | if (first_char == '#' && arg[1] /* ${#...} but not ${#} */ |
| 5887 | && (!exp_saveptr /* and ( not(${#<op_char>...}) */ |
| 5888 | || (arg[2] == '\0' && strchr(SPECIAL_VARS_STR, arg[1])) /* or ${#C} "len of $C" ) */ |
| 5889 | ) /* NB: skipping ^^^specvar check mishandles ${#::2} */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5890 | ) { |
| 5891 | /* It must be length operator: ${#var} */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5892 | var++; |
| 5893 | exp_op = 'L'; |
| 5894 | } else { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5895 | /* Maybe handle parameter expansion */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5896 | if (exp_saveptr /* if 2nd char is one of expansion operators */ |
| 5897 | && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */ |
| 5898 | ) { |
| 5899 | /* ${?:0}, ${#[:]%0} etc */ |
| 5900 | exp_saveptr = var + 1; |
| 5901 | } else { |
| 5902 | /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */ |
| 5903 | exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS); |
| 5904 | } |
| 5905 | exp_op = exp_save = *exp_saveptr; |
| 5906 | if (exp_op) { |
| 5907 | exp_word = exp_saveptr + 1; |
| 5908 | if (exp_op == ':') { |
| 5909 | exp_op = *exp_word++; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5910 | //TODO: try ${var:} and ${var:bogus} in non-bash config |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5911 | if (BASH_SUBSTR |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5912 | && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op)) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5913 | ) { |
| 5914 | /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */ |
| 5915 | exp_op = ':'; |
| 5916 | exp_word--; |
| 5917 | } |
| 5918 | } |
| 5919 | *exp_saveptr = '\0'; |
| 5920 | } /* else: it's not an expansion op, but bare ${var} */ |
| 5921 | } |
| 5922 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5923 | /* Look up the variable in question */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5924 | if (isdigit(var[0])) { |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5925 | /* parse_dollar should have vetted var for us */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5926 | int n = xatoi_positive(var); |
| 5927 | if (n < G.global_argc) |
| 5928 | val = G.global_argv[n]; |
| 5929 | /* else val remains NULL: $N with too big N */ |
| 5930 | } else { |
| 5931 | switch (var[0]) { |
| 5932 | case '$': /* pid */ |
| 5933 | val = utoa(G.root_pid); |
| 5934 | break; |
| 5935 | case '!': /* bg pid */ |
| 5936 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : ""; |
| 5937 | break; |
| 5938 | case '?': /* exitcode */ |
| 5939 | val = utoa(G.last_exitcode); |
| 5940 | break; |
| 5941 | case '#': /* argc */ |
| 5942 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 5943 | break; |
| 5944 | default: |
| 5945 | val = get_local_var_value(var); |
| 5946 | } |
| 5947 | } |
| 5948 | |
| 5949 | /* Handle any expansions */ |
| 5950 | if (exp_op == 'L') { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5951 | reinit_unicode_for_hush(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5952 | debug_printf_expand("expand: length(%s)=", val); |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5953 | val = utoa(val ? unicode_strlen(val) : 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5954 | debug_printf_expand("%s\n", val); |
| 5955 | } else if (exp_op) { |
| 5956 | if (exp_op == '%' || exp_op == '#') { |
| 5957 | /* Standard-mandated substring removal ops: |
| 5958 | * ${parameter%word} - remove smallest suffix pattern |
| 5959 | * ${parameter%%word} - remove largest suffix pattern |
| 5960 | * ${parameter#word} - remove smallest prefix pattern |
| 5961 | * ${parameter##word} - remove largest prefix pattern |
| 5962 | * |
| 5963 | * Word is expanded to produce a glob pattern. |
| 5964 | * Then var's value is matched to it and matching part removed. |
| 5965 | */ |
| 5966 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5967 | char *t; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5968 | char *exp_exp_word; |
| 5969 | char *loc; |
| 5970 | unsigned scan_flags = pick_scan(exp_op, *exp_word); |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 5971 | if (exp_op == *exp_word) /* ## or %% */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5972 | exp_word++; |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5973 | debug_printf_expand("expand: exp_word:'%s'\n", exp_word); |
Denys Vlasenko | d4802c6 | 2018-03-02 20:48:36 +0100 | [diff] [blame] | 5974 | /* |
| 5975 | * process_bkslash:1 unbackslash:1 breaks this: |
| 5976 | * a='a\\'; echo ${a%\\\\} # correct output is: a |
| 5977 | * process_bkslash:1 unbackslash:0 breaks this: |
| 5978 | * a='a}'; echo ${a%\}} # correct output is: a |
| 5979 | */ |
| 5980 | 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] | 5981 | if (exp_exp_word) |
| 5982 | exp_word = exp_exp_word; |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5983 | debug_printf_expand("expand: exp_exp_word:'%s'\n", exp_word); |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5984 | /* HACK ALERT. We depend here on the fact that |
| 5985 | * G.global_argv and results of utoa and get_local_var_value |
| 5986 | * are actually in writable memory: |
| 5987 | * scan_and_match momentarily stores NULs there. */ |
| 5988 | t = (char*)val; |
| 5989 | loc = scan_and_match(t, exp_word, scan_flags); |
Denys Vlasenko | 55f8133 | 2018-03-02 18:12:12 +0100 | [diff] [blame] | 5990 | 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] | 5991 | free(exp_exp_word); |
| 5992 | if (loc) { /* match was found */ |
| 5993 | if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5994 | val = loc; /* take right part */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5995 | else /* %[%] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5996 | val = to_be_freed = xstrndup(val, loc - val); /* left */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5997 | } |
| 5998 | } |
| 5999 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 6000 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6001 | else if (exp_op == '/' || exp_op == '\\') { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6002 | /* It's ${var/[/]pattern[/repl]} thing. |
| 6003 | * Note that in encoded form it has TWO parts: |
| 6004 | * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 6005 | * and if // is used, it is encoded as \: |
| 6006 | * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6007 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6008 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 6009 | /* pattern uses non-standard expansion. |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 6010 | * repl should be unbackslashed and globbed |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6011 | * by the usual expansion rules: |
Denys Vlasenko | de02625 | 2018-04-05 17:04:53 +0200 | [diff] [blame] | 6012 | * >az >bz |
| 6013 | * v='a bz'; echo "${v/a*z/a*z}" #prints "a*z" |
| 6014 | * v='a bz'; echo "${v/a*z/\z}" #prints "z" |
| 6015 | * v='a bz'; echo ${v/a*z/a*z} #prints "az" |
| 6016 | * v='a bz'; echo ${v/a*z/\z} #prints "z" |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6017 | * (note that a*z _pattern_ is never globbed!) |
| 6018 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6019 | char *pattern, *repl, *t; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6020 | pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6021 | if (!pattern) |
| 6022 | pattern = xstrdup(exp_word); |
| 6023 | debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern); |
| 6024 | *p++ = SPECIAL_VAR_SYMBOL; |
| 6025 | exp_word = p; |
| 6026 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 6027 | *p = '\0'; |
Denys Vlasenko | de02625 | 2018-04-05 17:04:53 +0200 | [diff] [blame] | 6028 | repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6029 | debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl); |
| 6030 | /* HACK ALERT. We depend here on the fact that |
| 6031 | * G.global_argv and results of utoa and get_local_var_value |
| 6032 | * are actually in writable memory: |
| 6033 | * replace_pattern momentarily stores NULs there. */ |
| 6034 | t = (char*)val; |
| 6035 | to_be_freed = replace_pattern(t, |
| 6036 | pattern, |
| 6037 | (repl ? repl : exp_word), |
| 6038 | exp_op); |
| 6039 | if (to_be_freed) /* at least one replace happened */ |
| 6040 | val = to_be_freed; |
| 6041 | free(pattern); |
| 6042 | free(repl); |
Denys Vlasenko | cba79a8 | 2018-01-25 14:07:40 +0100 | [diff] [blame] | 6043 | } else { |
| 6044 | /* Empty variable always gives nothing */ |
| 6045 | // "v=''; echo ${v/*/w}" prints "", not "w" |
| 6046 | /* Just skip "replace" part */ |
| 6047 | *p++ = SPECIAL_VAR_SYMBOL; |
| 6048 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 6049 | *p = '\0'; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6050 | } |
| 6051 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 6052 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6053 | else if (exp_op == ':') { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 6054 | #if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6055 | /* It's ${var:N[:M]} bashism. |
| 6056 | * Note that in encoded form it has TWO parts: |
| 6057 | * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL> |
| 6058 | */ |
| 6059 | arith_t beg, len; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 6060 | const char *errmsg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6061 | |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 6062 | beg = expand_and_evaluate_arith(exp_word, &errmsg); |
| 6063 | if (errmsg) |
| 6064 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6065 | debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg); |
| 6066 | *p++ = SPECIAL_VAR_SYMBOL; |
| 6067 | exp_word = p; |
| 6068 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 6069 | *p = '\0'; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 6070 | len = expand_and_evaluate_arith(exp_word, &errmsg); |
| 6071 | if (errmsg) |
| 6072 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6073 | debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 6074 | if (beg < 0) { |
| 6075 | /* negative beg counts from the end */ |
| 6076 | beg = (arith_t)strlen(val) + beg; |
| 6077 | if (beg < 0) /* ${v: -999999} is "" */ |
| 6078 | beg = len = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6079 | } |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 6080 | debug_printf_varexp("from val:'%s'\n", val); |
| 6081 | if (len < 0) { |
| 6082 | /* in bash, len=-n means strlen()-n */ |
| 6083 | len = (arith_t)strlen(val) - beg + len; |
| 6084 | if (len < 0) /* bash compat */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6085 | msg_and_die_if_script("%s: substring expression < 0", var); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 6086 | } |
Denys Vlasenko | 0ba80e4 | 2017-07-17 16:50:20 +0200 | [diff] [blame] | 6087 | if (len <= 0 || !val || beg >= strlen(val)) { |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 6088 | arith_err: |
| 6089 | val = NULL; |
| 6090 | } else { |
| 6091 | /* Paranoia. What if user entered 9999999999999 |
| 6092 | * which fits in arith_t but not int? */ |
| 6093 | if (len >= INT_MAX) |
| 6094 | len = INT_MAX; |
| 6095 | val = to_be_freed = xstrndup(val + beg, len); |
| 6096 | } |
| 6097 | debug_printf_varexp("val:'%s'\n", val); |
| 6098 | #else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6099 | msg_and_die_if_script("malformed ${%s:...}", var); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 6100 | val = NULL; |
| 6101 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6102 | } else { /* one of "-=+?" */ |
| 6103 | /* Standard-mandated substitution ops: |
| 6104 | * ${var?word} - indicate error if unset |
| 6105 | * If var is unset, word (or a message indicating it is unset |
| 6106 | * if word is null) is written to standard error |
| 6107 | * and the shell exits with a non-zero exit status. |
| 6108 | * Otherwise, the value of var is substituted. |
| 6109 | * ${var-word} - use default value |
| 6110 | * If var is unset, word is substituted. |
| 6111 | * ${var=word} - assign and use default value |
| 6112 | * If var is unset, word is assigned to var. |
| 6113 | * In all cases, final value of var is substituted. |
| 6114 | * ${var+word} - use alternative value |
| 6115 | * If var is unset, null is substituted. |
| 6116 | * Otherwise, word is substituted. |
| 6117 | * |
| 6118 | * Word is subjected to tilde expansion, parameter expansion, |
| 6119 | * command substitution, and arithmetic expansion. |
| 6120 | * If word is not needed, it is not expanded. |
| 6121 | * |
| 6122 | * Colon forms (${var:-word}, ${var:=word} etc) do the same, |
| 6123 | * but also treat null var as if it is unset. |
| 6124 | */ |
| 6125 | int use_word = (!val || ((exp_save == ':') && !val[0])); |
| 6126 | if (exp_op == '+') |
| 6127 | use_word = !use_word; |
| 6128 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 6129 | (exp_save == ':') ? "true" : "false", use_word); |
| 6130 | if (use_word) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6131 | 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] | 6132 | if (to_be_freed) |
| 6133 | exp_word = to_be_freed; |
| 6134 | if (exp_op == '?') { |
| 6135 | /* mimic bash message */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6136 | msg_and_die_if_script("%s: %s", |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6137 | var, |
Denys Vlasenko | 645c697 | 2017-07-25 15:18:57 +0200 | [diff] [blame] | 6138 | exp_word[0] |
| 6139 | ? exp_word |
| 6140 | : "parameter null or not set" |
| 6141 | /* ash has more specific messages, a-la: */ |
| 6142 | /*: (exp_save == ':' ? "parameter null or not set" : "parameter not set")*/ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6143 | ); |
| 6144 | //TODO: how interactive bash aborts expansion mid-command? |
| 6145 | } else { |
| 6146 | val = exp_word; |
| 6147 | } |
| 6148 | |
| 6149 | if (exp_op == '=') { |
| 6150 | /* ${var=[word]} or ${var:=[word]} */ |
| 6151 | if (isdigit(var[0]) || var[0] == '#') { |
| 6152 | /* mimic bash message */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 6153 | msg_and_die_if_script("$%s: cannot assign in this way", var); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6154 | val = NULL; |
| 6155 | } else { |
| 6156 | char *new_var = xasprintf("%s=%s", var, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 6157 | set_local_var(new_var, /*flag:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6158 | } |
| 6159 | } |
| 6160 | } |
| 6161 | } /* one of "-=+?" */ |
| 6162 | |
| 6163 | *exp_saveptr = exp_save; |
| 6164 | } /* if (exp_op) */ |
| 6165 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6166 | arg[0] = arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6167 | |
| 6168 | *pp = p; |
| 6169 | *to_be_freed_pp = to_be_freed; |
| 6170 | return val; |
| 6171 | } |
| 6172 | |
| 6173 | /* Expand all variable references in given string, adding words to list[] |
| 6174 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 6175 | * to be filled). This routine is extremely tricky: has to deal with |
| 6176 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 6177 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6178 | 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] | 6179 | { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6180 | /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6181 | * expansion of right-hand side of assignment == 1-element expand. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6182 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6183 | char cant_be_null = 0; /* only bit 0x80 matters */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6184 | 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] | 6185 | char *p; |
| 6186 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6187 | debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg, |
| 6188 | !!(output->o_expflags & EXP_FLAG_SINGLEWORD)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6189 | debug_print_list("expand_vars_to_list", output, n); |
| 6190 | n = o_save_ptr(output, n); |
| 6191 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 6192 | |
| 6193 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 6194 | char first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6195 | char *to_be_freed = NULL; |
| 6196 | const char *val = NULL; |
| 6197 | #if ENABLE_HUSH_TICK |
| 6198 | o_string subst_result = NULL_O_STRING; |
| 6199 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 6200 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6201 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 6202 | #endif |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6203 | |
| 6204 | if (ended_in_ifs) { |
| 6205 | o_addchr(output, '\0'); |
| 6206 | n = o_save_ptr(output, n); |
| 6207 | ended_in_ifs = 0; |
| 6208 | } |
| 6209 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6210 | o_addblock(output, arg, p - arg); |
| 6211 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 6212 | arg = ++p; |
| 6213 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 6214 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6215 | /* Fetch special var name (if it is indeed one of them) |
| 6216 | * and quote bit, force the bit on if singleword expansion - |
| 6217 | * important for not getting v=$@ expand to many words. */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6218 | first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6219 | |
| 6220 | /* Is this variable quoted and thus expansion can't be null? |
| 6221 | * "$@" is special. Even if quoted, it can still |
| 6222 | * expand to nothing (not even an empty string), |
| 6223 | * thus it is excluded. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6224 | if ((first_ch & 0x7f) != '@') |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6225 | cant_be_null |= first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6226 | |
| 6227 | switch (first_ch & 0x7f) { |
| 6228 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 6229 | case '*': |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6230 | case '@': { |
| 6231 | int i; |
| 6232 | if (!G.global_argv[1]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6233 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6234 | i = 1; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6235 | 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] | 6236 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6237 | while (G.global_argv[i]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6238 | n = expand_on_ifs(NULL, output, n, G.global_argv[i]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6239 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 6240 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 6241 | /* this argv[] is not empty and not last: |
| 6242 | * put terminating NUL, start new word */ |
| 6243 | o_addchr(output, '\0'); |
| 6244 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 6245 | n = o_save_ptr(output, n); |
| 6246 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 6247 | } |
| 6248 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6249 | } else |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6250 | /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....' |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6251 | * and in this case should treat it like '$*' - see 'else...' below */ |
Denys Vlasenko | 6ffaa00 | 2018-03-31 00:46:07 +0200 | [diff] [blame] | 6252 | if (first_ch == (char)('@'|0x80) /* quoted $@ */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6253 | && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6254 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6255 | while (1) { |
| 6256 | o_addQstr(output, G.global_argv[i]); |
| 6257 | if (++i >= G.global_argc) |
| 6258 | break; |
| 6259 | o_addchr(output, '\0'); |
| 6260 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 6261 | n = o_save_ptr(output, n); |
| 6262 | } |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6263 | } else { /* quoted $* (or v="$@" case): add as one word */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6264 | while (1) { |
| 6265 | o_addQstr(output, G.global_argv[i]); |
| 6266 | if (!G.global_argv[++i]) |
| 6267 | break; |
| 6268 | if (G.ifs[0]) |
| 6269 | o_addchr(output, G.ifs[0]); |
| 6270 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6271 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6272 | } |
| 6273 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 6274 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6275 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 6276 | /* "Empty variable", used to make "" etc to not disappear */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6277 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6278 | arg++; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6279 | cant_be_null = 0x80; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6280 | break; |
Denys Vlasenko | 932b997 | 2018-01-11 12:39:48 +0100 | [diff] [blame] | 6281 | case SPECIAL_VAR_QUOTED_SVS: |
| 6282 | /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_QUOTED_SVS><SPECIAL_VAR_SYMBOL> */ |
| 6283 | arg++; |
| 6284 | val = SPECIAL_VAR_SYMBOL_STR; |
| 6285 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6286 | #if ENABLE_HUSH_TICK |
| 6287 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6288 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6289 | arg++; |
| 6290 | /* Can't just stuff it into output o_string, |
| 6291 | * expanded result may need to be globbed |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 6292 | * and $IFS-split */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6293 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
| 6294 | G.last_exitcode = process_command_subs(&subst_result, arg); |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 6295 | G.expand_exitcode = G.last_exitcode; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6296 | debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data); |
| 6297 | val = subst_result.data; |
| 6298 | goto store_val; |
| 6299 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 6300 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6301 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
| 6302 | arith_t res; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6303 | |
| 6304 | arg++; /* skip '+' */ |
| 6305 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
| 6306 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 6307 | res = expand_and_evaluate_arith(arg, NULL); |
Denys Vlasenko | bed7c81 | 2010-09-16 11:50:46 +0200 | [diff] [blame] | 6308 | debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res); |
| 6309 | sprintf(arith_buf, ARITH_FMT, res); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6310 | val = arith_buf; |
| 6311 | break; |
| 6312 | } |
| 6313 | #endif |
| 6314 | default: |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6315 | val = expand_one_var(&to_be_freed, arg, &p); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6316 | IF_HUSH_TICK(store_val:) |
| 6317 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6318 | debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, |
| 6319 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6320 | if (val && val[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6321 | n = expand_on_ifs(&ended_in_ifs, output, n, val); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6322 | val = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6323 | } |
| 6324 | } else { /* quoted $VAR, val will be appended below */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 6325 | output->has_quoted_part = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6326 | debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, |
| 6327 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6328 | } |
| 6329 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6330 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
| 6331 | |
| 6332 | if (val && val[0]) { |
| 6333 | o_addQstr(output, val); |
| 6334 | } |
| 6335 | free(to_be_freed); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 6336 | |
| 6337 | /* Restore NULL'ed SPECIAL_VAR_SYMBOL. |
| 6338 | * Do the check to avoid writing to a const string. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6339 | if (*p != SPECIAL_VAR_SYMBOL) |
| 6340 | *p = SPECIAL_VAR_SYMBOL; |
| 6341 | |
| 6342 | #if ENABLE_HUSH_TICK |
| 6343 | o_free(&subst_result); |
| 6344 | #endif |
| 6345 | arg = ++p; |
| 6346 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 6347 | |
| 6348 | if (arg[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6349 | if (ended_in_ifs) { |
| 6350 | o_addchr(output, '\0'); |
| 6351 | n = o_save_ptr(output, n); |
| 6352 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6353 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 6354 | /* this part is literal, and it was already pre-quoted |
| 6355 | * if needed (much earlier), do not use o_addQstr here! */ |
| 6356 | o_addstr_with_NUL(output, arg); |
| 6357 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 6358 | } 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] | 6359 | && !(cant_be_null & 0x80) /* and all vars were not quoted. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6360 | ) { |
| 6361 | n--; |
| 6362 | /* allow to reuse list[n] later without re-growth */ |
| 6363 | output->has_empty_slot = 1; |
| 6364 | } else { |
| 6365 | o_addchr(output, '\0'); |
| 6366 | } |
| 6367 | |
| 6368 | return n; |
| 6369 | } |
| 6370 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6371 | static char **expand_variables(char **argv, unsigned expflags) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6372 | { |
| 6373 | int n; |
| 6374 | char **list; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6375 | o_string output = NULL_O_STRING; |
| 6376 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6377 | output.o_expflags = expflags; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6378 | |
| 6379 | n = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6380 | while (*argv) { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6381 | n = expand_vars_to_list(&output, n, *argv); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6382 | argv++; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6383 | } |
| 6384 | debug_print_list("expand_variables", &output, n); |
| 6385 | |
| 6386 | /* output.data (malloced in one block) gets returned in "list" */ |
| 6387 | list = o_finalize_list(&output, n); |
| 6388 | debug_print_strings("expand_variables[1]", list); |
| 6389 | return list; |
| 6390 | } |
| 6391 | |
| 6392 | static char **expand_strvec_to_strvec(char **argv) |
| 6393 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6394 | return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6395 | } |
| 6396 | |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 6397 | #if defined(CMD_SINGLEWORD_NOGLOB) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6398 | static char **expand_strvec_to_strvec_singleword_noglob(char **argv) |
| 6399 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6400 | return expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6401 | } |
| 6402 | #endif |
| 6403 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 6404 | /* Used for expansion of right hand of assignments, |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 6405 | * $((...)), heredocs, variable expansion parts. |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 6406 | * |
| 6407 | * NB: should NOT do globbing! |
| 6408 | * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*" |
| 6409 | */ |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 6410 | static char *expand_string_to_string(const char *str, int EXP_flags, int do_unbackslash) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6411 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 6412 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6413 | const int do_unbackslash = 1; |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 6414 | const int EXP_flags = EXP_FLAG_ESC_GLOB_CHARS; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6415 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6416 | char *argv[2], **list; |
| 6417 | |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6418 | debug_printf_expand("string_to_string<='%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6419 | /* This is generally an optimization, but it also |
| 6420 | * handles "", which otherwise trips over !list[0] check below. |
| 6421 | * (is this ever happens that we actually get str="" here?) |
| 6422 | */ |
| 6423 | if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) { |
| 6424 | //TODO: Can use on strings with \ too, just unbackslash() them? |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6425 | debug_printf_expand("string_to_string(fast)=>'%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6426 | return xstrdup(str); |
| 6427 | } |
| 6428 | |
| 6429 | argv[0] = (char*)str; |
| 6430 | argv[1] = NULL; |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 6431 | list = expand_variables(argv, EXP_flags | EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6432 | if (HUSH_DEBUG) |
| 6433 | if (!list[0] || list[1]) |
| 6434 | bb_error_msg_and_die("BUG in varexp2"); |
| 6435 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 6436 | overlapping_strcpy((char*)list, list[0]); |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6437 | if (do_unbackslash) |
| 6438 | unbackslash((char*)list); |
| 6439 | debug_printf_expand("string_to_string=>'%s'\n", (char*)list); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6440 | return (char*)list; |
| 6441 | } |
| 6442 | |
Denys Vlasenko | abf7556 | 2018-04-02 17:25:18 +0200 | [diff] [blame] | 6443 | #if 0 |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6444 | static char* expand_strvec_to_string(char **argv) |
| 6445 | { |
| 6446 | char **list; |
| 6447 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6448 | list = expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6449 | /* Convert all NULs to spaces */ |
| 6450 | if (list[0]) { |
| 6451 | int n = 1; |
| 6452 | while (list[n]) { |
| 6453 | if (HUSH_DEBUG) |
| 6454 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 6455 | bb_error_msg_and_die("BUG in varexp3"); |
| 6456 | /* bash uses ' ' regardless of $IFS contents */ |
| 6457 | list[n][-1] = ' '; |
| 6458 | n++; |
| 6459 | } |
| 6460 | } |
Denys Vlasenko | 78c9c73 | 2016-09-29 01:44:17 +0200 | [diff] [blame] | 6461 | overlapping_strcpy((char*)list, list[0] ? list[0] : ""); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6462 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 6463 | return (char*)list; |
| 6464 | } |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 6465 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6466 | |
| 6467 | static char **expand_assignments(char **argv, int count) |
| 6468 | { |
| 6469 | int i; |
| 6470 | char **p; |
| 6471 | |
| 6472 | G.expanded_assignments = p = NULL; |
| 6473 | /* Expand assignments into one string each */ |
| 6474 | for (i = 0; i < count; i++) { |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 6475 | p = add_string_to_strings(p, |
| 6476 | expand_string_to_string(argv[i], |
| 6477 | EXP_FLAG_ESC_GLOB_CHARS, |
| 6478 | /*unbackslash:*/ 1 |
| 6479 | ) |
| 6480 | ); |
| 6481 | G.expanded_assignments = p; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6482 | } |
| 6483 | G.expanded_assignments = NULL; |
| 6484 | return p; |
| 6485 | } |
| 6486 | |
| 6487 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6488 | static void switch_off_special_sigs(unsigned mask) |
| 6489 | { |
| 6490 | unsigned sig = 0; |
| 6491 | while ((mask >>= 1) != 0) { |
| 6492 | sig++; |
| 6493 | if (!(mask & 1)) |
| 6494 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6495 | #if ENABLE_HUSH_TRAP |
| 6496 | if (G_traps) { |
| 6497 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6498 | /* trap is '', has to remain SIG_IGN */ |
| 6499 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6500 | free(G_traps[sig]); |
| 6501 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6502 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6503 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6504 | /* We are here only if no trap or trap was not '' */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6505 | install_sighandler(sig, SIG_DFL); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6506 | } |
| 6507 | } |
| 6508 | |
Denys Vlasenko | b347df9 | 2011-08-09 22:49:15 +0200 | [diff] [blame] | 6509 | #if BB_MMU |
| 6510 | /* never called */ |
| 6511 | void re_execute_shell(char ***to_free, const char *s, |
| 6512 | char *g_argv0, char **g_argv, |
| 6513 | char **builtin_argv) NORETURN; |
| 6514 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6515 | static void reset_traps_to_defaults(void) |
| 6516 | { |
| 6517 | /* This function is always called in a child shell |
| 6518 | * after fork (not vfork, NOMMU doesn't use this function). |
| 6519 | */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6520 | IF_HUSH_TRAP(unsigned sig;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6521 | unsigned mask; |
| 6522 | |
| 6523 | /* Child shells are not interactive. |
| 6524 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 6525 | * Testcase: (while :; do :; done) + ^Z should background. |
| 6526 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
| 6527 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6528 | mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6529 | if (!G_traps && !mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6530 | return; /* already no traps and no special sigs */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6531 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6532 | /* Switch off special sigs */ |
| 6533 | switch_off_special_sigs(mask); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6534 | # if ENABLE_HUSH_JOB |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6535 | G_fatal_sig_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6536 | # endif |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 6537 | G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 6538 | /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS |
| 6539 | * remain set in G.special_sig_mask */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6540 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6541 | # if ENABLE_HUSH_TRAP |
| 6542 | if (!G_traps) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6543 | return; |
| 6544 | |
| 6545 | /* Reset all sigs to default except ones with empty traps */ |
| 6546 | for (sig = 0; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6547 | if (!G_traps[sig]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6548 | continue; /* no trap: nothing to do */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6549 | if (!G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6550 | continue; /* empty trap: has to remain SIG_IGN */ |
| 6551 | /* sig has non-empty trap, reset it: */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6552 | free(G_traps[sig]); |
| 6553 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6554 | /* There is no signal for trap 0 (EXIT) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6555 | if (sig == 0) |
| 6556 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6557 | install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6558 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6559 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6560 | } |
| 6561 | |
| 6562 | #else /* !BB_MMU */ |
| 6563 | |
| 6564 | static void re_execute_shell(char ***to_free, const char *s, |
| 6565 | char *g_argv0, char **g_argv, |
| 6566 | char **builtin_argv) NORETURN; |
| 6567 | static void re_execute_shell(char ***to_free, const char *s, |
| 6568 | char *g_argv0, char **g_argv, |
| 6569 | char **builtin_argv) |
| 6570 | { |
| 6571 | # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x")) |
| 6572 | /* delims + 2 * (number of bytes in printed hex numbers) */ |
| 6573 | char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)]; |
| 6574 | char *heredoc_argv[4]; |
| 6575 | struct variable *cur; |
| 6576 | # if ENABLE_HUSH_FUNCTIONS |
| 6577 | struct function *funcp; |
| 6578 | # endif |
| 6579 | char **argv, **pp; |
| 6580 | unsigned cnt; |
| 6581 | unsigned long long empty_trap_mask; |
| 6582 | |
| 6583 | if (!g_argv0) { /* heredoc */ |
| 6584 | argv = heredoc_argv; |
| 6585 | argv[0] = (char *) G.argv0_for_re_execing; |
| 6586 | argv[1] = (char *) "-<"; |
| 6587 | argv[2] = (char *) s; |
| 6588 | argv[3] = NULL; |
| 6589 | pp = &argv[3]; /* used as pointer to empty environment */ |
| 6590 | goto do_exec; |
| 6591 | } |
| 6592 | |
| 6593 | cnt = 0; |
| 6594 | pp = builtin_argv; |
| 6595 | if (pp) while (*pp++) |
| 6596 | cnt++; |
| 6597 | |
| 6598 | empty_trap_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6599 | if (G_traps) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6600 | int sig; |
| 6601 | for (sig = 1; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6602 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6603 | empty_trap_mask |= 1LL << sig; |
| 6604 | } |
| 6605 | } |
| 6606 | |
| 6607 | sprintf(param_buf, NOMMU_HACK_FMT |
| 6608 | , (unsigned) G.root_pid |
| 6609 | , (unsigned) G.root_ppid |
| 6610 | , (unsigned) G.last_bg_pid |
| 6611 | , (unsigned) G.last_exitcode |
| 6612 | , cnt |
| 6613 | , empty_trap_mask |
| 6614 | IF_HUSH_LOOPS(, G.depth_of_loop) |
| 6615 | ); |
| 6616 | # undef NOMMU_HACK_FMT |
| 6617 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...> |
| 6618 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
| 6619 | */ |
| 6620 | cnt += 6; |
| 6621 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6622 | if (!cur->flg_export || cur->flg_read_only) |
| 6623 | cnt += 2; |
| 6624 | } |
| 6625 | # if ENABLE_HUSH_FUNCTIONS |
| 6626 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 6627 | cnt += 3; |
| 6628 | # endif |
| 6629 | pp = g_argv; |
| 6630 | while (*pp++) |
| 6631 | cnt++; |
| 6632 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
| 6633 | *pp++ = (char *) G.argv0_for_re_execing; |
| 6634 | *pp++ = param_buf; |
| 6635 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6636 | if (strcmp(cur->varstr, hush_version_str) == 0) |
| 6637 | continue; |
| 6638 | if (cur->flg_read_only) { |
| 6639 | *pp++ = (char *) "-R"; |
| 6640 | *pp++ = cur->varstr; |
| 6641 | } else if (!cur->flg_export) { |
| 6642 | *pp++ = (char *) "-V"; |
| 6643 | *pp++ = cur->varstr; |
| 6644 | } |
| 6645 | } |
| 6646 | # if ENABLE_HUSH_FUNCTIONS |
| 6647 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 6648 | *pp++ = (char *) "-F"; |
| 6649 | *pp++ = funcp->name; |
| 6650 | *pp++ = funcp->body_as_string; |
| 6651 | } |
| 6652 | # endif |
| 6653 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 6654 | * |
| 6655 | * However, POSIX says that subshells reset signals with traps |
| 6656 | * to SIG_DFL. |
| 6657 | * I tested bash-3.2 and it not only does that with true subshells |
| 6658 | * of the form ( list ), but with any forked children shells. |
| 6659 | * I set trap "echo W" WINCH; and then tried: |
| 6660 | * |
| 6661 | * { echo 1; sleep 20; echo 2; } & |
| 6662 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 6663 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 6664 | * |
| 6665 | * In all these cases sending SIGWINCH to the child shell |
| 6666 | * did not run the trap. If I add trap "echo V" WINCH; |
| 6667 | * _inside_ group (just before echo 1), it works. |
| 6668 | * |
| 6669 | * 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] | 6670 | */ |
| 6671 | *pp++ = (char *) "-c"; |
| 6672 | *pp++ = (char *) s; |
| 6673 | if (builtin_argv) { |
| 6674 | while (*++builtin_argv) |
| 6675 | *pp++ = *builtin_argv; |
| 6676 | *pp++ = (char *) ""; |
| 6677 | } |
| 6678 | *pp++ = g_argv0; |
| 6679 | while (*g_argv) |
| 6680 | *pp++ = *g_argv++; |
| 6681 | /* *pp = NULL; - is already there */ |
| 6682 | pp = environ; |
| 6683 | |
| 6684 | do_exec: |
| 6685 | 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] | 6686 | /* Don't propagate SIG_IGN to the child */ |
| 6687 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 6688 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6689 | execve(bb_busybox_exec_path, argv, pp); |
| 6690 | /* Fallback. Useful for init=/bin/hush usage etc */ |
| 6691 | if (argv[0][0] == '/') |
| 6692 | execve(argv[0], argv, pp); |
| 6693 | xfunc_error_retval = 127; |
| 6694 | bb_error_msg_and_die("can't re-execute the shell"); |
| 6695 | } |
| 6696 | #endif /* !BB_MMU */ |
| 6697 | |
| 6698 | |
| 6699 | static int run_and_free_list(struct pipe *pi); |
| 6700 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6701 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6702 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 6703 | * end_trigger controls how often we stop parsing |
| 6704 | * NUL: parse all, execute, return |
| 6705 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 6706 | */ |
| 6707 | 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] | 6708 | { |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6709 | /* Why we need empty flag? |
| 6710 | * An obscure corner case "false; ``; echo $?": |
| 6711 | * empty command in `` should still set $? to 0. |
| 6712 | * But we can't just set $? to 0 at the start, |
| 6713 | * this breaks "false; echo `echo $?`" case. |
| 6714 | */ |
| 6715 | bool empty = 1; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6716 | while (1) { |
| 6717 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 6718 | |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 6719 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 8d6eab3 | 2018-04-07 17:01:31 +0200 | [diff] [blame] | 6720 | if (end_trigger == ';') { |
| 6721 | G.promptmode = 0; /* PS1 */ |
| 6722 | debug_printf_prompt("%s promptmode=%d\n", __func__, G.promptmode); |
| 6723 | } |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 6724 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6725 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 6726 | if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */ |
| 6727 | /* If we are in "big" script |
| 6728 | * (not in `cmd` or something similar)... |
| 6729 | */ |
| 6730 | if (pipe_list == ERR_PTR && end_trigger == ';') { |
| 6731 | /* Discard cached input (rest of line) */ |
| 6732 | int ch = inp->last_char; |
| 6733 | while (ch != EOF && ch != '\n') { |
| 6734 | //bb_error_msg("Discarded:'%c'", ch); |
| 6735 | ch = i_getch(inp); |
| 6736 | } |
| 6737 | /* Force prompt */ |
| 6738 | inp->p = NULL; |
| 6739 | /* This stream isn't empty */ |
| 6740 | empty = 0; |
| 6741 | continue; |
| 6742 | } |
| 6743 | if (!pipe_list && empty) |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6744 | G.last_exitcode = 0; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6745 | break; |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6746 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6747 | debug_print_tree(pipe_list, 0); |
| 6748 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 6749 | run_and_free_list(pipe_list); |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6750 | empty = 0; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 6751 | if (G_flag_return_in_progress == 1) |
Denys Vlasenko | 68d5cb5 | 2011-03-24 02:50:03 +0100 | [diff] [blame] | 6752 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6753 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6754 | } |
| 6755 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6756 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6757 | { |
| 6758 | struct in_str input; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6759 | //IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;) |
| 6760 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6761 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6762 | parse_and_run_stream(&input, '\0'); |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6763 | //IF_HUSH_LINENO_VAR(G.lineno = sv;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6764 | } |
| 6765 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6766 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6767 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6768 | struct in_str input; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6769 | IF_HUSH_LINENO_VAR(unsigned sv = G.lineno;) |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 6770 | |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6771 | IF_HUSH_LINENO_VAR(G.lineno = 1;) |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 6772 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6773 | parse_and_run_stream(&input, ';'); |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6774 | IF_HUSH_LINENO_VAR(G.lineno = sv;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6775 | } |
| 6776 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6777 | #if ENABLE_HUSH_TICK |
| 6778 | static FILE *generate_stream_from_string(const char *s, pid_t *pid_p) |
| 6779 | { |
| 6780 | pid_t pid; |
| 6781 | int channel[2]; |
| 6782 | # if !BB_MMU |
| 6783 | char **to_free = NULL; |
| 6784 | # endif |
| 6785 | |
| 6786 | xpipe(channel); |
| 6787 | pid = BB_MMU ? xfork() : xvfork(); |
| 6788 | if (pid == 0) { /* child */ |
| 6789 | disable_restore_tty_pgrp_on_exit(); |
| 6790 | /* Process substitution is not considered to be usual |
| 6791 | * 'command execution'. |
| 6792 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 6793 | */ |
| 6794 | bb_signals(0 |
| 6795 | + (1 << SIGTSTP) |
| 6796 | + (1 << SIGTTIN) |
| 6797 | + (1 << SIGTTOU) |
| 6798 | , SIG_IGN); |
| 6799 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 6800 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 6801 | xmove_fd(channel[1], 1); |
| 6802 | /* Prevent it from trying to handle ctrl-z etc */ |
| 6803 | IF_HUSH_JOB(G.run_list_level = 1;) |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6804 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6805 | /* Awful hack for `trap` or $(trap). |
| 6806 | * |
| 6807 | * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html |
| 6808 | * contains an example where "trap" is executed in a subshell: |
| 6809 | * |
| 6810 | * save_traps=$(trap) |
| 6811 | * ... |
| 6812 | * eval "$save_traps" |
| 6813 | * |
| 6814 | * Standard does not say that "trap" in subshell shall print |
| 6815 | * parent shell's traps. It only says that its output |
| 6816 | * must have suitable form, but then, in the above example |
| 6817 | * (which is not supposed to be normative), it implies that. |
| 6818 | * |
| 6819 | * bash (and probably other shell) does implement it |
| 6820 | * (traps are reset to defaults, but "trap" still shows them), |
| 6821 | * but as a result, "trap" logic is hopelessly messed up: |
| 6822 | * |
| 6823 | * # trap |
| 6824 | * trap -- 'echo Ho' SIGWINCH <--- we have a handler |
| 6825 | * # (trap) <--- trap is in subshell - no output (correct, traps are reset) |
| 6826 | * # true | trap <--- trap is in subshell - no output (ditto) |
| 6827 | * # echo `true | trap` <--- in subshell - output (but traps are reset!) |
| 6828 | * trap -- 'echo Ho' SIGWINCH |
| 6829 | * # echo `(trap)` <--- in subshell in subshell - output |
| 6830 | * trap -- 'echo Ho' SIGWINCH |
| 6831 | * # echo `true | (trap)` <--- in subshell in subshell in subshell - output! |
| 6832 | * trap -- 'echo Ho' SIGWINCH |
| 6833 | * |
| 6834 | * The rules when to forget and when to not forget traps |
| 6835 | * get really complex and nonsensical. |
| 6836 | * |
| 6837 | * Our solution: ONLY bare $(trap) or `trap` is special. |
| 6838 | */ |
| 6839 | s = skip_whitespace(s); |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 6840 | if (is_prefixed_with(s, "trap") |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6841 | && skip_whitespace(s + 4)[0] == '\0' |
| 6842 | ) { |
| 6843 | static const char *const argv[] = { NULL, NULL }; |
| 6844 | builtin_trap((char**)argv); |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 6845 | fflush_all(); /* important */ |
| 6846 | _exit(0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6847 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6848 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6849 | # if BB_MMU |
| 6850 | reset_traps_to_defaults(); |
| 6851 | parse_and_run_string(s); |
| 6852 | _exit(G.last_exitcode); |
| 6853 | # else |
| 6854 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
| 6855 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 6856 | * huge=`cat BIG` # was blocking here forever |
| 6857 | * echo OK |
| 6858 | */ |
| 6859 | re_execute_shell(&to_free, |
| 6860 | s, |
| 6861 | G.global_argv[0], |
| 6862 | G.global_argv + 1, |
| 6863 | NULL); |
| 6864 | # endif |
| 6865 | } |
| 6866 | |
| 6867 | /* parent */ |
| 6868 | *pid_p = pid; |
| 6869 | # if ENABLE_HUSH_FAST |
| 6870 | G.count_SIGCHLD++; |
| 6871 | //bb_error_msg("[%d] fork in generate_stream_from_string:" |
| 6872 | // " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", |
| 6873 | // getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6874 | # endif |
| 6875 | enable_restore_tty_pgrp_on_exit(); |
| 6876 | # if !BB_MMU |
| 6877 | free(to_free); |
| 6878 | # endif |
| 6879 | close(channel[1]); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6880 | return remember_FILE(xfdopen_for_read(channel[0])); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6881 | } |
| 6882 | |
| 6883 | /* Return code is exit status of the process that is run. */ |
| 6884 | static int process_command_subs(o_string *dest, const char *s) |
| 6885 | { |
| 6886 | FILE *fp; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6887 | pid_t pid; |
| 6888 | int status, ch, eol_cnt; |
| 6889 | |
| 6890 | fp = generate_stream_from_string(s, &pid); |
| 6891 | |
| 6892 | /* Now send results of command back into original context */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6893 | eol_cnt = 0; |
Denys Vlasenko | aa617ac | 2018-02-13 15:30:13 +0100 | [diff] [blame] | 6894 | while ((ch = getc(fp)) != EOF) { |
| 6895 | if (ch == '\0') |
| 6896 | continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6897 | if (ch == '\n') { |
| 6898 | eol_cnt++; |
| 6899 | continue; |
| 6900 | } |
| 6901 | while (eol_cnt) { |
| 6902 | o_addchr(dest, '\n'); |
| 6903 | eol_cnt--; |
| 6904 | } |
| 6905 | o_addQchr(dest, ch); |
| 6906 | } |
| 6907 | |
| 6908 | debug_printf("done reading from `cmd` pipe, closing it\n"); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6909 | fclose_and_forget(fp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6910 | /* We need to extract exitcode. Test case |
| 6911 | * "true; echo `sleep 1; false` $?" |
| 6912 | * should print 1 */ |
| 6913 | safe_waitpid(pid, &status, 0); |
| 6914 | debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status)); |
| 6915 | return WEXITSTATUS(status); |
| 6916 | } |
| 6917 | #endif /* ENABLE_HUSH_TICK */ |
| 6918 | |
| 6919 | |
| 6920 | static void setup_heredoc(struct redir_struct *redir) |
| 6921 | { |
| 6922 | struct fd_pair pair; |
| 6923 | pid_t pid; |
| 6924 | int len, written; |
| 6925 | /* the _body_ of heredoc (misleading field name) */ |
| 6926 | const char *heredoc = redir->rd_filename; |
| 6927 | char *expanded; |
| 6928 | #if !BB_MMU |
| 6929 | char **to_free; |
| 6930 | #endif |
| 6931 | |
| 6932 | expanded = NULL; |
| 6933 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6934 | expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6935 | if (expanded) |
| 6936 | heredoc = expanded; |
| 6937 | } |
| 6938 | len = strlen(heredoc); |
| 6939 | |
| 6940 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
| 6941 | xpiped_pair(pair); |
| 6942 | xmove_fd(pair.rd, redir->rd_fd); |
| 6943 | |
| 6944 | /* Try writing without forking. Newer kernels have |
| 6945 | * dynamically growing pipes. Must use non-blocking write! */ |
| 6946 | ndelay_on(pair.wr); |
| 6947 | while (1) { |
| 6948 | written = write(pair.wr, heredoc, len); |
| 6949 | if (written <= 0) |
| 6950 | break; |
| 6951 | len -= written; |
| 6952 | if (len == 0) { |
| 6953 | close(pair.wr); |
| 6954 | free(expanded); |
| 6955 | return; |
| 6956 | } |
| 6957 | heredoc += written; |
| 6958 | } |
| 6959 | ndelay_off(pair.wr); |
| 6960 | |
| 6961 | /* Okay, pipe buffer was not big enough */ |
| 6962 | /* Note: we must not create a stray child (bastard? :) |
| 6963 | * for the unsuspecting parent process. Child creates a grandchild |
| 6964 | * and exits before parent execs the process which consumes heredoc |
| 6965 | * (that exec happens after we return from this function) */ |
| 6966 | #if !BB_MMU |
| 6967 | to_free = NULL; |
| 6968 | #endif |
| 6969 | pid = xvfork(); |
| 6970 | if (pid == 0) { |
| 6971 | /* child */ |
| 6972 | disable_restore_tty_pgrp_on_exit(); |
| 6973 | pid = BB_MMU ? xfork() : xvfork(); |
| 6974 | if (pid != 0) |
| 6975 | _exit(0); |
| 6976 | /* grandchild */ |
| 6977 | close(redir->rd_fd); /* read side of the pipe */ |
| 6978 | #if BB_MMU |
| 6979 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
| 6980 | _exit(0); |
| 6981 | #else |
| 6982 | /* Delegate blocking writes to another process */ |
| 6983 | xmove_fd(pair.wr, STDOUT_FILENO); |
| 6984 | re_execute_shell(&to_free, heredoc, NULL, NULL, NULL); |
| 6985 | #endif |
| 6986 | } |
| 6987 | /* parent */ |
| 6988 | #if ENABLE_HUSH_FAST |
| 6989 | G.count_SIGCHLD++; |
| 6990 | //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6991 | #endif |
| 6992 | enable_restore_tty_pgrp_on_exit(); |
| 6993 | #if !BB_MMU |
| 6994 | free(to_free); |
| 6995 | #endif |
| 6996 | close(pair.wr); |
| 6997 | free(expanded); |
| 6998 | wait(NULL); /* wait till child has died */ |
| 6999 | } |
| 7000 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7001 | struct squirrel { |
| 7002 | int orig_fd; |
| 7003 | int moved_to; |
| 7004 | /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */ |
| 7005 | /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */ |
| 7006 | }; |
| 7007 | |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7008 | static struct squirrel *append_squirrel(struct squirrel *sq, int i, int orig, int moved) |
| 7009 | { |
| 7010 | sq = xrealloc(sq, (i + 2) * sizeof(sq[0])); |
| 7011 | sq[i].orig_fd = orig; |
| 7012 | sq[i].moved_to = moved; |
| 7013 | sq[i+1].orig_fd = -1; /* end marker */ |
| 7014 | return sq; |
| 7015 | } |
| 7016 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7017 | static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd) |
| 7018 | { |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7019 | int moved_to; |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7020 | int i; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7021 | |
Denys Vlasenko | d16e612 | 2017-08-11 15:41:39 +0200 | [diff] [blame] | 7022 | i = 0; |
| 7023 | if (sq) for (; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7024 | /* If we collide with an already moved fd... */ |
| 7025 | if (fd == sq[i].moved_to) { |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 7026 | sq[i].moved_to = dup_CLOEXEC(sq[i].moved_to, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7027 | debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to); |
| 7028 | if (sq[i].moved_to < 0) /* what? */ |
| 7029 | xfunc_die(); |
| 7030 | return sq; |
| 7031 | } |
| 7032 | if (fd == sq[i].orig_fd) { |
| 7033 | /* Example: echo Hello >/dev/null 1>&2 */ |
| 7034 | debug_printf_redir("redirect_fd %d: already moved\n", fd); |
| 7035 | return sq; |
| 7036 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7037 | } |
| 7038 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7039 | /* 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] | 7040 | moved_to = dup_CLOEXEC(fd, avoid_fd); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7041 | debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, moved_to); |
| 7042 | if (moved_to < 0 && errno != EBADF) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7043 | xfunc_die(); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7044 | return append_squirrel(sq, i, fd, moved_to); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7045 | } |
| 7046 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7047 | static struct squirrel *add_squirrel_closed(struct squirrel *sq, int fd) |
| 7048 | { |
| 7049 | int i; |
| 7050 | |
Denys Vlasenko | d16e612 | 2017-08-11 15:41:39 +0200 | [diff] [blame] | 7051 | i = 0; |
| 7052 | if (sq) for (; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7053 | /* If we collide with an already moved fd... */ |
| 7054 | if (fd == sq[i].orig_fd) { |
| 7055 | /* Examples: |
| 7056 | * "echo 3>FILE 3>&- 3>FILE" |
| 7057 | * "echo 3>&- 3>FILE" |
| 7058 | * No need for last redirect to insert |
| 7059 | * another "need to close 3" indicator. |
| 7060 | */ |
| 7061 | debug_printf_redir("redirect_fd %d: already moved or closed\n", fd); |
| 7062 | return sq; |
| 7063 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7064 | } |
| 7065 | |
| 7066 | debug_printf_redir("redirect_fd %d: previous fd was closed\n", fd); |
| 7067 | return append_squirrel(sq, i, fd, -1); |
| 7068 | } |
| 7069 | |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7070 | /* fd: redirect wants this fd to be used (e.g. 3>file). |
| 7071 | * Move all conflicting internally used fds, |
| 7072 | * and remember them so that we can restore them later. |
| 7073 | */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7074 | 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] | 7075 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7076 | if (avoid_fd < 9) /* the important case here is that it can be -1 */ |
| 7077 | avoid_fd = 9; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7078 | |
| 7079 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7080 | if (fd == G.interactive_fd) { |
| 7081 | /* Testcase: "ls -l /proc/$$/fd 255>&-" should work */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7082 | G.interactive_fd = xdup_CLOEXEC_and_close(G.interactive_fd, avoid_fd); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7083 | debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd); |
| 7084 | return 1; /* "we closed fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7085 | } |
| 7086 | #endif |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7087 | /* Are we called from setup_redirects(squirrel==NULL)? Two cases: |
| 7088 | * (1) Redirect in a forked child. No need to save FILEs' fds, |
| 7089 | * we aren't going to use them anymore, ok to trash. |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7090 | * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds, |
| 7091 | * but how are we doing to restore them? |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7092 | * "fileno(fd) = new_fd" can't be done. |
| 7093 | */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7094 | if (!sqp) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7095 | return 0; |
| 7096 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7097 | /* If this one of script's fds? */ |
| 7098 | if (save_FILEs_on_redirect(fd, avoid_fd)) |
| 7099 | return 1; /* yes. "we closed fd" */ |
| 7100 | |
| 7101 | /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */ |
| 7102 | *sqp = add_squirrel(*sqp, fd, avoid_fd); |
| 7103 | return 0; /* "we did not close fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7104 | } |
| 7105 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7106 | static void restore_redirects(struct squirrel *sq) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7107 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7108 | if (sq) { |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7109 | int i; |
| 7110 | for (i = 0; sq[i].orig_fd >= 0; i++) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7111 | if (sq[i].moved_to >= 0) { |
| 7112 | /* We simply die on error */ |
| 7113 | debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd); |
| 7114 | xmove_fd(sq[i].moved_to, sq[i].orig_fd); |
| 7115 | } else { |
| 7116 | /* cmd1 9>FILE; cmd2_should_see_fd9_closed */ |
| 7117 | debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd); |
| 7118 | close(sq[i].orig_fd); |
| 7119 | } |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7120 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7121 | free(sq); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7122 | } |
| 7123 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7124 | /* If moved, G.interactive_fd stays on new fd, not restoring it */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 7125 | |
| 7126 | restore_redirected_FILEs(); |
| 7127 | } |
| 7128 | |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 7129 | #if ENABLE_FEATURE_SH_STANDALONE && BB_MMU |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7130 | static void close_saved_fds_and_FILE_fds(void) |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 7131 | { |
| 7132 | if (G_interactive_fd) |
| 7133 | close(G_interactive_fd); |
| 7134 | close_all_FILE_list(); |
| 7135 | } |
| 7136 | #endif |
| 7137 | |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7138 | static int internally_opened_fd(int fd, struct squirrel *sq) |
| 7139 | { |
| 7140 | int i; |
| 7141 | |
| 7142 | #if ENABLE_HUSH_INTERACTIVE |
| 7143 | if (fd == G.interactive_fd) |
| 7144 | return 1; |
| 7145 | #endif |
| 7146 | /* If this one of script's fds? */ |
| 7147 | if (fd_in_FILEs(fd)) |
| 7148 | return 1; |
| 7149 | |
| 7150 | if (sq) for (i = 0; sq[i].orig_fd >= 0; i++) { |
| 7151 | if (fd == sq[i].moved_to) |
| 7152 | return 1; |
| 7153 | } |
| 7154 | return 0; |
| 7155 | } |
| 7156 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7157 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 7158 | * and stderr if they are redirected. */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7159 | static int setup_redirects(struct command *prog, struct squirrel **sqp) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7160 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7161 | struct redir_struct *redir; |
| 7162 | |
| 7163 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7164 | int newfd; |
| 7165 | int closed; |
| 7166 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7167 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7168 | /* "rd_fd<<HERE" case */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7169 | save_fd_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7170 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 7171 | * of the heredoc */ |
| 7172 | debug_printf_parse("set heredoc '%s'\n", |
| 7173 | redir->rd_filename); |
| 7174 | setup_heredoc(redir); |
| 7175 | continue; |
| 7176 | } |
| 7177 | |
| 7178 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7179 | /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7180 | char *p; |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7181 | int mode; |
| 7182 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7183 | if (redir->rd_filename == NULL) { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 7184 | /* |
| 7185 | * Examples: |
| 7186 | * "cmd >" (no filename) |
| 7187 | * "cmd > <file" (2nd redirect starts too early) |
| 7188 | */ |
Denys Vlasenko | 3970120 | 2017-08-02 19:44:05 +0200 | [diff] [blame] | 7189 | syntax_error("invalid redirect"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7190 | continue; |
| 7191 | } |
| 7192 | mode = redir_table[redir->rd_type].mode; |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 7193 | p = expand_string_to_string(redir->rd_filename, |
| 7194 | EXP_FLAG_ESC_GLOB_CHARS, /*unbackslash:*/ 1); |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7195 | newfd = open_or_warn(p, mode); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7196 | free(p); |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7197 | if (newfd < 0) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7198 | /* Error message from open_or_warn can be lost |
| 7199 | * if stderr has been redirected, but bash |
| 7200 | * and ash both lose it as well |
| 7201 | * (though zsh doesn't!) |
| 7202 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7203 | return 1; |
| 7204 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7205 | if (newfd == redir->rd_fd && sqp) { |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7206 | /* open() gave us precisely the fd we wanted. |
| 7207 | * This means that this fd was not busy |
| 7208 | * (not opened to anywhere). |
| 7209 | * Remember to close it on restore: |
| 7210 | */ |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7211 | *sqp = add_squirrel_closed(*sqp, newfd); |
| 7212 | debug_printf_redir("redir to previously closed fd %d\n", newfd); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame] | 7213 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7214 | } else { |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7215 | /* "rd_fd>&rd_dup" or "rd_fd>&-" case */ |
| 7216 | newfd = redir->rd_dup; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7217 | } |
| 7218 | |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7219 | if (newfd == redir->rd_fd) |
| 7220 | continue; |
| 7221 | |
| 7222 | /* if "N>FILE": move newfd to redir->rd_fd */ |
| 7223 | /* if "N>&M": dup newfd to redir->rd_fd */ |
| 7224 | /* if "N>&-": close redir->rd_fd (newfd is REDIRFD_CLOSE) */ |
| 7225 | |
| 7226 | closed = save_fd_on_redirect(redir->rd_fd, /*avoid:*/ newfd, sqp); |
| 7227 | if (newfd == REDIRFD_CLOSE) { |
| 7228 | /* "N>&-" means "close me" */ |
| 7229 | if (!closed) { |
| 7230 | /* ^^^ optimization: saving may already |
| 7231 | * have closed it. If not... */ |
| 7232 | close(redir->rd_fd); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7233 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7234 | /* Sometimes we do another close on restore, getting EBADF. |
| 7235 | * Consider "echo 3>FILE 3>&-" |
| 7236 | * first redirect remembers "need to close 3", |
| 7237 | * and second redirect closes 3! Restore code then closes 3 again. |
| 7238 | */ |
| 7239 | } else { |
Denys Vlasenko | 32fdf2f | 2017-07-31 04:32:06 +0200 | [diff] [blame] | 7240 | /* if newfd is a script fd or saved fd, simulate EBADF */ |
| 7241 | if (internally_opened_fd(newfd, sqp ? *sqp : NULL)) { |
| 7242 | //errno = EBADF; |
| 7243 | //bb_perror_msg_and_die("can't duplicate file descriptor"); |
| 7244 | newfd = -1; /* same effect as code above */ |
| 7245 | } |
Denys Vlasenko | 657e900 | 2017-07-30 23:34:04 +0200 | [diff] [blame] | 7246 | xdup2(newfd, redir->rd_fd); |
| 7247 | if (redir->rd_dup == REDIRFD_TO_FILE) |
| 7248 | /* "rd_fd > FILE" */ |
| 7249 | close(newfd); |
| 7250 | /* else: "rd_fd > rd_dup" */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7251 | } |
| 7252 | } |
| 7253 | return 0; |
| 7254 | } |
| 7255 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7256 | static char *find_in_path(const char *arg) |
| 7257 | { |
| 7258 | char *ret = NULL; |
| 7259 | const char *PATH = get_local_var_value("PATH"); |
| 7260 | |
| 7261 | if (!PATH) |
| 7262 | return NULL; |
| 7263 | |
| 7264 | while (1) { |
| 7265 | const char *end = strchrnul(PATH, ':'); |
| 7266 | int sz = end - PATH; /* must be int! */ |
| 7267 | |
| 7268 | free(ret); |
| 7269 | if (sz != 0) { |
| 7270 | ret = xasprintf("%.*s/%s", sz, PATH, arg); |
| 7271 | } else { |
| 7272 | /* We have xxx::yyyy in $PATH, |
| 7273 | * it means "use current dir" */ |
| 7274 | ret = xstrdup(arg); |
| 7275 | } |
| 7276 | if (access(ret, F_OK) == 0) |
| 7277 | break; |
| 7278 | |
| 7279 | if (*end == '\0') { |
| 7280 | free(ret); |
| 7281 | return NULL; |
| 7282 | } |
| 7283 | PATH = end + 1; |
| 7284 | } |
| 7285 | |
| 7286 | return ret; |
| 7287 | } |
| 7288 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7289 | static const struct built_in_command *find_builtin_helper(const char *name, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7290 | const struct built_in_command *x, |
| 7291 | const struct built_in_command *end) |
| 7292 | { |
| 7293 | while (x != end) { |
| 7294 | if (strcmp(name, x->b_cmd) != 0) { |
| 7295 | x++; |
| 7296 | continue; |
| 7297 | } |
| 7298 | debug_printf_exec("found builtin '%s'\n", name); |
| 7299 | return x; |
| 7300 | } |
| 7301 | return NULL; |
| 7302 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7303 | static const struct built_in_command *find_builtin1(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7304 | { |
| 7305 | return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]); |
| 7306 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7307 | static const struct built_in_command *find_builtin(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7308 | { |
| 7309 | const struct built_in_command *x = find_builtin1(name); |
| 7310 | if (x) |
| 7311 | return x; |
| 7312 | return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]); |
| 7313 | } |
| 7314 | |
| 7315 | #if ENABLE_HUSH_FUNCTIONS |
| 7316 | static struct function **find_function_slot(const char *name) |
| 7317 | { |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7318 | struct function *funcp; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7319 | struct function **funcpp = &G.top_func; |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7320 | |
| 7321 | while ((funcp = *funcpp) != NULL) { |
| 7322 | if (strcmp(name, funcp->name) == 0) { |
| 7323 | debug_printf_exec("found function '%s'\n", name); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7324 | break; |
| 7325 | } |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7326 | funcpp = &funcp->next; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7327 | } |
| 7328 | return funcpp; |
| 7329 | } |
| 7330 | |
Denys Vlasenko | 33f7c8f | 2018-03-06 17:21:57 +0100 | [diff] [blame] | 7331 | static ALWAYS_INLINE const struct function *find_function(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7332 | { |
| 7333 | const struct function *funcp = *find_function_slot(name); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7334 | return funcp; |
| 7335 | } |
| 7336 | |
| 7337 | /* Note: takes ownership on name ptr */ |
| 7338 | static struct function *new_function(char *name) |
| 7339 | { |
| 7340 | struct function **funcpp = find_function_slot(name); |
| 7341 | struct function *funcp = *funcpp; |
| 7342 | |
| 7343 | if (funcp != NULL) { |
| 7344 | struct command *cmd = funcp->parent_cmd; |
| 7345 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 7346 | if (!cmd) { |
| 7347 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 7348 | free(funcp->name); |
| 7349 | /* Note: if !funcp->body, do not free body_as_string! |
| 7350 | * This is a special case of "-F name body" function: |
| 7351 | * body_as_string was not malloced! */ |
| 7352 | if (funcp->body) { |
| 7353 | free_pipe_list(funcp->body); |
| 7354 | # if !BB_MMU |
| 7355 | free(funcp->body_as_string); |
| 7356 | # endif |
| 7357 | } |
| 7358 | } else { |
| 7359 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 7360 | cmd->argv[0] = funcp->name; |
| 7361 | cmd->group = funcp->body; |
| 7362 | # if !BB_MMU |
| 7363 | cmd->group_as_string = funcp->body_as_string; |
| 7364 | # endif |
| 7365 | } |
| 7366 | } else { |
| 7367 | debug_printf_exec("remembering new function '%s'\n", name); |
| 7368 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 7369 | /*funcp->next = NULL;*/ |
| 7370 | } |
| 7371 | |
| 7372 | funcp->name = name; |
| 7373 | return funcp; |
| 7374 | } |
| 7375 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7376 | # if ENABLE_HUSH_UNSET |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7377 | static void unset_func(const char *name) |
| 7378 | { |
| 7379 | struct function **funcpp = find_function_slot(name); |
| 7380 | struct function *funcp = *funcpp; |
| 7381 | |
| 7382 | if (funcp != NULL) { |
| 7383 | debug_printf_exec("freeing function '%s'\n", funcp->name); |
| 7384 | *funcpp = funcp->next; |
| 7385 | /* funcp is unlinked now, deleting it. |
| 7386 | * Note: if !funcp->body, the function was created by |
| 7387 | * "-F name body", do not free ->body_as_string |
| 7388 | * and ->name as they were not malloced. */ |
| 7389 | if (funcp->body) { |
| 7390 | free_pipe_list(funcp->body); |
| 7391 | free(funcp->name); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7392 | # if !BB_MMU |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7393 | free(funcp->body_as_string); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7394 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7395 | } |
| 7396 | free(funcp); |
| 7397 | } |
| 7398 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 7399 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7400 | |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 7401 | static void remove_nested_vars(void) |
| 7402 | { |
| 7403 | struct variable *cur; |
| 7404 | struct variable **cur_pp; |
| 7405 | |
| 7406 | cur_pp = &G.top_var; |
| 7407 | while ((cur = *cur_pp) != NULL) { |
| 7408 | if (cur->var_nest_level <= G.var_nest_level) { |
| 7409 | cur_pp = &cur->next; |
| 7410 | continue; |
| 7411 | } |
| 7412 | /* Unexport */ |
| 7413 | if (cur->flg_export) { |
| 7414 | debug_printf_env("unexporting nested '%s'/%u\n", cur->varstr, cur->var_nest_level); |
| 7415 | bb_unsetenv(cur->varstr); |
| 7416 | } |
| 7417 | /* Remove from global list */ |
| 7418 | *cur_pp = cur->next; |
| 7419 | /* Free */ |
| 7420 | if (!cur->max_len) { |
| 7421 | debug_printf_env("freeing nested '%s'/%u\n", cur->varstr, cur->var_nest_level); |
| 7422 | free(cur->varstr); |
| 7423 | } |
| 7424 | free(cur); |
| 7425 | } |
| 7426 | } |
| 7427 | |
| 7428 | static void enter_var_nest_level(void) |
| 7429 | { |
| 7430 | G.var_nest_level++; |
| 7431 | debug_printf_env("var_nest_level++ %u\n", G.var_nest_level); |
| 7432 | |
| 7433 | /* Try: f() { echo -n .; f; }; f |
| 7434 | * struct variable::var_nest_level is uint16_t, |
| 7435 | * thus limiting recursion to < 2^16. |
| 7436 | * In any case, with 8 Mbyte stack SEGV happens |
| 7437 | * not too long after 2^16 recursions anyway. |
| 7438 | */ |
| 7439 | if (G.var_nest_level > 0xff00) |
| 7440 | bb_error_msg_and_die("fatal recursion (depth %u)", G.var_nest_level); |
| 7441 | } |
| 7442 | |
| 7443 | static void leave_var_nest_level(void) |
| 7444 | { |
| 7445 | G.var_nest_level--; |
| 7446 | debug_printf_env("var_nest_level-- %u\n", G.var_nest_level); |
| 7447 | if (HUSH_DEBUG && (int)G.var_nest_level < 0) |
| 7448 | bb_error_msg_and_die("BUG: nesting underflow"); |
| 7449 | |
| 7450 | remove_nested_vars(); |
| 7451 | } |
| 7452 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7453 | # if BB_MMU |
| 7454 | #define exec_function(to_free, funcp, argv) \ |
| 7455 | exec_function(funcp, argv) |
| 7456 | # endif |
| 7457 | static void exec_function(char ***to_free, |
| 7458 | const struct function *funcp, |
| 7459 | char **argv) NORETURN; |
| 7460 | static void exec_function(char ***to_free, |
| 7461 | const struct function *funcp, |
| 7462 | char **argv) |
| 7463 | { |
| 7464 | # if BB_MMU |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 7465 | int n; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7466 | |
| 7467 | argv[0] = G.global_argv[0]; |
| 7468 | G.global_argv = argv; |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 7469 | G.global_argc = n = 1 + string_array_len(argv + 1); |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7470 | |
| 7471 | // Example when we are here: "cmd | func" |
| 7472 | // func will run with saved-redirect fds open. |
| 7473 | // $ f() { echo /proc/self/fd/*; } |
| 7474 | // $ true | f |
| 7475 | // /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 |
| 7476 | // stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ DIR fd for glob |
| 7477 | // Same in script: |
| 7478 | // $ . ./SCRIPT |
| 7479 | // /proc/self/fd/0 /proc/self/fd/1 /proc/self/fd/2 /proc/self/fd/255 /proc/self/fd/3 /proc/self/fd/4 |
| 7480 | // stdio^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ G_interactive_fd^ opened ./SCRIPT DIR fd for glob |
| 7481 | // They are CLOEXEC so external programs won't see them, but |
| 7482 | // for "more correctness" we might want to close those extra fds here: |
| 7483 | //? close_saved_fds_and_FILE_fds(); |
| 7484 | |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 7485 | /* "we are in a function, ok to use return" */ |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7486 | G_flag_return_in_progress = -1; |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 7487 | enter_var_nest_level(); |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7488 | IF_HUSH_LOCAL(G.func_nest_level++;) |
| 7489 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7490 | /* On MMU, funcp->body is always non-NULL */ |
| 7491 | n = run_list(funcp->body); |
| 7492 | fflush_all(); |
| 7493 | _exit(n); |
| 7494 | # else |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7495 | //? close_saved_fds_and_FILE_fds(); |
| 7496 | |
| 7497 | //TODO: check whether "true | func_with_return" works |
| 7498 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7499 | re_execute_shell(to_free, |
| 7500 | funcp->body_as_string, |
| 7501 | G.global_argv[0], |
| 7502 | argv + 1, |
| 7503 | NULL); |
| 7504 | # endif |
| 7505 | } |
| 7506 | |
| 7507 | static int run_function(const struct function *funcp, char **argv) |
| 7508 | { |
| 7509 | int rc; |
| 7510 | save_arg_t sv; |
| 7511 | smallint sv_flg; |
| 7512 | |
| 7513 | save_and_replace_G_args(&sv, argv); |
| 7514 | |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 7515 | /* "We are in function, ok to use return" */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7516 | sv_flg = G_flag_return_in_progress; |
| 7517 | G_flag_return_in_progress = -1; |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 7518 | |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 7519 | /* Make "local" variables properly shadow previous ones */ |
| 7520 | IF_HUSH_LOCAL(enter_var_nest_level();) |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7521 | IF_HUSH_LOCAL(G.func_nest_level++;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7522 | |
| 7523 | /* On MMU, funcp->body is always non-NULL */ |
| 7524 | # if !BB_MMU |
| 7525 | if (!funcp->body) { |
| 7526 | /* Function defined by -F */ |
| 7527 | parse_and_run_string(funcp->body_as_string); |
| 7528 | rc = G.last_exitcode; |
| 7529 | } else |
| 7530 | # endif |
| 7531 | { |
| 7532 | rc = run_list(funcp->body); |
| 7533 | } |
| 7534 | |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 7535 | IF_HUSH_LOCAL(G.func_nest_level--;) |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 7536 | IF_HUSH_LOCAL(leave_var_nest_level();) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7537 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7538 | G_flag_return_in_progress = sv_flg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7539 | |
| 7540 | restore_G_args(&sv, argv); |
| 7541 | |
| 7542 | return rc; |
| 7543 | } |
| 7544 | #endif /* ENABLE_HUSH_FUNCTIONS */ |
| 7545 | |
| 7546 | |
| 7547 | #if BB_MMU |
| 7548 | #define exec_builtin(to_free, x, argv) \ |
| 7549 | exec_builtin(x, argv) |
| 7550 | #else |
| 7551 | #define exec_builtin(to_free, x, argv) \ |
| 7552 | exec_builtin(to_free, argv) |
| 7553 | #endif |
| 7554 | static void exec_builtin(char ***to_free, |
| 7555 | const struct built_in_command *x, |
| 7556 | char **argv) NORETURN; |
| 7557 | static void exec_builtin(char ***to_free, |
| 7558 | const struct built_in_command *x, |
| 7559 | char **argv) |
| 7560 | { |
| 7561 | #if BB_MMU |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7562 | int rcode; |
| 7563 | fflush_all(); |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7564 | //? close_saved_fds_and_FILE_fds(); |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7565 | rcode = x->b_function(argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7566 | fflush_all(); |
| 7567 | _exit(rcode); |
| 7568 | #else |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7569 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7570 | /* On NOMMU, we must never block! |
| 7571 | * Example: { sleep 99 | read line; } & echo Ok |
| 7572 | */ |
| 7573 | re_execute_shell(to_free, |
| 7574 | argv[0], |
| 7575 | G.global_argv[0], |
| 7576 | G.global_argv + 1, |
| 7577 | argv); |
| 7578 | #endif |
| 7579 | } |
| 7580 | |
| 7581 | |
| 7582 | static void execvp_or_die(char **argv) NORETURN; |
| 7583 | static void execvp_or_die(char **argv) |
| 7584 | { |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7585 | int e; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7586 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7587 | /* Don't propagate SIG_IGN to the child */ |
| 7588 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7589 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7590 | execvp(argv[0], argv); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7591 | e = 2; |
| 7592 | if (errno == EACCES) e = 126; |
| 7593 | if (errno == ENOENT) e = 127; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7594 | bb_perror_msg("can't execute '%s'", argv[0]); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7595 | _exit(e); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7596 | } |
| 7597 | |
| 7598 | #if ENABLE_HUSH_MODE_X |
| 7599 | static void dump_cmd_in_x_mode(char **argv) |
| 7600 | { |
| 7601 | if (G_x_mode && argv) { |
| 7602 | /* We want to output the line in one write op */ |
| 7603 | char *buf, *p; |
| 7604 | int len; |
| 7605 | int n; |
| 7606 | |
| 7607 | len = 3; |
| 7608 | n = 0; |
| 7609 | while (argv[n]) |
| 7610 | len += strlen(argv[n++]) + 1; |
| 7611 | buf = xmalloc(len); |
| 7612 | buf[0] = '+'; |
| 7613 | p = buf + 1; |
| 7614 | n = 0; |
| 7615 | while (argv[n]) |
| 7616 | p += sprintf(p, " %s", argv[n++]); |
| 7617 | *p++ = '\n'; |
| 7618 | *p = '\0'; |
| 7619 | fputs(buf, stderr); |
| 7620 | free(buf); |
| 7621 | } |
| 7622 | } |
| 7623 | #else |
| 7624 | # define dump_cmd_in_x_mode(argv) ((void)0) |
| 7625 | #endif |
| 7626 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7627 | #if ENABLE_HUSH_COMMAND |
| 7628 | static void if_command_vV_print_and_exit(char opt_vV, char *cmd, const char *explanation) |
| 7629 | { |
| 7630 | char *to_free; |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7631 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7632 | if (!opt_vV) |
| 7633 | return; |
| 7634 | |
| 7635 | to_free = NULL; |
| 7636 | if (!explanation) { |
| 7637 | char *path = getenv("PATH"); |
| 7638 | explanation = to_free = find_executable(cmd, &path); /* path == NULL is ok */ |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7639 | if (!explanation) |
| 7640 | _exit(1); /* PROG was not found */ |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7641 | if (opt_vV != 'V') |
| 7642 | cmd = to_free; /* -v PROG prints "/path/to/PROG" */ |
| 7643 | } |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7644 | printf((opt_vV == 'V') ? "%s is %s\n" : "%s\n", cmd, explanation); |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7645 | free(to_free); |
| 7646 | fflush_all(); |
Denys Vlasenko | afb73a2 | 2018-01-12 16:17:59 +0100 | [diff] [blame] | 7647 | _exit(0); |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7648 | } |
| 7649 | #else |
| 7650 | # define if_command_vV_print_and_exit(a,b,c) ((void)0) |
| 7651 | #endif |
| 7652 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7653 | #if BB_MMU |
| 7654 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 7655 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 7656 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 7657 | pseudo_exec(command, argv_expanded) |
| 7658 | #endif |
| 7659 | |
| 7660 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
| 7661 | * Never returns. |
| 7662 | * Don't exit() here. If you don't exec, use _exit instead. |
| 7663 | * The at_exit handlers apparently confuse the calling process, |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7664 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7665 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7666 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7667 | char **argv, int assignment_cnt, |
| 7668 | char **argv_expanded) NORETURN; |
| 7669 | static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7670 | char **argv, int assignment_cnt, |
| 7671 | char **argv_expanded) |
| 7672 | { |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7673 | const struct built_in_command *x; |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 7674 | struct variable **sv_shadowed; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7675 | char **new_env; |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 7676 | IF_HUSH_COMMAND(char opt_vV = 0;) |
| 7677 | IF_HUSH_FUNCTIONS(const struct function *funcp;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7678 | |
| 7679 | new_env = expand_assignments(argv, assignment_cnt); |
| 7680 | dump_cmd_in_x_mode(new_env); |
| 7681 | |
| 7682 | if (!argv[assignment_cnt]) { |
| 7683 | /* Case when we are here: ... | var=val | ... |
| 7684 | * (note that we do not exit early, i.e., do not optimize out |
| 7685 | * expand_assignments(): think about ... | var=`sleep 1` | ... |
| 7686 | */ |
| 7687 | free_strings(new_env); |
| 7688 | _exit(EXIT_SUCCESS); |
| 7689 | } |
| 7690 | |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 7691 | sv_shadowed = G.shadowed_vars_pp; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7692 | #if BB_MMU |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 7693 | G.shadowed_vars_pp = NULL; /* "don't save, free them instead" */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7694 | #else |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 7695 | G.shadowed_vars_pp = &nommu_save->old_vars; |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 7696 | G.var_nest_level++; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7697 | #endif |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 7698 | set_vars_and_save_old(new_env); |
| 7699 | G.shadowed_vars_pp = sv_shadowed; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7700 | |
| 7701 | if (argv_expanded) { |
| 7702 | argv = argv_expanded; |
| 7703 | } else { |
| 7704 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
| 7705 | #if !BB_MMU |
| 7706 | nommu_save->argv = argv; |
| 7707 | #endif |
| 7708 | } |
| 7709 | dump_cmd_in_x_mode(argv); |
| 7710 | |
| 7711 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7712 | if (strchr(argv[0], '/') != NULL) |
| 7713 | goto skip; |
| 7714 | #endif |
| 7715 | |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 7716 | #if ENABLE_HUSH_FUNCTIONS |
| 7717 | /* Check if the command matches any functions (this goes before bltins) */ |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 7718 | funcp = find_function(argv[0]); |
| 7719 | if (funcp) |
| 7720 | exec_function(&nommu_save->argv_from_re_execing, funcp, argv); |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 7721 | #endif |
| 7722 | |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7723 | #if ENABLE_HUSH_COMMAND |
| 7724 | /* "command BAR": run BAR without looking it up among functions |
| 7725 | * "command -v BAR": print "BAR" or "/path/to/BAR"; or exit 1 |
| 7726 | * "command -V BAR": print "BAR is {a function,a shell builtin,/path/to/BAR}" |
| 7727 | */ |
| 7728 | while (strcmp(argv[0], "command") == 0 && argv[1]) { |
| 7729 | char *p; |
| 7730 | |
| 7731 | argv++; |
| 7732 | p = *argv; |
| 7733 | if (p[0] != '-' || !p[1]) |
| 7734 | continue; /* bash allows "command command command [-OPT] BAR" */ |
| 7735 | |
| 7736 | for (;;) { |
| 7737 | p++; |
| 7738 | switch (*p) { |
| 7739 | case '\0': |
| 7740 | argv++; |
| 7741 | p = *argv; |
| 7742 | if (p[0] != '-' || !p[1]) |
| 7743 | goto after_opts; |
| 7744 | continue; /* next arg is also -opts, process it too */ |
| 7745 | case 'v': |
| 7746 | case 'V': |
| 7747 | opt_vV = *p; |
| 7748 | continue; |
| 7749 | default: |
| 7750 | bb_error_msg_and_die("%s: %s: invalid option", "command", argv[0]); |
| 7751 | } |
| 7752 | } |
| 7753 | } |
| 7754 | after_opts: |
| 7755 | # if ENABLE_HUSH_FUNCTIONS |
| 7756 | if (opt_vV && find_function(argv[0])) |
| 7757 | if_command_vV_print_and_exit(opt_vV, argv[0], "a function"); |
| 7758 | # endif |
| 7759 | #endif |
| 7760 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7761 | /* Check if the command matches any of the builtins. |
| 7762 | * Depending on context, this might be redundant. But it's |
| 7763 | * easier to waste a few CPU cycles than it is to figure out |
| 7764 | * if this is one of those cases. |
| 7765 | */ |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7766 | /* Why "BB_MMU ? :" difference in logic? - |
| 7767 | * On NOMMU, it is more expensive to re-execute shell |
| 7768 | * just in order to run echo or test builtin. |
| 7769 | * It's better to skip it here and run corresponding |
| 7770 | * non-builtin later. */ |
| 7771 | x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]); |
| 7772 | if (x) { |
| 7773 | if_command_vV_print_and_exit(opt_vV, argv[0], "a shell builtin"); |
| 7774 | exec_builtin(&nommu_save->argv_from_re_execing, x, argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7775 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7776 | |
| 7777 | #if ENABLE_FEATURE_SH_STANDALONE |
| 7778 | /* Check if the command matches any busybox applets */ |
| 7779 | { |
| 7780 | int a = find_applet_by_name(argv[0]); |
| 7781 | if (a >= 0) { |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7782 | if_command_vV_print_and_exit(opt_vV, argv[0], "an applet"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7783 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
| 7784 | if (APPLET_IS_NOEXEC(a)) { |
Denys Vlasenko | bf1c344 | 2017-07-31 04:54:53 +0200 | [diff] [blame] | 7785 | /* Do not leak open fds from opened script files etc. |
| 7786 | * Testcase: interactive "ls -l /proc/self/fd" |
| 7787 | * should not show tty fd open. |
| 7788 | */ |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 7789 | close_saved_fds_and_FILE_fds(); |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 7790 | //FIXME: should also close saved redir fds |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 7791 | //This casuses test failures in |
| 7792 | //redir_children_should_not_see_saved_fd_2.tests |
| 7793 | //redir_children_should_not_see_saved_fd_3.tests |
| 7794 | //if you replace "busybox find" with just "find" in them |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 7795 | /* Without this, "rm -i FILE" can't be ^C'ed: */ |
| 7796 | switch_off_special_sigs(G.special_sig_mask); |
Denys Vlasenko | c9c1ccc | 2017-08-07 18:59:35 +0200 | [diff] [blame] | 7797 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 7798 | run_noexec_applet_and_exit(a, argv[0], argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7799 | } |
| 7800 | # endif |
| 7801 | /* Re-exec ourselves */ |
| 7802 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7803 | /* Don't propagate SIG_IGN to the child */ |
| 7804 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7805 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7806 | execv(bb_busybox_exec_path, argv); |
| 7807 | /* If they called chroot or otherwise made the binary no longer |
| 7808 | * executable, fall through */ |
| 7809 | } |
| 7810 | } |
| 7811 | #endif |
| 7812 | |
| 7813 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7814 | skip: |
| 7815 | #endif |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 7816 | if_command_vV_print_and_exit(opt_vV, argv[0], NULL); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7817 | execvp_or_die(argv); |
| 7818 | } |
| 7819 | |
| 7820 | /* Called after [v]fork() in run_pipe |
| 7821 | */ |
| 7822 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7823 | struct command *command, |
| 7824 | char **argv_expanded) NORETURN; |
| 7825 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7826 | struct command *command, |
| 7827 | char **argv_expanded) |
| 7828 | { |
Denys Vlasenko | 49015a6 | 2018-04-03 13:02:43 +0200 | [diff] [blame] | 7829 | #if ENABLE_HUSH_FUNCTIONS |
| 7830 | if (command->cmd_type == CMD_FUNCDEF) { |
| 7831 | /* Ignore funcdefs in pipes: |
| 7832 | * true | f() { cmd } |
| 7833 | */ |
| 7834 | _exit(0); |
| 7835 | } |
| 7836 | #endif |
| 7837 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7838 | if (command->argv) { |
| 7839 | pseudo_exec_argv(nommu_save, command->argv, |
| 7840 | command->assignment_cnt, argv_expanded); |
| 7841 | } |
| 7842 | |
| 7843 | if (command->group) { |
| 7844 | /* Cases when we are here: |
| 7845 | * ( list ) |
| 7846 | * { list } & |
| 7847 | * ... | ( list ) | ... |
| 7848 | * ... | { list } | ... |
| 7849 | */ |
| 7850 | #if BB_MMU |
| 7851 | int rcode; |
| 7852 | debug_printf_exec("pseudo_exec: run_list\n"); |
| 7853 | reset_traps_to_defaults(); |
| 7854 | rcode = run_list(command->group); |
| 7855 | /* OK to leak memory by not calling free_pipe_list, |
| 7856 | * since this process is about to exit */ |
| 7857 | _exit(rcode); |
| 7858 | #else |
| 7859 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 7860 | command->group_as_string, |
| 7861 | G.global_argv[0], |
| 7862 | G.global_argv + 1, |
| 7863 | NULL); |
| 7864 | #endif |
| 7865 | } |
| 7866 | |
| 7867 | /* Case when we are here: ... | >file */ |
| 7868 | debug_printf_exec("pseudo_exec'ed null command\n"); |
| 7869 | _exit(EXIT_SUCCESS); |
| 7870 | } |
| 7871 | |
| 7872 | #if ENABLE_HUSH_JOB |
| 7873 | static const char *get_cmdtext(struct pipe *pi) |
| 7874 | { |
| 7875 | char **argv; |
| 7876 | char *p; |
| 7877 | int len; |
| 7878 | |
| 7879 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 7880 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
| 7881 | * On subsequent bg argv is trashed, but we won't use it */ |
| 7882 | if (pi->cmdtext) |
| 7883 | return pi->cmdtext; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7884 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7885 | argv = pi->cmds[0].argv; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7886 | if (!argv) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7887 | pi->cmdtext = xzalloc(1); |
| 7888 | return pi->cmdtext; |
| 7889 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7890 | len = 0; |
| 7891 | do { |
| 7892 | len += strlen(*argv) + 1; |
| 7893 | } while (*++argv); |
| 7894 | p = xmalloc(len); |
| 7895 | pi->cmdtext = p; |
| 7896 | argv = pi->cmds[0].argv; |
| 7897 | do { |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7898 | p = stpcpy(p, *argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7899 | *p++ = ' '; |
| 7900 | } while (*++argv); |
| 7901 | p[-1] = '\0'; |
| 7902 | return pi->cmdtext; |
| 7903 | } |
| 7904 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7905 | static void remove_job_from_table(struct pipe *pi) |
| 7906 | { |
| 7907 | struct pipe *prev_pipe; |
| 7908 | |
| 7909 | if (pi == G.job_list) { |
| 7910 | G.job_list = pi->next; |
| 7911 | } else { |
| 7912 | prev_pipe = G.job_list; |
| 7913 | while (prev_pipe->next != pi) |
| 7914 | prev_pipe = prev_pipe->next; |
| 7915 | prev_pipe->next = pi->next; |
| 7916 | } |
| 7917 | G.last_jobid = 0; |
| 7918 | if (G.job_list) |
| 7919 | G.last_jobid = G.job_list->jobid; |
| 7920 | } |
| 7921 | |
| 7922 | static void delete_finished_job(struct pipe *pi) |
| 7923 | { |
| 7924 | remove_job_from_table(pi); |
| 7925 | free_pipe(pi); |
| 7926 | } |
| 7927 | |
| 7928 | static void clean_up_last_dead_job(void) |
| 7929 | { |
| 7930 | if (G.job_list && !G.job_list->alive_cmds) |
| 7931 | delete_finished_job(G.job_list); |
| 7932 | } |
| 7933 | |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 7934 | static void insert_job_into_table(struct pipe *pi) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7935 | { |
| 7936 | struct pipe *job, **jobp; |
| 7937 | int i; |
| 7938 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7939 | clean_up_last_dead_job(); |
| 7940 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7941 | /* Find the end of the list, and find next job ID to use */ |
| 7942 | i = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7943 | jobp = &G.job_list; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7944 | while ((job = *jobp) != NULL) { |
| 7945 | if (job->jobid > i) |
| 7946 | i = job->jobid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7947 | jobp = &job->next; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7948 | } |
| 7949 | pi->jobid = i + 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7950 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7951 | /* Create a new job struct at the end */ |
| 7952 | job = *jobp = xmemdup(pi, sizeof(*pi)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7953 | job->next = NULL; |
| 7954 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 7955 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
| 7956 | for (i = 0; i < pi->num_cmds; i++) { |
| 7957 | job->cmds[i].pid = pi->cmds[i].pid; |
| 7958 | /* all other fields are not used and stay zero */ |
| 7959 | } |
| 7960 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
| 7961 | |
| 7962 | if (G_interactive_fd) |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 7963 | 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] | 7964 | G.last_jobid = job->jobid; |
| 7965 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7966 | #endif /* JOB */ |
| 7967 | |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7968 | static int job_exited_or_stopped(struct pipe *pi) |
| 7969 | { |
| 7970 | int rcode, i; |
| 7971 | |
| 7972 | if (pi->alive_cmds != pi->stopped_cmds) |
| 7973 | return -1; |
| 7974 | |
| 7975 | /* All processes in fg pipe have exited or stopped */ |
| 7976 | rcode = 0; |
| 7977 | i = pi->num_cmds; |
| 7978 | while (--i >= 0) { |
| 7979 | rcode = pi->cmds[i].cmd_exitcode; |
| 7980 | /* usually last process gives overall exitstatus, |
| 7981 | * but with "set -o pipefail", last *failed* process does */ |
| 7982 | if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0) |
| 7983 | break; |
| 7984 | } |
| 7985 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7986 | return rcode; |
| 7987 | } |
| 7988 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7989 | 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] | 7990 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7991 | #if ENABLE_HUSH_JOB |
| 7992 | struct pipe *pi; |
| 7993 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7994 | int i, dead; |
| 7995 | |
| 7996 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 7997 | |
| 7998 | #if DEBUG_JOBS |
| 7999 | if (WIFSTOPPED(status)) |
| 8000 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
| 8001 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 8002 | if (WIFSIGNALED(status)) |
| 8003 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
| 8004 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 8005 | if (WIFEXITED(status)) |
| 8006 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
| 8007 | childpid, WEXITSTATUS(status)); |
| 8008 | #endif |
| 8009 | /* Were we asked to wait for a fg pipe? */ |
| 8010 | if (fg_pipe) { |
| 8011 | i = fg_pipe->num_cmds; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8012 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8013 | while (--i >= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8014 | int rcode; |
| 8015 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8016 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 8017 | if (fg_pipe->cmds[i].pid != childpid) |
| 8018 | continue; |
| 8019 | if (dead) { |
| 8020 | int ex; |
| 8021 | fg_pipe->cmds[i].pid = 0; |
| 8022 | fg_pipe->alive_cmds--; |
| 8023 | ex = WEXITSTATUS(status); |
| 8024 | /* bash prints killer signal's name for *last* |
| 8025 | * process in pipe (prints just newline for SIGINT/SIGPIPE). |
| 8026 | * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT) |
| 8027 | */ |
| 8028 | if (WIFSIGNALED(status)) { |
| 8029 | int sig = WTERMSIG(status); |
| 8030 | if (i == fg_pipe->num_cmds-1) |
| 8031 | /* TODO: use strsignal() instead for bash compat? but that's bloat... */ |
| 8032 | puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig)); |
| 8033 | /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */ |
| 8034 | /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here? |
| 8035 | * Maybe we need to use sig | 128? */ |
| 8036 | ex = sig + 128; |
| 8037 | } |
| 8038 | fg_pipe->cmds[i].cmd_exitcode = ex; |
| 8039 | } else { |
| 8040 | fg_pipe->stopped_cmds++; |
| 8041 | } |
| 8042 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 8043 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8044 | rcode = job_exited_or_stopped(fg_pipe); |
| 8045 | if (rcode >= 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8046 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 8047 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 8048 | * and "killall -STOP cat" */ |
| 8049 | if (G_interactive_fd) { |
| 8050 | #if ENABLE_HUSH_JOB |
| 8051 | if (fg_pipe->alive_cmds != 0) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 8052 | insert_job_into_table(fg_pipe); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8053 | #endif |
| 8054 | return rcode; |
| 8055 | } |
| 8056 | if (fg_pipe->alive_cmds == 0) |
| 8057 | return rcode; |
| 8058 | } |
| 8059 | /* There are still running processes in the fg_pipe */ |
| 8060 | return -1; |
| 8061 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 8062 | /* It wasn't in fg_pipe, look for process in bg pipes */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8063 | } |
| 8064 | |
| 8065 | #if ENABLE_HUSH_JOB |
| 8066 | /* We were asked to wait for bg or orphaned children */ |
| 8067 | /* No need to remember exitcode in this case */ |
| 8068 | for (pi = G.job_list; pi; pi = pi->next) { |
| 8069 | for (i = 0; i < pi->num_cmds; i++) { |
| 8070 | if (pi->cmds[i].pid == childpid) |
| 8071 | goto found_pi_and_prognum; |
| 8072 | } |
| 8073 | } |
| 8074 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 8075 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
| 8076 | return -1; /* this wasn't a process from fg_pipe */ |
| 8077 | |
| 8078 | found_pi_and_prognum: |
| 8079 | if (dead) { |
| 8080 | /* child exited */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 8081 | int rcode = WEXITSTATUS(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8082 | if (WIFSIGNALED(status)) |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 8083 | rcode = 128 + WTERMSIG(status); |
| 8084 | pi->cmds[i].cmd_exitcode = rcode; |
| 8085 | if (G.last_bg_pid == pi->cmds[i].pid) |
| 8086 | G.last_bg_pid_exitcode = rcode; |
| 8087 | pi->cmds[i].pid = 0; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8088 | pi->alive_cmds--; |
| 8089 | if (!pi->alive_cmds) { |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 8090 | if (G_interactive_fd) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8091 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 8092 | "Done", pi->cmdtext); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 8093 | delete_finished_job(pi); |
| 8094 | } else { |
| 8095 | /* |
| 8096 | * bash deletes finished jobs from job table only in interactive mode, |
| 8097 | * after "jobs" cmd, or if pid of a new process matches one of the old ones |
| 8098 | * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source). |
| 8099 | * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash. |
| 8100 | * We only retain one "dead" job, if it's the single job on the list. |
| 8101 | * This covers most of real-world scenarios where this is useful. |
| 8102 | */ |
| 8103 | if (pi != G.job_list) |
| 8104 | delete_finished_job(pi); |
| 8105 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8106 | } |
| 8107 | } else { |
| 8108 | /* child stopped */ |
| 8109 | pi->stopped_cmds++; |
| 8110 | } |
| 8111 | #endif |
| 8112 | return -1; /* this wasn't a process from fg_pipe */ |
| 8113 | } |
| 8114 | |
| 8115 | /* Check to see if any processes have exited -- if they have, |
| 8116 | * figure out why and see if a job has completed. |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8117 | * |
| 8118 | * If non-NULL fg_pipe: wait for its completion or stop. |
| 8119 | * Return its exitcode or zero if stopped. |
| 8120 | * |
| 8121 | * Alternatively (fg_pipe == NULL, waitfor_pid != 0): |
| 8122 | * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1, |
| 8123 | * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 8124 | * or 0 if no children changed status. |
| 8125 | * |
| 8126 | * Alternatively (fg_pipe == NULL, waitfor_pid == 0), |
| 8127 | * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 8128 | * or 0 if no children changed status. |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8129 | */ |
| 8130 | static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid) |
| 8131 | { |
| 8132 | int attributes; |
| 8133 | int status; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8134 | int rcode = 0; |
| 8135 | |
| 8136 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 8137 | |
| 8138 | attributes = WUNTRACED; |
| 8139 | if (fg_pipe == NULL) |
| 8140 | attributes |= WNOHANG; |
| 8141 | |
| 8142 | errno = 0; |
| 8143 | #if ENABLE_HUSH_FAST |
| 8144 | if (G.handled_SIGCHLD == G.count_SIGCHLD) { |
| 8145 | //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p", |
| 8146 | //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe); |
| 8147 | /* There was neither fork nor SIGCHLD since last waitpid */ |
| 8148 | /* Avoid doing waitpid syscall if possible */ |
| 8149 | if (!G.we_have_children) { |
| 8150 | errno = ECHILD; |
| 8151 | return -1; |
| 8152 | } |
| 8153 | if (fg_pipe == NULL) { /* is WNOHANG set? */ |
| 8154 | /* We have children, but they did not exit |
| 8155 | * or stop yet (we saw no SIGCHLD) */ |
| 8156 | return 0; |
| 8157 | } |
| 8158 | /* else: !WNOHANG, waitpid will block, can't short-circuit */ |
| 8159 | } |
| 8160 | #endif |
| 8161 | |
| 8162 | /* Do we do this right? |
| 8163 | * bash-3.00# sleep 20 | false |
| 8164 | * <ctrl-Z pressed> |
| 8165 | * [3]+ Stopped sleep 20 | false |
| 8166 | * bash-3.00# echo $? |
| 8167 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 8168 | * [hush 1.14.0: yes we do it right] |
| 8169 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8170 | while (1) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8171 | pid_t childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8172 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8173 | int i; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8174 | i = G.count_SIGCHLD; |
| 8175 | #endif |
| 8176 | childpid = waitpid(-1, &status, attributes); |
| 8177 | if (childpid <= 0) { |
| 8178 | if (childpid && errno != ECHILD) |
| 8179 | bb_perror_msg("waitpid"); |
| 8180 | #if ENABLE_HUSH_FAST |
| 8181 | else { /* Until next SIGCHLD, waitpid's are useless */ |
| 8182 | G.we_have_children = (childpid == 0); |
| 8183 | G.handled_SIGCHLD = i; |
| 8184 | //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 8185 | } |
| 8186 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8187 | /* ECHILD (no children), or 0 (no change in children status) */ |
| 8188 | rcode = childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8189 | break; |
| 8190 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8191 | rcode = process_wait_result(fg_pipe, childpid, status); |
| 8192 | if (rcode >= 0) { |
| 8193 | /* fg_pipe exited or stopped */ |
| 8194 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8195 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8196 | if (childpid == waitfor_pid) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8197 | 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] | 8198 | rcode = WEXITSTATUS(status); |
| 8199 | if (WIFSIGNALED(status)) |
| 8200 | rcode = 128 + WTERMSIG(status); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 8201 | if (WIFSTOPPED(status)) |
| 8202 | /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */ |
| 8203 | rcode = 128 + WSTOPSIG(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8204 | rcode++; |
| 8205 | break; /* "wait PID" called us, give it exitcode+1 */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8206 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8207 | /* This wasn't one of our processes, or */ |
| 8208 | /* fg_pipe still has running processes, do waitpid again */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8209 | } /* while (waitpid succeeds)... */ |
| 8210 | |
| 8211 | return rcode; |
| 8212 | } |
| 8213 | |
| 8214 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 8215 | static int checkjobs_and_fg_shell(struct pipe *fg_pipe) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8216 | { |
| 8217 | pid_t p; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8218 | int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8219 | if (G_saved_tty_pgrp) { |
| 8220 | /* Job finished, move the shell to the foreground */ |
| 8221 | p = getpgrp(); /* our process group id */ |
| 8222 | debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p); |
| 8223 | tcsetpgrp(G_interactive_fd, p); |
| 8224 | } |
| 8225 | return rcode; |
| 8226 | } |
| 8227 | #endif |
| 8228 | |
| 8229 | /* Start all the jobs, but don't wait for anything to finish. |
| 8230 | * See checkjobs(). |
| 8231 | * |
| 8232 | * Return code is normally -1, when the caller has to wait for children |
| 8233 | * to finish to determine the exit status of the pipe. If the pipe |
| 8234 | * is a simple builtin command, however, the action is done by the |
| 8235 | * time run_pipe returns, and the exit code is provided as the |
| 8236 | * return value. |
| 8237 | * |
| 8238 | * Returns -1 only if started some children. IOW: we have to |
| 8239 | * mask out retvals of builtins etc with 0xff! |
| 8240 | * |
| 8241 | * The only case when we do not need to [v]fork is when the pipe |
| 8242 | * is single, non-backgrounded, non-subshell command. Examples: |
| 8243 | * cmd ; ... { list } ; ... |
| 8244 | * cmd && ... { list } && ... |
| 8245 | * cmd || ... { list } || ... |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 8246 | * If it is, then we can run cmd as a builtin, NOFORK, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8247 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
| 8248 | * with run_list. If it isn't one of these, we fork and exec cmd. |
| 8249 | * |
| 8250 | * Cases when we must fork: |
| 8251 | * non-single: cmd | cmd |
| 8252 | * backgrounded: cmd & { list } & |
| 8253 | * subshell: ( list ) [&] |
| 8254 | */ |
| 8255 | #if !ENABLE_HUSH_MODE_X |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8256 | #define redirect_and_varexp_helper(old_vars_p, command, squirrel, argv_expanded) \ |
| 8257 | redirect_and_varexp_helper(old_vars_p, command, squirrel) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8258 | #endif |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8259 | static int redirect_and_varexp_helper( |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8260 | struct command *command, |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8261 | struct squirrel **sqp, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8262 | char **argv_expanded) |
| 8263 | { |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8264 | /* Assignments occur before redirects. Try: |
| 8265 | * a=`sleep 1` sleep 2 3>/qwe/rty |
| 8266 | */ |
| 8267 | |
| 8268 | char **new_env = expand_assignments(command->argv, command->assignment_cnt); |
| 8269 | dump_cmd_in_x_mode(new_env); |
| 8270 | dump_cmd_in_x_mode(argv_expanded); |
| 8271 | /* this takes ownership of new_env[i] elements, and frees new_env: */ |
| 8272 | set_vars_and_save_old(new_env); |
| 8273 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8274 | /* setup_redirects acts on file descriptors, not FILEs. |
| 8275 | * This is perfect for work that comes after exec(). |
| 8276 | * Is it really safe for inline use? Experimentally, |
| 8277 | * things seem to work. */ |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8278 | return setup_redirects(command, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8279 | } |
| 8280 | static NOINLINE int run_pipe(struct pipe *pi) |
| 8281 | { |
| 8282 | static const char *const null_ptr = NULL; |
| 8283 | |
| 8284 | int cmd_no; |
| 8285 | int next_infd; |
| 8286 | struct command *command; |
| 8287 | char **argv_expanded; |
| 8288 | char **argv; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8289 | struct squirrel *squirrel = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8290 | int rcode; |
| 8291 | |
| 8292 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
| 8293 | debug_enter(); |
| 8294 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 8295 | /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*" |
| 8296 | * Result should be 3 lines: q w e, qwe, q w e |
| 8297 | */ |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 8298 | if (G.ifs_whitespace != G.ifs) |
| 8299 | free(G.ifs_whitespace); |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 8300 | G.ifs = get_local_var_value("IFS"); |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 8301 | if (G.ifs) { |
| 8302 | char *p; |
| 8303 | G.ifs_whitespace = (char*)G.ifs; |
| 8304 | p = skip_whitespace(G.ifs); |
| 8305 | if (*p) { |
| 8306 | /* Not all $IFS is whitespace */ |
| 8307 | char *d; |
| 8308 | int len = p - G.ifs; |
| 8309 | p = skip_non_whitespace(p); |
| 8310 | G.ifs_whitespace = xmalloc(len + strlen(p) + 1); /* can overestimate */ |
| 8311 | d = mempcpy(G.ifs_whitespace, G.ifs, len); |
| 8312 | while (*p) { |
| 8313 | if (isspace(*p)) |
| 8314 | *d++ = *p; |
| 8315 | p++; |
| 8316 | } |
| 8317 | *d = '\0'; |
| 8318 | } |
| 8319 | } else { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 8320 | G.ifs = defifs; |
Denys Vlasenko | 9678636 | 2018-04-11 16:02:58 +0200 | [diff] [blame] | 8321 | G.ifs_whitespace = (char*)G.ifs; |
| 8322 | } |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 8323 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8324 | IF_HUSH_JOB(pi->pgrp = -1;) |
| 8325 | pi->stopped_cmds = 0; |
| 8326 | command = &pi->cmds[0]; |
| 8327 | argv_expanded = NULL; |
| 8328 | |
| 8329 | if (pi->num_cmds != 1 |
| 8330 | || pi->followup == PIPE_BG |
| 8331 | || command->cmd_type == CMD_SUBSHELL |
| 8332 | ) { |
| 8333 | goto must_fork; |
| 8334 | } |
| 8335 | |
| 8336 | pi->alive_cmds = 1; |
| 8337 | |
| 8338 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 8339 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 8340 | |
| 8341 | if (command->group) { |
| 8342 | #if ENABLE_HUSH_FUNCTIONS |
| 8343 | if (command->cmd_type == CMD_FUNCDEF) { |
| 8344 | /* "executing" func () { list } */ |
| 8345 | struct function *funcp; |
| 8346 | |
| 8347 | funcp = new_function(command->argv[0]); |
| 8348 | /* funcp->name is already set to argv[0] */ |
| 8349 | funcp->body = command->group; |
| 8350 | # if !BB_MMU |
| 8351 | funcp->body_as_string = command->group_as_string; |
| 8352 | command->group_as_string = NULL; |
| 8353 | # endif |
| 8354 | command->group = NULL; |
| 8355 | command->argv[0] = NULL; |
| 8356 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 8357 | funcp->parent_cmd = command; |
| 8358 | command->child_func = funcp; |
| 8359 | |
| 8360 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 8361 | debug_leave(); |
| 8362 | return EXIT_SUCCESS; |
| 8363 | } |
| 8364 | #endif |
| 8365 | /* { list } */ |
| 8366 | debug_printf("non-subshell group\n"); |
| 8367 | rcode = 1; /* exitcode if redir failed */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8368 | if (setup_redirects(command, &squirrel) == 0) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8369 | debug_printf_exec(": run_list\n"); |
Denys Vlasenko | d1b8457 | 2018-03-28 18:42:54 +0200 | [diff] [blame] | 8370 | //FIXME: we need to pass squirrel down into run_list() |
| 8371 | //for SH_STANDALONE case, or else this construct: |
| 8372 | // { find /proc/self/fd; true; } >FILE; cmd2 |
| 8373 | //has no way of closing saved fd#1 for "find", |
| 8374 | //and in SH_STANDALONE mode, "find" is not execed, |
| 8375 | //therefore CLOEXEC on saved fd does not help. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8376 | rcode = run_list(command->group) & 0xff; |
| 8377 | } |
| 8378 | restore_redirects(squirrel); |
| 8379 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8380 | debug_leave(); |
| 8381 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 8382 | return rcode; |
| 8383 | } |
| 8384 | |
| 8385 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 8386 | { |
| 8387 | const struct built_in_command *x; |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8388 | IF_HUSH_FUNCTIONS(const struct function *funcp;) |
| 8389 | IF_NOT_HUSH_FUNCTIONS(enum { funcp = 0 };) |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8390 | struct variable **sv_shadowed; |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8391 | struct variable *old_vars; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8392 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 8393 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 8394 | if (G.lineno_var) |
| 8395 | strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno)); |
| 8396 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 8397 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8398 | if (argv[command->assignment_cnt] == NULL) { |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 8399 | /* Assignments, but no command. |
| 8400 | * Ensure redirects take effect (that is, create files). |
| 8401 | * Try "a=t >file" |
| 8402 | */ |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8403 | unsigned i; |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 8404 | G.expand_exitcode = 0; |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8405 | only_assignments: |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8406 | rcode = setup_redirects(command, &squirrel); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8407 | restore_redirects(squirrel); |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8408 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8409 | /* Set shell variables */ |
| 8410 | if (G_x_mode) |
| 8411 | bb_putchar_stderr('+'); |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8412 | i = 0; |
| 8413 | while (i < command->assignment_cnt) { |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 8414 | char *p = expand_string_to_string(argv[i], |
| 8415 | EXP_FLAG_ESC_GLOB_CHARS, |
| 8416 | /*unbackslash:*/ 1 |
| 8417 | ); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8418 | if (G_x_mode) |
| 8419 | fprintf(stderr, " %s", p); |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8420 | debug_printf_env("set shell var:'%s'->'%s'\n", *argv, p); |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 8421 | if (set_local_var(p, /*flag:*/ 0)) { |
| 8422 | /* assignment to readonly var / putenv error? */ |
| 8423 | rcode = 1; |
| 8424 | } |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8425 | i++; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8426 | } |
| 8427 | if (G_x_mode) |
| 8428 | bb_putchar_stderr('\n'); |
| 8429 | /* Redirect error sets $? to 1. Otherwise, |
| 8430 | * if evaluating assignment value set $?, retain it. |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 8431 | * Else, clear $?: |
| 8432 | * false; q=`exit 2`; echo $? - should print 2 |
| 8433 | * false; x=1; echo $? - should print 0 |
| 8434 | * Because of the 2nd case, we can't just use G.last_exitcode. |
| 8435 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8436 | if (rcode == 0) |
Denys Vlasenko | 5fa0505 | 2018-04-03 11:21:13 +0200 | [diff] [blame] | 8437 | rcode = G.expand_exitcode; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8438 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8439 | debug_leave(); |
| 8440 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 8441 | return rcode; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8442 | } |
| 8443 | |
| 8444 | /* Expand the rest into (possibly) many strings each */ |
Denys Vlasenko | 11752d4 | 2018-04-03 08:20:58 +0200 | [diff] [blame] | 8445 | #if defined(CMD_SINGLEWORD_NOGLOB) |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8446 | if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8447 | argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8448 | else |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8449 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8450 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8451 | |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8452 | /* If someone gives us an empty string: `cmd with empty output` */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8453 | if (!argv_expanded[0]) { |
| 8454 | free(argv_expanded); |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 8455 | /* `false` still has to set exitcode 1 */ |
| 8456 | G.expand_exitcode = G.last_exitcode; |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8457 | goto only_assignments; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8458 | } |
| 8459 | |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8460 | old_vars = NULL; |
| 8461 | sv_shadowed = G.shadowed_vars_pp; |
| 8462 | |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 8463 | /* Check if argv[0] matches any functions (this goes before bltins) */ |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8464 | IF_HUSH_FUNCTIONS(funcp = find_function(argv_expanded[0]);) |
| 8465 | IF_HUSH_FUNCTIONS(x = NULL;) |
| 8466 | IF_HUSH_FUNCTIONS(if (!funcp)) |
Denys Vlasenko | 75481d3 | 2017-07-31 05:27:09 +0200 | [diff] [blame] | 8467 | x = find_builtin(argv_expanded[0]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8468 | if (x || funcp) { |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8469 | if (x && x->b_function == builtin_exec && argv_expanded[1] == NULL) { |
| 8470 | debug_printf("exec with redirects only\n"); |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8471 | /* |
| 8472 | * Variable assignments are executed, but then "forgotten": |
| 8473 | * a=`sleep 1;echo A` exec 3>&-; echo $a |
| 8474 | * sleeps, but prints nothing. |
| 8475 | */ |
| 8476 | enter_var_nest_level(); |
| 8477 | G.shadowed_vars_pp = &old_vars; |
| 8478 | rcode = redirect_and_varexp_helper(command, /*squirrel:*/ NULL, argv_expanded); |
| 8479 | G.shadowed_vars_pp = sv_shadowed; |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8480 | /* rcode=1 can be if redir file can't be opened */ |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8481 | |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8482 | goto clean_up_and_ret1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8483 | } |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8484 | |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8485 | /* Bump var nesting, or this will leak exported $a: |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 8486 | * a=b true; env | grep ^a= |
| 8487 | */ |
| 8488 | enter_var_nest_level(); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8489 | /* Collect all variables "shadowed" by helper |
| 8490 | * (IOW: old vars overridden by "var1=val1 var2=val2 cmd..." syntax) |
| 8491 | * into old_vars list: |
| 8492 | */ |
| 8493 | G.shadowed_vars_pp = &old_vars; |
| 8494 | rcode = redirect_and_varexp_helper(command, &squirrel, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8495 | if (rcode == 0) { |
| 8496 | if (!funcp) { |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8497 | /* Do not collect *to old_vars list* vars shadowed |
| 8498 | * by e.g. "local VAR" builtin (collect them |
| 8499 | * in the previously nested list instead): |
| 8500 | * don't want them to be restored immediately |
| 8501 | * after "local" completes. |
| 8502 | */ |
| 8503 | G.shadowed_vars_pp = sv_shadowed; |
| 8504 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8505 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 8506 | x->b_cmd, argv_expanded[1]); |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 8507 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8508 | rcode = x->b_function(argv_expanded) & 0xff; |
| 8509 | fflush_all(); |
| 8510 | } |
| 8511 | #if ENABLE_HUSH_FUNCTIONS |
| 8512 | else { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8513 | debug_printf_exec(": function '%s' '%s'...\n", |
| 8514 | funcp->name, argv_expanded[1]); |
| 8515 | rcode = run_function(funcp, argv_expanded) & 0xff; |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8516 | /* |
| 8517 | * But do collect *to old_vars list* vars shadowed |
| 8518 | * within function execution. To that end, restore |
| 8519 | * this pointer _after_ function run: |
| 8520 | */ |
| 8521 | G.shadowed_vars_pp = sv_shadowed; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8522 | } |
| 8523 | #endif |
| 8524 | } |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8525 | } else |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 8526 | if (ENABLE_FEATURE_SH_NOFORK && NUM_APPLETS > 1) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8527 | int n = find_applet_by_name(argv_expanded[0]); |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8528 | if (n < 0 || !APPLET_IS_NOFORK(n)) |
| 8529 | goto must_fork; |
| 8530 | |
| 8531 | enter_var_nest_level(); |
Denys Vlasenko | 929a41d | 2018-04-05 14:09:14 +0200 | [diff] [blame] | 8532 | /* Collect all variables "shadowed" by helper into old_vars list */ |
| 8533 | G.shadowed_vars_pp = &old_vars; |
| 8534 | rcode = redirect_and_varexp_helper(command, &squirrel, argv_expanded); |
| 8535 | G.shadowed_vars_pp = sv_shadowed; |
| 8536 | |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8537 | if (rcode == 0) { |
| 8538 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
| 8539 | argv_expanded[0], argv_expanded[1]); |
| 8540 | /* |
| 8541 | * Note: signals (^C) can't interrupt here. |
| 8542 | * We remember them and they will be acted upon |
| 8543 | * after applet returns. |
| 8544 | * This makes applets which can run for a long time |
| 8545 | * and/or wait for user input ineligible for NOFORK: |
| 8546 | * for example, "yes" or "rm" (rm -i waits for input). |
| 8547 | */ |
| 8548 | rcode = run_nofork_applet(n, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8549 | } |
Denys Vlasenko | 4e1dc53 | 2018-04-05 13:10:34 +0200 | [diff] [blame] | 8550 | } else |
| 8551 | goto must_fork; |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8552 | |
Denys Vlasenko | 41d8f10 | 2018-04-05 14:41:21 +0200 | [diff] [blame] | 8553 | restore_redirects(squirrel); |
| 8554 | clean_up_and_ret1: |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8555 | leave_var_nest_level(); |
| 8556 | add_vars(old_vars); |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8557 | |
| 8558 | /* |
| 8559 | * Try "usleep 99999999" + ^C + "echo $?" |
| 8560 | * with FEATURE_SH_NOFORK=y. |
| 8561 | */ |
| 8562 | if (!funcp) { |
| 8563 | /* It was builtin or nofork. |
| 8564 | * if this would be a real fork/execed program, |
| 8565 | * it should have died if a fatal sig was received. |
| 8566 | * But OTOH, there was no separate process, |
| 8567 | * the sig was sent to _shell_, not to non-existing |
| 8568 | * child. |
| 8569 | * Let's just handle ^C only, this one is obvious: |
| 8570 | * we aren't ok with exitcode 0 when ^C was pressed |
| 8571 | * during builtin/nofork. |
| 8572 | */ |
| 8573 | if (sigismember(&G.pending_set, SIGINT)) |
| 8574 | rcode = 128 + SIGINT; |
| 8575 | } |
Denys Vlasenko | 34f6b12 | 2018-04-05 11:30:17 +0200 | [diff] [blame] | 8576 | free(argv_expanded); |
| 8577 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 8578 | debug_leave(); |
| 8579 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 8580 | return rcode; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8581 | } |
| 8582 | |
| 8583 | must_fork: |
| 8584 | /* NB: argv_expanded may already be created, and that |
| 8585 | * might include `cmd` runs! Do not rerun it! We *must* |
| 8586 | * use argv_expanded if it's non-NULL */ |
| 8587 | |
| 8588 | /* Going to fork a child per each pipe member */ |
| 8589 | pi->alive_cmds = 0; |
| 8590 | next_infd = 0; |
| 8591 | |
| 8592 | cmd_no = 0; |
| 8593 | while (cmd_no < pi->num_cmds) { |
| 8594 | struct fd_pair pipefds; |
| 8595 | #if !BB_MMU |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 8596 | int sv_var_nest_level = G.var_nest_level; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8597 | volatile nommu_save_t nommu_save; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8598 | nommu_save.old_vars = NULL; |
| 8599 | nommu_save.argv = NULL; |
| 8600 | nommu_save.argv_from_re_execing = NULL; |
| 8601 | #endif |
| 8602 | command = &pi->cmds[cmd_no]; |
| 8603 | cmd_no++; |
| 8604 | if (command->argv) { |
| 8605 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 8606 | command->argv[0], command->argv[1]); |
| 8607 | } else { |
| 8608 | debug_printf_exec(": pipe member with no argv\n"); |
| 8609 | } |
| 8610 | |
| 8611 | /* pipes are inserted between pairs of commands */ |
| 8612 | pipefds.rd = 0; |
| 8613 | pipefds.wr = 1; |
| 8614 | if (cmd_no < pi->num_cmds) |
| 8615 | xpiped_pair(pipefds); |
| 8616 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 8617 | #if ENABLE_HUSH_LINENO_VAR |
Denys Vlasenko | b8d076b | 2018-01-19 16:00:57 +0100 | [diff] [blame] | 8618 | if (G.lineno_var) |
| 8619 | strcpy(G.lineno_var + sizeof("LINENO=")-1, utoa(command->lineno)); |
| 8620 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 8621 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8622 | command->pid = BB_MMU ? fork() : vfork(); |
| 8623 | if (!command->pid) { /* child */ |
| 8624 | #if ENABLE_HUSH_JOB |
| 8625 | disable_restore_tty_pgrp_on_exit(); |
| 8626 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 8627 | |
| 8628 | /* Every child adds itself to new process group |
| 8629 | * with pgid == pid_of_first_child_in_pipe */ |
| 8630 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 8631 | pid_t pgrp; |
| 8632 | pgrp = pi->pgrp; |
| 8633 | if (pgrp < 0) /* true for 1st process only */ |
| 8634 | pgrp = getpid(); |
| 8635 | if (setpgid(0, pgrp) == 0 |
| 8636 | && pi->followup != PIPE_BG |
| 8637 | && G_saved_tty_pgrp /* we have ctty */ |
| 8638 | ) { |
| 8639 | /* We do it in *every* child, not just first, |
| 8640 | * to avoid races */ |
| 8641 | tcsetpgrp(G_interactive_fd, pgrp); |
| 8642 | } |
| 8643 | } |
| 8644 | #endif |
| 8645 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 8646 | /* 1st cmd in backgrounded pipe |
| 8647 | * should have its stdin /dev/null'ed */ |
| 8648 | close(0); |
| 8649 | if (open(bb_dev_null, O_RDONLY)) |
| 8650 | xopen("/", O_RDONLY); |
| 8651 | } else { |
| 8652 | xmove_fd(next_infd, 0); |
| 8653 | } |
| 8654 | xmove_fd(pipefds.wr, 1); |
| 8655 | if (pipefds.rd > 1) |
| 8656 | close(pipefds.rd); |
| 8657 | /* Like bash, explicit redirects override pipes, |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8658 | * and the pipe fd (fd#1) is available for dup'ing: |
| 8659 | * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr |
| 8660 | * of cmd1 goes into pipe. |
| 8661 | */ |
| 8662 | if (setup_redirects(command, NULL)) { |
| 8663 | /* Happens when redir file can't be opened: |
| 8664 | * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ' |
| 8665 | * FOO |
| 8666 | * hush: can't open '/qwe/rty': No such file or directory |
| 8667 | * BAZ |
| 8668 | * (echo BAR is not executed, it hits _exit(1) below) |
| 8669 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8670 | _exit(1); |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8671 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8672 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8673 | /* Stores to nommu_save list of env vars putenv'ed |
| 8674 | * (NOMMU, on MMU we don't need that) */ |
| 8675 | /* cast away volatility... */ |
| 8676 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
| 8677 | /* pseudo_exec() does not return */ |
| 8678 | } |
| 8679 | |
| 8680 | /* parent or error */ |
| 8681 | #if ENABLE_HUSH_FAST |
| 8682 | G.count_SIGCHLD++; |
| 8683 | //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 8684 | #endif |
| 8685 | enable_restore_tty_pgrp_on_exit(); |
| 8686 | #if !BB_MMU |
| 8687 | /* Clean up after vforked child */ |
| 8688 | free(nommu_save.argv); |
| 8689 | free(nommu_save.argv_from_re_execing); |
Denys Vlasenko | 9db344a | 2018-04-09 19:05:11 +0200 | [diff] [blame] | 8690 | G.var_nest_level = sv_var_nest_level; |
| 8691 | remove_nested_vars(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8692 | add_vars(nommu_save.old_vars); |
| 8693 | #endif |
| 8694 | free(argv_expanded); |
| 8695 | argv_expanded = NULL; |
| 8696 | if (command->pid < 0) { /* [v]fork failed */ |
| 8697 | /* Clearly indicate, was it fork or vfork */ |
| 8698 | bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork"); |
| 8699 | } else { |
| 8700 | pi->alive_cmds++; |
| 8701 | #if ENABLE_HUSH_JOB |
| 8702 | /* Second and next children need to know pid of first one */ |
| 8703 | if (pi->pgrp < 0) |
| 8704 | pi->pgrp = command->pid; |
| 8705 | #endif |
| 8706 | } |
| 8707 | |
| 8708 | if (cmd_no > 1) |
| 8709 | close(next_infd); |
| 8710 | if (cmd_no < pi->num_cmds) |
| 8711 | close(pipefds.wr); |
| 8712 | /* Pass read (output) pipe end to next iteration */ |
| 8713 | next_infd = pipefds.rd; |
| 8714 | } |
| 8715 | |
| 8716 | if (!pi->alive_cmds) { |
| 8717 | debug_leave(); |
| 8718 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 8719 | return 1; |
| 8720 | } |
| 8721 | |
| 8722 | debug_leave(); |
| 8723 | debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds); |
| 8724 | return -1; |
| 8725 | } |
| 8726 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8727 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 8728 | * global data until exec/_exit (we can be a child after vfork!) */ |
| 8729 | static int run_list(struct pipe *pi) |
| 8730 | { |
| 8731 | #if ENABLE_HUSH_CASE |
| 8732 | char *case_word = NULL; |
| 8733 | #endif |
| 8734 | #if ENABLE_HUSH_LOOPS |
| 8735 | struct pipe *loop_top = NULL; |
| 8736 | char **for_lcur = NULL; |
| 8737 | char **for_list = NULL; |
| 8738 | #endif |
| 8739 | smallint last_followup; |
| 8740 | smalluint rcode; |
| 8741 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
| 8742 | smalluint cond_code = 0; |
| 8743 | #else |
| 8744 | enum { cond_code = 0 }; |
| 8745 | #endif |
| 8746 | #if HAS_KEYWORDS |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 8747 | smallint rword; /* RES_foo */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8748 | smallint last_rword; /* ditto */ |
| 8749 | #endif |
| 8750 | |
| 8751 | debug_printf_exec("run_list start lvl %d\n", G.run_list_level); |
| 8752 | debug_enter(); |
| 8753 | |
| 8754 | #if ENABLE_HUSH_LOOPS |
| 8755 | /* Check syntax for "for" */ |
Denys Vlasenko | 0d6a4ec | 2010-12-18 01:34:49 +0100 | [diff] [blame] | 8756 | { |
| 8757 | struct pipe *cpipe; |
| 8758 | for (cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 8759 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
| 8760 | continue; |
| 8761 | /* current word is FOR or IN (BOLD in comments below) */ |
| 8762 | if (cpipe->next == NULL) { |
| 8763 | syntax_error("malformed for"); |
| 8764 | debug_leave(); |
| 8765 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8766 | return 1; |
| 8767 | } |
| 8768 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
| 8769 | if (cpipe->next->res_word == RES_DO) |
| 8770 | continue; |
| 8771 | /* next word is not "do". It must be "in" then ("FOR v in ...") */ |
| 8772 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 8773 | || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */ |
| 8774 | ) { |
| 8775 | syntax_error("malformed for"); |
| 8776 | debug_leave(); |
| 8777 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8778 | return 1; |
| 8779 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8780 | } |
| 8781 | } |
| 8782 | #endif |
| 8783 | |
| 8784 | /* Past this point, all code paths should jump to ret: label |
| 8785 | * in order to return, no direct "return" statements please. |
| 8786 | * This helps to ensure that no memory is leaked. */ |
| 8787 | |
| 8788 | #if ENABLE_HUSH_JOB |
| 8789 | G.run_list_level++; |
| 8790 | #endif |
| 8791 | |
| 8792 | #if HAS_KEYWORDS |
| 8793 | rword = RES_NONE; |
| 8794 | last_rword = RES_XXXX; |
| 8795 | #endif |
| 8796 | last_followup = PIPE_SEQ; |
| 8797 | rcode = G.last_exitcode; |
| 8798 | |
| 8799 | /* Go through list of pipes, (maybe) executing them. */ |
| 8800 | 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] | 8801 | int r; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8802 | int sv_errexit_depth; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8803 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8804 | if (G.flag_SIGINT) |
| 8805 | break; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 8806 | if (G_flag_return_in_progress == 1) |
| 8807 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8808 | |
| 8809 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 8810 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 8811 | rword, cond_code, last_rword); |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8812 | |
| 8813 | sv_errexit_depth = G.errexit_depth; |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 8814 | if ( |
| 8815 | #if ENABLE_HUSH_IF |
| 8816 | rword == RES_IF || rword == RES_ELIF || |
| 8817 | #endif |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8818 | pi->followup != PIPE_SEQ |
| 8819 | ) { |
| 8820 | G.errexit_depth++; |
| 8821 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8822 | #if ENABLE_HUSH_LOOPS |
| 8823 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
| 8824 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
| 8825 | ) { |
| 8826 | /* start of a loop: remember where loop starts */ |
| 8827 | loop_top = pi; |
| 8828 | G.depth_of_loop++; |
| 8829 | } |
| 8830 | #endif |
| 8831 | /* Still in the same "if...", "then..." or "do..." branch? */ |
| 8832 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
| 8833 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 8834 | || (rcode != 0 && last_followup == PIPE_AND) |
| 8835 | ) { |
| 8836 | /* It is "<true> || CMD" or "<false> && CMD" |
| 8837 | * and we should not execute CMD */ |
| 8838 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 8839 | last_followup = pi->followup; |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8840 | goto dont_check_jobs_but_continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8841 | } |
| 8842 | } |
| 8843 | last_followup = pi->followup; |
| 8844 | IF_HAS_KEYWORDS(last_rword = rword;) |
| 8845 | #if ENABLE_HUSH_IF |
| 8846 | if (cond_code) { |
| 8847 | if (rword == RES_THEN) { |
| 8848 | /* if false; then ... fi has exitcode 0! */ |
| 8849 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8850 | /* "if <false> THEN cmd": skip cmd */ |
| 8851 | continue; |
| 8852 | } |
| 8853 | } else { |
| 8854 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 8855 | /* "if <true> then ... ELSE/ELIF cmd": |
| 8856 | * skip cmd and all following ones */ |
| 8857 | break; |
| 8858 | } |
| 8859 | } |
| 8860 | #endif |
| 8861 | #if ENABLE_HUSH_LOOPS |
| 8862 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
| 8863 | if (!for_lcur) { |
| 8864 | /* first loop through for */ |
| 8865 | |
| 8866 | static const char encoded_dollar_at[] ALIGN1 = { |
| 8867 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 8868 | }; /* encoded representation of "$@" */ |
| 8869 | static const char *const encoded_dollar_at_argv[] = { |
| 8870 | encoded_dollar_at, NULL |
| 8871 | }; /* argv list with one element: "$@" */ |
| 8872 | char **vals; |
| 8873 | |
| 8874 | vals = (char**)encoded_dollar_at_argv; |
| 8875 | if (pi->next->res_word == RES_IN) { |
| 8876 | /* if no variable values after "in" we skip "for" */ |
| 8877 | if (!pi->next->cmds[0].argv) { |
| 8878 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8879 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
| 8880 | break; |
| 8881 | } |
| 8882 | vals = pi->next->cmds[0].argv; |
| 8883 | } /* else: "for var; do..." -> assume "$@" list */ |
| 8884 | /* create list of variable values */ |
| 8885 | debug_print_strings("for_list made from", vals); |
| 8886 | for_list = expand_strvec_to_strvec(vals); |
| 8887 | for_lcur = for_list; |
| 8888 | debug_print_strings("for_list", for_list); |
| 8889 | } |
| 8890 | if (!*for_lcur) { |
| 8891 | /* "for" loop is over, clean up */ |
| 8892 | free(for_list); |
| 8893 | for_list = NULL; |
| 8894 | for_lcur = NULL; |
| 8895 | break; |
| 8896 | } |
| 8897 | /* Insert next value from for_lcur */ |
| 8898 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 8899 | 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] | 8900 | continue; |
| 8901 | } |
| 8902 | if (rword == RES_IN) { |
| 8903 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 8904 | } |
| 8905 | if (rword == RES_DONE) { |
| 8906 | continue; /* "done" has no cmds too */ |
| 8907 | } |
| 8908 | #endif |
| 8909 | #if ENABLE_HUSH_CASE |
| 8910 | if (rword == RES_CASE) { |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8911 | debug_printf_exec("CASE cond_code:%d\n", cond_code); |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 8912 | case_word = expand_string_to_string(pi->cmds->argv[0], |
| 8913 | EXP_FLAG_ESC_GLOB_CHARS, /*unbackslash:*/ 1); |
Denys Vlasenko | abf7556 | 2018-04-02 17:25:18 +0200 | [diff] [blame] | 8914 | debug_printf_exec("CASE word1:'%s'\n", case_word); |
| 8915 | //unbackslash(case_word); |
| 8916 | //debug_printf_exec("CASE word2:'%s'\n", case_word); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8917 | continue; |
| 8918 | } |
| 8919 | if (rword == RES_MATCH) { |
| 8920 | char **argv; |
| 8921 | |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8922 | debug_printf_exec("MATCH cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8923 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 8924 | break; |
| 8925 | /* all prev words didn't match, does this one match? */ |
| 8926 | argv = pi->cmds->argv; |
| 8927 | while (*argv) { |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 8928 | char *pattern; |
| 8929 | debug_printf_exec("expand_string_to_string('%s')\n", *argv); |
| 8930 | pattern = expand_string_to_string(*argv, |
| 8931 | EXP_FLAG_ESC_GLOB_CHARS, |
| 8932 | /*unbackslash:*/ 0 |
| 8933 | ); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8934 | /* TODO: which FNM_xxx flags to use? */ |
| 8935 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 8936 | debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", |
| 8937 | pattern, case_word, cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8938 | free(pattern); |
Denys Vlasenko | 3417995 | 2018-04-11 13:47:59 +0200 | [diff] [blame] | 8939 | if (cond_code == 0) { |
| 8940 | /* match! we will execute this branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8941 | free(case_word); |
| 8942 | case_word = NULL; /* make future "word)" stop */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8943 | break; |
| 8944 | } |
| 8945 | argv++; |
| 8946 | } |
| 8947 | continue; |
| 8948 | } |
| 8949 | if (rword == RES_CASE_BODY) { /* inside of a case branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8950 | debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8951 | if (cond_code != 0) |
| 8952 | continue; /* not matched yet, skip this pipe */ |
| 8953 | } |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8954 | if (rword == RES_ESAC) { |
| 8955 | debug_printf_exec("ESAC cond_code:%d\n", cond_code); |
| 8956 | if (case_word) { |
| 8957 | /* "case" did not match anything: still set $? (to 0) */ |
| 8958 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8959 | } |
| 8960 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8961 | #endif |
| 8962 | /* Just pressing <enter> in shell should check for jobs. |
| 8963 | * OTOH, in non-interactive shell this is useless |
| 8964 | * and only leads to extra job checks */ |
| 8965 | if (pi->num_cmds == 0) { |
| 8966 | if (G_interactive_fd) |
| 8967 | goto check_jobs_and_continue; |
| 8968 | continue; |
| 8969 | } |
| 8970 | |
| 8971 | /* After analyzing all keywords and conditions, we decided |
| 8972 | * to execute this pipe. NB: have to do checkjobs(NULL) |
| 8973 | * after run_pipe to collect any background children, |
| 8974 | * even if list execution is to be stopped. */ |
| 8975 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8976 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8977 | G.flag_break_continue = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8978 | #endif |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8979 | rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */ |
| 8980 | if (r != -1) { |
| 8981 | /* We ran a builtin, function, or group. |
| 8982 | * rcode is already known |
| 8983 | * and we don't need to wait for anything. */ |
| 8984 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
| 8985 | G.last_exitcode = rcode; |
| 8986 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8987 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8988 | /* Was it "break" or "continue"? */ |
| 8989 | if (G.flag_break_continue) { |
| 8990 | smallint fbc = G.flag_break_continue; |
| 8991 | /* We might fall into outer *loop*, |
| 8992 | * don't want to break it too */ |
| 8993 | if (loop_top) { |
| 8994 | G.depth_break_continue--; |
| 8995 | if (G.depth_break_continue == 0) |
| 8996 | G.flag_break_continue = 0; |
| 8997 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 8998 | } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */ |
| 8999 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9000 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9001 | break; |
| 9002 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9003 | /* "continue": simulate end of loop */ |
| 9004 | rword = RES_DONE; |
| 9005 | continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9006 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9007 | #endif |
| 9008 | if (G_flag_return_in_progress == 1) { |
| 9009 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 9010 | break; |
| 9011 | } |
| 9012 | } else if (pi->followup == PIPE_BG) { |
| 9013 | /* What does bash do with attempts to background builtins? */ |
| 9014 | /* even bash 3.2 doesn't do that well with nested bg: |
| 9015 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 9016 | * I'm NOT treating inner &'s as jobs */ |
| 9017 | #if ENABLE_HUSH_JOB |
| 9018 | if (G.run_list_level == 1) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 9019 | insert_job_into_table(pi); |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9020 | #endif |
| 9021 | /* Last command's pid goes to $! */ |
| 9022 | G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid; |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 9023 | G.last_bg_pid_exitcode = 0; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9024 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 9025 | /* 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] | 9026 | rcode = EXIT_SUCCESS; |
| 9027 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9028 | } else { |
| 9029 | #if ENABLE_HUSH_JOB |
| 9030 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 9031 | /* Waits for completion, then fg's main shell */ |
| 9032 | rcode = checkjobs_and_fg_shell(pi); |
| 9033 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 9034 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9035 | } |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 9036 | #endif |
| 9037 | /* This one just waits for completion */ |
| 9038 | rcode = checkjobs(pi, 0 /*(no pid to wait for)*/); |
| 9039 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
| 9040 | check_traps: |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 9041 | G.last_exitcode = rcode; |
| 9042 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9043 | } |
| 9044 | |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9045 | /* Handle "set -e" */ |
| 9046 | if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) { |
| 9047 | debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth); |
| 9048 | if (G.errexit_depth == 0) |
| 9049 | hush_exit(rcode); |
| 9050 | } |
| 9051 | G.errexit_depth = sv_errexit_depth; |
| 9052 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9053 | /* Analyze how result affects subsequent commands */ |
| 9054 | #if ENABLE_HUSH_IF |
| 9055 | if (rword == RES_IF || rword == RES_ELIF) |
| 9056 | cond_code = rcode; |
| 9057 | #endif |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 9058 | check_jobs_and_continue: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9059 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 9060 | dont_check_jobs_but_continue: ; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9061 | #if ENABLE_HUSH_LOOPS |
| 9062 | /* Beware of "while false; true; do ..."! */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 9063 | if (pi->next |
| 9064 | && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE) |
Denys Vlasenko | 56a3b82 | 2011-06-01 12:47:07 +0200 | [diff] [blame] | 9065 | /* check for RES_DONE is needed for "while ...; do \n done" case */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 9066 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9067 | if (rword == RES_WHILE) { |
| 9068 | if (rcode) { |
| 9069 | /* "while false; do...done" - exitcode 0 */ |
| 9070 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 9071 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 9072 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9073 | } |
| 9074 | } |
| 9075 | if (rword == RES_UNTIL) { |
| 9076 | if (!rcode) { |
| 9077 | debug_printf_exec(": until expr is true: breaking\n"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9078 | break; |
| 9079 | } |
| 9080 | } |
| 9081 | } |
| 9082 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9083 | } /* for (pi) */ |
| 9084 | |
| 9085 | #if ENABLE_HUSH_JOB |
| 9086 | G.run_list_level--; |
| 9087 | #endif |
| 9088 | #if ENABLE_HUSH_LOOPS |
| 9089 | if (loop_top) |
| 9090 | G.depth_of_loop--; |
| 9091 | free(for_list); |
| 9092 | #endif |
| 9093 | #if ENABLE_HUSH_CASE |
| 9094 | free(case_word); |
| 9095 | #endif |
| 9096 | debug_leave(); |
| 9097 | debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode); |
| 9098 | return rcode; |
| 9099 | } |
| 9100 | |
| 9101 | /* Select which version we will use */ |
| 9102 | static int run_and_free_list(struct pipe *pi) |
| 9103 | { |
| 9104 | int rcode = 0; |
| 9105 | debug_printf_exec("run_and_free_list entered\n"); |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 9106 | if (!G.o_opt[OPT_O_NOEXEC]) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 9107 | debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds); |
| 9108 | rcode = run_list(pi); |
| 9109 | } |
| 9110 | /* free_pipe_list has the side effect of clearing memory. |
| 9111 | * In the long run that function can be merged with run_list, |
| 9112 | * but doing that now would hobble the debugging effort. */ |
| 9113 | free_pipe_list(pi); |
| 9114 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
| 9115 | return rcode; |
| 9116 | } |
| 9117 | |
| 9118 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9119 | static void install_sighandlers(unsigned mask) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 9120 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9121 | sighandler_t old_handler; |
| 9122 | unsigned sig = 0; |
| 9123 | while ((mask >>= 1) != 0) { |
| 9124 | sig++; |
| 9125 | if (!(mask & 1)) |
| 9126 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 9127 | old_handler = install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9128 | /* POSIX allows shell to re-enable SIGCHLD |
| 9129 | * even if it was SIG_IGN on entry. |
| 9130 | * Therefore we skip IGN check for it: |
| 9131 | */ |
| 9132 | if (sig == SIGCHLD) |
| 9133 | continue; |
Denys Vlasenko | 49e6bf2 | 2017-08-04 14:28:16 +0200 | [diff] [blame] | 9134 | /* bash re-enables SIGHUP which is SIG_IGNed on entry. |
| 9135 | * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$" |
| 9136 | */ |
| 9137 | //if (sig == SIGHUP) continue; - TODO? |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9138 | if (old_handler == SIG_IGN) { |
| 9139 | /* oops... restore back to IGN, and record this fact */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 9140 | install_sighandler(sig, old_handler); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9141 | #if ENABLE_HUSH_TRAP |
| 9142 | if (!G_traps) |
| 9143 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
| 9144 | free(G_traps[sig]); |
| 9145 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
| 9146 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9147 | } |
| 9148 | } |
| 9149 | } |
| 9150 | |
| 9151 | /* Called a few times only (or even once if "sh -c") */ |
| 9152 | static void install_special_sighandlers(void) |
| 9153 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9154 | unsigned mask; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9155 | |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9156 | /* Which signals are shell-special? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9157 | mask = (1 << SIGQUIT) | (1 << SIGCHLD); |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9158 | if (G_interactive_fd) { |
| 9159 | mask |= SPECIAL_INTERACTIVE_SIGS; |
| 9160 | if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9161 | mask |= SPECIAL_JOBSTOP_SIGS; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9162 | } |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9163 | /* Careful, do not re-install handlers we already installed */ |
| 9164 | if (G.special_sig_mask != mask) { |
| 9165 | unsigned diff = mask & ~G.special_sig_mask; |
| 9166 | G.special_sig_mask = mask; |
| 9167 | install_sighandlers(diff); |
| 9168 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9169 | } |
| 9170 | |
| 9171 | #if ENABLE_HUSH_JOB |
| 9172 | /* helper */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9173 | /* Set handlers to restore tty pgrp and exit */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9174 | static void install_fatal_sighandlers(void) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9175 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9176 | unsigned mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9177 | |
| 9178 | /* We will restore tty pgrp on these signals */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9179 | mask = 0 |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 9180 | /*+ (1 << SIGILL ) * HUSH_DEBUG*/ |
| 9181 | /*+ (1 << SIGFPE ) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9182 | + (1 << SIGBUS ) * HUSH_DEBUG |
| 9183 | + (1 << SIGSEGV) * HUSH_DEBUG |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 9184 | /*+ (1 << SIGTRAP) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9185 | + (1 << SIGABRT) |
| 9186 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 9187 | + (1 << SIGPIPE) |
| 9188 | + (1 << SIGALRM) |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9189 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs. |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9190 | * if we aren't interactive... but in this case |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9191 | * we never want to restore pgrp on exit, and this fn is not called |
| 9192 | */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9193 | /*+ (1 << SIGHUP )*/ |
| 9194 | /*+ (1 << SIGTERM)*/ |
| 9195 | /*+ (1 << SIGINT )*/ |
| 9196 | ; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9197 | G_fatal_sig_mask = mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 9198 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9199 | install_sighandlers(mask); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9200 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 9201 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 9202 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9203 | static int set_mode(int state, char mode, const char *o_opt) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 9204 | { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9205 | int idx; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 9206 | switch (mode) { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9207 | case 'n': |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 9208 | G.o_opt[OPT_O_NOEXEC] = state; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9209 | break; |
| 9210 | case 'x': |
| 9211 | IF_HUSH_MODE_X(G_x_mode = state;) |
| 9212 | break; |
| 9213 | case 'o': |
| 9214 | if (!o_opt) { |
| 9215 | /* "set -+o" without parameter. |
| 9216 | * in bash, set -o produces this output: |
| 9217 | * pipefail off |
| 9218 | * and set +o: |
| 9219 | * set +o pipefail |
| 9220 | * We always use the second form. |
| 9221 | */ |
| 9222 | const char *p = o_opt_strings; |
| 9223 | idx = 0; |
| 9224 | while (*p) { |
| 9225 | printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p); |
| 9226 | idx++; |
| 9227 | p += strlen(p) + 1; |
| 9228 | } |
| 9229 | break; |
| 9230 | } |
| 9231 | idx = index_in_strings(o_opt_strings, o_opt); |
| 9232 | if (idx >= 0) { |
| 9233 | G.o_opt[idx] = state; |
| 9234 | break; |
| 9235 | } |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9236 | case 'e': |
| 9237 | G.o_opt[OPT_O_ERREXIT] = state; |
| 9238 | break; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9239 | default: |
| 9240 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 9241 | } |
| 9242 | return EXIT_SUCCESS; |
| 9243 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9244 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 9245 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 9246 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9247 | { |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9248 | enum { |
| 9249 | OPT_login = (1 << 0), |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 9250 | OPT_s = (1 << 1), |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9251 | }; |
| 9252 | unsigned flags; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9253 | unsigned builtin_argc; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9254 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9255 | struct variable *cur_var; |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9256 | struct variable *shell_ver; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 9257 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 9258 | INIT_G(); |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 9259 | if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9260 | G.last_exitcode = EXIT_SUCCESS; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 9261 | |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 9262 | #if ENABLE_HUSH_FAST |
| 9263 | G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 9264 | #endif |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9265 | #if !BB_MMU |
| 9266 | G.argv0_for_re_execing = argv[0]; |
| 9267 | #endif |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9268 | |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 9269 | /* Deal with HUSH_VERSION */ |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9270 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
| 9271 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9272 | shell_ver = xzalloc(sizeof(*shell_ver)); |
| 9273 | shell_ver->flg_export = 1; |
| 9274 | shell_ver->flg_read_only = 1; |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 9275 | /* Code which handles ${var<op>...} needs writable values for all variables, |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 9276 | * therefore we xstrdup: */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9277 | shell_ver->varstr = xstrdup(hush_version_str); |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9278 | |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 9279 | /* Create shell local variables from the values |
| 9280 | * currently living in the environment */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9281 | G.top_var = shell_ver; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 9282 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 9283 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9284 | if (e) while (*e) { |
| 9285 | char *value = strchr(*e, '='); |
| 9286 | if (value) { /* paranoia */ |
| 9287 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 9288 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 9289 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9290 | cur_var->max_len = strlen(*e); |
| 9291 | cur_var->flg_export = 1; |
| 9292 | } |
| 9293 | e++; |
| 9294 | } |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 9295 | /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 9296 | debug_printf_env("putenv '%s'\n", shell_ver->varstr); |
| 9297 | putenv(shell_ver->varstr); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9298 | |
| 9299 | /* Export PWD */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9300 | set_pwd_var(SETFLAG_EXPORT); |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9301 | |
Denys Vlasenko | f5018da | 2018-04-06 17:58:21 +0200 | [diff] [blame] | 9302 | #if ENABLE_HUSH_INTERACTIVE && ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 9303 | /* Set (but not export) PS1/2 unless already set */ |
| 9304 | if (!get_local_var_value("PS1")) |
| 9305 | set_local_var_from_halves("PS1", "\\w \\$ "); |
| 9306 | if (!get_local_var_value("PS2")) |
| 9307 | set_local_var_from_halves("PS2", "> "); |
| 9308 | #endif |
| 9309 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 9310 | #if BASH_HOSTNAME_VAR |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9311 | /* Set (but not export) HOSTNAME unless already set */ |
| 9312 | if (!get_local_var_value("HOSTNAME")) { |
| 9313 | struct utsname uts; |
| 9314 | uname(&uts); |
| 9315 | set_local_var_from_halves("HOSTNAME", uts.nodename); |
| 9316 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9317 | /* bash also exports SHLVL and _, |
| 9318 | * and sets (but doesn't export) the following variables: |
| 9319 | * BASH=/bin/bash |
| 9320 | * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu") |
| 9321 | * BASH_VERSION='3.2.0(1)-release' |
| 9322 | * HOSTTYPE=i386 |
| 9323 | * MACHTYPE=i386-pc-linux-gnu |
| 9324 | * OSTYPE=linux-gnu |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9325 | * PPID=<NNNNN> - we also do it elsewhere |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9326 | * EUID=<NNNNN> |
| 9327 | * UID=<NNNNN> |
| 9328 | * GROUPS=() |
| 9329 | * LINES=<NNN> |
| 9330 | * COLUMNS=<NNN> |
| 9331 | * BASH_ARGC=() |
| 9332 | * BASH_ARGV=() |
| 9333 | * BASH_LINENO=() |
| 9334 | * BASH_SOURCE=() |
| 9335 | * DIRSTACK=() |
| 9336 | * PIPESTATUS=([0]="0") |
| 9337 | * HISTFILE=/<xxx>/.bash_history |
| 9338 | * HISTFILESIZE=500 |
| 9339 | * HISTSIZE=500 |
| 9340 | * MAILCHECK=60 |
| 9341 | * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:. |
| 9342 | * SHELL=/bin/bash |
| 9343 | * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor |
| 9344 | * TERM=dumb |
| 9345 | * OPTERR=1 |
| 9346 | * OPTIND=1 |
| 9347 | * IFS=$' \t\n' |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9348 | * PS4='+ ' |
| 9349 | */ |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 9350 | #endif |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9351 | |
Denys Vlasenko | 5807e18 | 2018-02-08 19:19:04 +0100 | [diff] [blame] | 9352 | #if ENABLE_HUSH_LINENO_VAR |
| 9353 | if (ENABLE_HUSH_LINENO_VAR) { |
Denys Vlasenko | 6aad1dd | 2018-01-19 15:37:04 +0100 | [diff] [blame] | 9354 | char *p = xasprintf("LINENO=%*s", (int)(sizeof(int)*3), ""); |
| 9355 | set_local_var(p, /*flags*/ 0); |
| 9356 | G.lineno_var = p; /* can't assign before set_local_var("LINENO=...") */ |
| 9357 | } |
| 9358 | #endif |
| 9359 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 9360 | #if ENABLE_FEATURE_EDITING |
Denys Vlasenko | e45af7a | 2011-09-04 16:15:24 +0200 | [diff] [blame] | 9361 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 9362 | #endif |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 9363 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 9364 | /* Initialize some more globals to non-zero values */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 9365 | cmdedit_update_prompt(); |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 9366 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 9367 | die_func = restore_ttypgrp_and__exit; |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 9368 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9369 | /* Shell is non-interactive at first. We need to call |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9370 | * install_special_sighandlers() if we are going to execute "sh <script>", |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9371 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9372 | * 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] | 9373 | * in order to intercept (more) signals. |
| 9374 | */ |
| 9375 | |
| 9376 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 9377 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9378 | flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9379 | builtin_argc = 0; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9380 | while (1) { |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 9381 | int opt = getopt(argc, argv, "+c:exinsl" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9382 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 9383 | "<:$:R:V:" |
| 9384 | # if ENABLE_HUSH_FUNCTIONS |
| 9385 | "F:" |
| 9386 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9387 | #endif |
| 9388 | ); |
| 9389 | if (opt <= 0) |
| 9390 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9391 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9392 | case 'c': |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9393 | /* Possibilities: |
| 9394 | * sh ... -c 'script' |
| 9395 | * sh ... -c 'script' ARG0 [ARG1...] |
| 9396 | * On NOMMU, if builtin_argc != 0, |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9397 | * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...] |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9398 | * "" needs to be replaced with NULL |
| 9399 | * and BARGV vector fed to builtin function. |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9400 | * Note: the form without ARG0 never happens: |
| 9401 | * sh ... -c 'builtin' BARGV... "" |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9402 | */ |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9403 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9404 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9405 | G.root_ppid = getppid(); |
| 9406 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 9407 | G.global_argv = argv + optind; |
| 9408 | G.global_argc = argc - optind; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9409 | if (builtin_argc) { |
| 9410 | /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */ |
| 9411 | const struct built_in_command *x; |
| 9412 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9413 | install_special_sighandlers(); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9414 | x = find_builtin(optarg); |
| 9415 | if (x) { /* paranoia */ |
| 9416 | G.global_argc -= builtin_argc; /* skip [BARGV...] "" */ |
| 9417 | G.global_argv += builtin_argc; |
| 9418 | G.global_argv[-1] = NULL; /* replace "" */ |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 9419 | fflush_all(); |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 9420 | G.last_exitcode = x->b_function(argv + optind - 1); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9421 | } |
| 9422 | goto final_return; |
| 9423 | } |
| 9424 | if (!G.global_argv[0]) { |
| 9425 | /* -c 'script' (no params): prevent empty $0 */ |
| 9426 | G.global_argv--; /* points to argv[i] of 'script' */ |
| 9427 | G.global_argv[0] = argv[0]; |
Denys Vlasenko | 5ae8f1c | 2010-05-22 06:32:11 +0200 | [diff] [blame] | 9428 | G.global_argc++; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9429 | } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9430 | install_special_sighandlers(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9431 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9432 | goto final_return; |
| 9433 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 9434 | /* Well, we cannot just declare interactiveness, |
| 9435 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9436 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9437 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 9438 | case 's': |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 9439 | flags |= OPT_s; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 9440 | break; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9441 | case 'l': |
| 9442 | flags |= OPT_login; |
| 9443 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9444 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 9445 | case '<': /* "big heredoc" support */ |
Denys Vlasenko | 729ecb8 | 2010-06-07 14:14:26 +0200 | [diff] [blame] | 9446 | full_write1_str(optarg); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 9447 | _exit(0); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9448 | case '$': { |
| 9449 | unsigned long long empty_trap_mask; |
| 9450 | |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9451 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 9452 | optarg++; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9453 | G.root_ppid = bb_strtou(optarg, &optarg, 16); |
| 9454 | optarg++; |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9455 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 9456 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9457 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9458 | optarg++; |
| 9459 | builtin_argc = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9460 | optarg++; |
| 9461 | empty_trap_mask = bb_strtoull(optarg, &optarg, 16); |
| 9462 | if (empty_trap_mask != 0) { |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9463 | IF_HUSH_TRAP(int sig;) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9464 | install_special_sighandlers(); |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9465 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9466 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9467 | for (sig = 1; sig < NSIG; sig++) { |
| 9468 | if (empty_trap_mask & (1LL << sig)) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9469 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 9470 | install_sighandler(sig, SIG_IGN); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9471 | } |
| 9472 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 9473 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9474 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9475 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9476 | optarg++; |
| 9477 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9478 | # endif |
Denys Vlasenko | eb0de05 | 2018-04-09 17:54:07 +0200 | [diff] [blame] | 9479 | # if ENABLE_HUSH_FUNCTIONS |
| 9480 | /* nommu uses re-exec trick for "... | func | ...", |
| 9481 | * should allow "return". |
| 9482 | * This accidentally allows returns in subshells. |
| 9483 | */ |
| 9484 | G_flag_return_in_progress = -1; |
| 9485 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 9486 | break; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9487 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9488 | case 'R': |
| 9489 | case 'V': |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9490 | set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9491 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 9492 | # if ENABLE_HUSH_FUNCTIONS |
| 9493 | case 'F': { |
| 9494 | struct function *funcp = new_function(optarg); |
| 9495 | /* funcp->name is already set to optarg */ |
| 9496 | /* funcp->body is set to NULL. It's a special case. */ |
| 9497 | funcp->body_as_string = argv[optind]; |
| 9498 | optind++; |
| 9499 | break; |
| 9500 | } |
| 9501 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 9502 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 9503 | case 'n': |
| 9504 | case 'x': |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 9505 | case 'e': |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 9506 | if (set_mode(1, opt, NULL) == 0) /* no error */ |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 9507 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9508 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9509 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9510 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 9511 | " or: sh -c command [args]...\n\n"); |
| 9512 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9513 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 9514 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 9515 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9516 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9517 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9518 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9519 | /* Skip options. Try "hush -l": $1 should not be "-l"! */ |
| 9520 | G.global_argc = argc - (optind - 1); |
| 9521 | G.global_argv = argv + (optind - 1); |
| 9522 | G.global_argv[0] = argv[0]; |
| 9523 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9524 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9525 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 9526 | G.root_ppid = getppid(); |
| 9527 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9528 | |
| 9529 | /* If we are login shell... */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9530 | if (flags & OPT_login) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9531 | FILE *input; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9532 | debug_printf("sourcing /etc/profile\n"); |
| 9533 | input = fopen_for_read("/etc/profile"); |
| 9534 | if (input != NULL) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9535 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9536 | install_special_sighandlers(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9537 | parse_and_run_file(input); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9538 | fclose_and_forget(input); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9539 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9540 | /* bash: after sourcing /etc/profile, |
| 9541 | * tries to source (in the given order): |
| 9542 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 9543 | * stopping on first found. --noprofile turns this off. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9544 | * bash also sources ~/.bash_logout on exit. |
| 9545 | * If called as sh, skips .bash_XXX files. |
| 9546 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 9547 | } |
| 9548 | |
Denys Vlasenko | f2ed39b | 2018-04-05 16:46:49 +0200 | [diff] [blame] | 9549 | /* -s is: hush -s ARGV1 ARGV2 (no SCRIPT) */ |
| 9550 | if (!(flags & OPT_s) && G.global_argv[1]) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9551 | FILE *input; |
| 9552 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 9553 | * "bash <script>" (which is never interactive (unless -i?)) |
| 9554 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9555 | * If called as sh, does the same but with $ENV. |
Denys Vlasenko | 2eb0a7e | 2016-10-27 11:28:59 +0200 | [diff] [blame] | 9556 | * Also NB, per POSIX, $ENV should undergo parameter expansion. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9557 | */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9558 | G.global_argc--; |
| 9559 | G.global_argv++; |
| 9560 | debug_printf("running script '%s'\n", G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 9561 | xfunc_error_retval = 127; /* for "hush /does/not/exist" case */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9562 | input = xfopen_for_read(G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 9563 | xfunc_error_retval = 1; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9564 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9565 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9566 | parse_and_run_file(input); |
| 9567 | #if ENABLE_FEATURE_CLEAN_UP |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 9568 | fclose_and_forget(input); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9569 | #endif |
| 9570 | goto final_return; |
| 9571 | } |
| 9572 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9573 | /* Up to here, shell was non-interactive. Now it may become one. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9574 | * NB: don't forget to (re)run install_special_sighandlers() as needed. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 9575 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9576 | |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 9577 | /* A shell is interactive if the '-i' flag was given, |
| 9578 | * or if all of the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 9579 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9580 | * no arguments remaining or the -s flag given |
| 9581 | * standard input is a terminal |
| 9582 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9583 | * Refer to Posix.2, the description of the 'sh' utility. |
| 9584 | */ |
| 9585 | #if ENABLE_HUSH_JOB |
| 9586 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9587 | G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 9588 | debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp); |
| 9589 | if (G_saved_tty_pgrp < 0) |
| 9590 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9591 | |
| 9592 | /* try to dup stdin to high fd#, >= 255 */ |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 9593 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9594 | if (G_interactive_fd < 0) { |
| 9595 | /* try to dup to any fd */ |
| 9596 | G_interactive_fd = dup(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9597 | if (G_interactive_fd < 0) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9598 | /* give up */ |
| 9599 | G_interactive_fd = 0; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9600 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 9601 | } |
| 9602 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9603 | // TODO: track & disallow any attempts of user |
| 9604 | // to (inadvertently) close/redirect G_interactive_fd |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9605 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9606 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9607 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9608 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9609 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9610 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9611 | /* If we were run as 'hush &', sleep until we are |
| 9612 | * in the foreground (tty pgrp == our pgrp). |
| 9613 | * If we get started under a job aware app (like bash), |
| 9614 | * make sure we are now in charge so we don't fight over |
| 9615 | * who gets the foreground */ |
| 9616 | while (1) { |
| 9617 | pid_t shell_pgrp = getpgrp(); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9618 | G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 9619 | if (G_saved_tty_pgrp == shell_pgrp) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9620 | break; |
| 9621 | /* send TTIN to ourself (should stop us) */ |
| 9622 | kill(- shell_pgrp, SIGTTIN); |
| 9623 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9624 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9625 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 9626 | /* Install more signal handlers */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9627 | install_special_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9628 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9629 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9630 | /* Set other signals to restore saved_tty_pgrp */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9631 | install_fatal_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9632 | /* Put ourselves in our own process group |
| 9633 | * (bash, too, does this only if ctty is available) */ |
| 9634 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 9635 | /* Grab control of the terminal */ |
| 9636 | tcsetpgrp(G_interactive_fd, getpid()); |
| 9637 | } |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 9638 | enable_restore_tty_pgrp_on_exit(); |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 9639 | |
| 9640 | # if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0 |
| 9641 | { |
| 9642 | const char *hp = get_local_var_value("HISTFILE"); |
| 9643 | if (!hp) { |
| 9644 | hp = get_local_var_value("HOME"); |
| 9645 | if (hp) |
| 9646 | hp = concat_path_file(hp, ".hush_history"); |
| 9647 | } else { |
| 9648 | hp = xstrdup(hp); |
| 9649 | } |
| 9650 | if (hp) { |
| 9651 | G.line_input_state->hist_file = hp; |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 9652 | //set_local_var(xasprintf("HISTFILE=%s", ...)); |
| 9653 | } |
| 9654 | # if ENABLE_FEATURE_SH_HISTFILESIZE |
| 9655 | hp = get_local_var_value("HISTFILESIZE"); |
| 9656 | G.line_input_state->max_history = size_from_HISTFILESIZE(hp); |
| 9657 | # endif |
| 9658 | } |
| 9659 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9660 | } else { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9661 | install_special_sighandlers(); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9662 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9663 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9664 | /* No job control compiled in, only prompt/line editing */ |
| 9665 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 9666 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO, 254); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9667 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9668 | /* try to dup to any fd */ |
Denys Vlasenko | 9acd63c | 2018-03-28 18:35:07 +0200 | [diff] [blame] | 9669 | G_interactive_fd = dup_CLOEXEC(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9670 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9671 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9672 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 9673 | } |
| 9674 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9675 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9676 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9677 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9678 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9679 | #else |
| 9680 | /* We have interactiveness code disabled */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9681 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9682 | #endif |
| 9683 | /* bash: |
| 9684 | * if interactive but not a login shell, sources ~/.bashrc |
| 9685 | * (--norc turns this off, --rcfile <file> overrides) |
| 9686 | */ |
| 9687 | |
| 9688 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Denys Vlasenko | c34c033 | 2009-09-29 12:25:30 +0200 | [diff] [blame] | 9689 | /* note: ash and hush share this string */ |
| 9690 | printf("\n\n%s %s\n" |
| 9691 | IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n") |
| 9692 | "\n", |
| 9693 | bb_banner, |
| 9694 | "hush - the humble shell" |
| 9695 | ); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 9696 | } |
| 9697 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9698 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9699 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9700 | final_return: |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9701 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9702 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 9703 | |
| 9704 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9705 | /* |
| 9706 | * Built-ins |
| 9707 | */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9708 | static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9709 | { |
| 9710 | return 0; |
| 9711 | } |
| 9712 | |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9713 | #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] | 9714 | 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] | 9715 | { |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 9716 | int argc = string_array_len(argv); |
| 9717 | return applet_main_func(argc, argv); |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9718 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9719 | #endif |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 9720 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9721 | static int FAST_FUNC builtin_test(char **argv) |
| 9722 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9723 | return run_applet_main(argv, test_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9724 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9725 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9726 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9727 | static int FAST_FUNC builtin_echo(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9728 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9729 | return run_applet_main(argv, echo_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9730 | } |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9731 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9732 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9733 | static int FAST_FUNC builtin_printf(char **argv) |
| 9734 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9735 | return run_applet_main(argv, printf_main); |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9736 | } |
| 9737 | #endif |
| 9738 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9739 | #if ENABLE_HUSH_HELP |
| 9740 | static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM) |
| 9741 | { |
| 9742 | const struct built_in_command *x; |
| 9743 | |
| 9744 | printf( |
| 9745 | "Built-in commands:\n" |
| 9746 | "------------------\n"); |
| 9747 | for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) { |
| 9748 | if (x->b_descr) |
| 9749 | printf("%-10s%s\n", x->b_cmd, x->b_descr); |
| 9750 | } |
| 9751 | return EXIT_SUCCESS; |
| 9752 | } |
| 9753 | #endif |
| 9754 | |
| 9755 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
| 9756 | static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM) |
| 9757 | { |
| 9758 | show_history(G.line_input_state); |
| 9759 | return EXIT_SUCCESS; |
| 9760 | } |
| 9761 | #endif |
| 9762 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9763 | static char **skip_dash_dash(char **argv) |
| 9764 | { |
| 9765 | argv++; |
| 9766 | if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0') |
| 9767 | argv++; |
| 9768 | return argv; |
| 9769 | } |
| 9770 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9771 | static int FAST_FUNC builtin_cd(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9772 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9773 | const char *newdir; |
| 9774 | |
| 9775 | argv = skip_dash_dash(argv); |
| 9776 | newdir = argv[0]; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9777 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9778 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9779 | * bash says "bash: cd: HOME not set" and does nothing |
| 9780 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9781 | */ |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 9782 | const char *home = get_local_var_value("HOME"); |
| 9783 | newdir = home ? home : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 9784 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9785 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9786 | /* Mimic bash message exactly */ |
| 9787 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9788 | return EXIT_FAILURE; |
| 9789 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9790 | /* Read current dir (get_cwd(1) is inside) and set PWD. |
| 9791 | * Note: do not enforce exporting. If PWD was unset or unexported, |
| 9792 | * set it again, but do not export. bash does the same. |
| 9793 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9794 | set_pwd_var(/*flag:*/ 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9795 | return EXIT_SUCCESS; |
| 9796 | } |
| 9797 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9798 | static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM) |
| 9799 | { |
| 9800 | puts(get_cwd(0)); |
| 9801 | return EXIT_SUCCESS; |
| 9802 | } |
| 9803 | |
| 9804 | static int FAST_FUNC builtin_eval(char **argv) |
| 9805 | { |
| 9806 | int rcode = EXIT_SUCCESS; |
| 9807 | |
| 9808 | argv = skip_dash_dash(argv); |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 9809 | if (argv[0]) { |
| 9810 | char *str = NULL; |
| 9811 | |
| 9812 | if (argv[1]) { |
| 9813 | /* "The eval utility shall construct a command by |
| 9814 | * concatenating arguments together, separating |
| 9815 | * each with a <space> character." |
| 9816 | */ |
| 9817 | char *p; |
| 9818 | unsigned len = 0; |
| 9819 | char **pp = argv; |
| 9820 | do |
| 9821 | len += strlen(*pp) + 1; |
| 9822 | while (*++pp); |
| 9823 | str = p = xmalloc(len); |
| 9824 | pp = argv; |
| 9825 | do { |
| 9826 | p = stpcpy(p, *pp); |
| 9827 | *p++ = ' '; |
| 9828 | } while (*++pp); |
| 9829 | p[-1] = '\0'; |
| 9830 | } |
| 9831 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9832 | /* bash: |
| 9833 | * eval "echo Hi; done" ("done" is syntax error): |
| 9834 | * "echo Hi" will not execute too. |
| 9835 | */ |
Denys Vlasenko | 1f19112 | 2018-01-11 13:17:30 +0100 | [diff] [blame] | 9836 | parse_and_run_string(str ? str : argv[0]); |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9837 | free(str); |
| 9838 | rcode = G.last_exitcode; |
| 9839 | } |
| 9840 | return rcode; |
| 9841 | } |
| 9842 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9843 | static int FAST_FUNC builtin_exec(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9844 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9845 | argv = skip_dash_dash(argv); |
| 9846 | if (argv[0] == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9847 | return EXIT_SUCCESS; /* bash does this */ |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9848 | |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9849 | /* Careful: we can end up here after [v]fork. Do not restore |
| 9850 | * tty pgrp then, only top-level shell process does that */ |
| 9851 | if (G_saved_tty_pgrp && getpid() == G.root_pid) |
| 9852 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
| 9853 | |
Denys Vlasenko | 5b3d2eb | 2017-07-31 18:02:28 +0200 | [diff] [blame] | 9854 | /* Saved-redirect fds, script fds and G_interactive_fd are still |
| 9855 | * open here. However, they are all CLOEXEC, and execv below |
| 9856 | * closes them. Try interactive "exec ls -l /proc/self/fd", |
| 9857 | * it should show no extra open fds in the "ls" process. |
| 9858 | * If we'd try to run builtins/NOEXECs, this would need improving. |
| 9859 | */ |
| 9860 | //close_saved_fds_and_FILE_fds(); |
| 9861 | |
Denys Vlasenko | 3ef4f77 | 2009-10-19 23:09:06 +0200 | [diff] [blame] | 9862 | /* TODO: if exec fails, bash does NOT exit! We do. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9863 | * 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] | 9864 | * and tcsetpgrp, and this is inherently racy. |
| 9865 | */ |
| 9866 | execvp_or_die(argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9867 | } |
| 9868 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9869 | static int FAST_FUNC builtin_exit(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9870 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 9871 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9872 | |
| 9873 | /* interactive bash: |
| 9874 | * # trap "echo EEE" EXIT |
| 9875 | * # exit |
| 9876 | * exit |
| 9877 | * There are stopped jobs. |
| 9878 | * (if there are _stopped_ jobs, running ones don't count) |
| 9879 | * # exit |
| 9880 | * exit |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 9881 | * EEE (then bash exits) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9882 | * |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 9883 | * 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] | 9884 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 9885 | |
| 9886 | /* note: EXIT trap is run by hush_exit */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9887 | argv = skip_dash_dash(argv); |
| 9888 | if (argv[0] == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9889 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9890 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 9891 | xfunc_error_retval = 255; |
| 9892 | /* bash: exit -2 == exit 254, no error msg */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9893 | hush_exit(xatoi(argv[0]) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9894 | } |
| 9895 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9896 | #if ENABLE_HUSH_TYPE |
| 9897 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */ |
| 9898 | static int FAST_FUNC builtin_type(char **argv) |
| 9899 | { |
| 9900 | int ret = EXIT_SUCCESS; |
| 9901 | |
| 9902 | while (*++argv) { |
| 9903 | const char *type; |
| 9904 | char *path = NULL; |
| 9905 | |
| 9906 | if (0) {} /* make conditional compile easier below */ |
| 9907 | /*else if (find_alias(*argv)) |
| 9908 | type = "an alias";*/ |
| 9909 | #if ENABLE_HUSH_FUNCTIONS |
| 9910 | else if (find_function(*argv)) |
| 9911 | type = "a function"; |
| 9912 | #endif |
| 9913 | else if (find_builtin(*argv)) |
| 9914 | type = "a shell builtin"; |
| 9915 | else if ((path = find_in_path(*argv)) != NULL) |
| 9916 | type = path; |
| 9917 | else { |
| 9918 | bb_error_msg("type: %s: not found", *argv); |
| 9919 | ret = EXIT_FAILURE; |
| 9920 | continue; |
| 9921 | } |
| 9922 | |
| 9923 | printf("%s is %s\n", *argv, type); |
| 9924 | free(path); |
| 9925 | } |
| 9926 | |
| 9927 | return ret; |
| 9928 | } |
| 9929 | #endif |
| 9930 | |
| 9931 | #if ENABLE_HUSH_READ |
| 9932 | /* Interruptibility of read builtin in bash |
| 9933 | * (tested on bash-4.2.8 by sending signals (not by ^C)): |
| 9934 | * |
| 9935 | * Empty trap makes read ignore corresponding signal, for any signal. |
| 9936 | * |
| 9937 | * SIGINT: |
| 9938 | * - terminates non-interactive shell; |
| 9939 | * - interrupts read in interactive shell; |
| 9940 | * if it has non-empty trap: |
| 9941 | * - executes trap and returns to command prompt in interactive shell; |
| 9942 | * - executes trap and returns to read in non-interactive shell; |
| 9943 | * SIGTERM: |
| 9944 | * - is ignored (does not interrupt) read in interactive shell; |
| 9945 | * - terminates non-interactive shell; |
| 9946 | * if it has non-empty trap: |
| 9947 | * - executes trap and returns to read; |
| 9948 | * SIGHUP: |
| 9949 | * - terminates shell (regardless of interactivity); |
| 9950 | * if it has non-empty trap: |
| 9951 | * - executes trap and returns to read; |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9952 | * SIGCHLD from children: |
| 9953 | * - does not interrupt read regardless of interactivity: |
| 9954 | * try: sleep 1 & read x; echo $x |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9955 | */ |
| 9956 | static int FAST_FUNC builtin_read(char **argv) |
| 9957 | { |
| 9958 | const char *r; |
| 9959 | char *opt_n = NULL; |
| 9960 | char *opt_p = NULL; |
| 9961 | char *opt_t = NULL; |
| 9962 | char *opt_u = NULL; |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9963 | char *opt_d = NULL; /* optimized out if !BASH */ |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9964 | const char *ifs; |
| 9965 | int read_flags; |
| 9966 | |
| 9967 | /* "!": do not abort on errors. |
| 9968 | * Option string must start with "sr" to match BUILTIN_READ_xxx |
| 9969 | */ |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9970 | read_flags = getopt32(argv, |
| 9971 | #if BASH_READ_D |
| 9972 | "!srn:p:t:u:d:", &opt_n, &opt_p, &opt_t, &opt_u, &opt_d |
| 9973 | #else |
| 9974 | "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u |
| 9975 | #endif |
| 9976 | ); |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9977 | if (read_flags == (uint32_t)-1) |
| 9978 | return EXIT_FAILURE; |
| 9979 | argv += optind; |
| 9980 | ifs = get_local_var_value("IFS"); /* can be NULL */ |
| 9981 | |
| 9982 | again: |
| 9983 | r = shell_builtin_read(set_local_var_from_halves, |
| 9984 | argv, |
| 9985 | ifs, |
| 9986 | read_flags, |
| 9987 | opt_n, |
| 9988 | opt_p, |
| 9989 | opt_t, |
Denys Vlasenko | 1f41c88 | 2017-08-09 13:52:36 +0200 | [diff] [blame] | 9990 | opt_u, |
| 9991 | opt_d |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9992 | ); |
| 9993 | |
| 9994 | if ((uintptr_t)r == 1 && errno == EINTR) { |
| 9995 | unsigned sig = check_and_run_traps(); |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9996 | if (sig != SIGINT) |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9997 | goto again; |
| 9998 | } |
| 9999 | |
| 10000 | if ((uintptr_t)r > 1) { |
| 10001 | bb_error_msg("%s", r); |
| 10002 | r = (char*)(uintptr_t)1; |
| 10003 | } |
| 10004 | |
| 10005 | return (uintptr_t)r; |
| 10006 | } |
| 10007 | #endif |
| 10008 | |
| 10009 | #if ENABLE_HUSH_UMASK |
| 10010 | static int FAST_FUNC builtin_umask(char **argv) |
| 10011 | { |
| 10012 | int rc; |
| 10013 | mode_t mask; |
| 10014 | |
| 10015 | rc = 1; |
| 10016 | mask = umask(0); |
| 10017 | argv = skip_dash_dash(argv); |
| 10018 | if (argv[0]) { |
| 10019 | mode_t old_mask = mask; |
| 10020 | |
| 10021 | /* numeric umasks are taken as-is */ |
| 10022 | /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */ |
| 10023 | if (!isdigit(argv[0][0])) |
| 10024 | mask ^= 0777; |
| 10025 | mask = bb_parse_mode(argv[0], mask); |
| 10026 | if (!isdigit(argv[0][0])) |
| 10027 | mask ^= 0777; |
| 10028 | if ((unsigned)mask > 0777) { |
| 10029 | mask = old_mask; |
| 10030 | /* bash messages: |
| 10031 | * bash: umask: 'q': invalid symbolic mode operator |
| 10032 | * bash: umask: 999: octal number out of range |
| 10033 | */ |
| 10034 | bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]); |
| 10035 | rc = 0; |
| 10036 | } |
| 10037 | } else { |
| 10038 | /* Mimic bash */ |
| 10039 | printf("%04o\n", (unsigned) mask); |
| 10040 | /* fall through and restore mask which we set to 0 */ |
| 10041 | } |
| 10042 | umask(mask); |
| 10043 | |
| 10044 | return !rc; /* rc != 0 - success */ |
| 10045 | } |
| 10046 | #endif |
| 10047 | |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 10048 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10049 | static void print_escaped(const char *s) |
| 10050 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 10051 | if (*s == '\'') |
| 10052 | goto squote; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10053 | do { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 10054 | const char *p = strchrnul(s, '\''); |
| 10055 | /* print 'xxxx', possibly just '' */ |
| 10056 | printf("'%.*s'", (int)(p - s), s); |
| 10057 | if (*p == '\0') |
| 10058 | break; |
| 10059 | s = p; |
| 10060 | squote: |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10061 | /* s points to '; print "'''...'''" */ |
| 10062 | putchar('"'); |
| 10063 | do putchar('\''); while (*++s == '\''); |
| 10064 | putchar('"'); |
| 10065 | } while (*s); |
| 10066 | } |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 10067 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10068 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10069 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10070 | static int helper_export_local(char **argv, unsigned flags) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10071 | { |
| 10072 | do { |
| 10073 | char *name = *argv; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 10074 | char *name_end = strchrnul(name, '='); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10075 | |
| 10076 | /* So far we do not check that name is valid (TODO?) */ |
| 10077 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 10078 | if (*name_end == '\0') { |
| 10079 | struct variable *var, **vpp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10080 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 10081 | vpp = get_ptr_to_local_var(name, name_end - name); |
| 10082 | var = vpp ? *vpp : NULL; |
| 10083 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10084 | if (flags & SETFLAG_UNEXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10085 | /* export -n NAME (without =VALUE) */ |
| 10086 | if (var) { |
| 10087 | var->flg_export = 0; |
| 10088 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 10089 | unsetenv(name); |
| 10090 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 10091 | continue; |
| 10092 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10093 | if (flags & SETFLAG_EXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10094 | /* export NAME (without =VALUE) */ |
| 10095 | if (var) { |
| 10096 | var->flg_export = 1; |
| 10097 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 10098 | putenv(var->varstr); |
| 10099 | continue; |
| 10100 | } |
| 10101 | } |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 10102 | if (flags & SETFLAG_MAKE_RO) { |
| 10103 | /* readonly NAME (without =VALUE) */ |
| 10104 | if (var) { |
| 10105 | var->flg_read_only = 1; |
| 10106 | continue; |
| 10107 | } |
| 10108 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 10109 | # if ENABLE_HUSH_LOCAL |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 10110 | /* Is this "local" bltin? */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10111 | if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) { |
Denys Vlasenko | 332e411 | 2018-04-04 22:32:59 +0200 | [diff] [blame] | 10112 | unsigned lvl = flags >> SETFLAG_VARLVL_SHIFT; |
| 10113 | if (var && var->var_nest_level == lvl) { |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 10114 | /* "local x=abc; ...; local x" - ignore second local decl */ |
| 10115 | continue; |
| 10116 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10117 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 10118 | # endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10119 | /* Exporting non-existing variable. |
| 10120 | * bash does not put it in environment, |
| 10121 | * but remembers that it is exported, |
| 10122 | * and does put it in env when it is set later. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10123 | * We just set it to "" and export. |
| 10124 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10125 | /* Or, it's "local NAME" (without =VALUE). |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10126 | * bash sets the value to "". |
| 10127 | */ |
| 10128 | /* Or, it's "readonly NAME" (without =VALUE). |
| 10129 | * bash remembers NAME and disallows its creation |
| 10130 | * in the future. |
| 10131 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10132 | name = xasprintf("%s=", name); |
| 10133 | } else { |
| 10134 | /* (Un)exporting/making local NAME=VALUE */ |
| 10135 | name = xstrdup(name); |
| 10136 | } |
Denys Vlasenko | 21b7f1b | 2018-04-05 15:15:53 +0200 | [diff] [blame] | 10137 | debug_printf_env("%s: set_local_var('%s')\n", __func__, name); |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 10138 | if (set_local_var(name, flags)) |
| 10139 | return EXIT_FAILURE; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10140 | } while (*++argv); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10141 | return EXIT_SUCCESS; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10142 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 10143 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10144 | |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 10145 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10146 | static int FAST_FUNC builtin_export(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10147 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 10148 | unsigned opt_unexport; |
| 10149 | |
Denys Vlasenko | df5131c | 2009-06-07 16:04:17 +0200 | [diff] [blame] | 10150 | #if ENABLE_HUSH_EXPORT_N |
| 10151 | /* "!": do not abort on errors */ |
| 10152 | opt_unexport = getopt32(argv, "!n"); |
| 10153 | if (opt_unexport == (uint32_t)-1) |
| 10154 | return EXIT_FAILURE; |
| 10155 | argv += optind; |
| 10156 | #else |
| 10157 | opt_unexport = 0; |
| 10158 | argv++; |
| 10159 | #endif |
| 10160 | |
| 10161 | if (argv[0] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10162 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 10163 | if (e) { |
| 10164 | while (*e) { |
| 10165 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10166 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 10167 | #else |
| 10168 | /* ash emits: export VAR='VAL' |
| 10169 | * bash: declare -x VAR="VAL" |
| 10170 | * we follow ash example */ |
| 10171 | const char *s = *e++; |
| 10172 | const char *p = strchr(s, '='); |
| 10173 | |
| 10174 | if (!p) /* wtf? take next variable */ |
| 10175 | continue; |
| 10176 | /* export var= */ |
| 10177 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10178 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 10179 | putchar('\n'); |
| 10180 | #endif |
| 10181 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 10182 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 10183 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10184 | return EXIT_SUCCESS; |
| 10185 | } |
| 10186 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10187 | return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10188 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 10189 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10190 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10191 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10192 | static int FAST_FUNC builtin_local(char **argv) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10193 | { |
| 10194 | if (G.func_nest_level == 0) { |
| 10195 | bb_error_msg("%s: not in a function", argv[0]); |
| 10196 | return EXIT_FAILURE; /* bash compat */ |
| 10197 | } |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10198 | argv++; |
Denys Vlasenko | d358b0b | 2018-04-05 00:51:55 +0200 | [diff] [blame] | 10199 | /* Since all builtins run in a nested variable level, |
| 10200 | * need to use level - 1 here. Or else the variable will be removed at once |
| 10201 | * after builtin returns. |
| 10202 | */ |
| 10203 | return helper_export_local(argv, (G.var_nest_level - 1) << SETFLAG_VARLVL_SHIFT); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 10204 | } |
| 10205 | #endif |
| 10206 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10207 | #if ENABLE_HUSH_READONLY |
| 10208 | static int FAST_FUNC builtin_readonly(char **argv) |
| 10209 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10210 | argv++; |
| 10211 | if (*argv == NULL) { |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10212 | /* bash: readonly [-p]: list all readonly VARs |
| 10213 | * (-p has no effect in bash) |
| 10214 | */ |
| 10215 | struct variable *e; |
| 10216 | for (e = G.top_var; e; e = e->next) { |
| 10217 | if (e->flg_read_only) { |
| 10218 | //TODO: quote value: readonly VAR='VAL' |
| 10219 | printf("readonly %s\n", e->varstr); |
| 10220 | } |
| 10221 | } |
| 10222 | return EXIT_SUCCESS; |
| 10223 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 10224 | return helper_export_local(argv, SETFLAG_MAKE_RO); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 10225 | } |
| 10226 | #endif |
| 10227 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10228 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10229 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
| 10230 | static int FAST_FUNC builtin_unset(char **argv) |
| 10231 | { |
| 10232 | int ret; |
| 10233 | unsigned opts; |
| 10234 | |
| 10235 | /* "!": do not abort on errors */ |
| 10236 | /* "+": stop at 1st non-option */ |
| 10237 | opts = getopt32(argv, "!+vf"); |
| 10238 | if (opts == (unsigned)-1) |
| 10239 | return EXIT_FAILURE; |
| 10240 | if (opts == 3) { |
| 10241 | bb_error_msg("unset: -v and -f are exclusive"); |
| 10242 | return EXIT_FAILURE; |
| 10243 | } |
| 10244 | argv += optind; |
| 10245 | |
| 10246 | ret = EXIT_SUCCESS; |
| 10247 | while (*argv) { |
| 10248 | if (!(opts & 2)) { /* not -f */ |
| 10249 | if (unset_local_var(*argv)) { |
| 10250 | /* unset <nonexistent_var> doesn't fail. |
| 10251 | * Error is when one tries to unset RO var. |
| 10252 | * Message was printed by unset_local_var. */ |
| 10253 | ret = EXIT_FAILURE; |
| 10254 | } |
| 10255 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10256 | # if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10257 | else { |
| 10258 | unset_func(*argv); |
| 10259 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10260 | # endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10261 | argv++; |
| 10262 | } |
| 10263 | return ret; |
| 10264 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10265 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10266 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10267 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10268 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 10269 | * built-in 'set' handler |
| 10270 | * SUSv3 says: |
| 10271 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 10272 | * set [+abCefhmnuvx] [+o option] [argument...] |
| 10273 | * set -- [argument...] |
| 10274 | * set -o |
| 10275 | * set +o |
| 10276 | * Implementations shall support the options in both their hyphen and |
| 10277 | * plus-sign forms. These options can also be specified as options to sh. |
| 10278 | * Examples: |
| 10279 | * Write out all variables and their values: set |
| 10280 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 10281 | * Turn on the -x and -v options: set -xv |
| 10282 | * Unset all positional parameters: set -- |
| 10283 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 10284 | * Set the positional parameters to the expansion of x, even if x expands |
| 10285 | * with a leading '-' or '+': set -- $x |
| 10286 | * |
| 10287 | * So far, we only support "set -- [argument...]" and some of the short names. |
| 10288 | */ |
| 10289 | static int FAST_FUNC builtin_set(char **argv) |
| 10290 | { |
| 10291 | int n; |
| 10292 | char **pp, **g_argv; |
| 10293 | char *arg = *++argv; |
| 10294 | |
| 10295 | if (arg == NULL) { |
| 10296 | struct variable *e; |
| 10297 | for (e = G.top_var; e; e = e->next) |
| 10298 | puts(e->varstr); |
| 10299 | return EXIT_SUCCESS; |
| 10300 | } |
| 10301 | |
| 10302 | do { |
| 10303 | if (strcmp(arg, "--") == 0) { |
| 10304 | ++argv; |
| 10305 | goto set_argv; |
| 10306 | } |
| 10307 | if (arg[0] != '+' && arg[0] != '-') |
| 10308 | break; |
| 10309 | for (n = 1; arg[n]; ++n) { |
| 10310 | if (set_mode((arg[0] == '-'), arg[n], argv[1])) |
| 10311 | goto error; |
| 10312 | if (arg[n] == 'o' && argv[1]) |
| 10313 | argv++; |
| 10314 | } |
| 10315 | } while ((arg = *++argv) != NULL); |
| 10316 | /* Now argv[0] is 1st argument */ |
| 10317 | |
| 10318 | if (arg == NULL) |
| 10319 | return EXIT_SUCCESS; |
| 10320 | set_argv: |
| 10321 | |
| 10322 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 10323 | g_argv = G.global_argv; |
| 10324 | if (G.global_args_malloced) { |
| 10325 | pp = g_argv; |
| 10326 | while (*++pp) |
| 10327 | free(*pp); |
| 10328 | g_argv[1] = NULL; |
| 10329 | } else { |
| 10330 | G.global_args_malloced = 1; |
| 10331 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 10332 | pp[0] = g_argv[0]; /* retain $0 */ |
| 10333 | g_argv = pp; |
| 10334 | } |
| 10335 | /* This realloc's G.global_argv */ |
| 10336 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 10337 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 10338 | G.global_argc = 1 + string_array_len(pp + 1); |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10339 | |
| 10340 | return EXIT_SUCCESS; |
| 10341 | |
| 10342 | /* Nothing known, so abort */ |
| 10343 | error: |
Denys Vlasenko | 5700029 | 2018-01-12 14:41:45 +0100 | [diff] [blame] | 10344 | bb_error_msg("%s: %s: invalid option", "set", arg); |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10345 | return EXIT_FAILURE; |
| 10346 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 10347 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10348 | |
| 10349 | static int FAST_FUNC builtin_shift(char **argv) |
| 10350 | { |
| 10351 | int n = 1; |
| 10352 | argv = skip_dash_dash(argv); |
| 10353 | if (argv[0]) { |
Denys Vlasenko | e59591a | 2017-07-06 20:12:44 +0200 | [diff] [blame] | 10354 | n = bb_strtou(argv[0], NULL, 10); |
| 10355 | if (errno || n < 0) { |
| 10356 | /* shared string with ash.c */ |
| 10357 | bb_error_msg("Illegal number: %s", argv[0]); |
| 10358 | /* |
| 10359 | * ash aborts in this case. |
| 10360 | * bash prints error message and set $? to 1. |
| 10361 | * Interestingly, for "shift 99999" bash does not |
| 10362 | * print error message, but does set $? to 1 |
| 10363 | * (and does no shifting at all). |
| 10364 | */ |
| 10365 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10366 | } |
| 10367 | if (n >= 0 && n < G.global_argc) { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 10368 | if (G_global_args_malloced) { |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10369 | int m = 1; |
| 10370 | while (m <= n) |
| 10371 | free(G.global_argv[m++]); |
| 10372 | } |
| 10373 | G.global_argc -= n; |
| 10374 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 10375 | G.global_argc * sizeof(G.global_argv[0])); |
| 10376 | return EXIT_SUCCESS; |
| 10377 | } |
| 10378 | return EXIT_FAILURE; |
| 10379 | } |
| 10380 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10381 | #if ENABLE_HUSH_GETOPTS |
| 10382 | static int FAST_FUNC builtin_getopts(char **argv) |
| 10383 | { |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10384 | /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/getopts.html |
| 10385 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10386 | TODO: |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10387 | If a required argument is not found, and getopts is not silent, |
| 10388 | a question mark (?) is placed in VAR, OPTARG is unset, and a |
| 10389 | diagnostic message is printed. If getopts is silent, then a |
| 10390 | colon (:) is placed in VAR and OPTARG is set to the option |
| 10391 | character found. |
| 10392 | |
| 10393 | Test that VAR is a valid variable name? |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10394 | |
| 10395 | "Whenever the shell is invoked, OPTIND shall be initialized to 1" |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10396 | */ |
| 10397 | char cbuf[2]; |
| 10398 | const char *cp, *optstring, *var; |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10399 | int c, n, exitcode, my_opterr; |
| 10400 | unsigned count; |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10401 | |
| 10402 | optstring = *++argv; |
| 10403 | if (!optstring || !(var = *++argv)) { |
| 10404 | bb_error_msg("usage: getopts OPTSTRING VAR [ARGS]"); |
| 10405 | return EXIT_FAILURE; |
| 10406 | } |
| 10407 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10408 | if (argv[1]) |
| 10409 | argv[0] = G.global_argv[0]; /* for error messages in getopt() */ |
| 10410 | else |
| 10411 | argv = G.global_argv; |
| 10412 | cbuf[1] = '\0'; |
| 10413 | |
| 10414 | my_opterr = 0; |
Denys Vlasenko | 048491f | 2017-08-17 12:36:39 +0200 | [diff] [blame] | 10415 | if (optstring[0] != ':') { |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10416 | cp = get_local_var_value("OPTERR"); |
Denys Vlasenko | 048491f | 2017-08-17 12:36:39 +0200 | [diff] [blame] | 10417 | /* 0 if "OPTERR=0", 1 otherwise */ |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10418 | my_opterr = (!cp || NOT_LONE_CHAR(cp, '0')); |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10419 | } |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10420 | |
| 10421 | /* getopts stops on first non-option. Add "+" to force that */ |
| 10422 | /*if (optstring[0] != '+')*/ { |
| 10423 | char *s = alloca(strlen(optstring) + 2); |
| 10424 | sprintf(s, "+%s", optstring); |
| 10425 | optstring = s; |
| 10426 | } |
| 10427 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10428 | /* Naively, now we should just |
| 10429 | * cp = get_local_var_value("OPTIND"); |
| 10430 | * optind = cp ? atoi(cp) : 0; |
| 10431 | * optarg = NULL; |
| 10432 | * opterr = my_opterr; |
| 10433 | * c = getopt(string_array_len(argv), argv, optstring); |
| 10434 | * and be done? Not so fast... |
| 10435 | * Unlike normal getopt() usage in C programs, here |
| 10436 | * each successive call will (usually) have the same argv[] CONTENTS, |
| 10437 | * but not the ADDRESSES. Worse yet, it's possible that between |
| 10438 | * invocations of "getopts", there will be calls to shell builtins |
| 10439 | * which use getopt() internally. Example: |
| 10440 | * while getopts "abc" RES -a -bc -abc de; do |
| 10441 | * unset -ff func |
| 10442 | * done |
| 10443 | * This would not work correctly: getopt() call inside "unset" |
| 10444 | * modifies internal libc state which is tracking position in |
| 10445 | * multi-option strings ("-abc"). At best, it can skip options |
| 10446 | * or return the same option infinitely. With glibc implementation |
| 10447 | * of getopt(), it would use outright invalid pointers and return |
| 10448 | * garbage even _without_ "unset" mangling internal state. |
| 10449 | * |
| 10450 | * We resort to resetting getopt() state and calling it N times, |
| 10451 | * until we get Nth result (or failure). |
| 10452 | * (N == G.getopt_count is reset to 0 whenever OPTIND is [un]set). |
| 10453 | */ |
Denys Vlasenko | 6016181 | 2017-08-29 14:32:17 +0200 | [diff] [blame] | 10454 | GETOPT_RESET(); |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10455 | count = 0; |
| 10456 | n = string_array_len(argv); |
| 10457 | do { |
| 10458 | optarg = NULL; |
| 10459 | opterr = (count < G.getopt_count) ? 0 : my_opterr; |
| 10460 | c = getopt(n, argv, optstring); |
| 10461 | if (c < 0) |
| 10462 | break; |
| 10463 | count++; |
| 10464 | } while (count <= G.getopt_count); |
| 10465 | |
| 10466 | /* Set OPTIND. Prevent resetting of the magic counter! */ |
| 10467 | set_local_var_from_halves("OPTIND", utoa(optind)); |
| 10468 | G.getopt_count = count; /* "next time, give me N+1'th result" */ |
Denys Vlasenko | 6016181 | 2017-08-29 14:32:17 +0200 | [diff] [blame] | 10469 | GETOPT_RESET(); /* just in case */ |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10470 | |
| 10471 | /* Set OPTARG */ |
| 10472 | /* Always set or unset, never left as-is, even on exit/error: |
| 10473 | * "If no option was found, or if the option that was found |
| 10474 | * does not have an option-argument, OPTARG shall be unset." |
| 10475 | */ |
| 10476 | cp = optarg; |
| 10477 | if (c == '?') { |
| 10478 | /* If ":optstring" and unknown option is seen, |
| 10479 | * it is stored to OPTARG. |
| 10480 | */ |
| 10481 | if (optstring[1] == ':') { |
| 10482 | cbuf[0] = optopt; |
| 10483 | cp = cbuf; |
| 10484 | } |
| 10485 | } |
| 10486 | if (cp) |
| 10487 | set_local_var_from_halves("OPTARG", cp); |
| 10488 | else |
| 10489 | unset_local_var("OPTARG"); |
| 10490 | |
| 10491 | /* Convert -1 to "?" */ |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10492 | exitcode = EXIT_SUCCESS; |
| 10493 | if (c < 0) { /* -1: end of options */ |
| 10494 | exitcode = EXIT_FAILURE; |
| 10495 | c = '?'; |
| 10496 | } |
Denys Vlasenko | 419db03 | 2017-08-11 17:21:14 +0200 | [diff] [blame] | 10497 | |
Denys Vlasenko | 238ff98 | 2017-08-29 13:38:30 +0200 | [diff] [blame] | 10498 | /* Set VAR */ |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10499 | cbuf[0] = c; |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10500 | set_local_var_from_halves(var, cbuf); |
Denys Vlasenko | 9a7d0a0 | 2017-08-11 02:37:48 +0200 | [diff] [blame] | 10501 | |
Denys Vlasenko | 74d4058 | 2017-08-11 01:32:46 +0200 | [diff] [blame] | 10502 | return exitcode; |
| 10503 | } |
| 10504 | #endif |
| 10505 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10506 | static int FAST_FUNC builtin_source(char **argv) |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10507 | { |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10508 | char *arg_path, *filename; |
| 10509 | FILE *input; |
| 10510 | save_arg_t sv; |
| 10511 | char *args_need_save; |
| 10512 | #if ENABLE_HUSH_FUNCTIONS |
| 10513 | smallint sv_flg; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10514 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 10515 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10516 | argv = skip_dash_dash(argv); |
| 10517 | filename = argv[0]; |
| 10518 | if (!filename) { |
| 10519 | /* bash says: "bash: .: filename argument required" */ |
| 10520 | return 2; /* bash compat */ |
| 10521 | } |
| 10522 | arg_path = NULL; |
| 10523 | if (!strchr(filename, '/')) { |
| 10524 | arg_path = find_in_path(filename); |
| 10525 | if (arg_path) |
| 10526 | filename = arg_path; |
Denys Vlasenko | 54c2111 | 2018-01-27 20:46:45 +0100 | [diff] [blame] | 10527 | else if (!ENABLE_HUSH_BASH_SOURCE_CURDIR) { |
Denys Vlasenko | f7e0fea | 2018-01-27 19:05:59 +0100 | [diff] [blame] | 10528 | errno = ENOENT; |
| 10529 | bb_simple_perror_msg(filename); |
| 10530 | return EXIT_FAILURE; |
| 10531 | } |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10532 | } |
| 10533 | input = remember_FILE(fopen_or_warn(filename, "r")); |
| 10534 | free(arg_path); |
| 10535 | if (!input) { |
| 10536 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
| 10537 | /* POSIX: non-interactive shell should abort here, |
| 10538 | * not merely fail. So far no one complained :) |
| 10539 | */ |
| 10540 | return EXIT_FAILURE; |
| 10541 | } |
| 10542 | |
| 10543 | #if ENABLE_HUSH_FUNCTIONS |
| 10544 | sv_flg = G_flag_return_in_progress; |
| 10545 | /* "we are inside sourced file, ok to use return" */ |
| 10546 | G_flag_return_in_progress = -1; |
| 10547 | #endif |
| 10548 | args_need_save = argv[1]; /* used as a boolean variable */ |
| 10549 | if (args_need_save) |
| 10550 | save_and_replace_G_args(&sv, argv); |
| 10551 | |
| 10552 | /* "false; . ./empty_line; echo Zero:$?" should print 0 */ |
| 10553 | G.last_exitcode = 0; |
| 10554 | parse_and_run_file(input); |
| 10555 | fclose_and_forget(input); |
| 10556 | |
| 10557 | if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */ |
| 10558 | restore_G_args(&sv, argv); |
| 10559 | #if ENABLE_HUSH_FUNCTIONS |
| 10560 | G_flag_return_in_progress = sv_flg; |
| 10561 | #endif |
| 10562 | |
| 10563 | return G.last_exitcode; |
| 10564 | } |
| 10565 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10566 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10567 | static int FAST_FUNC builtin_trap(char **argv) |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10568 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10569 | int sig; |
| 10570 | char *new_cmd; |
| 10571 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10572 | if (!G_traps) |
| 10573 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10574 | |
| 10575 | argv++; |
| 10576 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 10577 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10578 | /* No args: print all trapped */ |
| 10579 | for (i = 0; i < NSIG; ++i) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10580 | if (G_traps[i]) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10581 | printf("trap -- "); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10582 | print_escaped(G_traps[i]); |
Denys Vlasenko | e74aaf9 | 2009-09-27 02:05:45 +0200 | [diff] [blame] | 10583 | /* note: bash adds "SIG", but only if invoked |
| 10584 | * as "bash". If called as "sh", or if set -o posix, |
| 10585 | * then it prints short signal names. |
| 10586 | * We are printing short names: */ |
| 10587 | printf(" %s\n", get_signame(i)); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10588 | } |
| 10589 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 10590 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10591 | return EXIT_SUCCESS; |
| 10592 | } |
| 10593 | |
| 10594 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10595 | /* If first arg is a number: reset all specified signals */ |
| 10596 | sig = bb_strtou(*argv, NULL, 10); |
| 10597 | if (errno == 0) { |
| 10598 | int ret; |
| 10599 | process_sig_list: |
| 10600 | ret = EXIT_SUCCESS; |
| 10601 | while (*argv) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10602 | sighandler_t handler; |
| 10603 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10604 | sig = get_signum(*argv++); |
Denys Vlasenko | 86981e3 | 2017-07-25 20:06:17 +0200 | [diff] [blame] | 10605 | if (sig < 0) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10606 | ret = EXIT_FAILURE; |
| 10607 | /* Mimic bash message exactly */ |
Denys Vlasenko | 7456298 | 2017-07-06 18:40:45 +0200 | [diff] [blame] | 10608 | bb_error_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10609 | continue; |
| 10610 | } |
| 10611 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10612 | free(G_traps[sig]); |
| 10613 | G_traps[sig] = xstrdup(new_cmd); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10614 | |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 10615 | debug_printf("trap: setting SIG%s (%i) to '%s'\n", |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10616 | get_signame(sig), sig, G_traps[sig]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10617 | |
| 10618 | /* There is no signal for 0 (EXIT) */ |
| 10619 | if (sig == 0) |
| 10620 | continue; |
| 10621 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10622 | if (new_cmd) |
| 10623 | handler = (new_cmd[0] ? record_pending_signo : SIG_IGN); |
| 10624 | else |
| 10625 | /* We are removing trap handler */ |
| 10626 | handler = pick_sighandler(sig); |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 10627 | install_sighandler(sig, handler); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10628 | } |
| 10629 | return ret; |
| 10630 | } |
| 10631 | |
| 10632 | if (!argv[1]) { /* no second arg */ |
| 10633 | bb_error_msg("trap: invalid arguments"); |
| 10634 | return EXIT_FAILURE; |
| 10635 | } |
| 10636 | |
| 10637 | /* First arg is "-": reset all specified to default */ |
| 10638 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 10639 | /* Everything else: set arg as signal handler |
| 10640 | * (includes "" case, which ignores signal) */ |
| 10641 | if (argv[0][0] == '-') { |
| 10642 | if (argv[0][1] == '\0') { /* "-" */ |
| 10643 | /* new_cmd remains NULL: "reset these sigs" */ |
| 10644 | goto reset_traps; |
| 10645 | } |
| 10646 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 10647 | argv++; |
| 10648 | } |
| 10649 | /* else: "-something", no special meaning */ |
| 10650 | } |
| 10651 | new_cmd = *argv; |
| 10652 | reset_traps: |
| 10653 | argv++; |
| 10654 | goto process_sig_list; |
| 10655 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 10656 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 10657 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10658 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10659 | static struct pipe *parse_jobspec(const char *str) |
| 10660 | { |
| 10661 | struct pipe *pi; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10662 | unsigned jobnum; |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10663 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10664 | if (sscanf(str, "%%%u", &jobnum) != 1) { |
| 10665 | if (str[0] != '%' |
| 10666 | || (str[1] != '%' && str[1] != '+' && str[1] != '\0') |
| 10667 | ) { |
| 10668 | bb_error_msg("bad argument '%s'", str); |
| 10669 | return NULL; |
| 10670 | } |
| 10671 | /* It is "%%", "%+" or "%" - current job */ |
| 10672 | jobnum = G.last_jobid; |
| 10673 | if (jobnum == 0) { |
| 10674 | bb_error_msg("no current job"); |
| 10675 | return NULL; |
| 10676 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10677 | } |
| 10678 | for (pi = G.job_list; pi; pi = pi->next) { |
| 10679 | if (pi->jobid == jobnum) { |
| 10680 | return pi; |
| 10681 | } |
| 10682 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10683 | bb_error_msg("%u: no such job", jobnum); |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10684 | return NULL; |
| 10685 | } |
| 10686 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10687 | static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM) |
| 10688 | { |
| 10689 | struct pipe *job; |
| 10690 | const char *status_string; |
| 10691 | |
| 10692 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 10693 | for (job = G.job_list; job; job = job->next) { |
| 10694 | if (job->alive_cmds == job->stopped_cmds) |
| 10695 | status_string = "Stopped"; |
| 10696 | else |
| 10697 | status_string = "Running"; |
| 10698 | |
| 10699 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 10700 | } |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10701 | |
| 10702 | clean_up_last_dead_job(); |
| 10703 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10704 | return EXIT_SUCCESS; |
| 10705 | } |
| 10706 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10707 | /* built-in 'fg' and 'bg' handler */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10708 | static int FAST_FUNC builtin_fg_bg(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10709 | { |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10710 | int i; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10711 | struct pipe *pi; |
| 10712 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 10713 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10714 | return EXIT_FAILURE; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 10715 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10716 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 10717 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10718 | for (pi = G.job_list; pi; pi = pi->next) { |
| 10719 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10720 | goto found; |
| 10721 | } |
| 10722 | } |
| 10723 | bb_error_msg("%s: no current job", argv[0]); |
| 10724 | return EXIT_FAILURE; |
| 10725 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 10726 | |
| 10727 | pi = parse_jobspec(argv[1]); |
| 10728 | if (!pi) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10729 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10730 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 10731 | /* TODO: bash prints a string representation |
| 10732 | * of job being foregrounded (like "sleep 1 | cat") */ |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 10733 | if (argv[0][0] == 'f' && G_saved_tty_pgrp) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10734 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 10735 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10736 | } |
| 10737 | |
| 10738 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 10739 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 10740 | for (i = 0; i < pi->num_cmds; i++) { |
| 10741 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10742 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 10743 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10744 | |
| 10745 | i = kill(- pi->pgrp, SIGCONT); |
| 10746 | if (i < 0) { |
| 10747 | if (errno == ESRCH) { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 10748 | delete_finished_job(pi); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10749 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10750 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 10751 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 10752 | } |
| 10753 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 10754 | if (argv[0][0] == 'f') { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 10755 | 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] | 10756 | return checkjobs_and_fg_shell(pi); |
| 10757 | } |
| 10758 | return EXIT_SUCCESS; |
| 10759 | } |
| 10760 | #endif |
| 10761 | |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10762 | #if ENABLE_HUSH_KILL |
| 10763 | static int FAST_FUNC builtin_kill(char **argv) |
| 10764 | { |
| 10765 | int ret = 0; |
| 10766 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10767 | # if ENABLE_HUSH_JOB |
| 10768 | if (argv[1] && strcmp(argv[1], "-l") != 0) { |
| 10769 | int i = 1; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10770 | |
| 10771 | do { |
| 10772 | struct pipe *pi; |
| 10773 | char *dst; |
| 10774 | int j, n; |
| 10775 | |
| 10776 | if (argv[i][0] != '%') |
| 10777 | continue; |
| 10778 | /* |
| 10779 | * "kill %N" - job kill |
| 10780 | * Converting to pgrp / pid kill |
| 10781 | */ |
| 10782 | pi = parse_jobspec(argv[i]); |
| 10783 | if (!pi) { |
| 10784 | /* Eat bad jobspec */ |
| 10785 | j = i; |
| 10786 | do { |
| 10787 | j++; |
| 10788 | argv[j - 1] = argv[j]; |
| 10789 | } while (argv[j]); |
| 10790 | ret = 1; |
| 10791 | i--; |
| 10792 | continue; |
| 10793 | } |
| 10794 | /* |
| 10795 | * In jobs started under job control, we signal |
| 10796 | * entire process group by kill -PGRP_ID. |
| 10797 | * This happens, f.e., in interactive shell. |
| 10798 | * |
| 10799 | * Otherwise, we signal each child via |
| 10800 | * kill PID1 PID2 PID3. |
| 10801 | * Testcases: |
| 10802 | * sh -c 'sleep 1|sleep 1 & kill %1' |
| 10803 | * sh -c 'true|sleep 2 & sleep 1; kill %1' |
| 10804 | * sh -c 'true|sleep 1 & sleep 2; kill %1' |
| 10805 | */ |
Denys Vlasenko | 5362cc4 | 2017-01-09 05:57:13 +0100 | [diff] [blame] | 10806 | n = G_interactive_fd ? 1 : pi->num_cmds; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10807 | dst = alloca(n * sizeof(int)*4); |
| 10808 | argv[i] = dst; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10809 | if (G_interactive_fd) |
| 10810 | dst += sprintf(dst, " -%u", (int)pi->pgrp); |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10811 | else for (j = 0; j < n; j++) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10812 | struct command *cmd = &pi->cmds[j]; |
| 10813 | /* Skip exited members of the job */ |
| 10814 | if (cmd->pid == 0) |
| 10815 | continue; |
| 10816 | /* |
| 10817 | * kill_main has matching code to expect |
| 10818 | * leading space. Needed to not confuse |
| 10819 | * negative pids with "kill -SIGNAL_NO" syntax |
| 10820 | */ |
| 10821 | dst += sprintf(dst, " %u", (int)cmd->pid); |
| 10822 | } |
| 10823 | *dst = '\0'; |
| 10824 | } while (argv[++i]); |
| 10825 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10826 | # endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10827 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10828 | if (argv[1] || ret == 0) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10829 | ret = run_applet_main(argv, kill_main); |
| 10830 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 10831 | /* else: ret = 1, "kill %bad_jobspec" case */ |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10832 | return ret; |
| 10833 | } |
| 10834 | #endif |
| 10835 | |
| 10836 | #if ENABLE_HUSH_WAIT |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10837 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10838 | #if !ENABLE_HUSH_JOB |
| 10839 | # define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid) |
| 10840 | #endif |
| 10841 | 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] | 10842 | { |
| 10843 | int ret = 0; |
| 10844 | for (;;) { |
| 10845 | int sig; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10846 | sigset_t oldset; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10847 | |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 10848 | if (!sigisemptyset(&G.pending_set)) |
| 10849 | goto check_sig; |
| 10850 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10851 | /* waitpid is not interruptible by SA_RESTARTed |
| 10852 | * signals which we use. Thus, this ugly dance: |
| 10853 | */ |
| 10854 | |
| 10855 | /* Make sure possible SIGCHLD is stored in kernel's |
| 10856 | * pending signal mask before we call waitpid. |
| 10857 | * Or else we may race with SIGCHLD, lose it, |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10858 | * and get stuck in sigsuspend... |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10859 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10860 | sigfillset(&oldset); /* block all signals, remember old set */ |
| 10861 | sigprocmask(SIG_SETMASK, &oldset, &oldset); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10862 | |
| 10863 | if (!sigisemptyset(&G.pending_set)) { |
| 10864 | /* Crap! we raced with some signal! */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10865 | goto restore; |
| 10866 | } |
| 10867 | |
| 10868 | /*errno = 0; - checkjobs does this */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10869 | /* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10870 | ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10871 | debug_printf_exec("checkjobs:%d\n", ret); |
| 10872 | #if ENABLE_HUSH_JOB |
| 10873 | if (waitfor_pipe) { |
| 10874 | int rcode = job_exited_or_stopped(waitfor_pipe); |
| 10875 | debug_printf_exec("job_exited_or_stopped:%d\n", rcode); |
| 10876 | if (rcode >= 0) { |
| 10877 | ret = rcode; |
| 10878 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10879 | break; |
| 10880 | } |
| 10881 | } |
| 10882 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10883 | /* if ECHILD, there are no children (ret is -1 or 0) */ |
| 10884 | /* if ret == 0, no children changed state */ |
| 10885 | /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10886 | if (errno == ECHILD || ret) { |
| 10887 | ret--; |
| 10888 | if (ret < 0) /* if ECHILD, may need to fix "ret" */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10889 | ret = 0; |
| 10890 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10891 | break; |
| 10892 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10893 | /* Wait for SIGCHLD or any other signal */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10894 | /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */ |
| 10895 | /* Note: sigsuspend invokes signal handler */ |
| 10896 | sigsuspend(&oldset); |
| 10897 | restore: |
| 10898 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 10899 | check_sig: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10900 | /* So, did we get a signal? */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10901 | sig = check_and_run_traps(); |
| 10902 | if (sig /*&& sig != SIGCHLD - always true */) { |
Denys Vlasenko | 7c40ddd | 2017-08-02 16:37:39 +0200 | [diff] [blame] | 10903 | /* Do this for any (non-ignored) signal, not only for ^C */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10904 | ret = 128 + sig; |
| 10905 | break; |
| 10906 | } |
| 10907 | /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */ |
| 10908 | } |
| 10909 | return ret; |
| 10910 | } |
| 10911 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10912 | static int FAST_FUNC builtin_wait(char **argv) |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10913 | { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10914 | int ret; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10915 | int status; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10916 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 10917 | argv = skip_dash_dash(argv); |
| 10918 | if (argv[0] == NULL) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 10919 | /* Don't care about wait results */ |
| 10920 | /* Note 1: must wait until there are no more children */ |
| 10921 | /* Note 2: must be interruptible */ |
| 10922 | /* Examples: |
| 10923 | * $ sleep 3 & sleep 6 & wait |
| 10924 | * [1] 30934 sleep 3 |
| 10925 | * [2] 30935 sleep 6 |
| 10926 | * [1] Done sleep 3 |
| 10927 | * [2] Done sleep 6 |
| 10928 | * $ sleep 3 & sleep 6 & wait |
| 10929 | * [1] 30936 sleep 3 |
| 10930 | * [2] 30937 sleep 6 |
| 10931 | * [1] Done sleep 3 |
| 10932 | * ^C <-- after ~4 sec from keyboard |
| 10933 | * $ |
| 10934 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10935 | 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] | 10936 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10937 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10938 | do { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10939 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10940 | if (errno || pid <= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10941 | #if ENABLE_HUSH_JOB |
| 10942 | if (argv[0][0] == '%') { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10943 | struct pipe *wait_pipe; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10944 | ret = 127; /* bash compat for bad jobspecs */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10945 | wait_pipe = parse_jobspec(*argv); |
| 10946 | if (wait_pipe) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10947 | ret = job_exited_or_stopped(wait_pipe); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10948 | if (ret < 0) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10949 | ret = wait_for_child_or_signal(wait_pipe, 0); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10950 | } else { |
| 10951 | /* waiting on "last dead job" removes it */ |
| 10952 | clean_up_last_dead_job(); |
Denys Vlasenko | 1310263 | 2017-07-08 00:24:32 +0200 | [diff] [blame] | 10953 | } |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10954 | } |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10955 | /* else: parse_jobspec() already emitted error msg */ |
| 10956 | continue; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10957 | } |
| 10958 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10959 | /* mimic bash message */ |
| 10960 | 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] | 10961 | ret = EXIT_FAILURE; |
| 10962 | continue; /* bash checks all argv[] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10963 | } |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10964 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10965 | /* Do we have such child? */ |
| 10966 | ret = waitpid(pid, &status, WNOHANG); |
| 10967 | if (ret < 0) { |
| 10968 | /* No */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10969 | ret = 127; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10970 | if (errno == ECHILD) { |
Denys Vlasenko | 0c5657e | 2017-07-14 19:27:03 +0200 | [diff] [blame] | 10971 | if (pid == G.last_bg_pid) { |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10972 | /* "wait $!" but last bg task has already exited. Try: |
| 10973 | * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $? |
| 10974 | * In bash it prints exitcode 0, then 3. |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10975 | * In dash, it is 127. |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10976 | */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10977 | ret = G.last_bg_pid_exitcode; |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10978 | } else { |
| 10979 | /* Example: "wait 1". mimic bash message */ |
| 10980 | 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] | 10981 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10982 | } else { |
| 10983 | /* ??? */ |
| 10984 | bb_perror_msg("wait %s", *argv); |
| 10985 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10986 | continue; /* bash checks all argv[] */ |
| 10987 | } |
| 10988 | if (ret == 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10989 | /* Yes, and it still runs */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10990 | ret = wait_for_child_or_signal(NULL, pid); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10991 | } else { |
| 10992 | /* Yes, and it just exited */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10993 | process_wait_result(NULL, pid, status); |
Denys Vlasenko | 85378cd | 2015-10-11 21:47:11 +0200 | [diff] [blame] | 10994 | ret = WEXITSTATUS(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10995 | if (WIFSIGNALED(status)) |
| 10996 | ret = 128 + WTERMSIG(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10997 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10998 | } while (*++argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10999 | |
| 11000 | return ret; |
| 11001 | } |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 11002 | #endif |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 11003 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11004 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 11005 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 11006 | { |
| 11007 | if (argv[1]) { |
| 11008 | def = bb_strtou(argv[1], NULL, 10); |
| 11009 | if (errno || def < def_min || argv[2]) { |
| 11010 | bb_error_msg("%s: bad arguments", argv[0]); |
| 11011 | def = UINT_MAX; |
| 11012 | } |
| 11013 | } |
| 11014 | return def; |
| 11015 | } |
| 11016 | #endif |
| 11017 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 11018 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 11019 | static int FAST_FUNC builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 11020 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11021 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 11022 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 11023 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 11024 | /* if we came from builtin_continue(), need to undo "= 1" */ |
| 11025 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 11026 | return EXIT_SUCCESS; /* bash compat */ |
| 11027 | } |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 11028 | G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11029 | |
| 11030 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 11031 | if (depth == UINT_MAX) |
| 11032 | G.flag_break_continue = BC_BREAK; |
| 11033 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 11034 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11035 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 11036 | return EXIT_SUCCESS; |
| 11037 | } |
| 11038 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 11039 | static int FAST_FUNC builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 11040 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 11041 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 11042 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 11043 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 11044 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11045 | |
| 11046 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 11047 | static int FAST_FUNC builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11048 | { |
| 11049 | int rc; |
| 11050 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 11051 | if (G_flag_return_in_progress != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11052 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 11053 | return EXIT_FAILURE; /* bash compat */ |
| 11054 | } |
| 11055 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 11056 | G_flag_return_in_progress = 1; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 11057 | |
| 11058 | /* bash: |
| 11059 | * out of range: wraps around at 256, does not error out |
| 11060 | * non-numeric param: |
| 11061 | * f() { false; return qwe; }; f; echo $? |
| 11062 | * bash: return: qwe: numeric argument required <== we do this |
| 11063 | * 255 <== we also do this |
| 11064 | */ |
| 11065 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 11066 | return rc; |
| 11067 | } |
| 11068 | #endif |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 11069 | |
Denys Vlasenko | 11f2e99 | 2017-08-10 16:34:03 +0200 | [diff] [blame] | 11070 | #if ENABLE_HUSH_TIMES |
| 11071 | static int FAST_FUNC builtin_times(char **argv UNUSED_PARAM) |
| 11072 | { |
| 11073 | static const uint8_t times_tbl[] ALIGN1 = { |
| 11074 | ' ', offsetof(struct tms, tms_utime), |
| 11075 | '\n', offsetof(struct tms, tms_stime), |
| 11076 | ' ', offsetof(struct tms, tms_cutime), |
| 11077 | '\n', offsetof(struct tms, tms_cstime), |
| 11078 | 0 |
| 11079 | }; |
| 11080 | const uint8_t *p; |
| 11081 | unsigned clk_tck; |
| 11082 | struct tms buf; |
| 11083 | |
| 11084 | clk_tck = bb_clk_tck(); |
| 11085 | |
| 11086 | times(&buf); |
| 11087 | p = times_tbl; |
| 11088 | do { |
| 11089 | unsigned sec, frac; |
| 11090 | unsigned long t; |
| 11091 | t = *(clock_t *)(((char *) &buf) + p[1]); |
| 11092 | sec = t / clk_tck; |
| 11093 | frac = t % clk_tck; |
| 11094 | printf("%um%u.%03us%c", |
| 11095 | sec / 60, sec % 60, |
| 11096 | (frac * 1000) / clk_tck, |
| 11097 | p[0]); |
| 11098 | p += 2; |
| 11099 | } while (*p); |
| 11100 | |
| 11101 | return EXIT_SUCCESS; |
| 11102 | } |
| 11103 | #endif |
| 11104 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 11105 | #if ENABLE_HUSH_MEMLEAK |
| 11106 | static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM) |
| 11107 | { |
| 11108 | void *p; |
| 11109 | unsigned long l; |
| 11110 | |
| 11111 | # ifdef M_TRIM_THRESHOLD |
| 11112 | /* Optional. Reduces probability of false positives */ |
| 11113 | malloc_trim(0); |
| 11114 | # endif |
| 11115 | /* Crude attempt to find where "free memory" starts, |
| 11116 | * sans fragmentation. */ |
| 11117 | p = malloc(240); |
| 11118 | l = (unsigned long)p; |
| 11119 | free(p); |
| 11120 | p = malloc(3400); |
| 11121 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 11122 | free(p); |
| 11123 | |
| 11124 | |
| 11125 | # if 0 /* debug */ |
| 11126 | { |
| 11127 | struct mallinfo mi = mallinfo(); |
| 11128 | printf("top alloc:0x%lx malloced:%d+%d=%d\n", l, |
| 11129 | mi.arena, mi.hblkhd, mi.arena + mi.hblkhd); |
| 11130 | } |
| 11131 | # endif |
| 11132 | |
| 11133 | if (!G.memleak_value) |
| 11134 | G.memleak_value = l; |
| 11135 | |
| 11136 | l -= G.memleak_value; |
| 11137 | if ((long)l < 0) |
| 11138 | l = 0; |
| 11139 | l /= 1024; |
| 11140 | if (l > 127) |
| 11141 | l = 127; |
| 11142 | |
| 11143 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 11144 | return l; |
| 11145 | } |
| 11146 | #endif |