]> git.ipfire.org Git - thirdparty/bash.git/blob - flags.c
Imported from ../bash-2.01.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;
133 #endif /* RESTRICTED_SHELL */
134
135 /* Non-zero means that this shell is running in `privileged' mode. This
136 mode is entered on startup if the real and effective uids or gids
137 differ. */
138 int privileged_mode = 0;
139
140 #if defined (BRACE_EXPANSION)
141 /* Zero means to disable brace expansion: foo{a,b} -> fooa foob */
142 int brace_expansion = 1;
143 #endif
144
145 /* **************************************************************** */
146 /* */
147 /* The Flags ALIST. */
148 /* */
149 /* **************************************************************** */
150
151 struct flags_alist shell_flags[] = {
152 /* Standard sh flags. */
153 { 'a', &mark_modified_vars },
154 #if defined (JOB_CONTROL)
155 { 'b', &asynchronous_notification },
156 #endif /* JOB_CONTROL */
157 { 'e', &exit_immediately_on_error },
158 { 'f', &disallow_filename_globbing },
159 { 'h', &hashing_enabled },
160 { 'i', &forced_interactive },
161 { 'k', &place_keywords_in_env },
162 #if defined (JOB_CONTROL)
163 { 'm', &jobs_m_flag },
164 #endif /* JOB_CONTROL */
165 { 'n', &read_but_dont_execute },
166 { 'p', &privileged_mode },
167 #if defined (RESTRICTED_SHELL)
168 { 'r', &restricted },
169 #endif /* RESTRICTED_SHELL */
170 { 't', &just_one_command },
171 { 'u', &unbound_vars_is_error },
172 { 'v', &echo_input_at_read },
173 { 'x', &echo_command_at_execute },
174 { 'C', &noclobber },
175
176 /* New flags that control non-standard things. */
177 #if 0
178 { 'l', &lexical_scoping },
179 #endif
180 { 'I', &no_invisible_vars },
181
182 { 'P', &no_symbolic_links },
183
184 #if defined (BRACE_EXPANSION)
185 { 'B', &brace_expansion },
186 #endif
187
188 #if defined (BANG_HISTORY)
189 { 'H', &history_expansion },
190 #endif /* BANG_HISTORY */
191
192 {0, (int *)NULL}
193 };
194
195 #define NUM_SHELL_FLAGS (sizeof (shell_flags) / sizeof (struct flags_alist))
196
197 int *
198 find_flag (name)
199 int name;
200 {
201 int i;
202 for (i = 0; shell_flags[i].name; i++)
203 {
204 if (shell_flags[i].name == name)
205 return (shell_flags[i].value);
206 }
207 return (FLAG_UNKNOWN);
208 }
209
210 /* Change the state of a flag, and return it's original value, or return
211 FLAG_ERROR if there is no flag called NAME. ON_OR_OFF should be one
212 of FLAG_ON or FLAG_OFF. */
213 int
214 change_flag (flag, on_or_off)
215 int flag;
216 int on_or_off;
217 {
218 int *value, old_value;
219
220 value = find_flag (flag);
221
222 #if defined (RESTRICTED_SHELL)
223 /* Don't allow "set +r" in a shell which is `restricted'. */
224 if (restricted && flag == 'r' && on_or_off == FLAG_OFF)
225 return (FLAG_ERROR);
226 #endif /* RESTRICTED_SHELL */
227
228 if (value == (int *)FLAG_UNKNOWN)
229 return (FLAG_ERROR);
230
231 old_value = *value;
232
233 if (on_or_off == FLAG_ON)
234 *value = 1;
235 else if (on_or_off == FLAG_OFF)
236 *value = 0;
237 else
238 return (FLAG_ERROR);
239
240 /* Special cases for a few flags. */
241 switch (flag)
242 {
243 #if defined (JOB_CONTROL)
244 case 'm':
245 set_job_control (on_or_off == FLAG_ON);
246 break;
247 #endif /* JOB_CONTROL */
248
249 #if defined (RESTRICTED_SHELL)
250 case 'r':
251 if (on_or_off == FLAG_ON)
252 maybe_make_restricted (shell_name);
253 break;
254 #endif
255
256 #if defined (BANG_HISTORY)
257 case 'H':
258 if (on_or_off == FLAG_ON)
259 bash_initialize_history ();
260 break;
261 #endif
262
263 case 'p':
264 if (on_or_off == FLAG_OFF)
265 disable_priv_mode ();
266
267 break;
268 }
269
270 return (old_value);
271 }
272
273 /* Return a string which is the names of all the currently
274 set shell flags. */
275 char *
276 which_set_flags ()
277 {
278 char *temp;
279 int i, string_index;
280
281 temp = xmalloc (1 + NUM_SHELL_FLAGS);
282 for (i = string_index = 0; shell_flags[i].name; i++)
283 if (*(shell_flags[i].value))
284 temp[string_index++] = shell_flags[i].name;
285
286 temp[string_index] = '\0';
287 return (temp);
288 }
289
290 void
291 reset_shell_flags ()
292 {
293 mark_modified_vars = exit_immediately_on_error = disallow_filename_globbing = 0;
294 place_keywords_in_env = read_but_dont_execute = just_one_command = 0;
295 noclobber = unbound_vars_is_error = echo_input_at_read = 0;
296 echo_command_at_execute = jobs_m_flag = forced_interactive = 0;
297 no_symbolic_links = no_invisible_vars = privileged_mode = 0;
298
299 hashing_enabled = interactive_comments = 1;
300
301 #if defined (JOB_CONTROL)
302 asynchronous_notification = 0;
303 #endif
304
305 #if defined (BANG_HISTORY)
306 history_expansion = 1;
307 #endif
308
309 #if defined (BRACE_EXPANSION)
310 brace_expansion = 1;
311 #endif
312
313 #if defined (RESTRICTED_SHELL)
314 restricted = 0;
315 #endif
316 }