]> git.ipfire.org Git - thirdparty/bash.git/blob - command.h
commit bash-20121221 snapshot
[thirdparty/bash.git] / command.h
1 /* command.h -- The structures used internally to represent commands, and
2 the extern declarations of the functions used to create them. */
3
4 /* Copyright (C) 1993-2010 Free Software Foundation, Inc.
5
6 This file is part of GNU Bash, the Bourne Again SHell.
7
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.
12
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.
17
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/>.
20 */
21
22 #if !defined (_COMMAND_H_)
23 #define _COMMAND_H_
24
25 #include "stdc.h"
26
27 /* Instructions describing what kind of thing to do for a redirection. */
28 enum r_instruction {
29 r_output_direction, r_input_direction, r_inputa_direction,
30 r_appending_to, r_reading_until, r_reading_string,
31 r_duplicating_input, r_duplicating_output, r_deblank_reading_until,
32 r_close_this, r_err_and_out, r_input_output, r_output_force,
33 r_duplicating_input_word, r_duplicating_output_word,
34 r_move_input, r_move_output, r_move_input_word, r_move_output_word,
35 r_append_err_and_out
36 };
37
38 /* Redirection flags; values for rflags */
39 #define REDIR_VARASSIGN 0x01
40
41 /* Redirection errors. */
42 #define AMBIGUOUS_REDIRECT -1
43 #define NOCLOBBER_REDIRECT -2
44 #define RESTRICTED_REDIRECT -3 /* can only happen in restricted shells. */
45 #define HEREDOC_REDIRECT -4 /* here-doc temp file can't be created */
46 #define BADVAR_REDIRECT -5 /* something wrong with {varname}redir */
47
48 #define CLOBBERING_REDIRECT(ri) \
49 (ri == r_output_direction || ri == r_err_and_out)
50
51 #define OUTPUT_REDIRECT(ri) \
52 (ri == r_output_direction || ri == r_input_output || ri == r_err_and_out || ri == r_append_err_and_out)
53
54 #define INPUT_REDIRECT(ri) \
55 (ri == r_input_direction || ri == r_inputa_direction || ri == r_input_output)
56
57 #define WRITE_REDIRECT(ri) \
58 (ri == r_output_direction || \
59 ri == r_input_output || \
60 ri == r_err_and_out || \
61 ri == r_appending_to || \
62 ri == r_append_err_and_out || \
63 ri == r_output_force)
64
65 /* redirection needs translation */
66 #define TRANSLATE_REDIRECT(ri) \
67 (ri == r_duplicating_input_word || ri == r_duplicating_output_word || \
68 ri == r_move_input_word || ri == r_move_output_word)
69
70 /* Command Types: */
71 enum command_type { cm_for, cm_case, cm_while, cm_if, cm_simple, cm_select,
72 cm_connection, cm_function_def, cm_until, cm_group,
73 cm_arith, cm_cond, cm_arith_for, cm_subshell, cm_coproc };
74
75 /* Possible values for the `flags' field of a WORD_DESC. */
76 #define W_HASDOLLAR 0x000001 /* Dollar sign present. */
77 #define W_QUOTED 0x000002 /* Some form of quote character is present. */
78 #define W_ASSIGNMENT 0x000004 /* This word is a variable assignment. */
79 #define W_GLOBEXP 0x000008 /* This word is the result of a glob expansion. */
80 #define W_NOSPLIT 0x000010 /* Do not perform word splitting on this word because ifs is empty string. */
81 #define W_NOGLOB 0x000020 /* Do not perform globbing on this word. */
82 #define W_NOSPLIT2 0x000040 /* Don't split word except for $@ expansion (using spaces) because context does not allow it. */
83 #define W_TILDEEXP 0x000080 /* Tilde expand this assignment word */
84 #define W_DOLLARAT 0x000100 /* $@ and its special handling */
85 #define W_DOLLARSTAR 0x000200 /* $* and its special handling */
86 #define W_NOCOMSUB 0x000400 /* Don't perform command substitution on this word */
87 #define W_ASSIGNRHS 0x000800 /* Word is rhs of an assignment statement */
88 #define W_NOTILDE 0x001000 /* Don't perform tilde expansion on this word */
89 #define W_ITILDE 0x002000 /* Internal flag for word expansion */
90 #define W_NOEXPAND 0x004000 /* Don't expand at all -- do quote removal */
91 #define W_COMPASSIGN 0x008000 /* Compound assignment */
92 #define W_ASSNBLTIN 0x010000 /* word is a builtin command that takes assignments */
93 #define W_ASSIGNARG 0x020000 /* word is assignment argument to command */
94 #define W_HASQUOTEDNULL 0x040000 /* word contains a quoted null character */
95 #define W_DQUOTE 0x080000 /* word should be treated as if double-quoted */
96 #define W_NOPROCSUB 0x100000 /* don't perform process substitution */
97 #define W_HASCTLESC 0x200000 /* word contains literal CTLESC characters */
98 #define W_ASSIGNASSOC 0x400000 /* word looks like associative array assignment */
99 #define W_ASSIGNARRAY 0x800000 /* word looks like a compound indexed array assignment */
100 #define W_ARRAYIND 0x1000000 /* word is an array index being expanded */
101 #define W_ASSNGLOBAL 0x2000000 /* word is a global assignment to declare (declare/typeset -g) */
102 #define W_NOBRACE 0x4000000 /* Don't perform brace expansion */
103
104 /* Possible values for subshell_environment */
105 #define SUBSHELL_ASYNC 0x01 /* subshell caused by `command &' */
106 #define SUBSHELL_PAREN 0x02 /* subshell caused by ( ... ) */
107 #define SUBSHELL_COMSUB 0x04 /* subshell caused by `command` or $(command) */
108 #define SUBSHELL_FORK 0x08 /* subshell caused by executing a disk command */
109 #define SUBSHELL_PIPE 0x10 /* subshell from a pipeline element */
110 #define SUBSHELL_PROCSUB 0x20 /* subshell caused by <(command) or >(command) */
111 #define SUBSHELL_COPROC 0x40 /* subshell from a coproc pipeline */
112 #define SUBSHELL_RESETTRAP 0x80 /* subshell needs to reset trap strings on first call to trap */
113
114 /* A structure which represents a word. */
115 typedef struct word_desc {
116 char *word; /* Zero terminated string. */
117 int flags; /* Flags associated with this word. */
118 } WORD_DESC;
119
120 /* A linked list of words. */
121 typedef struct word_list {
122 struct word_list *next;
123 WORD_DESC *word;
124 } WORD_LIST;
125
126
127 /* **************************************************************** */
128 /* */
129 /* Shell Command Structs */
130 /* */
131 /* **************************************************************** */
132
133 /* What a redirection descriptor looks like. If the redirection instruction
134 is ri_duplicating_input or ri_duplicating_output, use DEST, otherwise
135 use the file in FILENAME. Out-of-range descriptors are identified by a
136 negative DEST. */
137
138 typedef union {
139 int dest; /* Place to redirect REDIRECTOR to, or ... */
140 WORD_DESC *filename; /* filename to redirect to. */
141 } REDIRECTEE;
142
143 /* Structure describing a redirection. If REDIRECTOR is negative, the parser
144 (or translator in redir.c) encountered an out-of-range file descriptor. */
145 typedef struct redirect {
146 struct redirect *next; /* Next element, or NULL. */
147 REDIRECTEE redirector; /* Descriptor or varname to be redirected. */
148 int rflags; /* Private flags for this redirection */
149 int flags; /* Flag value for `open'. */
150 enum r_instruction instruction; /* What to do with the information. */
151 REDIRECTEE redirectee; /* File descriptor or filename */
152 char *here_doc_eof; /* The word that appeared in <<foo. */
153 } REDIRECT;
154
155 /* An element used in parsing. A single word or a single redirection.
156 This is an ephemeral construct. */
157 typedef struct element {
158 WORD_DESC *word;
159 REDIRECT *redirect;
160 } ELEMENT;
161
162 /* Possible values for command->flags. */
163 #define CMD_WANT_SUBSHELL 0x01 /* User wants a subshell: ( command ) */
164 #define CMD_FORCE_SUBSHELL 0x02 /* Shell needs to force a subshell. */
165 #define CMD_INVERT_RETURN 0x04 /* Invert the exit value. */
166 #define CMD_IGNORE_RETURN 0x08 /* Ignore the exit value. For set -e. */
167 #define CMD_NO_FUNCTIONS 0x10 /* Ignore functions during command lookup. */
168 #define CMD_INHIBIT_EXPANSION 0x20 /* Do not expand the command words. */
169 #define CMD_NO_FORK 0x40 /* Don't fork; just call execve */
170 #define CMD_TIME_PIPELINE 0x80 /* Time a pipeline */
171 #define CMD_TIME_POSIX 0x100 /* time -p; use POSIX.2 time output spec. */
172 #define CMD_AMPERSAND 0x200 /* command & */
173 #define CMD_STDIN_REDIR 0x400 /* async command needs implicit </dev/null */
174 #define CMD_COMMAND_BUILTIN 0x0800 /* command executed by `command' builtin */
175 #define CMD_COPROC_SUBSHELL 0x1000
176 #define CMD_LASTPIPE 0x2000
177
178 /* What a command looks like. */
179 typedef struct command {
180 enum command_type type; /* FOR CASE WHILE IF CONNECTION or SIMPLE. */
181 int flags; /* Flags controlling execution environment. */
182 int line; /* line number the command starts on */
183 REDIRECT *redirects; /* Special redirects for FOR CASE, etc. */
184 union {
185 struct for_com *For;
186 struct case_com *Case;
187 struct while_com *While;
188 struct if_com *If;
189 struct connection *Connection;
190 struct simple_com *Simple;
191 struct function_def *Function_def;
192 struct group_com *Group;
193 #if defined (SELECT_COMMAND)
194 struct select_com *Select;
195 #endif
196 #if defined (DPAREN_ARITHMETIC)
197 struct arith_com *Arith;
198 #endif
199 #if defined (COND_COMMAND)
200 struct cond_com *Cond;
201 #endif
202 #if defined (ARITH_FOR_COMMAND)
203 struct arith_for_com *ArithFor;
204 #endif
205 struct subshell_com *Subshell;
206 struct coproc_com *Coproc;
207 } value;
208 } COMMAND;
209
210 /* Structure used to represent the CONNECTION type. */
211 typedef struct connection {
212 int ignore; /* Unused; simplifies make_command (). */
213 COMMAND *first; /* Pointer to the first command. */
214 COMMAND *second; /* Pointer to the second command. */
215 int connector; /* What separates this command from others. */
216 } CONNECTION;
217
218 /* Structures used to represent the CASE command. */
219
220 /* Values for FLAGS word in a PATTERN_LIST */
221 #define CASEPAT_FALLTHROUGH 0x01
222 #define CASEPAT_TESTNEXT 0x02
223
224 /* Pattern/action structure for CASE_COM. */
225 typedef struct pattern_list {
226 struct pattern_list *next; /* Clause to try in case this one failed. */
227 WORD_LIST *patterns; /* Linked list of patterns to test. */
228 COMMAND *action; /* Thing to execute if a pattern matches. */
229 int flags;
230 } PATTERN_LIST;
231
232 /* The CASE command. */
233 typedef struct case_com {
234 int flags; /* See description of CMD flags. */
235 int line; /* line number the `case' keyword appears on */
236 WORD_DESC *word; /* The thing to test. */
237 PATTERN_LIST *clauses; /* The clauses to test against, or NULL. */
238 } CASE_COM;
239
240 /* FOR command. */
241 typedef struct for_com {
242 int flags; /* See description of CMD flags. */
243 int line; /* line number the `for' keyword appears on */
244 WORD_DESC *name; /* The variable name to get mapped over. */
245 WORD_LIST *map_list; /* The things to map over. This is never NULL. */
246 COMMAND *action; /* The action to execute.
247 During execution, NAME is bound to successive
248 members of MAP_LIST. */
249 } FOR_COM;
250
251 #if defined (ARITH_FOR_COMMAND)
252 typedef struct arith_for_com {
253 int flags;
254 int line; /* generally used for error messages */
255 WORD_LIST *init;
256 WORD_LIST *test;
257 WORD_LIST *step;
258 COMMAND *action;
259 } ARITH_FOR_COM;
260 #endif
261
262 #if defined (SELECT_COMMAND)
263 /* KSH SELECT command. */
264 typedef struct select_com {
265 int flags; /* See description of CMD flags. */
266 int line; /* line number the `select' keyword appears on */
267 WORD_DESC *name; /* The variable name to get mapped over. */
268 WORD_LIST *map_list; /* The things to map over. This is never NULL. */
269 COMMAND *action; /* The action to execute.
270 During execution, NAME is bound to the member of
271 MAP_LIST chosen by the user. */
272 } SELECT_COM;
273 #endif /* SELECT_COMMAND */
274
275 /* IF command. */
276 typedef struct if_com {
277 int flags; /* See description of CMD flags. */
278 COMMAND *test; /* Thing to test. */
279 COMMAND *true_case; /* What to do if the test returned non-zero. */
280 COMMAND *false_case; /* What to do if the test returned zero. */
281 } IF_COM;
282
283 /* WHILE command. */
284 typedef struct while_com {
285 int flags; /* See description of CMD flags. */
286 COMMAND *test; /* Thing to test. */
287 COMMAND *action; /* Thing to do while test is non-zero. */
288 } WHILE_COM;
289
290 #if defined (DPAREN_ARITHMETIC)
291 /* The arithmetic evaluation command, ((...)). Just a set of flags and
292 a WORD_LIST, of which the first element is the only one used, for the
293 time being. */
294 typedef struct arith_com {
295 int flags;
296 int line;
297 WORD_LIST *exp;
298 } ARITH_COM;
299 #endif /* DPAREN_ARITHMETIC */
300
301 /* The conditional command, [[...]]. This is a binary tree -- we slippped
302 a recursive-descent parser into the YACC grammar to parse it. */
303 #define COND_AND 1
304 #define COND_OR 2
305 #define COND_UNARY 3
306 #define COND_BINARY 4
307 #define COND_TERM 5
308 #define COND_EXPR 6
309
310 typedef struct cond_com {
311 int flags;
312 int line;
313 int type;
314 WORD_DESC *op;
315 struct cond_com *left, *right;
316 } COND_COM;
317
318 /* The "simple" command. Just a collection of words and redirects. */
319 typedef struct simple_com {
320 int flags; /* See description of CMD flags. */
321 int line; /* line number the command starts on */
322 WORD_LIST *words; /* The program name, the arguments,
323 variable assignments, etc. */
324 REDIRECT *redirects; /* Redirections to perform. */
325 } SIMPLE_COM;
326
327 /* The "function definition" command. */
328 typedef struct function_def {
329 int flags; /* See description of CMD flags. */
330 int line; /* Line number the function def starts on. */
331 WORD_DESC *name; /* The name of the function. */
332 COMMAND *command; /* The parsed execution tree. */
333 char *source_file; /* file in which function was defined, if any */
334 } FUNCTION_DEF;
335
336 /* A command that is `grouped' allows pipes and redirections to affect all
337 commands in the group. */
338 typedef struct group_com {
339 int ignore; /* See description of CMD flags. */
340 COMMAND *command;
341 } GROUP_COM;
342
343 typedef struct subshell_com {
344 int flags;
345 COMMAND *command;
346 } SUBSHELL_COM;
347
348 #define COPROC_RUNNING 0x01
349 #define COPROC_DEAD 0x02
350
351 typedef struct coproc {
352 char *c_name;
353 pid_t c_pid;
354 int c_rfd;
355 int c_wfd;
356 int c_rsave;
357 int c_wsave;
358 int c_flags;
359 int c_status;
360 int c_lock;
361 } Coproc;
362
363 typedef struct coproc_com {
364 int flags;
365 char *name;
366 COMMAND *command;
367 } COPROC_COM;
368
369 extern COMMAND *global_command;
370 extern Coproc sh_coproc;
371
372 /* Possible command errors */
373 #define CMDERR_DEFAULT 0
374 #define CMDERR_BADTYPE 1
375 #define CMDERR_BADCONN 2
376 #define CMDERR_BADJUMP 3
377
378 #define CMDERR_LAST 3
379
380 /* Forward declarations of functions declared in copy_cmd.c. */
381
382 extern FUNCTION_DEF *copy_function_def_contents __P((FUNCTION_DEF *, FUNCTION_DEF *));
383 extern FUNCTION_DEF *copy_function_def __P((FUNCTION_DEF *));
384
385 extern WORD_DESC *copy_word __P((WORD_DESC *));
386 extern WORD_LIST *copy_word_list __P((WORD_LIST *));
387 extern REDIRECT *copy_redirect __P((REDIRECT *));
388 extern REDIRECT *copy_redirects __P((REDIRECT *));
389 extern COMMAND *copy_command __P((COMMAND *));
390
391 #endif /* _COMMAND_H_ */