]> git.ipfire.org Git - thirdparty/bash.git/blame_incremental - shell.h
Bash-5.3 distribution sources and documentation
[thirdparty/bash.git] / shell.h
... / ...
CommitLineData
1/* shell.h -- The data structures used by the shell */
2
3/* Copyright (C) 1993-2024 Free Software Foundation, Inc.
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
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.
11
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.
16
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*/
20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24
25#include "bashjmp.h"
26
27#include "command.h"
28#include "syntax.h"
29#include "general.h"
30#include "error.h"
31#include "variables.h"
32#include "quit.h"
33#include "maxpath.h"
34#include "unwind_prot.h"
35#include "dispose_cmd.h"
36#include "make_cmd.h"
37#include "ocache.h"
38#include "subst.h"
39#include "arrayfunc.h"
40#include "sig.h"
41#include "pathnames.h"
42#include "externs.h"
43
44extern int EOF_Reached;
45
46#define NO_PIPE -1
47#define REDIRECT_BOTH -2
48
49#define NO_VARIABLE -1
50
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. */
56#define EX_BADUSAGE 2
57
58#define EX_MISCERROR 2
59
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
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 */
75#define EX_DISKFALLBACK 262 /* fall back to disk command from builtin */
76#define EX_UTILERROR 263 /* Posix special builtin utility error */
77
78/* Flag values that control parameter pattern substitution. */
79#define MATCH_ANY 0x000
80#define MATCH_BEG 0x001
81#define MATCH_END 0x002
82
83#define MATCH_TYPEMASK 0x003
84
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 */
90
91/* Some needed external declarations. */
92extern char **shell_environment;
93extern WORD_LIST *rest_of_args;
94
95/* Generalized global variables. */
96extern char *command_execution_string;
97
98extern int debugging_mode;
99extern int executing;
100extern int login_shell;
101extern int su_shell;
102extern int parsing_command;
103extern int interactive, interactive_shell;
104extern int startup_state;
105extern int reading_shell_script;
106extern int ssh_reading_startup_files;
107extern int shell_initialized;
108extern int bash_argv_initialized;
109extern int subshell_environment;
110extern int current_command_number;
111extern int indirection_level;
112extern int shell_compatibility_level;
113extern const int default_compatibility_level;
114extern int running_under_emacs;
115
116extern int pretty_print_mode;
117
118extern int posixly_correct;
119extern int no_line_editing;
120
121extern char *shell_name;
122extern char *current_host_name;
123
124extern int subshell_argc;
125extern char **subshell_argv;
126extern char **subshell_envp;
127
128/* variables managed using shopt */
129extern int hup_on_exit;
130extern int check_jobs_at_exit;
131extern int autocd;
132extern int check_window_size;
133
134/* from version.c */
135extern int build_version, patch_level;
136extern char *dist_version, *release_status;
137
138extern int locale_mb_cur_max;
139extern int locale_utf8locale;
140
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. */
143struct fd_bitmap {
144 int size;
145 char *bitmap;
146};
147
148#define FD_BITMAP_SIZE 32
149
150#define CTLESC '\001'
151#define CTLNUL '\177'
152
153/* Information about the current user. */
154struct user_info {
155 uid_t uid, euid, saveuid;
156 gid_t gid, egid, savegid;
157 char *user_name;
158 char *shell; /* shell from the password file */
159 char *home_dir;
160};
161
162extern struct user_info current_user;
163
164/* Force gcc to not clobber X on a longjmp(). Old versions of gcc mangle
165 this badly. */
166#if (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ > 8)
167# define USE_VAR(x) ((void) &(x))
168#else
169# define USE_VAR(x)
170#endif
171
172#define HEREDOC_MAX 16
173
174/* Structure in which to save partial parsing state when doing things like
175 PROMPT_COMMAND and bash_execute_unix_command execution. */
176
177typedef struct _sh_parser_state_t
178{
179 /* parsing state */
180 int parser_state;
181 int *token_state;
182 int parsing_command;
183
184 char *token;
185 size_t token_buffer_size;
186 int eof_token;
187
188 /* input line state -- line number saved elsewhere */
189 int input_line_terminator;
190 int eof_encountered;
191 int eol_lookahead;
192
193#if defined (HANDLE_MULTIBYTE)
194 /* Nothing right now for multibyte state, but might want something later. */
195#endif
196
197 char **prompt_string_pointer;
198
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;
204#endif
205
206 /* execution state possibly modified by the parser */
207 int last_command_exit_value;
208#if defined (ARRAY_VARS)
209 ARRAY *pipestatus;
210#endif
211 sh_builtin_func_t *last_shell_builtin, *this_shell_builtin;
212
213 /* flags state affecting the parser */
214 int expand_aliases;
215 int echo_input_at_read;
216 int need_here_doc;
217 int here_doc_first_line;
218
219 int esacs_needed;
220 int expecting_in;
221 int incmd;
222
223 /* structures affecting the parser */
224 void *pushed_strings;
225 REDIRECT *redir_stack[HEREDOC_MAX];
226} sh_parser_state_t;
227
228typedef struct _sh_input_line_state_t
229{
230 char *input_line;
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;
237#endif
238} sh_input_line_state_t;
239
240/* Let's try declaring these here. */
241extern void shell_ungets (char *);
242extern void rewind_input_string (void);
243
244extern char *parser_remaining_input (void);
245
246extern sh_parser_state_t *save_parser_state (sh_parser_state_t *);
247extern void restore_parser_state (sh_parser_state_t *);
248extern void flush_parser_state (sh_parser_state_t *);
249extern void uw_restore_parser_state (void *);
250
251extern sh_input_line_state_t *save_input_line_state (sh_input_line_state_t *);
252extern void restore_input_line_state (sh_input_line_state_t *);