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 |
| 50 | * builtins mandated by standards we don't support: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 51 | * [un]alias, command, fc, getopts, times: |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 52 | * command -v CMD: print "/path/to/CMD" |
| 53 | * prints "CMD" for builtins |
| 54 | * prints "alias ALIAS='EXPANSION'" for aliases |
| 55 | * prints nothing and sets $? to 1 if not found |
| 56 | * command -V CMD: print "CMD is /path/CMD|a shell builtin|etc" |
| 57 | * command [-p] CMD: run CMD, even if a function CMD also exists |
| 58 | * (can use this to override standalone shell as well) |
| 59 | * -p: use default $PATH |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 60 | * command BLTIN: disables special-ness (e.g. errors do not abort) |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 61 | * getopts: getopt() for shells |
| 62 | * times: print getrusage(SELF/CHILDREN).ru_utime/ru_stime |
| 63 | * fc -l[nr] [BEG] [END]: list range of commands in history |
| 64 | * fc [-e EDITOR] [BEG] [END]: edit/rerun range of commands |
| 65 | * fc -s [PAT=REP] [CMD]: rerun CMD, replacing PAT with REP |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 66 | * |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 67 | * Bash compat TODO: |
| 68 | * redirection of stdout+stderr: &> and >& |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 69 | * reserved words: function select |
| 70 | * advanced test: [[ ]] |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 71 | * process substitution: <(list) and >(list) |
| 72 | * =~: regex operator |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 73 | * let EXPR [EXPR...] |
Denys Vlasenko | 349ef96 | 2010-05-21 15:46:24 +0200 | [diff] [blame] | 74 | * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION) |
| 75 | * If the last arg evaluates to 0, let returns 1; 0 otherwise. |
| 76 | * 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] | 77 | * ((EXPR)) |
Denys Vlasenko | 349ef96 | 2010-05-21 15:46:24 +0200 | [diff] [blame] | 78 | * The EXPR is evaluated according to ARITHMETIC EVALUATION. |
| 79 | * This is exactly equivalent to let "EXPR". |
Denys Vlasenko | adc0e20 | 2010-05-17 18:56:58 +0200 | [diff] [blame] | 80 | * $[EXPR]: synonym for $((EXPR)) |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 81 | * indirect expansion: ${!VAR} |
| 82 | * substring op on @: ${@:n:m} |
Denys Vlasenko | bbecd74 | 2010-10-03 17:22:52 +0200 | [diff] [blame] | 83 | * |
| 84 | * Won't do: |
Denys Vlasenko | 203fd7b | 2017-07-17 16:13:35 +0200 | [diff] [blame] | 85 | * Some builtins mandated by standards: |
| 86 | * newgrp [GRP]: not a builtin in bash but a suid binary |
| 87 | * which spawns a new shell with new group ID |
Denys Vlasenko | bbecd74 | 2010-10-03 17:22:52 +0200 | [diff] [blame] | 88 | * In bash, export builtin is special, its arguments are assignments |
Denys Vlasenko | 0821801 | 2009-06-03 14:43:56 +0200 | [diff] [blame] | 89 | * and therefore expansion of them should be "one-word" expansion: |
| 90 | * $ export i=`echo 'a b'` # export has one arg: "i=a b" |
| 91 | * compare with: |
| 92 | * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b" |
| 93 | * ls: cannot access i=a: No such file or directory |
| 94 | * ls: cannot access b: No such file or directory |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 95 | * Note1: same applies to local builtin. |
Denys Vlasenko | 0821801 | 2009-06-03 14:43:56 +0200 | [diff] [blame] | 96 | * Note2: bash 3.2.33(1) does this only if export word itself |
| 97 | * is not quoted: |
| 98 | * $ export i=`echo 'aaa bbb'`; echo "$i" |
| 99 | * aaa bbb |
| 100 | * $ "export" i=`echo 'aaa bbb'`; echo "$i" |
| 101 | * aaa |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 102 | */ |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 103 | //config:config HUSH |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 104 | //config: bool "hush (64 kb)" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 105 | //config: default y |
| 106 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 107 | //config: hush is a small shell. It handles the normal flow control |
| 108 | //config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops, |
| 109 | //config: case/esac. Redirections, here documents, $((arithmetic)) |
| 110 | //config: and functions are supported. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 111 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 112 | //config: It will compile and work on no-mmu systems. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 113 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 114 | //config: It does not handle select, aliases, tilde expansion, |
| 115 | //config: &>file and >&file redirection of stdout+stderr. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 116 | //config: |
| 117 | //config:config HUSH_BASH_COMPAT |
| 118 | //config: bool "bash-compatible extensions" |
| 119 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 120 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 121 | //config: |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 122 | //config:config HUSH_BRACE_EXPANSION |
| 123 | //config: bool "Brace expansion" |
| 124 | //config: default y |
| 125 | //config: depends on HUSH_BASH_COMPAT |
| 126 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 127 | //config: Enable {abc,def} extension. |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 128 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 129 | //config:config HUSH_INTERACTIVE |
| 130 | //config: bool "Interactive mode" |
| 131 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 132 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 133 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 134 | //config: Enable interactive mode (prompt and command editing). |
| 135 | //config: Without this, hush simply reads and executes commands |
| 136 | //config: from stdin just like a shell script from a file. |
| 137 | //config: No prompt, no PS1/PS2 magic shell variables. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 138 | //config: |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 139 | //config:config HUSH_SAVEHISTORY |
| 140 | //config: bool "Save command history to .hush_history" |
| 141 | //config: default y |
| 142 | //config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 143 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 144 | //config:config HUSH_JOB |
| 145 | //config: bool "Job control" |
| 146 | //config: default y |
| 147 | //config: depends on HUSH_INTERACTIVE |
| 148 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 149 | //config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current |
| 150 | //config: command (not entire shell), fg/bg builtins work. Without this option, |
| 151 | //config: "cmd &" still works by simply spawning a process and immediately |
| 152 | //config: prompting for next command (or executing next command in a script), |
| 153 | //config: but no separate process group is formed. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 154 | //config: |
| 155 | //config:config HUSH_TICK |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 156 | //config: bool "Support process substitution" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 157 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 158 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 159 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 160 | //config: Enable `command` and $(command). |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 161 | //config: |
| 162 | //config:config HUSH_IF |
| 163 | //config: bool "Support if/then/elif/else/fi" |
| 164 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 165 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 166 | //config: |
| 167 | //config:config HUSH_LOOPS |
| 168 | //config: bool "Support for, while and until loops" |
| 169 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 170 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 171 | //config: |
| 172 | //config:config HUSH_CASE |
| 173 | //config: bool "Support case ... esac statement" |
| 174 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 175 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 176 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 177 | //config: Enable case ... esac statement. +400 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 178 | //config: |
| 179 | //config:config HUSH_FUNCTIONS |
| 180 | //config: bool "Support funcname() { commands; } syntax" |
| 181 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 182 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 183 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 184 | //config: Enable support for shell functions. +800 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 185 | //config: |
| 186 | //config:config HUSH_LOCAL |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 187 | //config: bool "local builtin" |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 188 | //config: default y |
| 189 | //config: depends on HUSH_FUNCTIONS |
| 190 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 191 | //config: Enable support for local variables in functions. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 192 | //config: |
| 193 | //config:config HUSH_RANDOM_SUPPORT |
| 194 | //config: bool "Pseudorandom generator and $RANDOM variable" |
| 195 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 196 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 197 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 198 | //config: Enable pseudorandom generator and dynamic variable "$RANDOM". |
| 199 | //config: Each read of "$RANDOM" will generate a new pseudorandom value. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 200 | //config: |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 201 | //config:config HUSH_MODE_X |
| 202 | //config: bool "Support 'hush -x' option and 'set -x' command" |
| 203 | //config: default y |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 204 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 205 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 206 | //config: This instructs hush to print commands before execution. |
| 207 | //config: Adds ~300 bytes. |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 208 | //config: |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 209 | //config:config HUSH_ECHO |
| 210 | //config: bool "echo builtin" |
| 211 | //config: default y |
| 212 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 213 | //config: |
| 214 | //config:config HUSH_PRINTF |
| 215 | //config: bool "printf builtin" |
| 216 | //config: default y |
| 217 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 218 | //config: |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 219 | //config:config HUSH_TEST |
| 220 | //config: bool "test builtin" |
| 221 | //config: default y |
| 222 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
| 223 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 224 | //config:config HUSH_HELP |
| 225 | //config: bool "help builtin" |
| 226 | //config: default y |
| 227 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 228 | //config: |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 229 | //config:config HUSH_EXPORT |
| 230 | //config: bool "export builtin" |
| 231 | //config: default y |
| 232 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 233 | //config: |
| 234 | //config:config HUSH_EXPORT_N |
| 235 | //config: bool "Support 'export -n' option" |
| 236 | //config: default y |
| 237 | //config: depends on HUSH_EXPORT |
| 238 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 239 | //config: export -n unexports variables. It is a bash extension. |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 240 | //config: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 241 | //config:config HUSH_READONLY |
| 242 | //config: bool "readonly builtin" |
| 243 | //config: default y |
Denys Vlasenko | 6b0695b | 2017-07-17 21:47:27 +0200 | [diff] [blame] | 244 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 245 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 246 | //config: Enable support for read-only variables. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 247 | //config: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 248 | //config:config HUSH_KILL |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 249 | //config: bool "kill builtin (supports kill %jobspec)" |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 250 | //config: default y |
| 251 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 252 | //config: |
| 253 | //config:config HUSH_WAIT |
| 254 | //config: bool "wait builtin" |
| 255 | //config: default y |
| 256 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 257 | //config: |
| 258 | //config:config HUSH_TRAP |
| 259 | //config: bool "trap builtin" |
| 260 | //config: default y |
| 261 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 262 | //config: |
| 263 | //config:config HUSH_TYPE |
| 264 | //config: bool "type builtin" |
| 265 | //config: default y |
| 266 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 267 | //config: |
| 268 | //config:config HUSH_READ |
| 269 | //config: bool "read builtin" |
| 270 | //config: default y |
| 271 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 272 | //config: |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 273 | //config:config HUSH_SET |
| 274 | //config: bool "set builtin" |
| 275 | //config: default y |
| 276 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 277 | //config: |
| 278 | //config:config HUSH_UNSET |
| 279 | //config: bool "unset builtin" |
| 280 | //config: default y |
| 281 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 282 | //config: |
| 283 | //config:config HUSH_ULIMIT |
| 284 | //config: bool "ulimit builtin" |
| 285 | //config: default y |
| 286 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 287 | //config: |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 288 | //config:config HUSH_UMASK |
| 289 | //config: bool "umask builtin" |
| 290 | //config: default y |
| 291 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 292 | //config: |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 293 | //config:config HUSH_MEMLEAK |
| 294 | //config: bool "memleak builtin (debugging)" |
| 295 | //config: default n |
| 296 | //config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH |
Denys Vlasenko | 202a2d1 | 2010-07-16 12:36:14 +0200 | [diff] [blame] | 297 | |
Denys Vlasenko | 20704f0 | 2011-03-23 17:59:27 +0100 | [diff] [blame] | 298 | //applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 299 | // APPLET_ODDNAME:name main location suid_type help |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 300 | //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] | 301 | //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] | 302 | |
| 303 | //kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 304 | //kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o |
| 305 | //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] | 306 | //kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o |
| 307 | |
Dan Fandrich | 89ca2f9 | 2010-11-28 01:54:39 +0100 | [diff] [blame] | 308 | /* -i (interactive) and -s (read stdin) are also accepted, |
| 309 | * but currently do nothing, therefore aren't shown in help. |
| 310 | * NOMMU-specific options are not meant to be used by users, |
| 311 | * therefore we don't show them either. |
| 312 | */ |
| 313 | //usage:#define hush_trivial_usage |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 314 | //usage: "[-enxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]" |
Denys Vlasenko | b0b8343 | 2011-03-07 12:34:59 +0100 | [diff] [blame] | 315 | //usage:#define hush_full_usage "\n\n" |
| 316 | //usage: "Unix shell interpreter" |
| 317 | |
Denys Vlasenko | 6704746 | 2016-12-22 15:21:58 +0100 | [diff] [blame] | 318 | #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
| 319 | || defined(__APPLE__) \ |
| 320 | ) |
| 321 | # include <malloc.h> /* for malloc_trim */ |
| 322 | #endif |
| 323 | #include <glob.h> |
| 324 | /* #include <dmalloc.h> */ |
| 325 | #if ENABLE_HUSH_CASE |
| 326 | # include <fnmatch.h> |
| 327 | #endif |
| 328 | #include <sys/utsname.h> /* for setting $HOSTNAME */ |
| 329 | |
| 330 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
| 331 | #include "unicode.h" |
| 332 | #include "shell_common.h" |
| 333 | #include "math.h" |
| 334 | #include "match.h" |
| 335 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 336 | # include "random.h" |
| 337 | #else |
| 338 | # define CLEAR_RANDOM_T(rnd) ((void)0) |
| 339 | #endif |
| 340 | #ifndef F_DUPFD_CLOEXEC |
| 341 | # define F_DUPFD_CLOEXEC F_DUPFD |
| 342 | #endif |
| 343 | #ifndef PIPE_BUF |
| 344 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 345 | #endif |
| 346 | |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 347 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 348 | /* So far, all bash compat is controlled by one config option */ |
| 349 | /* Separate defines document which part of code implements what */ |
| 350 | #define BASH_PATTERN_SUBST ENABLE_HUSH_BASH_COMPAT |
| 351 | #define BASH_SUBSTR ENABLE_HUSH_BASH_COMPAT |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 352 | #define BASH_SOURCE ENABLE_HUSH_BASH_COMPAT |
| 353 | #define BASH_HOSTNAME_VAR ENABLE_HUSH_BASH_COMPAT |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 354 | #define BASH_TEST2 (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST) |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 355 | |
| 356 | |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 357 | /* Build knobs */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 358 | #define LEAK_HUNTING 0 |
| 359 | #define BUILD_AS_NOMMU 0 |
| 360 | /* Enable/disable sanity checks. Ok to enable in production, |
| 361 | * only adds a bit of bloat. Set to >1 to get non-production level verbosity. |
| 362 | * Keeping 1 for now even in released versions. |
| 363 | */ |
| 364 | #define HUSH_DEBUG 1 |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 365 | /* Slightly bigger (+200 bytes), but faster hush. |
| 366 | * So far it only enables a trick with counting SIGCHLDs and forks, |
| 367 | * which allows us to do fewer waitpid's. |
| 368 | * (we can detect a case where neither forks were done nor SIGCHLDs happened |
| 369 | * and therefore waitpid will return the same result as last time) |
| 370 | */ |
| 371 | #define ENABLE_HUSH_FAST 0 |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 372 | /* TODO: implement simplified code for users which do not need ${var%...} ops |
| 373 | * So far ${var%...} ops are always enabled: |
| 374 | */ |
| 375 | #define ENABLE_HUSH_DOLLAR_OPS 1 |
Denis Vlasenko | 1943aec | 2009-04-09 14:15:57 +0000 | [diff] [blame] | 376 | |
| 377 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 378 | #if BUILD_AS_NOMMU |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 379 | # undef BB_MMU |
| 380 | # undef USE_FOR_NOMMU |
| 381 | # undef USE_FOR_MMU |
| 382 | # define BB_MMU 0 |
| 383 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 384 | # define USE_FOR_MMU(...) |
| 385 | #endif |
| 386 | |
Denys Vlasenko | 1fcbff2 | 2010-06-26 02:40:08 +0200 | [diff] [blame] | 387 | #include "NUM_APPLETS.h" |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 388 | #if NUM_APPLETS == 1 |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 389 | /* STANDALONE does not make sense, and won't compile */ |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 390 | # undef CONFIG_FEATURE_SH_STANDALONE |
| 391 | # undef ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 392 | # undef IF_FEATURE_SH_STANDALONE |
Denys Vlasenko | 1497484 | 2010-03-23 01:08:26 +0100 | [diff] [blame] | 393 | # undef IF_NOT_FEATURE_SH_STANDALONE |
| 394 | # define ENABLE_FEATURE_SH_STANDALONE 0 |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 395 | # define IF_FEATURE_SH_STANDALONE(...) |
| 396 | # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 397 | #endif |
| 398 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 399 | #if !ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 400 | # undef ENABLE_FEATURE_EDITING |
| 401 | # define ENABLE_FEATURE_EDITING 0 |
| 402 | # undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 403 | # define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 404 | # undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 405 | # define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 406 | #endif |
| 407 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 408 | /* Do we support ANY keywords? */ |
| 409 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 410 | # define HAS_KEYWORDS 1 |
| 411 | # define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 412 | # define IF_HAS_NO_KEYWORDS(...) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 413 | #else |
Denis Vlasenko | ce4acbb | 2009-04-10 23:23:41 +0000 | [diff] [blame] | 414 | # define HAS_KEYWORDS 0 |
| 415 | # define IF_HAS_KEYWORDS(...) |
| 416 | # define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 417 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 418 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 419 | /* If you comment out one of these below, it will be #defined later |
| 420 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 421 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 422 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 423 | #define debug_printf_parse(...) do {} while (0) |
| 424 | #define debug_print_tree(a, b) do {} while (0) |
| 425 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 426 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 427 | #define debug_printf_jobs(...) do {} while (0) |
| 428 | #define debug_printf_expand(...) do {} while (0) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 429 | #define debug_printf_varexp(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 430 | #define debug_printf_glob(...) do {} while (0) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 431 | #define debug_printf_redir(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 432 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 433 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 434 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 435 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 436 | #define ERR_PTR ((void*)(long)1) |
| 437 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 438 | #define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 439 | |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 440 | #define _SPECIAL_VARS_STR "_*@$!?#" |
| 441 | #define SPECIAL_VARS_STR ("_*@$!?#" + 1) |
| 442 | #define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3) |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 443 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 444 | /* Support / and // replace ops */ |
| 445 | /* Note that // is stored as \ in "encoded" string representation */ |
| 446 | # define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?" |
| 447 | # define VAR_SUBST_OPS ("\\/%#:-=+?" + 1) |
| 448 | # define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5) |
| 449 | #else |
| 450 | # define VAR_ENCODED_SUBST_OPS "%#:-=+?" |
| 451 | # define VAR_SUBST_OPS "%#:-=+?" |
| 452 | # define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3) |
| 453 | #endif |
Denys Vlasenko | e85248a | 2010-05-22 06:20:26 +0200 | [diff] [blame] | 454 | |
| 455 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 456 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 457 | struct variable; |
| 458 | |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 459 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
| 460 | |
| 461 | /* This supports saving pointers malloced in vfork child, |
Denis Vlasenko | c376db3 | 2009-04-15 21:49:48 +0000 | [diff] [blame] | 462 | * to be freed in the parent. |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 463 | */ |
| 464 | #if !BB_MMU |
| 465 | typedef struct nommu_save_t { |
| 466 | char **new_env; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 467 | struct variable *old_vars; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 468 | char **argv; |
Denis Vlasenko | 27014ed | 2009-04-15 21:48:23 +0000 | [diff] [blame] | 469 | char **argv_from_re_execing; |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 470 | } nommu_save_t; |
| 471 | #endif |
| 472 | |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 473 | enum { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 474 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 475 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 476 | RES_IF , |
| 477 | RES_THEN , |
| 478 | RES_ELIF , |
| 479 | RES_ELSE , |
| 480 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 481 | #endif |
| 482 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 483 | RES_FOR , |
| 484 | RES_WHILE , |
| 485 | RES_UNTIL , |
| 486 | RES_DO , |
| 487 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 488 | #endif |
| 489 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 490 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 491 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 492 | #if ENABLE_HUSH_CASE |
| 493 | RES_CASE , |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 494 | /* three pseudo-keywords support contrived "case" syntax: */ |
| 495 | RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */ |
| 496 | RES_MATCH , /* "word)" */ |
| 497 | RES_CASE_BODY, /* "this command is inside CASE" */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 498 | RES_ESAC , |
| 499 | #endif |
| 500 | RES_XXXX , |
| 501 | RES_SNTX |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 502 | }; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 503 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 504 | typedef struct o_string { |
| 505 | char *data; |
| 506 | int length; /* position where data is appended */ |
| 507 | int maxlen; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 508 | int o_expflags; |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 509 | /* At least some part of the string was inside '' or "", |
| 510 | * possibly empty one: word"", wo''rd etc. */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 511 | smallint has_quoted_part; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 512 | smallint has_empty_slot; |
| 513 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 514 | } o_string; |
| 515 | enum { |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 516 | EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */ |
| 517 | EXP_FLAG_GLOB = 0x2, |
| 518 | /* Protect newly added chars against globbing |
| 519 | * by prepending \ to *, ?, [, \ */ |
| 520 | EXP_FLAG_ESC_GLOB_CHARS = 0x1, |
| 521 | }; |
| 522 | enum { |
| 523 | MAYBE_ASSIGNMENT = 0, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 524 | DEFINITELY_ASSIGNMENT = 1, |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 525 | NOT_ASSIGNMENT = 2, |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 526 | /* Not an assignment, but next word may be: "if v=xyz cmd;" */ |
Denys Vlasenko | 0e13b40 | 2010-09-21 12:35:39 +0200 | [diff] [blame] | 527 | WORD_IS_KEYWORD = 3, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 528 | }; |
| 529 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 530 | #define NULL_O_STRING { NULL } |
| 531 | |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 532 | #ifndef debug_printf_parse |
| 533 | static const char *const assignment_flag[] = { |
| 534 | "MAYBE_ASSIGNMENT", |
| 535 | "DEFINITELY_ASSIGNMENT", |
| 536 | "NOT_ASSIGNMENT", |
| 537 | "WORD_IS_KEYWORD", |
| 538 | }; |
| 539 | #endif |
| 540 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 541 | typedef struct in_str { |
| 542 | const char *p; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 543 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 544 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 545 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 546 | int peek_buf[2]; |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 547 | int last_char; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 548 | FILE *file; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 549 | } in_str; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 550 | |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 551 | /* The descrip member of this structure is only used to make |
| 552 | * debugging output pretty */ |
| 553 | static const struct { |
| 554 | int mode; |
| 555 | signed char default_fd; |
| 556 | char descrip[3]; |
| 557 | } redir_table[] = { |
| 558 | { O_RDONLY, 0, "<" }, |
| 559 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 560 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 561 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 562 | { O_RDONLY, 0, "<<" }, |
| 563 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 564 | /* { O_RDONLY, 77, "<<" }, */ |
| 565 | }; |
| 566 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 567 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 568 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 569 | char *rd_filename; /* filename */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 570 | int rd_fd; /* fd to redirect */ |
| 571 | /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */ |
| 572 | int rd_dup; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 573 | smallint rd_type; /* (enum redir_type) */ |
| 574 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 575 | * and subsequently heredoc itself; and rd_dup is a bitmask: |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 576 | * bit 0: do we need to trim leading tabs? |
| 577 | * bit 1: is heredoc quoted (<<'delim' syntax) ? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 578 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 579 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 580 | typedef enum redir_type { |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 581 | REDIRECT_INPUT = 0, |
| 582 | REDIRECT_OVERWRITE = 1, |
| 583 | REDIRECT_APPEND = 2, |
| 584 | REDIRECT_IO = 3, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 585 | REDIRECT_HEREDOC = 4, |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 586 | REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 587 | |
| 588 | REDIRFD_CLOSE = -3, |
| 589 | REDIRFD_SYNTAX_ERR = -2, |
Denis Vlasenko | 835fcfd | 2009-04-10 13:51:56 +0000 | [diff] [blame] | 590 | REDIRFD_TO_FILE = -1, |
| 591 | /* otherwise, rd_fd is redirected to rd_dup */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 592 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 593 | HEREDOC_SKIPTABS = 1, |
| 594 | HEREDOC_QUOTED = 2, |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 595 | } redir_type; |
| 596 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 597 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 598 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 599 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 600 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 601 | smallint cmd_type; /* CMD_xxx */ |
| 602 | #define CMD_NORMAL 0 |
| 603 | #define CMD_SUBSHELL 1 |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 604 | #if BASH_TEST2 |
Denys Vlasenko | d383b49 | 2010-09-06 10:22:13 +0200 | [diff] [blame] | 605 | /* used for "[[ EXPR ]]" */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 606 | # define CMD_SINGLEWORD_NOGLOB 2 |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 607 | #endif |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 608 | #if ENABLE_HUSH_FUNCTIONS |
| 609 | # define CMD_FUNCDEF 3 |
| 610 | #endif |
| 611 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 612 | smalluint cmd_exitcode; |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 613 | /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */ |
| 614 | struct pipe *group; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 615 | #if !BB_MMU |
| 616 | char *group_as_string; |
| 617 | #endif |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 618 | #if ENABLE_HUSH_FUNCTIONS |
| 619 | struct function *child_func; |
| 620 | /* This field is used to prevent a bug here: |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 621 | * while...do f1() {a;}; f1; f1() {b;}; f1; done |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 622 | * When we execute "f1() {a;}" cmd, we create new function and clear |
| 623 | * cmd->group, cmd->group_as_string, cmd->argv[0]. |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 624 | * When we execute "f1() {b;}", we notice that f1 exists, |
| 625 | * and that its "parent cmd" struct is still "alive", |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 626 | * we put those fields back into cmd->xxx |
| 627 | * (struct function has ->parent_cmd ptr to facilitate that). |
| 628 | * When we loop back, we can execute "f1() {a;}" again and set f1 correctly. |
| 629 | * Without this trick, loop would execute a;b;b;b;... |
| 630 | * instead of correct sequence a;b;a;b;... |
| 631 | * When command is freed, it severs the link |
| 632 | * (sets ->child_func->parent_cmd to NULL). |
| 633 | */ |
| 634 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 635 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 636 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 637 | * and on execution these are substituted with their values. |
| 638 | * Substitution can make _several_ words out of one argv[n]! |
| 639 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 640 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 641 | */ |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 642 | struct redir_struct *redirects; /* I/O redirections */ |
| 643 | }; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 644 | /* Is there anything in this command at all? */ |
| 645 | #define IS_NULL_CMD(cmd) \ |
| 646 | (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects) |
| 647 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 648 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 649 | struct pipe *next; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 650 | int num_cmds; /* total number of commands in pipe */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 651 | int alive_cmds; /* number of commands running (not exited) */ |
| 652 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 653 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 654 | unsigned jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 655 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 656 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 657 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 658 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 659 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 660 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 661 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 662 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 663 | typedef enum pipe_style { |
Denys Vlasenko | 00a06b9 | 2016-11-08 20:35:53 +0100 | [diff] [blame] | 664 | PIPE_SEQ = 0, |
| 665 | PIPE_AND = 1, |
| 666 | PIPE_OR = 2, |
| 667 | PIPE_BG = 3, |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 668 | } pipe_style; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 669 | /* Is there anything in this pipe at all? */ |
| 670 | #define IS_NULL_PIPE(pi) \ |
| 671 | ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 672 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 673 | /* This holds pointers to the various results of parsing */ |
| 674 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 675 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 676 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 677 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 678 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 679 | /* last command in pipe (being constructed right now) */ |
| 680 | struct command *command; |
| 681 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 682 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 683 | #if !BB_MMU |
| 684 | o_string as_string; |
| 685 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 686 | #if HAS_KEYWORDS |
| 687 | smallint ctx_res_w; |
| 688 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 689 | #if ENABLE_HUSH_CASE |
| 690 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 691 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 692 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 693 | int old_flag; |
| 694 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 695 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 696 | * when we see "if" or "then", we malloc and copy current context, |
| 697 | * and make ->stack point to it. then we parse pipeN. |
| 698 | * when closing "then" / fi" / whatever is found, |
| 699 | * we move list_head into ->stack->command->group, |
| 700 | * copy ->stack into current context, and delete ->stack. |
| 701 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 702 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 703 | struct parse_context *stack; |
| 704 | #endif |
| 705 | }; |
| 706 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 707 | /* On program start, environ points to initial environment. |
| 708 | * putenv adds new pointers into it, unsetenv removes them. |
| 709 | * Neither of these (de)allocates the strings. |
| 710 | * setenv allocates new strings in malloc space and does putenv, |
| 711 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 712 | #define setenv(...) setenv_is_leaky_dont_use() |
| 713 | struct variable { |
| 714 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 715 | char *varstr; /* points to "name=" portion */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 716 | #if ENABLE_HUSH_LOCAL |
| 717 | unsigned func_nest_level; |
| 718 | #endif |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 719 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 720 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 721 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 722 | }; |
| 723 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 724 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 725 | BC_BREAK = 1, |
| 726 | BC_CONTINUE = 2, |
| 727 | }; |
| 728 | |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 729 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 730 | struct function { |
| 731 | struct function *next; |
| 732 | char *name; |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 733 | struct command *parent_cmd; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 734 | struct pipe *body; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 735 | # if !BB_MMU |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 736 | char *body_as_string; |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 737 | # endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 738 | }; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 739 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 740 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 741 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 742 | /* set -/+o OPT support. (TODO: make it optional) |
| 743 | * bash supports the following opts: |
| 744 | * allexport off |
| 745 | * braceexpand on |
| 746 | * emacs on |
| 747 | * errexit off |
| 748 | * errtrace off |
| 749 | * functrace off |
| 750 | * hashall on |
| 751 | * histexpand off |
| 752 | * history on |
| 753 | * ignoreeof off |
| 754 | * interactive-comments on |
| 755 | * keyword off |
| 756 | * monitor on |
| 757 | * noclobber off |
| 758 | * noexec off |
| 759 | * noglob off |
| 760 | * nolog off |
| 761 | * notify off |
| 762 | * nounset off |
| 763 | * onecmd off |
| 764 | * physical off |
| 765 | * pipefail off |
| 766 | * posix off |
| 767 | * privileged off |
| 768 | * verbose off |
| 769 | * vi off |
| 770 | * xtrace off |
| 771 | */ |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 772 | static const char o_opt_strings[] ALIGN1 = |
| 773 | "pipefail\0" |
| 774 | "noexec\0" |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 775 | "errexit\0" |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 776 | #if ENABLE_HUSH_MODE_X |
| 777 | "xtrace\0" |
| 778 | #endif |
| 779 | ; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 780 | enum { |
| 781 | OPT_O_PIPEFAIL, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 782 | OPT_O_NOEXEC, |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 783 | OPT_O_ERREXIT, |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 784 | #if ENABLE_HUSH_MODE_X |
| 785 | OPT_O_XTRACE, |
| 786 | #endif |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 787 | NUM_OPT_O |
| 788 | }; |
| 789 | |
| 790 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 791 | struct FILE_list { |
| 792 | struct FILE_list *next; |
| 793 | FILE *fp; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 794 | int fd; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 795 | }; |
| 796 | |
| 797 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 798 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 799 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 800 | struct globals { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 801 | /* interactive_fd != 0 means we are an interactive shell. |
| 802 | * If we are, then saved_tty_pgrp can also be != 0, meaning |
| 803 | * that controlling tty is available. With saved_tty_pgrp == 0, |
| 804 | * job control still works, but terminal signals |
| 805 | * (^C, ^Z, ^Y, ^\) won't work at all, and background |
| 806 | * process groups can only be created with "cmd &". |
| 807 | * With saved_tty_pgrp != 0, hush will use tcsetpgrp() |
| 808 | * to give tty to the foreground process group, |
| 809 | * and will take it back when the group is stopped (^Z) |
| 810 | * or killed (^C). |
| 811 | */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 812 | #if ENABLE_HUSH_INTERACTIVE |
| 813 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 814 | * _AND_ if we decided to act interactively */ |
| 815 | int interactive_fd; |
| 816 | const char *PS1; |
| 817 | const char *PS2; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 818 | # define G_interactive_fd (G.interactive_fd) |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 819 | #else |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 820 | # define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 821 | #endif |
| 822 | #if ENABLE_FEATURE_EDITING |
| 823 | line_input_t *line_input_state; |
| 824 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 825 | pid_t root_pid; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 826 | pid_t root_ppid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 827 | pid_t last_bg_pid; |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 828 | #if ENABLE_HUSH_RANDOM_SUPPORT |
| 829 | random_t random_gen; |
| 830 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 831 | #if ENABLE_HUSH_JOB |
| 832 | int run_list_level; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 833 | unsigned last_jobid; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 834 | pid_t saved_tty_pgrp; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 835 | struct pipe *job_list; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 836 | # define G_saved_tty_pgrp (G.saved_tty_pgrp) |
| 837 | #else |
| 838 | # define G_saved_tty_pgrp 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 839 | #endif |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 840 | /* How deeply are we in context where "set -e" is ignored */ |
| 841 | int errexit_depth; |
| 842 | /* "set -e" rules (do we follow them correctly?): |
| 843 | * Exit if pipe, list, or compound command exits with a non-zero status. |
| 844 | * Shell does not exit if failed command is part of condition in |
| 845 | * if/while, part of && or || list except the last command, any command |
| 846 | * in a pipe but the last, or if the command's return value is being |
| 847 | * inverted with !. If a compound command other than a subshell returns a |
| 848 | * non-zero status because a command failed while -e was being ignored, the |
| 849 | * shell does not exit. A trap on ERR, if set, is executed before the shell |
| 850 | * exits [ERR is a bashism]. |
| 851 | * |
| 852 | * If a compound command or function executes in a context where -e is |
| 853 | * ignored, none of the commands executed within are affected by the -e |
| 854 | * setting. If a compound command or function sets -e while executing in a |
| 855 | * context where -e is ignored, that setting does not have any effect until |
| 856 | * the compound command or the command containing the function call completes. |
| 857 | */ |
| 858 | |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 859 | char o_opt[NUM_OPT_O]; |
Denys Vlasenko | 57542eb | 2010-11-28 03:59:30 +0100 | [diff] [blame] | 860 | #if ENABLE_HUSH_MODE_X |
| 861 | # define G_x_mode (G.o_opt[OPT_O_XTRACE]) |
| 862 | #else |
| 863 | # define G_x_mode 0 |
| 864 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 865 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 866 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 867 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 868 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 869 | #if ENABLE_HUSH_FUNCTIONS |
| 870 | /* 0: outside of a function (or sourced file) |
| 871 | * -1: inside of a function, ok to use return builtin |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 872 | * 1: return is invoked, skip all till end of func |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 873 | */ |
| 874 | smallint flag_return_in_progress; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 875 | # define G_flag_return_in_progress (G.flag_return_in_progress) |
| 876 | #else |
| 877 | # define G_flag_return_in_progress 0 |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 878 | #endif |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 879 | smallint exiting; /* used to prevent EXIT trap recursion */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 880 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 881 | smalluint last_exitcode; |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 882 | smalluint last_bg_pid_exitcode; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 883 | #if ENABLE_HUSH_SET |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 884 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 885 | smalluint global_args_malloced; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 886 | # define G_global_args_malloced (G.global_args_malloced) |
| 887 | #else |
| 888 | # define G_global_args_malloced 0 |
| 889 | #endif |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 890 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 891 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 892 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 893 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 894 | char *argv0_for_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 895 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 896 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 897 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 898 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 899 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 900 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 901 | const char *cwd; |
Denys Vlasenko | 52e460b | 2010-09-16 16:12:00 +0200 | [diff] [blame] | 902 | struct variable *top_var; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 903 | char **expanded_assignments; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 904 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 905 | struct function *top_func; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 906 | # if ENABLE_HUSH_LOCAL |
| 907 | struct variable **shadowed_vars_pp; |
| 908 | unsigned func_nest_level; |
| 909 | # endif |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 910 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 911 | /* Signal and trap handling */ |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 912 | #if ENABLE_HUSH_FAST |
| 913 | unsigned count_SIGCHLD; |
| 914 | unsigned handled_SIGCHLD; |
Denys Vlasenko | e2df5f4 | 2009-05-26 14:34:10 +0200 | [diff] [blame] | 915 | smallint we_have_children; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 916 | #endif |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 917 | struct FILE_list *FILE_list; |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 918 | /* Which signals have non-DFL handler (even with no traps set)? |
| 919 | * Set at the start to: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 920 | * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS) |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 921 | * SPECIAL_INTERACTIVE_SIGS are cleared after fork. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 922 | * The rest is cleared right before execv syscalls. |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 923 | * Other than these two times, never modified. |
| 924 | */ |
| 925 | unsigned special_sig_mask; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 926 | #if ENABLE_HUSH_JOB |
| 927 | unsigned fatal_sig_mask; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 928 | # define G_fatal_sig_mask (G.fatal_sig_mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 929 | #else |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 930 | # define G_fatal_sig_mask 0 |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 931 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 932 | #if ENABLE_HUSH_TRAP |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 933 | char **traps; /* char *traps[NSIG] */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 934 | # define G_traps G.traps |
| 935 | #else |
| 936 | # define G_traps ((char**)NULL) |
| 937 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 938 | sigset_t pending_set; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 939 | #if ENABLE_HUSH_MEMLEAK |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 940 | unsigned long memleak_value; |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 941 | #endif |
| 942 | #if HUSH_DEBUG |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 943 | int debug_indent; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 944 | #endif |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 945 | struct sigaction sa; |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 946 | #if ENABLE_FEATURE_EDITING |
| 947 | char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN]; |
| 948 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 949 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 950 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 951 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 952 | * (too many defines). Also, I actually prefer to see when a variable |
| 953 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 954 | #define INIT_G() do { \ |
| 955 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 956 | /* memset(&G.sa, 0, sizeof(G.sa)); */ \ |
| 957 | sigfillset(&G.sa.sa_mask); \ |
| 958 | G.sa.sa_flags = SA_RESTART; \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 959 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 960 | |
| 961 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 962 | /* Function prototypes for builtins */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 963 | static int builtin_cd(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 964 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 965 | static int builtin_echo(char **argv) FAST_FUNC; |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 966 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 967 | static int builtin_eval(char **argv) FAST_FUNC; |
| 968 | static int builtin_exec(char **argv) FAST_FUNC; |
| 969 | static int builtin_exit(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 970 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 971 | static int builtin_export(char **argv) FAST_FUNC; |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 972 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 973 | #if ENABLE_HUSH_READONLY |
| 974 | static int builtin_readonly(char **argv) FAST_FUNC; |
| 975 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 976 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 977 | static int builtin_fg_bg(char **argv) FAST_FUNC; |
| 978 | static int builtin_jobs(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 979 | #endif |
| 980 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 981 | static int builtin_help(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 982 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 983 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 984 | static int builtin_history(char **argv) FAST_FUNC; |
| 985 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 986 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 987 | static int builtin_local(char **argv) FAST_FUNC; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 988 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 989 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 990 | static int builtin_memleak(char **argv) FAST_FUNC; |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 991 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 992 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 993 | static int builtin_printf(char **argv) FAST_FUNC; |
| 994 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 995 | static int builtin_pwd(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 996 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 997 | static int builtin_read(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 998 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 999 | #if ENABLE_HUSH_SET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1000 | static int builtin_set(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1001 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1002 | static int builtin_shift(char **argv) FAST_FUNC; |
| 1003 | static int builtin_source(char **argv) FAST_FUNC; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1004 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1005 | static int builtin_test(char **argv) FAST_FUNC; |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1006 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1007 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1008 | static int builtin_trap(char **argv) FAST_FUNC; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1009 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1010 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1011 | static int builtin_type(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1012 | #endif |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1013 | static int builtin_true(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1014 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1015 | static int builtin_umask(char **argv) FAST_FUNC; |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1016 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1017 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1018 | static int builtin_unset(char **argv) FAST_FUNC; |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1019 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1020 | #if ENABLE_HUSH_KILL |
| 1021 | static int builtin_kill(char **argv) FAST_FUNC; |
| 1022 | #endif |
| 1023 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1024 | static int builtin_wait(char **argv) FAST_FUNC; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1025 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1026 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1027 | static int builtin_break(char **argv) FAST_FUNC; |
| 1028 | static int builtin_continue(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1029 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1030 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 1031 | static int builtin_return(char **argv) FAST_FUNC; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1032 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1033 | |
| 1034 | /* Table of built-in functions. They can be forked or not, depending on |
| 1035 | * context: within pipes, they fork. As simple commands, they do not. |
| 1036 | * When used in non-forking context, they can change global variables |
| 1037 | * in the parent shell process. If forked, of course they cannot. |
| 1038 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 1039 | * still be set at the end. */ |
| 1040 | struct built_in_command { |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1041 | const char *b_cmd; |
| 1042 | int (*b_function)(char **argv) FAST_FUNC; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1043 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 1044 | const char *b_descr; |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1045 | # define BLTIN(cmd, func, help) { cmd, func, help } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1046 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1047 | # define BLTIN(cmd, func, help) { cmd, func } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1048 | #endif |
| 1049 | }; |
| 1050 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1051 | static const struct built_in_command bltins1[] = { |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1052 | BLTIN("." , builtin_source , "Run commands in file"), |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1053 | BLTIN(":" , builtin_true , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1054 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1055 | BLTIN("bg" , builtin_fg_bg , "Resume job in background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1056 | #endif |
| 1057 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1058 | BLTIN("break" , builtin_break , "Exit loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1059 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1060 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1061 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1062 | BLTIN("continue" , builtin_continue, "Start new loop iteration"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1063 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1064 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 1065 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1066 | BLTIN("exit" , builtin_exit , NULL), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1067 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1068 | BLTIN("export" , builtin_export , "Set environment variables"), |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 1069 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1070 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1071 | BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1072 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1073 | #if ENABLE_HUSH_HELP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1074 | BLTIN("help" , builtin_help , NULL), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1075 | #endif |
Denys Vlasenko | ff463a8 | 2013-05-12 02:45:23 +0200 | [diff] [blame] | 1076 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1077 | BLTIN("history" , builtin_history , "Show history"), |
Flemming Madsen | d96ffda | 2013-04-07 18:47:24 +0200 | [diff] [blame] | 1078 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1079 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1080 | BLTIN("jobs" , builtin_jobs , "List jobs"), |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 1081 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1082 | #if ENABLE_HUSH_KILL |
| 1083 | BLTIN("kill" , builtin_kill , "Send signals to processes"), |
| 1084 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1085 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1086 | BLTIN("local" , builtin_local , "Set local variables"), |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 1087 | #endif |
Denys Vlasenko | 4471969 | 2017-01-08 18:44:41 +0100 | [diff] [blame] | 1088 | #if ENABLE_HUSH_MEMLEAK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1089 | BLTIN("memleak" , builtin_memleak , NULL), |
Denis Vlasenko | c73b70c | 2009-04-08 11:48:57 +0000 | [diff] [blame] | 1090 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1091 | #if ENABLE_HUSH_READ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1092 | BLTIN("read" , builtin_read , "Input into variable"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1093 | #endif |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 1094 | #if ENABLE_HUSH_READONLY |
| 1095 | BLTIN("readonly" , builtin_readonly, "Make variables read-only"), |
| 1096 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1097 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1098 | BLTIN("return" , builtin_return , "Return from function"), |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 1099 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1100 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1101 | BLTIN("set" , builtin_set , "Set positional parameters"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1102 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1103 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 1104 | #if BASH_SOURCE |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1105 | BLTIN("source" , builtin_source , NULL), |
Denys Vlasenko | 82731b4 | 2010-05-17 17:49:52 +0200 | [diff] [blame] | 1106 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1107 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1108 | BLTIN("trap" , builtin_trap , "Trap signals"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1109 | #endif |
Denys Vlasenko | 2bba591 | 2014-03-14 12:43:57 +0100 | [diff] [blame] | 1110 | BLTIN("true" , builtin_true , NULL), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1111 | #if ENABLE_HUSH_TYPE |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 1112 | BLTIN("type" , builtin_type , "Show command type"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1113 | #endif |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1114 | #if ENABLE_HUSH_ULIMIT |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1115 | BLTIN("ulimit" , shell_builtin_ulimit, "Control resource limits"), |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1116 | #endif |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1117 | #if ENABLE_HUSH_UMASK |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1118 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
Denys Vlasenko | d5933b1 | 2017-01-08 18:31:39 +0100 | [diff] [blame] | 1119 | #endif |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1120 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1121 | BLTIN("unset" , builtin_unset , "Unset variables"), |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 1122 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1123 | #if ENABLE_HUSH_WAIT |
Denys Vlasenko | d2c15bc | 2017-07-18 18:14:42 +0200 | [diff] [blame] | 1124 | BLTIN("wait" , builtin_wait , "Wait for process to finish"), |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1125 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1126 | }; |
Denys Vlasenko | 80f806c | 2017-01-10 16:51:10 +0100 | [diff] [blame] | 1127 | /* These builtins won't be used if we are on NOMMU and need to re-exec |
| 1128 | * (it's cheaper to run an external program in this case): |
| 1129 | */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1130 | static const struct built_in_command bltins2[] = { |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1131 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1132 | BLTIN("[" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1133 | #endif |
Denys Vlasenko | 8944c67 | 2017-01-11 14:22:00 +0100 | [diff] [blame] | 1134 | #if BASH_TEST2 |
| 1135 | BLTIN("[[" , builtin_test , NULL), |
| 1136 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1137 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1138 | BLTIN("echo" , builtin_echo , NULL), |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 1139 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 1140 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 1141 | BLTIN("printf" , builtin_printf , NULL), |
| 1142 | #endif |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1143 | BLTIN("pwd" , builtin_pwd , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1144 | #if ENABLE_HUSH_TEST |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1145 | BLTIN("test" , builtin_test , NULL), |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 1146 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1147 | }; |
| 1148 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 1149 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1150 | /* Debug printouts. |
| 1151 | */ |
| 1152 | #if HUSH_DEBUG |
| 1153 | /* prevent disasters with G.debug_indent < 0 */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1154 | # define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "") |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1155 | # define debug_enter() (G.debug_indent++) |
| 1156 | # define debug_leave() (G.debug_indent--) |
| 1157 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1158 | # define indent() ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1159 | # define debug_enter() ((void)0) |
| 1160 | # define debug_leave() ((void)0) |
| 1161 | #endif |
| 1162 | |
| 1163 | #ifndef debug_printf |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1164 | # define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1165 | #endif |
| 1166 | |
| 1167 | #ifndef debug_printf_parse |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1168 | # define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1169 | #endif |
| 1170 | |
| 1171 | #ifndef debug_printf_exec |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1172 | #define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1173 | #endif |
| 1174 | |
| 1175 | #ifndef debug_printf_env |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1176 | # define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1177 | #endif |
| 1178 | |
| 1179 | #ifndef debug_printf_jobs |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1180 | # define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1181 | # define DEBUG_JOBS 1 |
| 1182 | #else |
| 1183 | # define DEBUG_JOBS 0 |
| 1184 | #endif |
| 1185 | |
| 1186 | #ifndef debug_printf_expand |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1187 | # define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1188 | # define DEBUG_EXPAND 1 |
| 1189 | #else |
| 1190 | # define DEBUG_EXPAND 0 |
| 1191 | #endif |
| 1192 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1193 | #ifndef debug_printf_varexp |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1194 | # define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 1195 | #endif |
| 1196 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1197 | #ifndef debug_printf_glob |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1198 | # define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1199 | # define DEBUG_GLOB 1 |
| 1200 | #else |
| 1201 | # define DEBUG_GLOB 0 |
| 1202 | #endif |
| 1203 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1204 | #ifndef debug_printf_redir |
| 1205 | # define debug_printf_redir(...) (indent(), fdprintf(2, __VA_ARGS__)) |
| 1206 | #endif |
| 1207 | |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1208 | #ifndef debug_printf_list |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1209 | # define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1210 | #endif |
| 1211 | |
| 1212 | #ifndef debug_printf_subst |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1213 | # define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1214 | #endif |
| 1215 | |
| 1216 | #ifndef debug_printf_clean |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1217 | # define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__)) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1218 | # define DEBUG_CLEAN 1 |
| 1219 | #else |
| 1220 | # define DEBUG_CLEAN 0 |
| 1221 | #endif |
| 1222 | |
| 1223 | #if DEBUG_EXPAND |
| 1224 | static void debug_print_strings(const char *prefix, char **vv) |
| 1225 | { |
| 1226 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1227 | fdprintf(2, "%s:\n", prefix); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1228 | while (*vv) |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1229 | fdprintf(2, " '%s'\n", *vv++); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1230 | } |
| 1231 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1232 | # define debug_print_strings(prefix, vv) ((void)0) |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 1233 | #endif |
| 1234 | |
| 1235 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1236 | /* Leak hunting. Use hush_leaktool.sh for post-processing. |
| 1237 | */ |
| 1238 | #if LEAK_HUNTING |
| 1239 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1240 | { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1241 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 1242 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
| 1243 | return ptr; |
| 1244 | } |
| 1245 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
| 1246 | { |
| 1247 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 1248 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
| 1249 | return ptr; |
| 1250 | } |
| 1251 | static char *xxstrdup(int lineno, const char *str) |
| 1252 | { |
| 1253 | char *ptr = xstrdup(str); |
| 1254 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
| 1255 | return ptr; |
| 1256 | } |
| 1257 | static void xxfree(void *ptr) |
| 1258 | { |
| 1259 | fdprintf(2, "free %p\n", ptr); |
| 1260 | free(ptr); |
| 1261 | } |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1262 | # define xmalloc(s) xxmalloc(__LINE__, s) |
| 1263 | # define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 1264 | # define xstrdup(s) xxstrdup(__LINE__, s) |
| 1265 | # define free(p) xxfree(p) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1266 | #endif |
| 1267 | |
| 1268 | |
| 1269 | /* Syntax and runtime errors. They always abort scripts. |
| 1270 | * In interactive use they usually discard unparsed and/or unexecuted commands |
| 1271 | * and return to the prompt. |
| 1272 | * HUSH_DEBUG >= 2 prints line number in this file where it was detected. |
| 1273 | */ |
| 1274 | #if HUSH_DEBUG < 2 |
Denys Vlasenko | 606291b | 2009-09-23 23:15:43 +0200 | [diff] [blame] | 1275 | # define die_if_script(lineno, ...) die_if_script(__VA_ARGS__) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1276 | # define syntax_error(lineno, msg) syntax_error(msg) |
| 1277 | # define syntax_error_at(lineno, msg) syntax_error_at(msg) |
| 1278 | # define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch) |
| 1279 | # define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s) |
| 1280 | # define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1281 | #endif |
| 1282 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1283 | static void die_if_script(unsigned lineno, const char *fmt, ...) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1284 | { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1285 | va_list p; |
| 1286 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1287 | #if HUSH_DEBUG >= 2 |
| 1288 | bb_error_msg("hush.c:%u", lineno); |
| 1289 | #endif |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1290 | va_start(p, fmt); |
| 1291 | bb_verror_msg(fmt, p, NULL); |
| 1292 | va_end(p); |
| 1293 | if (!G_interactive_fd) |
| 1294 | xfunc_die(); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1295 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1296 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1297 | static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1298 | { |
| 1299 | if (msg) |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1300 | bb_error_msg("syntax error: %s", msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1301 | else |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1302 | bb_error_msg("syntax error"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1303 | } |
| 1304 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1305 | static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1306 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1307 | bb_error_msg("syntax error at '%s'", msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1308 | } |
| 1309 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1310 | 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] | 1311 | { |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1312 | bb_error_msg("syntax error: unterminated %s", s); |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1313 | } |
| 1314 | |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1315 | static void syntax_error_unterm_ch(unsigned lineno, char ch) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1316 | { |
Mike Frysinger | 6a46ab8 | 2009-06-01 14:14:36 -0400 | [diff] [blame] | 1317 | char msg[2] = { ch, '\0' }; |
| 1318 | syntax_error_unterm_str(lineno, msg); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1319 | } |
| 1320 | |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1321 | static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1322 | { |
| 1323 | char msg[2]; |
| 1324 | msg[0] = ch; |
| 1325 | msg[1] = '\0'; |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 1326 | #if HUSH_DEBUG >= 2 |
| 1327 | bb_error_msg("hush.c:%u", lineno); |
| 1328 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 1329 | bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg); |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1330 | } |
| 1331 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1332 | #if HUSH_DEBUG < 2 |
| 1333 | # undef die_if_script |
| 1334 | # undef syntax_error |
| 1335 | # undef syntax_error_at |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 1336 | # undef syntax_error_unterm_ch |
| 1337 | # undef syntax_error_unterm_str |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1338 | # undef syntax_error_unexpected_ch |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1339 | #else |
Denys Vlasenko | 606291b | 2009-09-23 23:15:43 +0200 | [diff] [blame] | 1340 | # define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__) |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 1341 | # define syntax_error(msg) syntax_error(__LINE__, msg) |
| 1342 | # define syntax_error_at(msg) syntax_error_at(__LINE__, msg) |
| 1343 | # define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch) |
| 1344 | # define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s) |
| 1345 | # define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 1346 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1347 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 1348 | |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1349 | #if ENABLE_HUSH_INTERACTIVE |
| 1350 | static void cmdedit_update_prompt(void); |
| 1351 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1352 | # define cmdedit_update_prompt() ((void)0) |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 1353 | #endif |
| 1354 | |
| 1355 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1356 | /* Utility functions |
| 1357 | */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1358 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 1359 | static char *unbackslash(char *src) |
| 1360 | { |
Denys Vlasenko | 7188540 | 2009-09-24 01:44:13 +0200 | [diff] [blame] | 1361 | char *dst = src = strchrnul(src, '\\'); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1362 | while (1) { |
| 1363 | if (*src == '\\') |
| 1364 | src++; |
| 1365 | if ((*dst++ = *src++) == '\0') |
| 1366 | break; |
| 1367 | } |
| 1368 | return dst; |
| 1369 | } |
| 1370 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1371 | 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] | 1372 | { |
| 1373 | int i; |
| 1374 | unsigned count1; |
| 1375 | unsigned count2; |
| 1376 | char **v; |
| 1377 | |
| 1378 | v = strings; |
| 1379 | count1 = 0; |
| 1380 | if (v) { |
| 1381 | while (*v) { |
| 1382 | count1++; |
| 1383 | v++; |
| 1384 | } |
| 1385 | } |
| 1386 | count2 = 0; |
| 1387 | v = add; |
| 1388 | while (*v) { |
| 1389 | count2++; |
| 1390 | v++; |
| 1391 | } |
| 1392 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 1393 | v[count1 + count2] = NULL; |
| 1394 | i = count2; |
| 1395 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1396 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1397 | return v; |
| 1398 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1399 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1400 | static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup) |
| 1401 | { |
| 1402 | char **ptr = add_strings_to_strings(strings, add, need_to_dup); |
| 1403 | fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr); |
| 1404 | return ptr; |
| 1405 | } |
| 1406 | #define add_strings_to_strings(strings, add, need_to_dup) \ |
| 1407 | xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup) |
| 1408 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1409 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 1410 | /* Note: takes ownership of "add" ptr (it is not strdup'ed) */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1411 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1412 | { |
| 1413 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1414 | v[0] = add; |
| 1415 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 1416 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 1417 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 1418 | #if LEAK_HUNTING |
Denis Vlasenko | cc90f44 | 2009-04-08 16:40:34 +0000 | [diff] [blame] | 1419 | static char **xx_add_string_to_strings(int lineno, char **strings, char *add) |
| 1420 | { |
| 1421 | char **ptr = add_string_to_strings(strings, add); |
| 1422 | fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr); |
| 1423 | return ptr; |
| 1424 | } |
| 1425 | #define add_string_to_strings(strings, add) \ |
| 1426 | xx_add_string_to_strings(__LINE__, strings, add) |
| 1427 | #endif |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1428 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1429 | static void free_strings(char **strings) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1430 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1431 | char **v; |
| 1432 | |
| 1433 | if (!strings) |
| 1434 | return; |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1435 | v = strings; |
| 1436 | while (*v) { |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 1437 | free(*v); |
| 1438 | v++; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1439 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1440 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1441 | } |
| 1442 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1443 | static int fcntl_F_DUPFD(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1444 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1445 | int newfd; |
| 1446 | repeat: |
| 1447 | newfd = fcntl(fd, F_DUPFD, avoid_fd + 1); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1448 | if (newfd < 0) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1449 | if (errno == EBUSY) |
| 1450 | goto repeat; |
| 1451 | if (errno == EINTR) |
| 1452 | goto repeat; |
| 1453 | } |
| 1454 | return newfd; |
| 1455 | } |
| 1456 | |
| 1457 | static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC, int avoid_fd) |
| 1458 | { |
| 1459 | int newfd; |
| 1460 | repeat: |
| 1461 | newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, avoid_fd + 1); |
| 1462 | if (newfd < 0) { |
| 1463 | if (errno == EBUSY) |
| 1464 | goto repeat; |
| 1465 | if (errno == EINTR) |
| 1466 | goto repeat; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1467 | /* fd was not open? */ |
| 1468 | if (errno == EBADF) |
| 1469 | return fd; |
| 1470 | xfunc_die(); |
| 1471 | } |
| 1472 | close(fd); |
| 1473 | return newfd; |
| 1474 | } |
| 1475 | |
| 1476 | |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1477 | /* Manipulating the list of open FILEs */ |
| 1478 | static FILE *remember_FILE(FILE *fp) |
| 1479 | { |
| 1480 | if (fp) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1481 | struct FILE_list *n = xmalloc(sizeof(*n)); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1482 | n->next = G.FILE_list; |
| 1483 | G.FILE_list = n; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1484 | n->fp = fp; |
| 1485 | n->fd = fileno(fp); |
| 1486 | close_on_exec_on(n->fd); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1487 | } |
| 1488 | return fp; |
| 1489 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1490 | static void fclose_and_forget(FILE *fp) |
| 1491 | { |
| 1492 | struct FILE_list **pp = &G.FILE_list; |
| 1493 | while (*pp) { |
| 1494 | struct FILE_list *cur = *pp; |
| 1495 | if (cur->fp == fp) { |
| 1496 | *pp = cur->next; |
| 1497 | free(cur); |
| 1498 | break; |
| 1499 | } |
| 1500 | pp = &cur->next; |
| 1501 | } |
| 1502 | fclose(fp); |
| 1503 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1504 | static int save_FILEs_on_redirect(int fd, int avoid_fd) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1505 | { |
| 1506 | struct FILE_list *fl = G.FILE_list; |
| 1507 | while (fl) { |
| 1508 | if (fd == fl->fd) { |
| 1509 | /* We use it only on script files, they are all CLOEXEC */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1510 | fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC, avoid_fd); |
| 1511 | 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] | 1512 | return 1; |
| 1513 | } |
| 1514 | fl = fl->next; |
| 1515 | } |
| 1516 | return 0; |
| 1517 | } |
| 1518 | static void restore_redirected_FILEs(void) |
| 1519 | { |
| 1520 | struct FILE_list *fl = G.FILE_list; |
| 1521 | while (fl) { |
| 1522 | int should_be = fileno(fl->fp); |
| 1523 | if (fl->fd != should_be) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 1524 | 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] | 1525 | xmove_fd(fl->fd, should_be); |
| 1526 | fl->fd = should_be; |
| 1527 | } |
| 1528 | fl = fl->next; |
| 1529 | } |
| 1530 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 1531 | #if ENABLE_FEATURE_SH_STANDALONE && BB_MMU |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 1532 | static void close_all_FILE_list(void) |
| 1533 | { |
| 1534 | struct FILE_list *fl = G.FILE_list; |
| 1535 | while (fl) { |
| 1536 | /* fclose would also free FILE object. |
| 1537 | * It is disastrous if we share memory with a vforked parent. |
| 1538 | * I'm not sure we never come here after vfork. |
| 1539 | * Therefore just close fd, nothing more. |
| 1540 | */ |
| 1541 | /*fclose(fl->fp); - unsafe */ |
| 1542 | close(fl->fd); |
| 1543 | fl = fl->next; |
| 1544 | } |
| 1545 | } |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 1546 | #endif |
| 1547 | |
| 1548 | |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1549 | /* Helpers for setting new $n and restoring them back |
| 1550 | */ |
| 1551 | typedef struct save_arg_t { |
| 1552 | char *sv_argv0; |
| 1553 | char **sv_g_argv; |
| 1554 | int sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1555 | IF_HUSH_SET(smallint sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1556 | } save_arg_t; |
| 1557 | |
| 1558 | static void save_and_replace_G_args(save_arg_t *sv, char **argv) |
| 1559 | { |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1560 | sv->sv_argv0 = argv[0]; |
| 1561 | sv->sv_g_argv = G.global_argv; |
| 1562 | sv->sv_g_argc = G.global_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1563 | IF_HUSH_SET(sv->sv_g_malloced = G.global_args_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1564 | |
| 1565 | argv[0] = G.global_argv[0]; /* retain $0 */ |
| 1566 | G.global_argv = argv; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1567 | IF_HUSH_SET(G.global_args_malloced = 0;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1568 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 1569 | G.global_argc = 1 + string_array_len(argv + 1); |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
| 1572 | static void restore_G_args(save_arg_t *sv, char **argv) |
| 1573 | { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1574 | #if ENABLE_HUSH_SET |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1575 | if (G.global_args_malloced) { |
| 1576 | /* someone ran "set -- arg1 arg2 ...", undo */ |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1577 | char **pp = G.global_argv; |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1578 | while (*++pp) /* note: does not free $0 */ |
| 1579 | free(*pp); |
| 1580 | free(G.global_argv); |
| 1581 | } |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1582 | #endif |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1583 | argv[0] = sv->sv_argv0; |
| 1584 | G.global_argv = sv->sv_g_argv; |
| 1585 | G.global_argc = sv->sv_g_argc; |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 1586 | IF_HUSH_SET(G.global_args_malloced = sv->sv_g_malloced;) |
Denis Vlasenko | 270b1c3 | 2009-04-17 18:54:50 +0000 | [diff] [blame] | 1587 | } |
| 1588 | |
| 1589 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1590 | /* Basic theory of signal handling in shell |
| 1591 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1592 | * This does not describe what hush does, rather, it is current understanding |
| 1593 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1594 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 1595 | * |
| 1596 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 1597 | * is finished or backgrounded. It is the same in interactive and |
| 1598 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1599 | * 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] | 1600 | * ^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] | 1601 | * backgrounds (i.e. stops) or kills all members of currently running |
| 1602 | * pipe. |
| 1603 | * |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1604 | * Wait builtin is interruptible by signals for which user trap is set |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1605 | * or by SIGINT in interactive shell. |
| 1606 | * |
| 1607 | * Trap handlers will execute even within trap handlers. (right?) |
| 1608 | * |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1609 | * User trap handlers are forgotten when subshell ("(cmd)") is entered, |
| 1610 | * except for handlers set to '' (empty string). |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1611 | * |
| 1612 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1613 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1614 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1615 | * Commands which are run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1616 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1617 | * |
Denys Vlasenko | 4b7db4f | 2009-05-29 10:39:06 +0200 | [diff] [blame] | 1618 | * Ordinary commands have signals set to SIG_IGN/DFL as inherited |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1619 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1620 | * |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 1621 | * Signals which differ from SIG_DFL action |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1622 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1623 | * |
| 1624 | * SIGQUIT: ignore |
| 1625 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1626 | * SIGHUP (interactive): |
| 1627 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1628 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | c4ada79 | 2009-04-15 23:29:00 +0000 | [diff] [blame] | 1629 | * Note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 1630 | * that all pipe members are stopped. Try this in bash: |
| 1631 | * while :; do :; done - ^Z does not background it |
| 1632 | * (while :; do :; done) - ^Z backgrounds it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1633 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1634 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 1635 | * to interactive shell while shell is waiting for a pipe, |
| 1636 | * since shell is bg'ed (is not in foreground process group). |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1637 | * Example 1: this waits 5 sec, but does not execute ls: |
| 1638 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 1639 | * Example 2: this does not wait and does not execute ls: |
| 1640 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 1641 | * Example 3: this does not wait 5 sec, but executes ls: |
| 1642 | * "sleep 5; ls -l" + press ^C |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1643 | * Example 4: this does not wait and does not execute ls: |
| 1644 | * "sleep 5 & wait; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1645 | * |
| 1646 | * (What happens to signals which are IGN on shell start?) |
| 1647 | * (What happens with signal mask on shell start?) |
| 1648 | * |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1649 | * Old implementation |
| 1650 | * ================== |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1651 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 1652 | * We block all signals which we don't want to take action immediately, |
| 1653 | * i.e. we block all signals which need to have special handling as described |
| 1654 | * above, and all signals which have traps set. |
| 1655 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 1656 | * and act on them. |
| 1657 | * |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1658 | * unsigned special_sig_mask: a mask of such "special" signals |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1659 | * sigset_t blocked_set: current blocked signal set |
| 1660 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1661 | * "trap - SIGxxx": |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 1662 | * 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] | 1663 | * "trap 'cmd' SIGxxx": |
| 1664 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1665 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1666 | * unblock signals with special interactive handling |
| 1667 | * (child shell is not interactive), |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 1668 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1669 | * after [v]fork, if we plan to exec: |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 1670 | * 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] | 1671 | * 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] | 1672 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1673 | * 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] | 1674 | * are to count SIGCHLDs |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1675 | * and to restore tty pgrp on signal-induced exit. |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1676 | * |
Denys Vlasenko | 67f7186 | 2009-09-25 14:21:06 +0200 | [diff] [blame] | 1677 | * Note 2 (compat): |
Denys Vlasenko | 4ea0ca8 | 2009-09-25 12:58:37 +0200 | [diff] [blame] | 1678 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1679 | * 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] | 1680 | * 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] | 1681 | * |
| 1682 | * Problem: the above approach makes it unwieldy to catch signals while |
Denys Vlasenko | e95738f | 2013-07-08 03:13:08 +0200 | [diff] [blame] | 1683 | * we are in read builtin, or while we read commands from stdin: |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1684 | * masked signals are not visible! |
| 1685 | * |
| 1686 | * New implementation |
| 1687 | * ================== |
| 1688 | * We record each signal we are interested in by installing signal handler |
| 1689 | * for them - a bit like emulating kernel pending signal mask in userspace. |
| 1690 | * We are interested in: signals which need to have special handling |
| 1691 | * as described above, and all signals which have traps set. |
Denys Vlasenko | 8bd810b | 2013-11-28 01:50:01 +0100 | [diff] [blame] | 1692 | * Signals are recorded in pending_set. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1693 | * After each pipe execution, we extract any pending signals |
| 1694 | * and act on them. |
| 1695 | * |
| 1696 | * unsigned special_sig_mask: a mask of shell-special signals. |
| 1697 | * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp. |
| 1698 | * char *traps[sig] if trap for sig is set (even if it's ''). |
| 1699 | * sigset_t pending_set: set of sigs we received. |
| 1700 | * |
| 1701 | * "trap - SIGxxx": |
| 1702 | * if sig is in special_sig_mask, set handler back to: |
| 1703 | * record_pending_signo, or to IGN if it's a tty stop signal |
| 1704 | * if sig is in fatal_sig_mask, set handler back to sigexit. |
| 1705 | * else: set handler back to SIG_DFL |
| 1706 | * "trap 'cmd' SIGxxx": |
| 1707 | * set handler to record_pending_signo. |
| 1708 | * "trap '' SIGxxx": |
| 1709 | * set handler to SIG_IGN. |
| 1710 | * after [v]fork, if we plan to be a shell: |
| 1711 | * set signals with special interactive handling to SIG_DFL |
| 1712 | * (because child shell is not interactive), |
| 1713 | * unset all traps except '' (note: regardless of child shell's type - {}, (), etc) |
| 1714 | * after [v]fork, if we plan to exec: |
| 1715 | * POSIX says fork clears pending signal mask in child - no need to clear it. |
| 1716 | * |
| 1717 | * To make wait builtin interruptible, we handle SIGCHLD as special signal, |
| 1718 | * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it. |
| 1719 | * |
| 1720 | * Note (compat): |
| 1721 | * Standard says "When a subshell is entered, traps that are not being ignored |
| 1722 | * are set to the default actions". bash interprets it so that traps which |
| 1723 | * 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] | 1724 | */ |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1725 | enum { |
| 1726 | SPECIAL_INTERACTIVE_SIGS = 0 |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1727 | | (1 << SIGTERM) |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1728 | | (1 << SIGINT) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1729 | | (1 << SIGHUP) |
| 1730 | , |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1731 | SPECIAL_JOBSTOP_SIGS = 0 |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1732 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 1733 | | (1 << SIGTTIN) |
| 1734 | | (1 << SIGTTOU) |
| 1735 | | (1 << SIGTSTP) |
| 1736 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1737 | , |
Denis Vlasenko | e4bd4f2 | 2009-04-17 13:52:51 +0000 | [diff] [blame] | 1738 | }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1739 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1740 | static void record_pending_signo(int sig) |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 1741 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1742 | sigaddset(&G.pending_set, sig); |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1743 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1744 | if (sig == SIGCHLD) { |
| 1745 | G.count_SIGCHLD++; |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1746 | //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] | 1747 | } |
Denys Vlasenko | 8d7be23 | 2009-05-25 16:38:32 +0200 | [diff] [blame] | 1748 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1749 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1750 | |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 1751 | static sighandler_t install_sighandler(int sig, sighandler_t handler) |
| 1752 | { |
| 1753 | struct sigaction old_sa; |
| 1754 | |
| 1755 | /* We could use signal() to install handlers... almost: |
| 1756 | * except that we need to mask ALL signals while handlers run. |
| 1757 | * I saw signal nesting in strace, race window isn't small. |
| 1758 | * SA_RESTART is also needed, but in Linux, signal() |
| 1759 | * sets SA_RESTART too. |
| 1760 | */ |
| 1761 | /* memset(&G.sa, 0, sizeof(G.sa)); - already done */ |
| 1762 | /* sigfillset(&G.sa.sa_mask); - already done */ |
| 1763 | /* G.sa.sa_flags = SA_RESTART; - already done */ |
| 1764 | G.sa.sa_handler = handler; |
| 1765 | sigaction(sig, &G.sa, &old_sa); |
| 1766 | return old_sa.sa_handler; |
| 1767 | } |
| 1768 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1769 | static void hush_exit(int exitcode) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1770 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1771 | static void restore_ttypgrp_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1772 | static void restore_ttypgrp_and__exit(void) |
| 1773 | { |
| 1774 | /* xfunc has failed! die die die */ |
| 1775 | /* no EXIT traps, this is an escape hatch! */ |
| 1776 | G.exiting = 1; |
| 1777 | hush_exit(xfunc_error_retval); |
| 1778 | } |
| 1779 | |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1780 | #if ENABLE_HUSH_JOB |
| 1781 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1782 | /* Needed only on some libc: |
| 1783 | * It was observed that on exit(), fgetc'ed buffered data |
| 1784 | * gets "unwound" via lseek(fd, -NUM, SEEK_CUR). |
| 1785 | * With the net effect that even after fork(), not vfork(), |
| 1786 | * exit() in NOEXECed applet in "sh SCRIPT": |
| 1787 | * noexec_applet_here |
| 1788 | * echo END_OF_SCRIPT |
| 1789 | * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT". |
| 1790 | * This makes "echo END_OF_SCRIPT" executed twice. |
| 1791 | * Similar problems can be seen with die_if_script() -> xfunc_die() |
| 1792 | * and in `cmd` handling. |
| 1793 | * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit(): |
| 1794 | */ |
Denys Vlasenko | b6afcc7 | 2016-12-12 16:30:20 +0100 | [diff] [blame] | 1795 | static void fflush_and__exit(void) NORETURN; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1796 | static void fflush_and__exit(void) |
| 1797 | { |
| 1798 | fflush_all(); |
| 1799 | _exit(xfunc_error_retval); |
| 1800 | } |
| 1801 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1802 | /* 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] | 1803 | # define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame] | 1804 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1805 | # 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] | 1806 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1807 | /* Restores tty foreground process group, and exits. |
| 1808 | * May be called as signal handler for fatal signal |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1809 | * (will resend signal to itself, producing correct exit state) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1810 | * or called directly with -EXITCODE. |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 1811 | * We also call it if xfunc is exiting. |
| 1812 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1813 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1814 | static void sigexit(int sig) |
| 1815 | { |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1816 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 1817 | * tty pgrp then, only top-level shell process does that */ |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1818 | if (G_saved_tty_pgrp && getpid() == G.root_pid) { |
| 1819 | /* Disable all signals: job control, SIGPIPE, etc. |
| 1820 | * Mostly paranoid measure, to prevent infinite SIGTTOU. |
| 1821 | */ |
| 1822 | sigprocmask_allsigs(SIG_BLOCK); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 1823 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
Denys Vlasenko | ebc1ee2 | 2011-05-12 10:59:18 +0200 | [diff] [blame] | 1824 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1825 | |
| 1826 | /* Not a signal, just exit */ |
| 1827 | if (sig <= 0) |
| 1828 | _exit(- sig); |
| 1829 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 1830 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 1831 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1832 | #else |
| 1833 | |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 1834 | # define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 1835 | # define enable_restore_tty_pgrp_on_exit() ((void)0) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1836 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1837 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1838 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1839 | static sighandler_t pick_sighandler(unsigned sig) |
| 1840 | { |
| 1841 | sighandler_t handler = SIG_DFL; |
| 1842 | if (sig < sizeof(unsigned)*8) { |
| 1843 | unsigned sigmask = (1 << sig); |
| 1844 | |
| 1845 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1846 | /* is sig fatal? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1847 | if (G_fatal_sig_mask & sigmask) |
| 1848 | handler = sigexit; |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1849 | else |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1850 | #endif |
| 1851 | /* sig has special handling? */ |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 1852 | if (G.special_sig_mask & sigmask) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1853 | handler = record_pending_signo; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1854 | /* TTIN/TTOU/TSTP can't be set to record_pending_signo |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1855 | * in order to ignore them: they will be raised |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 1856 | * in an endless loop when we try to do some |
| 1857 | * terminal ioctls! We do have to _ignore_ these. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1858 | */ |
| 1859 | if (SPECIAL_JOBSTOP_SIGS & sigmask) |
| 1860 | handler = SIG_IGN; |
Denys Vlasenko | 0c40a73 | 2011-05-12 09:50:12 +0200 | [diff] [blame] | 1861 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1862 | } |
| 1863 | return handler; |
| 1864 | } |
| 1865 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1866 | /* Restores tty foreground process group, and exits. */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1867 | static void hush_exit(int exitcode) |
| 1868 | { |
Denys Vlasenko | bede215 | 2011-09-04 16:12:33 +0200 | [diff] [blame] | 1869 | #if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT |
| 1870 | save_history(G.line_input_state); |
| 1871 | #endif |
| 1872 | |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 1873 | fflush_all(); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1874 | 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] | 1875 | char *argv[3]; |
| 1876 | /* argv[0] is unused */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1877 | argv[1] = G_traps[0]; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 1878 | argv[2] = NULL; |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 1879 | G.exiting = 1; /* prevent EXIT trap recursion */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1880 | /* Note: G_traps[0] is not cleared! |
Denys Vlasenko | de8c3f6 | 2010-09-12 16:13:44 +0200 | [diff] [blame] | 1881 | * "trap" will still show it, if executed |
| 1882 | * in the handler */ |
| 1883 | builtin_eval(argv); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1884 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1885 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 1886 | #if ENABLE_FEATURE_CLEAN_UP |
| 1887 | { |
| 1888 | struct variable *cur_var; |
| 1889 | if (G.cwd != bb_msg_unknown) |
| 1890 | free((char*)G.cwd); |
| 1891 | cur_var = G.top_var; |
| 1892 | while (cur_var) { |
| 1893 | struct variable *tmp = cur_var; |
| 1894 | if (!cur_var->max_len) |
| 1895 | free(cur_var->varstr); |
| 1896 | cur_var = cur_var->next; |
| 1897 | free(tmp); |
| 1898 | } |
| 1899 | } |
| 1900 | #endif |
| 1901 | |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 1902 | fflush_all(); |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1903 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1904 | sigexit(- (exitcode & 0xff)); |
| 1905 | #else |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 1906 | _exit(exitcode); |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1907 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1908 | } |
| 1909 | |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 1910 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1911 | //TODO: return a mask of ALL handled sigs? |
| 1912 | static int check_and_run_traps(void) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1913 | { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1914 | int last_sig = 0; |
| 1915 | |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1916 | while (1) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1917 | int sig; |
Denys Vlasenko | 80542ba | 2011-05-08 21:23:43 +0200 | [diff] [blame] | 1918 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1919 | if (sigisemptyset(&G.pending_set)) |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1920 | break; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1921 | sig = 0; |
| 1922 | do { |
| 1923 | sig++; |
| 1924 | if (sigismember(&G.pending_set, sig)) { |
| 1925 | sigdelset(&G.pending_set, sig); |
| 1926 | goto got_sig; |
| 1927 | } |
| 1928 | } while (sig < NSIG); |
| 1929 | break; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1930 | got_sig: |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1931 | if (G_traps && G_traps[sig]) { |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 1932 | 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] | 1933 | if (G_traps[sig][0]) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1934 | /* We have user-defined handler */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1935 | smalluint save_rcode; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 1936 | char *argv[3]; |
| 1937 | /* argv[0] is unused */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 1938 | argv[1] = G_traps[sig]; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 1939 | argv[2] = NULL; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1940 | save_rcode = G.last_exitcode; |
| 1941 | builtin_eval(argv); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 1942 | //FIXME: shouldn't it be set to 128 + sig instead? |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1943 | G.last_exitcode = save_rcode; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1944 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1945 | } /* else: "" trap, ignoring signal */ |
| 1946 | continue; |
| 1947 | } |
| 1948 | /* not a trap: special action */ |
| 1949 | switch (sig) { |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1950 | case SIGINT: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 1951 | debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1952 | G.flag_SIGINT = 1; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1953 | last_sig = sig; |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1954 | break; |
| 1955 | #if ENABLE_HUSH_JOB |
| 1956 | case SIGHUP: { |
| 1957 | struct pipe *job; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 1958 | debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig); |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1959 | /* bash is observed to signal whole process groups, |
| 1960 | * not individual processes */ |
| 1961 | for (job = G.job_list; job; job = job->next) { |
| 1962 | if (job->pgrp <= 0) |
| 1963 | continue; |
| 1964 | debug_printf_exec("HUPing pgrp %d\n", job->pgrp); |
| 1965 | if (kill(- job->pgrp, SIGHUP) == 0) |
| 1966 | kill(- job->pgrp, SIGCONT); |
| 1967 | } |
| 1968 | sigexit(SIGHUP); |
| 1969 | } |
| 1970 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1971 | #if ENABLE_HUSH_FAST |
| 1972 | case SIGCHLD: |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 1973 | debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1974 | G.count_SIGCHLD++; |
| 1975 | //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 1976 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1977 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1978 | * This simplifies wait builtin a bit. |
| 1979 | */ |
| 1980 | break; |
| 1981 | #endif |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1982 | default: /* ignored: */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 1983 | 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] | 1984 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1985 | /* Note: |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1986 | * We don't do 'last_sig = sig' here -> NOT returning this sig. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 1987 | * Example: wait is not interrupted by TERM |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 1988 | * in interactive shell, because TERM is ignored. |
| 1989 | */ |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 1990 | break; |
| 1991 | } |
| 1992 | } |
| 1993 | return last_sig; |
| 1994 | } |
| 1995 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1996 | |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1997 | static const char *get_cwd(int force) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1998 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 1999 | if (force || G.cwd == NULL) { |
| 2000 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 2001 | * we must not try to free(bb_msg_unknown) */ |
| 2002 | if (G.cwd == bb_msg_unknown) |
| 2003 | G.cwd = NULL; |
| 2004 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 2005 | if (!G.cwd) |
| 2006 | G.cwd = bb_msg_unknown; |
| 2007 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2008 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2009 | } |
| 2010 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 2011 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2012 | /* |
| 2013 | * Shell and environment variable support |
| 2014 | */ |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2015 | 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] | 2016 | { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2017 | struct variable **pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2018 | struct variable *cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2019 | |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2020 | pp = &G.top_var; |
| 2021 | while ((cur = *pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2022 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2023 | return pp; |
| 2024 | pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2025 | } |
| 2026 | return NULL; |
| 2027 | } |
| 2028 | |
Denys Vlasenko | 03dad22 | 2010-01-12 23:29:57 +0100 | [diff] [blame] | 2029 | static const char* FAST_FUNC get_local_var_value(const char *name) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2030 | { |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2031 | struct variable **vpp; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2032 | unsigned len = strlen(name); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2033 | |
| 2034 | if (G.expanded_assignments) { |
| 2035 | char **cpp = G.expanded_assignments; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2036 | while (*cpp) { |
| 2037 | char *cp = *cpp; |
| 2038 | if (strncmp(cp, name, len) == 0 && cp[len] == '=') |
| 2039 | return cp + len + 1; |
| 2040 | cpp++; |
| 2041 | } |
| 2042 | } |
| 2043 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2044 | vpp = get_ptr_to_local_var(name, len); |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2045 | if (vpp) |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2046 | return (*vpp)->varstr + len + 1; |
Denys Vlasenko | 2908223 | 2010-07-16 13:52:32 +0200 | [diff] [blame] | 2047 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 2048 | if (strcmp(name, "PPID") == 0) |
| 2049 | return utoa(G.root_ppid); |
| 2050 | // bash compat: UID? EUID? |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2051 | #if ENABLE_HUSH_RANDOM_SUPPORT |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2052 | if (strcmp(name, "RANDOM") == 0) |
Denys Vlasenko | 20b3d14 | 2009-10-09 20:59:39 +0200 | [diff] [blame] | 2053 | return utoa(next_random(&G.random_gen)); |
| 2054 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2055 | return NULL; |
| 2056 | } |
| 2057 | |
| 2058 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2059 | * We take ownership of it. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 2060 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2061 | #define SETFLAG_EXPORT (1 << 0) |
| 2062 | #define SETFLAG_UNEXPORT (1 << 1) |
| 2063 | #define SETFLAG_MAKE_RO (1 << 2) |
| 2064 | #define SETFLAG_LOCAL_SHIFT 3 |
| 2065 | static int set_local_var(char *str, unsigned flags) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2066 | { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2067 | struct variable **var_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2068 | struct variable *cur; |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2069 | char *free_me = NULL; |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2070 | char *eq_sign; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2071 | int name_len; |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2072 | IF_HUSH_LOCAL(unsigned local_lvl = (flags >> SETFLAG_LOCAL_SHIFT);) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2073 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2074 | eq_sign = strchr(str, '='); |
| 2075 | if (!eq_sign) { /* not expected to ever happen? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2076 | free(str); |
| 2077 | return -1; |
| 2078 | } |
| 2079 | |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2080 | name_len = eq_sign - str + 1; /* including '=' */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2081 | var_pp = &G.top_var; |
| 2082 | while ((cur = *var_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2083 | if (strncmp(cur->varstr, str, name_len) != 0) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2084 | var_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2085 | continue; |
| 2086 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2087 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2088 | /* We found an existing var with this name */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2089 | if (cur->flg_read_only) { |
Denys Vlasenko | 6b48e1f | 2017-07-17 21:31:17 +0200 | [diff] [blame] | 2090 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2091 | free(str); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2092 | //NOTE: in bash, assignment in "export READONLY_VAR=Z" fails, and sets $?=1, |
| 2093 | //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] | 2094 | return -1; |
| 2095 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2096 | if (flags & SETFLAG_UNEXPORT) { // && cur->flg_export ? |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2097 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 2098 | *eq_sign = '\0'; |
| 2099 | unsetenv(str); |
| 2100 | *eq_sign = '='; |
| 2101 | } |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2102 | #if ENABLE_HUSH_LOCAL |
| 2103 | if (cur->func_nest_level < local_lvl) { |
| 2104 | /* New variable is declared as local, |
| 2105 | * and existing one is global, or local |
| 2106 | * from enclosing function. |
| 2107 | * Remove and save old one: */ |
| 2108 | *var_pp = cur->next; |
| 2109 | cur->next = *G.shadowed_vars_pp; |
| 2110 | *G.shadowed_vars_pp = cur; |
| 2111 | /* bash 3.2.33(1) and exported vars: |
| 2112 | * # export z=z |
| 2113 | * # f() { local z=a; env | grep ^z; } |
| 2114 | * # f |
| 2115 | * z=a |
| 2116 | * # env | grep ^z |
| 2117 | * z=z |
| 2118 | */ |
| 2119 | if (cur->flg_export) |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2120 | flags |= SETFLAG_EXPORT; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2121 | break; |
| 2122 | } |
| 2123 | #endif |
Denis Vlasenko | 950bd72 | 2009-04-21 11:23:56 +0000 | [diff] [blame] | 2124 | if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2125 | free_and_exp: |
| 2126 | free(str); |
| 2127 | goto exp; |
| 2128 | } |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2129 | if (cur->max_len != 0) { |
| 2130 | if (cur->max_len >= strlen(str)) { |
| 2131 | /* This one is from startup env, reuse space */ |
| 2132 | strcpy(cur->varstr, str); |
| 2133 | goto free_and_exp; |
| 2134 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2135 | /* Can't reuse */ |
| 2136 | cur->max_len = 0; |
| 2137 | goto set_str_and_exp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2138 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2139 | /* max_len == 0 signifies "malloced" var, which we can |
| 2140 | * (and have to) free. But we can't free(cur->varstr) here: |
| 2141 | * if cur->flg_export is 1, it is in the environment. |
| 2142 | * We should either unsetenv+free, or wait until putenv, |
| 2143 | * then putenv(new)+free(old). |
| 2144 | */ |
| 2145 | free_me = cur->varstr; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2146 | goto set_str_and_exp; |
| 2147 | } |
| 2148 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2149 | /* Not found - create new variable struct */ |
| 2150 | cur = xzalloc(sizeof(*cur)); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2151 | IF_HUSH_LOCAL(cur->func_nest_level = local_lvl;) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2152 | cur->next = *var_pp; |
| 2153 | *var_pp = cur; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2154 | |
| 2155 | set_str_and_exp: |
| 2156 | cur->varstr = str; |
| 2157 | exp: |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2158 | #if !BB_MMU || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2159 | if (flags & SETFLAG_MAKE_RO) { |
| 2160 | cur->flg_read_only = 1; |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 2161 | } |
| 2162 | #endif |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2163 | if (flags & SETFLAG_EXPORT) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2164 | cur->flg_export = 1; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2165 | if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 2166 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2167 | if (cur->flg_export) { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2168 | if (flags & SETFLAG_UNEXPORT) { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2169 | cur->flg_export = 0; |
| 2170 | /* unsetenv was already done */ |
| 2171 | } else { |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2172 | int i; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2173 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2174 | i = putenv(cur->varstr); |
| 2175 | /* only now we can free old exported malloced string */ |
| 2176 | free(free_me); |
| 2177 | return i; |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 2178 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2179 | } |
Denys Vlasenko | a769390 | 2016-10-03 15:01:06 +0200 | [diff] [blame] | 2180 | free(free_me); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2181 | return 0; |
| 2182 | } |
| 2183 | |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2184 | /* Used at startup and after each cd */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2185 | static void set_pwd_var(unsigned flag) |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2186 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2187 | set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)), flag); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2188 | } |
| 2189 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2190 | static int unset_local_var_len(const char *name, int name_len) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2191 | { |
| 2192 | struct variable *cur; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2193 | struct variable **var_pp; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2194 | |
| 2195 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2196 | return EXIT_SUCCESS; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2197 | var_pp = &G.top_var; |
| 2198 | while ((cur = *var_pp) != NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2199 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 2200 | if (cur->flg_read_only) { |
| 2201 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2202 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2203 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2204 | *var_pp = cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2205 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 2206 | bb_unsetenv(cur->varstr); |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2207 | if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S') |
| 2208 | cmdedit_update_prompt(); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2209 | if (!cur->max_len) |
| 2210 | free(cur->varstr); |
| 2211 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2212 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2213 | } |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2214 | var_pp = &cur->next; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2215 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 2216 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2217 | } |
| 2218 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 2219 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2220 | static int unset_local_var(const char *name) |
| 2221 | { |
| 2222 | return unset_local_var_len(name, strlen(name)); |
| 2223 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 2224 | #endif |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2225 | |
| 2226 | static void unset_vars(char **strings) |
| 2227 | { |
| 2228 | char **v; |
| 2229 | |
| 2230 | if (!strings) |
| 2231 | return; |
| 2232 | v = strings; |
| 2233 | while (*v) { |
| 2234 | const char *eq = strchrnul(*v, '='); |
| 2235 | unset_local_var_len(*v, (int)(eq - *v)); |
| 2236 | v++; |
| 2237 | } |
| 2238 | free(strings); |
| 2239 | } |
| 2240 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 2241 | #if BASH_HOSTNAME_VAR || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_READ |
Denys Vlasenko | 03dad22 | 2010-01-12 23:29:57 +0100 | [diff] [blame] | 2242 | 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] | 2243 | { |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2244 | char *var = xasprintf("%s=%s", name, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2245 | set_local_var(var, /*flag:*/ 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2246 | } |
Denys Vlasenko | cc2fd5a | 2017-01-09 06:19:55 +0100 | [diff] [blame] | 2247 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2248 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 2249 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2250 | /* |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2251 | * Helpers for "var1=val1 var2=val2 cmd" feature |
| 2252 | */ |
| 2253 | static void add_vars(struct variable *var) |
| 2254 | { |
| 2255 | struct variable *next; |
| 2256 | |
| 2257 | while (var) { |
| 2258 | next = var->next; |
| 2259 | var->next = G.top_var; |
| 2260 | G.top_var = var; |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2261 | if (var->flg_export) { |
| 2262 | debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2263 | putenv(var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2264 | } else { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 2265 | debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr); |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2266 | } |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2267 | var = next; |
| 2268 | } |
| 2269 | } |
| 2270 | |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2271 | static struct variable *set_vars_and_save_old(char **strings) |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2272 | { |
| 2273 | char **s; |
| 2274 | struct variable *old = NULL; |
| 2275 | |
| 2276 | if (!strings) |
| 2277 | return old; |
| 2278 | s = strings; |
| 2279 | while (*s) { |
| 2280 | struct variable *var_p; |
| 2281 | struct variable **var_pp; |
| 2282 | char *eq; |
| 2283 | |
| 2284 | eq = strchr(*s, '='); |
| 2285 | if (eq) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 2286 | var_pp = get_ptr_to_local_var(*s, eq - *s); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2287 | if (var_pp) { |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2288 | var_p = *var_pp; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2289 | if (var_p->flg_read_only) { |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2290 | char **p; |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2291 | bb_error_msg("%s: readonly variable", *s); |
Denys Vlasenko | cf51109 | 2017-07-18 15:58:02 +0200 | [diff] [blame] | 2292 | /* |
| 2293 | * "VAR=V BLTIN" unsets VARs after BLTIN completes. |
| 2294 | * If VAR is readonly, leaving it in the list |
| 2295 | * after asssignment error (msg above) |
| 2296 | * causes doubled error message later, on unset. |
| 2297 | */ |
| 2298 | debug_printf_env("removing/freeing '%s' element\n", *s); |
| 2299 | free(*s); |
| 2300 | p = s; |
| 2301 | do { *p = p[1]; p++; } while (*p); |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2302 | goto next; |
| 2303 | } |
| 2304 | /* Remove variable from global linked list */ |
Denys Vlasenko | acdc49c | 2009-05-04 01:58:10 +0200 | [diff] [blame] | 2305 | debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2306 | *var_pp = var_p->next; |
| 2307 | /* Add it to returned list */ |
| 2308 | var_p->next = old; |
| 2309 | old = var_p; |
| 2310 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 2311 | set_local_var(*s, SETFLAG_EXPORT); |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2312 | } |
Denys Vlasenko | 5b2cc0a | 2017-07-18 02:44:06 +0200 | [diff] [blame] | 2313 | next: |
Denys Vlasenko | cb6ff25 | 2009-05-04 00:14:30 +0200 | [diff] [blame] | 2314 | s++; |
| 2315 | } |
| 2316 | return old; |
| 2317 | } |
| 2318 | |
| 2319 | |
| 2320 | /* |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2321 | * Unicode helper |
| 2322 | */ |
| 2323 | static void reinit_unicode_for_hush(void) |
| 2324 | { |
| 2325 | /* Unicode support should be activated even if LANG is set |
| 2326 | * _during_ shell execution, not only if it was set when |
| 2327 | * shell was started. Therefore, re-check LANG every time: |
| 2328 | */ |
Denys Vlasenko | 841f833 | 2014-08-13 10:09:49 +0200 | [diff] [blame] | 2329 | if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV |
| 2330 | || ENABLE_UNICODE_USING_LOCALE |
| 2331 | ) { |
| 2332 | const char *s = get_local_var_value("LC_ALL"); |
| 2333 | if (!s) s = get_local_var_value("LC_CTYPE"); |
| 2334 | if (!s) s = get_local_var_value("LANG"); |
| 2335 | reinit_unicode(s); |
| 2336 | } |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2337 | } |
| 2338 | |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2339 | /* |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2340 | * in_str support (strings, and "strings" read from files). |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2341 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2342 | |
| 2343 | #if ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2344 | /* To test correct lineedit/interactive behavior, type from command line: |
| 2345 | * echo $P\ |
| 2346 | * \ |
| 2347 | * AT\ |
| 2348 | * H\ |
| 2349 | * \ |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 2350 | * It exercises a lot of corner cases. |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2351 | */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2352 | static void cmdedit_update_prompt(void) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2353 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2354 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2355 | G.PS1 = get_local_var_value("PS1"); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2356 | if (G.PS1 == NULL) |
| 2357 | G.PS1 = "\\w \\$ "; |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2358 | G.PS2 = get_local_var_value("PS2"); |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 2359 | } else { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2360 | G.PS1 = NULL; |
Denys Vlasenko | 690ad24 | 2009-04-30 21:24:24 +0200 | [diff] [blame] | 2361 | } |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 2362 | if (G.PS2 == NULL) |
| 2363 | G.PS2 = "> "; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2364 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2365 | static const char *setup_prompt_string(int promptmode) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2366 | { |
| 2367 | const char *prompt_str; |
| 2368 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2369 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 2370 | /* Set up the prompt */ |
| 2371 | if (promptmode == 0) { /* PS1 */ |
| 2372 | free((char*)G.PS1); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 2373 | /* bash uses $PWD value, even if it is set by user. |
| 2374 | * It uses current dir only if PWD is unset. |
| 2375 | * We always use current dir. */ |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 2376 | G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#'); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 2377 | prompt_str = G.PS1; |
| 2378 | } else |
| 2379 | prompt_str = G.PS2; |
| 2380 | } else |
| 2381 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2382 | debug_printf("prompt_str '%s'\n", prompt_str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2383 | return prompt_str; |
| 2384 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2385 | static int get_user_input(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2386 | { |
| 2387 | int r; |
| 2388 | const char *prompt_str; |
| 2389 | |
| 2390 | prompt_str = setup_prompt_string(i->promptmode); |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2391 | # if ENABLE_FEATURE_EDITING |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2392 | for (;;) { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 2393 | reinit_unicode_for_hush(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2394 | if (G.flag_SIGINT) { |
| 2395 | /* There was ^C'ed, make it look prettier: */ |
| 2396 | bb_putchar('\n'); |
| 2397 | G.flag_SIGINT = 0; |
| 2398 | } |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2399 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2400 | * only after <Enter>. (^C works immediately) */ |
Denys Vlasenko | 0448c55 | 2016-09-29 20:25:44 +0200 | [diff] [blame] | 2401 | r = read_line_input(G.line_input_state, prompt_str, |
| 2402 | G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1, |
| 2403 | /*timeout*/ -1 |
| 2404 | ); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2405 | /* read_line_input intercepts ^C, "convert" it to SIGINT */ |
| 2406 | if (r == 0) { |
| 2407 | write(STDOUT_FILENO, "^C", 2); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2408 | raise(SIGINT); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2409 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2410 | check_and_run_traps(); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2411 | if (r != 0 && !G.flag_SIGINT) |
| 2412 | break; |
| 2413 | /* ^C or SIGINT: repeat */ |
| 2414 | G.last_exitcode = 128 + SIGINT; |
| 2415 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2416 | if (r < 0) { |
| 2417 | /* EOF/error detected */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2418 | i->p = NULL; |
| 2419 | i->peek_buf[0] = r = EOF; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2420 | return r; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2421 | } |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2422 | i->p = G.user_input_buf; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2423 | return (unsigned char)*i->p++; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2424 | # else |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2425 | for (;;) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 2426 | G.flag_SIGINT = 0; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2427 | if (i->last_char == '\0' || i->last_char == '\n') { |
| 2428 | /* Why check_and_run_traps here? Try this interactively: |
| 2429 | * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) & |
| 2430 | * $ <[enter], repeatedly...> |
| 2431 | * Without check_and_run_traps, handler never runs. |
| 2432 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 2433 | check_and_run_traps(); |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 2434 | fputs(prompt_str, stdout); |
| 2435 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 2436 | fflush_all(); |
Denys Vlasenko | 4b89d51 | 2016-11-25 03:41:03 +0100 | [diff] [blame] | 2437 | //FIXME: here ^C or SIGINT will have effect only after <Enter> |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2438 | r = fgetc(i->file); |
Denys Vlasenko | 8660aeb | 2016-11-24 17:44:02 +0100 | [diff] [blame] | 2439 | /* In !ENABLE_FEATURE_EDITING we don't use read_line_input, |
| 2440 | * no ^C masking happens during fgetc, no special code for ^C: |
| 2441 | * it generates SIGINT as usual. |
| 2442 | */ |
| 2443 | check_and_run_traps(); |
| 2444 | if (G.flag_SIGINT) |
| 2445 | G.last_exitcode = 128 + SIGINT; |
| 2446 | if (r != '\0') |
| 2447 | break; |
| 2448 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2449 | return r; |
Denys Vlasenko | 8391c48 | 2010-05-22 17:50:43 +0200 | [diff] [blame] | 2450 | # endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2451 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2452 | /* This is the magic location that prints prompts |
| 2453 | * and gets data back from the user */ |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2454 | static int fgetc_interactive(struct in_str *i) |
| 2455 | { |
| 2456 | int ch; |
| 2457 | /* If it's interactive stdin, get new line. */ |
| 2458 | if (G_interactive_fd && i->file == stdin) { |
| 2459 | /* Returns first char (or EOF), the rest is in i->p[] */ |
| 2460 | ch = get_user_input(i); |
| 2461 | i->promptmode = 1; /* PS2 */ |
| 2462 | } else { |
| 2463 | /* Not stdin: script file, sourced file, etc */ |
| 2464 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2465 | } |
| 2466 | return ch; |
| 2467 | } |
| 2468 | #else |
| 2469 | static inline int fgetc_interactive(struct in_str *i) |
| 2470 | { |
| 2471 | int ch; |
| 2472 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2473 | return ch; |
| 2474 | } |
| 2475 | #endif /* INTERACTIVE */ |
| 2476 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2477 | static int i_getch(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2478 | { |
| 2479 | int ch; |
| 2480 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2481 | if (!i->file) { |
| 2482 | /* string-based in_str */ |
| 2483 | ch = (unsigned char)*i->p; |
| 2484 | if (ch != '\0') { |
| 2485 | i->p++; |
| 2486 | i->last_char = ch; |
| 2487 | return ch; |
| 2488 | } |
| 2489 | return EOF; |
| 2490 | } |
| 2491 | |
| 2492 | /* FILE-based in_str */ |
| 2493 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2494 | #if ENABLE_FEATURE_EDITING |
| 2495 | /* This can be stdin, check line editing char[] buffer */ |
| 2496 | if (i->p && *i->p != '\0') { |
| 2497 | ch = (unsigned char)*i->p++; |
| 2498 | goto out; |
| 2499 | } |
| 2500 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2501 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2502 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2503 | if (ch != 0) { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2504 | int ch2 = i->peek_buf[1]; |
| 2505 | i->peek_buf[0] = ch2; |
| 2506 | if (ch2 == 0) /* very likely, avoid redundant write */ |
| 2507 | goto out; |
| 2508 | i->peek_buf[1] = 0; |
| 2509 | goto out; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2510 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2511 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2512 | ch = fgetc_interactive(i); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2513 | out: |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 2514 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 2515 | i->last_char = ch; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2516 | return ch; |
| 2517 | } |
| 2518 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2519 | static int i_peek(struct in_str *i) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2520 | { |
| 2521 | int ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2522 | |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2523 | if (!i->file) { |
| 2524 | /* string-based in_str */ |
| 2525 | /* Doesn't report EOF on NUL. None of the callers care. */ |
| 2526 | return (unsigned char)*i->p; |
| 2527 | } |
| 2528 | |
| 2529 | /* FILE-based in_str */ |
| 2530 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2531 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2532 | /* This can be stdin, check line editing char[] buffer */ |
| 2533 | if (i->p && *i->p != '\0') |
| 2534 | return (unsigned char)*i->p; |
| 2535 | #endif |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2536 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2537 | ch = i->peek_buf[0]; |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2538 | if (ch != 0) |
| 2539 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2540 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2541 | /* Need to get a new char */ |
| 2542 | ch = fgetc_interactive(i); |
| 2543 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
| 2544 | |
| 2545 | /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */ |
| 2546 | #if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE |
| 2547 | if (i->p) { |
| 2548 | i->p -= 1; |
| 2549 | return ch; |
| 2550 | } |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2551 | #endif |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2552 | i->peek_buf[0] = ch; |
| 2553 | /*i->peek_buf[1] = 0; - already is */ |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2554 | return ch; |
| 2555 | } |
| 2556 | |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2557 | /* Only ever called if i_peek() was called, and did not return EOF. |
| 2558 | * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL, |
| 2559 | * not end-of-line. Therefore we never need to read a new editing line here. |
| 2560 | */ |
| 2561 | static int i_peek2(struct in_str *i) |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2562 | { |
Denys Vlasenko | 4074d49 | 2016-09-30 01:49:53 +0200 | [diff] [blame] | 2563 | int ch; |
| 2564 | |
| 2565 | /* There are two cases when i->p[] buffer exists. |
| 2566 | * (1) it's a string in_str. |
Denys Vlasenko | 08755f9 | 2016-09-30 02:02:25 +0200 | [diff] [blame] | 2567 | * (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] | 2568 | * In both cases, we know that i->p[0] exists and not NUL, and |
| 2569 | * the peek2 result is in i->p[1]. |
| 2570 | */ |
| 2571 | if (i->p) |
| 2572 | return (unsigned char)i->p[1]; |
| 2573 | |
| 2574 | /* Now we know it is a file-based in_str. */ |
| 2575 | |
| 2576 | /* peek_buf[] is an int array, not char. Can contain EOF. */ |
| 2577 | /* Is there 2nd char? */ |
| 2578 | ch = i->peek_buf[1]; |
| 2579 | if (ch == 0) { |
| 2580 | /* We did not read it yet, get it now */ |
| 2581 | do ch = fgetc(i->file); while (ch == '\0'); |
| 2582 | i->peek_buf[1] = ch; |
| 2583 | } |
| 2584 | |
| 2585 | debug_printf("file_peek2: got '%c' %d\n", ch, ch); |
| 2586 | return ch; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 2587 | } |
| 2588 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2589 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 2590 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2591 | memset(i, 0, sizeof(*i)); |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2592 | /* i->promptmode = 0; - PS1 (memset did it) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2593 | i->file = f; |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2594 | /* i->p = NULL; */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2595 | } |
| 2596 | |
| 2597 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 2598 | { |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2599 | memset(i, 0, sizeof(*i)); |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 2600 | /* i->promptmode = 0; - PS1 (memset did it) */ |
Denys Vlasenko | 87e039d | 2016-11-08 22:35:05 +0100 | [diff] [blame] | 2601 | /*i->file = NULL */; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2602 | i->p = s; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2603 | } |
| 2604 | |
| 2605 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2606 | /* |
| 2607 | * o_string support |
| 2608 | */ |
| 2609 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2610 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 2611 | static void o_reset_to_empty_unquoted(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2612 | { |
| 2613 | o->length = 0; |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2614 | o->has_quoted_part = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2615 | if (o->data) |
| 2616 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2617 | } |
| 2618 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2619 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2620 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 2621 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2622 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2623 | } |
| 2624 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2625 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 2626 | { |
| 2627 | free(o->data); |
| 2628 | } |
| 2629 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2630 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2631 | { |
| 2632 | if (o->length + len > o->maxlen) { |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2633 | o->maxlen += (2 * len) | (B_CHUNK-1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2634 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 2635 | } |
| 2636 | } |
| 2637 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2638 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2639 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2640 | 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] | 2641 | if (o->length < o->maxlen) { |
| 2642 | /* likely. avoid o_grow_by() call */ |
| 2643 | add: |
| 2644 | o->data[o->length] = ch; |
| 2645 | o->length++; |
| 2646 | o->data[o->length] = '\0'; |
| 2647 | return; |
| 2648 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2649 | o_grow_by(o, 1); |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 2650 | goto add; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2651 | } |
| 2652 | |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 2653 | #if 0 |
| 2654 | /* Valid only if we know o_string is not empty */ |
| 2655 | static void o_delchr(o_string *o) |
| 2656 | { |
| 2657 | o->length--; |
| 2658 | o->data[o->length] = '\0'; |
| 2659 | } |
| 2660 | #endif |
| 2661 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2662 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2663 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2664 | o_grow_by(o, len); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 2665 | ((char*)mempcpy(&o->data[o->length], str, len))[0] = '\0'; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2666 | o->length += len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2667 | } |
| 2668 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2669 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2670 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2671 | o_addblock(o, str, strlen(str)); |
| 2672 | } |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 2673 | |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 2674 | #if !BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2675 | static void nommu_addchr(o_string *o, int ch) |
| 2676 | { |
| 2677 | if (o) |
| 2678 | o_addchr(o, ch); |
| 2679 | } |
| 2680 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 2681 | # define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2682 | #endif |
| 2683 | |
| 2684 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 2685 | { |
| 2686 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 2687 | } |
| 2688 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2689 | /* |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 2690 | * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side. |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2691 | * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v. |
| 2692 | * Apparently, on unquoted $v bash still does globbing |
| 2693 | * ("v='*.txt'; echo $v" prints all .txt files), |
| 2694 | * but NOT brace expansion! Thus, there should be TWO independent |
| 2695 | * quoting mechanisms on $v expansion side: one protects |
| 2696 | * $v from brace expansion, and other additionally protects "$v" against globbing. |
| 2697 | * We have only second one. |
| 2698 | */ |
| 2699 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 2700 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2701 | # define MAYBE_BRACES "{}" |
| 2702 | #else |
| 2703 | # define MAYBE_BRACES "" |
| 2704 | #endif |
| 2705 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2706 | /* My analysis of quoting semantics tells me that state information |
| 2707 | * is associated with a destination, not a source. |
| 2708 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2709 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2710 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2711 | int sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2712 | char *found = strchr("*?[\\" MAYBE_BRACES, ch); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2713 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2714 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2715 | o_grow_by(o, sz); |
| 2716 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2717 | o->data[o->length] = '\\'; |
| 2718 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2719 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2720 | o->data[o->length] = ch; |
| 2721 | o->length++; |
| 2722 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2723 | } |
| 2724 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2725 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2726 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2727 | int sz = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2728 | if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS) |
| 2729 | && strchr("*?[\\" MAYBE_BRACES, ch) |
| 2730 | ) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2731 | sz++; |
| 2732 | o->data[o->length] = '\\'; |
| 2733 | o->length++; |
| 2734 | } |
| 2735 | o_grow_by(o, sz); |
| 2736 | o->data[o->length] = ch; |
| 2737 | o->length++; |
| 2738 | o->data[o->length] = '\0'; |
| 2739 | } |
| 2740 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2741 | static void o_addqblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2742 | { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2743 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2744 | char ch; |
| 2745 | int sz; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2746 | int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2747 | if (ordinary_cnt > len) /* paranoia */ |
| 2748 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2749 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2750 | if (ordinary_cnt == len) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2751 | return; /* NUL is already added by o_addblock */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2752 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 2753 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2754 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2755 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2756 | sz = 1; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2757 | if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2758 | sz++; |
| 2759 | o->data[o->length] = '\\'; |
| 2760 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2761 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 2762 | o_grow_by(o, sz); |
| 2763 | o->data[o->length] = ch; |
| 2764 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2765 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2766 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2767 | } |
| 2768 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2769 | static void o_addQblock(o_string *o, const char *str, int len) |
| 2770 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 2771 | if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 2772 | o_addblock(o, str, len); |
| 2773 | return; |
| 2774 | } |
| 2775 | o_addqblock(o, str, len); |
| 2776 | } |
| 2777 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 2778 | static void o_addQstr(o_string *o, const char *str) |
| 2779 | { |
| 2780 | o_addQblock(o, str, strlen(str)); |
| 2781 | } |
| 2782 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2783 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 2784 | * 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] | 2785 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2786 | * list[i] contains an INDEX (int!) into this string data. |
| 2787 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 2788 | * but list[i]'s need not be modified. |
| 2789 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 2790 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2791 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 2792 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2793 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 2794 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 2795 | { |
| 2796 | char **list = (char**)o->data; |
| 2797 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2798 | int i = 0; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2799 | |
| 2800 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2801 | 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] | 2802 | prefix, list, n, string_start, o->length, o->maxlen, |
| 2803 | !!(o->o_expflags & EXP_FLAG_GLOB), |
| 2804 | o->has_quoted_part, |
| 2805 | !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2806 | while (i < n) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 2807 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2808 | fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i], |
| 2809 | o->data + (int)(uintptr_t)list[i] + string_start, |
| 2810 | o->data + (int)(uintptr_t)list[i] + string_start); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2811 | i++; |
| 2812 | } |
| 2813 | if (n) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2814 | 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] | 2815 | indent(); |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 2816 | 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] | 2817 | } |
| 2818 | } |
| 2819 | #else |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 2820 | # define debug_print_list(prefix, o, n) ((void)0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2821 | #endif |
| 2822 | |
| 2823 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 2824 | * in list[n] so that it points past last stored byte so far. |
| 2825 | * It returns n+1. */ |
| 2826 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2827 | { |
| 2828 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2829 | int string_start; |
| 2830 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2831 | |
| 2832 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2833 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2834 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2835 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 2836 | 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] | 2837 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 2838 | o->maxlen += 0x10 * sizeof(list[0]); |
| 2839 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 2840 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2841 | memmove(list + n + 0x10, list + n, string_len); |
| 2842 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2843 | } else { |
| 2844 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 2845 | n, string_len, string_start); |
| 2846 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2847 | } else { |
| 2848 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 2849 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 2850 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2851 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 2852 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2853 | o->has_empty_slot = 0; |
| 2854 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 2855 | o->has_quoted_part = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2856 | list[n] = (char*)(uintptr_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2857 | return n + 1; |
| 2858 | } |
| 2859 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2860 | /* "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] | 2861 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2862 | { |
| 2863 | char **list = (char**)o->data; |
| 2864 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 2865 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2866 | return ((int)(uintptr_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 2867 | } |
| 2868 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 2869 | #if ENABLE_HUSH_BRACE_EXPANSION |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2870 | /* There in a GNU extension, GLOB_BRACE, but it is not usable: |
| 2871 | * first, it processes even {a} (no commas), second, |
| 2872 | * 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] | 2873 | * existing files. Need to re-implement it. |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2874 | */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2875 | |
| 2876 | /* Helper */ |
| 2877 | static int glob_needed(const char *s) |
| 2878 | { |
| 2879 | while (*s) { |
| 2880 | if (*s == '\\') { |
| 2881 | if (!s[1]) |
| 2882 | return 0; |
| 2883 | s += 2; |
| 2884 | continue; |
| 2885 | } |
| 2886 | if (*s == '*' || *s == '[' || *s == '?' || *s == '{') |
| 2887 | return 1; |
| 2888 | s++; |
| 2889 | } |
| 2890 | return 0; |
| 2891 | } |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2892 | /* Return pointer to next closing brace or to comma */ |
| 2893 | static const char *next_brace_sub(const char *cp) |
| 2894 | { |
| 2895 | unsigned depth = 0; |
| 2896 | cp++; |
| 2897 | while (*cp != '\0') { |
| 2898 | if (*cp == '\\') { |
| 2899 | if (*++cp == '\0') |
| 2900 | break; |
| 2901 | cp++; |
| 2902 | continue; |
Denys Vlasenko | 3581c62 | 2010-01-25 13:39:24 +0100 | [diff] [blame] | 2903 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2904 | if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0)) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2905 | break; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2906 | if (*cp++ == '{') |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2907 | depth++; |
| 2908 | } |
| 2909 | |
| 2910 | return *cp != '\0' ? cp : NULL; |
| 2911 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2912 | /* Recursive brace globber. Note: may garble pattern[]. */ |
| 2913 | static int glob_brace(char *pattern, o_string *o, int n) |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2914 | { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2915 | char *new_pattern_buf; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2916 | const char *begin; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2917 | const char *next; |
| 2918 | const char *rest; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2919 | const char *p; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2920 | size_t rest_len; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2921 | |
| 2922 | debug_printf_glob("glob_brace('%s')\n", pattern); |
| 2923 | |
| 2924 | begin = pattern; |
| 2925 | while (1) { |
| 2926 | if (*begin == '\0') |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2927 | goto simple_glob; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2928 | if (*begin == '{') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2929 | /* Find the first sub-pattern and at the same time |
| 2930 | * find the rest after the closing brace */ |
| 2931 | next = next_brace_sub(begin); |
| 2932 | if (next == NULL) { |
| 2933 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2934 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2935 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2936 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2937 | /* "{abc}" with no commas - illegal |
| 2938 | * brace expr, disregard and skip it */ |
| 2939 | begin = next + 1; |
| 2940 | continue; |
| 2941 | } |
| 2942 | break; |
| 2943 | } |
| 2944 | if (*begin == '\\' && begin[1] != '\0') |
| 2945 | begin++; |
| 2946 | begin++; |
| 2947 | } |
| 2948 | debug_printf_glob("begin:%s\n", begin); |
| 2949 | debug_printf_glob("next:%s\n", next); |
| 2950 | |
| 2951 | /* Now find the end of the whole brace expression */ |
| 2952 | rest = next; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2953 | while (*rest != '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2954 | rest = next_brace_sub(rest); |
| 2955 | if (rest == NULL) { |
| 2956 | /* An illegal expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2957 | goto simple_glob; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2958 | } |
| 2959 | debug_printf_glob("rest:%s\n", rest); |
| 2960 | } |
| 2961 | rest_len = strlen(++rest) + 1; |
| 2962 | |
| 2963 | /* We are sure the brace expression is well-formed */ |
| 2964 | |
| 2965 | /* Allocate working buffer large enough for our work */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2966 | new_pattern_buf = xmalloc(strlen(pattern)); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2967 | |
| 2968 | /* We have a brace expression. BEGIN points to the opening {, |
| 2969 | * NEXT points past the terminator of the first element, and REST |
| 2970 | * points past the final }. We will accumulate result names from |
| 2971 | * recursive runs for each brace alternative in the buffer using |
| 2972 | * GLOB_APPEND. */ |
| 2973 | |
| 2974 | p = begin + 1; |
| 2975 | while (1) { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2976 | /* Construct the new glob expression */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2977 | memcpy( |
| 2978 | mempcpy( |
| 2979 | mempcpy(new_pattern_buf, |
| 2980 | /* We know the prefix for all sub-patterns */ |
| 2981 | pattern, begin - pattern), |
| 2982 | p, next - p), |
| 2983 | rest, rest_len); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2984 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2985 | /* Note: glob_brace() may garble new_pattern_buf[]. |
| 2986 | * That's why we re-copy prefix every time (1st memcpy above). |
| 2987 | */ |
| 2988 | n = glob_brace(new_pattern_buf, o, n); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 2989 | if (*next == '}') { |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2990 | /* We saw the last entry */ |
| 2991 | break; |
| 2992 | } |
| 2993 | p = next + 1; |
| 2994 | next = next_brace_sub(next); |
| 2995 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2996 | free(new_pattern_buf); |
| 2997 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 2998 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 2999 | simple_glob: |
| 3000 | { |
| 3001 | int gr; |
| 3002 | glob_t globdata; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3003 | |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3004 | memset(&globdata, 0, sizeof(globdata)); |
| 3005 | gr = glob(pattern, 0, NULL, &globdata); |
| 3006 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 3007 | if (gr != 0) { |
| 3008 | if (gr == GLOB_NOMATCH) { |
| 3009 | globfree(&globdata); |
| 3010 | /* NB: garbles parameter */ |
| 3011 | unbackslash(pattern); |
| 3012 | o_addstr_with_NUL(o, pattern); |
| 3013 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3014 | return o_save_ptr_helper(o, n); |
| 3015 | } |
| 3016 | if (gr == GLOB_NOSPACE) |
| 3017 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
| 3018 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3019 | * but we didn't specify it. Paranoia again. */ |
| 3020 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
| 3021 | } |
| 3022 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3023 | char **argv = globdata.gl_pathv; |
| 3024 | while (1) { |
| 3025 | o_addstr_with_NUL(o, *argv); |
| 3026 | n = o_save_ptr_helper(o, n); |
| 3027 | argv++; |
| 3028 | if (!*argv) |
| 3029 | break; |
| 3030 | } |
| 3031 | } |
| 3032 | globfree(&globdata); |
| 3033 | } |
| 3034 | return n; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3035 | } |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3036 | /* Performs globbing on last list[], |
| 3037 | * saving each result as a new list[]. |
| 3038 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3039 | static int perform_glob(o_string *o, int n) |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3040 | { |
| 3041 | char *pattern, *copy; |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3042 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3043 | 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] | 3044 | if (!o->data) |
| 3045 | return o_save_ptr_helper(o, n); |
| 3046 | pattern = o->data + o_get_last_ptr(o, n); |
| 3047 | debug_printf_glob("glob pattern '%s'\n", pattern); |
| 3048 | if (!glob_needed(pattern)) { |
| 3049 | /* unbackslash last string in o in place, fix length */ |
| 3050 | o->length = unbackslash(pattern) - o->data; |
| 3051 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
| 3052 | return o_save_ptr_helper(o, n); |
| 3053 | } |
| 3054 | |
| 3055 | copy = xstrdup(pattern); |
| 3056 | /* "forget" pattern in o */ |
| 3057 | o->length = pattern - o->data; |
| 3058 | n = glob_brace(copy, o, n); |
| 3059 | free(copy); |
| 3060 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3061 | debug_print_list("perform_glob returning", o, n); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3062 | return n; |
| 3063 | } |
| 3064 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3065 | #else /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3066 | |
| 3067 | /* Helper */ |
| 3068 | static int glob_needed(const char *s) |
| 3069 | { |
| 3070 | while (*s) { |
| 3071 | if (*s == '\\') { |
| 3072 | if (!s[1]) |
| 3073 | return 0; |
| 3074 | s += 2; |
| 3075 | continue; |
| 3076 | } |
| 3077 | if (*s == '*' || *s == '[' || *s == '?') |
| 3078 | return 1; |
| 3079 | s++; |
| 3080 | } |
| 3081 | return 0; |
| 3082 | } |
| 3083 | /* Performs globbing on last list[], |
| 3084 | * saving each result as a new list[]. |
| 3085 | */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3086 | static int perform_glob(o_string *o, int n) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3087 | { |
| 3088 | glob_t globdata; |
| 3089 | int gr; |
| 3090 | char *pattern; |
| 3091 | |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3092 | 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] | 3093 | if (!o->data) |
| 3094 | return o_save_ptr_helper(o, n); |
| 3095 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3096 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3097 | if (!glob_needed(pattern)) { |
| 3098 | literal: |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3099 | /* unbackslash last string in o in place, fix length */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3100 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3101 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3102 | return o_save_ptr_helper(o, n); |
| 3103 | } |
| 3104 | |
| 3105 | memset(&globdata, 0, sizeof(globdata)); |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3106 | /* Can't use GLOB_NOCHECK: it does not unescape the string. |
| 3107 | * If we glob "*.\*" and don't find anything, we need |
| 3108 | * to fall back to using literal "*.*", but GLOB_NOCHECK |
| 3109 | * will return "*.\*"! |
| 3110 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3111 | gr = glob(pattern, 0, NULL, &globdata); |
| 3112 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3113 | if (gr != 0) { |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3114 | if (gr == GLOB_NOMATCH) { |
| 3115 | globfree(&globdata); |
| 3116 | goto literal; |
| 3117 | } |
| 3118 | if (gr == GLOB_NOSPACE) |
| 3119 | bb_error_msg_and_die(bb_msg_memory_exhausted); |
Denys Vlasenko | 5b2db97 | 2009-11-16 05:49:36 +0100 | [diff] [blame] | 3120 | /* GLOB_ABORTED? Only happens with GLOB_ERR flag, |
| 3121 | * but we didn't specify it. Paranoia again. */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3122 | bb_error_msg_and_die("glob error %d on '%s'", gr, pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3123 | } |
| 3124 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 3125 | char **argv = globdata.gl_pathv; |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3126 | /* "forget" pattern in o */ |
| 3127 | o->length = pattern - o->data; |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3128 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3129 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3130 | n = o_save_ptr_helper(o, n); |
| 3131 | argv++; |
| 3132 | if (!*argv) |
| 3133 | break; |
| 3134 | } |
| 3135 | } |
| 3136 | globfree(&globdata); |
| 3137 | if (DEBUG_GLOB) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3138 | debug_print_list("perform_glob returning", o, n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3139 | return n; |
| 3140 | } |
| 3141 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 3142 | #endif /* !HUSH_BRACE_EXPANSION */ |
Denys Vlasenko | f3e2818 | 2009-11-17 03:35:31 +0100 | [diff] [blame] | 3143 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3144 | /* 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] | 3145 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3146 | static int o_save_ptr(o_string *o, int n) |
| 3147 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 3148 | if (o->o_expflags & EXP_FLAG_GLOB) { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3149 | /* If o->has_empty_slot, list[n] was already globbed |
| 3150 | * (if it was requested back then when it was filled) |
| 3151 | * so don't do that again! */ |
| 3152 | if (!o->has_empty_slot) |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 3153 | return perform_glob(o, n); /* o_save_ptr_helper is inside */ |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 3154 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3155 | return o_save_ptr_helper(o, n); |
| 3156 | } |
| 3157 | |
| 3158 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3159 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3160 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3161 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3162 | int string_start; |
| 3163 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3164 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 3165 | if (DEBUG_EXPAND) |
| 3166 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3167 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 3168 | list = (char**)o->data; |
| 3169 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 3170 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3171 | while (n) { |
| 3172 | n--; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3173 | list[n] = o->data + (int)(uintptr_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3174 | } |
| 3175 | return list; |
| 3176 | } |
| 3177 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3178 | static void free_pipe_list(struct pipe *pi); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3179 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3180 | /* Returns pi->next - next pipe in the list */ |
| 3181 | static struct pipe *free_pipe(struct pipe *pi) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3182 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3183 | struct pipe *next; |
| 3184 | int i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3185 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3186 | debug_printf_clean("free_pipe (pid %d)\n", getpid()); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3187 | for (i = 0; i < pi->num_cmds; i++) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3188 | struct command *command; |
| 3189 | struct redir_struct *r, *rnext; |
| 3190 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3191 | command = &pi->cmds[i]; |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3192 | debug_printf_clean(" command %d:\n", i); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3193 | if (command->argv) { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3194 | if (DEBUG_CLEAN) { |
| 3195 | int a; |
| 3196 | char **p; |
| 3197 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 3198 | debug_printf_clean(" argv[%d] = %s\n", a, *p); |
| 3199 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3200 | } |
| 3201 | free_strings(command->argv); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3202 | //command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3203 | } |
| 3204 | /* not "else if": on syntax error, we may have both! */ |
| 3205 | if (command->group) { |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3206 | debug_printf_clean(" begin group (cmd_type:%d)\n", |
| 3207 | command->cmd_type); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3208 | free_pipe_list(command->group); |
| 3209 | debug_printf_clean(" end group\n"); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3210 | //command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3211 | } |
Denis Vlasenko | ed05521 | 2009-04-11 10:37:10 +0000 | [diff] [blame] | 3212 | /* else is crucial here. |
| 3213 | * If group != NULL, child_func is meaningless */ |
| 3214 | #if ENABLE_HUSH_FUNCTIONS |
| 3215 | else if (command->child_func) { |
| 3216 | debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func); |
| 3217 | command->child_func->parent_cmd = NULL; |
| 3218 | } |
| 3219 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3220 | #if !BB_MMU |
| 3221 | free(command->group_as_string); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3222 | //command->group_as_string = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3223 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3224 | for (r = command->redirects; r; r = rnext) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3225 | debug_printf_clean(" redirect %d%s", |
| 3226 | r->rd_fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3227 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 3228 | if (r->rd_filename) { |
| 3229 | debug_printf_clean(" fname:'%s'\n", r->rd_filename); |
| 3230 | free(r->rd_filename); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3231 | //r->rd_filename = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3232 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3233 | debug_printf_clean(" rd_dup:%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3234 | rnext = r->next; |
| 3235 | free(r); |
| 3236 | } |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3237 | //command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3238 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3239 | 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] | 3240 | //pi->cmds = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3241 | #if ENABLE_HUSH_JOB |
| 3242 | free(pi->cmdtext); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3243 | //pi->cmdtext = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3244 | #endif |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3245 | |
| 3246 | next = pi->next; |
| 3247 | free(pi); |
| 3248 | return next; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3249 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3250 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3251 | static void free_pipe_list(struct pipe *pi) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3252 | { |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3253 | while (pi) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3254 | #if HAS_KEYWORDS |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3255 | debug_printf_clean("pipe reserved word %d\n", pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3256 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 3257 | debug_printf_clean("pipe followup code %d\n", pi->followup); |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 3258 | pi = free_pipe(pi); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3259 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3260 | } |
| 3261 | |
| 3262 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 3263 | /*** Parsing routines ***/ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3264 | |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3265 | #ifndef debug_print_tree |
| 3266 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3267 | { |
| 3268 | static const char *const PIPE[] = { |
| 3269 | [PIPE_SEQ] = "SEQ", |
| 3270 | [PIPE_AND] = "AND", |
| 3271 | [PIPE_OR ] = "OR" , |
| 3272 | [PIPE_BG ] = "BG" , |
| 3273 | }; |
| 3274 | static const char *RES[] = { |
| 3275 | [RES_NONE ] = "NONE" , |
| 3276 | # if ENABLE_HUSH_IF |
| 3277 | [RES_IF ] = "IF" , |
| 3278 | [RES_THEN ] = "THEN" , |
| 3279 | [RES_ELIF ] = "ELIF" , |
| 3280 | [RES_ELSE ] = "ELSE" , |
| 3281 | [RES_FI ] = "FI" , |
| 3282 | # endif |
| 3283 | # if ENABLE_HUSH_LOOPS |
| 3284 | [RES_FOR ] = "FOR" , |
| 3285 | [RES_WHILE] = "WHILE", |
| 3286 | [RES_UNTIL] = "UNTIL", |
| 3287 | [RES_DO ] = "DO" , |
| 3288 | [RES_DONE ] = "DONE" , |
| 3289 | # endif |
| 3290 | # if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 3291 | [RES_IN ] = "IN" , |
| 3292 | # endif |
| 3293 | # if ENABLE_HUSH_CASE |
| 3294 | [RES_CASE ] = "CASE" , |
| 3295 | [RES_CASE_IN ] = "CASE_IN" , |
| 3296 | [RES_MATCH] = "MATCH", |
| 3297 | [RES_CASE_BODY] = "CASE_BODY", |
| 3298 | [RES_ESAC ] = "ESAC" , |
| 3299 | # endif |
| 3300 | [RES_XXXX ] = "XXXX" , |
| 3301 | [RES_SNTX ] = "SNTX" , |
| 3302 | }; |
| 3303 | static const char *const CMDTYPE[] = { |
| 3304 | "{}", |
| 3305 | "()", |
| 3306 | "[noglob]", |
| 3307 | # if ENABLE_HUSH_FUNCTIONS |
| 3308 | "func()", |
| 3309 | # endif |
| 3310 | }; |
| 3311 | |
| 3312 | int pin, prn; |
| 3313 | |
| 3314 | pin = 0; |
| 3315 | while (pi) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3316 | fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3317 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
| 3318 | prn = 0; |
| 3319 | while (prn < pi->num_cmds) { |
| 3320 | struct command *command = &pi->cmds[prn]; |
| 3321 | char **argv = command->argv; |
| 3322 | |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3323 | fdprintf(2, "%*s cmd %d assignment_cnt:%d", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3324 | lvl*2, "", prn, |
| 3325 | command->assignment_cnt); |
| 3326 | if (command->group) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3327 | fdprintf(2, " group %s: (argv=%p)%s%s\n", |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3328 | CMDTYPE[command->cmd_type], |
| 3329 | argv |
| 3330 | # if !BB_MMU |
| 3331 | , " group_as_string:", command->group_as_string |
| 3332 | # else |
| 3333 | , "", "" |
| 3334 | # endif |
| 3335 | ); |
| 3336 | debug_print_tree(command->group, lvl+1); |
| 3337 | prn++; |
| 3338 | continue; |
| 3339 | } |
| 3340 | if (argv) while (*argv) { |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3341 | fdprintf(2, " '%s'", *argv); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3342 | argv++; |
| 3343 | } |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 3344 | fdprintf(2, "\n"); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 3345 | prn++; |
| 3346 | } |
| 3347 | pi = pi->next; |
| 3348 | pin++; |
| 3349 | } |
| 3350 | } |
| 3351 | #endif /* debug_print_tree */ |
| 3352 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3353 | static struct pipe *new_pipe(void) |
| 3354 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3355 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3356 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3357 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3358 | return pi; |
| 3359 | } |
| 3360 | |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3361 | /* Command (member of a pipe) is complete, or we start a new pipe |
| 3362 | * if ctx->command is NULL. |
| 3363 | * No errors possible here. |
| 3364 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3365 | static int done_command(struct parse_context *ctx) |
| 3366 | { |
| 3367 | /* The command is really already in the pipe structure, so |
| 3368 | * advance the pipe counter and make a new, null command. */ |
| 3369 | struct pipe *pi = ctx->pipe; |
| 3370 | struct command *command = ctx->command; |
| 3371 | |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3372 | #if 0 /* Instead we emit error message at run time */ |
| 3373 | if (ctx->pending_redirect) { |
| 3374 | /* For example, "cmd >" (no filename to redirect to) */ |
| 3375 | die_if_script("syntax error: %s", "invalid redirect"); |
| 3376 | ctx->pending_redirect = NULL; |
| 3377 | } |
| 3378 | #endif |
| 3379 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3380 | if (command) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3381 | if (IS_NULL_CMD(command)) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3382 | 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] | 3383 | goto clear_and_ret; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3384 | } |
| 3385 | pi->num_cmds++; |
| 3386 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3387 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3388 | } else { |
| 3389 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3390 | } |
| 3391 | |
| 3392 | /* Only real trickiness here is that the uncommitted |
| 3393 | * command structure is not counted in pi->num_cmds. */ |
| 3394 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3395 | ctx->command = command = &pi->cmds[pi->num_cmds]; |
| 3396 | clear_and_ret: |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3397 | memset(command, 0, sizeof(*command)); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3398 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3399 | } |
| 3400 | |
| 3401 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3402 | { |
| 3403 | int not_null; |
| 3404 | |
| 3405 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3406 | /* Close previous command */ |
| 3407 | not_null = done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3408 | #if HAS_KEYWORDS |
| 3409 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 3410 | ctx->ctx_inverted = 0; |
| 3411 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 3412 | #endif |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3413 | if (type == PIPE_BG && ctx->list_head != ctx->pipe) { |
| 3414 | /* Necessary since && and || have precedence over &: |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3415 | * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2, |
| 3416 | * in a backgrounded subshell. |
| 3417 | */ |
| 3418 | struct pipe *pi; |
| 3419 | struct command *command; |
| 3420 | |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3421 | /* Is this actually this construct, all pipes end with && or ||? */ |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3422 | pi = ctx->list_head; |
| 3423 | while (pi != ctx->pipe) { |
| 3424 | if (pi->followup != PIPE_AND && pi->followup != PIPE_OR) |
| 3425 | goto no_conv; |
| 3426 | pi = pi->next; |
| 3427 | } |
| 3428 | |
| 3429 | debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n"); |
| 3430 | pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */ |
| 3431 | pi = xzalloc(sizeof(*pi)); |
| 3432 | pi->followup = PIPE_BG; |
| 3433 | pi->num_cmds = 1; |
| 3434 | pi->cmds = xzalloc(sizeof(pi->cmds[0])); |
| 3435 | command = &pi->cmds[0]; |
| 3436 | if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */ |
| 3437 | command->cmd_type = CMD_NORMAL; |
| 3438 | command->group = ctx->list_head; |
| 3439 | #if !BB_MMU |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3440 | command->group_as_string = xstrndup( |
| 3441 | ctx->as_string.data, |
| 3442 | ctx->as_string.length - 1 /* do not copy last char, "&" */ |
| 3443 | ); |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3444 | #endif |
| 3445 | /* Replace all pipes in ctx with one newly created */ |
| 3446 | ctx->list_head = ctx->pipe = pi; |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 3447 | } else { |
| 3448 | no_conv: |
| 3449 | ctx->pipe->followup = type; |
Denys Vlasenko | ee553b9 | 2017-07-15 22:51:55 +0200 | [diff] [blame] | 3450 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3451 | |
| 3452 | /* Without this check, even just <enter> on command line generates |
| 3453 | * tree of three NOPs (!). Which is harmless but annoying. |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3454 | * IOW: it is safe to do it unconditionally. */ |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3455 | if (not_null |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3456 | #if ENABLE_HUSH_IF |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3457 | || ctx->ctx_res_w == RES_FI |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3458 | #endif |
| 3459 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3460 | || ctx->ctx_res_w == RES_DONE |
| 3461 | || ctx->ctx_res_w == RES_FOR |
| 3462 | || ctx->ctx_res_w == RES_IN |
Denis Vlasenko | 7f95937 | 2009-04-14 08:06:59 +0000 | [diff] [blame] | 3463 | #endif |
| 3464 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3465 | || ctx->ctx_res_w == RES_ESAC |
| 3466 | #endif |
| 3467 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3468 | struct pipe *new_p; |
| 3469 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3470 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3471 | not_null, ctx->ctx_res_w); |
| 3472 | new_p = new_pipe(); |
| 3473 | ctx->pipe->next = new_p; |
| 3474 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3475 | /* RES_THEN, RES_DO etc are "sticky" - |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 3476 | * they remain set for pipes inside if/while. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3477 | * This is used to control execution. |
| 3478 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3479 | * cases where variable or value happens to match a keyword): |
| 3480 | */ |
| 3481 | #if ENABLE_HUSH_LOOPS |
| 3482 | if (ctx->ctx_res_w == RES_FOR |
| 3483 | || ctx->ctx_res_w == RES_IN) |
| 3484 | ctx->ctx_res_w = RES_NONE; |
| 3485 | #endif |
| 3486 | #if ENABLE_HUSH_CASE |
| 3487 | if (ctx->ctx_res_w == RES_MATCH) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3488 | ctx->ctx_res_w = RES_CASE_BODY; |
| 3489 | if (ctx->ctx_res_w == RES_CASE) |
| 3490 | ctx->ctx_res_w = RES_CASE_IN; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3491 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3492 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3493 | /* Create the memory for command, roughly: |
| 3494 | * ctx->pipe->cmds = new struct command; |
| 3495 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3496 | */ |
| 3497 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3498 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3499 | } |
| 3500 | debug_printf_parse("done_pipe return\n"); |
| 3501 | } |
| 3502 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3503 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3504 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3505 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3506 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3507 | /* Create the memory for command, roughly: |
| 3508 | * ctx->pipe->cmds = new struct command; |
| 3509 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3510 | */ |
| 3511 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3512 | } |
| 3513 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3514 | /* If a reserved word is found and processed, parse context is modified |
| 3515 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3516 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3517 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3518 | struct reserved_combo { |
| 3519 | char literal[6]; |
| 3520 | unsigned char res; |
| 3521 | unsigned char assignment_flag; |
| 3522 | int flag; |
| 3523 | }; |
| 3524 | enum { |
| 3525 | FLAG_END = (1 << RES_NONE ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3526 | # if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3527 | FLAG_IF = (1 << RES_IF ), |
| 3528 | FLAG_THEN = (1 << RES_THEN ), |
| 3529 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3530 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3531 | FLAG_FI = (1 << RES_FI ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3532 | # endif |
| 3533 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3534 | FLAG_FOR = (1 << RES_FOR ), |
| 3535 | FLAG_WHILE = (1 << RES_WHILE), |
| 3536 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3537 | FLAG_DO = (1 << RES_DO ), |
| 3538 | FLAG_DONE = (1 << RES_DONE ), |
| 3539 | FLAG_IN = (1 << RES_IN ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3540 | # endif |
| 3541 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3542 | FLAG_MATCH = (1 << RES_MATCH), |
| 3543 | FLAG_ESAC = (1 << RES_ESAC ), |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3544 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3545 | FLAG_START = (1 << RES_XXXX ), |
| 3546 | }; |
| 3547 | |
| 3548 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3549 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3550 | /* Mostly a list of accepted follow-up reserved words. |
| 3551 | * FLAG_END means we are done with the sequence, and are ready |
| 3552 | * to turn the compound list into a command. |
| 3553 | * FLAG_START means the word must start a new compound list. |
| 3554 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3555 | static const struct reserved_combo reserved_list[] = { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3556 | # if ENABLE_HUSH_IF |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3557 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3558 | { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START }, |
| 3559 | { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3560 | { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN }, |
| 3561 | { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI }, |
| 3562 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3563 | # endif |
| 3564 | # if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3565 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3566 | { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3567 | { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, |
| 3568 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3569 | { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE }, |
| 3570 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3571 | # endif |
| 3572 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3573 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3574 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3575 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3576 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3577 | const struct reserved_combo *r; |
| 3578 | |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 3579 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3580 | if (strcmp(word->data, r->literal) == 0) |
| 3581 | return r; |
| 3582 | } |
| 3583 | return NULL; |
| 3584 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3585 | /* Return 0: not a keyword, 1: keyword |
| 3586 | */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3587 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3588 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3589 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3590 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3591 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3592 | }; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3593 | # endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3594 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3595 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3596 | if (word->has_quoted_part) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3597 | return 0; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3598 | r = match_reserved_word(word); |
| 3599 | if (!r) |
| 3600 | return 0; |
| 3601 | |
| 3602 | 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] | 3603 | # if ENABLE_HUSH_CASE |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3604 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) { |
| 3605 | /* "case word IN ..." - IN part starts first MATCH part */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3606 | r = &reserved_match; |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3607 | } else |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3608 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3609 | if (r->flag == 0) { /* '!' */ |
| 3610 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3611 | syntax_error("! ! command"); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3612 | ctx->ctx_res_w = RES_SNTX; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3613 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3614 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3615 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3616 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3617 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3618 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3619 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 3620 | old = xmemdup(ctx, sizeof(*ctx)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3621 | debug_printf_parse("push stack %p\n", old); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3622 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3623 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3624 | } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3625 | syntax_error_at(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3626 | ctx->ctx_res_w = RES_SNTX; |
| 3627 | return 1; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3628 | } else { |
| 3629 | /* "{...} fi" is ok. "{...} if" is not |
| 3630 | * Example: |
| 3631 | * if { echo foo; } then { echo bar; } fi */ |
| 3632 | if (ctx->command->group) |
| 3633 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3634 | } |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3635 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3636 | ctx->ctx_res_w = r->res; |
| 3637 | ctx->old_flag = r->flag; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3638 | word->o_assignment = r->assignment_flag; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3639 | debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]); |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3640 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3641 | if (ctx->old_flag & FLAG_END) { |
| 3642 | struct parse_context *old; |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3643 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3644 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3645 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3646 | old = ctx->stack; |
| 3647 | old->command->group = ctx->list_head; |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3648 | old->command->cmd_type = CMD_NORMAL; |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3649 | # if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 3650 | /* At this point, the compound command's string is in |
| 3651 | * ctx->as_string... except for the leading keyword! |
| 3652 | * Consider this example: "echo a | if true; then echo a; fi" |
| 3653 | * ctx->as_string will contain "true; then echo a; fi", |
| 3654 | * with "if " remaining in old->as_string! |
| 3655 | */ |
| 3656 | { |
| 3657 | char *str; |
| 3658 | int len = old->as_string.length; |
| 3659 | /* Concatenate halves */ |
| 3660 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3661 | o_free_unsafe(&ctx->as_string); |
| 3662 | /* Find where leading keyword starts in first half */ |
| 3663 | str = old->as_string.data + len; |
| 3664 | if (str > old->as_string.data) |
| 3665 | str--; /* skip whitespace after keyword */ |
| 3666 | while (str > old->as_string.data && isalpha(str[-1])) |
| 3667 | str--; |
| 3668 | /* Ugh, we're done with this horrid hack */ |
| 3669 | old->command->group_as_string = xstrdup(str); |
| 3670 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3671 | old->command->group_as_string); |
| 3672 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3673 | # endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3674 | *ctx = *old; /* physical copy */ |
| 3675 | free(old); |
| 3676 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3677 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3678 | } |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 3679 | #endif /* HAS_KEYWORDS */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3680 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3681 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3682 | * Normal return is 0. Syntax errors return 1. |
| 3683 | * Note: on return, word is reset, but not o_free'd! |
| 3684 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3685 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3686 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3687 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3688 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3689 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3690 | if (word->length == 0 && !word->has_quoted_part) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3691 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3692 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3693 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3694 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3695 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3696 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3697 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3698 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 3699 | * "2.7 Redirection |
| 3700 | * ...the word that follows the redirection operator |
| 3701 | * shall be subjected to tilde expansion, parameter expansion, |
| 3702 | * command substitution, arithmetic expansion, and quote |
| 3703 | * removal. Pathname expansion shall not be performed |
| 3704 | * on the word by a non-interactive shell; an interactive |
| 3705 | * shell may perform it, but shall do so only when |
| 3706 | * the expansion would result in one word." |
| 3707 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3708 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3709 | /* Cater for >\file case: |
| 3710 | * >\a creates file a; >\\a, >"\a", >"\\a" create file \a |
| 3711 | * Same with heredocs: |
| 3712 | * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H |
| 3713 | */ |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3714 | if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) { |
| 3715 | unbackslash(ctx->pending_redirect->rd_filename); |
| 3716 | /* Is it <<"HEREDOC"? */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3717 | if (word->has_quoted_part) { |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 3718 | ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED; |
| 3719 | } |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3720 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3721 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3722 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3723 | } else { |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3724 | #if HAS_KEYWORDS |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3725 | # if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3726 | if (ctx->ctx_dsemicolon |
| 3727 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3728 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3729 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3730 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3731 | ctx->ctx_dsemicolon = 0; |
| 3732 | } else |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3733 | # endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3734 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3735 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3736 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3737 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3738 | # endif |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 3739 | # if ENABLE_HUSH_CASE |
| 3740 | && ctx->ctx_res_w != RES_CASE |
| 3741 | # endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3742 | ) { |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3743 | int reserved = reserved_word(word, ctx); |
| 3744 | debug_printf_parse("checking for reserved-ness: %d\n", reserved); |
| 3745 | if (reserved) { |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 3746 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3747 | debug_printf_parse("done_word return %d\n", |
| 3748 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3749 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3750 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 3751 | # if BASH_TEST2 |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 3752 | if (strcmp(word->data, "[[") == 0) { |
| 3753 | command->cmd_type = CMD_SINGLEWORD_NOGLOB; |
| 3754 | } |
| 3755 | /* fall through */ |
Denys Vlasenko | 9ca656b | 2009-06-10 13:39:35 +0200 | [diff] [blame] | 3756 | # endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3757 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3758 | #endif |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 3759 | if (command->group) { |
| 3760 | /* "{ echo foo; } echo bar" - bad */ |
| 3761 | syntax_error_at(word->data); |
| 3762 | debug_printf_parse("done_word return 1: syntax error, " |
| 3763 | "groups and arglists don't mix\n"); |
| 3764 | return 1; |
| 3765 | } |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 3766 | |
| 3767 | /* If this word wasn't an assignment, next ones definitely |
| 3768 | * can't be assignments. Even if they look like ones. */ |
| 3769 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3770 | && word->o_assignment != WORD_IS_KEYWORD |
| 3771 | ) { |
| 3772 | word->o_assignment = NOT_ASSIGNMENT; |
| 3773 | } else { |
| 3774 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) { |
| 3775 | command->assignment_cnt++; |
| 3776 | debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt); |
| 3777 | } |
| 3778 | debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]); |
| 3779 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3780 | } |
| 3781 | debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]); |
| 3782 | |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3783 | if (word->has_quoted_part |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3784 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3785 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3786 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3787 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3788 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3789 | char *p = word->data; |
| 3790 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3791 | && (p[1] & 0x7f) == '@' |
| 3792 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3793 | ) { |
| 3794 | p += 3; |
| 3795 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3796 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3797 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3798 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3799 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3800 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3801 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3802 | if (ctx->ctx_res_w == RES_FOR) { |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3803 | if (word->has_quoted_part |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3804 | || !is_well_formed_var_name(command->argv[0], '\0') |
| 3805 | ) { |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 3806 | /* bash says just "not a valid identifier" */ |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3807 | syntax_error("not a valid identifier in for"); |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 3808 | return 1; |
| 3809 | } |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3810 | /* Force FOR to have just one word (variable name) */ |
| 3811 | /* NB: basically, this makes hush see "for v in ..." |
| 3812 | * syntax as if it is "for v; in ...". FOR and IN become |
| 3813 | * two pipe structs in parse tree. */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3814 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3815 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3816 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3817 | #if ENABLE_HUSH_CASE |
| 3818 | /* Force CASE to have just one word */ |
| 3819 | if (ctx->ctx_res_w == RES_CASE) { |
| 3820 | done_pipe(ctx, PIPE_SEQ); |
| 3821 | } |
| 3822 | #endif |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3823 | |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 3824 | o_reset_to_empty_unquoted(word); |
Denis Vlasenko | 1fd1ea4 | 2009-04-10 12:03:20 +0000 | [diff] [blame] | 3825 | |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3826 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3827 | return 0; |
| 3828 | } |
| 3829 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3830 | |
| 3831 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 3832 | * as in "2>&1", that represents duplicating a file descriptor. |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3833 | * Return: |
| 3834 | * REDIRFD_CLOSE if >&- "close fd" construct is seen, |
| 3835 | * REDIRFD_SYNTAX_ERR if syntax error, |
| 3836 | * REDIRFD_TO_FILE if no & was seen, |
| 3837 | * or the number found. |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3838 | */ |
| 3839 | #if BB_MMU |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3840 | #define parse_redir_right_fd(as_string, input) \ |
| 3841 | parse_redir_right_fd(input) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3842 | #endif |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3843 | 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] | 3844 | { |
| 3845 | int ch, d, ok; |
| 3846 | |
| 3847 | ch = i_peek(input); |
| 3848 | if (ch != '&') |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3849 | return REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3850 | |
| 3851 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3852 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3853 | ch = i_peek(input); |
| 3854 | if (ch == '-') { |
| 3855 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3856 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3857 | return REDIRFD_CLOSE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3858 | } |
| 3859 | d = 0; |
| 3860 | ok = 0; |
| 3861 | while (ch != EOF && isdigit(ch)) { |
| 3862 | d = d*10 + (ch-'0'); |
| 3863 | ok = 1; |
| 3864 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3865 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3866 | ch = i_peek(input); |
| 3867 | } |
| 3868 | if (ok) return d; |
| 3869 | |
| 3870 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 3871 | |
| 3872 | bb_error_msg("ambiguous redirect"); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3873 | return REDIRFD_SYNTAX_ERR; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3874 | } |
| 3875 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3876 | /* Return code is 0 normal, 1 if a syntax error is detected |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3877 | */ |
| 3878 | static int parse_redirect(struct parse_context *ctx, |
| 3879 | int fd, |
| 3880 | redir_type style, |
| 3881 | struct in_str *input) |
| 3882 | { |
| 3883 | struct command *command = ctx->command; |
| 3884 | struct redir_struct *redir; |
| 3885 | struct redir_struct **redirp; |
| 3886 | int dup_num; |
| 3887 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3888 | dup_num = REDIRFD_TO_FILE; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3889 | if (style != REDIRECT_HEREDOC) { |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3890 | /* Check for a '>&1' type redirect */ |
| 3891 | dup_num = parse_redir_right_fd(&ctx->as_string, input); |
| 3892 | if (dup_num == REDIRFD_SYNTAX_ERR) |
| 3893 | return 1; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3894 | } else { |
| 3895 | int ch = i_peek(input); |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3896 | dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3897 | if (dup_num) { /* <<-... */ |
| 3898 | ch = i_getch(input); |
| 3899 | nommu_addchr(&ctx->as_string, ch); |
| 3900 | ch = i_peek(input); |
| 3901 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3902 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3903 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3904 | if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3905 | int ch = i_peek(input); |
| 3906 | if (ch == '|') { |
| 3907 | /* >|FILE redirect ("clobbering" >). |
| 3908 | * Since we do not support "set -o noclobber" yet, |
| 3909 | * >| and > are the same for now. Just eat |. |
| 3910 | */ |
| 3911 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3912 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3913 | } |
| 3914 | } |
| 3915 | |
| 3916 | /* Create a new redir_struct and append it to the linked list */ |
| 3917 | redirp = &command->redirects; |
| 3918 | while ((redir = *redirp) != NULL) { |
| 3919 | redirp = &(redir->next); |
| 3920 | } |
| 3921 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 3922 | /* redir->next = NULL; */ |
| 3923 | /* redir->rd_filename = NULL; */ |
| 3924 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3925 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3926 | |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3927 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, |
| 3928 | redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3929 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3930 | redir->rd_dup = dup_num; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 3931 | if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3932 | /* Erik had a check here that the file descriptor in question |
| 3933 | * is legit; I postpone that to "run time" |
| 3934 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | 02d6f1a | 2009-04-07 19:56:55 +0000 | [diff] [blame] | 3935 | debug_printf_parse("duplicating redirect '%d>&%d'\n", |
| 3936 | redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3937 | } else { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 3938 | #if 0 /* Instead we emit error message at run time */ |
| 3939 | if (ctx->pending_redirect) { |
| 3940 | /* For example, "cmd > <file" */ |
| 3941 | die_if_script("syntax error: %s", "invalid redirect"); |
| 3942 | } |
| 3943 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3944 | /* Set ctx->pending_redirect, so we know what to do at the |
| 3945 | * end of the next parsed word. */ |
| 3946 | ctx->pending_redirect = redir; |
| 3947 | } |
| 3948 | return 0; |
| 3949 | } |
| 3950 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3951 | /* If a redirect is immediately preceded by a number, that number is |
| 3952 | * supposed to tell which file descriptor to redirect. This routine |
| 3953 | * looks for such preceding numbers. In an ideal world this routine |
| 3954 | * needs to handle all the following classes of redirects... |
| 3955 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 3956 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 3957 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 3958 | * 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] | 3959 | * |
| 3960 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 3961 | * "2.7 Redirection |
| 3962 | * ... If n is quoted, the number shall not be recognized as part of |
| 3963 | * the redirection expression. For example: |
| 3964 | * echo \2>a |
| 3965 | * writes the character 2 into file a" |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 3966 | * 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] | 3967 | * |
| 3968 | * A -1 return means no valid number was found, |
| 3969 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3970 | */ |
| 3971 | static int redirect_opt_num(o_string *o) |
| 3972 | { |
| 3973 | int num; |
| 3974 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3975 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3976 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3977 | num = bb_strtou(o->data, NULL, 10); |
| 3978 | if (errno || num < 0) |
| 3979 | return -1; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 3980 | o_reset_to_empty_unquoted(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3981 | return num; |
| 3982 | } |
| 3983 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3984 | #if BB_MMU |
| 3985 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 3986 | fetch_till_str(input, word, skip_tabs) |
| 3987 | #endif |
| 3988 | static char *fetch_till_str(o_string *as_string, |
| 3989 | struct in_str *input, |
| 3990 | const char *word, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 3991 | int heredoc_flags) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3992 | { |
| 3993 | o_string heredoc = NULL_O_STRING; |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 3994 | unsigned past_EOL; |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 3995 | int prev = 0; /* not \ */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3996 | int ch; |
| 3997 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3998 | goto jump_in; |
Denys Vlasenko | b870903 | 2011-05-08 21:20:01 +0200 | [diff] [blame] | 3999 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4000 | while (1) { |
| 4001 | ch = i_getch(input); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4002 | if (ch != EOF) |
| 4003 | nommu_addchr(as_string, ch); |
| 4004 | if ((ch == '\n' || ch == EOF) |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4005 | && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\') |
| 4006 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4007 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4008 | heredoc.data[past_EOL] = '\0'; |
| 4009 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4010 | return heredoc.data; |
| 4011 | } |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4012 | while (ch == '\n') { |
| 4013 | o_addchr(&heredoc, ch); |
| 4014 | prev = ch; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4015 | jump_in: |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4016 | past_EOL = heredoc.length; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4017 | do { |
| 4018 | ch = i_getch(input); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4019 | if (ch != EOF) |
| 4020 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4021 | } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t'); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4022 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4023 | } |
| 4024 | if (ch == EOF) { |
| 4025 | o_free_unsafe(&heredoc); |
| 4026 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4027 | } |
| 4028 | o_addchr(&heredoc, ch); |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 4029 | nommu_addchr(as_string, ch); |
Denys Vlasenko | c3adfac | 2010-09-06 11:46:03 +0200 | [diff] [blame] | 4030 | if (prev == '\\' && ch == '\\') |
| 4031 | /* Correctly handle foo\\<eol> (not a line cont.) */ |
| 4032 | prev = 0; /* not \ */ |
| 4033 | else |
| 4034 | prev = ch; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4035 | } |
| 4036 | } |
| 4037 | |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4038 | /* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs |
| 4039 | * and load them all. There should be exactly heredoc_cnt of them. |
| 4040 | */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4041 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4042 | { |
| 4043 | struct pipe *pi = ctx->list_head; |
| 4044 | |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4045 | while (pi && heredoc_cnt) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4046 | int i; |
| 4047 | struct command *cmd = pi->cmds; |
| 4048 | |
| 4049 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4050 | pi->num_cmds, |
| 4051 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4052 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4053 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4054 | |
| 4055 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4056 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4057 | while (redir) { |
| 4058 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4059 | char *p; |
| 4060 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4061 | redir->rd_type = REDIRECT_HEREDOC2; |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 4062 | /* redir->rd_dup is (ab)used to indicate <<- */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4063 | p = fetch_till_str(&ctx->as_string, input, |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 4064 | redir->rd_filename, redir->rd_dup); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4065 | if (!p) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4066 | syntax_error("unexpected EOF in here document"); |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4067 | return 1; |
| 4068 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4069 | free(redir->rd_filename); |
| 4070 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4071 | heredoc_cnt--; |
| 4072 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4073 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4074 | } |
| 4075 | cmd++; |
| 4076 | } |
| 4077 | pi = pi->next; |
| 4078 | } |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4079 | #if 0 |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4080 | /* Should be 0. If it isn't, it's a parse error */ |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4081 | if (heredoc_cnt) |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4082 | bb_error_msg_and_die("heredoc BUG 2"); |
| 4083 | #endif |
| 4084 | return 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4085 | } |
| 4086 | |
| 4087 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 4088 | static int run_list(struct pipe *pi); |
| 4089 | #if BB_MMU |
| 4090 | #define parse_stream(pstring, input, end_trigger) \ |
| 4091 | parse_stream(input, end_trigger) |
| 4092 | #endif |
| 4093 | static struct pipe *parse_stream(char **pstring, |
| 4094 | struct in_str *input, |
| 4095 | int end_trigger); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4096 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4097 | |
Denys Vlasenko | c270454 | 2009-11-20 19:14:19 +0100 | [diff] [blame] | 4098 | #if !ENABLE_HUSH_FUNCTIONS |
| 4099 | #define parse_group(dest, ctx, input, ch) \ |
| 4100 | parse_group(ctx, input, ch) |
| 4101 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4102 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4103 | struct in_str *input, int ch) |
| 4104 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4105 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4106 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4107 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4108 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4109 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4110 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4111 | |
| 4112 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4113 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4114 | if (ch == '(' && !dest->has_quoted_part) { |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4115 | if (dest->length) |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4116 | if (done_word(dest, ctx)) |
| 4117 | return 1; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4118 | if (!command->argv) |
| 4119 | goto skip; /* (... */ |
| 4120 | if (command->argv[1]) { /* word word ... (... */ |
| 4121 | syntax_error_unexpected_ch('('); |
| 4122 | return 1; |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4123 | } |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4124 | /* it is "word(..." or "word (..." */ |
| 4125 | do |
| 4126 | ch = i_getch(input); |
| 4127 | while (ch == ' ' || ch == '\t'); |
| 4128 | if (ch != ')') { |
| 4129 | syntax_error_unexpected_ch(ch); |
| 4130 | return 1; |
| 4131 | } |
| 4132 | nommu_addchr(&ctx->as_string, ch); |
| 4133 | do |
| 4134 | ch = i_getch(input); |
| 4135 | while (ch == ' ' || ch == '\t' || ch == '\n'); |
| 4136 | if (ch != '{') { |
| 4137 | syntax_error_unexpected_ch(ch); |
| 4138 | return 1; |
| 4139 | } |
| 4140 | nommu_addchr(&ctx->as_string, ch); |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 4141 | command->cmd_type = CMD_FUNCDEF; |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 4142 | goto skip; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4143 | } |
| 4144 | #endif |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4145 | |
| 4146 | #if 0 /* Prevented by caller */ |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4147 | if (command->argv /* word [word]{... */ |
| 4148 | || dest->length /* word{... */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4149 | || dest->has_quoted_part /* ""{... */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4150 | ) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4151 | syntax_error(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4152 | debug_printf_parse("parse_group return 1: " |
| 4153 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4154 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4155 | } |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4156 | #endif |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4157 | |
| 4158 | #if ENABLE_HUSH_FUNCTIONS |
| 4159 | skip: |
| 4160 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4161 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4162 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4163 | endch = ')'; |
Denys Vlasenko | 9d617c4 | 2009-06-09 18:40:52 +0200 | [diff] [blame] | 4164 | command->cmd_type = CMD_SUBSHELL; |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4165 | } else { |
| 4166 | /* bash does not allow "{echo...", requires whitespace */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4167 | ch = i_peek(input); |
| 4168 | if (ch != ' ' && ch != '\t' && ch != '\n' |
| 4169 | && ch != '(' /* but "{(..." is allowed (without whitespace) */ |
| 4170 | ) { |
Denis Vlasenko | f8c1f02 | 2009-04-17 11:55:42 +0000 | [diff] [blame] | 4171 | syntax_error_unexpected_ch(ch); |
| 4172 | return 1; |
| 4173 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4174 | if (ch != '(') { |
| 4175 | ch = i_getch(input); |
| 4176 | nommu_addchr(&ctx->as_string, ch); |
| 4177 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4178 | } |
Denis Vlasenko | b7d8c0d | 2009-04-10 19:05:43 +0000 | [diff] [blame] | 4179 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4180 | { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4181 | #if BB_MMU |
| 4182 | # define as_string NULL |
| 4183 | #else |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4184 | char *as_string = NULL; |
| 4185 | #endif |
| 4186 | pipe_list = parse_stream(&as_string, input, endch); |
| 4187 | #if !BB_MMU |
| 4188 | if (as_string) |
| 4189 | o_addstr(&ctx->as_string, as_string); |
| 4190 | #endif |
| 4191 | /* empty ()/{} or parse error? */ |
| 4192 | if (!pipe_list || pipe_list == ERR_PTR) { |
Denis Vlasenko | bb92951 | 2009-04-16 10:59:40 +0000 | [diff] [blame] | 4193 | /* parse_stream already emitted error msg */ |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4194 | if (!BB_MMU) |
| 4195 | free(as_string); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4196 | debug_printf_parse("parse_group return 1: " |
| 4197 | "parse_stream returned %p\n", pipe_list); |
| 4198 | return 1; |
| 4199 | } |
| 4200 | command->group = pipe_list; |
| 4201 | #if !BB_MMU |
| 4202 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4203 | command->group_as_string = as_string; |
| 4204 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4205 | command->group_as_string); |
| 4206 | #endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4207 | #undef as_string |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4208 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4209 | debug_printf_parse("parse_group return 0\n"); |
| 4210 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4211 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4212 | } |
| 4213 | |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 4214 | static int i_getch_and_eat_bkslash_nl(struct in_str *input) |
| 4215 | { |
| 4216 | for (;;) { |
| 4217 | int ch, ch2; |
| 4218 | |
| 4219 | ch = i_getch(input); |
| 4220 | if (ch != '\\') |
| 4221 | return ch; |
| 4222 | ch2 = i_peek(input); |
| 4223 | if (ch2 != '\n') |
| 4224 | return ch; |
| 4225 | /* backslash+newline, skip it */ |
| 4226 | i_getch(input); |
| 4227 | } |
| 4228 | } |
| 4229 | |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4230 | static int i_peek_and_eat_bkslash_nl(struct in_str *input) |
| 4231 | { |
| 4232 | for (;;) { |
| 4233 | int ch, ch2; |
| 4234 | |
| 4235 | ch = i_peek(input); |
| 4236 | if (ch != '\\') |
| 4237 | return ch; |
| 4238 | ch2 = i_peek2(input); |
| 4239 | if (ch2 != '\n') |
| 4240 | return ch; |
| 4241 | /* backslash+newline, skip it */ |
| 4242 | i_getch(input); |
| 4243 | i_getch(input); |
| 4244 | } |
| 4245 | } |
| 4246 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4247 | #if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4248 | /* Subroutines for copying $(...) and `...` things */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4249 | 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] | 4250 | /* '...' */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4251 | 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] | 4252 | { |
| 4253 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4254 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4255 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4256 | syntax_error_unterm_ch('\''); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4257 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4258 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4259 | if (ch == '\'') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4260 | return 1; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4261 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4262 | } |
| 4263 | } |
| 4264 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4265 | 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] | 4266 | { |
| 4267 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4268 | int ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4269 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4270 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4271 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4272 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4273 | if (ch == '"') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4274 | return 1; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4275 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4276 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4277 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4278 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4279 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4280 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4281 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 1)) |
| 4282 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4283 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4284 | continue; |
| 4285 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4286 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4287 | } |
| 4288 | } |
| 4289 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4290 | * \` quoting. |
| 4291 | * "Within the backquoted style of command substitution, backslash |
| 4292 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4293 | * The search for the matching backquote shall be satisfied by the first |
| 4294 | * backquote found without a preceding backslash; during this search, |
| 4295 | * if a non-escaped backquote is encountered within a shell comment, |
| 4296 | * a here-document, an embedded command substitution of the $(command) |
| 4297 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4298 | * or double-quoted string that begins, but does not end, within the |
| 4299 | * "`...`" sequence produces undefined results." |
| 4300 | * Example Output |
| 4301 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4302 | */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4303 | 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] | 4304 | { |
| 4305 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4306 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4307 | if (ch == '`') |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4308 | return 1; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4309 | if (ch == '\\') { |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4310 | /* \x. Copy both unless it is \`, \$, \\ and maybe \" */ |
| 4311 | ch = i_getch(input); |
| 4312 | if (ch != '`' |
| 4313 | && ch != '$' |
| 4314 | && ch != '\\' |
| 4315 | && (!in_dquote || ch != '"') |
| 4316 | ) { |
| 4317 | o_addchr(dest, '\\'); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4318 | } |
Denys Vlasenko | acd5bc8 | 2010-09-12 15:05:39 +0200 | [diff] [blame] | 4319 | } |
| 4320 | if (ch == EOF) { |
| 4321 | syntax_error_unterm_ch('`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4322 | return 0; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4323 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4324 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4325 | } |
| 4326 | } |
| 4327 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4328 | * quoting and nested ()s. |
| 4329 | * "With the $(command) style of command substitution, all characters |
| 4330 | * following the open parenthesis to the matching closing parenthesis |
| 4331 | * constitute the command. Any valid shell script can be used for command, |
| 4332 | * except a script consisting solely of redirections which produces |
| 4333 | * unspecified results." |
| 4334 | * Example Output |
| 4335 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4336 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4337 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4338 | * |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4339 | * Also adapted to eat ${var%...} and $((...)) constructs, since ... part |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4340 | * can contain arbitrary constructs, just like $(cmd). |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4341 | * In bash compat mode, it needs to also be able to stop on ':' or '/' |
| 4342 | * for ${var:N[:M]} and ${var/P[/R]} parsing. |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4343 | */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4344 | #define DOUBLE_CLOSE_CHAR_FLAG 0x80 |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4345 | 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] | 4346 | { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4347 | int ch; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4348 | char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4349 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4350 | char end_char2 = end_ch >> 8; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4351 | # endif |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4352 | end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1); |
| 4353 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4354 | while (1) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4355 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4356 | if (ch == EOF) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4357 | syntax_error_unterm_ch(end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4358 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4359 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4360 | if (ch == end_ch |
| 4361 | # if BASH_SUBSTR || BASH_PATTERN_SUBST |
| 4362 | || ch == end_char2 |
| 4363 | # endif |
| 4364 | ) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4365 | if (!dbl) |
| 4366 | break; |
| 4367 | /* we look for closing )) of $((EXPR)) */ |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4368 | if (i_peek_and_eat_bkslash_nl(input) == end_ch) { |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4369 | i_getch(input); /* eat second ')' */ |
| 4370 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4371 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4372 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4373 | o_addchr(dest, ch); |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4374 | if (ch == '(' || ch == '{') { |
| 4375 | ch = (ch == '(' ? ')' : '}'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4376 | if (!add_till_closing_bracket(dest, input, ch)) |
| 4377 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4378 | o_addchr(dest, ch); |
| 4379 | continue; |
| 4380 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4381 | if (ch == '\'') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4382 | if (!add_till_single_quote(dest, input)) |
| 4383 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4384 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4385 | continue; |
| 4386 | } |
| 4387 | if (ch == '"') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4388 | if (!add_till_double_quote(dest, input)) |
| 4389 | return 0; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4390 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4391 | continue; |
| 4392 | } |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4393 | if (ch == '`') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4394 | if (!add_till_backquote(dest, input, /*in_dquote:*/ 0)) |
| 4395 | return 0; |
Denys Vlasenko | a6ad397 | 2010-05-22 00:26:06 +0200 | [diff] [blame] | 4396 | o_addchr(dest, ch); |
| 4397 | continue; |
| 4398 | } |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4399 | if (ch == '\\') { |
| 4400 | /* \x. Copy verbatim. Important for \(, \) */ |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4401 | ch = i_getch(input); |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4402 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4403 | syntax_error_unterm_ch(')'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4404 | return 0; |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 4405 | } |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4406 | #if 0 |
| 4407 | if (ch == '\n') { |
| 4408 | /* "backslash+newline", ignore both */ |
| 4409 | o_delchr(dest); /* undo insertion of '\' */ |
| 4410 | continue; |
| 4411 | } |
| 4412 | #endif |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4413 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4414 | continue; |
| 4415 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4416 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4417 | return ch; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4418 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4419 | #endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4420 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4421 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4422 | #if BB_MMU |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4423 | #define parse_dollar(as_string, dest, input, quote_mask) \ |
| 4424 | parse_dollar(dest, input, quote_mask) |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4425 | #define as_string NULL |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4426 | #endif |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4427 | static int parse_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4428 | o_string *dest, |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4429 | struct in_str *input, unsigned char quote_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4430 | { |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4431 | 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] | 4432 | |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 4433 | debug_printf_parse("parse_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4434 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4435 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4436 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4437 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4438 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4439 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4440 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4441 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4442 | quote_mask = 0; |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4443 | ch = i_peek_and_eat_bkslash_nl(input); |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4444 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4445 | /* End of variable name reached */ |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4446 | break; |
Denys Vlasenko | d17a91d | 2016-09-29 18:02:37 +0200 | [diff] [blame] | 4447 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4448 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4449 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4450 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4451 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4452 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4453 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4454 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4455 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4456 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4457 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4458 | o_addchr(dest, ch | quote_mask); |
| 4459 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4460 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4461 | case '$': /* pid */ |
| 4462 | case '!': /* last bg pid */ |
| 4463 | case '?': /* last exit code */ |
| 4464 | case '#': /* number of args */ |
| 4465 | case '*': /* args */ |
| 4466 | case '@': /* args */ |
| 4467 | goto make_one_char_var; |
| 4468 | case '{': { |
Mike Frysinger | ef3e7fd | 2009-06-01 14:13:39 -0400 | [diff] [blame] | 4469 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4470 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4471 | ch = i_getch(input); /* eat '{' */ |
| 4472 | nommu_addchr(as_string, ch); |
| 4473 | |
Denys Vlasenko | 46e6498 | 2016-09-29 19:50:55 +0200 | [diff] [blame] | 4474 | ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4475 | /* It should be ${?}, or ${#var}, |
| 4476 | * or even ${?+subst} - operator acting on a special variable, |
| 4477 | * or the beginning of variable name. |
| 4478 | */ |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4479 | if (ch == EOF |
| 4480 | || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */ |
| 4481 | ) { |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4482 | bad_dollar_syntax: |
| 4483 | syntax_error_unterm_str("${name}"); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4484 | debug_printf_parse("parse_dollar return 0: unterminated ${name}\n"); |
| 4485 | return 0; |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4486 | } |
Denys Vlasenko | 101a4e3 | 2010-09-09 14:04:57 +0200 | [diff] [blame] | 4487 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4488 | ch |= quote_mask; |
| 4489 | |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4490 | /* 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] | 4491 | * However, this regresses some of our testsuite cases |
| 4492 | * which check invalid constructs like ${%}. |
| 4493 | * Oh well... let's check that the var name part is fine... */ |
| 4494 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4495 | while (1) { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4496 | unsigned pos; |
| 4497 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4498 | o_addchr(dest, ch); |
| 4499 | debug_printf_parse(": '%c'\n", ch); |
| 4500 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4501 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4502 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4503 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4504 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4505 | |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4506 | if (!isalnum(ch) && ch != '_') { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4507 | unsigned end_ch; |
| 4508 | unsigned char last_ch; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4509 | /* handle parameter expansions |
| 4510 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4511 | */ |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4512 | if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */ |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4513 | goto bad_dollar_syntax; |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4514 | |
| 4515 | /* Eat everything until closing '}' (or ':') */ |
| 4516 | end_ch = '}'; |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4517 | if (BASH_SUBSTR |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4518 | && ch == ':' |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4519 | && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input)) |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4520 | ) { |
| 4521 | /* It's ${var:N[:M]} thing */ |
| 4522 | end_ch = '}' * 0x100 + ':'; |
| 4523 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4524 | if (BASH_PATTERN_SUBST |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4525 | && ch == '/' |
| 4526 | ) { |
| 4527 | /* It's ${var/[/]pattern[/repl]} thing */ |
| 4528 | if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */ |
| 4529 | i_getch(input); |
| 4530 | nommu_addchr(as_string, '/'); |
| 4531 | ch = '\\'; |
| 4532 | } |
| 4533 | end_ch = '}' * 0x100 + '/'; |
| 4534 | } |
| 4535 | o_addchr(dest, ch); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4536 | again: |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4537 | if (!BB_MMU) |
| 4538 | pos = dest->length; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4539 | #if ENABLE_HUSH_DOLLAR_OPS |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4540 | last_ch = add_till_closing_bracket(dest, input, end_ch); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4541 | if (last_ch == 0) /* error? */ |
| 4542 | return 0; |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 4543 | #else |
| 4544 | #error Simple code to only allow ${var} is not implemented |
| 4545 | #endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4546 | if (as_string) { |
| 4547 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4548 | o_addchr(as_string, last_ch); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4549 | } |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4550 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4551 | if ((BASH_SUBSTR || BASH_PATTERN_SUBST) |
| 4552 | && (end_ch & 0xff00) |
| 4553 | ) { |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4554 | /* close the first block: */ |
| 4555 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4556 | /* while parsing N from ${var:N[:M]} |
| 4557 | * or pattern from ${var/[/]pattern[/repl]} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4558 | if ((end_ch & 0xff) == last_ch) { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4559 | /* got ':' or '/'- parse the rest */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4560 | end_ch = '}'; |
| 4561 | goto again; |
| 4562 | } |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4563 | /* got '}' */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4564 | if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') { |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 4565 | /* it's ${var:N} - emulate :999999999 */ |
| 4566 | o_addstr(dest, "999999999"); |
| 4567 | } /* else: it's ${var/[/]pattern} */ |
Denys Vlasenko | 1e811b1 | 2010-05-22 03:12:29 +0200 | [diff] [blame] | 4568 | } |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4569 | break; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4570 | } |
Denys Vlasenko | 7436950 | 2010-05-21 19:52:01 +0200 | [diff] [blame] | 4571 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4572 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4573 | break; |
| 4574 | } |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4575 | #if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4576 | case '(': { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4577 | unsigned pos; |
| 4578 | |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4579 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4580 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 4581 | # if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4582 | if (i_peek_and_eat_bkslash_nl(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4583 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4584 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4585 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4586 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4587 | if (!BB_MMU) |
| 4588 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4589 | if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG)) |
| 4590 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4591 | if (as_string) { |
| 4592 | o_addstr(as_string, dest->data + pos); |
| 4593 | o_addchr(as_string, ')'); |
| 4594 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4595 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4596 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4597 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4598 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4599 | # endif |
| 4600 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4601 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4602 | o_addchr(dest, quote_mask | '`'); |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4603 | if (!BB_MMU) |
| 4604 | pos = dest->length; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4605 | if (!add_till_closing_bracket(dest, input, ')')) |
| 4606 | return 0; /* error */ |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4607 | if (as_string) { |
| 4608 | o_addstr(as_string, dest->data + pos); |
Denys Vlasenko | b70cef7 | 2010-01-12 13:45:45 +0100 | [diff] [blame] | 4609 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4610 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4611 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4612 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4613 | break; |
| 4614 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4615 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4616 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4617 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4618 | nommu_addchr(as_string, ch); |
Denys Vlasenko | 657086a | 2016-09-29 18:07:42 +0200 | [diff] [blame] | 4619 | ch = i_peek_and_eat_bkslash_nl(input); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4620 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4621 | ch = '_'; |
| 4622 | goto make_var; |
| 4623 | } |
| 4624 | /* else: it's $_ */ |
Denys Vlasenko | 69b1cef | 2009-09-21 10:21:44 +0200 | [diff] [blame] | 4625 | /* TODO: $_ and $-: */ |
| 4626 | /* $_ Shell or shell script name; or last argument of last command |
| 4627 | * (if last command wasn't a pipe; if it was, bash sets $_ to ""); |
| 4628 | * 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] | 4629 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 4630 | default: |
| 4631 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4632 | } |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4633 | debug_printf_parse("parse_dollar return 1 (ok)\n"); |
| 4634 | return 1; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4635 | #undef as_string |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4636 | } |
| 4637 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4638 | #if BB_MMU |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4639 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4640 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4641 | encode_string(dest, input, dquote_end, process_bkslash) |
| 4642 | # else |
| 4643 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 4644 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4645 | encode_string(dest, input, dquote_end) |
| 4646 | # endif |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4647 | #define as_string NULL |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4648 | |
| 4649 | #else /* !MMU */ |
| 4650 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4651 | # if BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4652 | /* all parameters are needed, no macro tricks */ |
| 4653 | # else |
| 4654 | #define encode_string(as_string, dest, input, dquote_end, process_bkslash) \ |
| 4655 | encode_string(as_string, dest, input, dquote_end) |
| 4656 | # endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4657 | #endif |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4658 | static int encode_string(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4659 | o_string *dest, |
| 4660 | struct in_str *input, |
Denys Vlasenko | 14e289b | 2010-09-10 10:15:18 +0200 | [diff] [blame] | 4661 | int dquote_end, |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4662 | int process_bkslash) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4663 | { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 4664 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4665 | const int process_bkslash = 1; |
| 4666 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4667 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4668 | int next; |
| 4669 | |
| 4670 | again: |
| 4671 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4672 | if (ch != EOF) |
| 4673 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4674 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4675 | debug_printf_parse("encode_string return 1 (ok)\n"); |
| 4676 | return 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4677 | } |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4678 | /* note: can't move it above ch == dquote_end check! */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4679 | if (ch == EOF) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4680 | syntax_error_unterm_ch('"'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4681 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4682 | } |
| 4683 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4684 | if (ch != '\n') { |
| 4685 | next = i_peek(input); |
| 4686 | } |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 4687 | debug_printf_parse("\" ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4688 | ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4689 | if (process_bkslash && ch == '\\') { |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4690 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4691 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4692 | xfunc_die(); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4693 | } |
| 4694 | /* bash: |
| 4695 | * "The backslash retains its special meaning [in "..."] |
| 4696 | * only when followed by one of the following characters: |
| 4697 | * $, `, ", \, or <newline>. A double quote may be quoted |
Denys Vlasenko | e640cb4 | 2009-05-28 16:49:11 +0200 | [diff] [blame] | 4698 | * within double quotes by preceding it with a backslash." |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4699 | * NB: in (unquoted) heredoc, above does not apply to ", |
| 4700 | * therefore we check for it by "next == dquote_end" cond. |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4701 | */ |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 4702 | if (next == dquote_end || strchr("$`\\\n", next)) { |
Denys Vlasenko | 850b15b | 2010-09-09 12:58:19 +0200 | [diff] [blame] | 4703 | ch = i_getch(input); /* eat next */ |
| 4704 | if (ch == '\n') |
| 4705 | goto again; /* skip \<newline> */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 4706 | } /* else: ch remains == '\\', and we double it below: */ |
| 4707 | 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] | 4708 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4709 | goto again; |
| 4710 | } |
| 4711 | if (ch == '$') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4712 | if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) { |
| 4713 | debug_printf_parse("encode_string return 0: " |
| 4714 | "parse_dollar returned 0 (error)\n"); |
| 4715 | return 0; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4716 | } |
| 4717 | goto again; |
| 4718 | } |
| 4719 | #if ENABLE_HUSH_TICK |
| 4720 | if (ch == '`') { |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4721 | //unsigned pos = dest->length; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4722 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4723 | o_addchr(dest, 0x80 | '`'); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4724 | if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"')) |
| 4725 | return 0; /* error */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4726 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4727 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4728 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4729 | } |
| 4730 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4731 | o_addQchr(dest, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4732 | goto again; |
Denys Vlasenko | ddc62f6 | 2010-05-22 00:53:32 +0200 | [diff] [blame] | 4733 | #undef as_string |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4734 | } |
| 4735 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4736 | /* |
| 4737 | * Scan input until EOF or end_trigger char. |
| 4738 | * Return a list of pipes to execute, or NULL on EOF |
| 4739 | * or if end_trigger character is met. |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 4740 | * On syntax error, exit if shell is not interactive, |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4741 | * reset parsing machinery and start parsing anew, |
| 4742 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4743 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4744 | static struct pipe *parse_stream(char **pstring, |
| 4745 | struct in_str *input, |
| 4746 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4747 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4748 | struct parse_context ctx; |
| 4749 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4750 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4751 | |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4752 | /* Single-quote triggers a bypass of the main loop until its mate is |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4753 | * found. When recursing, quote state is passed in via dest->o_expflags. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4754 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4755 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 4756 | end_trigger ? end_trigger : 'X'); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4757 | debug_enter(); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4758 | |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 4759 | /* If very first arg is "" or '', dest.data may end up NULL. |
| 4760 | * Preventing this: */ |
| 4761 | o_addchr(&dest, '\0'); |
| 4762 | dest.length = 0; |
| 4763 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4764 | /* We used to separate words on $IFS here. This was wrong. |
| 4765 | * $IFS is used only for word splitting when $var is expanded, |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4766 | * here we should use blank chars as separators, not $IFS |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4767 | */ |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4768 | |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 4769 | if (MAYBE_ASSIGNMENT != 0) |
| 4770 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4771 | initialize_context(&ctx); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4772 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4773 | while (1) { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4774 | const char *is_blank; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4775 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4776 | int ch; |
| 4777 | int next; |
| 4778 | int redir_fd; |
| 4779 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4780 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4781 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4782 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 4783 | ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4784 | if (ch == EOF) { |
| 4785 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4786 | |
| 4787 | if (heredoc_cnt) { |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4788 | syntax_error_unterm_str("here document"); |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4789 | goto parse_error; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4790 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4791 | if (end_trigger == ')') { |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 4792 | syntax_error_unterm_ch('('); |
| 4793 | goto parse_error; |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4794 | } |
Denys Vlasenko | 4224647 | 2016-11-07 16:22:35 +0100 | [diff] [blame] | 4795 | if (end_trigger == '}') { |
| 4796 | syntax_error_unterm_ch('{'); |
| 4797 | goto parse_error; |
| 4798 | } |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4799 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4800 | if (done_word(&dest, &ctx)) { |
Denys Vlasenko | b1cfc45 | 2009-05-02 17:18:34 +0200 | [diff] [blame] | 4801 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4802 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4803 | o_free(&dest); |
| 4804 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4805 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4806 | /* If we got nothing... */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 4807 | /* (this makes bare "&" cmd a no-op. |
| 4808 | * bash says: "syntax error near unexpected token '&'") */ |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4809 | if (pi->num_cmds == 0 |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 4810 | IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE) |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4811 | ) { |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4812 | free_pipe_list(pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4813 | pi = NULL; |
| 4814 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4815 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 4816 | debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4817 | if (pstring) |
| 4818 | *pstring = ctx.as_string.data; |
| 4819 | else |
| 4820 | o_free_unsafe(&ctx.as_string); |
| 4821 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4822 | debug_leave(); |
| 4823 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4824 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4825 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4826 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4827 | |
| 4828 | next = '\0'; |
| 4829 | if (ch != '\n') |
| 4830 | next = i_peek(input); |
| 4831 | |
| 4832 | is_special = "{}<>;&|()#'" /* special outside of "str" */ |
| 4833 | "\\$\"" IF_HUSH_TICK("`"); /* always special */ |
| 4834 | /* Are { and } special here? */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 4835 | if (ctx.command->argv /* word [word]{... - non-special */ |
| 4836 | || dest.length /* word{... - non-special */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4837 | || dest.has_quoted_part /* ""{... - non-special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4838 | || (next != ';' /* }; - special */ |
| 4839 | && next != ')' /* }) - special */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4840 | && next != '(' /* {( - special */ |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4841 | && next != '&' /* }& and }&& ... - special */ |
| 4842 | && next != '|' /* }|| ... - special */ |
| 4843 | && !strchr(defifs, next) /* {word - non-special */ |
Denys Vlasenko | 3227d3f | 2010-05-17 09:49:47 +0200 | [diff] [blame] | 4844 | ) |
Denys Vlasenko | d8389ad | 2009-11-16 03:18:46 +0100 | [diff] [blame] | 4845 | ) { |
| 4846 | /* They are not special, skip "{}" */ |
| 4847 | is_special += 2; |
| 4848 | } |
| 4849 | is_special = strchr(is_special, ch); |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4850 | is_blank = strchr(defifs, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4851 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4852 | if (!is_special && !is_blank) { /* ordinary char */ |
Denis Vlasenko | bf25fbc | 2009-04-19 13:57:51 +0000 | [diff] [blame] | 4853 | ordinary_char: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4854 | o_addQchr(&dest, ch); |
| 4855 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 4856 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4857 | && ch == '=' |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 4858 | && is_well_formed_var_name(dest.data, '=') |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4859 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4860 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4861 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4862 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4863 | continue; |
| 4864 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4865 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4866 | if (is_blank) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4867 | if (done_word(&dest, &ctx)) { |
| 4868 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 4869 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4870 | if (ch == '\n') { |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 4871 | /* Is this a case when newline is simply ignored? |
| 4872 | * Some examples: |
| 4873 | * "cmd | <newline> cmd ..." |
| 4874 | * "case ... in <newline> word) ..." |
| 4875 | */ |
| 4876 | if (IS_NULL_CMD(ctx.command) |
| 4877 | && dest.length == 0 && !dest.has_quoted_part |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4878 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 4879 | /* This newline can be ignored. But... |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 4880 | * Without check #1, interactive shell |
| 4881 | * ignores even bare <newline>, |
| 4882 | * and shows the continuation prompt: |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 4883 | * ps1_prompt$ <enter> |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 4884 | * ps2> _ <=== wrong, should be ps1 |
| 4885 | * Without check #2, "cmd & <newline>" |
| 4886 | * is similarly mistreated. |
| 4887 | * (BTW, this makes "cmd & cmd" |
| 4888 | * and "cmd && cmd" non-orthogonal. |
| 4889 | * Really, ask yourself, why |
| 4890 | * "cmd && <newline>" doesn't start |
| 4891 | * cmd but waits for more input? |
Denys Vlasenko | b24e55d | 2017-07-16 20:29:35 +0200 | [diff] [blame] | 4892 | * The only reason is that it might be |
| 4893 | * a "cmd1 && <nl> cmd2 &" construct, |
| 4894 | * cmd1 may need to run in BG). |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 4895 | */ |
| 4896 | struct pipe *pi = ctx.list_head; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 4897 | if (pi->num_cmds != 0 /* check #1 */ |
| 4898 | && pi->followup != PIPE_BG /* check #2 */ |
| 4899 | ) { |
Denys Vlasenko | 642e71a | 2011-01-07 15:16:05 +0100 | [diff] [blame] | 4900 | continue; |
Denys Vlasenko | 98c46d1 | 2011-01-18 17:30:07 +0100 | [diff] [blame] | 4901 | } |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4902 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4903 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4904 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4905 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 4906 | if (heredoc_cnt) { |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4907 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4908 | goto parse_error; |
Denis Vlasenko | 3dfb035 | 2009-04-08 09:29:14 +0000 | [diff] [blame] | 4909 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4910 | heredoc_cnt = 0; |
| 4911 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4912 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4913 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4914 | ch = ';'; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4915 | /* note: if (is_blank) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4916 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4917 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4918 | } |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 4919 | |
| 4920 | /* "cmd}" or "cmd }..." without semicolon or &: |
| 4921 | * } is an ordinary char in this case, even inside { cmd; } |
| 4922 | * Pathological example: { ""}; } should exec "}" cmd |
| 4923 | */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 4924 | if (ch == '}') { |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4925 | if (dest.length != 0 /* word} */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4926 | || dest.has_quoted_part /* ""} */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 4927 | ) { |
| 4928 | goto ordinary_char; |
| 4929 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4930 | if (!IS_NULL_CMD(ctx.command)) { /* cmd } */ |
| 4931 | /* Generally, there should be semicolon: "cmd; }" |
| 4932 | * However, bash allows to omit it if "cmd" is |
| 4933 | * a group. Examples: |
| 4934 | * { { echo 1; } } |
| 4935 | * {(echo 1)} |
| 4936 | * { echo 0 >&2 | { echo 1; } } |
| 4937 | * { while false; do :; done } |
| 4938 | * { case a in b) ;; esac } |
| 4939 | */ |
| 4940 | if (ctx.command->group) |
| 4941 | goto term_group; |
| 4942 | goto ordinary_char; |
| 4943 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 4944 | if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */ |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4945 | /* Can't be an end of {cmd}, skip the check */ |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 4946 | goto skip_end_trigger; |
| 4947 | /* else: } does terminate a group */ |
Denis Vlasenko | 9f8d938 | 2009-04-19 14:03:11 +0000 | [diff] [blame] | 4948 | } |
Denys Vlasenko | 672a55e | 2016-11-04 18:46:14 +0100 | [diff] [blame] | 4949 | term_group: |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4950 | if (end_trigger && end_trigger == ch |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 4951 | && (ch != ';' || heredoc_cnt == 0) |
| 4952 | #if ENABLE_HUSH_CASE |
| 4953 | && (ch != ')' |
| 4954 | || ctx.ctx_res_w != RES_MATCH |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 4955 | || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0) |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 4956 | ) |
| 4957 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4958 | ) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4959 | if (heredoc_cnt) { |
| 4960 | /* This is technically valid: |
| 4961 | * { cat <<HERE; }; echo Ok |
| 4962 | * heredoc |
| 4963 | * heredoc |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4964 | * HERE |
| 4965 | * but we don't support this. |
| 4966 | * We require heredoc to be in enclosing {}/(), |
| 4967 | * if any. |
| 4968 | */ |
Denis Vlasenko | d68ae08 | 2009-04-09 20:41:34 +0000 | [diff] [blame] | 4969 | syntax_error_unterm_str("here document"); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4970 | goto parse_error; |
| 4971 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4972 | if (done_word(&dest, &ctx)) { |
| 4973 | goto parse_error; |
| 4974 | } |
| 4975 | done_pipe(&ctx, PIPE_SEQ); |
| 4976 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 4977 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4978 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4979 | if (!HAS_KEYWORDS |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 4980 | 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] | 4981 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4982 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4983 | #if !BB_MMU |
Denys Vlasenko | b5be13c | 2015-09-04 06:22:10 +0200 | [diff] [blame] | 4984 | debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4985 | if (pstring) |
| 4986 | *pstring = ctx.as_string.data; |
| 4987 | else |
| 4988 | o_free_unsafe(&ctx.as_string); |
| 4989 | #endif |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 4990 | debug_leave(); |
| 4991 | debug_printf_parse("parse_stream return %p: " |
| 4992 | "end_trigger char found\n", |
| 4993 | ctx.list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4994 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4995 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4996 | } |
Denis Vlasenko | dcd78c4 | 2009-04-19 23:07:51 +0000 | [diff] [blame] | 4997 | skip_end_trigger: |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 4998 | if (is_blank) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4999 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 5000 | |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5001 | /* Catch <, > before deciding whether this word is |
| 5002 | * an assignment. a=1 2>z b=2: b=2 is still assignment */ |
| 5003 | switch (ch) { |
| 5004 | case '>': |
| 5005 | redir_fd = redirect_opt_num(&dest); |
| 5006 | if (done_word(&dest, &ctx)) { |
| 5007 | goto parse_error; |
| 5008 | } |
| 5009 | redir_style = REDIRECT_OVERWRITE; |
| 5010 | if (next == '>') { |
| 5011 | redir_style = REDIRECT_APPEND; |
| 5012 | ch = i_getch(input); |
| 5013 | nommu_addchr(&ctx.as_string, ch); |
| 5014 | } |
| 5015 | #if 0 |
| 5016 | else if (next == '(') { |
| 5017 | syntax_error(">(process) not supported"); |
| 5018 | goto parse_error; |
| 5019 | } |
| 5020 | #endif |
| 5021 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5022 | goto parse_error; |
| 5023 | continue; /* back to top of while (1) */ |
| 5024 | case '<': |
| 5025 | redir_fd = redirect_opt_num(&dest); |
| 5026 | if (done_word(&dest, &ctx)) { |
| 5027 | goto parse_error; |
| 5028 | } |
| 5029 | redir_style = REDIRECT_INPUT; |
| 5030 | if (next == '<') { |
| 5031 | redir_style = REDIRECT_HEREDOC; |
| 5032 | heredoc_cnt++; |
| 5033 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
| 5034 | ch = i_getch(input); |
| 5035 | nommu_addchr(&ctx.as_string, ch); |
| 5036 | } else if (next == '>') { |
| 5037 | redir_style = REDIRECT_IO; |
| 5038 | ch = i_getch(input); |
| 5039 | nommu_addchr(&ctx.as_string, ch); |
| 5040 | } |
| 5041 | #if 0 |
| 5042 | else if (next == '(') { |
| 5043 | syntax_error("<(process) not supported"); |
| 5044 | goto parse_error; |
| 5045 | } |
| 5046 | #endif |
| 5047 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5048 | goto parse_error; |
| 5049 | continue; /* back to top of while (1) */ |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5050 | case '#': |
| 5051 | if (dest.length == 0 && !dest.has_quoted_part) { |
| 5052 | /* skip "#comment" */ |
| 5053 | while (1) { |
| 5054 | ch = i_peek(input); |
| 5055 | if (ch == EOF || ch == '\n') |
| 5056 | break; |
| 5057 | i_getch(input); |
| 5058 | /* note: we do not add it to &ctx.as_string */ |
| 5059 | } |
| 5060 | nommu_addchr(&ctx.as_string, '\n'); |
| 5061 | continue; /* back to top of while (1) */ |
| 5062 | } |
| 5063 | break; |
| 5064 | case '\\': |
| 5065 | if (next == '\n') { |
| 5066 | /* It's "\<newline>" */ |
| 5067 | #if !BB_MMU |
| 5068 | /* Remove trailing '\' from ctx.as_string */ |
| 5069 | ctx.as_string.data[--ctx.as_string.length] = '\0'; |
| 5070 | #endif |
| 5071 | ch = i_getch(input); /* eat it */ |
| 5072 | continue; /* back to top of while (1) */ |
| 5073 | } |
| 5074 | break; |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5075 | } |
| 5076 | |
| 5077 | if (dest.o_assignment == MAYBE_ASSIGNMENT |
| 5078 | /* check that we are not in word in "a=1 2>word b=1": */ |
| 5079 | && !ctx.pending_redirect |
| 5080 | ) { |
| 5081 | /* ch is a special char and thus this word |
| 5082 | * cannot be an assignment */ |
| 5083 | dest.o_assignment = NOT_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5084 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Denis Vlasenko | c96865f | 2009-04-10 00:20:58 +0000 | [diff] [blame] | 5085 | } |
| 5086 | |
Denys Vlasenko | cbfe6ad | 2009-08-12 19:47:44 +0200 | [diff] [blame] | 5087 | /* Note: nommu_addchr(&ctx.as_string, ch) is already done */ |
| 5088 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5089 | switch (ch) { |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5090 | case '#': /* non-comment #: "echo a#b" etc */ |
| 5091 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5092 | break; |
| 5093 | case '\\': |
| 5094 | if (next == EOF) { |
Denis Vlasenko | 05d3b7c | 2009-04-09 19:16:15 +0000 | [diff] [blame] | 5095 | syntax_error("\\<eof>"); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 5096 | xfunc_die(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5097 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5098 | ch = i_getch(input); |
Denys Vlasenko | 7b4c0fd | 2010-11-22 17:58:14 +0100 | [diff] [blame] | 5099 | /* note: ch != '\n' (that case does not reach this place) */ |
| 5100 | o_addchr(&dest, '\\'); |
| 5101 | /*nommu_addchr(&ctx.as_string, '\\'); - already done */ |
| 5102 | o_addchr(&dest, ch); |
| 5103 | nommu_addchr(&ctx.as_string, ch); |
| 5104 | /* Example: echo Hello \2>file |
| 5105 | * we need to know that word 2 is quoted */ |
| 5106 | dest.has_quoted_part = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5107 | break; |
| 5108 | case '$': |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5109 | if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5110 | debug_printf_parse("parse_stream parse error: " |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5111 | "parse_dollar returned 0 (error)\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5112 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5113 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5114 | break; |
| 5115 | case '\'': |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5116 | dest.has_quoted_part = 1; |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5117 | if (next == '\'' && !ctx.pending_redirect) { |
| 5118 | insert_empty_quoted_str_marker: |
| 5119 | nommu_addchr(&ctx.as_string, next); |
| 5120 | i_getch(input); /* eat second ' */ |
| 5121 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5122 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5123 | } else { |
| 5124 | while (1) { |
| 5125 | ch = i_getch(input); |
| 5126 | if (ch == EOF) { |
| 5127 | syntax_error_unterm_ch('\''); |
| 5128 | goto parse_error; |
| 5129 | } |
| 5130 | nommu_addchr(&ctx.as_string, ch); |
| 5131 | if (ch == '\'') |
| 5132 | break; |
| 5133 | o_addqchr(&dest, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5134 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5135 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5136 | break; |
| 5137 | case '"': |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5138 | dest.has_quoted_part = 1; |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5139 | if (next == '"' && !ctx.pending_redirect) |
| 5140 | goto insert_empty_quoted_str_marker; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5141 | if (dest.o_assignment == NOT_ASSIGNMENT) |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 5142 | dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS; |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5143 | if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1)) |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5144 | goto parse_error; |
Denys Vlasenko | 5b6210c | 2010-09-09 13:32:21 +0200 | [diff] [blame] | 5145 | dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5146 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5147 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5148 | case '`': { |
Denys Vlasenko | 60a9414 | 2011-05-13 20:57:01 +0200 | [diff] [blame] | 5149 | USE_FOR_NOMMU(unsigned pos;) |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5150 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5151 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5152 | o_addchr(&dest, '`'); |
Denys Vlasenko | 60a9414 | 2011-05-13 20:57:01 +0200 | [diff] [blame] | 5153 | USE_FOR_NOMMU(pos = dest.length;) |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5154 | if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0)) |
| 5155 | goto parse_error; |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5156 | # if !BB_MMU |
Denis Vlasenko | 5c090a9 | 2009-04-08 21:51:33 +0000 | [diff] [blame] | 5157 | o_addstr(&ctx.as_string, dest.data + pos); |
| 5158 | o_addchr(&ctx.as_string, '`'); |
Denys Vlasenko | 2e48d53 | 2010-05-22 17:30:39 +0200 | [diff] [blame] | 5159 | # endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5160 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 5161 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5162 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 5163 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 5164 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5165 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5166 | #if ENABLE_HUSH_CASE |
| 5167 | case_semi: |
| 5168 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5169 | if (done_word(&dest, &ctx)) { |
| 5170 | goto parse_error; |
| 5171 | } |
| 5172 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5173 | #if ENABLE_HUSH_CASE |
| 5174 | /* Eat multiple semicolons, detect |
| 5175 | * whether it means something special */ |
| 5176 | while (1) { |
| 5177 | ch = i_peek(input); |
| 5178 | if (ch != ';') |
| 5179 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5180 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5181 | nommu_addchr(&ctx.as_string, ch); |
Denys Vlasenko | e9bda90 | 2009-05-23 16:50:07 +0200 | [diff] [blame] | 5182 | if (ctx.ctx_res_w == RES_CASE_BODY) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5183 | ctx.ctx_dsemicolon = 1; |
| 5184 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5185 | break; |
| 5186 | } |
| 5187 | } |
| 5188 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5189 | new_cmd: |
| 5190 | /* We just finished a cmd. New one may start |
| 5191 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5192 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denys Vlasenko | 29f9b72 | 2011-05-14 11:27:36 +0200 | [diff] [blame] | 5193 | debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5194 | break; |
| 5195 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5196 | if (done_word(&dest, &ctx)) { |
| 5197 | goto parse_error; |
| 5198 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5199 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5200 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5201 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5202 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5203 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5204 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5205 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5206 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5207 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5208 | if (done_word(&dest, &ctx)) { |
| 5209 | goto parse_error; |
| 5210 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5211 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5212 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5213 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5214 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5215 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5216 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5217 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5218 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5219 | } else { |
| 5220 | /* we could pick up a file descriptor choice here |
| 5221 | * with redirect_opt_num(), but bash doesn't do it. |
| 5222 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5223 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5224 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5225 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5226 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5227 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5228 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5229 | if (ctx.ctx_res_w == RES_MATCH |
| 5230 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5231 | && dest.length == 0 /* not word(... */ |
Denys Vlasenko | 38292b6 | 2010-09-05 14:49:40 +0200 | [diff] [blame] | 5232 | && dest.has_quoted_part == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5233 | ) { |
| 5234 | continue; |
| 5235 | } |
| 5236 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5237 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5238 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5239 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5240 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5241 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5242 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5243 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5244 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5245 | goto case_semi; |
| 5246 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5247 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5248 | /* proper use of this character is caught by end_trigger: |
| 5249 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5250 | * and it will match } earlier (not here). */ |
Denis Vlasenko | c0ea329 | 2009-04-10 21:22:02 +0000 | [diff] [blame] | 5251 | syntax_error_unexpected_ch(ch); |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5252 | G.last_exitcode = 2; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5253 | goto parse_error2; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5254 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5255 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5256 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5257 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5258 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5259 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5260 | parse_error: |
Denys Vlasenko | b05bcaf | 2017-01-03 11:47:50 +0100 | [diff] [blame] | 5261 | G.last_exitcode = 1; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 5262 | parse_error2: |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5263 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5264 | struct parse_context *pctx; |
| 5265 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5266 | |
| 5267 | /* Clean up allocated tree. |
Denys Vlasenko | 764b2f0 | 2009-06-07 16:05:04 +0200 | [diff] [blame] | 5268 | * Sample for finding leaks on syntax error recovery path. |
| 5269 | * Run it from interactive shell, watch pmap `pidof hush`. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5270 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5271 | * Samples to catch leaks at execution: |
Denys Vlasenko | 5d5a611 | 2016-11-07 19:36:50 +0100 | [diff] [blame] | 5272 | * while if (true | { true;}); then echo ok; fi; do break; done |
| 5273 | * 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] | 5274 | */ |
| 5275 | pctx = &ctx; |
| 5276 | do { |
| 5277 | /* Update pipe/command counts, |
| 5278 | * otherwise freeing may miss some */ |
| 5279 | done_pipe(pctx, PIPE_SEQ); |
| 5280 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5281 | pctx->list_head, pctx); |
| 5282 | debug_print_tree(pctx->list_head, 0); |
Denis Vlasenko | 0701dca | 2009-04-11 10:38:47 +0000 | [diff] [blame] | 5283 | free_pipe_list(pctx->list_head); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5284 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5285 | #if !BB_MMU |
| 5286 | o_free_unsafe(&pctx->as_string); |
| 5287 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5288 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5289 | if (pctx != &ctx) { |
| 5290 | free(pctx); |
| 5291 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5292 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5293 | } while (HAS_KEYWORDS && pctx); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5294 | |
Denys Vlasenko | a439fa9 | 2011-03-30 19:11:46 +0200 | [diff] [blame] | 5295 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5296 | #if !BB_MMU |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5297 | if (pstring) |
| 5298 | *pstring = NULL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5299 | #endif |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 5300 | debug_leave(); |
| 5301 | return ERR_PTR; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5302 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5303 | } |
| 5304 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5305 | |
| 5306 | /*** Execution routines ***/ |
| 5307 | |
| 5308 | /* Expansion can recurse, need forward decls: */ |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5309 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5310 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 5311 | #define expand_string_to_string(str, do_unbackslash) \ |
| 5312 | expand_string_to_string(str) |
| 5313 | #endif |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 5314 | static char *expand_string_to_string(const char *str, int do_unbackslash); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5315 | #if ENABLE_HUSH_TICK |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5316 | static int process_command_subs(o_string *dest, const char *s); |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 5317 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5318 | |
| 5319 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 5320 | * all variable references within and returns a pointer to |
| 5321 | * a list of expanded strings, possibly with larger number |
| 5322 | * of strings. (Think VAR="a b"; echo $VAR). |
| 5323 | * This new list is allocated as a single malloc block. |
| 5324 | * NULL-terminated list of char* pointers is at the beginning of it, |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5325 | * followed by strings themselves. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5326 | * Caller can deallocate entire list by single free(list). */ |
| 5327 | |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5328 | /* A horde of its helpers come first: */ |
| 5329 | |
| 5330 | static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len) |
| 5331 | { |
| 5332 | while (--len >= 0) { |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5333 | char c = *str++; |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5334 | |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5335 | #if ENABLE_HUSH_BRACE_EXPANSION |
| 5336 | if (c == '{' || c == '}') { |
| 5337 | /* { -> \{, } -> \} */ |
| 5338 | o_addchr(o, '\\'); |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5339 | /* And now we want to add { or } and continue: |
| 5340 | * o_addchr(o, c); |
| 5341 | * continue; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 5342 | * luckily, just falling through achieves this. |
Denys Vlasenko | 957f79f | 2010-10-03 17:15:50 +0200 | [diff] [blame] | 5343 | */ |
Denys Vlasenko | 9e80022 | 2010-10-03 14:28:04 +0200 | [diff] [blame] | 5344 | } |
| 5345 | #endif |
| 5346 | o_addchr(o, c); |
| 5347 | if (c == '\\') { |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5348 | /* \z -> \\\z; \<eol> -> \\<eol> */ |
| 5349 | o_addchr(o, '\\'); |
| 5350 | if (len) { |
| 5351 | len--; |
| 5352 | o_addchr(o, '\\'); |
| 5353 | o_addchr(o, *str++); |
| 5354 | } |
| 5355 | } |
| 5356 | } |
| 5357 | } |
| 5358 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5359 | /* Store given string, finalizing the word and starting new one whenever |
| 5360 | * we encounter IFS char(s). This is used for expanding variable values. |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5361 | * End-of-string does NOT finalize word: think about 'echo -$VAR-'. |
| 5362 | * Return in *ended_with_ifs: |
| 5363 | * 1 - ended with IFS char, else 0 (this includes case of empty str). |
| 5364 | */ |
| 5365 | 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] | 5366 | { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5367 | int last_is_ifs = 0; |
| 5368 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5369 | while (1) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5370 | int word_len; |
| 5371 | |
| 5372 | if (!*str) /* EOL - do not finalize word */ |
| 5373 | break; |
| 5374 | word_len = strcspn(str, G.ifs); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5375 | if (word_len) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5376 | /* We have WORD_LEN leading non-IFS chars */ |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5377 | if (!(output->o_expflags & EXP_FLAG_GLOB)) { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5378 | o_addblock(output, str, word_len); |
Denys Vlasenko | 238081f | 2010-10-03 14:26:26 +0200 | [diff] [blame] | 5379 | } else { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5380 | /* Protect backslashes against globbing up :) |
Denys Vlasenko | a769e02 | 2010-09-10 10:12:34 +0200 | [diff] [blame] | 5381 | * Example: "v='\*'; echo b$v" prints "b\*" |
| 5382 | * (and does not try to glob on "*") |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5383 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5384 | o_addblock_duplicate_backslash(output, str, word_len); |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5385 | /*/ Why can't we do it easier? */ |
| 5386 | /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */ |
| 5387 | /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */ |
| 5388 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5389 | last_is_ifs = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5390 | str += word_len; |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5391 | if (!*str) /* EOL - do not finalize word */ |
| 5392 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5393 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5394 | |
| 5395 | /* We know str here points to at least one IFS char */ |
| 5396 | last_is_ifs = 1; |
| 5397 | str += strspn(str, G.ifs); /* skip IFS chars */ |
| 5398 | if (!*str) /* EOL - do not finalize word */ |
| 5399 | break; |
| 5400 | |
| 5401 | /* Start new word... but not always! */ |
| 5402 | /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5403 | if (output->has_quoted_part |
| 5404 | /* Case "v=' a'; echo $v": |
| 5405 | * here nothing precedes the space in $v expansion, |
| 5406 | * therefore we should not finish the word |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5407 | * (IOW: if there *is* word to finalize, only then do it): |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5408 | */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5409 | || (n > 0 && output->data[output->length - 1]) |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5410 | ) { |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5411 | o_addchr(output, '\0'); |
| 5412 | debug_print_list("expand_on_ifs", output, n); |
| 5413 | n = o_save_ptr(output, n); |
| 5414 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5415 | } |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5416 | |
| 5417 | if (ended_with_ifs) |
| 5418 | *ended_with_ifs = last_is_ifs; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5419 | debug_print_list("expand_on_ifs[1]", output, n); |
| 5420 | return n; |
| 5421 | } |
| 5422 | |
| 5423 | /* Helper to expand $((...)) and heredoc body. These act as if |
| 5424 | * they are in double quotes, with the exception that they are not :). |
| 5425 | * Just the rules are similar: "expand only $var and `cmd`" |
| 5426 | * |
| 5427 | * Returns malloced string. |
| 5428 | * As an optimization, we return NULL if expansion is not needed. |
| 5429 | */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5430 | #if !BASH_PATTERN_SUBST |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5431 | /* only ${var/pattern/repl} (its pattern part) needs additional mode */ |
| 5432 | #define encode_then_expand_string(str, process_bkslash, do_unbackslash) \ |
| 5433 | encode_then_expand_string(str) |
| 5434 | #endif |
| 5435 | 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] | 5436 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 5437 | #if !BASH_PATTERN_SUBST |
| 5438 | const int do_unbackslash = 1; |
| 5439 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5440 | char *exp_str; |
| 5441 | struct in_str input; |
| 5442 | o_string dest = NULL_O_STRING; |
| 5443 | |
| 5444 | if (!strchr(str, '$') |
Denys Vlasenko | 77b32cc | 2010-09-06 11:27:32 +0200 | [diff] [blame] | 5445 | && !strchr(str, '\\') |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5446 | #if ENABLE_HUSH_TICK |
| 5447 | && !strchr(str, '`') |
| 5448 | #endif |
| 5449 | ) { |
| 5450 | return NULL; |
| 5451 | } |
| 5452 | |
| 5453 | /* We need to expand. Example: |
| 5454 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 5455 | */ |
| 5456 | setup_string_in_str(&input, str); |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5457 | encode_string(NULL, &dest, &input, EOF, process_bkslash); |
Denys Vlasenko | 3eab24e | 2011-03-24 05:25:59 +0100 | [diff] [blame] | 5458 | //TODO: error check (encode_string returns 0 on error)? |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5459 | //bb_error_msg("'%s' -> '%s'", str, dest.data); |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 5460 | exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5461 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 5462 | o_free_unsafe(&dest); |
| 5463 | return exp_str; |
| 5464 | } |
| 5465 | |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 5466 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5467 | 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] | 5468 | { |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5469 | arith_state_t math_state; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5470 | arith_t res; |
| 5471 | char *exp_str; |
| 5472 | |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5473 | math_state.lookupvar = get_local_var_value; |
| 5474 | math_state.setvar = set_local_var_from_halves; |
| 5475 | //math_state.endofname = endofname; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5476 | exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | 06d44d7 | 2010-09-13 12:49:03 +0200 | [diff] [blame] | 5477 | res = arith(&math_state, exp_str ? exp_str : arg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5478 | free(exp_str); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5479 | if (errmsg_p) |
| 5480 | *errmsg_p = math_state.errmsg; |
| 5481 | if (math_state.errmsg) |
| 5482 | die_if_script(math_state.errmsg); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5483 | return res; |
| 5484 | } |
| 5485 | #endif |
| 5486 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5487 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5488 | /* ${var/[/]pattern[/repl]} helpers */ |
| 5489 | static char *strstr_pattern(char *val, const char *pattern, int *size) |
| 5490 | { |
| 5491 | while (1) { |
| 5492 | char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF); |
| 5493 | debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end); |
| 5494 | if (end) { |
| 5495 | *size = end - val; |
| 5496 | return val; |
| 5497 | } |
| 5498 | if (*val == '\0') |
| 5499 | return NULL; |
| 5500 | /* Optimization: if "*pat" did not match the start of "string", |
| 5501 | * we know that "tring", "ring" etc will not match too: |
| 5502 | */ |
| 5503 | if (pattern[0] == '*') |
| 5504 | return NULL; |
| 5505 | val++; |
| 5506 | } |
| 5507 | } |
| 5508 | static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op) |
| 5509 | { |
| 5510 | char *result = NULL; |
| 5511 | unsigned res_len = 0; |
| 5512 | unsigned repl_len = strlen(repl); |
| 5513 | |
| 5514 | while (1) { |
| 5515 | int size; |
| 5516 | char *s = strstr_pattern(val, pattern, &size); |
| 5517 | if (!s) |
| 5518 | break; |
| 5519 | |
| 5520 | result = xrealloc(result, res_len + (s - val) + repl_len + 1); |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5521 | strcpy(mempcpy(result + res_len, val, s - val), repl); |
| 5522 | res_len += (s - val) + repl_len; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5523 | debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result); |
| 5524 | |
| 5525 | val = s + size; |
| 5526 | if (exp_op == '/') |
| 5527 | break; |
| 5528 | } |
Denys Vlasenko | 0675b03 | 2017-07-24 02:17:05 +0200 | [diff] [blame] | 5529 | if (*val && result) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5530 | result = xrealloc(result, res_len + strlen(val) + 1); |
| 5531 | strcpy(result + res_len, val); |
| 5532 | debug_printf_varexp("val:'%s' result:'%s'\n", val, result); |
| 5533 | } |
| 5534 | debug_printf_varexp("result:'%s'\n", result); |
| 5535 | return result; |
| 5536 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5537 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5538 | |
| 5539 | /* Helper: |
| 5540 | * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct. |
| 5541 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5542 | 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] | 5543 | { |
| 5544 | const char *val = NULL; |
| 5545 | char *to_be_freed = NULL; |
| 5546 | char *p = *pp; |
| 5547 | char *var; |
| 5548 | char first_char; |
| 5549 | char exp_op; |
| 5550 | char exp_save = exp_save; /* for compiler */ |
| 5551 | char *exp_saveptr; /* points to expansion operator */ |
| 5552 | char *exp_word = exp_word; /* for compiler */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5553 | char arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5554 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5555 | *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5556 | var = arg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5557 | exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5558 | arg0 = arg[0]; |
| 5559 | first_char = arg[0] = arg0 & 0x7f; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5560 | exp_op = 0; |
| 5561 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5562 | if (first_char == '#' /* ${#... */ |
| 5563 | && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */ |
| 5564 | ) { |
| 5565 | /* It must be length operator: ${#var} */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5566 | var++; |
| 5567 | exp_op = 'L'; |
| 5568 | } else { |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5569 | /* Maybe handle parameter expansion */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5570 | if (exp_saveptr /* if 2nd char is one of expansion operators */ |
| 5571 | && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */ |
| 5572 | ) { |
| 5573 | /* ${?:0}, ${#[:]%0} etc */ |
| 5574 | exp_saveptr = var + 1; |
| 5575 | } else { |
| 5576 | /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */ |
| 5577 | exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS); |
| 5578 | } |
| 5579 | exp_op = exp_save = *exp_saveptr; |
| 5580 | if (exp_op) { |
| 5581 | exp_word = exp_saveptr + 1; |
| 5582 | if (exp_op == ':') { |
| 5583 | exp_op = *exp_word++; |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5584 | //TODO: try ${var:} and ${var:bogus} in non-bash config |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5585 | if (BASH_SUBSTR |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5586 | && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op)) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5587 | ) { |
| 5588 | /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */ |
| 5589 | exp_op = ':'; |
| 5590 | exp_word--; |
| 5591 | } |
| 5592 | } |
| 5593 | *exp_saveptr = '\0'; |
| 5594 | } /* else: it's not an expansion op, but bare ${var} */ |
| 5595 | } |
| 5596 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5597 | /* Look up the variable in question */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5598 | if (isdigit(var[0])) { |
Denys Vlasenko | 77a7b55 | 2010-09-09 12:40:03 +0200 | [diff] [blame] | 5599 | /* parse_dollar should have vetted var for us */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5600 | int n = xatoi_positive(var); |
| 5601 | if (n < G.global_argc) |
| 5602 | val = G.global_argv[n]; |
| 5603 | /* else val remains NULL: $N with too big N */ |
| 5604 | } else { |
| 5605 | switch (var[0]) { |
| 5606 | case '$': /* pid */ |
| 5607 | val = utoa(G.root_pid); |
| 5608 | break; |
| 5609 | case '!': /* bg pid */ |
| 5610 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : ""; |
| 5611 | break; |
| 5612 | case '?': /* exitcode */ |
| 5613 | val = utoa(G.last_exitcode); |
| 5614 | break; |
| 5615 | case '#': /* argc */ |
| 5616 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 5617 | break; |
| 5618 | default: |
| 5619 | val = get_local_var_value(var); |
| 5620 | } |
| 5621 | } |
| 5622 | |
| 5623 | /* Handle any expansions */ |
| 5624 | if (exp_op == 'L') { |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5625 | reinit_unicode_for_hush(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5626 | debug_printf_expand("expand: length(%s)=", val); |
Denys Vlasenko | c538d5b | 2014-08-13 09:57:44 +0200 | [diff] [blame] | 5627 | val = utoa(val ? unicode_strlen(val) : 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5628 | debug_printf_expand("%s\n", val); |
| 5629 | } else if (exp_op) { |
| 5630 | if (exp_op == '%' || exp_op == '#') { |
| 5631 | /* Standard-mandated substring removal ops: |
| 5632 | * ${parameter%word} - remove smallest suffix pattern |
| 5633 | * ${parameter%%word} - remove largest suffix pattern |
| 5634 | * ${parameter#word} - remove smallest prefix pattern |
| 5635 | * ${parameter##word} - remove largest prefix pattern |
| 5636 | * |
| 5637 | * Word is expanded to produce a glob pattern. |
| 5638 | * Then var's value is matched to it and matching part removed. |
| 5639 | */ |
| 5640 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5641 | char *t; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5642 | char *exp_exp_word; |
| 5643 | char *loc; |
| 5644 | unsigned scan_flags = pick_scan(exp_op, *exp_word); |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 5645 | if (exp_op == *exp_word) /* ## or %% */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5646 | exp_word++; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5647 | exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5648 | if (exp_exp_word) |
| 5649 | exp_word = exp_exp_word; |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5650 | /* HACK ALERT. We depend here on the fact that |
| 5651 | * G.global_argv and results of utoa and get_local_var_value |
| 5652 | * are actually in writable memory: |
| 5653 | * scan_and_match momentarily stores NULs there. */ |
| 5654 | t = (char*)val; |
| 5655 | loc = scan_and_match(t, exp_word, scan_flags); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5656 | //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'", |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5657 | // exp_op, t, exp_word, loc); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5658 | free(exp_exp_word); |
| 5659 | if (loc) { /* match was found */ |
| 5660 | if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5661 | val = loc; /* take right part */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5662 | else /* %[%] */ |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5663 | val = to_be_freed = xstrndup(val, loc - val); /* left */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5664 | } |
| 5665 | } |
| 5666 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5667 | #if BASH_PATTERN_SUBST |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5668 | else if (exp_op == '/' || exp_op == '\\') { |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5669 | /* It's ${var/[/]pattern[/repl]} thing. |
| 5670 | * Note that in encoded form it has TWO parts: |
| 5671 | * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5672 | * and if // is used, it is encoded as \: |
| 5673 | * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL> |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5674 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5675 | /* Empty variable always gives nothing: */ |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5676 | // "v=''; echo ${v/*/w}" prints "", not "w" |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5677 | if (val && val[0]) { |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 5678 | /* pattern uses non-standard expansion. |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 5679 | * repl should be unbackslashed and globbed |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5680 | * by the usual expansion rules: |
| 5681 | * >az; >bz; |
| 5682 | * v='a bz'; echo "${v/a*z/a*z}" prints "a*z" |
| 5683 | * v='a bz'; echo "${v/a*z/\z}" prints "\z" |
| 5684 | * v='a bz'; echo ${v/a*z/a*z} prints "az" |
| 5685 | * v='a bz'; echo ${v/a*z/\z} prints "z" |
| 5686 | * (note that a*z _pattern_ is never globbed!) |
| 5687 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5688 | char *pattern, *repl, *t; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5689 | pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5690 | if (!pattern) |
| 5691 | pattern = xstrdup(exp_word); |
| 5692 | debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern); |
| 5693 | *p++ = SPECIAL_VAR_SYMBOL; |
| 5694 | exp_word = p; |
| 5695 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5696 | *p = '\0'; |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5697 | repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5698 | debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl); |
| 5699 | /* HACK ALERT. We depend here on the fact that |
| 5700 | * G.global_argv and results of utoa and get_local_var_value |
| 5701 | * are actually in writable memory: |
| 5702 | * replace_pattern momentarily stores NULs there. */ |
| 5703 | t = (char*)val; |
| 5704 | to_be_freed = replace_pattern(t, |
| 5705 | pattern, |
| 5706 | (repl ? repl : exp_word), |
| 5707 | exp_op); |
| 5708 | if (to_be_freed) /* at least one replace happened */ |
| 5709 | val = to_be_freed; |
| 5710 | free(pattern); |
| 5711 | free(repl); |
| 5712 | } |
| 5713 | } |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5714 | #endif /* BASH_PATTERN_SUBST */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5715 | else if (exp_op == ':') { |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 5716 | #if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5717 | /* It's ${var:N[:M]} bashism. |
| 5718 | * Note that in encoded form it has TWO parts: |
| 5719 | * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL> |
| 5720 | */ |
| 5721 | arith_t beg, len; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5722 | const char *errmsg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5723 | |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5724 | beg = expand_and_evaluate_arith(exp_word, &errmsg); |
| 5725 | if (errmsg) |
| 5726 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5727 | debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg); |
| 5728 | *p++ = SPECIAL_VAR_SYMBOL; |
| 5729 | exp_word = p; |
| 5730 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5731 | *p = '\0'; |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5732 | len = expand_and_evaluate_arith(exp_word, &errmsg); |
| 5733 | if (errmsg) |
| 5734 | goto arith_err; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5735 | debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len); |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5736 | if (beg < 0) { |
| 5737 | /* negative beg counts from the end */ |
| 5738 | beg = (arith_t)strlen(val) + beg; |
| 5739 | if (beg < 0) /* ${v: -999999} is "" */ |
| 5740 | beg = len = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5741 | } |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5742 | debug_printf_varexp("from val:'%s'\n", val); |
| 5743 | if (len < 0) { |
| 5744 | /* in bash, len=-n means strlen()-n */ |
| 5745 | len = (arith_t)strlen(val) - beg + len; |
| 5746 | if (len < 0) /* bash compat */ |
| 5747 | die_if_script("%s: substring expression < 0", var); |
| 5748 | } |
Denys Vlasenko | 0ba80e4 | 2017-07-17 16:50:20 +0200 | [diff] [blame] | 5749 | if (len <= 0 || !val || beg >= strlen(val)) { |
Denys Vlasenko | e32b650 | 2017-07-17 16:46:57 +0200 | [diff] [blame] | 5750 | arith_err: |
| 5751 | val = NULL; |
| 5752 | } else { |
| 5753 | /* Paranoia. What if user entered 9999999999999 |
| 5754 | * which fits in arith_t but not int? */ |
| 5755 | if (len >= INT_MAX) |
| 5756 | len = INT_MAX; |
| 5757 | val = to_be_freed = xstrndup(val + beg, len); |
| 5758 | } |
| 5759 | debug_printf_varexp("val:'%s'\n", val); |
| 5760 | #else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */ |
| 5761 | die_if_script("malformed ${%s:...}", var); |
| 5762 | val = NULL; |
| 5763 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5764 | } else { /* one of "-=+?" */ |
| 5765 | /* Standard-mandated substitution ops: |
| 5766 | * ${var?word} - indicate error if unset |
| 5767 | * If var is unset, word (or a message indicating it is unset |
| 5768 | * if word is null) is written to standard error |
| 5769 | * and the shell exits with a non-zero exit status. |
| 5770 | * Otherwise, the value of var is substituted. |
| 5771 | * ${var-word} - use default value |
| 5772 | * If var is unset, word is substituted. |
| 5773 | * ${var=word} - assign and use default value |
| 5774 | * If var is unset, word is assigned to var. |
| 5775 | * In all cases, final value of var is substituted. |
| 5776 | * ${var+word} - use alternative value |
| 5777 | * If var is unset, null is substituted. |
| 5778 | * Otherwise, word is substituted. |
| 5779 | * |
| 5780 | * Word is subjected to tilde expansion, parameter expansion, |
| 5781 | * command substitution, and arithmetic expansion. |
| 5782 | * If word is not needed, it is not expanded. |
| 5783 | * |
| 5784 | * Colon forms (${var:-word}, ${var:=word} etc) do the same, |
| 5785 | * but also treat null var as if it is unset. |
| 5786 | */ |
| 5787 | int use_word = (!val || ((exp_save == ':') && !val[0])); |
| 5788 | if (exp_op == '+') |
| 5789 | use_word = !use_word; |
| 5790 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 5791 | (exp_save == ':') ? "true" : "false", use_word); |
| 5792 | if (use_word) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 5793 | 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] | 5794 | if (to_be_freed) |
| 5795 | exp_word = to_be_freed; |
| 5796 | if (exp_op == '?') { |
| 5797 | /* mimic bash message */ |
| 5798 | die_if_script("%s: %s", |
| 5799 | var, |
| 5800 | exp_word[0] ? exp_word : "parameter null or not set" |
| 5801 | ); |
| 5802 | //TODO: how interactive bash aborts expansion mid-command? |
| 5803 | } else { |
| 5804 | val = exp_word; |
| 5805 | } |
| 5806 | |
| 5807 | if (exp_op == '=') { |
| 5808 | /* ${var=[word]} or ${var:=[word]} */ |
| 5809 | if (isdigit(var[0]) || var[0] == '#') { |
| 5810 | /* mimic bash message */ |
| 5811 | die_if_script("$%s: cannot assign in this way", var); |
| 5812 | val = NULL; |
| 5813 | } else { |
| 5814 | char *new_var = xasprintf("%s=%s", var, val); |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 5815 | set_local_var(new_var, /*flag:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5816 | } |
| 5817 | } |
| 5818 | } |
| 5819 | } /* one of "-=+?" */ |
| 5820 | |
| 5821 | *exp_saveptr = exp_save; |
| 5822 | } /* if (exp_op) */ |
| 5823 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5824 | arg[0] = arg0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5825 | |
| 5826 | *pp = p; |
| 5827 | *to_be_freed_pp = to_be_freed; |
| 5828 | return val; |
| 5829 | } |
| 5830 | |
| 5831 | /* Expand all variable references in given string, adding words to list[] |
| 5832 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 5833 | * to be filled). This routine is extremely tricky: has to deal with |
| 5834 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 5835 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5836 | 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] | 5837 | { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5838 | /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5839 | * expansion of right-hand side of assignment == 1-element expand. |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5840 | */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5841 | char cant_be_null = 0; /* only bit 0x80 matters */ |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5842 | 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] | 5843 | char *p; |
| 5844 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5845 | debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg, |
| 5846 | !!(output->o_expflags & EXP_FLAG_SINGLEWORD)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5847 | debug_print_list("expand_vars_to_list", output, n); |
| 5848 | n = o_save_ptr(output, n); |
| 5849 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 5850 | |
| 5851 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 5852 | char first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5853 | char *to_be_freed = NULL; |
| 5854 | const char *val = NULL; |
| 5855 | #if ENABLE_HUSH_TICK |
| 5856 | o_string subst_result = NULL_O_STRING; |
| 5857 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 5858 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5859 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 5860 | #endif |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5861 | |
| 5862 | if (ended_in_ifs) { |
| 5863 | o_addchr(output, '\0'); |
| 5864 | n = o_save_ptr(output, n); |
| 5865 | ended_in_ifs = 0; |
| 5866 | } |
| 5867 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5868 | o_addblock(output, arg, p - arg); |
| 5869 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 5870 | arg = ++p; |
| 5871 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 5872 | |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5873 | /* Fetch special var name (if it is indeed one of them) |
| 5874 | * and quote bit, force the bit on if singleword expansion - |
| 5875 | * important for not getting v=$@ expand to many words. */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5876 | first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5877 | |
| 5878 | /* Is this variable quoted and thus expansion can't be null? |
| 5879 | * "$@" is special. Even if quoted, it can still |
| 5880 | * expand to nothing (not even an empty string), |
| 5881 | * thus it is excluded. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5882 | if ((first_ch & 0x7f) != '@') |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5883 | cant_be_null |= first_ch; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5884 | |
| 5885 | switch (first_ch & 0x7f) { |
| 5886 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 5887 | case '*': |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5888 | case '@': { |
| 5889 | int i; |
| 5890 | if (!G.global_argv[1]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5891 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5892 | i = 1; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5893 | 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] | 5894 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5895 | while (G.global_argv[i]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5896 | n = expand_on_ifs(NULL, output, n, G.global_argv[i]); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5897 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 5898 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 5899 | /* this argv[] is not empty and not last: |
| 5900 | * put terminating NUL, start new word */ |
| 5901 | o_addchr(output, '\0'); |
| 5902 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 5903 | n = o_save_ptr(output, n); |
| 5904 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 5905 | } |
| 5906 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5907 | } else |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5908 | /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....' |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5909 | * and in this case should treat it like '$*' - see 'else...' below */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5910 | if (first_ch == ('@'|0x80) /* quoted $@ */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5911 | && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */ |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 5912 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5913 | while (1) { |
| 5914 | o_addQstr(output, G.global_argv[i]); |
| 5915 | if (++i >= G.global_argc) |
| 5916 | break; |
| 5917 | o_addchr(output, '\0'); |
| 5918 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 5919 | n = o_save_ptr(output, n); |
| 5920 | } |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5921 | } else { /* quoted $* (or v="$@" case): add as one word */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5922 | while (1) { |
| 5923 | o_addQstr(output, G.global_argv[i]); |
| 5924 | if (!G.global_argv[++i]) |
| 5925 | break; |
| 5926 | if (G.ifs[0]) |
| 5927 | o_addchr(output, G.ifs[0]); |
| 5928 | } |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5929 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5930 | } |
| 5931 | break; |
Denys Vlasenko | c49d2d9 | 2010-09-06 10:26:37 +0200 | [diff] [blame] | 5932 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5933 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 5934 | /* "Empty variable", used to make "" etc to not disappear */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5935 | output->has_quoted_part = 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5936 | arg++; |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5937 | cant_be_null = 0x80; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5938 | break; |
| 5939 | #if ENABLE_HUSH_TICK |
| 5940 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5941 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5942 | arg++; |
| 5943 | /* Can't just stuff it into output o_string, |
| 5944 | * expanded result may need to be globbed |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 5945 | * and $IFS-split */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5946 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
| 5947 | G.last_exitcode = process_command_subs(&subst_result, arg); |
| 5948 | debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data); |
| 5949 | val = subst_result.data; |
| 5950 | goto store_val; |
| 5951 | #endif |
Denys Vlasenko | 0b88358 | 2016-12-23 16:49:07 +0100 | [diff] [blame] | 5952 | #if ENABLE_FEATURE_SH_MATH |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5953 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
| 5954 | arith_t res; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5955 | |
| 5956 | arg++; /* skip '+' */ |
| 5957 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
| 5958 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denys Vlasenko | 063847d | 2010-09-15 13:33:02 +0200 | [diff] [blame] | 5959 | res = expand_and_evaluate_arith(arg, NULL); |
Denys Vlasenko | bed7c81 | 2010-09-16 11:50:46 +0200 | [diff] [blame] | 5960 | debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res); |
| 5961 | sprintf(arith_buf, ARITH_FMT, res); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5962 | val = arith_buf; |
| 5963 | break; |
| 5964 | } |
| 5965 | #endif |
| 5966 | default: |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5967 | val = expand_one_var(&to_be_freed, arg, &p); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5968 | IF_HUSH_TICK(store_val:) |
| 5969 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 5970 | debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, |
| 5971 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5972 | if (val && val[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 5973 | n = expand_on_ifs(&ended_in_ifs, output, n, val); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5974 | val = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5975 | } |
| 5976 | } else { /* quoted $VAR, val will be appended below */ |
Denys Vlasenko | 4fb53fb | 2011-08-01 14:06:20 +0200 | [diff] [blame] | 5977 | output->has_quoted_part = 1; |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 5978 | debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, |
| 5979 | !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5980 | } |
| 5981 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5982 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
| 5983 | |
| 5984 | if (val && val[0]) { |
| 5985 | o_addQstr(output, val); |
| 5986 | } |
| 5987 | free(to_be_freed); |
Denys Vlasenko | bfc02a7 | 2010-09-09 14:38:46 +0200 | [diff] [blame] | 5988 | |
| 5989 | /* Restore NULL'ed SPECIAL_VAR_SYMBOL. |
| 5990 | * Do the check to avoid writing to a const string. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 5991 | if (*p != SPECIAL_VAR_SYMBOL) |
| 5992 | *p = SPECIAL_VAR_SYMBOL; |
| 5993 | |
| 5994 | #if ENABLE_HUSH_TICK |
| 5995 | o_free(&subst_result); |
| 5996 | #endif |
| 5997 | arg = ++p; |
| 5998 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 5999 | |
| 6000 | if (arg[0]) { |
Denys Vlasenko | 6e42b89 | 2011-08-01 18:16:43 +0200 | [diff] [blame] | 6001 | if (ended_in_ifs) { |
| 6002 | o_addchr(output, '\0'); |
| 6003 | n = o_save_ptr(output, n); |
| 6004 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6005 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 6006 | /* this part is literal, and it was already pre-quoted |
| 6007 | * if needed (much earlier), do not use o_addQstr here! */ |
| 6008 | o_addstr_with_NUL(output, arg); |
| 6009 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 6010 | } 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] | 6011 | && !(cant_be_null & 0x80) /* and all vars were not quoted. */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6012 | ) { |
| 6013 | n--; |
| 6014 | /* allow to reuse list[n] later without re-growth */ |
| 6015 | output->has_empty_slot = 1; |
| 6016 | } else { |
| 6017 | o_addchr(output, '\0'); |
| 6018 | } |
| 6019 | |
| 6020 | return n; |
| 6021 | } |
| 6022 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6023 | static char **expand_variables(char **argv, unsigned expflags) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6024 | { |
| 6025 | int n; |
| 6026 | char **list; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6027 | o_string output = NULL_O_STRING; |
| 6028 | |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6029 | output.o_expflags = expflags; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6030 | |
| 6031 | n = 0; |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6032 | while (*argv) { |
Denys Vlasenko | 95d48f2 | 2010-09-08 13:58:55 +0200 | [diff] [blame] | 6033 | n = expand_vars_to_list(&output, n, *argv); |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6034 | argv++; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6035 | } |
| 6036 | debug_print_list("expand_variables", &output, n); |
| 6037 | |
| 6038 | /* output.data (malloced in one block) gets returned in "list" */ |
| 6039 | list = o_finalize_list(&output, n); |
| 6040 | debug_print_strings("expand_variables[1]", list); |
| 6041 | return list; |
| 6042 | } |
| 6043 | |
| 6044 | static char **expand_strvec_to_strvec(char **argv) |
| 6045 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6046 | return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6047 | } |
| 6048 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 6049 | #if BASH_TEST2 |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6050 | static char **expand_strvec_to_strvec_singleword_noglob(char **argv) |
| 6051 | { |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6052 | return expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6053 | } |
| 6054 | #endif |
| 6055 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 6056 | /* Used for expansion of right hand of assignments, |
| 6057 | * $((...)), heredocs, variable espansion parts. |
| 6058 | * |
| 6059 | * NB: should NOT do globbing! |
| 6060 | * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*" |
| 6061 | */ |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6062 | static char *expand_string_to_string(const char *str, int do_unbackslash) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6063 | { |
Denys Vlasenko | 637982f | 2017-07-06 01:52:23 +0200 | [diff] [blame] | 6064 | #if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6065 | const int do_unbackslash = 1; |
| 6066 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6067 | char *argv[2], **list; |
| 6068 | |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6069 | debug_printf_expand("string_to_string<='%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6070 | /* This is generally an optimization, but it also |
| 6071 | * handles "", which otherwise trips over !list[0] check below. |
| 6072 | * (is this ever happens that we actually get str="" here?) |
| 6073 | */ |
| 6074 | if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) { |
| 6075 | //TODO: Can use on strings with \ too, just unbackslash() them? |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6076 | debug_printf_expand("string_to_string(fast)=>'%s'\n", str); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6077 | return xstrdup(str); |
| 6078 | } |
| 6079 | |
| 6080 | argv[0] = (char*)str; |
| 6081 | argv[1] = NULL; |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6082 | list = expand_variables(argv, do_unbackslash |
| 6083 | ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD |
| 6084 | : EXP_FLAG_SINGLEWORD |
| 6085 | ); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6086 | if (HUSH_DEBUG) |
| 6087 | if (!list[0] || list[1]) |
| 6088 | bb_error_msg_and_die("BUG in varexp2"); |
| 6089 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 6090 | overlapping_strcpy((char*)list, list[0]); |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6091 | if (do_unbackslash) |
| 6092 | unbackslash((char*)list); |
| 6093 | debug_printf_expand("string_to_string=>'%s'\n", (char*)list); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6094 | return (char*)list; |
| 6095 | } |
| 6096 | |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 6097 | /* Used for "eval" builtin and case string */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6098 | static char* expand_strvec_to_string(char **argv) |
| 6099 | { |
| 6100 | char **list; |
| 6101 | |
Denys Vlasenko | 5b686cb | 2010-09-08 13:44:34 +0200 | [diff] [blame] | 6102 | list = expand_variables(argv, EXP_FLAG_SINGLEWORD); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6103 | /* Convert all NULs to spaces */ |
| 6104 | if (list[0]) { |
| 6105 | int n = 1; |
| 6106 | while (list[n]) { |
| 6107 | if (HUSH_DEBUG) |
| 6108 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 6109 | bb_error_msg_and_die("BUG in varexp3"); |
| 6110 | /* bash uses ' ' regardless of $IFS contents */ |
| 6111 | list[n][-1] = ' '; |
| 6112 | n++; |
| 6113 | } |
| 6114 | } |
Denys Vlasenko | 78c9c73 | 2016-09-29 01:44:17 +0200 | [diff] [blame] | 6115 | overlapping_strcpy((char*)list, list[0] ? list[0] : ""); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6116 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 6117 | return (char*)list; |
| 6118 | } |
| 6119 | |
| 6120 | static char **expand_assignments(char **argv, int count) |
| 6121 | { |
| 6122 | int i; |
| 6123 | char **p; |
| 6124 | |
| 6125 | G.expanded_assignments = p = NULL; |
| 6126 | /* Expand assignments into one string each */ |
| 6127 | for (i = 0; i < count; i++) { |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6128 | G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6129 | } |
| 6130 | G.expanded_assignments = NULL; |
| 6131 | return p; |
| 6132 | } |
| 6133 | |
| 6134 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6135 | static void switch_off_special_sigs(unsigned mask) |
| 6136 | { |
| 6137 | unsigned sig = 0; |
| 6138 | while ((mask >>= 1) != 0) { |
| 6139 | sig++; |
| 6140 | if (!(mask & 1)) |
| 6141 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6142 | #if ENABLE_HUSH_TRAP |
| 6143 | if (G_traps) { |
| 6144 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6145 | /* trap is '', has to remain SIG_IGN */ |
| 6146 | continue; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6147 | free(G_traps[sig]); |
| 6148 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6149 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6150 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6151 | /* We are here only if no trap or trap was not '' */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6152 | install_sighandler(sig, SIG_DFL); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6153 | } |
| 6154 | } |
| 6155 | |
Denys Vlasenko | b347df9 | 2011-08-09 22:49:15 +0200 | [diff] [blame] | 6156 | #if BB_MMU |
| 6157 | /* never called */ |
| 6158 | void re_execute_shell(char ***to_free, const char *s, |
| 6159 | char *g_argv0, char **g_argv, |
| 6160 | char **builtin_argv) NORETURN; |
| 6161 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6162 | static void reset_traps_to_defaults(void) |
| 6163 | { |
| 6164 | /* This function is always called in a child shell |
| 6165 | * after fork (not vfork, NOMMU doesn't use this function). |
| 6166 | */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6167 | IF_HUSH_TRAP(unsigned sig;) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6168 | unsigned mask; |
| 6169 | |
| 6170 | /* Child shells are not interactive. |
| 6171 | * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling. |
| 6172 | * Testcase: (while :; do :; done) + ^Z should background. |
| 6173 | * Same goes for SIGTERM, SIGHUP, SIGINT. |
| 6174 | */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6175 | mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6176 | if (!G_traps && !mask) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6177 | return; /* already no traps and no special sigs */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6178 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6179 | /* Switch off special sigs */ |
| 6180 | switch_off_special_sigs(mask); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6181 | # if ENABLE_HUSH_JOB |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6182 | G_fatal_sig_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6183 | # endif |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 6184 | G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 6185 | /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS |
| 6186 | * remain set in G.special_sig_mask */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6187 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6188 | # if ENABLE_HUSH_TRAP |
| 6189 | if (!G_traps) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6190 | return; |
| 6191 | |
| 6192 | /* Reset all sigs to default except ones with empty traps */ |
| 6193 | for (sig = 0; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6194 | if (!G_traps[sig]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6195 | continue; /* no trap: nothing to do */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6196 | if (!G_traps[sig][0]) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6197 | continue; /* empty trap: has to remain SIG_IGN */ |
| 6198 | /* sig has non-empty trap, reset it: */ |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6199 | free(G_traps[sig]); |
| 6200 | G_traps[sig] = NULL; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 6201 | /* There is no signal for trap 0 (EXIT) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6202 | if (sig == 0) |
| 6203 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 6204 | install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6205 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6206 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6207 | } |
| 6208 | |
| 6209 | #else /* !BB_MMU */ |
| 6210 | |
| 6211 | static void re_execute_shell(char ***to_free, const char *s, |
| 6212 | char *g_argv0, char **g_argv, |
| 6213 | char **builtin_argv) NORETURN; |
| 6214 | static void re_execute_shell(char ***to_free, const char *s, |
| 6215 | char *g_argv0, char **g_argv, |
| 6216 | char **builtin_argv) |
| 6217 | { |
| 6218 | # define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x")) |
| 6219 | /* delims + 2 * (number of bytes in printed hex numbers) */ |
| 6220 | char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)]; |
| 6221 | char *heredoc_argv[4]; |
| 6222 | struct variable *cur; |
| 6223 | # if ENABLE_HUSH_FUNCTIONS |
| 6224 | struct function *funcp; |
| 6225 | # endif |
| 6226 | char **argv, **pp; |
| 6227 | unsigned cnt; |
| 6228 | unsigned long long empty_trap_mask; |
| 6229 | |
| 6230 | if (!g_argv0) { /* heredoc */ |
| 6231 | argv = heredoc_argv; |
| 6232 | argv[0] = (char *) G.argv0_for_re_execing; |
| 6233 | argv[1] = (char *) "-<"; |
| 6234 | argv[2] = (char *) s; |
| 6235 | argv[3] = NULL; |
| 6236 | pp = &argv[3]; /* used as pointer to empty environment */ |
| 6237 | goto do_exec; |
| 6238 | } |
| 6239 | |
| 6240 | cnt = 0; |
| 6241 | pp = builtin_argv; |
| 6242 | if (pp) while (*pp++) |
| 6243 | cnt++; |
| 6244 | |
| 6245 | empty_trap_mask = 0; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6246 | if (G_traps) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6247 | int sig; |
| 6248 | for (sig = 1; sig < NSIG; sig++) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6249 | if (G_traps[sig] && !G_traps[sig][0]) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6250 | empty_trap_mask |= 1LL << sig; |
| 6251 | } |
| 6252 | } |
| 6253 | |
| 6254 | sprintf(param_buf, NOMMU_HACK_FMT |
| 6255 | , (unsigned) G.root_pid |
| 6256 | , (unsigned) G.root_ppid |
| 6257 | , (unsigned) G.last_bg_pid |
| 6258 | , (unsigned) G.last_exitcode |
| 6259 | , cnt |
| 6260 | , empty_trap_mask |
| 6261 | IF_HUSH_LOOPS(, G.depth_of_loop) |
| 6262 | ); |
| 6263 | # undef NOMMU_HACK_FMT |
| 6264 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...> |
| 6265 | * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL |
| 6266 | */ |
| 6267 | cnt += 6; |
| 6268 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6269 | if (!cur->flg_export || cur->flg_read_only) |
| 6270 | cnt += 2; |
| 6271 | } |
| 6272 | # if ENABLE_HUSH_FUNCTIONS |
| 6273 | for (funcp = G.top_func; funcp; funcp = funcp->next) |
| 6274 | cnt += 3; |
| 6275 | # endif |
| 6276 | pp = g_argv; |
| 6277 | while (*pp++) |
| 6278 | cnt++; |
| 6279 | *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt); |
| 6280 | *pp++ = (char *) G.argv0_for_re_execing; |
| 6281 | *pp++ = param_buf; |
| 6282 | for (cur = G.top_var; cur; cur = cur->next) { |
| 6283 | if (strcmp(cur->varstr, hush_version_str) == 0) |
| 6284 | continue; |
| 6285 | if (cur->flg_read_only) { |
| 6286 | *pp++ = (char *) "-R"; |
| 6287 | *pp++ = cur->varstr; |
| 6288 | } else if (!cur->flg_export) { |
| 6289 | *pp++ = (char *) "-V"; |
| 6290 | *pp++ = cur->varstr; |
| 6291 | } |
| 6292 | } |
| 6293 | # if ENABLE_HUSH_FUNCTIONS |
| 6294 | for (funcp = G.top_func; funcp; funcp = funcp->next) { |
| 6295 | *pp++ = (char *) "-F"; |
| 6296 | *pp++ = funcp->name; |
| 6297 | *pp++ = funcp->body_as_string; |
| 6298 | } |
| 6299 | # endif |
| 6300 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 6301 | * |
| 6302 | * However, POSIX says that subshells reset signals with traps |
| 6303 | * to SIG_DFL. |
| 6304 | * I tested bash-3.2 and it not only does that with true subshells |
| 6305 | * of the form ( list ), but with any forked children shells. |
| 6306 | * I set trap "echo W" WINCH; and then tried: |
| 6307 | * |
| 6308 | * { echo 1; sleep 20; echo 2; } & |
| 6309 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 6310 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 6311 | * |
| 6312 | * In all these cases sending SIGWINCH to the child shell |
| 6313 | * did not run the trap. If I add trap "echo V" WINCH; |
| 6314 | * _inside_ group (just before echo 1), it works. |
| 6315 | * |
| 6316 | * 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] | 6317 | */ |
| 6318 | *pp++ = (char *) "-c"; |
| 6319 | *pp++ = (char *) s; |
| 6320 | if (builtin_argv) { |
| 6321 | while (*++builtin_argv) |
| 6322 | *pp++ = *builtin_argv; |
| 6323 | *pp++ = (char *) ""; |
| 6324 | } |
| 6325 | *pp++ = g_argv0; |
| 6326 | while (*g_argv) |
| 6327 | *pp++ = *g_argv++; |
| 6328 | /* *pp = NULL; - is already there */ |
| 6329 | pp = environ; |
| 6330 | |
| 6331 | do_exec: |
| 6332 | 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] | 6333 | /* Don't propagate SIG_IGN to the child */ |
| 6334 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 6335 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6336 | execve(bb_busybox_exec_path, argv, pp); |
| 6337 | /* Fallback. Useful for init=/bin/hush usage etc */ |
| 6338 | if (argv[0][0] == '/') |
| 6339 | execve(argv[0], argv, pp); |
| 6340 | xfunc_error_retval = 127; |
| 6341 | bb_error_msg_and_die("can't re-execute the shell"); |
| 6342 | } |
| 6343 | #endif /* !BB_MMU */ |
| 6344 | |
| 6345 | |
| 6346 | static int run_and_free_list(struct pipe *pi); |
| 6347 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6348 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6349 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 6350 | * end_trigger controls how often we stop parsing |
| 6351 | * NUL: parse all, execute, return |
| 6352 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 6353 | */ |
| 6354 | 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] | 6355 | { |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6356 | /* Why we need empty flag? |
| 6357 | * An obscure corner case "false; ``; echo $?": |
| 6358 | * empty command in `` should still set $? to 0. |
| 6359 | * But we can't just set $? to 0 at the start, |
| 6360 | * this breaks "false; echo `echo $?`" case. |
| 6361 | */ |
| 6362 | bool empty = 1; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6363 | while (1) { |
| 6364 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 6365 | |
Denys Vlasenko | a146319 | 2011-01-18 17:55:04 +0100 | [diff] [blame] | 6366 | #if ENABLE_HUSH_INTERACTIVE |
| 6367 | if (end_trigger == ';') |
| 6368 | inp->promptmode = 0; /* PS1 */ |
| 6369 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 6370 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denys Vlasenko | cecbc98 | 2011-03-30 18:54:52 +0200 | [diff] [blame] | 6371 | if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */ |
| 6372 | /* If we are in "big" script |
| 6373 | * (not in `cmd` or something similar)... |
| 6374 | */ |
| 6375 | if (pipe_list == ERR_PTR && end_trigger == ';') { |
| 6376 | /* Discard cached input (rest of line) */ |
| 6377 | int ch = inp->last_char; |
| 6378 | while (ch != EOF && ch != '\n') { |
| 6379 | //bb_error_msg("Discarded:'%c'", ch); |
| 6380 | ch = i_getch(inp); |
| 6381 | } |
| 6382 | /* Force prompt */ |
| 6383 | inp->p = NULL; |
| 6384 | /* This stream isn't empty */ |
| 6385 | empty = 0; |
| 6386 | continue; |
| 6387 | } |
| 6388 | if (!pipe_list && empty) |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6389 | G.last_exitcode = 0; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6390 | break; |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6391 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6392 | debug_print_tree(pipe_list, 0); |
| 6393 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 6394 | run_and_free_list(pipe_list); |
Denys Vlasenko | 00243b0 | 2009-11-16 02:00:03 +0100 | [diff] [blame] | 6395 | empty = 0; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 6396 | if (G_flag_return_in_progress == 1) |
Denys Vlasenko | 68d5cb5 | 2011-03-24 02:50:03 +0100 | [diff] [blame] | 6397 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6398 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6399 | } |
| 6400 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6401 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6402 | { |
| 6403 | struct in_str input; |
| 6404 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6405 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6406 | } |
| 6407 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6408 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6409 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6410 | struct in_str input; |
| 6411 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6412 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 6413 | } |
| 6414 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6415 | #if ENABLE_HUSH_TICK |
| 6416 | static FILE *generate_stream_from_string(const char *s, pid_t *pid_p) |
| 6417 | { |
| 6418 | pid_t pid; |
| 6419 | int channel[2]; |
| 6420 | # if !BB_MMU |
| 6421 | char **to_free = NULL; |
| 6422 | # endif |
| 6423 | |
| 6424 | xpipe(channel); |
| 6425 | pid = BB_MMU ? xfork() : xvfork(); |
| 6426 | if (pid == 0) { /* child */ |
| 6427 | disable_restore_tty_pgrp_on_exit(); |
| 6428 | /* Process substitution is not considered to be usual |
| 6429 | * 'command execution'. |
| 6430 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 6431 | */ |
| 6432 | bb_signals(0 |
| 6433 | + (1 << SIGTSTP) |
| 6434 | + (1 << SIGTTIN) |
| 6435 | + (1 << SIGTTOU) |
| 6436 | , SIG_IGN); |
| 6437 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 6438 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 6439 | xmove_fd(channel[1], 1); |
| 6440 | /* Prevent it from trying to handle ctrl-z etc */ |
| 6441 | IF_HUSH_JOB(G.run_list_level = 1;) |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6442 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6443 | /* Awful hack for `trap` or $(trap). |
| 6444 | * |
| 6445 | * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html |
| 6446 | * contains an example where "trap" is executed in a subshell: |
| 6447 | * |
| 6448 | * save_traps=$(trap) |
| 6449 | * ... |
| 6450 | * eval "$save_traps" |
| 6451 | * |
| 6452 | * Standard does not say that "trap" in subshell shall print |
| 6453 | * parent shell's traps. It only says that its output |
| 6454 | * must have suitable form, but then, in the above example |
| 6455 | * (which is not supposed to be normative), it implies that. |
| 6456 | * |
| 6457 | * bash (and probably other shell) does implement it |
| 6458 | * (traps are reset to defaults, but "trap" still shows them), |
| 6459 | * but as a result, "trap" logic is hopelessly messed up: |
| 6460 | * |
| 6461 | * # trap |
| 6462 | * trap -- 'echo Ho' SIGWINCH <--- we have a handler |
| 6463 | * # (trap) <--- trap is in subshell - no output (correct, traps are reset) |
| 6464 | * # true | trap <--- trap is in subshell - no output (ditto) |
| 6465 | * # echo `true | trap` <--- in subshell - output (but traps are reset!) |
| 6466 | * trap -- 'echo Ho' SIGWINCH |
| 6467 | * # echo `(trap)` <--- in subshell in subshell - output |
| 6468 | * trap -- 'echo Ho' SIGWINCH |
| 6469 | * # echo `true | (trap)` <--- in subshell in subshell in subshell - output! |
| 6470 | * trap -- 'echo Ho' SIGWINCH |
| 6471 | * |
| 6472 | * The rules when to forget and when to not forget traps |
| 6473 | * get really complex and nonsensical. |
| 6474 | * |
| 6475 | * Our solution: ONLY bare $(trap) or `trap` is special. |
| 6476 | */ |
| 6477 | s = skip_whitespace(s); |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 6478 | if (is_prefixed_with(s, "trap") |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6479 | && skip_whitespace(s + 4)[0] == '\0' |
| 6480 | ) { |
| 6481 | static const char *const argv[] = { NULL, NULL }; |
| 6482 | builtin_trap((char**)argv); |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 6483 | fflush_all(); /* important */ |
| 6484 | _exit(0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6485 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 6486 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6487 | # if BB_MMU |
| 6488 | reset_traps_to_defaults(); |
| 6489 | parse_and_run_string(s); |
| 6490 | _exit(G.last_exitcode); |
| 6491 | # else |
| 6492 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
| 6493 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 6494 | * huge=`cat BIG` # was blocking here forever |
| 6495 | * echo OK |
| 6496 | */ |
| 6497 | re_execute_shell(&to_free, |
| 6498 | s, |
| 6499 | G.global_argv[0], |
| 6500 | G.global_argv + 1, |
| 6501 | NULL); |
| 6502 | # endif |
| 6503 | } |
| 6504 | |
| 6505 | /* parent */ |
| 6506 | *pid_p = pid; |
| 6507 | # if ENABLE_HUSH_FAST |
| 6508 | G.count_SIGCHLD++; |
| 6509 | //bb_error_msg("[%d] fork in generate_stream_from_string:" |
| 6510 | // " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", |
| 6511 | // getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6512 | # endif |
| 6513 | enable_restore_tty_pgrp_on_exit(); |
| 6514 | # if !BB_MMU |
| 6515 | free(to_free); |
| 6516 | # endif |
| 6517 | close(channel[1]); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6518 | return remember_FILE(xfdopen_for_read(channel[0])); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6519 | } |
| 6520 | |
| 6521 | /* Return code is exit status of the process that is run. */ |
| 6522 | static int process_command_subs(o_string *dest, const char *s) |
| 6523 | { |
| 6524 | FILE *fp; |
| 6525 | struct in_str pipe_str; |
| 6526 | pid_t pid; |
| 6527 | int status, ch, eol_cnt; |
| 6528 | |
| 6529 | fp = generate_stream_from_string(s, &pid); |
| 6530 | |
| 6531 | /* Now send results of command back into original context */ |
| 6532 | setup_file_in_str(&pipe_str, fp); |
| 6533 | eol_cnt = 0; |
| 6534 | while ((ch = i_getch(&pipe_str)) != EOF) { |
| 6535 | if (ch == '\n') { |
| 6536 | eol_cnt++; |
| 6537 | continue; |
| 6538 | } |
| 6539 | while (eol_cnt) { |
| 6540 | o_addchr(dest, '\n'); |
| 6541 | eol_cnt--; |
| 6542 | } |
| 6543 | o_addQchr(dest, ch); |
| 6544 | } |
| 6545 | |
| 6546 | debug_printf("done reading from `cmd` pipe, closing it\n"); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 6547 | fclose_and_forget(fp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6548 | /* We need to extract exitcode. Test case |
| 6549 | * "true; echo `sleep 1; false` $?" |
| 6550 | * should print 1 */ |
| 6551 | safe_waitpid(pid, &status, 0); |
| 6552 | debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status)); |
| 6553 | return WEXITSTATUS(status); |
| 6554 | } |
| 6555 | #endif /* ENABLE_HUSH_TICK */ |
| 6556 | |
| 6557 | |
| 6558 | static void setup_heredoc(struct redir_struct *redir) |
| 6559 | { |
| 6560 | struct fd_pair pair; |
| 6561 | pid_t pid; |
| 6562 | int len, written; |
| 6563 | /* the _body_ of heredoc (misleading field name) */ |
| 6564 | const char *heredoc = redir->rd_filename; |
| 6565 | char *expanded; |
| 6566 | #if !BB_MMU |
| 6567 | char **to_free; |
| 6568 | #endif |
| 6569 | |
| 6570 | expanded = NULL; |
| 6571 | if (!(redir->rd_dup & HEREDOC_QUOTED)) { |
Denys Vlasenko | d98e5c6 | 2010-09-10 10:44:23 +0200 | [diff] [blame] | 6572 | expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6573 | if (expanded) |
| 6574 | heredoc = expanded; |
| 6575 | } |
| 6576 | len = strlen(heredoc); |
| 6577 | |
| 6578 | close(redir->rd_fd); /* often saves dup2+close in xmove_fd */ |
| 6579 | xpiped_pair(pair); |
| 6580 | xmove_fd(pair.rd, redir->rd_fd); |
| 6581 | |
| 6582 | /* Try writing without forking. Newer kernels have |
| 6583 | * dynamically growing pipes. Must use non-blocking write! */ |
| 6584 | ndelay_on(pair.wr); |
| 6585 | while (1) { |
| 6586 | written = write(pair.wr, heredoc, len); |
| 6587 | if (written <= 0) |
| 6588 | break; |
| 6589 | len -= written; |
| 6590 | if (len == 0) { |
| 6591 | close(pair.wr); |
| 6592 | free(expanded); |
| 6593 | return; |
| 6594 | } |
| 6595 | heredoc += written; |
| 6596 | } |
| 6597 | ndelay_off(pair.wr); |
| 6598 | |
| 6599 | /* Okay, pipe buffer was not big enough */ |
| 6600 | /* Note: we must not create a stray child (bastard? :) |
| 6601 | * for the unsuspecting parent process. Child creates a grandchild |
| 6602 | * and exits before parent execs the process which consumes heredoc |
| 6603 | * (that exec happens after we return from this function) */ |
| 6604 | #if !BB_MMU |
| 6605 | to_free = NULL; |
| 6606 | #endif |
| 6607 | pid = xvfork(); |
| 6608 | if (pid == 0) { |
| 6609 | /* child */ |
| 6610 | disable_restore_tty_pgrp_on_exit(); |
| 6611 | pid = BB_MMU ? xfork() : xvfork(); |
| 6612 | if (pid != 0) |
| 6613 | _exit(0); |
| 6614 | /* grandchild */ |
| 6615 | close(redir->rd_fd); /* read side of the pipe */ |
| 6616 | #if BB_MMU |
| 6617 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
| 6618 | _exit(0); |
| 6619 | #else |
| 6620 | /* Delegate blocking writes to another process */ |
| 6621 | xmove_fd(pair.wr, STDOUT_FILENO); |
| 6622 | re_execute_shell(&to_free, heredoc, NULL, NULL, NULL); |
| 6623 | #endif |
| 6624 | } |
| 6625 | /* parent */ |
| 6626 | #if ENABLE_HUSH_FAST |
| 6627 | G.count_SIGCHLD++; |
| 6628 | //bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 6629 | #endif |
| 6630 | enable_restore_tty_pgrp_on_exit(); |
| 6631 | #if !BB_MMU |
| 6632 | free(to_free); |
| 6633 | #endif |
| 6634 | close(pair.wr); |
| 6635 | free(expanded); |
| 6636 | wait(NULL); /* wait till child has died */ |
| 6637 | } |
| 6638 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6639 | struct squirrel { |
| 6640 | int orig_fd; |
| 6641 | int moved_to; |
| 6642 | /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */ |
| 6643 | /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */ |
| 6644 | }; |
| 6645 | |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame^] | 6646 | static struct squirrel *append_squirrel(struct squirrel *sq, int i, int orig, int moved) |
| 6647 | { |
| 6648 | sq = xrealloc(sq, (i + 2) * sizeof(sq[0])); |
| 6649 | sq[i].orig_fd = orig; |
| 6650 | sq[i].moved_to = moved; |
| 6651 | sq[i+1].orig_fd = -1; /* end marker */ |
| 6652 | return sq; |
| 6653 | } |
| 6654 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6655 | static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd) |
| 6656 | { |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame^] | 6657 | int moved_to; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6658 | int i = 0; |
| 6659 | |
| 6660 | if (sq) while (sq[i].orig_fd >= 0) { |
| 6661 | /* If we collide with an already moved fd... */ |
| 6662 | if (fd == sq[i].moved_to) { |
| 6663 | sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd); |
| 6664 | debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to); |
| 6665 | if (sq[i].moved_to < 0) /* what? */ |
| 6666 | xfunc_die(); |
| 6667 | return sq; |
| 6668 | } |
| 6669 | if (fd == sq[i].orig_fd) { |
| 6670 | /* Example: echo Hello >/dev/null 1>&2 */ |
| 6671 | debug_printf_redir("redirect_fd %d: already moved\n", fd); |
| 6672 | return sq; |
| 6673 | } |
| 6674 | i++; |
| 6675 | } |
| 6676 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6677 | /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */ |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame^] | 6678 | moved_to = fcntl_F_DUPFD(fd, avoid_fd); |
| 6679 | debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, moved_to); |
| 6680 | if (moved_to < 0 && errno != EBADF) |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6681 | xfunc_die(); |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame^] | 6682 | return append_squirrel(sq, i, fd, moved_to); |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6683 | } |
| 6684 | |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6685 | /* fd: redirect wants this fd to be used (e.g. 3>file). |
| 6686 | * Move all conflicting internally used fds, |
| 6687 | * and remember them so that we can restore them later. |
| 6688 | */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6689 | static int save_fds_on_redirect(int fd, int avoid_fd, struct squirrel **sqp) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6690 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6691 | if (avoid_fd < 9) /* the important case here is that it can be -1 */ |
| 6692 | avoid_fd = 9; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6693 | |
| 6694 | #if ENABLE_HUSH_INTERACTIVE |
| 6695 | if (fd != 0 && fd == G.interactive_fd) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6696 | G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC, avoid_fd); |
| 6697 | debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd); |
| 6698 | return 1; /* "we closed fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6699 | } |
| 6700 | #endif |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6701 | /* Are we called from setup_redirects(squirrel==NULL)? Two cases: |
| 6702 | * (1) Redirect in a forked child. No need to save FILEs' fds, |
| 6703 | * we aren't going to use them anymore, ok to trash. |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6704 | * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds, |
| 6705 | * but how are we doing to restore them? |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6706 | * "fileno(fd) = new_fd" can't be done. |
| 6707 | */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6708 | if (!sqp) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6709 | return 0; |
| 6710 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6711 | /* If this one of script's fds? */ |
| 6712 | if (save_FILEs_on_redirect(fd, avoid_fd)) |
| 6713 | return 1; /* yes. "we closed fd" */ |
| 6714 | |
| 6715 | /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */ |
| 6716 | *sqp = add_squirrel(*sqp, fd, avoid_fd); |
| 6717 | return 0; /* "we did not close fd" */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6718 | } |
| 6719 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6720 | static void restore_redirects(struct squirrel *sq) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6721 | { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6722 | |
| 6723 | if (sq) { |
| 6724 | int i = 0; |
| 6725 | while (sq[i].orig_fd >= 0) { |
| 6726 | if (sq[i].moved_to >= 0) { |
| 6727 | /* We simply die on error */ |
| 6728 | debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd); |
| 6729 | xmove_fd(sq[i].moved_to, sq[i].orig_fd); |
| 6730 | } else { |
| 6731 | /* cmd1 9>FILE; cmd2_should_see_fd9_closed */ |
| 6732 | debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd); |
| 6733 | close(sq[i].orig_fd); |
| 6734 | } |
| 6735 | i++; |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6736 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6737 | free(sq); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6738 | } |
| 6739 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6740 | /* If moved, G.interactive_fd stays on new fd, not restoring it */ |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6741 | |
| 6742 | restore_redirected_FILEs(); |
| 6743 | } |
| 6744 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6745 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 6746 | * and stderr if they are redirected. */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6747 | static int setup_redirects(struct command *prog, struct squirrel **sqp) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6748 | { |
| 6749 | int openfd, mode; |
| 6750 | struct redir_struct *redir; |
| 6751 | |
| 6752 | for (redir = prog->redirects; redir; redir = redir->next) { |
| 6753 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 6754 | /* "rd_fd<<HERE" case */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6755 | save_fds_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6756 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 6757 | * of the heredoc */ |
| 6758 | debug_printf_parse("set heredoc '%s'\n", |
| 6759 | redir->rd_filename); |
| 6760 | setup_heredoc(redir); |
| 6761 | continue; |
| 6762 | } |
| 6763 | |
| 6764 | if (redir->rd_dup == REDIRFD_TO_FILE) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 6765 | /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6766 | char *p; |
| 6767 | if (redir->rd_filename == NULL) { |
Denys Vlasenko | d6a37d8 | 2016-09-20 16:22:24 +0200 | [diff] [blame] | 6768 | /* |
| 6769 | * Examples: |
| 6770 | * "cmd >" (no filename) |
| 6771 | * "cmd > <file" (2nd redirect starts too early) |
| 6772 | */ |
| 6773 | die_if_script("syntax error: %s", "invalid redirect"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6774 | continue; |
| 6775 | } |
| 6776 | mode = redir_table[redir->rd_type].mode; |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 6777 | p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6778 | openfd = open_or_warn(p, mode); |
| 6779 | free(p); |
| 6780 | if (openfd < 0) { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 6781 | /* Error message from open_or_warn can be lost |
| 6782 | * if stderr has been redirected, but bash |
| 6783 | * and ash both lose it as well |
| 6784 | * (though zsh doesn't!) |
| 6785 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6786 | return 1; |
| 6787 | } |
Denys Vlasenko | 621fc50 | 2017-07-24 12:42:17 +0200 | [diff] [blame^] | 6788 | if (openfd == redir->rd_fd && sqp) { |
| 6789 | /* open() gave us precisely the fd we wanted. |
| 6790 | * This means that this fd was not busy |
| 6791 | * (not opened to anywhere). |
| 6792 | * Remember to close it on restore: |
| 6793 | */ |
| 6794 | struct squirrel *sq = *sqp; |
| 6795 | int i = 0; |
| 6796 | if (sq) while (sq[i].orig_fd >= 0) |
| 6797 | i++; |
| 6798 | *sqp = append_squirrel(sq, i, openfd, -1); /* -1 = "it was closed" */ |
| 6799 | debug_printf_redir("redir to previously closed fd %d\n", openfd); |
| 6800 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6801 | } else { |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 6802 | /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6803 | openfd = redir->rd_dup; |
| 6804 | } |
| 6805 | |
| 6806 | if (openfd != redir->rd_fd) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 6807 | int closed = save_fds_on_redirect(redir->rd_fd, /*avoid:*/ openfd, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6808 | if (openfd == REDIRFD_CLOSE) { |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6809 | /* "rd_fd >&-" means "close me" */ |
| 6810 | if (!closed) { |
| 6811 | /* ^^^ optimization: saving may already |
| 6812 | * have closed it. If not... */ |
| 6813 | close(redir->rd_fd); |
| 6814 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6815 | } else { |
| 6816 | xdup2(openfd, redir->rd_fd); |
| 6817 | if (redir->rd_dup == REDIRFD_TO_FILE) |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6818 | /* "rd_fd > FILE" */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6819 | close(openfd); |
Denys Vlasenko | aa3576a | 2016-08-22 19:54:12 +0200 | [diff] [blame] | 6820 | /* else: "rd_fd > rd_dup" */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6821 | } |
| 6822 | } |
| 6823 | } |
| 6824 | return 0; |
| 6825 | } |
| 6826 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6827 | static char *find_in_path(const char *arg) |
| 6828 | { |
| 6829 | char *ret = NULL; |
| 6830 | const char *PATH = get_local_var_value("PATH"); |
| 6831 | |
| 6832 | if (!PATH) |
| 6833 | return NULL; |
| 6834 | |
| 6835 | while (1) { |
| 6836 | const char *end = strchrnul(PATH, ':'); |
| 6837 | int sz = end - PATH; /* must be int! */ |
| 6838 | |
| 6839 | free(ret); |
| 6840 | if (sz != 0) { |
| 6841 | ret = xasprintf("%.*s/%s", sz, PATH, arg); |
| 6842 | } else { |
| 6843 | /* We have xxx::yyyy in $PATH, |
| 6844 | * it means "use current dir" */ |
| 6845 | ret = xstrdup(arg); |
| 6846 | } |
| 6847 | if (access(ret, F_OK) == 0) |
| 6848 | break; |
| 6849 | |
| 6850 | if (*end == '\0') { |
| 6851 | free(ret); |
| 6852 | return NULL; |
| 6853 | } |
| 6854 | PATH = end + 1; |
| 6855 | } |
| 6856 | |
| 6857 | return ret; |
| 6858 | } |
| 6859 | |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6860 | static const struct built_in_command *find_builtin_helper(const char *name, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6861 | const struct built_in_command *x, |
| 6862 | const struct built_in_command *end) |
| 6863 | { |
| 6864 | while (x != end) { |
| 6865 | if (strcmp(name, x->b_cmd) != 0) { |
| 6866 | x++; |
| 6867 | continue; |
| 6868 | } |
| 6869 | debug_printf_exec("found builtin '%s'\n", name); |
| 6870 | return x; |
| 6871 | } |
| 6872 | return NULL; |
| 6873 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6874 | static const struct built_in_command *find_builtin1(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6875 | { |
| 6876 | return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]); |
| 6877 | } |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 6878 | static const struct built_in_command *find_builtin(const char *name) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6879 | { |
| 6880 | const struct built_in_command *x = find_builtin1(name); |
| 6881 | if (x) |
| 6882 | return x; |
| 6883 | return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]); |
| 6884 | } |
| 6885 | |
| 6886 | #if ENABLE_HUSH_FUNCTIONS |
| 6887 | static struct function **find_function_slot(const char *name) |
| 6888 | { |
| 6889 | struct function **funcpp = &G.top_func; |
| 6890 | while (*funcpp) { |
| 6891 | if (strcmp(name, (*funcpp)->name) == 0) { |
| 6892 | break; |
| 6893 | } |
| 6894 | funcpp = &(*funcpp)->next; |
| 6895 | } |
| 6896 | return funcpp; |
| 6897 | } |
| 6898 | |
| 6899 | static const struct function *find_function(const char *name) |
| 6900 | { |
| 6901 | const struct function *funcp = *find_function_slot(name); |
| 6902 | if (funcp) |
| 6903 | debug_printf_exec("found function '%s'\n", name); |
| 6904 | return funcp; |
| 6905 | } |
| 6906 | |
| 6907 | /* Note: takes ownership on name ptr */ |
| 6908 | static struct function *new_function(char *name) |
| 6909 | { |
| 6910 | struct function **funcpp = find_function_slot(name); |
| 6911 | struct function *funcp = *funcpp; |
| 6912 | |
| 6913 | if (funcp != NULL) { |
| 6914 | struct command *cmd = funcp->parent_cmd; |
| 6915 | debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd); |
| 6916 | if (!cmd) { |
| 6917 | debug_printf_exec("freeing & replacing function '%s'\n", funcp->name); |
| 6918 | free(funcp->name); |
| 6919 | /* Note: if !funcp->body, do not free body_as_string! |
| 6920 | * This is a special case of "-F name body" function: |
| 6921 | * body_as_string was not malloced! */ |
| 6922 | if (funcp->body) { |
| 6923 | free_pipe_list(funcp->body); |
| 6924 | # if !BB_MMU |
| 6925 | free(funcp->body_as_string); |
| 6926 | # endif |
| 6927 | } |
| 6928 | } else { |
| 6929 | debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name); |
| 6930 | cmd->argv[0] = funcp->name; |
| 6931 | cmd->group = funcp->body; |
| 6932 | # if !BB_MMU |
| 6933 | cmd->group_as_string = funcp->body_as_string; |
| 6934 | # endif |
| 6935 | } |
| 6936 | } else { |
| 6937 | debug_printf_exec("remembering new function '%s'\n", name); |
| 6938 | funcp = *funcpp = xzalloc(sizeof(*funcp)); |
| 6939 | /*funcp->next = NULL;*/ |
| 6940 | } |
| 6941 | |
| 6942 | funcp->name = name; |
| 6943 | return funcp; |
| 6944 | } |
| 6945 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 6946 | # if ENABLE_HUSH_UNSET |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6947 | static void unset_func(const char *name) |
| 6948 | { |
| 6949 | struct function **funcpp = find_function_slot(name); |
| 6950 | struct function *funcp = *funcpp; |
| 6951 | |
| 6952 | if (funcp != NULL) { |
| 6953 | debug_printf_exec("freeing function '%s'\n", funcp->name); |
| 6954 | *funcpp = funcp->next; |
| 6955 | /* funcp is unlinked now, deleting it. |
| 6956 | * Note: if !funcp->body, the function was created by |
| 6957 | * "-F name body", do not free ->body_as_string |
| 6958 | * and ->name as they were not malloced. */ |
| 6959 | if (funcp->body) { |
| 6960 | free_pipe_list(funcp->body); |
| 6961 | free(funcp->name); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 6962 | # if !BB_MMU |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6963 | free(funcp->body_as_string); |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 6964 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6965 | } |
| 6966 | free(funcp); |
| 6967 | } |
| 6968 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 6969 | # endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6970 | |
| 6971 | # if BB_MMU |
| 6972 | #define exec_function(to_free, funcp, argv) \ |
| 6973 | exec_function(funcp, argv) |
| 6974 | # endif |
| 6975 | static void exec_function(char ***to_free, |
| 6976 | const struct function *funcp, |
| 6977 | char **argv) NORETURN; |
| 6978 | static void exec_function(char ***to_free, |
| 6979 | const struct function *funcp, |
| 6980 | char **argv) |
| 6981 | { |
| 6982 | # if BB_MMU |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 6983 | int n; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6984 | |
| 6985 | argv[0] = G.global_argv[0]; |
| 6986 | G.global_argv = argv; |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 6987 | G.global_argc = n = 1 + string_array_len(argv + 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 6988 | /* On MMU, funcp->body is always non-NULL */ |
| 6989 | n = run_list(funcp->body); |
| 6990 | fflush_all(); |
| 6991 | _exit(n); |
| 6992 | # else |
| 6993 | re_execute_shell(to_free, |
| 6994 | funcp->body_as_string, |
| 6995 | G.global_argv[0], |
| 6996 | argv + 1, |
| 6997 | NULL); |
| 6998 | # endif |
| 6999 | } |
| 7000 | |
| 7001 | static int run_function(const struct function *funcp, char **argv) |
| 7002 | { |
| 7003 | int rc; |
| 7004 | save_arg_t sv; |
| 7005 | smallint sv_flg; |
| 7006 | |
| 7007 | save_and_replace_G_args(&sv, argv); |
| 7008 | |
| 7009 | /* "we are in function, ok to use return" */ |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7010 | sv_flg = G_flag_return_in_progress; |
| 7011 | G_flag_return_in_progress = -1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7012 | # if ENABLE_HUSH_LOCAL |
| 7013 | G.func_nest_level++; |
| 7014 | # endif |
| 7015 | |
| 7016 | /* On MMU, funcp->body is always non-NULL */ |
| 7017 | # if !BB_MMU |
| 7018 | if (!funcp->body) { |
| 7019 | /* Function defined by -F */ |
| 7020 | parse_and_run_string(funcp->body_as_string); |
| 7021 | rc = G.last_exitcode; |
| 7022 | } else |
| 7023 | # endif |
| 7024 | { |
| 7025 | rc = run_list(funcp->body); |
| 7026 | } |
| 7027 | |
| 7028 | # if ENABLE_HUSH_LOCAL |
| 7029 | { |
| 7030 | struct variable *var; |
| 7031 | struct variable **var_pp; |
| 7032 | |
| 7033 | var_pp = &G.top_var; |
| 7034 | while ((var = *var_pp) != NULL) { |
| 7035 | if (var->func_nest_level < G.func_nest_level) { |
| 7036 | var_pp = &var->next; |
| 7037 | continue; |
| 7038 | } |
| 7039 | /* Unexport */ |
| 7040 | if (var->flg_export) |
| 7041 | bb_unsetenv(var->varstr); |
| 7042 | /* Remove from global list */ |
| 7043 | *var_pp = var->next; |
| 7044 | /* Free */ |
| 7045 | if (!var->max_len) |
| 7046 | free(var->varstr); |
| 7047 | free(var); |
| 7048 | } |
| 7049 | G.func_nest_level--; |
| 7050 | } |
| 7051 | # endif |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 7052 | G_flag_return_in_progress = sv_flg; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7053 | |
| 7054 | restore_G_args(&sv, argv); |
| 7055 | |
| 7056 | return rc; |
| 7057 | } |
| 7058 | #endif /* ENABLE_HUSH_FUNCTIONS */ |
| 7059 | |
| 7060 | |
| 7061 | #if BB_MMU |
| 7062 | #define exec_builtin(to_free, x, argv) \ |
| 7063 | exec_builtin(x, argv) |
| 7064 | #else |
| 7065 | #define exec_builtin(to_free, x, argv) \ |
| 7066 | exec_builtin(to_free, argv) |
| 7067 | #endif |
| 7068 | static void exec_builtin(char ***to_free, |
| 7069 | const struct built_in_command *x, |
| 7070 | char **argv) NORETURN; |
| 7071 | static void exec_builtin(char ***to_free, |
| 7072 | const struct built_in_command *x, |
| 7073 | char **argv) |
| 7074 | { |
| 7075 | #if BB_MMU |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7076 | int rcode; |
| 7077 | fflush_all(); |
| 7078 | rcode = x->b_function(argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7079 | fflush_all(); |
| 7080 | _exit(rcode); |
| 7081 | #else |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7082 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7083 | /* On NOMMU, we must never block! |
| 7084 | * Example: { sleep 99 | read line; } & echo Ok |
| 7085 | */ |
| 7086 | re_execute_shell(to_free, |
| 7087 | argv[0], |
| 7088 | G.global_argv[0], |
| 7089 | G.global_argv + 1, |
| 7090 | argv); |
| 7091 | #endif |
| 7092 | } |
| 7093 | |
| 7094 | |
| 7095 | static void execvp_or_die(char **argv) NORETURN; |
| 7096 | static void execvp_or_die(char **argv) |
| 7097 | { |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7098 | int e; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7099 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7100 | /* Don't propagate SIG_IGN to the child */ |
| 7101 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7102 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7103 | execvp(argv[0], argv); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7104 | e = 2; |
| 7105 | if (errno == EACCES) e = 126; |
| 7106 | if (errno == ENOENT) e = 127; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7107 | bb_perror_msg("can't execute '%s'", argv[0]); |
Denys Vlasenko | 04465da | 2016-10-03 01:01:15 +0200 | [diff] [blame] | 7108 | _exit(e); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7109 | } |
| 7110 | |
| 7111 | #if ENABLE_HUSH_MODE_X |
| 7112 | static void dump_cmd_in_x_mode(char **argv) |
| 7113 | { |
| 7114 | if (G_x_mode && argv) { |
| 7115 | /* We want to output the line in one write op */ |
| 7116 | char *buf, *p; |
| 7117 | int len; |
| 7118 | int n; |
| 7119 | |
| 7120 | len = 3; |
| 7121 | n = 0; |
| 7122 | while (argv[n]) |
| 7123 | len += strlen(argv[n++]) + 1; |
| 7124 | buf = xmalloc(len); |
| 7125 | buf[0] = '+'; |
| 7126 | p = buf + 1; |
| 7127 | n = 0; |
| 7128 | while (argv[n]) |
| 7129 | p += sprintf(p, " %s", argv[n++]); |
| 7130 | *p++ = '\n'; |
| 7131 | *p = '\0'; |
| 7132 | fputs(buf, stderr); |
| 7133 | free(buf); |
| 7134 | } |
| 7135 | } |
| 7136 | #else |
| 7137 | # define dump_cmd_in_x_mode(argv) ((void)0) |
| 7138 | #endif |
| 7139 | |
| 7140 | #if BB_MMU |
| 7141 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 7142 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 7143 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 7144 | pseudo_exec(command, argv_expanded) |
| 7145 | #endif |
| 7146 | |
| 7147 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
| 7148 | * Never returns. |
| 7149 | * Don't exit() here. If you don't exec, use _exit instead. |
| 7150 | * The at_exit handlers apparently confuse the calling process, |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7151 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) |
Denys Vlasenko | 215b0ca | 2016-08-19 18:23:56 +0200 | [diff] [blame] | 7152 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7153 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7154 | char **argv, int assignment_cnt, |
| 7155 | char **argv_expanded) NORETURN; |
| 7156 | static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 7157 | char **argv, int assignment_cnt, |
| 7158 | char **argv_expanded) |
| 7159 | { |
| 7160 | char **new_env; |
| 7161 | |
| 7162 | new_env = expand_assignments(argv, assignment_cnt); |
| 7163 | dump_cmd_in_x_mode(new_env); |
| 7164 | |
| 7165 | if (!argv[assignment_cnt]) { |
| 7166 | /* Case when we are here: ... | var=val | ... |
| 7167 | * (note that we do not exit early, i.e., do not optimize out |
| 7168 | * expand_assignments(): think about ... | var=`sleep 1` | ... |
| 7169 | */ |
| 7170 | free_strings(new_env); |
| 7171 | _exit(EXIT_SUCCESS); |
| 7172 | } |
| 7173 | |
| 7174 | #if BB_MMU |
| 7175 | set_vars_and_save_old(new_env); |
| 7176 | free(new_env); /* optional */ |
| 7177 | /* we can also destroy set_vars_and_save_old's return value, |
| 7178 | * to save memory */ |
| 7179 | #else |
| 7180 | nommu_save->new_env = new_env; |
| 7181 | nommu_save->old_vars = set_vars_and_save_old(new_env); |
| 7182 | #endif |
| 7183 | |
| 7184 | if (argv_expanded) { |
| 7185 | argv = argv_expanded; |
| 7186 | } else { |
| 7187 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
| 7188 | #if !BB_MMU |
| 7189 | nommu_save->argv = argv; |
| 7190 | #endif |
| 7191 | } |
| 7192 | dump_cmd_in_x_mode(argv); |
| 7193 | |
| 7194 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7195 | if (strchr(argv[0], '/') != NULL) |
| 7196 | goto skip; |
| 7197 | #endif |
| 7198 | |
| 7199 | /* Check if the command matches any of the builtins. |
| 7200 | * Depending on context, this might be redundant. But it's |
| 7201 | * easier to waste a few CPU cycles than it is to figure out |
| 7202 | * if this is one of those cases. |
| 7203 | */ |
| 7204 | { |
| 7205 | /* On NOMMU, it is more expensive to re-execute shell |
| 7206 | * just in order to run echo or test builtin. |
| 7207 | * It's better to skip it here and run corresponding |
| 7208 | * non-builtin later. */ |
| 7209 | const struct built_in_command *x; |
| 7210 | x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]); |
| 7211 | if (x) { |
| 7212 | exec_builtin(&nommu_save->argv_from_re_execing, x, argv); |
| 7213 | } |
| 7214 | } |
| 7215 | #if ENABLE_HUSH_FUNCTIONS |
| 7216 | /* Check if the command matches any functions */ |
| 7217 | { |
| 7218 | const struct function *funcp = find_function(argv[0]); |
| 7219 | if (funcp) { |
| 7220 | exec_function(&nommu_save->argv_from_re_execing, funcp, argv); |
| 7221 | } |
| 7222 | } |
| 7223 | #endif |
| 7224 | |
| 7225 | #if ENABLE_FEATURE_SH_STANDALONE |
| 7226 | /* Check if the command matches any busybox applets */ |
| 7227 | { |
| 7228 | int a = find_applet_by_name(argv[0]); |
| 7229 | if (a >= 0) { |
| 7230 | # if BB_MMU /* see above why on NOMMU it is not allowed */ |
| 7231 | if (APPLET_IS_NOEXEC(a)) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 7232 | /* Do not leak open fds from opened script files etc */ |
| 7233 | close_all_FILE_list(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7234 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denys Vlasenko | 69a5ec9 | 2017-07-07 19:08:56 +0200 | [diff] [blame] | 7235 | run_applet_no_and_exit(a, argv[0], argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7236 | } |
| 7237 | # endif |
| 7238 | /* Re-exec ourselves */ |
| 7239 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denys Vlasenko | 75e77de | 2011-05-12 13:12:47 +0200 | [diff] [blame] | 7240 | /* Don't propagate SIG_IGN to the child */ |
| 7241 | if (SPECIAL_JOBSTOP_SIGS != 0) |
| 7242 | switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7243 | execv(bb_busybox_exec_path, argv); |
| 7244 | /* If they called chroot or otherwise made the binary no longer |
| 7245 | * executable, fall through */ |
| 7246 | } |
| 7247 | } |
| 7248 | #endif |
| 7249 | |
| 7250 | #if ENABLE_FEATURE_SH_STANDALONE || BB_MMU |
| 7251 | skip: |
| 7252 | #endif |
| 7253 | execvp_or_die(argv); |
| 7254 | } |
| 7255 | |
| 7256 | /* Called after [v]fork() in run_pipe |
| 7257 | */ |
| 7258 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7259 | struct command *command, |
| 7260 | char **argv_expanded) NORETURN; |
| 7261 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 7262 | struct command *command, |
| 7263 | char **argv_expanded) |
| 7264 | { |
| 7265 | if (command->argv) { |
| 7266 | pseudo_exec_argv(nommu_save, command->argv, |
| 7267 | command->assignment_cnt, argv_expanded); |
| 7268 | } |
| 7269 | |
| 7270 | if (command->group) { |
| 7271 | /* Cases when we are here: |
| 7272 | * ( list ) |
| 7273 | * { list } & |
| 7274 | * ... | ( list ) | ... |
| 7275 | * ... | { list } | ... |
| 7276 | */ |
| 7277 | #if BB_MMU |
| 7278 | int rcode; |
| 7279 | debug_printf_exec("pseudo_exec: run_list\n"); |
| 7280 | reset_traps_to_defaults(); |
| 7281 | rcode = run_list(command->group); |
| 7282 | /* OK to leak memory by not calling free_pipe_list, |
| 7283 | * since this process is about to exit */ |
| 7284 | _exit(rcode); |
| 7285 | #else |
| 7286 | re_execute_shell(&nommu_save->argv_from_re_execing, |
| 7287 | command->group_as_string, |
| 7288 | G.global_argv[0], |
| 7289 | G.global_argv + 1, |
| 7290 | NULL); |
| 7291 | #endif |
| 7292 | } |
| 7293 | |
| 7294 | /* Case when we are here: ... | >file */ |
| 7295 | debug_printf_exec("pseudo_exec'ed null command\n"); |
| 7296 | _exit(EXIT_SUCCESS); |
| 7297 | } |
| 7298 | |
| 7299 | #if ENABLE_HUSH_JOB |
| 7300 | static const char *get_cmdtext(struct pipe *pi) |
| 7301 | { |
| 7302 | char **argv; |
| 7303 | char *p; |
| 7304 | int len; |
| 7305 | |
| 7306 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 7307 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
| 7308 | * On subsequent bg argv is trashed, but we won't use it */ |
| 7309 | if (pi->cmdtext) |
| 7310 | return pi->cmdtext; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7311 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7312 | argv = pi->cmds[0].argv; |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7313 | if (!argv) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7314 | pi->cmdtext = xzalloc(1); |
| 7315 | return pi->cmdtext; |
| 7316 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7317 | len = 0; |
| 7318 | do { |
| 7319 | len += strlen(*argv) + 1; |
| 7320 | } while (*++argv); |
| 7321 | p = xmalloc(len); |
| 7322 | pi->cmdtext = p; |
| 7323 | argv = pi->cmds[0].argv; |
| 7324 | do { |
Denys Vlasenko | 1eada9a | 2016-11-08 17:28:45 +0100 | [diff] [blame] | 7325 | p = stpcpy(p, *argv); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7326 | *p++ = ' '; |
| 7327 | } while (*++argv); |
| 7328 | p[-1] = '\0'; |
| 7329 | return pi->cmdtext; |
| 7330 | } |
| 7331 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7332 | static void remove_job_from_table(struct pipe *pi) |
| 7333 | { |
| 7334 | struct pipe *prev_pipe; |
| 7335 | |
| 7336 | if (pi == G.job_list) { |
| 7337 | G.job_list = pi->next; |
| 7338 | } else { |
| 7339 | prev_pipe = G.job_list; |
| 7340 | while (prev_pipe->next != pi) |
| 7341 | prev_pipe = prev_pipe->next; |
| 7342 | prev_pipe->next = pi->next; |
| 7343 | } |
| 7344 | G.last_jobid = 0; |
| 7345 | if (G.job_list) |
| 7346 | G.last_jobid = G.job_list->jobid; |
| 7347 | } |
| 7348 | |
| 7349 | static void delete_finished_job(struct pipe *pi) |
| 7350 | { |
| 7351 | remove_job_from_table(pi); |
| 7352 | free_pipe(pi); |
| 7353 | } |
| 7354 | |
| 7355 | static void clean_up_last_dead_job(void) |
| 7356 | { |
| 7357 | if (G.job_list && !G.job_list->alive_cmds) |
| 7358 | delete_finished_job(G.job_list); |
| 7359 | } |
| 7360 | |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 7361 | static void insert_job_into_table(struct pipe *pi) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7362 | { |
| 7363 | struct pipe *job, **jobp; |
| 7364 | int i; |
| 7365 | |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7366 | clean_up_last_dead_job(); |
| 7367 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7368 | /* Find the end of the list, and find next job ID to use */ |
| 7369 | i = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7370 | jobp = &G.job_list; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7371 | while ((job = *jobp) != NULL) { |
| 7372 | if (job->jobid > i) |
| 7373 | i = job->jobid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7374 | jobp = &job->next; |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7375 | } |
| 7376 | pi->jobid = i + 1; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7377 | |
Denys Vlasenko | 9e55a15 | 2017-07-10 10:01:12 +0200 | [diff] [blame] | 7378 | /* Create a new job struct at the end */ |
| 7379 | job = *jobp = xmemdup(pi, sizeof(*pi)); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7380 | job->next = NULL; |
| 7381 | job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 7382 | /* Cannot copy entire pi->cmds[] vector! This causes double frees */ |
| 7383 | for (i = 0; i < pi->num_cmds; i++) { |
| 7384 | job->cmds[i].pid = pi->cmds[i].pid; |
| 7385 | /* all other fields are not used and stay zero */ |
| 7386 | } |
| 7387 | job->cmdtext = xstrdup(get_cmdtext(pi)); |
| 7388 | |
| 7389 | if (G_interactive_fd) |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 7390 | 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] | 7391 | G.last_jobid = job->jobid; |
| 7392 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7393 | #endif /* JOB */ |
| 7394 | |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7395 | static int job_exited_or_stopped(struct pipe *pi) |
| 7396 | { |
| 7397 | int rcode, i; |
| 7398 | |
| 7399 | if (pi->alive_cmds != pi->stopped_cmds) |
| 7400 | return -1; |
| 7401 | |
| 7402 | /* All processes in fg pipe have exited or stopped */ |
| 7403 | rcode = 0; |
| 7404 | i = pi->num_cmds; |
| 7405 | while (--i >= 0) { |
| 7406 | rcode = pi->cmds[i].cmd_exitcode; |
| 7407 | /* usually last process gives overall exitstatus, |
| 7408 | * but with "set -o pipefail", last *failed* process does */ |
| 7409 | if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0) |
| 7410 | break; |
| 7411 | } |
| 7412 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7413 | return rcode; |
| 7414 | } |
| 7415 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7416 | 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] | 7417 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7418 | #if ENABLE_HUSH_JOB |
| 7419 | struct pipe *pi; |
| 7420 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7421 | int i, dead; |
| 7422 | |
| 7423 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 7424 | |
| 7425 | #if DEBUG_JOBS |
| 7426 | if (WIFSTOPPED(status)) |
| 7427 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
| 7428 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 7429 | if (WIFSIGNALED(status)) |
| 7430 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
| 7431 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 7432 | if (WIFEXITED(status)) |
| 7433 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
| 7434 | childpid, WEXITSTATUS(status)); |
| 7435 | #endif |
| 7436 | /* Were we asked to wait for a fg pipe? */ |
| 7437 | if (fg_pipe) { |
| 7438 | i = fg_pipe->num_cmds; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7439 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7440 | while (--i >= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7441 | int rcode; |
| 7442 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7443 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 7444 | if (fg_pipe->cmds[i].pid != childpid) |
| 7445 | continue; |
| 7446 | if (dead) { |
| 7447 | int ex; |
| 7448 | fg_pipe->cmds[i].pid = 0; |
| 7449 | fg_pipe->alive_cmds--; |
| 7450 | ex = WEXITSTATUS(status); |
| 7451 | /* bash prints killer signal's name for *last* |
| 7452 | * process in pipe (prints just newline for SIGINT/SIGPIPE). |
| 7453 | * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT) |
| 7454 | */ |
| 7455 | if (WIFSIGNALED(status)) { |
| 7456 | int sig = WTERMSIG(status); |
| 7457 | if (i == fg_pipe->num_cmds-1) |
| 7458 | /* TODO: use strsignal() instead for bash compat? but that's bloat... */ |
| 7459 | puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig)); |
| 7460 | /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */ |
| 7461 | /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here? |
| 7462 | * Maybe we need to use sig | 128? */ |
| 7463 | ex = sig + 128; |
| 7464 | } |
| 7465 | fg_pipe->cmds[i].cmd_exitcode = ex; |
| 7466 | } else { |
| 7467 | fg_pipe->stopped_cmds++; |
| 7468 | } |
| 7469 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 7470 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7471 | rcode = job_exited_or_stopped(fg_pipe); |
| 7472 | if (rcode >= 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7473 | /* Note: *non-interactive* bash does not continue if all processes in fg pipe |
| 7474 | * are stopped. Testcase: "cat | cat" in a script (not on command line!) |
| 7475 | * and "killall -STOP cat" */ |
| 7476 | if (G_interactive_fd) { |
| 7477 | #if ENABLE_HUSH_JOB |
| 7478 | if (fg_pipe->alive_cmds != 0) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 7479 | insert_job_into_table(fg_pipe); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7480 | #endif |
| 7481 | return rcode; |
| 7482 | } |
| 7483 | if (fg_pipe->alive_cmds == 0) |
| 7484 | return rcode; |
| 7485 | } |
| 7486 | /* There are still running processes in the fg_pipe */ |
| 7487 | return -1; |
| 7488 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 7489 | /* It wasn't in fg_pipe, look for process in bg pipes */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7490 | } |
| 7491 | |
| 7492 | #if ENABLE_HUSH_JOB |
| 7493 | /* We were asked to wait for bg or orphaned children */ |
| 7494 | /* No need to remember exitcode in this case */ |
| 7495 | for (pi = G.job_list; pi; pi = pi->next) { |
| 7496 | for (i = 0; i < pi->num_cmds; i++) { |
| 7497 | if (pi->cmds[i].pid == childpid) |
| 7498 | goto found_pi_and_prognum; |
| 7499 | } |
| 7500 | } |
| 7501 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 7502 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
| 7503 | return -1; /* this wasn't a process from fg_pipe */ |
| 7504 | |
| 7505 | found_pi_and_prognum: |
| 7506 | if (dead) { |
| 7507 | /* child exited */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 7508 | int rcode = WEXITSTATUS(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7509 | if (WIFSIGNALED(status)) |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 7510 | rcode = 128 + WTERMSIG(status); |
| 7511 | pi->cmds[i].cmd_exitcode = rcode; |
| 7512 | if (G.last_bg_pid == pi->cmds[i].pid) |
| 7513 | G.last_bg_pid_exitcode = rcode; |
| 7514 | pi->cmds[i].pid = 0; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7515 | pi->alive_cmds--; |
| 7516 | if (!pi->alive_cmds) { |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7517 | if (G_interactive_fd) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7518 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 7519 | "Done", pi->cmdtext); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 7520 | delete_finished_job(pi); |
| 7521 | } else { |
| 7522 | /* |
| 7523 | * bash deletes finished jobs from job table only in interactive mode, |
| 7524 | * after "jobs" cmd, or if pid of a new process matches one of the old ones |
| 7525 | * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source). |
| 7526 | * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash. |
| 7527 | * We only retain one "dead" job, if it's the single job on the list. |
| 7528 | * This covers most of real-world scenarios where this is useful. |
| 7529 | */ |
| 7530 | if (pi != G.job_list) |
| 7531 | delete_finished_job(pi); |
| 7532 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7533 | } |
| 7534 | } else { |
| 7535 | /* child stopped */ |
| 7536 | pi->stopped_cmds++; |
| 7537 | } |
| 7538 | #endif |
| 7539 | return -1; /* this wasn't a process from fg_pipe */ |
| 7540 | } |
| 7541 | |
| 7542 | /* Check to see if any processes have exited -- if they have, |
| 7543 | * figure out why and see if a job has completed. |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7544 | * |
| 7545 | * If non-NULL fg_pipe: wait for its completion or stop. |
| 7546 | * Return its exitcode or zero if stopped. |
| 7547 | * |
| 7548 | * Alternatively (fg_pipe == NULL, waitfor_pid != 0): |
| 7549 | * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1, |
| 7550 | * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 7551 | * or 0 if no children changed status. |
| 7552 | * |
| 7553 | * Alternatively (fg_pipe == NULL, waitfor_pid == 0), |
| 7554 | * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for) |
| 7555 | * or 0 if no children changed status. |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7556 | */ |
| 7557 | static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid) |
| 7558 | { |
| 7559 | int attributes; |
| 7560 | int status; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7561 | int rcode = 0; |
| 7562 | |
| 7563 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 7564 | |
| 7565 | attributes = WUNTRACED; |
| 7566 | if (fg_pipe == NULL) |
| 7567 | attributes |= WNOHANG; |
| 7568 | |
| 7569 | errno = 0; |
| 7570 | #if ENABLE_HUSH_FAST |
| 7571 | if (G.handled_SIGCHLD == G.count_SIGCHLD) { |
| 7572 | //bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p", |
| 7573 | //getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe); |
| 7574 | /* There was neither fork nor SIGCHLD since last waitpid */ |
| 7575 | /* Avoid doing waitpid syscall if possible */ |
| 7576 | if (!G.we_have_children) { |
| 7577 | errno = ECHILD; |
| 7578 | return -1; |
| 7579 | } |
| 7580 | if (fg_pipe == NULL) { /* is WNOHANG set? */ |
| 7581 | /* We have children, but they did not exit |
| 7582 | * or stop yet (we saw no SIGCHLD) */ |
| 7583 | return 0; |
| 7584 | } |
| 7585 | /* else: !WNOHANG, waitpid will block, can't short-circuit */ |
| 7586 | } |
| 7587 | #endif |
| 7588 | |
| 7589 | /* Do we do this right? |
| 7590 | * bash-3.00# sleep 20 | false |
| 7591 | * <ctrl-Z pressed> |
| 7592 | * [3]+ Stopped sleep 20 | false |
| 7593 | * bash-3.00# echo $? |
| 7594 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 7595 | * [hush 1.14.0: yes we do it right] |
| 7596 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7597 | while (1) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7598 | pid_t childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7599 | #if ENABLE_HUSH_FAST |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7600 | int i; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7601 | i = G.count_SIGCHLD; |
| 7602 | #endif |
| 7603 | childpid = waitpid(-1, &status, attributes); |
| 7604 | if (childpid <= 0) { |
| 7605 | if (childpid && errno != ECHILD) |
| 7606 | bb_perror_msg("waitpid"); |
| 7607 | #if ENABLE_HUSH_FAST |
| 7608 | else { /* Until next SIGCHLD, waitpid's are useless */ |
| 7609 | G.we_have_children = (childpid == 0); |
| 7610 | G.handled_SIGCHLD = i; |
| 7611 | //bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 7612 | } |
| 7613 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7614 | /* ECHILD (no children), or 0 (no change in children status) */ |
| 7615 | rcode = childpid; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7616 | break; |
| 7617 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7618 | rcode = process_wait_result(fg_pipe, childpid, status); |
| 7619 | if (rcode >= 0) { |
| 7620 | /* fg_pipe exited or stopped */ |
| 7621 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7622 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7623 | if (childpid == waitfor_pid) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7624 | 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] | 7625 | rcode = WEXITSTATUS(status); |
| 7626 | if (WIFSIGNALED(status)) |
| 7627 | rcode = 128 + WTERMSIG(status); |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 7628 | if (WIFSTOPPED(status)) |
| 7629 | /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */ |
| 7630 | rcode = 128 + WSTOPSIG(status); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7631 | rcode++; |
| 7632 | break; /* "wait PID" called us, give it exitcode+1 */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7633 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7634 | /* This wasn't one of our processes, or */ |
| 7635 | /* fg_pipe still has running processes, do waitpid again */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7636 | } /* while (waitpid succeeds)... */ |
| 7637 | |
| 7638 | return rcode; |
| 7639 | } |
| 7640 | |
| 7641 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | da463fb | 2010-09-07 09:53:50 +0200 | [diff] [blame] | 7642 | static int checkjobs_and_fg_shell(struct pipe *fg_pipe) |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7643 | { |
| 7644 | pid_t p; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 7645 | int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7646 | if (G_saved_tty_pgrp) { |
| 7647 | /* Job finished, move the shell to the foreground */ |
| 7648 | p = getpgrp(); /* our process group id */ |
| 7649 | debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p); |
| 7650 | tcsetpgrp(G_interactive_fd, p); |
| 7651 | } |
| 7652 | return rcode; |
| 7653 | } |
| 7654 | #endif |
| 7655 | |
| 7656 | /* Start all the jobs, but don't wait for anything to finish. |
| 7657 | * See checkjobs(). |
| 7658 | * |
| 7659 | * Return code is normally -1, when the caller has to wait for children |
| 7660 | * to finish to determine the exit status of the pipe. If the pipe |
| 7661 | * is a simple builtin command, however, the action is done by the |
| 7662 | * time run_pipe returns, and the exit code is provided as the |
| 7663 | * return value. |
| 7664 | * |
| 7665 | * Returns -1 only if started some children. IOW: we have to |
| 7666 | * mask out retvals of builtins etc with 0xff! |
| 7667 | * |
| 7668 | * The only case when we do not need to [v]fork is when the pipe |
| 7669 | * is single, non-backgrounded, non-subshell command. Examples: |
| 7670 | * cmd ; ... { list } ; ... |
| 7671 | * cmd && ... { list } && ... |
| 7672 | * cmd || ... { list } || ... |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 7673 | * If it is, then we can run cmd as a builtin, NOFORK, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7674 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
| 7675 | * with run_list. If it isn't one of these, we fork and exec cmd. |
| 7676 | * |
| 7677 | * Cases when we must fork: |
| 7678 | * non-single: cmd | cmd |
| 7679 | * backgrounded: cmd & { list } & |
| 7680 | * subshell: ( list ) [&] |
| 7681 | */ |
| 7682 | #if !ENABLE_HUSH_MODE_X |
Denys Vlasenko | 26777aa | 2010-11-22 23:49:10 +0100 | [diff] [blame] | 7683 | #define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7684 | redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel) |
| 7685 | #endif |
| 7686 | static int redirect_and_varexp_helper(char ***new_env_p, |
| 7687 | struct variable **old_vars_p, |
| 7688 | struct command *command, |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7689 | struct squirrel **sqp, |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7690 | char **argv_expanded) |
| 7691 | { |
| 7692 | /* setup_redirects acts on file descriptors, not FILEs. |
| 7693 | * This is perfect for work that comes after exec(). |
| 7694 | * Is it really safe for inline use? Experimentally, |
| 7695 | * things seem to work. */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7696 | int rcode = setup_redirects(command, sqp); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7697 | if (rcode == 0) { |
| 7698 | char **new_env = expand_assignments(command->argv, command->assignment_cnt); |
| 7699 | *new_env_p = new_env; |
| 7700 | dump_cmd_in_x_mode(new_env); |
| 7701 | dump_cmd_in_x_mode(argv_expanded); |
| 7702 | if (old_vars_p) |
| 7703 | *old_vars_p = set_vars_and_save_old(new_env); |
| 7704 | } |
| 7705 | return rcode; |
| 7706 | } |
| 7707 | static NOINLINE int run_pipe(struct pipe *pi) |
| 7708 | { |
| 7709 | static const char *const null_ptr = NULL; |
| 7710 | |
| 7711 | int cmd_no; |
| 7712 | int next_infd; |
| 7713 | struct command *command; |
| 7714 | char **argv_expanded; |
| 7715 | char **argv; |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7716 | struct squirrel *squirrel = NULL; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7717 | int rcode; |
| 7718 | |
| 7719 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
| 7720 | debug_enter(); |
| 7721 | |
Denys Vlasenko | 1fd3d94 | 2010-09-08 13:31:53 +0200 | [diff] [blame] | 7722 | /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*" |
| 7723 | * Result should be 3 lines: q w e, qwe, q w e |
| 7724 | */ |
| 7725 | G.ifs = get_local_var_value("IFS"); |
| 7726 | if (!G.ifs) |
| 7727 | G.ifs = defifs; |
| 7728 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7729 | IF_HUSH_JOB(pi->pgrp = -1;) |
| 7730 | pi->stopped_cmds = 0; |
| 7731 | command = &pi->cmds[0]; |
| 7732 | argv_expanded = NULL; |
| 7733 | |
| 7734 | if (pi->num_cmds != 1 |
| 7735 | || pi->followup == PIPE_BG |
| 7736 | || command->cmd_type == CMD_SUBSHELL |
| 7737 | ) { |
| 7738 | goto must_fork; |
| 7739 | } |
| 7740 | |
| 7741 | pi->alive_cmds = 1; |
| 7742 | |
| 7743 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 7744 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 7745 | |
| 7746 | if (command->group) { |
| 7747 | #if ENABLE_HUSH_FUNCTIONS |
| 7748 | if (command->cmd_type == CMD_FUNCDEF) { |
| 7749 | /* "executing" func () { list } */ |
| 7750 | struct function *funcp; |
| 7751 | |
| 7752 | funcp = new_function(command->argv[0]); |
| 7753 | /* funcp->name is already set to argv[0] */ |
| 7754 | funcp->body = command->group; |
| 7755 | # if !BB_MMU |
| 7756 | funcp->body_as_string = command->group_as_string; |
| 7757 | command->group_as_string = NULL; |
| 7758 | # endif |
| 7759 | command->group = NULL; |
| 7760 | command->argv[0] = NULL; |
| 7761 | debug_printf_exec("cmd %p has child func at %p\n", command, funcp); |
| 7762 | funcp->parent_cmd = command; |
| 7763 | command->child_func = funcp; |
| 7764 | |
| 7765 | debug_printf_exec("run_pipe: return EXIT_SUCCESS\n"); |
| 7766 | debug_leave(); |
| 7767 | return EXIT_SUCCESS; |
| 7768 | } |
| 7769 | #endif |
| 7770 | /* { list } */ |
| 7771 | debug_printf("non-subshell group\n"); |
| 7772 | rcode = 1; /* exitcode if redir failed */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7773 | if (setup_redirects(command, &squirrel) == 0) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7774 | debug_printf_exec(": run_list\n"); |
| 7775 | rcode = run_list(command->group) & 0xff; |
| 7776 | } |
| 7777 | restore_redirects(squirrel); |
| 7778 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7779 | debug_leave(); |
| 7780 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 7781 | return rcode; |
| 7782 | } |
| 7783 | |
| 7784 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 7785 | { |
| 7786 | const struct built_in_command *x; |
| 7787 | #if ENABLE_HUSH_FUNCTIONS |
| 7788 | const struct function *funcp; |
| 7789 | #else |
| 7790 | enum { funcp = 0 }; |
| 7791 | #endif |
| 7792 | char **new_env = NULL; |
| 7793 | struct variable *old_vars = NULL; |
| 7794 | |
| 7795 | if (argv[command->assignment_cnt] == NULL) { |
| 7796 | /* Assignments, but no command */ |
| 7797 | /* Ensure redirects take effect (that is, create files). |
| 7798 | * Try "a=t >file" */ |
| 7799 | #if 0 /* A few cases in testsuite fail with this code. FIXME */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7800 | rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7801 | /* Set shell variables */ |
| 7802 | if (new_env) { |
| 7803 | argv = new_env; |
| 7804 | while (*argv) { |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 7805 | if (set_local_var(*argv, /*flag:*/ 0)) { |
| 7806 | /* assignment to readonly var / putenv error? */ |
| 7807 | rcode = 1; |
| 7808 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7809 | argv++; |
| 7810 | } |
| 7811 | } |
| 7812 | /* Redirect error sets $? to 1. Otherwise, |
| 7813 | * if evaluating assignment value set $?, retain it. |
| 7814 | * Try "false; q=`exit 2`; echo $?" - should print 2: */ |
| 7815 | if (rcode == 0) |
| 7816 | rcode = G.last_exitcode; |
| 7817 | /* Exit, _skipping_ variable restoring code: */ |
| 7818 | goto clean_up_and_ret0; |
| 7819 | |
| 7820 | #else /* Older, bigger, but more correct code */ |
| 7821 | |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7822 | rcode = setup_redirects(command, &squirrel); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7823 | restore_redirects(squirrel); |
| 7824 | /* Set shell variables */ |
| 7825 | if (G_x_mode) |
| 7826 | bb_putchar_stderr('+'); |
| 7827 | while (*argv) { |
Denys Vlasenko | ebee410 | 2010-09-10 10:17:53 +0200 | [diff] [blame] | 7828 | char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7829 | if (G_x_mode) |
| 7830 | fprintf(stderr, " %s", p); |
| 7831 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 7832 | *argv, p); |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 7833 | if (set_local_var(p, /*flag:*/ 0)) { |
| 7834 | /* assignment to readonly var / putenv error? */ |
| 7835 | rcode = 1; |
| 7836 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7837 | argv++; |
| 7838 | } |
| 7839 | if (G_x_mode) |
| 7840 | bb_putchar_stderr('\n'); |
| 7841 | /* Redirect error sets $? to 1. Otherwise, |
| 7842 | * if evaluating assignment value set $?, retain it. |
| 7843 | * Try "false; q=`exit 2`; echo $?" - should print 2: */ |
| 7844 | if (rcode == 0) |
| 7845 | rcode = G.last_exitcode; |
| 7846 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7847 | debug_leave(); |
| 7848 | debug_printf_exec("run_pipe: return %d\n", rcode); |
| 7849 | return rcode; |
| 7850 | #endif |
| 7851 | } |
| 7852 | |
| 7853 | /* Expand the rest into (possibly) many strings each */ |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 7854 | #if BASH_TEST2 |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 7855 | if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7856 | argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt); |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 7857 | } else |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7858 | #endif |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 7859 | { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7860 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
| 7861 | } |
| 7862 | |
| 7863 | /* if someone gives us an empty string: `cmd with empty output` */ |
| 7864 | if (!argv_expanded[0]) { |
| 7865 | free(argv_expanded); |
| 7866 | debug_leave(); |
| 7867 | return G.last_exitcode; |
| 7868 | } |
| 7869 | |
| 7870 | x = find_builtin(argv_expanded[0]); |
| 7871 | #if ENABLE_HUSH_FUNCTIONS |
| 7872 | funcp = NULL; |
| 7873 | if (!x) |
| 7874 | funcp = find_function(argv_expanded[0]); |
| 7875 | #endif |
| 7876 | if (x || funcp) { |
| 7877 | if (!funcp) { |
| 7878 | if (x->b_function == builtin_exec && argv_expanded[1] == NULL) { |
| 7879 | debug_printf("exec with redirects only\n"); |
| 7880 | rcode = setup_redirects(command, NULL); |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 7881 | /* rcode=1 can be if redir file can't be opened */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7882 | goto clean_up_and_ret1; |
| 7883 | } |
| 7884 | } |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7885 | rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7886 | if (rcode == 0) { |
| 7887 | if (!funcp) { |
| 7888 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 7889 | x->b_cmd, argv_expanded[1]); |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 7890 | fflush_all(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7891 | rcode = x->b_function(argv_expanded) & 0xff; |
| 7892 | fflush_all(); |
| 7893 | } |
| 7894 | #if ENABLE_HUSH_FUNCTIONS |
| 7895 | else { |
| 7896 | # if ENABLE_HUSH_LOCAL |
| 7897 | struct variable **sv; |
| 7898 | sv = G.shadowed_vars_pp; |
| 7899 | G.shadowed_vars_pp = &old_vars; |
| 7900 | # endif |
| 7901 | debug_printf_exec(": function '%s' '%s'...\n", |
| 7902 | funcp->name, argv_expanded[1]); |
| 7903 | rcode = run_function(funcp, argv_expanded) & 0xff; |
| 7904 | # if ENABLE_HUSH_LOCAL |
| 7905 | G.shadowed_vars_pp = sv; |
| 7906 | # endif |
| 7907 | } |
| 7908 | #endif |
| 7909 | } |
| 7910 | clean_up_and_ret: |
| 7911 | unset_vars(new_env); |
| 7912 | add_vars(old_vars); |
| 7913 | /* clean_up_and_ret0: */ |
| 7914 | restore_redirects(squirrel); |
| 7915 | clean_up_and_ret1: |
| 7916 | free(argv_expanded); |
| 7917 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 7918 | debug_leave(); |
| 7919 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 7920 | return rcode; |
| 7921 | } |
| 7922 | |
Denys Vlasenko | b72baeb | 2011-02-02 18:38:57 +0100 | [diff] [blame] | 7923 | if (ENABLE_FEATURE_SH_NOFORK) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7924 | int n = find_applet_by_name(argv_expanded[0]); |
| 7925 | if (n >= 0 && APPLET_IS_NOFORK(n)) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 7926 | rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 7927 | if (rcode == 0) { |
| 7928 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
| 7929 | argv_expanded[0], argv_expanded[1]); |
| 7930 | rcode = run_nofork_applet(n, argv_expanded); |
| 7931 | } |
| 7932 | goto clean_up_and_ret; |
| 7933 | } |
| 7934 | } |
| 7935 | /* It is neither builtin nor applet. We must fork. */ |
| 7936 | } |
| 7937 | |
| 7938 | must_fork: |
| 7939 | /* NB: argv_expanded may already be created, and that |
| 7940 | * might include `cmd` runs! Do not rerun it! We *must* |
| 7941 | * use argv_expanded if it's non-NULL */ |
| 7942 | |
| 7943 | /* Going to fork a child per each pipe member */ |
| 7944 | pi->alive_cmds = 0; |
| 7945 | next_infd = 0; |
| 7946 | |
| 7947 | cmd_no = 0; |
| 7948 | while (cmd_no < pi->num_cmds) { |
| 7949 | struct fd_pair pipefds; |
| 7950 | #if !BB_MMU |
| 7951 | volatile nommu_save_t nommu_save; |
| 7952 | nommu_save.new_env = NULL; |
| 7953 | nommu_save.old_vars = NULL; |
| 7954 | nommu_save.argv = NULL; |
| 7955 | nommu_save.argv_from_re_execing = NULL; |
| 7956 | #endif |
| 7957 | command = &pi->cmds[cmd_no]; |
| 7958 | cmd_no++; |
| 7959 | if (command->argv) { |
| 7960 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 7961 | command->argv[0], command->argv[1]); |
| 7962 | } else { |
| 7963 | debug_printf_exec(": pipe member with no argv\n"); |
| 7964 | } |
| 7965 | |
| 7966 | /* pipes are inserted between pairs of commands */ |
| 7967 | pipefds.rd = 0; |
| 7968 | pipefds.wr = 1; |
| 7969 | if (cmd_no < pi->num_cmds) |
| 7970 | xpiped_pair(pipefds); |
| 7971 | |
| 7972 | command->pid = BB_MMU ? fork() : vfork(); |
| 7973 | if (!command->pid) { /* child */ |
| 7974 | #if ENABLE_HUSH_JOB |
| 7975 | disable_restore_tty_pgrp_on_exit(); |
| 7976 | CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */ |
| 7977 | |
| 7978 | /* Every child adds itself to new process group |
| 7979 | * with pgid == pid_of_first_child_in_pipe */ |
| 7980 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 7981 | pid_t pgrp; |
| 7982 | pgrp = pi->pgrp; |
| 7983 | if (pgrp < 0) /* true for 1st process only */ |
| 7984 | pgrp = getpid(); |
| 7985 | if (setpgid(0, pgrp) == 0 |
| 7986 | && pi->followup != PIPE_BG |
| 7987 | && G_saved_tty_pgrp /* we have ctty */ |
| 7988 | ) { |
| 7989 | /* We do it in *every* child, not just first, |
| 7990 | * to avoid races */ |
| 7991 | tcsetpgrp(G_interactive_fd, pgrp); |
| 7992 | } |
| 7993 | } |
| 7994 | #endif |
| 7995 | if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) { |
| 7996 | /* 1st cmd in backgrounded pipe |
| 7997 | * should have its stdin /dev/null'ed */ |
| 7998 | close(0); |
| 7999 | if (open(bb_dev_null, O_RDONLY)) |
| 8000 | xopen("/", O_RDONLY); |
| 8001 | } else { |
| 8002 | xmove_fd(next_infd, 0); |
| 8003 | } |
| 8004 | xmove_fd(pipefds.wr, 1); |
| 8005 | if (pipefds.rd > 1) |
| 8006 | close(pipefds.rd); |
| 8007 | /* Like bash, explicit redirects override pipes, |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8008 | * and the pipe fd (fd#1) is available for dup'ing: |
| 8009 | * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr |
| 8010 | * of cmd1 goes into pipe. |
| 8011 | */ |
| 8012 | if (setup_redirects(command, NULL)) { |
| 8013 | /* Happens when redir file can't be opened: |
| 8014 | * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ' |
| 8015 | * FOO |
| 8016 | * hush: can't open '/qwe/rty': No such file or directory |
| 8017 | * BAZ |
| 8018 | * (echo BAR is not executed, it hits _exit(1) below) |
| 8019 | */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8020 | _exit(1); |
Denys Vlasenko | 869994c | 2016-08-20 15:16:00 +0200 | [diff] [blame] | 8021 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8022 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8023 | /* Stores to nommu_save list of env vars putenv'ed |
| 8024 | * (NOMMU, on MMU we don't need that) */ |
| 8025 | /* cast away volatility... */ |
| 8026 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
| 8027 | /* pseudo_exec() does not return */ |
| 8028 | } |
| 8029 | |
| 8030 | /* parent or error */ |
| 8031 | #if ENABLE_HUSH_FAST |
| 8032 | G.count_SIGCHLD++; |
| 8033 | //bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD); |
| 8034 | #endif |
| 8035 | enable_restore_tty_pgrp_on_exit(); |
| 8036 | #if !BB_MMU |
| 8037 | /* Clean up after vforked child */ |
| 8038 | free(nommu_save.argv); |
| 8039 | free(nommu_save.argv_from_re_execing); |
| 8040 | unset_vars(nommu_save.new_env); |
| 8041 | add_vars(nommu_save.old_vars); |
| 8042 | #endif |
| 8043 | free(argv_expanded); |
| 8044 | argv_expanded = NULL; |
| 8045 | if (command->pid < 0) { /* [v]fork failed */ |
| 8046 | /* Clearly indicate, was it fork or vfork */ |
| 8047 | bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork"); |
| 8048 | } else { |
| 8049 | pi->alive_cmds++; |
| 8050 | #if ENABLE_HUSH_JOB |
| 8051 | /* Second and next children need to know pid of first one */ |
| 8052 | if (pi->pgrp < 0) |
| 8053 | pi->pgrp = command->pid; |
| 8054 | #endif |
| 8055 | } |
| 8056 | |
| 8057 | if (cmd_no > 1) |
| 8058 | close(next_infd); |
| 8059 | if (cmd_no < pi->num_cmds) |
| 8060 | close(pipefds.wr); |
| 8061 | /* Pass read (output) pipe end to next iteration */ |
| 8062 | next_infd = pipefds.rd; |
| 8063 | } |
| 8064 | |
| 8065 | if (!pi->alive_cmds) { |
| 8066 | debug_leave(); |
| 8067 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 8068 | return 1; |
| 8069 | } |
| 8070 | |
| 8071 | debug_leave(); |
| 8072 | debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds); |
| 8073 | return -1; |
| 8074 | } |
| 8075 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8076 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 8077 | * global data until exec/_exit (we can be a child after vfork!) */ |
| 8078 | static int run_list(struct pipe *pi) |
| 8079 | { |
| 8080 | #if ENABLE_HUSH_CASE |
| 8081 | char *case_word = NULL; |
| 8082 | #endif |
| 8083 | #if ENABLE_HUSH_LOOPS |
| 8084 | struct pipe *loop_top = NULL; |
| 8085 | char **for_lcur = NULL; |
| 8086 | char **for_list = NULL; |
| 8087 | #endif |
| 8088 | smallint last_followup; |
| 8089 | smalluint rcode; |
| 8090 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
| 8091 | smalluint cond_code = 0; |
| 8092 | #else |
| 8093 | enum { cond_code = 0 }; |
| 8094 | #endif |
| 8095 | #if HAS_KEYWORDS |
Denys Vlasenko | 9b78255 | 2010-09-08 13:33:26 +0200 | [diff] [blame] | 8096 | smallint rword; /* RES_foo */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8097 | smallint last_rword; /* ditto */ |
| 8098 | #endif |
| 8099 | |
| 8100 | debug_printf_exec("run_list start lvl %d\n", G.run_list_level); |
| 8101 | debug_enter(); |
| 8102 | |
| 8103 | #if ENABLE_HUSH_LOOPS |
| 8104 | /* Check syntax for "for" */ |
Denys Vlasenko | 0d6a4ec | 2010-12-18 01:34:49 +0100 | [diff] [blame] | 8105 | { |
| 8106 | struct pipe *cpipe; |
| 8107 | for (cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 8108 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
| 8109 | continue; |
| 8110 | /* current word is FOR or IN (BOLD in comments below) */ |
| 8111 | if (cpipe->next == NULL) { |
| 8112 | syntax_error("malformed for"); |
| 8113 | debug_leave(); |
| 8114 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8115 | return 1; |
| 8116 | } |
| 8117 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
| 8118 | if (cpipe->next->res_word == RES_DO) |
| 8119 | continue; |
| 8120 | /* next word is not "do". It must be "in" then ("FOR v in ...") */ |
| 8121 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 8122 | || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */ |
| 8123 | ) { |
| 8124 | syntax_error("malformed for"); |
| 8125 | debug_leave(); |
| 8126 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
| 8127 | return 1; |
| 8128 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8129 | } |
| 8130 | } |
| 8131 | #endif |
| 8132 | |
| 8133 | /* Past this point, all code paths should jump to ret: label |
| 8134 | * in order to return, no direct "return" statements please. |
| 8135 | * This helps to ensure that no memory is leaked. */ |
| 8136 | |
| 8137 | #if ENABLE_HUSH_JOB |
| 8138 | G.run_list_level++; |
| 8139 | #endif |
| 8140 | |
| 8141 | #if HAS_KEYWORDS |
| 8142 | rword = RES_NONE; |
| 8143 | last_rword = RES_XXXX; |
| 8144 | #endif |
| 8145 | last_followup = PIPE_SEQ; |
| 8146 | rcode = G.last_exitcode; |
| 8147 | |
| 8148 | /* Go through list of pipes, (maybe) executing them. */ |
| 8149 | 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] | 8150 | int r; |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8151 | int sv_errexit_depth; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8152 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8153 | if (G.flag_SIGINT) |
| 8154 | break; |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 8155 | if (G_flag_return_in_progress == 1) |
| 8156 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8157 | |
| 8158 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 8159 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 8160 | rword, cond_code, last_rword); |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8161 | |
| 8162 | sv_errexit_depth = G.errexit_depth; |
| 8163 | if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||) |
| 8164 | pi->followup != PIPE_SEQ |
| 8165 | ) { |
| 8166 | G.errexit_depth++; |
| 8167 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8168 | #if ENABLE_HUSH_LOOPS |
| 8169 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
| 8170 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
| 8171 | ) { |
| 8172 | /* start of a loop: remember where loop starts */ |
| 8173 | loop_top = pi; |
| 8174 | G.depth_of_loop++; |
| 8175 | } |
| 8176 | #endif |
| 8177 | /* Still in the same "if...", "then..." or "do..." branch? */ |
| 8178 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
| 8179 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 8180 | || (rcode != 0 && last_followup == PIPE_AND) |
| 8181 | ) { |
| 8182 | /* It is "<true> || CMD" or "<false> && CMD" |
| 8183 | * and we should not execute CMD */ |
| 8184 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 8185 | last_followup = pi->followup; |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8186 | goto dont_check_jobs_but_continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8187 | } |
| 8188 | } |
| 8189 | last_followup = pi->followup; |
| 8190 | IF_HAS_KEYWORDS(last_rword = rword;) |
| 8191 | #if ENABLE_HUSH_IF |
| 8192 | if (cond_code) { |
| 8193 | if (rword == RES_THEN) { |
| 8194 | /* if false; then ... fi has exitcode 0! */ |
| 8195 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8196 | /* "if <false> THEN cmd": skip cmd */ |
| 8197 | continue; |
| 8198 | } |
| 8199 | } else { |
| 8200 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 8201 | /* "if <true> then ... ELSE/ELIF cmd": |
| 8202 | * skip cmd and all following ones */ |
| 8203 | break; |
| 8204 | } |
| 8205 | } |
| 8206 | #endif |
| 8207 | #if ENABLE_HUSH_LOOPS |
| 8208 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
| 8209 | if (!for_lcur) { |
| 8210 | /* first loop through for */ |
| 8211 | |
| 8212 | static const char encoded_dollar_at[] ALIGN1 = { |
| 8213 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 8214 | }; /* encoded representation of "$@" */ |
| 8215 | static const char *const encoded_dollar_at_argv[] = { |
| 8216 | encoded_dollar_at, NULL |
| 8217 | }; /* argv list with one element: "$@" */ |
| 8218 | char **vals; |
| 8219 | |
| 8220 | vals = (char**)encoded_dollar_at_argv; |
| 8221 | if (pi->next->res_word == RES_IN) { |
| 8222 | /* if no variable values after "in" we skip "for" */ |
| 8223 | if (!pi->next->cmds[0].argv) { |
| 8224 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8225 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
| 8226 | break; |
| 8227 | } |
| 8228 | vals = pi->next->cmds[0].argv; |
| 8229 | } /* else: "for var; do..." -> assume "$@" list */ |
| 8230 | /* create list of variable values */ |
| 8231 | debug_print_strings("for_list made from", vals); |
| 8232 | for_list = expand_strvec_to_strvec(vals); |
| 8233 | for_lcur = for_list; |
| 8234 | debug_print_strings("for_list", for_list); |
| 8235 | } |
| 8236 | if (!*for_lcur) { |
| 8237 | /* "for" loop is over, clean up */ |
| 8238 | free(for_list); |
| 8239 | for_list = NULL; |
| 8240 | for_lcur = NULL; |
| 8241 | break; |
| 8242 | } |
| 8243 | /* Insert next value from for_lcur */ |
| 8244 | /* note: *for_lcur already has quotes removed, $var expanded, etc */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 8245 | 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] | 8246 | continue; |
| 8247 | } |
| 8248 | if (rword == RES_IN) { |
| 8249 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 8250 | } |
| 8251 | if (rword == RES_DONE) { |
| 8252 | continue; /* "done" has no cmds too */ |
| 8253 | } |
| 8254 | #endif |
| 8255 | #if ENABLE_HUSH_CASE |
| 8256 | if (rword == RES_CASE) { |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8257 | debug_printf_exec("CASE cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8258 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8259 | unbackslash(case_word); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8260 | continue; |
| 8261 | } |
| 8262 | if (rword == RES_MATCH) { |
| 8263 | char **argv; |
| 8264 | |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8265 | debug_printf_exec("MATCH cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8266 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 8267 | break; |
| 8268 | /* all prev words didn't match, does this one match? */ |
| 8269 | argv = pi->cmds->argv; |
| 8270 | while (*argv) { |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8271 | char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8272 | /* TODO: which FNM_xxx flags to use? */ |
| 8273 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
Denys Vlasenko | bd43c67 | 2017-07-05 23:12:15 +0200 | [diff] [blame] | 8274 | debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8275 | free(pattern); |
| 8276 | if (cond_code == 0) { /* match! we will execute this branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8277 | free(case_word); |
| 8278 | case_word = NULL; /* make future "word)" stop */ |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8279 | break; |
| 8280 | } |
| 8281 | argv++; |
| 8282 | } |
| 8283 | continue; |
| 8284 | } |
| 8285 | if (rword == RES_CASE_BODY) { /* inside of a case branch */ |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8286 | debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8287 | if (cond_code != 0) |
| 8288 | continue; /* not matched yet, skip this pipe */ |
| 8289 | } |
Denys Vlasenko | aeaee43 | 2016-11-04 20:14:04 +0100 | [diff] [blame] | 8290 | if (rword == RES_ESAC) { |
| 8291 | debug_printf_exec("ESAC cond_code:%d\n", cond_code); |
| 8292 | if (case_word) { |
| 8293 | /* "case" did not match anything: still set $? (to 0) */ |
| 8294 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8295 | } |
| 8296 | } |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8297 | #endif |
| 8298 | /* Just pressing <enter> in shell should check for jobs. |
| 8299 | * OTOH, in non-interactive shell this is useless |
| 8300 | * and only leads to extra job checks */ |
| 8301 | if (pi->num_cmds == 0) { |
| 8302 | if (G_interactive_fd) |
| 8303 | goto check_jobs_and_continue; |
| 8304 | continue; |
| 8305 | } |
| 8306 | |
| 8307 | /* After analyzing all keywords and conditions, we decided |
| 8308 | * to execute this pipe. NB: have to do checkjobs(NULL) |
| 8309 | * after run_pipe to collect any background children, |
| 8310 | * even if list execution is to be stopped. */ |
| 8311 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8312 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8313 | G.flag_break_continue = 0; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8314 | #endif |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8315 | rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */ |
| 8316 | if (r != -1) { |
| 8317 | /* We ran a builtin, function, or group. |
| 8318 | * rcode is already known |
| 8319 | * and we don't need to wait for anything. */ |
| 8320 | debug_printf_exec(": builtin/func exitcode %d\n", rcode); |
| 8321 | G.last_exitcode = rcode; |
| 8322 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8323 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8324 | /* Was it "break" or "continue"? */ |
| 8325 | if (G.flag_break_continue) { |
| 8326 | smallint fbc = G.flag_break_continue; |
| 8327 | /* We might fall into outer *loop*, |
| 8328 | * don't want to break it too */ |
| 8329 | if (loop_top) { |
| 8330 | G.depth_break_continue--; |
| 8331 | if (G.depth_break_continue == 0) |
| 8332 | G.flag_break_continue = 0; |
| 8333 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 8334 | } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */ |
| 8335 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8336 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8337 | break; |
| 8338 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8339 | /* "continue": simulate end of loop */ |
| 8340 | rword = RES_DONE; |
| 8341 | continue; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8342 | } |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8343 | #endif |
| 8344 | if (G_flag_return_in_progress == 1) { |
| 8345 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 8346 | break; |
| 8347 | } |
| 8348 | } else if (pi->followup == PIPE_BG) { |
| 8349 | /* What does bash do with attempts to background builtins? */ |
| 8350 | /* even bash 3.2 doesn't do that well with nested bg: |
| 8351 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 8352 | * I'm NOT treating inner &'s as jobs */ |
| 8353 | #if ENABLE_HUSH_JOB |
| 8354 | if (G.run_list_level == 1) |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 8355 | insert_job_into_table(pi); |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8356 | #endif |
| 8357 | /* Last command's pid goes to $! */ |
| 8358 | G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid; |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 8359 | G.last_bg_pid_exitcode = 0; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8360 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
| 8361 | /* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */ |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8362 | rcode = EXIT_SUCCESS; |
| 8363 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8364 | } else { |
| 8365 | #if ENABLE_HUSH_JOB |
| 8366 | if (G.run_list_level == 1 && G_interactive_fd) { |
| 8367 | /* Waits for completion, then fg's main shell */ |
| 8368 | rcode = checkjobs_and_fg_shell(pi); |
| 8369 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8370 | goto check_traps; |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8371 | } |
Denys Vlasenko | 6c635d6 | 2016-11-08 20:26:11 +0100 | [diff] [blame] | 8372 | #endif |
| 8373 | /* This one just waits for completion */ |
| 8374 | rcode = checkjobs(pi, 0 /*(no pid to wait for)*/); |
| 8375 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
| 8376 | check_traps: |
Denys Vlasenko | 5cc9bf6 | 2016-11-08 17:34:44 +0100 | [diff] [blame] | 8377 | G.last_exitcode = rcode; |
| 8378 | check_and_run_traps(); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8379 | } |
| 8380 | |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8381 | /* Handle "set -e" */ |
| 8382 | if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) { |
| 8383 | debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth); |
| 8384 | if (G.errexit_depth == 0) |
| 8385 | hush_exit(rcode); |
| 8386 | } |
| 8387 | G.errexit_depth = sv_errexit_depth; |
| 8388 | |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8389 | /* Analyze how result affects subsequent commands */ |
| 8390 | #if ENABLE_HUSH_IF |
| 8391 | if (rword == RES_IF || rword == RES_ELIF) |
| 8392 | cond_code = rcode; |
| 8393 | #endif |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8394 | check_jobs_and_continue: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 8395 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8396 | dont_check_jobs_but_continue: ; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8397 | #if ENABLE_HUSH_LOOPS |
| 8398 | /* Beware of "while false; true; do ..."! */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 8399 | if (pi->next |
| 8400 | && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE) |
Denys Vlasenko | 56a3b82 | 2011-06-01 12:47:07 +0200 | [diff] [blame] | 8401 | /* check for RES_DONE is needed for "while ...; do \n done" case */ |
Denys Vlasenko | 00ae989 | 2011-05-31 17:35:45 +0200 | [diff] [blame] | 8402 | ) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8403 | if (rword == RES_WHILE) { |
| 8404 | if (rcode) { |
| 8405 | /* "while false; do...done" - exitcode 0 */ |
| 8406 | G.last_exitcode = rcode = EXIT_SUCCESS; |
| 8407 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
Denys Vlasenko | 3beab83 | 2013-04-07 18:16:58 +0200 | [diff] [blame] | 8408 | break; |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8409 | } |
| 8410 | } |
| 8411 | if (rword == RES_UNTIL) { |
| 8412 | if (!rcode) { |
| 8413 | debug_printf_exec(": until expr is true: breaking\n"); |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8414 | break; |
| 8415 | } |
| 8416 | } |
| 8417 | } |
| 8418 | #endif |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8419 | } /* for (pi) */ |
| 8420 | |
| 8421 | #if ENABLE_HUSH_JOB |
| 8422 | G.run_list_level--; |
| 8423 | #endif |
| 8424 | #if ENABLE_HUSH_LOOPS |
| 8425 | if (loop_top) |
| 8426 | G.depth_of_loop--; |
| 8427 | free(for_list); |
| 8428 | #endif |
| 8429 | #if ENABLE_HUSH_CASE |
| 8430 | free(case_word); |
| 8431 | #endif |
| 8432 | debug_leave(); |
| 8433 | debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode); |
| 8434 | return rcode; |
| 8435 | } |
| 8436 | |
| 8437 | /* Select which version we will use */ |
| 8438 | static int run_and_free_list(struct pipe *pi) |
| 8439 | { |
| 8440 | int rcode = 0; |
| 8441 | debug_printf_exec("run_and_free_list entered\n"); |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 8442 | if (!G.o_opt[OPT_O_NOEXEC]) { |
Denys Vlasenko | b36abf2 | 2010-09-05 14:50:59 +0200 | [diff] [blame] | 8443 | debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds); |
| 8444 | rcode = run_list(pi); |
| 8445 | } |
| 8446 | /* free_pipe_list has the side effect of clearing memory. |
| 8447 | * In the long run that function can be merged with run_list, |
| 8448 | * but doing that now would hobble the debugging effort. */ |
| 8449 | free_pipe_list(pi); |
| 8450 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
| 8451 | return rcode; |
| 8452 | } |
| 8453 | |
| 8454 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8455 | static void install_sighandlers(unsigned mask) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 8456 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8457 | sighandler_t old_handler; |
| 8458 | unsigned sig = 0; |
| 8459 | while ((mask >>= 1) != 0) { |
| 8460 | sig++; |
| 8461 | if (!(mask & 1)) |
| 8462 | continue; |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 8463 | old_handler = install_sighandler(sig, pick_sighandler(sig)); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8464 | /* POSIX allows shell to re-enable SIGCHLD |
| 8465 | * even if it was SIG_IGN on entry. |
| 8466 | * Therefore we skip IGN check for it: |
| 8467 | */ |
| 8468 | if (sig == SIGCHLD) |
| 8469 | continue; |
| 8470 | if (old_handler == SIG_IGN) { |
| 8471 | /* oops... restore back to IGN, and record this fact */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 8472 | install_sighandler(sig, old_handler); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 8473 | #if ENABLE_HUSH_TRAP |
| 8474 | if (!G_traps) |
| 8475 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
| 8476 | free(G_traps[sig]); |
| 8477 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
| 8478 | #endif |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8479 | } |
| 8480 | } |
| 8481 | } |
| 8482 | |
| 8483 | /* Called a few times only (or even once if "sh -c") */ |
| 8484 | static void install_special_sighandlers(void) |
| 8485 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8486 | unsigned mask; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8487 | |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8488 | /* Which signals are shell-special? */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8489 | mask = (1 << SIGQUIT) | (1 << SIGCHLD); |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8490 | if (G_interactive_fd) { |
| 8491 | mask |= SPECIAL_INTERACTIVE_SIGS; |
| 8492 | if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8493 | mask |= SPECIAL_JOBSTOP_SIGS; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8494 | } |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8495 | /* Careful, do not re-install handlers we already installed */ |
| 8496 | if (G.special_sig_mask != mask) { |
| 8497 | unsigned diff = mask & ~G.special_sig_mask; |
| 8498 | G.special_sig_mask = mask; |
| 8499 | install_sighandlers(diff); |
| 8500 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8501 | } |
| 8502 | |
| 8503 | #if ENABLE_HUSH_JOB |
| 8504 | /* helper */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8505 | /* Set handlers to restore tty pgrp and exit */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8506 | static void install_fatal_sighandlers(void) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8507 | { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8508 | unsigned mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8509 | |
| 8510 | /* We will restore tty pgrp on these signals */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8511 | mask = 0 |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 8512 | /*+ (1 << SIGILL ) * HUSH_DEBUG*/ |
| 8513 | /*+ (1 << SIGFPE ) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8514 | + (1 << SIGBUS ) * HUSH_DEBUG |
| 8515 | + (1 << SIGSEGV) * HUSH_DEBUG |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 8516 | /*+ (1 << SIGTRAP) * HUSH_DEBUG*/ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8517 | + (1 << SIGABRT) |
| 8518 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 8519 | + (1 << SIGPIPE) |
| 8520 | + (1 << SIGALRM) |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8521 | /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs. |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8522 | * if we aren't interactive... but in this case |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8523 | * we never want to restore pgrp on exit, and this fn is not called |
| 8524 | */ |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8525 | /*+ (1 << SIGHUP )*/ |
| 8526 | /*+ (1 << SIGTERM)*/ |
| 8527 | /*+ (1 << SIGINT )*/ |
| 8528 | ; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8529 | G_fatal_sig_mask = mask; |
Denys Vlasenko | 54e9e12 | 2011-05-09 00:52:15 +0200 | [diff] [blame] | 8530 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8531 | install_sighandlers(mask); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8532 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 8533 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 8534 | |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8535 | static int set_mode(int state, char mode, const char *o_opt) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 8536 | { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8537 | int idx; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 8538 | switch (mode) { |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8539 | case 'n': |
Dan Fandrich | 85c6247 | 2010-11-20 13:05:17 -0800 | [diff] [blame] | 8540 | G.o_opt[OPT_O_NOEXEC] = state; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8541 | break; |
| 8542 | case 'x': |
| 8543 | IF_HUSH_MODE_X(G_x_mode = state;) |
| 8544 | break; |
| 8545 | case 'o': |
| 8546 | if (!o_opt) { |
| 8547 | /* "set -+o" without parameter. |
| 8548 | * in bash, set -o produces this output: |
| 8549 | * pipefail off |
| 8550 | * and set +o: |
| 8551 | * set +o pipefail |
| 8552 | * We always use the second form. |
| 8553 | */ |
| 8554 | const char *p = o_opt_strings; |
| 8555 | idx = 0; |
| 8556 | while (*p) { |
| 8557 | printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p); |
| 8558 | idx++; |
| 8559 | p += strlen(p) + 1; |
| 8560 | } |
| 8561 | break; |
| 8562 | } |
| 8563 | idx = index_in_strings(o_opt_strings, o_opt); |
| 8564 | if (idx >= 0) { |
| 8565 | G.o_opt[idx] = state; |
| 8566 | break; |
| 8567 | } |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8568 | case 'e': |
| 8569 | G.o_opt[OPT_O_ERREXIT] = state; |
| 8570 | break; |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8571 | default: |
| 8572 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 8573 | } |
| 8574 | return EXIT_SUCCESS; |
| 8575 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 8576 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 8577 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 8578 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8579 | { |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8580 | enum { |
| 8581 | OPT_login = (1 << 0), |
| 8582 | }; |
| 8583 | unsigned flags; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8584 | int opt; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8585 | unsigned builtin_argc; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8586 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 8587 | struct variable *cur_var; |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 8588 | struct variable *shell_ver; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 8589 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 8590 | INIT_G(); |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 8591 | if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 8592 | G.last_exitcode = EXIT_SUCCESS; |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 8593 | |
Denys Vlasenko | 10c0131 | 2011-05-11 11:49:21 +0200 | [diff] [blame] | 8594 | #if ENABLE_HUSH_FAST |
| 8595 | G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 8596 | #endif |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8597 | #if !BB_MMU |
| 8598 | G.argv0_for_re_execing = argv[0]; |
| 8599 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 8600 | /* Deal with HUSH_VERSION */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 8601 | shell_ver = xzalloc(sizeof(*shell_ver)); |
| 8602 | shell_ver->flg_export = 1; |
| 8603 | shell_ver->flg_read_only = 1; |
Denys Vlasenko | 4f87049 | 2010-09-10 11:06:01 +0200 | [diff] [blame] | 8604 | /* Code which handles ${var<op>...} needs writable values for all variables, |
Denys Vlasenko | 36f774a | 2010-09-05 14:45:38 +0200 | [diff] [blame] | 8605 | * therefore we xstrdup: */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 8606 | shell_ver->varstr = xstrdup(hush_version_str); |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 8607 | /* Create shell local variables from the values |
| 8608 | * currently living in the environment */ |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 8609 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 8610 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 8611 | G.top_var = shell_ver; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 8612 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 8613 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 8614 | if (e) while (*e) { |
| 8615 | char *value = strchr(*e, '='); |
| 8616 | if (value) { /* paranoia */ |
| 8617 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 8618 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 8619 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 8620 | cur_var->max_len = strlen(*e); |
| 8621 | cur_var->flg_export = 1; |
| 8622 | } |
| 8623 | e++; |
| 8624 | } |
Denys Vlasenko | 605067b | 2010-09-06 12:10:51 +0200 | [diff] [blame] | 8625 | /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */ |
Denys Vlasenko | 75eb9d2 | 2010-12-21 21:18:12 +0100 | [diff] [blame] | 8626 | debug_printf_env("putenv '%s'\n", shell_ver->varstr); |
| 8627 | putenv(shell_ver->varstr); |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 8628 | |
| 8629 | /* Export PWD */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 8630 | set_pwd_var(SETFLAG_EXPORT); |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 8631 | |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 8632 | #if BASH_HOSTNAME_VAR |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 8633 | /* Set (but not export) HOSTNAME unless already set */ |
| 8634 | if (!get_local_var_value("HOSTNAME")) { |
| 8635 | struct utsname uts; |
| 8636 | uname(&uts); |
| 8637 | set_local_var_from_halves("HOSTNAME", uts.nodename); |
| 8638 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 8639 | /* bash also exports SHLVL and _, |
| 8640 | * and sets (but doesn't export) the following variables: |
| 8641 | * BASH=/bin/bash |
| 8642 | * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu") |
| 8643 | * BASH_VERSION='3.2.0(1)-release' |
| 8644 | * HOSTTYPE=i386 |
| 8645 | * MACHTYPE=i386-pc-linux-gnu |
| 8646 | * OSTYPE=linux-gnu |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8647 | * PPID=<NNNNN> - we also do it elsewhere |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 8648 | * EUID=<NNNNN> |
| 8649 | * UID=<NNNNN> |
| 8650 | * GROUPS=() |
| 8651 | * LINES=<NNN> |
| 8652 | * COLUMNS=<NNN> |
| 8653 | * BASH_ARGC=() |
| 8654 | * BASH_ARGV=() |
| 8655 | * BASH_LINENO=() |
| 8656 | * BASH_SOURCE=() |
| 8657 | * DIRSTACK=() |
| 8658 | * PIPESTATUS=([0]="0") |
| 8659 | * HISTFILE=/<xxx>/.bash_history |
| 8660 | * HISTFILESIZE=500 |
| 8661 | * HISTSIZE=500 |
| 8662 | * MAILCHECK=60 |
| 8663 | * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:. |
| 8664 | * SHELL=/bin/bash |
| 8665 | * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor |
| 8666 | * TERM=dumb |
| 8667 | * OPTERR=1 |
| 8668 | * OPTIND=1 |
| 8669 | * IFS=$' \t\n' |
| 8670 | * PS1='\s-\v\$ ' |
| 8671 | * PS2='> ' |
| 8672 | * PS4='+ ' |
| 8673 | */ |
Denys Vlasenko | 3fa97af | 2014-04-15 11:43:29 +0200 | [diff] [blame] | 8674 | #endif |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 8675 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 8676 | #if ENABLE_FEATURE_EDITING |
Denys Vlasenko | e45af7a | 2011-09-04 16:15:24 +0200 | [diff] [blame] | 8677 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 8678 | #endif |
Denys Vlasenko | 99862cb | 2010-09-12 17:34:13 +0200 | [diff] [blame] | 8679 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 8680 | /* Initialize some more globals to non-zero values */ |
Mike Frysinger | 67c1c7b | 2009-04-24 06:26:18 +0000 | [diff] [blame] | 8681 | cmdedit_update_prompt(); |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 8682 | |
Denys Vlasenko | e9abe75 | 2016-08-19 20:15:26 +0200 | [diff] [blame] | 8683 | die_func = restore_ttypgrp_and__exit; |
Denis Vlasenko | ed78237 | 2009-04-10 00:45:02 +0000 | [diff] [blame] | 8684 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 8685 | /* Shell is non-interactive at first. We need to call |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8686 | * install_special_sighandlers() if we are going to execute "sh <script>", |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 8687 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8688 | * 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] | 8689 | * in order to intercept (more) signals. |
| 8690 | */ |
| 8691 | |
| 8692 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 8693 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8694 | flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8695 | builtin_argc = 0; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8696 | while (1) { |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8697 | opt = getopt(argc, argv, "+c:exinsl" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8698 | #if !BB_MMU |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 8699 | "<:$:R:V:" |
| 8700 | # if ENABLE_HUSH_FUNCTIONS |
| 8701 | "F:" |
| 8702 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8703 | #endif |
| 8704 | ); |
| 8705 | if (opt <= 0) |
| 8706 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8707 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8708 | case 'c': |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8709 | /* Possibilities: |
| 8710 | * sh ... -c 'script' |
| 8711 | * sh ... -c 'script' ARG0 [ARG1...] |
| 8712 | * On NOMMU, if builtin_argc != 0, |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 8713 | * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...] |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8714 | * "" needs to be replaced with NULL |
| 8715 | * and BARGV vector fed to builtin function. |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 8716 | * Note: the form without ARG0 never happens: |
| 8717 | * sh ... -c 'builtin' BARGV... "" |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8718 | */ |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8719 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8720 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8721 | G.root_ppid = getppid(); |
| 8722 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 8723 | G.global_argv = argv + optind; |
| 8724 | G.global_argc = argc - optind; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8725 | if (builtin_argc) { |
| 8726 | /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */ |
| 8727 | const struct built_in_command *x; |
| 8728 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8729 | install_special_sighandlers(); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8730 | x = find_builtin(optarg); |
| 8731 | if (x) { /* paranoia */ |
| 8732 | G.global_argc -= builtin_argc; /* skip [BARGV...] "" */ |
| 8733 | G.global_argv += builtin_argc; |
| 8734 | G.global_argv[-1] = NULL; /* replace "" */ |
Denys Vlasenko | 8ee2ada | 2011-02-07 02:03:51 +0100 | [diff] [blame] | 8735 | fflush_all(); |
Denys Vlasenko | 17323a6 | 2010-01-28 01:57:05 +0100 | [diff] [blame] | 8736 | G.last_exitcode = x->b_function(argv + optind - 1); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8737 | } |
| 8738 | goto final_return; |
| 8739 | } |
| 8740 | if (!G.global_argv[0]) { |
| 8741 | /* -c 'script' (no params): prevent empty $0 */ |
| 8742 | G.global_argv--; /* points to argv[i] of 'script' */ |
| 8743 | G.global_argv[0] = argv[0]; |
Denys Vlasenko | 5ae8f1c | 2010-05-22 06:32:11 +0200 | [diff] [blame] | 8744 | G.global_argc++; |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8745 | } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8746 | install_special_sighandlers(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 8747 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8748 | goto final_return; |
| 8749 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 8750 | /* Well, we cannot just declare interactiveness, |
| 8751 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8752 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8753 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 8754 | case 's': |
| 8755 | /* "-s" means "read from stdin", but this is how we always |
| 8756 | * operate, so simply do nothing here. */ |
| 8757 | break; |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8758 | case 'l': |
| 8759 | flags |= OPT_login; |
| 8760 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8761 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 8762 | case '<': /* "big heredoc" support */ |
Denys Vlasenko | 729ecb8 | 2010-06-07 14:14:26 +0200 | [diff] [blame] | 8763 | full_write1_str(optarg); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 8764 | _exit(0); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8765 | case '$': { |
| 8766 | unsigned long long empty_trap_mask; |
| 8767 | |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 8768 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 8769 | optarg++; |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8770 | G.root_ppid = bb_strtou(optarg, &optarg, 16); |
| 8771 | optarg++; |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 8772 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 8773 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 8774 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 8775 | optarg++; |
| 8776 | builtin_argc = bb_strtou(optarg, &optarg, 16); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8777 | optarg++; |
| 8778 | empty_trap_mask = bb_strtoull(optarg, &optarg, 16); |
| 8779 | if (empty_trap_mask != 0) { |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 8780 | IF_HUSH_TRAP(int sig;) |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8781 | install_special_sighandlers(); |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 8782 | # if ENABLE_HUSH_TRAP |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 8783 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8784 | for (sig = 1; sig < NSIG; sig++) { |
| 8785 | if (empty_trap_mask & (1LL << sig)) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 8786 | G_traps[sig] = xzalloc(1); /* == xstrdup(""); */ |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 8787 | install_sighandler(sig, SIG_IGN); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8788 | } |
| 8789 | } |
Denys Vlasenko | 4ee824f | 2017-07-03 01:22:13 +0200 | [diff] [blame] | 8790 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8791 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 8792 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 8793 | optarg++; |
| 8794 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 8795 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 8796 | break; |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8797 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8798 | case 'R': |
| 8799 | case 'V': |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 8800 | set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8801 | break; |
Denis Vlasenko | bc56974 | 2009-04-12 20:35:19 +0000 | [diff] [blame] | 8802 | # if ENABLE_HUSH_FUNCTIONS |
| 8803 | case 'F': { |
| 8804 | struct function *funcp = new_function(optarg); |
| 8805 | /* funcp->name is already set to optarg */ |
| 8806 | /* funcp->body is set to NULL. It's a special case. */ |
| 8807 | funcp->body_as_string = argv[optind]; |
| 8808 | optind++; |
| 8809 | break; |
| 8810 | } |
| 8811 | # endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 8812 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 8813 | case 'n': |
| 8814 | case 'x': |
Denys Vlasenko | 9fda609 | 2017-07-14 13:36:48 +0200 | [diff] [blame] | 8815 | case 'e': |
Denys Vlasenko | 6696eac | 2010-11-14 02:01:50 +0100 | [diff] [blame] | 8816 | if (set_mode(1, opt, NULL) == 0) /* no error */ |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 8817 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8818 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 8819 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8820 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 8821 | " or: sh -c command [args]...\n\n"); |
| 8822 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 8823 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 8824 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 8825 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8826 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8827 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8828 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8829 | /* Skip options. Try "hush -l": $1 should not be "-l"! */ |
| 8830 | G.global_argc = argc - (optind - 1); |
| 8831 | G.global_argv = argv + (optind - 1); |
| 8832 | G.global_argv[0] = argv[0]; |
| 8833 | |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8834 | if (!G.root_pid) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8835 | G.root_pid = getpid(); |
Denys Vlasenko | dea4788 | 2009-10-09 15:40:49 +0200 | [diff] [blame] | 8836 | G.root_ppid = getppid(); |
| 8837 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8838 | |
| 8839 | /* If we are login shell... */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8840 | if (flags & OPT_login) { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8841 | FILE *input; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8842 | debug_printf("sourcing /etc/profile\n"); |
| 8843 | input = fopen_for_read("/etc/profile"); |
| 8844 | if (input != NULL) { |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 8845 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8846 | install_special_sighandlers(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8847 | parse_and_run_file(input); |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 8848 | fclose_and_forget(input); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8849 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8850 | /* bash: after sourcing /etc/profile, |
| 8851 | * tries to source (in the given order): |
| 8852 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 8853 | * stopping on first found. --noprofile turns this off. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8854 | * bash also sources ~/.bash_logout on exit. |
| 8855 | * If called as sh, skips .bash_XXX files. |
| 8856 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 8857 | } |
| 8858 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8859 | if (G.global_argv[1]) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8860 | FILE *input; |
| 8861 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 8862 | * "bash <script>" (which is never interactive (unless -i?)) |
| 8863 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8864 | * If called as sh, does the same but with $ENV. |
Denys Vlasenko | 2eb0a7e | 2016-10-27 11:28:59 +0200 | [diff] [blame] | 8865 | * Also NB, per POSIX, $ENV should undergo parameter expansion. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8866 | */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8867 | G.global_argc--; |
| 8868 | G.global_argv++; |
| 8869 | debug_printf("running script '%s'\n", G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 8870 | xfunc_error_retval = 127; /* for "hush /does/not/exist" case */ |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8871 | input = xfopen_for_read(G.global_argv[0]); |
Denys Vlasenko | b7adf7a | 2016-10-25 17:00:13 +0200 | [diff] [blame] | 8872 | xfunc_error_retval = 1; |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 8873 | remember_FILE(input); |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8874 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8875 | parse_and_run_file(input); |
| 8876 | #if ENABLE_FEATURE_CLEAN_UP |
Denys Vlasenko | 7b25b1c | 2016-08-20 15:58:34 +0200 | [diff] [blame] | 8877 | fclose_and_forget(input); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8878 | #endif |
| 8879 | goto final_return; |
| 8880 | } |
| 8881 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 8882 | /* Up to here, shell was non-interactive. Now it may become one. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8883 | * NB: don't forget to (re)run install_special_sighandlers() as needed. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 8884 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8885 | |
Denys Vlasenko | 28a105d | 2009-06-01 11:26:30 +0200 | [diff] [blame] | 8886 | /* A shell is interactive if the '-i' flag was given, |
| 8887 | * or if all of the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 8888 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8889 | * no arguments remaining or the -s flag given |
| 8890 | * standard input is a terminal |
| 8891 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8892 | * Refer to Posix.2, the description of the 'sh' utility. |
| 8893 | */ |
| 8894 | #if ENABLE_HUSH_JOB |
| 8895 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 8896 | G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 8897 | debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp); |
| 8898 | if (G_saved_tty_pgrp < 0) |
| 8899 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8900 | |
| 8901 | /* try to dup stdin to high fd#, >= 255 */ |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8902 | G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8903 | if (G_interactive_fd < 0) { |
| 8904 | /* try to dup to any fd */ |
| 8905 | G_interactive_fd = dup(STDIN_FILENO); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8906 | if (G_interactive_fd < 0) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8907 | /* give up */ |
| 8908 | G_interactive_fd = 0; |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 8909 | G_saved_tty_pgrp = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 8910 | } |
| 8911 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8912 | // TODO: track & disallow any attempts of user |
| 8913 | // to (inadvertently) close/redirect G_interactive_fd |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 8914 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8915 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8916 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8917 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8918 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 8919 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8920 | /* If we were run as 'hush &', sleep until we are |
| 8921 | * in the foreground (tty pgrp == our pgrp). |
| 8922 | * If we get started under a job aware app (like bash), |
| 8923 | * make sure we are now in charge so we don't fight over |
| 8924 | * who gets the foreground */ |
| 8925 | while (1) { |
| 8926 | pid_t shell_pgrp = getpgrp(); |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 8927 | G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 8928 | if (G_saved_tty_pgrp == shell_pgrp) |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8929 | break; |
| 8930 | /* send TTIN to ourself (should stop us) */ |
| 8931 | kill(- shell_pgrp, SIGTTIN); |
| 8932 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8933 | } |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8934 | |
Denys Vlasenko | f58f705 | 2011-05-12 02:10:33 +0200 | [diff] [blame] | 8935 | /* Install more signal handlers */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8936 | install_special_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8937 | |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 8938 | if (G_saved_tty_pgrp) { |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8939 | /* Set other signals to restore saved_tty_pgrp */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8940 | install_fatal_sighandlers(); |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 8941 | /* Put ourselves in our own process group |
| 8942 | * (bash, too, does this only if ctty is available) */ |
| 8943 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 8944 | /* Grab control of the terminal */ |
| 8945 | tcsetpgrp(G_interactive_fd, getpid()); |
| 8946 | } |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 8947 | enable_restore_tty_pgrp_on_exit(); |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 8948 | |
| 8949 | # if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0 |
| 8950 | { |
| 8951 | const char *hp = get_local_var_value("HISTFILE"); |
| 8952 | if (!hp) { |
| 8953 | hp = get_local_var_value("HOME"); |
| 8954 | if (hp) |
| 8955 | hp = concat_path_file(hp, ".hush_history"); |
| 8956 | } else { |
| 8957 | hp = xstrdup(hp); |
| 8958 | } |
| 8959 | if (hp) { |
| 8960 | G.line_input_state->hist_file = hp; |
Denys Vlasenko | 4840ae8 | 2011-09-04 15:28:03 +0200 | [diff] [blame] | 8961 | //set_local_var(xasprintf("HISTFILE=%s", ...)); |
| 8962 | } |
| 8963 | # if ENABLE_FEATURE_SH_HISTFILESIZE |
| 8964 | hp = get_local_var_value("HISTFILESIZE"); |
| 8965 | G.line_input_state->max_history = size_from_HISTFILESIZE(hp); |
| 8966 | # endif |
| 8967 | } |
| 8968 | # endif |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8969 | } else { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8970 | install_special_sighandlers(); |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 8971 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 8972 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8973 | /* No job control compiled in, only prompt/line editing */ |
| 8974 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denys Vlasenko | 2db7461 | 2017-07-07 22:07:28 +0200 | [diff] [blame] | 8975 | G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8976 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 8977 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8978 | G_interactive_fd = dup(STDIN_FILENO); |
| 8979 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 8980 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8981 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 8982 | } |
| 8983 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 8984 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8985 | close_on_exec_on(G_interactive_fd); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8986 | } |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8987 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8988 | #else |
| 8989 | /* We have interactiveness code disabled */ |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 8990 | install_special_sighandlers(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 8991 | #endif |
| 8992 | /* bash: |
| 8993 | * if interactive but not a login shell, sources ~/.bashrc |
| 8994 | * (--norc turns this off, --rcfile <file> overrides) |
| 8995 | */ |
| 8996 | |
| 8997 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Denys Vlasenko | c34c033 | 2009-09-29 12:25:30 +0200 | [diff] [blame] | 8998 | /* note: ash and hush share this string */ |
| 8999 | printf("\n\n%s %s\n" |
| 9000 | IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n") |
| 9001 | "\n", |
| 9002 | bb_banner, |
| 9003 | "hush - the humble shell" |
| 9004 | ); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 9005 | } |
| 9006 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 9007 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9008 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 9009 | final_return: |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9010 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 9011 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 9012 | |
| 9013 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9014 | /* |
| 9015 | * Built-ins |
| 9016 | */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9017 | static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9018 | { |
| 9019 | return 0; |
| 9020 | } |
| 9021 | |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9022 | #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] | 9023 | 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] | 9024 | { |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 9025 | int argc = string_array_len(argv); |
| 9026 | return applet_main_func(argc, argv); |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9027 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9028 | #endif |
Kang-Che Sung | 027d3ab | 2017-01-11 14:18:15 +0100 | [diff] [blame] | 9029 | #if ENABLE_HUSH_TEST || BASH_TEST2 |
Mike Frysinger | ccb1959 | 2009-10-15 03:31:15 -0400 | [diff] [blame] | 9030 | static int FAST_FUNC builtin_test(char **argv) |
| 9031 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9032 | return run_applet_main(argv, test_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9033 | } |
Denys Vlasenko | 265062d | 2017-01-10 15:13:30 +0100 | [diff] [blame] | 9034 | #endif |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9035 | #if ENABLE_HUSH_ECHO |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9036 | static int FAST_FUNC builtin_echo(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9037 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9038 | return run_applet_main(argv, echo_main); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9039 | } |
Denys Vlasenko | 1cc6804 | 2017-01-09 17:10:04 +0100 | [diff] [blame] | 9040 | #endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9041 | #if ENABLE_HUSH_PRINTF |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9042 | static int FAST_FUNC builtin_printf(char **argv) |
| 9043 | { |
Denys Vlasenko | c083653 | 2009-10-19 13:13:06 +0200 | [diff] [blame] | 9044 | return run_applet_main(argv, printf_main); |
Mike Frysinger | 4ebc76c | 2009-10-15 03:32:39 -0400 | [diff] [blame] | 9045 | } |
| 9046 | #endif |
| 9047 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9048 | #if ENABLE_HUSH_HELP |
| 9049 | static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM) |
| 9050 | { |
| 9051 | const struct built_in_command *x; |
| 9052 | |
| 9053 | printf( |
| 9054 | "Built-in commands:\n" |
| 9055 | "------------------\n"); |
| 9056 | for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) { |
| 9057 | if (x->b_descr) |
| 9058 | printf("%-10s%s\n", x->b_cmd, x->b_descr); |
| 9059 | } |
| 9060 | return EXIT_SUCCESS; |
| 9061 | } |
| 9062 | #endif |
| 9063 | |
| 9064 | #if MAX_HISTORY && ENABLE_FEATURE_EDITING |
| 9065 | static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM) |
| 9066 | { |
| 9067 | show_history(G.line_input_state); |
| 9068 | return EXIT_SUCCESS; |
| 9069 | } |
| 9070 | #endif |
| 9071 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9072 | static char **skip_dash_dash(char **argv) |
| 9073 | { |
| 9074 | argv++; |
| 9075 | if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0') |
| 9076 | argv++; |
| 9077 | return argv; |
| 9078 | } |
| 9079 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9080 | static int FAST_FUNC builtin_cd(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9081 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9082 | const char *newdir; |
| 9083 | |
| 9084 | argv = skip_dash_dash(argv); |
| 9085 | newdir = argv[0]; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9086 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9087 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9088 | * bash says "bash: cd: HOME not set" and does nothing |
| 9089 | * (exitcode 1) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 9090 | */ |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 9091 | const char *home = get_local_var_value("HOME"); |
| 9092 | newdir = home ? home : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 9093 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9094 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 9095 | /* Mimic bash message exactly */ |
| 9096 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9097 | return EXIT_FAILURE; |
| 9098 | } |
Denys Vlasenko | 6db4784 | 2009-09-05 20:15:17 +0200 | [diff] [blame] | 9099 | /* Read current dir (get_cwd(1) is inside) and set PWD. |
| 9100 | * Note: do not enforce exporting. If PWD was unset or unexported, |
| 9101 | * set it again, but do not export. bash does the same. |
| 9102 | */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9103 | set_pwd_var(/*flag:*/ 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9104 | return EXIT_SUCCESS; |
| 9105 | } |
| 9106 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9107 | static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM) |
| 9108 | { |
| 9109 | puts(get_cwd(0)); |
| 9110 | return EXIT_SUCCESS; |
| 9111 | } |
| 9112 | |
| 9113 | static int FAST_FUNC builtin_eval(char **argv) |
| 9114 | { |
| 9115 | int rcode = EXIT_SUCCESS; |
| 9116 | |
| 9117 | argv = skip_dash_dash(argv); |
| 9118 | if (*argv) { |
| 9119 | char *str = expand_strvec_to_string(argv); |
| 9120 | /* bash: |
| 9121 | * eval "echo Hi; done" ("done" is syntax error): |
| 9122 | * "echo Hi" will not execute too. |
| 9123 | */ |
| 9124 | parse_and_run_string(str); |
| 9125 | free(str); |
| 9126 | rcode = G.last_exitcode; |
| 9127 | } |
| 9128 | return rcode; |
| 9129 | } |
| 9130 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9131 | static int FAST_FUNC builtin_exec(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9132 | { |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9133 | argv = skip_dash_dash(argv); |
| 9134 | if (argv[0] == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9135 | return EXIT_SUCCESS; /* bash does this */ |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9136 | |
Denys Vlasenko | f37eb39 | 2009-10-18 11:46:35 +0200 | [diff] [blame] | 9137 | /* Careful: we can end up here after [v]fork. Do not restore |
| 9138 | * tty pgrp then, only top-level shell process does that */ |
| 9139 | if (G_saved_tty_pgrp && getpid() == G.root_pid) |
| 9140 | tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp); |
| 9141 | |
Denys Vlasenko | 3ef4f77 | 2009-10-19 23:09:06 +0200 | [diff] [blame] | 9142 | /* TODO: if exec fails, bash does NOT exit! We do. |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9143 | * 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] | 9144 | * and tcsetpgrp, and this is inherently racy. |
| 9145 | */ |
| 9146 | execvp_or_die(argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9147 | } |
| 9148 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9149 | static int FAST_FUNC builtin_exit(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9150 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 9151 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9152 | |
| 9153 | /* interactive bash: |
| 9154 | * # trap "echo EEE" EXIT |
| 9155 | * # exit |
| 9156 | * exit |
| 9157 | * There are stopped jobs. |
| 9158 | * (if there are _stopped_ jobs, running ones don't count) |
| 9159 | * # exit |
| 9160 | * exit |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 9161 | * EEE (then bash exits) |
Denis Vlasenko | 40e8437 | 2009-04-18 11:23:38 +0000 | [diff] [blame] | 9162 | * |
Denys Vlasenko | a110c90 | 2010-09-12 15:38:04 +0200 | [diff] [blame] | 9163 | * 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] | 9164 | */ |
Denis Vlasenko | efea9d2 | 2009-04-09 13:43:11 +0000 | [diff] [blame] | 9165 | |
| 9166 | /* note: EXIT trap is run by hush_exit */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9167 | argv = skip_dash_dash(argv); |
| 9168 | if (argv[0] == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 9169 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9170 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 9171 | xfunc_error_retval = 255; |
| 9172 | /* bash: exit -2 == exit 254, no error msg */ |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 9173 | hush_exit(xatoi(argv[0]) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9174 | } |
| 9175 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9176 | #if ENABLE_HUSH_TYPE |
| 9177 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */ |
| 9178 | static int FAST_FUNC builtin_type(char **argv) |
| 9179 | { |
| 9180 | int ret = EXIT_SUCCESS; |
| 9181 | |
| 9182 | while (*++argv) { |
| 9183 | const char *type; |
| 9184 | char *path = NULL; |
| 9185 | |
| 9186 | if (0) {} /* make conditional compile easier below */ |
| 9187 | /*else if (find_alias(*argv)) |
| 9188 | type = "an alias";*/ |
| 9189 | #if ENABLE_HUSH_FUNCTIONS |
| 9190 | else if (find_function(*argv)) |
| 9191 | type = "a function"; |
| 9192 | #endif |
| 9193 | else if (find_builtin(*argv)) |
| 9194 | type = "a shell builtin"; |
| 9195 | else if ((path = find_in_path(*argv)) != NULL) |
| 9196 | type = path; |
| 9197 | else { |
| 9198 | bb_error_msg("type: %s: not found", *argv); |
| 9199 | ret = EXIT_FAILURE; |
| 9200 | continue; |
| 9201 | } |
| 9202 | |
| 9203 | printf("%s is %s\n", *argv, type); |
| 9204 | free(path); |
| 9205 | } |
| 9206 | |
| 9207 | return ret; |
| 9208 | } |
| 9209 | #endif |
| 9210 | |
| 9211 | #if ENABLE_HUSH_READ |
| 9212 | /* Interruptibility of read builtin in bash |
| 9213 | * (tested on bash-4.2.8 by sending signals (not by ^C)): |
| 9214 | * |
| 9215 | * Empty trap makes read ignore corresponding signal, for any signal. |
| 9216 | * |
| 9217 | * SIGINT: |
| 9218 | * - terminates non-interactive shell; |
| 9219 | * - interrupts read in interactive shell; |
| 9220 | * if it has non-empty trap: |
| 9221 | * - executes trap and returns to command prompt in interactive shell; |
| 9222 | * - executes trap and returns to read in non-interactive shell; |
| 9223 | * SIGTERM: |
| 9224 | * - is ignored (does not interrupt) read in interactive shell; |
| 9225 | * - terminates non-interactive shell; |
| 9226 | * if it has non-empty trap: |
| 9227 | * - executes trap and returns to read; |
| 9228 | * SIGHUP: |
| 9229 | * - terminates shell (regardless of interactivity); |
| 9230 | * if it has non-empty trap: |
| 9231 | * - executes trap and returns to read; |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9232 | * SIGCHLD from children: |
| 9233 | * - does not interrupt read regardless of interactivity: |
| 9234 | * try: sleep 1 & read x; echo $x |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9235 | */ |
| 9236 | static int FAST_FUNC builtin_read(char **argv) |
| 9237 | { |
| 9238 | const char *r; |
| 9239 | char *opt_n = NULL; |
| 9240 | char *opt_p = NULL; |
| 9241 | char *opt_t = NULL; |
| 9242 | char *opt_u = NULL; |
| 9243 | const char *ifs; |
| 9244 | int read_flags; |
| 9245 | |
| 9246 | /* "!": do not abort on errors. |
| 9247 | * Option string must start with "sr" to match BUILTIN_READ_xxx |
| 9248 | */ |
| 9249 | read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u); |
| 9250 | if (read_flags == (uint32_t)-1) |
| 9251 | return EXIT_FAILURE; |
| 9252 | argv += optind; |
| 9253 | ifs = get_local_var_value("IFS"); /* can be NULL */ |
| 9254 | |
| 9255 | again: |
| 9256 | r = shell_builtin_read(set_local_var_from_halves, |
| 9257 | argv, |
| 9258 | ifs, |
| 9259 | read_flags, |
| 9260 | opt_n, |
| 9261 | opt_p, |
| 9262 | opt_t, |
| 9263 | opt_u |
| 9264 | ); |
| 9265 | |
| 9266 | if ((uintptr_t)r == 1 && errno == EINTR) { |
| 9267 | unsigned sig = check_and_run_traps(); |
Denys Vlasenko | f547041 | 2017-05-22 19:34:45 +0200 | [diff] [blame] | 9268 | if (sig != SIGINT) |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9269 | goto again; |
| 9270 | } |
| 9271 | |
| 9272 | if ((uintptr_t)r > 1) { |
| 9273 | bb_error_msg("%s", r); |
| 9274 | r = (char*)(uintptr_t)1; |
| 9275 | } |
| 9276 | |
| 9277 | return (uintptr_t)r; |
| 9278 | } |
| 9279 | #endif |
| 9280 | |
| 9281 | #if ENABLE_HUSH_UMASK |
| 9282 | static int FAST_FUNC builtin_umask(char **argv) |
| 9283 | { |
| 9284 | int rc; |
| 9285 | mode_t mask; |
| 9286 | |
| 9287 | rc = 1; |
| 9288 | mask = umask(0); |
| 9289 | argv = skip_dash_dash(argv); |
| 9290 | if (argv[0]) { |
| 9291 | mode_t old_mask = mask; |
| 9292 | |
| 9293 | /* numeric umasks are taken as-is */ |
| 9294 | /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */ |
| 9295 | if (!isdigit(argv[0][0])) |
| 9296 | mask ^= 0777; |
| 9297 | mask = bb_parse_mode(argv[0], mask); |
| 9298 | if (!isdigit(argv[0][0])) |
| 9299 | mask ^= 0777; |
| 9300 | if ((unsigned)mask > 0777) { |
| 9301 | mask = old_mask; |
| 9302 | /* bash messages: |
| 9303 | * bash: umask: 'q': invalid symbolic mode operator |
| 9304 | * bash: umask: 999: octal number out of range |
| 9305 | */ |
| 9306 | bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]); |
| 9307 | rc = 0; |
| 9308 | } |
| 9309 | } else { |
| 9310 | /* Mimic bash */ |
| 9311 | printf("%04o\n", (unsigned) mask); |
| 9312 | /* fall through and restore mask which we set to 0 */ |
| 9313 | } |
| 9314 | umask(mask); |
| 9315 | |
| 9316 | return !rc; /* rc != 0 - success */ |
| 9317 | } |
| 9318 | #endif |
| 9319 | |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 9320 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9321 | static void print_escaped(const char *s) |
| 9322 | { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9323 | if (*s == '\'') |
| 9324 | goto squote; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9325 | do { |
Denys Vlasenko | d6b05eb | 2009-06-06 20:59:55 +0200 | [diff] [blame] | 9326 | const char *p = strchrnul(s, '\''); |
| 9327 | /* print 'xxxx', possibly just '' */ |
| 9328 | printf("'%.*s'", (int)(p - s), s); |
| 9329 | if (*p == '\0') |
| 9330 | break; |
| 9331 | s = p; |
| 9332 | squote: |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9333 | /* s points to '; print "'''...'''" */ |
| 9334 | putchar('"'); |
| 9335 | do putchar('\''); while (*++s == '\''); |
| 9336 | putchar('"'); |
| 9337 | } while (*s); |
| 9338 | } |
Denys Vlasenko | 41ade05 | 2017-01-08 18:56:24 +0100 | [diff] [blame] | 9339 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9340 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9341 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9342 | static int helper_export_local(char **argv, unsigned flags) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9343 | { |
| 9344 | do { |
| 9345 | char *name = *argv; |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9346 | char *name_end = strchrnul(name, '='); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9347 | |
| 9348 | /* So far we do not check that name is valid (TODO?) */ |
| 9349 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9350 | if (*name_end == '\0') { |
| 9351 | struct variable *var, **vpp; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9352 | |
Denys Vlasenko | 27c56f1 | 2010-09-07 09:56:34 +0200 | [diff] [blame] | 9353 | vpp = get_ptr_to_local_var(name, name_end - name); |
| 9354 | var = vpp ? *vpp : NULL; |
| 9355 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9356 | if (flags & SETFLAG_UNEXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9357 | /* export -n NAME (without =VALUE) */ |
| 9358 | if (var) { |
| 9359 | var->flg_export = 0; |
| 9360 | debug_printf_env("%s: unsetenv '%s'\n", __func__, name); |
| 9361 | unsetenv(name); |
| 9362 | } /* else: export -n NOT_EXISTING_VAR: no-op */ |
| 9363 | continue; |
| 9364 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9365 | if (flags & SETFLAG_EXPORT) { |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9366 | /* export NAME (without =VALUE) */ |
| 9367 | if (var) { |
| 9368 | var->flg_export = 1; |
| 9369 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 9370 | putenv(var->varstr); |
| 9371 | continue; |
| 9372 | } |
| 9373 | } |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 9374 | if (flags & SETFLAG_MAKE_RO) { |
| 9375 | /* readonly NAME (without =VALUE) */ |
| 9376 | if (var) { |
| 9377 | var->flg_read_only = 1; |
| 9378 | continue; |
| 9379 | } |
| 9380 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9381 | # if ENABLE_HUSH_LOCAL |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 9382 | /* Is this "local" bltin? */ |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9383 | if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) { |
| 9384 | unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT; |
Denys Vlasenko | b95ee96 | 2017-07-17 21:19:53 +0200 | [diff] [blame] | 9385 | if (var && var->func_nest_level == lvl) { |
| 9386 | /* "local x=abc; ...; local x" - ignore second local decl */ |
| 9387 | continue; |
| 9388 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9389 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9390 | # endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9391 | /* Exporting non-existing variable. |
| 9392 | * bash does not put it in environment, |
| 9393 | * but remembers that it is exported, |
| 9394 | * and does put it in env when it is set later. |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9395 | * We just set it to "" and export. |
| 9396 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9397 | /* Or, it's "local NAME" (without =VALUE). |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9398 | * bash sets the value to "". |
| 9399 | */ |
| 9400 | /* Or, it's "readonly NAME" (without =VALUE). |
| 9401 | * bash remembers NAME and disallows its creation |
| 9402 | * in the future. |
| 9403 | */ |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9404 | name = xasprintf("%s=", name); |
| 9405 | } else { |
| 9406 | /* (Un)exporting/making local NAME=VALUE */ |
| 9407 | name = xstrdup(name); |
| 9408 | } |
Denys Vlasenko | 38ef39a | 2017-07-18 01:40:01 +0200 | [diff] [blame] | 9409 | if (set_local_var(name, flags)) |
| 9410 | return EXIT_FAILURE; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9411 | } while (*++argv); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9412 | return EXIT_SUCCESS; |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9413 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9414 | #endif |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9415 | |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9416 | #if ENABLE_HUSH_EXPORT |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9417 | static int FAST_FUNC builtin_export(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9418 | { |
Denis Vlasenko | ad4bd05 | 2009-04-20 22:04:21 +0000 | [diff] [blame] | 9419 | unsigned opt_unexport; |
| 9420 | |
Denys Vlasenko | df5131c | 2009-06-07 16:04:17 +0200 | [diff] [blame] | 9421 | #if ENABLE_HUSH_EXPORT_N |
| 9422 | /* "!": do not abort on errors */ |
| 9423 | opt_unexport = getopt32(argv, "!n"); |
| 9424 | if (opt_unexport == (uint32_t)-1) |
| 9425 | return EXIT_FAILURE; |
| 9426 | argv += optind; |
| 9427 | #else |
| 9428 | opt_unexport = 0; |
| 9429 | argv++; |
| 9430 | #endif |
| 9431 | |
| 9432 | if (argv[0] == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9433 | char **e = environ; |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9434 | if (e) { |
| 9435 | while (*e) { |
| 9436 | #if 0 |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9437 | puts(*e++); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9438 | #else |
| 9439 | /* ash emits: export VAR='VAL' |
| 9440 | * bash: declare -x VAR="VAL" |
| 9441 | * we follow ash example */ |
| 9442 | const char *s = *e++; |
| 9443 | const char *p = strchr(s, '='); |
| 9444 | |
| 9445 | if (!p) /* wtf? take next variable */ |
| 9446 | continue; |
| 9447 | /* export var= */ |
| 9448 | printf("export %.*s", (int)(p - s) + 1, s); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9449 | print_escaped(p + 1); |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9450 | putchar('\n'); |
| 9451 | #endif |
| 9452 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 9453 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 0b677d8 | 2009-04-10 13:49:10 +0000 | [diff] [blame] | 9454 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9455 | return EXIT_SUCCESS; |
| 9456 | } |
| 9457 | |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9458 | return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9459 | } |
Denys Vlasenko | 6ec76d8 | 2017-01-08 18:40:41 +0100 | [diff] [blame] | 9460 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9461 | |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9462 | #if ENABLE_HUSH_LOCAL |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9463 | static int FAST_FUNC builtin_local(char **argv) |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9464 | { |
| 9465 | if (G.func_nest_level == 0) { |
| 9466 | bb_error_msg("%s: not in a function", argv[0]); |
| 9467 | return EXIT_FAILURE; /* bash compat */ |
| 9468 | } |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9469 | argv++; |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9470 | return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT); |
Denys Vlasenko | 295fef8 | 2009-06-03 12:47:26 +0200 | [diff] [blame] | 9471 | } |
| 9472 | #endif |
| 9473 | |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9474 | #if ENABLE_HUSH_READONLY |
| 9475 | static int FAST_FUNC builtin_readonly(char **argv) |
| 9476 | { |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9477 | argv++; |
| 9478 | if (*argv == NULL) { |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9479 | /* bash: readonly [-p]: list all readonly VARs |
| 9480 | * (-p has no effect in bash) |
| 9481 | */ |
| 9482 | struct variable *e; |
| 9483 | for (e = G.top_var; e; e = e->next) { |
| 9484 | if (e->flg_read_only) { |
| 9485 | //TODO: quote value: readonly VAR='VAL' |
| 9486 | printf("readonly %s\n", e->varstr); |
| 9487 | } |
| 9488 | } |
| 9489 | return EXIT_SUCCESS; |
| 9490 | } |
Denys Vlasenko | 3bab36b | 2017-07-18 01:05:24 +0200 | [diff] [blame] | 9491 | return helper_export_local(argv, SETFLAG_MAKE_RO); |
Denys Vlasenko | 1e66042 | 2017-07-17 21:10:50 +0200 | [diff] [blame] | 9492 | } |
| 9493 | #endif |
| 9494 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9495 | #if ENABLE_HUSH_UNSET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9496 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
| 9497 | static int FAST_FUNC builtin_unset(char **argv) |
| 9498 | { |
| 9499 | int ret; |
| 9500 | unsigned opts; |
| 9501 | |
| 9502 | /* "!": do not abort on errors */ |
| 9503 | /* "+": stop at 1st non-option */ |
| 9504 | opts = getopt32(argv, "!+vf"); |
| 9505 | if (opts == (unsigned)-1) |
| 9506 | return EXIT_FAILURE; |
| 9507 | if (opts == 3) { |
| 9508 | bb_error_msg("unset: -v and -f are exclusive"); |
| 9509 | return EXIT_FAILURE; |
| 9510 | } |
| 9511 | argv += optind; |
| 9512 | |
| 9513 | ret = EXIT_SUCCESS; |
| 9514 | while (*argv) { |
| 9515 | if (!(opts & 2)) { /* not -f */ |
| 9516 | if (unset_local_var(*argv)) { |
| 9517 | /* unset <nonexistent_var> doesn't fail. |
| 9518 | * Error is when one tries to unset RO var. |
| 9519 | * Message was printed by unset_local_var. */ |
| 9520 | ret = EXIT_FAILURE; |
| 9521 | } |
| 9522 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9523 | # if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9524 | else { |
| 9525 | unset_func(*argv); |
| 9526 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9527 | # endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9528 | argv++; |
| 9529 | } |
| 9530 | return ret; |
| 9531 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9532 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9533 | |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9534 | #if ENABLE_HUSH_SET |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9535 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 9536 | * built-in 'set' handler |
| 9537 | * SUSv3 says: |
| 9538 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 9539 | * set [+abCefhmnuvx] [+o option] [argument...] |
| 9540 | * set -- [argument...] |
| 9541 | * set -o |
| 9542 | * set +o |
| 9543 | * Implementations shall support the options in both their hyphen and |
| 9544 | * plus-sign forms. These options can also be specified as options to sh. |
| 9545 | * Examples: |
| 9546 | * Write out all variables and their values: set |
| 9547 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 9548 | * Turn on the -x and -v options: set -xv |
| 9549 | * Unset all positional parameters: set -- |
| 9550 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 9551 | * Set the positional parameters to the expansion of x, even if x expands |
| 9552 | * with a leading '-' or '+': set -- $x |
| 9553 | * |
| 9554 | * So far, we only support "set -- [argument...]" and some of the short names. |
| 9555 | */ |
| 9556 | static int FAST_FUNC builtin_set(char **argv) |
| 9557 | { |
| 9558 | int n; |
| 9559 | char **pp, **g_argv; |
| 9560 | char *arg = *++argv; |
| 9561 | |
| 9562 | if (arg == NULL) { |
| 9563 | struct variable *e; |
| 9564 | for (e = G.top_var; e; e = e->next) |
| 9565 | puts(e->varstr); |
| 9566 | return EXIT_SUCCESS; |
| 9567 | } |
| 9568 | |
| 9569 | do { |
| 9570 | if (strcmp(arg, "--") == 0) { |
| 9571 | ++argv; |
| 9572 | goto set_argv; |
| 9573 | } |
| 9574 | if (arg[0] != '+' && arg[0] != '-') |
| 9575 | break; |
| 9576 | for (n = 1; arg[n]; ++n) { |
| 9577 | if (set_mode((arg[0] == '-'), arg[n], argv[1])) |
| 9578 | goto error; |
| 9579 | if (arg[n] == 'o' && argv[1]) |
| 9580 | argv++; |
| 9581 | } |
| 9582 | } while ((arg = *++argv) != NULL); |
| 9583 | /* Now argv[0] is 1st argument */ |
| 9584 | |
| 9585 | if (arg == NULL) |
| 9586 | return EXIT_SUCCESS; |
| 9587 | set_argv: |
| 9588 | |
| 9589 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 9590 | g_argv = G.global_argv; |
| 9591 | if (G.global_args_malloced) { |
| 9592 | pp = g_argv; |
| 9593 | while (*++pp) |
| 9594 | free(*pp); |
| 9595 | g_argv[1] = NULL; |
| 9596 | } else { |
| 9597 | G.global_args_malloced = 1; |
| 9598 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 9599 | pp[0] = g_argv[0]; /* retain $0 */ |
| 9600 | g_argv = pp; |
| 9601 | } |
| 9602 | /* This realloc's G.global_argv */ |
| 9603 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 9604 | |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 9605 | G.global_argc = 1 + string_array_len(pp + 1); |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9606 | |
| 9607 | return EXIT_SUCCESS; |
| 9608 | |
| 9609 | /* Nothing known, so abort */ |
| 9610 | error: |
| 9611 | bb_error_msg("set: %s: invalid option", arg); |
| 9612 | return EXIT_FAILURE; |
| 9613 | } |
Denys Vlasenko | 10d5ece | 2017-01-08 18:28:43 +0100 | [diff] [blame] | 9614 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9615 | |
| 9616 | static int FAST_FUNC builtin_shift(char **argv) |
| 9617 | { |
| 9618 | int n = 1; |
| 9619 | argv = skip_dash_dash(argv); |
| 9620 | if (argv[0]) { |
Denys Vlasenko | e59591a | 2017-07-06 20:12:44 +0200 | [diff] [blame] | 9621 | n = bb_strtou(argv[0], NULL, 10); |
| 9622 | if (errno || n < 0) { |
| 9623 | /* shared string with ash.c */ |
| 9624 | bb_error_msg("Illegal number: %s", argv[0]); |
| 9625 | /* |
| 9626 | * ash aborts in this case. |
| 9627 | * bash prints error message and set $? to 1. |
| 9628 | * Interestingly, for "shift 99999" bash does not |
| 9629 | * print error message, but does set $? to 1 |
| 9630 | * (and does no shifting at all). |
| 9631 | */ |
| 9632 | } |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9633 | } |
| 9634 | if (n >= 0 && n < G.global_argc) { |
Denys Vlasenko | 4e4f88e | 2017-01-09 07:57:38 +0100 | [diff] [blame] | 9635 | if (G_global_args_malloced) { |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9636 | int m = 1; |
| 9637 | while (m <= n) |
| 9638 | free(G.global_argv[m++]); |
| 9639 | } |
| 9640 | G.global_argc -= n; |
| 9641 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 9642 | G.global_argc * sizeof(G.global_argv[0])); |
| 9643 | return EXIT_SUCCESS; |
| 9644 | } |
| 9645 | return EXIT_FAILURE; |
| 9646 | } |
| 9647 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9648 | static int FAST_FUNC builtin_source(char **argv) |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9649 | { |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9650 | char *arg_path, *filename; |
| 9651 | FILE *input; |
| 9652 | save_arg_t sv; |
| 9653 | char *args_need_save; |
| 9654 | #if ENABLE_HUSH_FUNCTIONS |
| 9655 | smallint sv_flg; |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9656 | #endif |
Denys Vlasenko | 61508d9 | 2016-10-02 21:12:02 +0200 | [diff] [blame] | 9657 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9658 | argv = skip_dash_dash(argv); |
| 9659 | filename = argv[0]; |
| 9660 | if (!filename) { |
| 9661 | /* bash says: "bash: .: filename argument required" */ |
| 9662 | return 2; /* bash compat */ |
| 9663 | } |
| 9664 | arg_path = NULL; |
| 9665 | if (!strchr(filename, '/')) { |
| 9666 | arg_path = find_in_path(filename); |
| 9667 | if (arg_path) |
| 9668 | filename = arg_path; |
| 9669 | } |
| 9670 | input = remember_FILE(fopen_or_warn(filename, "r")); |
| 9671 | free(arg_path); |
| 9672 | if (!input) { |
| 9673 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
| 9674 | /* POSIX: non-interactive shell should abort here, |
| 9675 | * not merely fail. So far no one complained :) |
| 9676 | */ |
| 9677 | return EXIT_FAILURE; |
| 9678 | } |
| 9679 | |
| 9680 | #if ENABLE_HUSH_FUNCTIONS |
| 9681 | sv_flg = G_flag_return_in_progress; |
| 9682 | /* "we are inside sourced file, ok to use return" */ |
| 9683 | G_flag_return_in_progress = -1; |
| 9684 | #endif |
| 9685 | args_need_save = argv[1]; /* used as a boolean variable */ |
| 9686 | if (args_need_save) |
| 9687 | save_and_replace_G_args(&sv, argv); |
| 9688 | |
| 9689 | /* "false; . ./empty_line; echo Zero:$?" should print 0 */ |
| 9690 | G.last_exitcode = 0; |
| 9691 | parse_and_run_file(input); |
| 9692 | fclose_and_forget(input); |
| 9693 | |
| 9694 | if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */ |
| 9695 | restore_G_args(&sv, argv); |
| 9696 | #if ENABLE_HUSH_FUNCTIONS |
| 9697 | G_flag_return_in_progress = sv_flg; |
| 9698 | #endif |
| 9699 | |
| 9700 | return G.last_exitcode; |
| 9701 | } |
| 9702 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9703 | #if ENABLE_HUSH_TRAP |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9704 | static int FAST_FUNC builtin_trap(char **argv) |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9705 | { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9706 | int sig; |
| 9707 | char *new_cmd; |
| 9708 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9709 | if (!G_traps) |
| 9710 | G_traps = xzalloc(sizeof(G_traps[0]) * NSIG); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9711 | |
| 9712 | argv++; |
| 9713 | if (!*argv) { |
Denis Vlasenko | 6008d8a | 2009-04-18 13:05:10 +0000 | [diff] [blame] | 9714 | int i; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9715 | /* No args: print all trapped */ |
| 9716 | for (i = 0; i < NSIG; ++i) { |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9717 | if (G_traps[i]) { |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9718 | printf("trap -- "); |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9719 | print_escaped(G_traps[i]); |
Denys Vlasenko | e74aaf9 | 2009-09-27 02:05:45 +0200 | [diff] [blame] | 9720 | /* note: bash adds "SIG", but only if invoked |
| 9721 | * as "bash". If called as "sh", or if set -o posix, |
| 9722 | * then it prints short signal names. |
| 9723 | * We are printing short names: */ |
| 9724 | printf(" %s\n", get_signame(i)); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9725 | } |
| 9726 | } |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 9727 | /*fflush_all(); - done after each builtin anyway */ |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9728 | return EXIT_SUCCESS; |
| 9729 | } |
| 9730 | |
| 9731 | new_cmd = NULL; |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9732 | /* If first arg is a number: reset all specified signals */ |
| 9733 | sig = bb_strtou(*argv, NULL, 10); |
| 9734 | if (errno == 0) { |
| 9735 | int ret; |
| 9736 | process_sig_list: |
| 9737 | ret = EXIT_SUCCESS; |
| 9738 | while (*argv) { |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9739 | sighandler_t handler; |
| 9740 | |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9741 | sig = get_signum(*argv++); |
| 9742 | if (sig < 0 || sig >= NSIG) { |
| 9743 | ret = EXIT_FAILURE; |
| 9744 | /* Mimic bash message exactly */ |
Denys Vlasenko | 7456298 | 2017-07-06 18:40:45 +0200 | [diff] [blame] | 9745 | bb_error_msg("trap: %s: invalid signal specification", argv[-1]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9746 | continue; |
| 9747 | } |
| 9748 | |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9749 | free(G_traps[sig]); |
| 9750 | G_traps[sig] = xstrdup(new_cmd); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9751 | |
Denys Vlasenko | e89a241 | 2010-01-12 15:19:31 +0100 | [diff] [blame] | 9752 | debug_printf("trap: setting SIG%s (%i) to '%s'\n", |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9753 | get_signame(sig), sig, G_traps[sig]); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9754 | |
| 9755 | /* There is no signal for 0 (EXIT) */ |
| 9756 | if (sig == 0) |
| 9757 | continue; |
| 9758 | |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 9759 | if (new_cmd) |
| 9760 | handler = (new_cmd[0] ? record_pending_signo : SIG_IGN); |
| 9761 | else |
| 9762 | /* We are removing trap handler */ |
| 9763 | handler = pick_sighandler(sig); |
Denys Vlasenko | 0806e40 | 2011-05-12 23:06:20 +0200 | [diff] [blame] | 9764 | install_sighandler(sig, handler); |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9765 | } |
| 9766 | return ret; |
| 9767 | } |
| 9768 | |
| 9769 | if (!argv[1]) { /* no second arg */ |
| 9770 | bb_error_msg("trap: invalid arguments"); |
| 9771 | return EXIT_FAILURE; |
| 9772 | } |
| 9773 | |
| 9774 | /* First arg is "-": reset all specified to default */ |
| 9775 | /* First arg is "--": skip it, the rest is "handler SIGs..." */ |
| 9776 | /* Everything else: set arg as signal handler |
| 9777 | * (includes "" case, which ignores signal) */ |
| 9778 | if (argv[0][0] == '-') { |
| 9779 | if (argv[0][1] == '\0') { /* "-" */ |
| 9780 | /* new_cmd remains NULL: "reset these sigs" */ |
| 9781 | goto reset_traps; |
| 9782 | } |
| 9783 | if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */ |
| 9784 | argv++; |
| 9785 | } |
| 9786 | /* else: "-something", no special meaning */ |
| 9787 | } |
| 9788 | new_cmd = *argv; |
| 9789 | reset_traps: |
| 9790 | argv++; |
| 9791 | goto process_sig_list; |
| 9792 | } |
Denys Vlasenko | 7a85c60 | 2017-01-08 17:40:18 +0100 | [diff] [blame] | 9793 | #endif |
Denis Vlasenko | 38e626d | 2009-04-18 12:58:19 +0000 | [diff] [blame] | 9794 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9795 | #if ENABLE_HUSH_JOB |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9796 | static struct pipe *parse_jobspec(const char *str) |
| 9797 | { |
| 9798 | struct pipe *pi; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 9799 | unsigned jobnum; |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9800 | |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 9801 | if (sscanf(str, "%%%u", &jobnum) != 1) { |
| 9802 | if (str[0] != '%' |
| 9803 | || (str[1] != '%' && str[1] != '+' && str[1] != '\0') |
| 9804 | ) { |
| 9805 | bb_error_msg("bad argument '%s'", str); |
| 9806 | return NULL; |
| 9807 | } |
| 9808 | /* It is "%%", "%+" or "%" - current job */ |
| 9809 | jobnum = G.last_jobid; |
| 9810 | if (jobnum == 0) { |
| 9811 | bb_error_msg("no current job"); |
| 9812 | return NULL; |
| 9813 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9814 | } |
| 9815 | for (pi = G.job_list; pi; pi = pi->next) { |
| 9816 | if (pi->jobid == jobnum) { |
| 9817 | return pi; |
| 9818 | } |
| 9819 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9820 | bb_error_msg("%u: no such job", jobnum); |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9821 | return NULL; |
| 9822 | } |
| 9823 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9824 | static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM) |
| 9825 | { |
| 9826 | struct pipe *job; |
| 9827 | const char *status_string; |
| 9828 | |
| 9829 | checkjobs(NULL, 0 /*(no pid to wait for)*/); |
| 9830 | for (job = G.job_list; job; job = job->next) { |
| 9831 | if (job->alive_cmds == job->stopped_cmds) |
| 9832 | status_string = "Stopped"; |
| 9833 | else |
| 9834 | status_string = "Running"; |
| 9835 | |
| 9836 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 9837 | } |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 9838 | |
| 9839 | clean_up_last_dead_job(); |
| 9840 | |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 9841 | return EXIT_SUCCESS; |
| 9842 | } |
| 9843 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9844 | /* built-in 'fg' and 'bg' handler */ |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 9845 | static int FAST_FUNC builtin_fg_bg(char **argv) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9846 | { |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9847 | int i; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9848 | struct pipe *pi; |
| 9849 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9850 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9851 | return EXIT_FAILURE; |
Denis Vlasenko | c8653f6 | 2009-04-27 23:29:14 +0000 | [diff] [blame] | 9852 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9853 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 9854 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 9855 | for (pi = G.job_list; pi; pi = pi->next) { |
| 9856 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9857 | goto found; |
| 9858 | } |
| 9859 | } |
| 9860 | bb_error_msg("%s: no current job", argv[0]); |
| 9861 | return EXIT_FAILURE; |
| 9862 | } |
Denys Vlasenko | 4e1c8b4 | 2016-11-07 20:06:40 +0100 | [diff] [blame] | 9863 | |
| 9864 | pi = parse_jobspec(argv[1]); |
| 9865 | if (!pi) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9866 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9867 | found: |
Denis Vlasenko | 6b9e053 | 2009-04-18 01:23:21 +0000 | [diff] [blame] | 9868 | /* TODO: bash prints a string representation |
| 9869 | * of job being foregrounded (like "sleep 1 | cat") */ |
Mike Frysinger | 38478a6 | 2009-05-20 04:48:06 -0400 | [diff] [blame] | 9870 | if (argv[0][0] == 'f' && G_saved_tty_pgrp) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9871 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 9872 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9873 | } |
| 9874 | |
| 9875 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 9876 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 9877 | for (i = 0; i < pi->num_cmds; i++) { |
| 9878 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9879 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 9880 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9881 | |
| 9882 | i = kill(- pi->pgrp, SIGCONT); |
| 9883 | if (i < 0) { |
| 9884 | if (errno == ESRCH) { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 9885 | delete_finished_job(pi); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9886 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9887 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 9888 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 9889 | } |
| 9890 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 9891 | if (argv[0][0] == 'f') { |
Denys Vlasenko | 1609629 | 2017-07-10 10:00:28 +0200 | [diff] [blame] | 9892 | 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] | 9893 | return checkjobs_and_fg_shell(pi); |
| 9894 | } |
| 9895 | return EXIT_SUCCESS; |
| 9896 | } |
| 9897 | #endif |
| 9898 | |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9899 | #if ENABLE_HUSH_KILL |
| 9900 | static int FAST_FUNC builtin_kill(char **argv) |
| 9901 | { |
| 9902 | int ret = 0; |
| 9903 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9904 | # if ENABLE_HUSH_JOB |
| 9905 | if (argv[1] && strcmp(argv[1], "-l") != 0) { |
| 9906 | int i = 1; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9907 | |
| 9908 | do { |
| 9909 | struct pipe *pi; |
| 9910 | char *dst; |
| 9911 | int j, n; |
| 9912 | |
| 9913 | if (argv[i][0] != '%') |
| 9914 | continue; |
| 9915 | /* |
| 9916 | * "kill %N" - job kill |
| 9917 | * Converting to pgrp / pid kill |
| 9918 | */ |
| 9919 | pi = parse_jobspec(argv[i]); |
| 9920 | if (!pi) { |
| 9921 | /* Eat bad jobspec */ |
| 9922 | j = i; |
| 9923 | do { |
| 9924 | j++; |
| 9925 | argv[j - 1] = argv[j]; |
| 9926 | } while (argv[j]); |
| 9927 | ret = 1; |
| 9928 | i--; |
| 9929 | continue; |
| 9930 | } |
| 9931 | /* |
| 9932 | * In jobs started under job control, we signal |
| 9933 | * entire process group by kill -PGRP_ID. |
| 9934 | * This happens, f.e., in interactive shell. |
| 9935 | * |
| 9936 | * Otherwise, we signal each child via |
| 9937 | * kill PID1 PID2 PID3. |
| 9938 | * Testcases: |
| 9939 | * sh -c 'sleep 1|sleep 1 & kill %1' |
| 9940 | * sh -c 'true|sleep 2 & sleep 1; kill %1' |
| 9941 | * sh -c 'true|sleep 1 & sleep 2; kill %1' |
| 9942 | */ |
Denys Vlasenko | 5362cc4 | 2017-01-09 05:57:13 +0100 | [diff] [blame] | 9943 | n = G_interactive_fd ? 1 : pi->num_cmds; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9944 | dst = alloca(n * sizeof(int)*4); |
| 9945 | argv[i] = dst; |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9946 | if (G_interactive_fd) |
| 9947 | dst += sprintf(dst, " -%u", (int)pi->pgrp); |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9948 | else for (j = 0; j < n; j++) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9949 | struct command *cmd = &pi->cmds[j]; |
| 9950 | /* Skip exited members of the job */ |
| 9951 | if (cmd->pid == 0) |
| 9952 | continue; |
| 9953 | /* |
| 9954 | * kill_main has matching code to expect |
| 9955 | * leading space. Needed to not confuse |
| 9956 | * negative pids with "kill -SIGNAL_NO" syntax |
| 9957 | */ |
| 9958 | dst += sprintf(dst, " %u", (int)cmd->pid); |
| 9959 | } |
| 9960 | *dst = '\0'; |
| 9961 | } while (argv[++i]); |
| 9962 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9963 | # endif |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9964 | |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9965 | if (argv[1] || ret == 0) { |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9966 | ret = run_applet_main(argv, kill_main); |
| 9967 | } |
Denys Vlasenko | fd68f1e | 2017-01-09 05:47:57 +0100 | [diff] [blame] | 9968 | /* else: ret = 1, "kill %bad_jobspec" case */ |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 9969 | return ret; |
| 9970 | } |
| 9971 | #endif |
| 9972 | |
| 9973 | #if ENABLE_HUSH_WAIT |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 9974 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 9975 | #if !ENABLE_HUSH_JOB |
| 9976 | # define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid) |
| 9977 | #endif |
| 9978 | 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] | 9979 | { |
| 9980 | int ret = 0; |
| 9981 | for (;;) { |
| 9982 | int sig; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 9983 | sigset_t oldset; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9984 | |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 9985 | if (!sigisemptyset(&G.pending_set)) |
| 9986 | goto check_sig; |
| 9987 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9988 | /* waitpid is not interruptible by SA_RESTARTed |
| 9989 | * signals which we use. Thus, this ugly dance: |
| 9990 | */ |
| 9991 | |
| 9992 | /* Make sure possible SIGCHLD is stored in kernel's |
| 9993 | * pending signal mask before we call waitpid. |
| 9994 | * Or else we may race with SIGCHLD, lose it, |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 9995 | * and get stuck in sigsuspend... |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9996 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 9997 | sigfillset(&oldset); /* block all signals, remember old set */ |
| 9998 | sigprocmask(SIG_SETMASK, &oldset, &oldset); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 9999 | |
| 10000 | if (!sigisemptyset(&G.pending_set)) { |
| 10001 | /* Crap! we raced with some signal! */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10002 | goto restore; |
| 10003 | } |
| 10004 | |
| 10005 | /*errno = 0; - checkjobs does this */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10006 | /* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10007 | ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10008 | debug_printf_exec("checkjobs:%d\n", ret); |
| 10009 | #if ENABLE_HUSH_JOB |
| 10010 | if (waitfor_pipe) { |
| 10011 | int rcode = job_exited_or_stopped(waitfor_pipe); |
| 10012 | debug_printf_exec("job_exited_or_stopped:%d\n", rcode); |
| 10013 | if (rcode >= 0) { |
| 10014 | ret = rcode; |
| 10015 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10016 | break; |
| 10017 | } |
| 10018 | } |
| 10019 | #endif |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10020 | /* if ECHILD, there are no children (ret is -1 or 0) */ |
| 10021 | /* if ret == 0, no children changed state */ |
| 10022 | /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10023 | if (errno == ECHILD || ret) { |
| 10024 | ret--; |
| 10025 | if (ret < 0) /* if ECHILD, may need to fix "ret" */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10026 | ret = 0; |
| 10027 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
| 10028 | break; |
| 10029 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10030 | /* Wait for SIGCHLD or any other signal */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10031 | /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */ |
| 10032 | /* Note: sigsuspend invokes signal handler */ |
| 10033 | sigsuspend(&oldset); |
| 10034 | restore: |
| 10035 | sigprocmask(SIG_SETMASK, &oldset, NULL); |
Denys Vlasenko | 830ea35 | 2016-11-08 04:59:11 +0100 | [diff] [blame] | 10036 | check_sig: |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10037 | /* So, did we get a signal? */ |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10038 | sig = check_and_run_traps(); |
| 10039 | if (sig /*&& sig != SIGCHLD - always true */) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10040 | ret = 128 + sig; |
| 10041 | break; |
| 10042 | } |
| 10043 | /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */ |
| 10044 | } |
| 10045 | return ret; |
| 10046 | } |
| 10047 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10048 | static int FAST_FUNC builtin_wait(char **argv) |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10049 | { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10050 | int ret; |
Denys Vlasenko | 9d6cbaf | 2011-05-11 23:56:11 +0200 | [diff] [blame] | 10051 | int status; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10052 | |
Denys Vlasenko | b131cce | 2010-05-20 03:39:43 +0200 | [diff] [blame] | 10053 | argv = skip_dash_dash(argv); |
| 10054 | if (argv[0] == NULL) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 10055 | /* Don't care about wait results */ |
| 10056 | /* Note 1: must wait until there are no more children */ |
| 10057 | /* Note 2: must be interruptible */ |
| 10058 | /* Examples: |
| 10059 | * $ sleep 3 & sleep 6 & wait |
| 10060 | * [1] 30934 sleep 3 |
| 10061 | * [2] 30935 sleep 6 |
| 10062 | * [1] Done sleep 3 |
| 10063 | * [2] Done sleep 6 |
| 10064 | * $ sleep 3 & sleep 6 & wait |
| 10065 | * [1] 30936 sleep 3 |
| 10066 | * [2] 30937 sleep 6 |
| 10067 | * [1] Done sleep 3 |
| 10068 | * ^C <-- after ~4 sec from keyboard |
| 10069 | * $ |
| 10070 | */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10071 | 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] | 10072 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10073 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10074 | do { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10075 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10076 | if (errno || pid <= 0) { |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10077 | #if ENABLE_HUSH_JOB |
| 10078 | if (argv[0][0] == '%') { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10079 | struct pipe *wait_pipe; |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10080 | ret = 127; /* bash compat for bad jobspecs */ |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10081 | wait_pipe = parse_jobspec(*argv); |
| 10082 | if (wait_pipe) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10083 | ret = job_exited_or_stopped(wait_pipe); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10084 | if (ret < 0) { |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10085 | ret = wait_for_child_or_signal(wait_pipe, 0); |
Denys Vlasenko | 2ed74e2 | 2017-07-14 19:58:46 +0200 | [diff] [blame] | 10086 | } else { |
| 10087 | /* waiting on "last dead job" removes it */ |
| 10088 | clean_up_last_dead_job(); |
Denys Vlasenko | 1310263 | 2017-07-08 00:24:32 +0200 | [diff] [blame] | 10089 | } |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10090 | } |
Denys Vlasenko | d5b5c2f | 2017-01-08 15:46:04 +0100 | [diff] [blame] | 10091 | /* else: parse_jobspec() already emitted error msg */ |
| 10092 | continue; |
Denys Vlasenko | 62b717b | 2016-11-07 22:12:18 +0100 | [diff] [blame] | 10093 | } |
| 10094 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10095 | /* mimic bash message */ |
| 10096 | 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] | 10097 | ret = EXIT_FAILURE; |
| 10098 | continue; /* bash checks all argv[] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 10099 | } |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10100 | |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10101 | /* Do we have such child? */ |
| 10102 | ret = waitpid(pid, &status, WNOHANG); |
| 10103 | if (ret < 0) { |
| 10104 | /* No */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10105 | ret = 127; |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10106 | if (errno == ECHILD) { |
Denys Vlasenko | 0c5657e | 2017-07-14 19:27:03 +0200 | [diff] [blame] | 10107 | if (pid == G.last_bg_pid) { |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10108 | /* "wait $!" but last bg task has already exited. Try: |
| 10109 | * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $? |
| 10110 | * In bash it prints exitcode 0, then 3. |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10111 | * In dash, it is 127. |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10112 | */ |
Denys Vlasenko | 840a435 | 2017-07-07 22:56:02 +0200 | [diff] [blame] | 10113 | ret = G.last_bg_pid_exitcode; |
Denys Vlasenko | 26ad94b | 2016-11-07 23:07:21 +0100 | [diff] [blame] | 10114 | } else { |
| 10115 | /* Example: "wait 1". mimic bash message */ |
| 10116 | 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] | 10117 | } |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10118 | } else { |
| 10119 | /* ??? */ |
| 10120 | bb_perror_msg("wait %s", *argv); |
| 10121 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10122 | continue; /* bash checks all argv[] */ |
| 10123 | } |
| 10124 | if (ret == 0) { |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10125 | /* Yes, and it still runs */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10126 | ret = wait_for_child_or_signal(NULL, pid); |
Denys Vlasenko | 7e67536 | 2016-10-28 21:57:31 +0200 | [diff] [blame] | 10127 | } else { |
| 10128 | /* Yes, and it just exited */ |
Denys Vlasenko | 02affb4 | 2016-11-08 00:59:29 +0100 | [diff] [blame] | 10129 | process_wait_result(NULL, pid, status); |
Denys Vlasenko | 85378cd | 2015-10-11 21:47:11 +0200 | [diff] [blame] | 10130 | ret = WEXITSTATUS(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10131 | if (WIFSIGNALED(status)) |
| 10132 | ret = 128 + WTERMSIG(status); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10133 | } |
Denys Vlasenko | 9db74e4 | 2016-10-28 22:39:12 +0200 | [diff] [blame] | 10134 | } while (*++argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10135 | |
| 10136 | return ret; |
| 10137 | } |
Denys Vlasenko | 1125d7d | 2017-01-08 17:19:38 +0100 | [diff] [blame] | 10138 | #endif |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 10139 | |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10140 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS |
| 10141 | static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min) |
| 10142 | { |
| 10143 | if (argv[1]) { |
| 10144 | def = bb_strtou(argv[1], NULL, 10); |
| 10145 | if (errno || def < def_min || argv[2]) { |
| 10146 | bb_error_msg("%s: bad arguments", argv[0]); |
| 10147 | def = UINT_MAX; |
| 10148 | } |
| 10149 | } |
| 10150 | return def; |
| 10151 | } |
| 10152 | #endif |
| 10153 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 10154 | #if ENABLE_HUSH_LOOPS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10155 | static int FAST_FUNC builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10156 | { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10157 | unsigned depth; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10158 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 10159 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 10160 | /* if we came from builtin_continue(), need to undo "= 1" */ |
| 10161 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 10162 | return EXIT_SUCCESS; /* bash compat */ |
| 10163 | } |
Denys Vlasenko | 49117b4 | 2016-07-21 14:40:08 +0200 | [diff] [blame] | 10164 | G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */ |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10165 | |
| 10166 | G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1); |
| 10167 | if (depth == UINT_MAX) |
| 10168 | G.flag_break_continue = BC_BREAK; |
| 10169 | if (G.depth_of_loop < depth) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 10170 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10171 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10172 | return EXIT_SUCCESS; |
| 10173 | } |
| 10174 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10175 | static int FAST_FUNC builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10176 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 10177 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 10178 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 10179 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 10180 | #endif |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10181 | |
| 10182 | #if ENABLE_HUSH_FUNCTIONS |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 10183 | static int FAST_FUNC builtin_return(char **argv) |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10184 | { |
| 10185 | int rc; |
| 10186 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 10187 | if (G_flag_return_in_progress != -1) { |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10188 | bb_error_msg("%s: not in a function or sourced script", argv[0]); |
| 10189 | return EXIT_FAILURE; /* bash compat */ |
| 10190 | } |
| 10191 | |
Denys Vlasenko | 04b46bc | 2016-10-01 22:28:03 +0200 | [diff] [blame] | 10192 | G_flag_return_in_progress = 1; |
Denis Vlasenko | 3d40d8e | 2009-04-17 23:44:18 +0000 | [diff] [blame] | 10193 | |
| 10194 | /* bash: |
| 10195 | * out of range: wraps around at 256, does not error out |
| 10196 | * non-numeric param: |
| 10197 | * f() { false; return qwe; }; f; echo $? |
| 10198 | * bash: return: qwe: numeric argument required <== we do this |
| 10199 | * 255 <== we also do this |
| 10200 | */ |
| 10201 | rc = parse_numeric_argv1(argv, G.last_exitcode, 0); |
| 10202 | return rc; |
| 10203 | } |
| 10204 | #endif |
Denys Vlasenko | a1184af | 2017-01-10 15:58:02 +0100 | [diff] [blame] | 10205 | |
| 10206 | #if ENABLE_HUSH_MEMLEAK |
| 10207 | static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM) |
| 10208 | { |
| 10209 | void *p; |
| 10210 | unsigned long l; |
| 10211 | |
| 10212 | # ifdef M_TRIM_THRESHOLD |
| 10213 | /* Optional. Reduces probability of false positives */ |
| 10214 | malloc_trim(0); |
| 10215 | # endif |
| 10216 | /* Crude attempt to find where "free memory" starts, |
| 10217 | * sans fragmentation. */ |
| 10218 | p = malloc(240); |
| 10219 | l = (unsigned long)p; |
| 10220 | free(p); |
| 10221 | p = malloc(3400); |
| 10222 | if (l < (unsigned long)p) l = (unsigned long)p; |
| 10223 | free(p); |
| 10224 | |
| 10225 | |
| 10226 | # if 0 /* debug */ |
| 10227 | { |
| 10228 | struct mallinfo mi = mallinfo(); |
| 10229 | printf("top alloc:0x%lx malloced:%d+%d=%d\n", l, |
| 10230 | mi.arena, mi.hblkhd, mi.arena + mi.hblkhd); |
| 10231 | } |
| 10232 | # endif |
| 10233 | |
| 10234 | if (!G.memleak_value) |
| 10235 | G.memleak_value = l; |
| 10236 | |
| 10237 | l -= G.memleak_value; |
| 10238 | if ((long)l < 0) |
| 10239 | l = 0; |
| 10240 | l /= 1024; |
| 10241 | if (l > 127) |
| 10242 | l = 127; |
| 10243 | |
| 10244 | /* Exitcode is "how many kilobytes we leaked since 1st call" */ |
| 10245 | return l; |
| 10246 | } |
| 10247 | #endif |