Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 1 | /* shell.h -- The data structures used by the shell */ |
| 2 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 3 | /* Copyright (C) 1993-2009 Free Software Foundation, Inc. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 4 | |
| 5 | This file is part of GNU Bash, the Bourne Again SHell. |
| 6 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 7 | Bash is free software: you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation, either version 3 of the License, or |
| 10 | (at your option) any later version. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 11 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 12 | Bash is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 16 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 17 | You should have received a copy of the GNU General Public License |
| 18 | along with Bash. If not, see <http://www.gnu.org/licenses/>. |
| 19 | */ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 20 | |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 21 | #ifdef HAVE_CONFIG_H |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 22 | #include "config.h" |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 23 | #endif |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 24 | |
| 25 | #include "bashjmp.h" |
| 26 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 27 | #include "command.h" |
Jari Aalto | 28ef6c3 | 2001-04-06 19:14:31 +0000 | [diff] [blame] | 28 | #include "syntax.h" |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 29 | #include "general.h" |
| 30 | #include "error.h" |
| 31 | #include "variables.h" |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 32 | #include "arrayfunc.h" |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 33 | #include "quit.h" |
| 34 | #include "maxpath.h" |
| 35 | #include "unwind_prot.h" |
| 36 | #include "dispose_cmd.h" |
| 37 | #include "make_cmd.h" |
Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 38 | #include "ocache.h" |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 39 | #include "subst.h" |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 40 | #include "sig.h" |
| 41 | #include "pathnames.h" |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 42 | #include "externs.h" |
| 43 | |
| 44 | extern int EOF_Reached; |
| 45 | |
| 46 | #define NO_PIPE -1 |
| 47 | #define REDIRECT_BOTH -2 |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 48 | |
| 49 | #define NO_VARIABLE -1 |
| 50 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 51 | /* Values that can be returned by execute_command (). */ |
| 52 | #define EXECUTION_FAILURE 1 |
| 53 | #define EXECUTION_SUCCESS 0 |
| 54 | |
| 55 | /* Usage messages by builtins result in a return status of 2. */ |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 56 | #define EX_BADUSAGE 2 |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 57 | |
Chet Ramey | 495aee4 | 2011-11-22 19:11:26 -0500 | [diff] [blame] | 58 | #define EX_MISCERROR 2 |
| 59 | |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 60 | /* Special exit statuses used by the shell, internally and externally. */ |
Chet Ramey | 0001803 | 2011-11-21 20:51:19 -0500 | [diff] [blame] | 61 | #define EX_RETRYFAIL 124 |
| 62 | #define EX_WEXPCOMSUB 125 |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 63 | #define EX_BINARY_FILE 126 |
| 64 | #define EX_NOEXEC 126 |
| 65 | #define EX_NOINPUT 126 |
| 66 | #define EX_NOTFOUND 127 |
| 67 | |
| 68 | #define EX_SHERRBASE 256 /* all special error values are > this. */ |
| 69 | |
| 70 | #define EX_BADSYNTAX 257 /* shell syntax error */ |
| 71 | #define EX_USAGE 258 /* syntax error in usage */ |
| 72 | #define EX_REDIRFAIL 259 /* redirection failed */ |
| 73 | #define EX_BADASSIGN 260 /* variable assignment error */ |
| 74 | #define EX_EXPFAIL 261 /* word expansion failed */ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 75 | |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 76 | /* Flag values that control parameter pattern substitution. */ |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 77 | #define MATCH_ANY 0x000 |
| 78 | #define MATCH_BEG 0x001 |
| 79 | #define MATCH_END 0x002 |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 80 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 81 | #define MATCH_TYPEMASK 0x003 |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 82 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 83 | #define MATCH_GLOBREP 0x010 |
| 84 | #define MATCH_QUOTED 0x020 |
| 85 | #define MATCH_STARSUB 0x040 |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 86 | |
| 87 | /* Some needed external declarations. */ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 88 | extern char **shell_environment; |
| 89 | extern WORD_LIST *rest_of_args; |
| 90 | |
| 91 | /* Generalized global variables. */ |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 92 | extern int debugging_mode; |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 93 | extern int executing, login_shell; |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 94 | extern int interactive, interactive_shell; |
Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 95 | extern int startup_state; |
Chet Ramey | 0001803 | 2011-11-21 20:51:19 -0500 | [diff] [blame] | 96 | extern int subshell_environment; |
Jari Aalto | f1be666 | 2008-11-18 13:15:12 +0000 | [diff] [blame] | 97 | extern int shell_compatibility_level; |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 98 | |
Chet Ramey | ac50fba | 2014-02-26 09:36:43 -0500 | [diff] [blame] | 99 | extern int locale_mb_cur_max; |
| 100 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 101 | /* Structure to pass around that holds a bitmap of file descriptors |
| 102 | to close, and the size of that structure. Used in execute_cmd.c. */ |
| 103 | struct fd_bitmap { |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 104 | int size; |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 105 | char *bitmap; |
| 106 | }; |
| 107 | |
| 108 | #define FD_BITMAP_SIZE 32 |
| 109 | |
| 110 | #define CTLESC '\001' |
| 111 | #define CTLNUL '\177' |
| 112 | |
| 113 | /* Information about the current user. */ |
| 114 | struct user_info { |
Jari Aalto | d166f04 | 1997-06-05 14:59:13 +0000 | [diff] [blame] | 115 | uid_t uid, euid; |
| 116 | gid_t gid, egid; |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 117 | char *user_name; |
| 118 | char *shell; /* shell from the password file */ |
| 119 | char *home_dir; |
| 120 | }; |
| 121 | |
| 122 | extern struct user_info current_user; |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 123 | |
| 124 | /* Force gcc to not clobber X on a longjmp(). Old versions of gcc mangle |
| 125 | this badly. */ |
Jari Aalto | 7117c2d | 2002-07-17 14:10:11 +0000 | [diff] [blame] | 126 | #if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ > 8) |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 127 | # define USE_VAR(x) ((void) &(x)) |
| 128 | #else |
| 129 | # define USE_VAR(x) |
| 130 | #endif |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 131 | |
| 132 | /* Structure in which to save partial parsing state when doing things like |
| 133 | PROMPT_COMMAND and bash_execute_unix_command execution. */ |
| 134 | |
| 135 | typedef struct _sh_parser_state_t { |
| 136 | |
| 137 | /* parsing state */ |
| 138 | int parser_state; |
| 139 | int *token_state; |
| 140 | |
Chet Ramey | b4839c2 | 2011-11-22 20:02:35 -0500 | [diff] [blame] | 141 | char *token; |
| 142 | int token_buffer_size; |
| 143 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 144 | /* input line state -- line number saved elsewhere */ |
| 145 | int input_line_terminator; |
| 146 | int eof_encountered; |
| 147 | |
| 148 | #if defined (HANDLE_MULTIBYTE) |
| 149 | /* Nothing right now for multibyte state, but might want something later. */ |
| 150 | #endif |
| 151 | |
Chet Ramey | 495aee4 | 2011-11-22 19:11:26 -0500 | [diff] [blame] | 152 | char **prompt_string_pointer; |
| 153 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 154 | /* history state affecting or modified by the parser */ |
| 155 | int current_command_line_count; |
| 156 | #if defined (HISTORY) |
| 157 | int remember_on_history; |
| 158 | int history_expansion_inhibited; |
| 159 | #endif |
| 160 | |
| 161 | /* execution state possibly modified by the parser */ |
| 162 | int last_command_exit_value; |
| 163 | #if defined (ARRAY_VARS) |
| 164 | ARRAY *pipestatus; |
| 165 | #endif |
| 166 | sh_builtin_func_t *last_shell_builtin, *this_shell_builtin; |
| 167 | |
| 168 | /* flags state affecting the parser */ |
| 169 | int expand_aliases; |
| 170 | int echo_input_at_read; |
Chet Ramey | daefb2c | 2014-08-01 15:30:48 -0400 | [diff] [blame] | 171 | int need_here_doc; |
| 172 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 173 | } sh_parser_state_t; |
| 174 | |
Chet Ramey | b4839c2 | 2011-11-22 20:02:35 -0500 | [diff] [blame] | 175 | typedef struct _sh_input_line_state_t { |
| 176 | char *input_line; |
Chet Ramey | ac50fba | 2014-02-26 09:36:43 -0500 | [diff] [blame] | 177 | size_t input_line_index; |
| 178 | size_t input_line_size; |
| 179 | size_t input_line_len; |
Chet Ramey | b4839c2 | 2011-11-22 20:02:35 -0500 | [diff] [blame] | 180 | } sh_input_line_state_t; |
| 181 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 182 | /* Let's try declaring these here. */ |
Chet Ramey | 80b4d71 | 2014-10-05 19:12:20 -0400 | [diff] [blame] | 183 | extern char *parser_remaining_input __P((void)); |
| 184 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 185 | extern sh_parser_state_t *save_parser_state __P((sh_parser_state_t *)); |
| 186 | extern void restore_parser_state __P((sh_parser_state_t *)); |
Chet Ramey | b4839c2 | 2011-11-22 20:02:35 -0500 | [diff] [blame] | 187 | |
| 188 | extern sh_input_line_state_t *save_input_line_state __P((sh_input_line_state_t *)); |
| 189 | extern void restore_input_line_state __P((sh_input_line_state_t *)); |