]> git.ipfire.org Git - thirdparty/bash.git/blob - flags.c
Imported from ../bash-2.03.tar.gz.
[thirdparty/bash.git] / flags.c
1 /* flags.c -- Everything about flags except the `set' command. That
2 is in builtins.c */
3
4 /* Copyright (C) 1987,1989 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 it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 1, or (at your option) any later
11 version.
12
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING. If not, write to the Free Software
20 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22 /* Flags hacking. */
23 #include "config.h"
24 #if defined (HAVE_UNISTD_H)
25 # include <unistd.h>
26 #endif
27
28 #include "shell.h"
29 #include "flags.h"
30
31 #if defined (JOB_CONTROL)
32 extern int set_job_control ();
33 #endif
34
35 #if defined (RESTRICTED_SHELL)
36 extern char *shell_name;
37 #endif
38
39 /* **************************************************************** */
40 /* */
41 /* The Standard Sh Flags. */
42 /* */
43 /* **************************************************************** */
44
45 /* Non-zero means automatically mark variables which are modified or created
46 as auto export variables. */
47 int mark_modified_vars = 0;
48
49 /* Non-zero causes asynchronous job notification. Otherwise, job state
50 notification only takes place just before a primary prompt is printed. */
51 int asynchronous_notification = 0;
52
53 /* Non-zero means exit immediately if a command exits with a non-zero
54 exit status. */
55 int exit_immediately_on_error = 0;
56
57 /* Non-zero means disable filename globbing. */
58 int disallow_filename_globbing = 0;
59
60 /* Non-zero means that all keyword arguments are placed into the environment
61 for a command, not just those that appear on the line before the command
62 name. */
63 int place_keywords_in_env = 0;
64
65 /* Non-zero means read commands, but don't execute them. This is useful
66 for debugging shell scripts that should do something hairy and possibly
67 desctructive. */
68 int read_but_dont_execute = 0;
69
70 /* Non-zero means end of file is after one command. */
71 int just_one_command = 0;
72
73 /* Non-zero means don't overwrite existing files while doing redirections. */
74 int noclobber = 0;
75
76 /* Non-zero means trying to get the value of $i where $i is undefined
77 causes an error, instead of a null substitution. */
78 int unbound_vars_is_error = 0;
79
80 /* Non-zero means type out input lines after you read them. */
81 int echo_input_at_read = 0;
82
83 /* Non-zero means type out the command definition after reading, but
84 before executing. */
85 int echo_command_at_execute = 0;
86
87 /* Non-zero means turn on the job control features. */
88 int jobs_m_flag = 0;
89
90 /* Non-zero means this shell is interactive, even if running under a
91 pipe. */
92 int forced_interactive = 0;
93
94 /* By default, follow the symbolic links as if they were real directories
95 while hacking the `cd' command. This means that `cd ..' moves up in
96 the string of symbolic links that make up the current directory, instead
97 of the absolute directory. The shell variable `nolinks' also controls
98 this flag. */
99 int no_symbolic_links = 0;
100
101 /* **************************************************************** */
102 /* */
103 /* Non-Standard Flags Follow Here. */
104 /* */
105 /* **************************************************************** */
106
107 #if 0
108 /* Non-zero means do lexical scoping in the body of a FOR command. */
109 int lexical_scoping = 0;
110 #endif
111
112 /* Non-zero means no such thing as invisible variables. */
113 int no_invisible_vars = 0;
114
115 /* Non-zero means look up and remember command names in a hash table, */
116 int hashing_enabled = 1;
117
118 #if defined (BANG_HISTORY)
119 /* Non-zero means that we are doing history expansion. The default.
120 This means !22 gets the 22nd line of history. */
121 int history_expansion = 1;
122 #endif /* BANG_HISTORY */
123
124 /* Non-zero means that we allow comments to appear in interactive commands. */
125 int interactive_comments = 1;
126
127 #if defined (RESTRICTED_SHELL)
128 /* Non-zero means that this shell is `restricted'. A restricted shell
129 disallows: changing directories, command or path names containing `/',
130 unsetting or resetting the values of $PATH and $SHELL, and any type of
131 output redirection. */
132 int restricted = 0; /* currently restricted */
133 int restricted_shell = 0; /* shell was started in restricted mode. */
134 #endif /* RESTRICTED_SHELL */
135
136 /* Non-zero means that this shell is running in `privileged' mode. This
137 is required if the shell is to run setuid. If the `-p' option is
138 not supplied at startup, and the real and effective uids or gids
139 differ, disable_priv_mode is called to relinquish setuid status. */
140 int privileged_mode = 0;
141
142 #if defined (BRACE_EXPANSION)
143 /* Zero means to disable brace expansion: foo{a,b} -> fooa foob */
144 int brace_expansion = 1;
145 #endif
146
147 /* **************************************************************** */
148 /* */
149 /* The Flags ALIST. */
150 /* */
151 /* **************************************************************** */
152
153 struct flags_alist shell_flags[] = {
154 /* Standard sh flags. */
155 { 'a', &mark_modified_vars },
156 #if defined (JOB_CONTROL)
157 { 'b', &asynchronous_notification },
158 #endif /* JOB_CONTROL */
159 { 'e', &exit_immediately_on_error },
160 { 'f', &disallow_filename_globbing },
161 { 'h', &hashing_enabled },
162 { 'i', &forced_interactive },
163 { 'k', &place_keywords_in_env },
164 #if defined (JOB_CONTROL)
165 { 'm', &jobs_m_flag },
166 #endif /* JOB_CONTROL */
167 { 'n', &read_but_dont_execute },
168 { 'p', &privileged_mode },
169 #if defined (RESTRICTED_SHELL)
170 { 'r', &restricted },
171 #endif /* RESTRICTED_SHELL */
172 { 't', &just_one_command },
173 { 'u', &unbound_vars_is_error },
174 { 'v', &echo_input_at_read },
175 { 'x', &echo_command_at_execute },
176 { 'C', &noclobber },
177
178 /* New flags that control non-standard things. */
179 #if 0
180 { 'l', &lexical_scoping },
181 #endif
182 { 'I', &no_invisible_vars },
183
184 { 'P', &no_symbolic_links },
185
186 #if defined (BRACE_EXPANSION)
187 { 'B', &brace_expansion },
188 #endif
189
190 #if defined (BANG_HISTORY)
191 { 'H', &history_expansion },
192 #endif /* BANG_HISTORY */
193
194 {0, (int *)NULL}
195 };
196
197 #define NUM_SHELL_FLAGS (sizeof (shell_flags) / sizeof (struct flags_alist))
198
199 int *
200 find_flag (name)
201 int name;
202 {
203 int i;
204 for (i = 0; shell_flags[i].name; i++)
205 {
206 if (shell_flags[i].name == name)
207 return (shell_flags[i].value);
208 }
209 return (FLAG_UNKNOWN);
210 }
211
212 /* Change the state of a flag, and return it's original value, or return
213 FLAG_ERROR if there is no flag FLAG. ON_OR_OFF must be either
214 FLAG_ON or FLAG_OFF. */
215 int
216 change_flag (flag, on_or_off)
217 int flag;
218 int on_or_off;
219 {
220 int *value, old_value;
221
222 value = find_flag (flag);
223
224 #if defined (RESTRICTED_SHELL)
225 /* Don't allow "set +r" in a shell which is `restricted'. */
226 if (restricted && flag == 'r' && on_or_off == FLAG_OFF)
227 return (FLAG_ERROR);
228 #endif /* RESTRICTED_SHELL */
229
230 if ((value == (int *)FLAG_UNKNOWN) || (on_or_off != FLAG_ON && on_or_off != FLAG_OFF))
231 return (FLAG_ERROR);
232
233 old_value = *value;
234
235 *value = (on_or_off == FLAG_ON) ? 1 : 0;
236
237 /* Special cases for a few flags. */
238 switch (flag)
239 {
240 #if defined (JOB_CONTROL)
241 case 'm':
242 set_job_control (on_or_off == FLAG_ON);
243 break;
244 #endif /* JOB_CONTROL */
245
246 #if defined (RESTRICTED_SHELL)
247 case 'r':
248 if (on_or_off == FLAG_ON)
249 maybe_make_restricted (shell_name);
250 break;
251 #endif
252
253 #if defined (BANG_HISTORY)
254 case 'H':
255 if (on_or_off == FLAG_ON)
256 bash_initialize_history ();
257 break;
258 #endif
259
260 case 'p':
261 if (on_or_off == FLAG_OFF)
262 disable_priv_mode ();
263
264 break;
265 }
266
267 return (old_value);
268 }
269
270 /* Return a string which is the names of all the currently
271 set shell flags. */
272 char *
273 which_set_flags ()
274 {
275 char *temp;
276 int i, string_index;
277
278 temp = xmalloc (1 + NUM_SHELL_FLAGS);
279 for (i = string_index = 0; shell_flags[i].name; i++)
280 if (*(shell_flags[i].value))
281 temp[string_index++] = shell_flags[i].name;
282
283 temp[string_index] = '\0';
284 return (temp);
285 }
286
287 void
288 reset_shell_flags ()
289 {
290 mark_modified_vars = exit_immediately_on_error = disallow_filename_globbing = 0;
291 place_keywords_in_env = read_but_dont_execute = just_one_command = 0;
292 noclobber = unbound_vars_is_error = echo_input_at_read = 0;
293 echo_command_at_execute = jobs_m_flag = forced_interactive = 0;
294 no_symbolic_links = no_invisible_vars = privileged_mode = 0;
295
296 hashing_enabled = interactive_comments = 1;
297
298 #if defined (JOB_CONTROL)
299 asynchronous_notification = 0;
300 #endif
301
302 #if defined (BANG_HISTORY)
303 history_expansion = 1;
304 #endif
305
306 #if defined (BRACE_EXPANSION)
307 brace_expansion = 1;
308 #endif
309
310 #if defined (RESTRICTED_SHELL)
311 restricted = 0;
312 #endif
313 }