| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 1 | This file is exec.def, from which is created exec.c. |
| 2 | It implements the builtin "exec" in Bash. |
| 3 | |
| Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame^] | 4 | Copyright (C) 1987-2009 Free Software Foundation, Inc. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 5 | |
| 6 | This file is part of GNU Bash, the Bourne Again SHell. |
| 7 | |
| Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame^] | 8 | Bash is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 3 of the License, or |
| 11 | (at your option) any later version. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 12 | |
| Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame^] | 13 | Bash is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 17 | |
| Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame^] | 18 | You should have received a copy of the GNU General Public License |
| 19 | along with Bash. If not, see <http://www.gnu.org/licenses/>. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 20 | |
| 21 | $PRODUCES exec.c |
| 22 | |
| 23 | $BUILTIN exec |
| 24 | $FUNCTION exec_builtin |
| Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame^] | 25 | $SHORT_DOC exec [-cl] [-a name] [command [arguments ...]] [redirection ...] |
| 26 | Replace the shell with the given command. |
| 27 | |
| 28 | Execute COMMAND, replacing this shell with the specified program. |
| 29 | ARGUMENTS become the arguments to COMMAND. If COMMAND is not specified, |
| 30 | any redirections take effect in the current shell. |
| 31 | |
| 32 | Options: |
| 33 | -a name pass NAME as the zeroth argument to COMMAND |
| 34 | -c execute COMMAND with an empty environment |
| 35 | -l place a dash in the zeroth argument to COMMAND |
| 36 | |
| 37 | If the command cannot be executed, a non-interactive shell exits, unless |
| 38 | the shell option `execfail' is set. |
| 39 | |
| 40 | Exit Status: |
| 41 | Returns success unless COMMAND is not found or a redirection error occurs. |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 42 | $END |
| 43 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 44 | #include <config.h> |
| 45 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 46 | #include "../bashtypes.h" |
| Jari Aalto | bb70624 | 2000-03-17 21:46:59 +0000 | [diff] [blame] | 47 | #include "posixstat.h" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 48 | #include <signal.h> |
| 49 | #include <errno.h> |
| 50 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 51 | #if defined (HAVE_UNISTD_H) |
| 52 | # include <unistd.h> |
| 53 | #endif |
| 54 | |
| 55 | #include "../bashansi.h" |
| Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 56 | #include "../bashintl.h" |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 57 | |
| 58 | #include "../shell.h" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 59 | #include "../execute_cmd.h" |
| Jari Aalto | cce855b | 1998-04-17 19:52:44 +0000 | [diff] [blame] | 60 | #include "../findcmd.h" |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 61 | #if defined (JOB_CONTROL) |
| 62 | # include "../jobs.h" |
| 63 | #endif |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 64 | #include "../flags.h" |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 65 | #include "../trap.h" |
| 66 | #if defined (HISTORY) |
| 67 | # include "../bashhist.h" |
| 68 | #endif |
| 69 | #include "common.h" |
| 70 | #include "bashgetopt.h" |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 71 | |
| 72 | /* Not all systems declare ERRNO in errno.h... and some systems #define it! */ |
| 73 | #if !defined (errno) |
| 74 | extern int errno; |
| 75 | #endif /* !errno */ |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 76 | |
| Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 77 | extern int subshell_environment; |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 78 | extern REDIRECT *redirection_undo_list; |
| 79 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 80 | int no_exit_on_failed_exec; |
| 81 | |
| 82 | /* If the user wants this to look like a login shell, then |
| 83 | prepend a `-' onto NAME and return the new name. */ |
| 84 | static char * |
| 85 | mkdashname (name) |
| 86 | char *name; |
| 87 | { |
| 88 | char *ret; |
| 89 | |
| Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 90 | ret = (char *)xmalloc (2 + strlen (name)); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 91 | ret[0] = '-'; |
| 92 | strcpy (ret + 1, name); |
| 93 | return ret; |
| 94 | } |
| 95 | |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 96 | int |
| 97 | exec_builtin (list) |
| 98 | WORD_LIST *list; |
| 99 | { |
| 100 | int exit_value = EXECUTION_FAILURE; |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 101 | int cleanenv, login, opt; |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 102 | char *argv0, *command, **args, **env, *newname, *com2; |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 103 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 104 | cleanenv = login = 0; |
| 105 | argv0 = (char *)NULL; |
| 106 | |
| 107 | reset_internal_getopt (); |
| 108 | while ((opt = internal_getopt (list, "cla:")) != -1) |
| 109 | { |
| 110 | switch (opt) |
| 111 | { |
| 112 | case 'c': |
| 113 | cleanenv = 1; |
| 114 | break; |
| 115 | case 'l': |
| 116 | login = 1; |
| 117 | break; |
| 118 | case 'a': |
| 119 | argv0 = list_optarg; |
| 120 | break; |
| 121 | default: |
| 122 | builtin_usage (); |
| 123 | return (EX_USAGE); |
| 124 | } |
| 125 | } |
| 126 | list = loptend; |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 127 | |
| 128 | /* First, let the redirections remain. */ |
| 129 | dispose_redirects (redirection_undo_list); |
| 130 | redirection_undo_list = (REDIRECT *)NULL; |
| 131 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 132 | if (list == 0) |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 133 | return (EXECUTION_SUCCESS); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 134 | |
| 135 | #if defined (RESTRICTED_SHELL) |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 136 | if (restricted) |
| 137 | { |
| Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 138 | sh_restricted ((char *)NULL); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 139 | return (EXECUTION_FAILURE); |
| 140 | } |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 141 | #endif /* RESTRICTED_SHELL */ |
| 142 | |
| Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 143 | args = strvec_from_word_list (list, 1, 0, (int *)NULL); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 144 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 145 | /* A command with a slash anywhere in its name is not looked up in $PATH. */ |
| 146 | command = absolute_program (args[0]) ? args[0] : search_for_command (args[0]); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 147 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 148 | if (command == 0) |
| 149 | { |
| Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 150 | sh_notfound (args[0]); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 151 | exit_value = EX_NOTFOUND; /* As per Posix.2, 3.14.6 */ |
| 152 | goto failed_exec; |
| 153 | } |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 154 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 155 | com2 = full_pathname (command); |
| 156 | if (com2) |
| 157 | { |
| 158 | if (command != args[0]) |
| 159 | free (command); |
| 160 | command = com2; |
| 161 | } |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 162 | |
| 163 | if (argv0) |
| 164 | { |
| 165 | free (args[0]); |
| 166 | args[0] = login ? mkdashname (argv0) : savestring (argv0); |
| 167 | } |
| 168 | else if (login) |
| 169 | { |
| 170 | newname = mkdashname (args[0]); |
| 171 | free (args[0]); |
| 172 | args[0] = newname; |
| 173 | } |
| 174 | |
| 175 | /* Decrement SHLVL by 1 so a new shell started here has the same value, |
| 176 | preserving the appearance. After we do that, we need to change the |
| 177 | exported environment to include the new value. */ |
| 178 | if (cleanenv == 0) |
| 179 | adjust_shell_level (-1); |
| 180 | |
| 181 | if (cleanenv) |
| 182 | env = (char **)NULL; |
| 183 | else |
| 184 | { |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 185 | maybe_make_export_env (); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 186 | env = export_env; |
| 187 | } |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 188 | |
| 189 | #if defined (HISTORY) |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 190 | if (interactive_shell && subshell_environment == 0) |
| 191 | maybe_save_shell_history (); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 192 | #endif /* HISTORY */ |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 193 | |
| 194 | restore_original_signals (); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 195 | |
| 196 | #if defined (JOB_CONTROL) |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 197 | if (subshell_environment == 0) |
| 198 | end_job_control (); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 199 | #endif /* JOB_CONTROL */ |
| 200 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 201 | shell_execve (command, args, env); |
| Jari Aalto | bc4cd23 | 1998-07-23 14:37:54 +0000 | [diff] [blame] | 202 | |
| 203 | /* We have to set this to NULL because shell_execve has called realloc() |
| 204 | to stuff more items at the front of the array, which may have caused |
| 205 | the memory to be freed by realloc(). We don't want to free it twice. */ |
| 206 | args = (char **)NULL; |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 207 | if (cleanenv == 0) |
| 208 | adjust_shell_level (1); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 209 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 210 | if (executable_file (command) == 0) |
| 211 | { |
| Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 212 | builtin_error (_("%s: cannot execute: %s"), command, strerror (errno)); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 213 | exit_value = EX_NOEXEC; /* As per Posix.2, 3.14.6 */ |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 214 | } |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 215 | else |
| 216 | file_error (command); |
| 217 | |
| 218 | failed_exec: |
| Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 219 | FREE (command); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 220 | |
| 221 | if (subshell_environment || (interactive == 0 && no_exit_on_failed_exec == 0)) |
| 222 | exit_shell (exit_value); |
| 223 | |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 224 | if (args) |
| Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 225 | strvec_dispose (args); |
| Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 226 | |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 227 | initialize_traps (); |
| Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 228 | initialize_signals (1); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 229 | |
| 230 | #if defined (JOB_CONTROL) |
| Jari Aalto | 95732b4 | 2005-12-07 14:08:12 +0000 | [diff] [blame] | 231 | if (interactive_shell || job_control) |
| 232 | restart_job_control (); |
| Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 233 | #endif /* JOB_CONTROL */ |
| 234 | |
| 235 | return (exit_value); |
| Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 236 | } |