1 /* shell.h -- The data structures used by the shell */
3 /* Copyright (C) 1993-2024 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
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.
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.
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/>.
31 #include "variables.h"
34 #include "unwind_prot.h"
35 #include "dispose_cmd.h"
39 #include "arrayfunc.h"
41 #include "pathnames.h"
44 extern int EOF_Reached
;
47 #define REDIRECT_BOTH -2
49 #define NO_VARIABLE -1
51 /* Values that can be returned by execute_command (). */
52 #define EXECUTION_FAILURE 1
53 #define EXECUTION_SUCCESS 0
55 /* Usage messages by builtins result in a return status of 2. */
58 #define EX_MISCERROR 2
60 /* Special exit statuses used by the shell, internally and externally. */
61 #define EX_RETRYFAIL 124
62 #define EX_WEXPCOMSUB 125
63 #define EX_BINARY_FILE 126
65 #define EX_NOINPUT 126
66 #define EX_NOTFOUND 127
68 #define EX_SHERRBASE 256 /* all special error values are > this. */
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 */
75 #define EX_DISKFALLBACK 262 /* fall back to disk command from builtin */
76 #define EX_UTILERROR 263 /* Posix special builtin utility error */
78 /* Flag values that control parameter pattern substitution. */
79 #define MATCH_ANY 0x000
80 #define MATCH_BEG 0x001
81 #define MATCH_END 0x002
83 #define MATCH_TYPEMASK 0x003
85 #define MATCH_GLOBREP 0x010
86 #define MATCH_QUOTED 0x020
87 #define MATCH_ASSIGNRHS 0x040
88 #define MATCH_STARSUB 0x080
89 #define MATCH_EXPREP 0x100 /* for pattern substitution, expand replacement */
91 /* Some needed external declarations. */
92 extern char **shell_environment
;
93 extern WORD_LIST
*rest_of_args
;
95 /* Generalized global variables. */
96 extern char *command_execution_string
;
98 extern int debugging_mode
;
100 extern int login_shell
;
102 extern int parsing_command
;
103 extern int interactive
, interactive_shell
;
104 extern int startup_state
;
105 extern int reading_shell_script
;
106 extern int ssh_reading_startup_files
;
107 extern int shell_initialized
;
108 extern int bash_argv_initialized
;
109 extern int subshell_environment
;
110 extern int current_command_number
;
111 extern int indirection_level
;
112 extern int shell_compatibility_level
;
113 extern const int default_compatibility_level
;
114 extern int running_under_emacs
;
116 extern int pretty_print_mode
;
118 extern int posixly_correct
;
119 extern int no_line_editing
;
121 extern char *shell_name
;
122 extern char *current_host_name
;
124 extern int subshell_argc
;
125 extern char **subshell_argv
;
126 extern char **subshell_envp
;
128 /* variables managed using shopt */
129 extern int hup_on_exit
;
130 extern int check_jobs_at_exit
;
132 extern int check_window_size
;
135 extern int build_version
, patch_level
;
136 extern char *dist_version
, *release_status
;
138 extern int locale_mb_cur_max
;
139 extern int locale_utf8locale
;
141 /* Structure to pass around that holds a bitmap of file descriptors
142 to close, and the size of that structure. Used in execute_cmd.c. */
148 #define FD_BITMAP_SIZE 32
150 #define CTLESC '\001'
151 #define CTLNUL '\177'
153 /* Information about the current user. */
155 uid_t uid
, euid
, saveuid
;
156 gid_t gid
, egid
, savegid
;
158 char *shell
; /* shell from the password file */
162 extern struct user_info current_user
;
164 /* Force gcc to not clobber X on a longjmp(). Old versions of gcc mangle
166 #if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ > 8)
167 # define USE_VAR(x) ((void) &(x))
172 #define HEREDOC_MAX 16
174 /* Structure in which to save partial parsing state when doing things like
175 PROMPT_COMMAND and bash_execute_unix_command execution. */
177 typedef struct _sh_parser_state_t
185 size_t token_buffer_size
;
188 /* input line state -- line number saved elsewhere */
189 int input_line_terminator
;
193 #if defined (HANDLE_MULTIBYTE)
194 /* Nothing right now for multibyte state, but might want something later. */
197 char **prompt_string_pointer
;
199 /* history state affecting or modified by the parser */
200 int current_command_line_count
;
201 #if defined (HISTORY)
202 int remember_on_history
;
203 int history_expansion_inhibited
;
206 /* execution state possibly modified by the parser */
207 int last_command_exit_value
;
208 #if defined (ARRAY_VARS)
211 sh_builtin_func_t
*last_shell_builtin
, *this_shell_builtin
;
213 /* flags state affecting the parser */
215 int echo_input_at_read
;
217 int here_doc_first_line
;
223 /* structures affecting the parser */
224 void *pushed_strings
;
225 REDIRECT
*redir_stack
[HEREDOC_MAX
];
228 typedef struct _sh_input_line_state_t
231 size_t input_line_index
;
232 size_t input_line_size
;
233 size_t input_line_len
;
234 #if defined (HANDLE_MULTIBYTE)
235 char *input_property
;
236 size_t input_propsize
;
238 } sh_input_line_state_t
;
240 /* Let's try declaring these here. */
241 extern void shell_ungets (char *);
242 extern void rewind_input_string (void);
244 extern char *parser_remaining_input (void);
246 extern sh_parser_state_t
*save_parser_state (sh_parser_state_t
*);
247 extern void restore_parser_state (sh_parser_state_t
*);
248 extern void flush_parser_state (sh_parser_state_t
*);
249 extern void uw_restore_parser_state (void *);
251 extern sh_input_line_state_t
*save_input_line_state (sh_input_line_state_t
*);
252 extern void restore_input_line_state (sh_input_line_state_t
*);