1 /* variables.c -- Functions for hacking shell variables. */
3 /* Copyright (C) 1987-2009 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/>.
23 #include "bashtypes.h"
24 #include "posixstat.h"
25 #include "posixtime.h"
28 # if defined (__QNXNTO__)
29 # include <sys/netmgr.h>
32 # endif /* !__QNXNTO__ */
35 #if defined (HAVE_UNISTD_H)
40 #include "chartypes.h"
41 #if defined (HAVE_PWD_H)
47 #define NEED_XTRACE_SET_DECL
51 #include "execute_cmd.h"
53 #include "mailcheck.h"
59 #include "builtins/getopt.h"
60 #include "builtins/common.h"
62 #if defined (READLINE)
63 # include "bashline.h"
64 # include <readline/readline.h>
66 # include <tilde/tilde.h>
70 # include "bashhist.h"
71 # include <readline/history.h>
74 #if defined (PROGRAMMABLE_COMPLETION)
75 # include "pcomplete.h"
78 #define TEMPENV_HASH_BUCKETS 4 /* must be power of two */
80 #define ifsname(s) ((s)[0] == 'I' && (s)[1] == 'F' && (s)[2] == 'S' && (s)[3] == '\0')
82 extern char **environ
;
84 /* Variables used here and defined in other files. */
85 extern int posixly_correct
;
86 extern int line_number
;
87 extern int subshell_environment
, indirection_level
, subshell_level
;
88 extern int build_version
, patch_level
;
89 extern int expanding_redir
;
90 extern char *dist_version
, *release_status
;
91 extern char *shell_name
;
92 extern char *primary_prompt
, *secondary_prompt
;
93 extern char *current_host_name
;
94 extern sh_builtin_func_t
*this_shell_builtin
;
95 extern SHELL_VAR
*this_shell_function
;
96 extern char *the_printed_command_except_trap
;
97 extern char *this_command_name
;
98 extern char *command_execution_string
;
99 extern time_t shell_start_time
;
100 extern int assigning_in_environment
;
101 extern int executing_builtin
;
103 #if defined (READLINE)
104 extern int no_line_editing
;
105 extern int perform_hostname_completion
;
108 /* The list of shell variables that the user has created at the global
109 scope, or that came from the environment. */
110 VAR_CONTEXT
*global_variables
= (VAR_CONTEXT
*)NULL
;
112 /* The current list of shell variables, including function scopes */
113 VAR_CONTEXT
*shell_variables
= (VAR_CONTEXT
*)NULL
;
115 /* The list of shell functions that the user has created, or that came from
117 HASH_TABLE
*shell_functions
= (HASH_TABLE
*)NULL
;
119 #if defined (DEBUGGER)
120 /* The table of shell function definitions that the user defined or that
121 came from the environment. */
122 HASH_TABLE
*shell_function_defs
= (HASH_TABLE
*)NULL
;
125 /* The current variable context. This is really a count of how deep into
126 executing functions we are. */
127 int variable_context
= 0;
129 /* The set of shell assignments which are made only in the environment
130 for a single command. */
131 HASH_TABLE
*temporary_env
= (HASH_TABLE
*)NULL
;
133 /* Set to non-zero if an assignment error occurs while putting variables
134 into the temporary environment. */
135 int tempenv_assign_error
;
137 /* Some funky variables which are known about specially. Here is where
138 "$*", "$1", and all the cruft is kept. */
139 char *dollar_vars
[10];
140 WORD_LIST
*rest_of_args
= (WORD_LIST
*)NULL
;
142 /* The value of $$. */
143 pid_t dollar_dollar_pid
;
145 /* Non-zero means that we have to remake EXPORT_ENV. */
146 int array_needs_making
= 1;
148 /* The number of times BASH has been executed. This is set
149 by initialize_variables (). */
152 /* An array which is passed to commands as their environment. It is
153 manufactured from the union of the initial environment and the
154 shell variables that are marked for export. */
155 char **export_env
= (char **)NULL
;
156 static int export_env_index
;
157 static int export_env_size
;
159 #if defined (READLINE)
160 static int winsize_assignment
; /* currently assigning to LINES or COLUMNS */
161 static int winsize_assigned
; /* assigned to LINES or COLUMNS */
164 /* Some forward declarations. */
165 static void create_variable_tables
__P((void));
167 static void set_machine_vars
__P((void));
168 static void set_home_var
__P((void));
169 static void set_shell_var
__P((void));
170 static char *get_bash_name
__P((void));
171 static void initialize_shell_level
__P((void));
172 static void uidset
__P((void));
173 #if defined (ARRAY_VARS)
174 static void make_vers_array
__P((void));
177 static SHELL_VAR
*null_assign
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
178 #if defined (ARRAY_VARS)
179 static SHELL_VAR
*null_array_assign
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
181 static SHELL_VAR
*get_self
__P((SHELL_VAR
*));
183 #if defined (ARRAY_VARS)
184 static SHELL_VAR
*init_dynamic_array_var
__P((char *, sh_var_value_func_t
*, sh_var_assign_func_t
*, int));
185 static SHELL_VAR
*init_dynamic_assoc_var
__P((char *, sh_var_value_func_t
*, sh_var_assign_func_t
*, int));
188 static SHELL_VAR
*assign_seconds
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
189 static SHELL_VAR
*get_seconds
__P((SHELL_VAR
*));
190 static SHELL_VAR
*init_seconds_var
__P((void));
192 static int brand
__P((void));
193 static void sbrand
__P((unsigned long)); /* set bash random number generator. */
194 static void seedrand
__P((void)); /* seed generator randomly */
195 static SHELL_VAR
*assign_random
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
196 static SHELL_VAR
*get_random
__P((SHELL_VAR
*));
198 static SHELL_VAR
*assign_lineno
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
199 static SHELL_VAR
*get_lineno
__P((SHELL_VAR
*));
201 static SHELL_VAR
*assign_subshell
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
202 static SHELL_VAR
*get_subshell
__P((SHELL_VAR
*));
204 static SHELL_VAR
*get_bashpid
__P((SHELL_VAR
*));
206 #if defined (HISTORY)
207 static SHELL_VAR
*get_histcmd
__P((SHELL_VAR
*));
210 #if defined (READLINE)
211 static SHELL_VAR
*get_comp_wordbreaks
__P((SHELL_VAR
*));
212 static SHELL_VAR
*assign_comp_wordbreaks
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
215 #if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
216 static SHELL_VAR
*assign_dirstack
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
217 static SHELL_VAR
*get_dirstack
__P((SHELL_VAR
*));
220 #if defined (ARRAY_VARS)
221 static SHELL_VAR
*get_groupset
__P((SHELL_VAR
*));
223 static SHELL_VAR
*build_hashcmd
__P((SHELL_VAR
*));
224 static SHELL_VAR
*get_hashcmd
__P((SHELL_VAR
*));
225 static SHELL_VAR
*assign_hashcmd
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
227 static SHELL_VAR
*build_aliasvar
__P((SHELL_VAR
*));
228 static SHELL_VAR
*get_aliasvar
__P((SHELL_VAR
*));
229 static SHELL_VAR
*assign_aliasvar
__P((SHELL_VAR
*, char *, arrayind_t
, char *));
233 static SHELL_VAR
*get_funcname
__P((SHELL_VAR
*));
234 static SHELL_VAR
*init_funcname_var
__P((void));
236 static void initialize_dynamic_variables
__P((void));
238 static SHELL_VAR
*hash_lookup
__P((const char *, HASH_TABLE
*));
239 static SHELL_VAR
*new_shell_variable
__P((const char *));
240 static SHELL_VAR
*make_new_variable
__P((const char *, HASH_TABLE
*));
241 static SHELL_VAR
*bind_variable_internal
__P((const char *, char *, HASH_TABLE
*, int, int));
243 static void dispose_variable_value
__P((SHELL_VAR
*));
244 static void free_variable_hash_data
__P((PTR_T
));
246 static VARLIST
*vlist_alloc
__P((int));
247 static VARLIST
*vlist_realloc
__P((VARLIST
*, int));
248 static void vlist_add
__P((VARLIST
*, SHELL_VAR
*, int));
250 static void flatten
__P((HASH_TABLE
*, sh_var_map_func_t
*, VARLIST
*, int));
252 static int qsort_var_comp
__P((SHELL_VAR
**, SHELL_VAR
**));
254 static SHELL_VAR
**vapply
__P((sh_var_map_func_t
*));
255 static SHELL_VAR
**fapply
__P((sh_var_map_func_t
*));
257 static int visible_var
__P((SHELL_VAR
*));
258 static int visible_and_exported
__P((SHELL_VAR
*));
259 static int export_environment_candidate
__P((SHELL_VAR
*));
260 static int local_and_exported
__P((SHELL_VAR
*));
261 static int variable_in_context
__P((SHELL_VAR
*));
262 #if defined (ARRAY_VARS)
263 static int visible_array_vars
__P((SHELL_VAR
*));
266 static SHELL_VAR
*bind_tempenv_variable
__P((const char *, char *));
267 static void push_temp_var
__P((PTR_T
));
268 static void propagate_temp_var
__P((PTR_T
));
269 static void dispose_temporary_env
__P((sh_free_func_t
*));
271 static inline char *mk_env_string
__P((const char *, const char *));
272 static char **make_env_array_from_var_list
__P((SHELL_VAR
**));
273 static char **make_var_export_array
__P((VAR_CONTEXT
*));
274 static char **make_func_export_array
__P((void));
275 static void add_temp_array_to_env
__P((char **, int, int));
277 static int n_shell_variables
__P((void));
278 static int set_context
__P((SHELL_VAR
*));
280 static void push_func_var
__P((PTR_T
));
281 static void push_exported_var
__P((PTR_T
));
283 static inline int find_special_var
__P((const char *));
286 create_variable_tables ()
288 if (shell_variables
== 0)
290 shell_variables
= global_variables
= new_var_context ((char *)NULL
, 0);
291 shell_variables
->scope
= 0;
292 shell_variables
->table
= hash_create (0);
295 if (shell_functions
== 0)
296 shell_functions
= hash_create (0);
298 #if defined (DEBUGGER)
299 if (shell_function_defs
== 0)
300 shell_function_defs
= hash_create (0);
304 /* Initialize the shell variables from the current environment.
305 If PRIVMODE is nonzero, don't import functions from ENV or
308 initialize_shell_variables (env
, privmode
)
312 char *name
, *string
, *temp_string
;
313 int c
, char_index
, string_index
, string_length
;
316 create_variable_tables ();
318 for (string_index
= 0; string
= env
[string_index
++]; )
322 while ((c
= *string
++) && c
!= '=')
324 if (string
[-1] == '=')
325 char_index
= string
- name
- 1;
327 /* If there are weird things in the environment, like `=xxx' or a
328 string without an `=', just skip them. */
332 /* ASSERT(name[char_index] == '=') */
333 name
[char_index
] = '\0';
334 /* Now, name = env variable name, string = env variable value, and
335 char_index == strlen (name) */
337 temp_var
= (SHELL_VAR
*)NULL
;
339 /* If exported function, define it now. Don't import functions from
340 the environment in privileged mode. */
341 if (privmode
== 0 && read_but_dont_execute
== 0 && STREQN ("() {", string
, 4))
343 string_length
= strlen (string
);
344 temp_string
= (char *)xmalloc (3 + string_length
+ char_index
);
346 strcpy (temp_string
, name
);
347 temp_string
[char_index
] = ' ';
348 strcpy (temp_string
+ char_index
+ 1, string
);
350 parse_and_execute (temp_string
, name
, SEVAL_NONINT
|SEVAL_NOHIST
);
352 /* Ancient backwards compatibility. Old versions of bash exported
353 functions like name()=() {...} */
354 if (name
[char_index
- 1] == ')' && name
[char_index
- 2] == '(')
355 name
[char_index
- 2] = '\0';
357 if (temp_var
= find_function (name
))
359 VSETATTR (temp_var
, (att_exported
|att_imported
));
360 array_needs_making
= 1;
363 report_error (_("error importing function definition for `%s'"), name
);
366 if (name
[char_index
- 1] == ')' && name
[char_index
- 2] == '\0')
367 name
[char_index
- 2] = '('; /* ) */
369 #if defined (ARRAY_VARS)
371 /* Array variables may not yet be exported. */
372 else if (*string
== '(' && string
[1] == '[' && string
[strlen (string
) - 1] == ')')
375 temp_string
= extract_array_assignment_list (string
, &string_length
);
376 temp_var
= assign_array_from_string (name
, temp_string
);
378 VSETATTR (temp_var
, (att_exported
| att_imported
));
379 array_needs_making
= 1;
384 else if (legal_identifier (name
))
389 temp_var
= bind_variable (name
, string
, 0);
390 if (legal_identifier (name
))
391 VSETATTR (temp_var
, (att_exported
| att_imported
));
393 VSETATTR (temp_var
, (att_exported
| att_imported
| att_invisible
));
394 array_needs_making
= 1;
397 name
[char_index
] = '=';
398 /* temp_var can be NULL if it was an exported function with a syntax
399 error (a different bug, but it still shouldn't dump core). */
400 if (temp_var
&& function_p (temp_var
) == 0) /* XXX not yet */
402 CACHE_IMPORTSTR (temp_var
, name
);
408 /* Set up initial value of $_ */
409 temp_var
= set_if_not ("_", dollar_vars
[0]);
411 /* Remember this pid. */
412 dollar_dollar_pid
= getpid ();
414 /* Now make our own defaults in case the vars that we think are
415 important are missing. */
416 temp_var
= set_if_not ("PATH", DEFAULT_PATH_VALUE
);
418 set_auto_export (temp_var
); /* XXX */
421 temp_var
= set_if_not ("TERM", "dumb");
423 set_auto_export (temp_var
); /* XXX */
426 #if defined (__QNX__)
427 /* set node id -- don't import it from the environment */
430 # if defined (__QNXNTO__)
431 netmgr_ndtostr(ND2S_LOCAL_STR
, ND_LOCAL_NODE
, node_name
, sizeof(node_name
));
433 qnx_nidtostr (getnid (), node_name
, sizeof (node_name
));
435 temp_var
= bind_variable ("NODE", node_name
, 0);
436 set_auto_export (temp_var
);
440 /* set up the prompts. */
441 if (interactive_shell
)
443 #if defined (PROMPT_STRING_DECODE)
444 set_if_not ("PS1", primary_prompt
);
446 if (current_user
.uid
== -1)
447 get_current_user_info ();
448 set_if_not ("PS1", current_user
.euid
== 0 ? "# " : primary_prompt
);
450 set_if_not ("PS2", secondary_prompt
);
452 set_if_not ("PS4", "+ ");
454 /* Don't allow IFS to be imported from the environment. */
455 temp_var
= bind_variable ("IFS", " \t\n", 0);
458 /* Magic machine types. Pretty convenient. */
461 /* Default MAILCHECK for interactive shells. Defer the creation of a
462 default MAILPATH until the startup files are read, because MAIL
463 names a mail file if MAILPATH is not set, and we should provide a
464 default only if neither is set. */
465 if (interactive_shell
)
467 temp_var
= set_if_not ("MAILCHECK", posixly_correct
? "600" : "60");
468 VSETATTR (temp_var
, att_integer
);
471 /* Do some things with shell level. */
472 initialize_shell_level ();
476 /* Initialize the `getopts' stuff. */
477 temp_var
= bind_variable ("OPTIND", "1", 0);
478 VSETATTR (temp_var
, att_integer
);
480 bind_variable ("OPTERR", "1", 0);
483 if (login_shell
== 1 && posixly_correct
== 0)
486 /* Get the full pathname to THIS shell, and set the BASH variable
488 name
= get_bash_name ();
489 temp_var
= bind_variable ("BASH", name
, 0);
492 /* Make the exported environment variable SHELL be the user's login
493 shell. Note that the `tset' command looks at this variable
494 to determine what style of commands to output; if it ends in "csh",
495 then C-shell commands are output, else Bourne shell commands. */
498 /* Make a variable called BASH_VERSION which contains the version info. */
499 bind_variable ("BASH_VERSION", shell_version_string (), 0);
500 #if defined (ARRAY_VARS)
504 if (command_execution_string
)
505 bind_variable ("BASH_EXECUTION_STRING", command_execution_string
, 0);
507 /* Find out if we're supposed to be in Posix.2 mode via an
508 environment variable. */
509 temp_var
= find_variable ("POSIXLY_CORRECT");
511 temp_var
= find_variable ("POSIX_PEDANTIC");
512 if (temp_var
&& imported_p (temp_var
))
513 sv_strict_posix (temp_var
->name
);
515 #if defined (HISTORY)
516 /* Set history variables to defaults, and then do whatever we would
517 do if the variable had just been set. Do this only in the case
518 that we are remembering commands on the history list. */
519 if (remember_on_history
)
521 name
= bash_tilde_expand (posixly_correct
? "~/.sh_history" : "~/.bash_history", 0);
523 set_if_not ("HISTFILE", name
);
527 set_if_not ("HISTSIZE", "500");
528 sv_histsize ("HISTSIZE");
533 /* Seed the random number generator. */
536 /* Handle some "special" variables that we may have inherited from a
538 if (interactive_shell
)
540 temp_var
= find_variable ("IGNOREEOF");
542 temp_var
= find_variable ("ignoreeof");
543 if (temp_var
&& imported_p (temp_var
))
544 sv_ignoreeof (temp_var
->name
);
547 #if defined (HISTORY)
548 if (interactive_shell
&& remember_on_history
)
550 sv_history_control ("HISTCONTROL");
551 sv_histignore ("HISTIGNORE");
552 sv_histtimefmt ("HISTTIMEFORMAT");
556 #if defined (READLINE) && defined (STRICT_POSIX)
557 /* POSIXLY_CORRECT will only be 1 here if the shell was compiled
559 if (interactive_shell
&& posixly_correct
&& no_line_editing
== 0)
560 rl_prefer_env_winsize
= 1;
561 #endif /* READLINE && STRICT_POSIX */
566 * I'm tired of the arguing and bug reports. Bash now leaves SSH_CLIENT
567 * and SSH2_CLIENT alone. I'm going to rely on the shell_level check in
568 * isnetconn() to avoid running the startup files more often than wanted.
569 * That will, of course, only work if the user's login shell is bash, so
570 * I've made that behavior conditional on SSH_SOURCE_BASHRC being defined
574 temp_var
= find_variable ("SSH_CLIENT");
575 if (temp_var
&& imported_p (temp_var
))
577 VUNSETATTR (temp_var
, att_exported
);
578 array_needs_making
= 1;
580 temp_var
= find_variable ("SSH2_CLIENT");
581 if (temp_var
&& imported_p (temp_var
))
583 VUNSETATTR (temp_var
, att_exported
);
584 array_needs_making
= 1;
588 /* Get the user's real and effective user ids. */
591 /* Initialize the dynamic variables, and seed their values. */
592 initialize_dynamic_variables ();
595 /* **************************************************************** */
597 /* Setting values for special shell variables */
599 /* **************************************************************** */
606 temp_var
= set_if_not ("HOSTTYPE", HOSTTYPE
);
607 temp_var
= set_if_not ("OSTYPE", OSTYPE
);
608 temp_var
= set_if_not ("MACHTYPE", MACHTYPE
);
610 temp_var
= set_if_not ("HOSTNAME", current_host_name
);
613 /* Set $HOME to the information in the password file if we didn't get
614 it from the environment. */
616 /* This function is not static so the tilde and readline libraries can
621 if (current_user
.home_dir
== 0)
622 get_current_user_info ();
623 return current_user
.home_dir
;
631 temp_var
= find_variable ("HOME");
633 temp_var
= bind_variable ("HOME", sh_get_home_dir (), 0);
635 VSETATTR (temp_var
, att_exported
);
639 /* Set $SHELL to the user's login shell if it is not already set. Call
640 get_current_user_info if we haven't already fetched the shell. */
646 temp_var
= find_variable ("SHELL");
649 if (current_user
.shell
== 0)
650 get_current_user_info ();
651 temp_var
= bind_variable ("SHELL", current_user
.shell
, 0);
654 VSETATTR (temp_var
, att_exported
);
663 if ((login_shell
== 1) && RELPATH(shell_name
))
665 if (current_user
.shell
== 0)
666 get_current_user_info ();
667 name
= savestring (current_user
.shell
);
669 else if (ABSPATH(shell_name
))
670 name
= savestring (shell_name
);
671 else if (shell_name
[0] == '.' && shell_name
[1] == '/')
673 /* Fast path for common case. */
677 cdir
= get_string_value ("PWD");
681 name
= (char *)xmalloc (len
+ strlen (shell_name
) + 1);
683 strcpy (name
+ len
, shell_name
+ 1);
686 name
= savestring (shell_name
);
693 tname
= find_user_command (shell_name
);
697 /* Try the current directory. If there is not an executable
698 there, just punt and use the login shell. */
699 s
= file_status (shell_name
);
702 tname
= make_absolute (shell_name
, get_string_value ("PWD"));
703 if (*shell_name
== '.')
705 name
= sh_canonpath (tname
, PATH_CHECKDOTDOT
|PATH_CHECKEXISTS
);
716 if (current_user
.shell
== 0)
717 get_current_user_info ();
718 name
= savestring (current_user
.shell
);
723 name
= full_pathname (tname
);
732 adjust_shell_level (change
)
735 char new_level
[5], *old_SHLVL
;
739 old_SHLVL
= get_string_value ("SHLVL");
740 if (old_SHLVL
== 0 || *old_SHLVL
== '\0' || legal_number (old_SHLVL
, &old_level
) == 0)
743 shell_level
= old_level
+ change
;
746 else if (shell_level
> 1000)
748 internal_warning (_("shell level (%d) too high, resetting to 1"), shell_level
);
752 /* We don't need the full generality of itos here. */
753 if (shell_level
< 10)
755 new_level
[0] = shell_level
+ '0';
758 else if (shell_level
< 100)
760 new_level
[0] = (shell_level
/ 10) + '0';
761 new_level
[1] = (shell_level
% 10) + '0';
764 else if (shell_level
< 1000)
766 new_level
[0] = (shell_level
/ 100) + '0';
767 old_level
= shell_level
% 100;
768 new_level
[1] = (old_level
/ 10) + '0';
769 new_level
[2] = (old_level
% 10) + '0';
773 temp_var
= bind_variable ("SHLVL", new_level
, 0);
774 set_auto_export (temp_var
);
778 initialize_shell_level ()
780 adjust_shell_level (1);
783 /* If we got PWD from the environment, update our idea of the current
784 working directory. In any case, make sure that PWD exists before
785 checking it. It is possible for getcwd () to fail on shell startup,
786 and in that case, PWD would be undefined. If this is an interactive
787 login shell, see if $HOME is the current working directory, and if
788 that's not the same string as $PWD, set PWD=$HOME. */
793 SHELL_VAR
*temp_var
, *home_var
;
794 char *temp_string
, *home_string
;
796 home_var
= find_variable ("HOME");
797 home_string
= home_var
? value_cell (home_var
) : (char *)NULL
;
799 temp_var
= find_variable ("PWD");
800 if (temp_var
&& imported_p (temp_var
) &&
801 (temp_string
= value_cell (temp_var
)) &&
802 same_file (temp_string
, ".", (struct stat
*)NULL
, (struct stat
*)NULL
))
803 set_working_directory (temp_string
);
804 else if (home_string
&& interactive_shell
&& login_shell
&&
805 same_file (home_string
, ".", (struct stat
*)NULL
, (struct stat
*)NULL
))
807 set_working_directory (home_string
);
808 temp_var
= bind_variable ("PWD", home_string
, 0);
809 set_auto_export (temp_var
);
813 temp_string
= get_working_directory ("shell-init");
816 temp_var
= bind_variable ("PWD", temp_string
, 0);
817 set_auto_export (temp_var
);
822 /* According to the Single Unix Specification, v2, $OLDPWD is an
823 `environment variable' and therefore should be auto-exported.
824 Make a dummy invisible variable for OLDPWD, and mark it as exported. */
825 temp_var
= bind_variable ("OLDPWD", (char *)NULL
, 0);
826 VSETATTR (temp_var
, (att_exported
| att_invisible
));
829 /* Make a variable $PPID, which holds the pid of the shell's parent. */
833 char namebuf
[INT_STRLEN_BOUND(pid_t
) + 1], *name
;
836 name
= inttostr (getppid (), namebuf
, sizeof(namebuf
));
837 temp_var
= find_variable ("PPID");
839 VUNSETATTR (temp_var
, (att_readonly
| att_exported
));
840 temp_var
= bind_variable ("PPID", name
, 0);
841 VSETATTR (temp_var
, (att_readonly
| att_integer
));
847 char buff
[INT_STRLEN_BOUND(uid_t
) + 1], *b
;
848 register SHELL_VAR
*v
;
850 b
= inttostr (current_user
.uid
, buff
, sizeof (buff
));
851 v
= find_variable ("UID");
854 v
= bind_variable ("UID", b
, 0);
855 VSETATTR (v
, (att_readonly
| att_integer
));
858 if (current_user
.euid
!= current_user
.uid
)
859 b
= inttostr (current_user
.euid
, buff
, sizeof (buff
));
861 v
= find_variable ("EUID");
864 v
= bind_variable ("EUID", b
, 0);
865 VSETATTR (v
, (att_readonly
| att_integer
));
869 #if defined (ARRAY_VARS)
875 char *s
, d
[32], b
[INT_STRLEN_BOUND(int) + 1];
877 unbind_variable ("BASH_VERSINFO");
879 vv
= make_new_array_variable ("BASH_VERSINFO");
880 av
= array_cell (vv
);
881 strcpy (d
, dist_version
);
885 array_insert (av
, 0, d
);
886 array_insert (av
, 1, s
);
887 s
= inttostr (patch_level
, b
, sizeof (b
));
888 array_insert (av
, 2, s
);
889 s
= inttostr (build_version
, b
, sizeof (b
));
890 array_insert (av
, 3, s
);
891 array_insert (av
, 4, release_status
);
892 array_insert (av
, 5, MACHTYPE
);
894 VSETATTR (vv
, att_readonly
);
896 #endif /* ARRAY_VARS */
898 /* Set the environment variables $LINES and $COLUMNS in response to
899 a window size change. */
901 sh_set_lines_and_columns (lines
, cols
)
904 char val
[INT_STRLEN_BOUND(int) + 1], *v
;
906 #if defined (READLINE)
907 /* If we are currently assigning to LINES or COLUMNS, don't do anything. */
908 if (winsize_assignment
)
912 v
= inttostr (lines
, val
, sizeof (val
));
913 bind_variable ("LINES", v
, 0);
915 v
= inttostr (cols
, val
, sizeof (val
));
916 bind_variable ("COLUMNS", v
, 0);
919 /* **************************************************************** */
921 /* Printing variables and values */
923 /* **************************************************************** */
925 /* Print LIST (a list of shell variables) to stdout in such a way that
926 they can be read back in. */
928 print_var_list (list
)
929 register SHELL_VAR
**list
;
932 register SHELL_VAR
*var
;
934 for (i
= 0; list
&& (var
= list
[i
]); i
++)
935 if (invisible_p (var
) == 0)
936 print_assignment (var
);
939 /* Print LIST (a list of shell functions) to stdout in such a way that
940 they can be read back in. */
942 print_func_list (list
)
943 register SHELL_VAR
**list
;
946 register SHELL_VAR
*var
;
948 for (i
= 0; list
&& (var
= list
[i
]); i
++)
950 printf ("%s ", var
->name
);
951 print_var_function (var
);
956 /* Print the value of a single SHELL_VAR. No newline is
957 output, but the variable is printed in such a way that
958 it can be read back in. */
960 print_assignment (var
)
963 if (var_isset (var
) == 0)
966 if (function_p (var
))
968 printf ("%s", var
->name
);
969 print_var_function (var
);
972 #if defined (ARRAY_VARS)
973 else if (array_p (var
))
974 print_array_assignment (var
, 0);
975 else if (assoc_p (var
))
976 print_assoc_assignment (var
, 0);
977 #endif /* ARRAY_VARS */
980 printf ("%s=", var
->name
);
981 print_var_value (var
, 1);
986 /* Print the value cell of VAR, a shell variable. Do not print
987 the name, nor leading/trailing newline. If QUOTE is non-zero,
988 and the value contains shell metacharacters, quote the value
989 in such a way that it can be read back in. */
991 print_var_value (var
, quote
)
997 if (var_isset (var
) == 0)
1000 if (quote
&& posixly_correct
== 0 && ansic_shouldquote (value_cell (var
)))
1002 t
= ansic_quote (value_cell (var
), 0, (int *)0);
1006 else if (quote
&& sh_contains_shell_metas (value_cell (var
)))
1008 t
= sh_single_quote (value_cell (var
));
1013 printf ("%s", value_cell (var
));
1016 /* Print the function cell of VAR, a shell variable. Do not
1017 print the name, nor leading/trailing newline. */
1019 print_var_function (var
)
1024 if (function_p (var
) && var_isset (var
))
1026 x
= named_function_string ((char *)NULL
, function_cell(var
), FUNC_MULTILINE
|FUNC_EXTERNAL
);
1031 /* **************************************************************** */
1033 /* Dynamic Variables */
1035 /* **************************************************************** */
1037 /* DYNAMIC VARIABLES
1039 These are variables whose values are generated anew each time they are
1040 referenced. These are implemented using a pair of function pointers
1041 in the struct variable: assign_func, which is called from bind_variable
1042 and, if arrays are compiled into the shell, some of the functions in
1043 arrayfunc.c, and dynamic_value, which is called from find_variable.
1045 assign_func is called from bind_variable_internal, if
1046 bind_variable_internal discovers that the variable being assigned to
1047 has such a function. The function is called as
1048 SHELL_VAR *temp = (*(entry->assign_func)) (entry, value, ind)
1049 and the (SHELL_VAR *)temp is returned as the value of bind_variable. It
1050 is usually ENTRY (self). IND is an index for an array variable, and
1053 dynamic_value is called from find_variable_internal to return a `new'
1054 value for the specified dynamic varible. If this function is NULL,
1055 the variable is treated as a `normal' shell variable. If it is not,
1056 however, then this function is called like this:
1057 tempvar = (*(var->dynamic_value)) (var);
1059 Sometimes `tempvar' will replace the value of `var'. Other times, the
1060 shell will simply use the string value. Pretty object-oriented, huh?
1062 Be warned, though: if you `unset' a special variable, it loses its
1063 special meaning, even if you subsequently set it.
1065 The special assignment code would probably have been better put in
1066 subst.c: do_assignment_internal, in the same style as
1067 stupidly_hack_special_variables, but I wanted the changes as
1068 localized as possible. */
1070 #define INIT_DYNAMIC_VAR(var, val, gfunc, afunc) \
1073 v = bind_variable (var, (val), 0); \
1074 v->dynamic_value = gfunc; \
1075 v->assign_func = afunc; \
1079 #define INIT_DYNAMIC_ARRAY_VAR(var, gfunc, afunc) \
1082 v = make_new_array_variable (var); \
1083 v->dynamic_value = gfunc; \
1084 v->assign_func = afunc; \
1088 #define INIT_DYNAMIC_ASSOC_VAR(var, gfunc, afunc) \
1091 v = make_new_assoc_variable (var); \
1092 v->dynamic_value = gfunc; \
1093 v->assign_func = afunc; \
1098 null_assign (self
, value
, unused
, key
)
1107 #if defined (ARRAY_VARS)
1109 null_array_assign (self
, value
, ind
, key
)
1119 /* Degenerate `dynamic_value' function; just returns what's passed without
1128 #if defined (ARRAY_VARS)
1129 /* A generic dynamic array variable initializer. Intialize array variable
1130 NAME with dynamic value function GETFUNC and assignment function SETFUNC. */
1132 init_dynamic_array_var (name
, getfunc
, setfunc
, attrs
)
1134 sh_var_value_func_t
*getfunc
;
1135 sh_var_assign_func_t
*setfunc
;
1140 v
= find_variable (name
);
1143 INIT_DYNAMIC_ARRAY_VAR (name
, getfunc
, setfunc
);
1145 VSETATTR (v
, attrs
);
1150 init_dynamic_assoc_var (name
, getfunc
, setfunc
, attrs
)
1152 sh_var_value_func_t
*getfunc
;
1153 sh_var_assign_func_t
*setfunc
;
1158 v
= find_variable (name
);
1161 INIT_DYNAMIC_ASSOC_VAR (name
, getfunc
, setfunc
);
1163 VSETATTR (v
, attrs
);
1168 /* The value of $SECONDS. This is the number of seconds since shell
1169 invocation, or, the number of seconds since the last assignment + the
1170 value of the last assignment. */
1171 static intmax_t seconds_value_assigned
;
1174 assign_seconds (self
, value
, unused
, key
)
1180 if (legal_number (value
, &seconds_value_assigned
) == 0)
1181 seconds_value_assigned
= 0;
1182 shell_start_time
= NOW
;
1190 time_t time_since_start
;
1193 time_since_start
= NOW
- shell_start_time
;
1194 p
= itos(seconds_value_assigned
+ time_since_start
);
1196 FREE (value_cell (var
));
1198 VSETATTR (var
, att_integer
);
1199 var_setvalue (var
, p
);
1208 v
= find_variable ("SECONDS");
1211 if (legal_number (value_cell(v
), &seconds_value_assigned
) == 0)
1212 seconds_value_assigned
= 0;
1214 INIT_DYNAMIC_VAR ("SECONDS", (v
? value_cell (v
) : (char *)NULL
), get_seconds
, assign_seconds
);
1218 /* The random number seed. You can change this by setting RANDOM. */
1219 static unsigned long rseed
= 1;
1220 static int last_random_value
;
1221 static int seeded_subshell
= 0;
1223 /* A linear congruential random number generator based on the example
1224 one in the ANSI C standard. This one isn't very good, but a more
1225 complicated one is overkill. */
1227 /* Returns a pseudo-random number between 0 and 32767. */
1232 rseed
= rseed
* 1103515245 + 12345;
1233 return ((unsigned int)((rseed
>> 16) & 32767)); /* was % 32768 */
1235 /* From "Random number generators: good ones are hard to find",
1236 Park and Miller, Communications of the ACM, vol. 31, no. 10,
1237 October 1988, p. 1195. filtered through FreeBSD */
1244 rseed
= 16807 * l
- 2836 * h
;
1247 rseed
+= 0x7fffffff;
1249 return ((unsigned int)(rseed
& 32767)); /* was % 32768 */
1253 /* Set the random number generator seed to SEED. */
1259 last_random_value
= 0;
1267 gettimeofday (&tv
, NULL
);
1268 sbrand (tv
.tv_sec
^ tv
.tv_usec
^ getpid ());
1272 assign_random (self
, value
, unused
, key
)
1278 sbrand (strtoul (value
, (char **)NULL
, 10));
1279 if (subshell_environment
)
1280 seeded_subshell
= getpid ();
1285 get_random_number ()
1289 /* Reset for command and process substitution. */
1291 if (subshell_environment
&& seeded_subshell
!= pid
)
1294 seeded_subshell
= pid
;
1299 while (rv
== last_random_value
);
1310 rv
= get_random_number ();
1311 last_random_value
= rv
;
1314 FREE (value_cell (var
));
1316 VSETATTR (var
, att_integer
);
1317 var_setvalue (var
, p
);
1322 assign_lineno (var
, value
, unused
, key
)
1330 if (value
== 0 || *value
== '\0' || legal_number (value
, &new_value
) == 0)
1332 line_number
= new_value
;
1336 /* Function which returns the current line number. */
1344 ln
= executing_line_number ();
1346 FREE (value_cell (var
));
1347 var_setvalue (var
, p
);
1352 assign_subshell (var
, value
, unused
, key
)
1360 if (value
== 0 || *value
== '\0' || legal_number (value
, &new_value
) == 0)
1362 subshell_level
= new_value
;
1372 p
= itos (subshell_level
);
1373 FREE (value_cell (var
));
1374 var_setvalue (var
, p
);
1388 FREE (value_cell (var
));
1389 VSETATTR (var
, att_integer
|att_readonly
);
1390 var_setvalue (var
, p
);
1395 get_bash_command (var
)
1400 if (the_printed_command_except_trap
)
1401 p
= savestring (the_printed_command_except_trap
);
1404 p
= (char *)xmalloc (1);
1407 FREE (value_cell (var
));
1408 var_setvalue (var
, p
);
1412 #if defined (HISTORY)
1419 p
= itos (history_number ());
1420 FREE (value_cell (var
));
1421 var_setvalue (var
, p
);
1426 #if defined (READLINE)
1427 /* When this function returns, VAR->value points to malloced memory. */
1429 get_comp_wordbreaks (var
)
1432 /* If we don't have anything yet, assign a default value. */
1433 if (rl_completer_word_break_characters
== 0 && bash_readline_initialized
== 0)
1434 enable_hostname_completion (perform_hostname_completion
);
1436 FREE (value_cell (var
));
1437 var_setvalue (var
, savestring (rl_completer_word_break_characters
));
1442 /* When this function returns, rl_completer_word_break_characters points to
1445 assign_comp_wordbreaks (self
, value
, unused
, key
)
1451 if (rl_completer_word_break_characters
&&
1452 rl_completer_word_break_characters
!= rl_basic_word_break_characters
)
1453 free (rl_completer_word_break_characters
);
1455 rl_completer_word_break_characters
= savestring (value
);
1458 #endif /* READLINE */
1460 #if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
1462 assign_dirstack (self
, value
, ind
, key
)
1468 set_dirstack_element (ind
, 1, value
);
1479 l
= get_directory_stack (0);
1480 a
= array_from_word_list (l
);
1481 array_dispose (array_cell (self
));
1483 var_setarray (self
, a
);
1486 #endif /* PUSHD AND POPD && ARRAY_VARS */
1488 #if defined (ARRAY_VARS)
1489 /* We don't want to initialize the group set with a call to getgroups()
1490 unless we're asked to, but we only want to do it once. */
1498 static char **group_set
= (char **)NULL
;
1502 group_set
= get_group_list (&ng
);
1503 a
= array_cell (self
);
1504 for (i
= 0; i
< ng
; i
++)
1505 array_insert (a
, i
, group_set
[i
]);
1511 build_hashcmd (self
)
1517 BUCKET_CONTENTS
*item
;
1519 h
= assoc_cell (self
);
1523 if (hashed_filenames
== 0 || HASH_ENTRIES (hashed_filenames
) == 0)
1525 var_setvalue (self
, (char *)NULL
);
1529 h
= assoc_create (hashed_filenames
->nbuckets
);
1530 for (i
= 0; i
< hashed_filenames
->nbuckets
; i
++)
1532 for (item
= hash_items (i
, hashed_filenames
); item
; item
= item
->next
)
1534 k
= savestring (item
->key
);
1535 v
= pathdata(item
)->path
;
1536 assoc_insert (h
, k
, v
);
1540 var_setvalue (self
, (char *)h
);
1548 build_hashcmd (self
);
1553 assign_hashcmd (self
, value
, ind
, key
)
1559 phash_insert (key
, value
, 0, 0);
1560 return (build_hashcmd (self
));
1565 build_aliasvar (self
)
1571 BUCKET_CONTENTS
*item
;
1573 h
= assoc_cell (self
);
1577 if (aliases
== 0 || HASH_ENTRIES (aliases
) == 0)
1579 var_setvalue (self
, (char *)NULL
);
1583 h
= assoc_create (aliases
->nbuckets
);
1584 for (i
= 0; i
< aliases
->nbuckets
; i
++)
1586 for (item
= hash_items (i
, aliases
); item
; item
= item
->next
)
1588 k
= savestring (item
->key
);
1589 v
= ((alias_t
*)(item
->data
))->value
;
1590 assoc_insert (h
, k
, v
);
1594 var_setvalue (self
, (char *)h
);
1602 build_aliasvar (self
);
1607 assign_aliasvar (self
, value
, ind
, key
)
1613 add_alias (key
, value
);
1614 return (build_aliasvar (self
));
1618 #endif /* ARRAY_VARS */
1620 /* If ARRAY_VARS is not defined, this just returns the name of any
1621 currently-executing function. If we have arrays, it's a call stack. */
1626 #if ! defined (ARRAY_VARS)
1628 if (variable_context
&& this_shell_function
)
1630 FREE (value_cell (self
));
1631 t
= savestring (this_shell_function
->name
);
1632 var_setvalue (self
, t
);
1639 make_funcname_visible (on_or_off
)
1644 v
= find_variable ("FUNCNAME");
1645 if (v
== 0 || v
->dynamic_value
== 0)
1649 VUNSETATTR (v
, att_invisible
);
1651 VSETATTR (v
, att_invisible
);
1655 init_funcname_var ()
1659 v
= find_variable ("FUNCNAME");
1662 #if defined (ARRAY_VARS)
1663 INIT_DYNAMIC_ARRAY_VAR ("FUNCNAME", get_funcname
, null_array_assign
);
1665 INIT_DYNAMIC_VAR ("FUNCNAME", (char *)NULL
, get_funcname
, null_assign
);
1667 VSETATTR (v
, att_invisible
|att_noassign
);
1672 initialize_dynamic_variables ()
1676 v
= init_seconds_var ();
1678 INIT_DYNAMIC_VAR ("BASH_COMMAND", (char *)NULL
, get_bash_command
, (sh_var_assign_func_t
*)NULL
);
1679 INIT_DYNAMIC_VAR ("BASH_SUBSHELL", (char *)NULL
, get_subshell
, assign_subshell
);
1681 INIT_DYNAMIC_VAR ("RANDOM", (char *)NULL
, get_random
, assign_random
);
1682 VSETATTR (v
, att_integer
);
1683 INIT_DYNAMIC_VAR ("LINENO", (char *)NULL
, get_lineno
, assign_lineno
);
1684 VSETATTR (v
, att_integer
);
1686 INIT_DYNAMIC_VAR ("BASHPID", (char *)NULL
, get_bashpid
, null_assign
);
1687 VSETATTR (v
, att_integer
|att_readonly
);
1689 #if defined (HISTORY)
1690 INIT_DYNAMIC_VAR ("HISTCMD", (char *)NULL
, get_histcmd
, (sh_var_assign_func_t
*)NULL
);
1691 VSETATTR (v
, att_integer
);
1694 #if defined (READLINE)
1695 INIT_DYNAMIC_VAR ("COMP_WORDBREAKS", (char *)NULL
, get_comp_wordbreaks
, assign_comp_wordbreaks
);
1698 #if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
1699 v
= init_dynamic_array_var ("DIRSTACK", get_dirstack
, assign_dirstack
, 0);
1700 #endif /* PUSHD_AND_POPD && ARRAY_VARS */
1702 #if defined (ARRAY_VARS)
1703 v
= init_dynamic_array_var ("GROUPS", get_groupset
, null_array_assign
, att_noassign
);
1705 # if defined (DEBUGGER)
1706 v
= init_dynamic_array_var ("BASH_ARGC", get_self
, null_array_assign
, att_noassign
|att_nounset
);
1707 v
= init_dynamic_array_var ("BASH_ARGV", get_self
, null_array_assign
, att_noassign
|att_nounset
);
1708 # endif /* DEBUGGER */
1709 v
= init_dynamic_array_var ("BASH_SOURCE", get_self
, null_array_assign
, att_noassign
|att_nounset
);
1710 v
= init_dynamic_array_var ("BASH_LINENO", get_self
, null_array_assign
, att_noassign
|att_nounset
);
1712 v
= init_dynamic_assoc_var ("BASH_CMDS", get_hashcmd
, assign_hashcmd
, att_nofree
);
1713 # if defined (ALIAS)
1714 v
= init_dynamic_assoc_var ("BASH_ALIASES", get_aliasvar
, assign_aliasvar
, att_nofree
);
1718 v
= init_funcname_var ();
1721 /* **************************************************************** */
1723 /* Retrieving variables and values */
1725 /* **************************************************************** */
1727 /* How to get a pointer to the shell variable or function named NAME.
1728 HASHED_VARS is a pointer to the hash table containing the list
1729 of interest (either variables or functions). */
1732 hash_lookup (name
, hashed_vars
)
1734 HASH_TABLE
*hashed_vars
;
1736 BUCKET_CONTENTS
*bucket
;
1738 bucket
= hash_search (name
, hashed_vars
, 0);
1739 return (bucket
? (SHELL_VAR
*)bucket
->data
: (SHELL_VAR
*)NULL
);
1743 var_lookup (name
, vcontext
)
1745 VAR_CONTEXT
*vcontext
;
1750 v
= (SHELL_VAR
*)NULL
;
1751 for (vc
= vcontext
; vc
; vc
= vc
->down
)
1752 if (v
= hash_lookup (name
, vc
->table
))
1758 /* Look up the variable entry named NAME. If SEARCH_TEMPENV is non-zero,
1759 then also search the temporarily built list of exported variables.
1760 The lookup order is:
1762 shell_variables list
1766 find_variable_internal (name
, force_tempenv
)
1773 var
= (SHELL_VAR
*)NULL
;
1775 /* If explicitly requested, first look in the temporary environment for
1776 the variable. This allows constructs such as "foo=x eval 'echo $foo'"
1777 to get the `exported' value of $foo. This happens if we are executing
1778 a function or builtin, or if we are looking up a variable in a
1779 "subshell environment". */
1780 search_tempenv
= force_tempenv
|| (expanding_redir
== 0 && subshell_environment
);
1782 if (search_tempenv
&& temporary_env
)
1783 var
= hash_lookup (name
, temporary_env
);
1786 var
= var_lookup (name
, shell_variables
);
1789 return ((SHELL_VAR
*)NULL
);
1791 return (var
->dynamic_value
? (*(var
->dynamic_value
)) (var
) : var
);
1794 /* Look up the variable entry named NAME. Returns the entry or NULL. */
1796 find_variable (name
)
1799 return (find_variable_internal (name
, (expanding_redir
== 0 && (assigning_in_environment
|| executing_builtin
))));
1802 /* Look up the function entry whose name matches STRING.
1803 Returns the entry or NULL. */
1805 find_function (name
)
1808 return (hash_lookup (name
, shell_functions
));
1811 /* Find the function definition for the shell function named NAME. Returns
1812 the entry or NULL. */
1814 find_function_def (name
)
1817 #if defined (DEBUGGER)
1818 return ((FUNCTION_DEF
*)hash_lookup (name
, shell_function_defs
));
1820 return ((FUNCTION_DEF
*)0);
1824 /* Return the value of VAR. VAR is assumed to have been the result of a
1825 lookup without any subscript, if arrays are compiled into the shell. */
1827 get_variable_value (var
)
1831 return ((char *)NULL
);
1832 #if defined (ARRAY_VARS)
1833 else if (array_p (var
))
1834 return (array_reference (array_cell (var
), 0));
1835 else if (assoc_p (var
))
1836 return (assoc_reference (assoc_cell (var
), "0"));
1839 return (value_cell (var
));
1842 /* Return the string value of a variable. Return NULL if the variable
1843 doesn't exist. Don't cons a new string. This is a potential memory
1844 leak if the variable is found in the temporary environment. Since
1845 functions and variables have separate name spaces, returns NULL if
1846 var_name is a shell function only. */
1848 get_string_value (var_name
)
1849 const char *var_name
;
1853 var
= find_variable (var_name
);
1854 return ((var
) ? get_variable_value (var
) : (char *)NULL
);
1857 /* This is present for use by the tilde and readline libraries. */
1859 sh_get_env_value (v
)
1862 return get_string_value (v
);
1865 /* **************************************************************** */
1867 /* Creating and setting variables */
1869 /* **************************************************************** */
1871 /* Set NAME to VALUE if NAME has no value. */
1873 set_if_not (name
, value
)
1878 if (shell_variables
== 0)
1879 create_variable_tables ();
1881 v
= find_variable (name
);
1883 v
= bind_variable_internal (name
, value
, global_variables
->table
, HASH_NOSRCH
, 0);
1887 /* Create a local variable referenced by NAME. */
1889 make_local_variable (name
)
1892 SHELL_VAR
*new_var
, *old_var
;
1897 /* local foo; local foo; is a no-op. */
1898 old_var
= find_variable (name
);
1899 if (old_var
&& local_p (old_var
) && old_var
->context
== variable_context
)
1901 VUNSETATTR (old_var
, att_invisible
);
1905 was_tmpvar
= old_var
&& tempvar_p (old_var
);
1907 tmp_value
= value_cell (old_var
);
1909 for (vc
= shell_variables
; vc
; vc
= vc
->down
)
1910 if (vc_isfuncenv (vc
) && vc
->scope
== variable_context
)
1915 internal_error (_("make_local_variable: no function context at current scope"));
1916 return ((SHELL_VAR
*)NULL
);
1918 else if (vc
->table
== 0)
1919 vc
->table
= hash_create (TEMPENV_HASH_BUCKETS
);
1921 /* Since this is called only from the local/declare/typeset code, we can
1922 call builtin_error here without worry (of course, it will also work
1923 for anything that sets this_command_name). Variables with the `noassign'
1924 attribute may not be made local. The test against old_var's context
1925 level is to disallow local copies of readonly global variables (since I
1926 believe that this could be a security hole). Readonly copies of calling
1927 function local variables are OK. */
1928 if (old_var
&& (noassign_p (old_var
) ||
1929 (readonly_p (old_var
) && old_var
->context
== 0)))
1931 if (readonly_p (old_var
))
1933 return ((SHELL_VAR
*)NULL
);
1937 new_var
= make_new_variable (name
, vc
->table
);
1940 new_var
= make_new_variable (name
, vc
->table
);
1942 /* If we found this variable in one of the temporary environments,
1943 inherit its value. Watch to see if this causes problems with
1944 things like `x=4 local x'. */
1946 var_setvalue (new_var
, savestring (tmp_value
));
1948 new_var
->attributes
= exported_p (old_var
) ? att_exported
: 0;
1951 vc
->flags
|= VC_HASLOCAL
;
1953 new_var
->context
= variable_context
;
1954 VSETATTR (new_var
, att_local
);
1962 /* Create a new shell variable with name NAME. */
1964 new_shell_variable (name
)
1969 entry
= (SHELL_VAR
*)xmalloc (sizeof (SHELL_VAR
));
1971 entry
->name
= savestring (name
);
1972 var_setvalue (entry
, (char *)NULL
);
1973 CLEAR_EXPORTSTR (entry
);
1975 entry
->dynamic_value
= (sh_var_value_func_t
*)NULL
;
1976 entry
->assign_func
= (sh_var_assign_func_t
*)NULL
;
1978 entry
->attributes
= 0;
1980 /* Always assume variables are to be made at toplevel!
1981 make_local_variable has the responsibilty of changing the
1982 variable context. */
1988 /* Create a new shell variable with name NAME and add it to the hash table
1991 make_new_variable (name
, table
)
1996 BUCKET_CONTENTS
*elt
;
1998 entry
= new_shell_variable (name
);
2000 /* Make sure we have a shell_variables hash table to add to. */
2001 if (shell_variables
== 0)
2002 create_variable_tables ();
2004 elt
= hash_insert (savestring (name
), table
, HASH_NOSRCH
);
2005 elt
->data
= (PTR_T
)entry
;
2010 #if defined (ARRAY_VARS)
2012 make_new_array_variable (name
)
2018 entry
= make_new_variable (name
, global_variables
->table
);
2019 array
= array_create ();
2021 var_setarray (entry
, array
);
2022 VSETATTR (entry
, att_array
);
2027 make_local_array_variable (name
)
2033 var
= make_local_variable (name
);
2034 if (var
== 0 || array_p (var
))
2037 array
= array_create ();
2039 dispose_variable_value (var
);
2040 var_setarray (var
, array
);
2041 VSETATTR (var
, att_array
);
2046 make_new_assoc_variable (name
)
2052 entry
= make_new_variable (name
, global_variables
->table
);
2053 hash
= assoc_create (0);
2055 var_setassoc (entry
, hash
);
2056 VSETATTR (entry
, att_assoc
);
2061 make_local_assoc_variable (name
)
2067 var
= make_local_variable (name
);
2068 if (var
== 0 || assoc_p (var
))
2071 dispose_variable_value (var
);
2072 hash
= assoc_create (0);
2074 var_setassoc (var
, hash
);
2075 VSETATTR (var
, att_assoc
);
2081 make_variable_value (var
, value
, flags
)
2086 char *retval
, *oval
;
2087 intmax_t lval
, rval
;
2088 int expok
, olen
, op
;
2090 /* If this variable has had its type set to integer (via `declare -i'),
2091 then do expression evaluation on it and store the result. The
2092 functions in expr.c (evalexp()) and bind_int_variable() are responsible
2093 for turning off the integer flag if they don't want further
2095 if (integer_p (var
))
2097 if (flags
& ASS_APPEND
)
2099 oval
= value_cell (var
);
2100 lval
= evalexp (oval
, &expok
); /* ksh93 seems to do this */
2103 top_level_cleanup ();
2104 jump_to_top_level (DISCARD
);
2107 rval
= evalexp (value
, &expok
);
2110 top_level_cleanup ();
2111 jump_to_top_level (DISCARD
);
2113 if (flags
& ASS_APPEND
)
2115 retval
= itos (rval
);
2117 #if defined (CASEMOD_ATTRS)
2118 else if (capcase_p (var
) || uppercase_p (var
) || lowercase_p (var
))
2120 if (flags
& ASS_APPEND
)
2122 oval
= get_variable_value (var
);
2123 if (oval
== 0) /* paranoia */
2125 olen
= STRLEN (oval
);
2126 retval
= (char *)xmalloc (olen
+ (value
? STRLEN (value
) : 0) + 1);
2127 strcpy (retval
, oval
);
2129 strcpy (retval
+olen
, value
);
2132 retval
= savestring (value
);
2135 retval
= (char *)xmalloc (1);
2138 op
= capcase_p (var
) ? CASE_CAPITALIZE
2139 : (uppercase_p (var
) ? CASE_UPPER
: CASE_LOWER
);
2140 oval
= sh_modcase (retval
, (char *)0, op
);
2144 #endif /* CASEMOD_ATTRS */
2147 if (flags
& ASS_APPEND
)
2149 oval
= get_variable_value (var
);
2150 if (oval
== 0) /* paranoia */
2152 olen
= STRLEN (oval
);
2153 retval
= (char *)xmalloc (olen
+ (value
? STRLEN (value
) : 0) + 1);
2154 strcpy (retval
, oval
);
2156 strcpy (retval
+olen
, value
);
2159 retval
= savestring (value
);
2162 retval
= (char *)xmalloc (1);
2167 retval
= (char *)NULL
;
2172 /* Bind a variable NAME to VALUE in the HASH_TABLE TABLE, which may be the
2173 temporary environment (but usually is not). */
2175 bind_variable_internal (name
, value
, table
, hflags
, aflags
)
2184 entry
= (hflags
& HASH_NOSRCH
) ? (SHELL_VAR
*)NULL
: hash_lookup (name
, table
);
2188 entry
= make_new_variable (name
, table
);
2189 var_setvalue (entry
, make_variable_value (entry
, value
, 0)); /* XXX */
2191 else if (entry
->assign_func
) /* array vars have assign functions now */
2193 INVALIDATE_EXPORTSTR (entry
);
2194 newval
= (aflags
& ASS_APPEND
) ? make_variable_value (entry
, value
, aflags
) : value
;
2195 if (assoc_p (entry
))
2196 entry
= (*(entry
->assign_func
)) (entry
, newval
, -1, savestring ("0"));
2197 else if (array_p (entry
))
2198 entry
= (*(entry
->assign_func
)) (entry
, newval
, 0, 0);
2200 entry
= (*(entry
->assign_func
)) (entry
, newval
, -1, 0);
2201 if (newval
!= value
)
2207 if (readonly_p (entry
) || noassign_p (entry
))
2209 if (readonly_p (entry
))
2210 err_readonly (name
);
2214 /* Variables which are bound are visible. */
2215 VUNSETATTR (entry
, att_invisible
);
2217 newval
= make_variable_value (entry
, value
, aflags
); /* XXX */
2219 /* Invalidate any cached export string */
2220 INVALIDATE_EXPORTSTR (entry
);
2222 #if defined (ARRAY_VARS)
2223 /* XXX -- this bears looking at again -- XXX */
2224 /* If an existing array variable x is being assigned to with x=b or
2225 `read x' or something of that nature, silently convert it to
2226 x[0]=b or `read x[0]'. */
2227 if (array_p (entry
))
2229 array_insert (array_cell (entry
), 0, newval
);
2232 else if (assoc_p (entry
))
2234 assoc_insert (assoc_cell (entry
), savestring ("0"), newval
);
2240 FREE (value_cell (entry
));
2241 var_setvalue (entry
, newval
);
2245 if (mark_modified_vars
)
2246 VSETATTR (entry
, att_exported
);
2248 if (exported_p (entry
))
2249 array_needs_making
= 1;
2254 /* Bind a variable NAME to VALUE. This conses up the name
2255 and value strings. If we have a temporary environment, we bind there
2256 first, then we bind into shell_variables. */
2259 bind_variable (name
, value
, flags
)
2267 if (shell_variables
== 0)
2268 create_variable_tables ();
2270 /* If we have a temporary environment, look there first for the variable,
2271 and, if found, modify the value there before modifying it in the
2272 shell_variables table. This allows sourced scripts to modify values
2273 given to them in a temporary environment while modifying the variable
2274 value that the caller sees. */
2276 bind_tempenv_variable (name
, value
);
2278 /* XXX -- handle local variables here. */
2279 for (vc
= shell_variables
; vc
; vc
= vc
->down
)
2281 if (vc_isfuncenv (vc
) || vc_isbltnenv (vc
))
2283 v
= hash_lookup (name
, vc
->table
);
2285 return (bind_variable_internal (name
, value
, vc
->table
, 0, flags
));
2288 return (bind_variable_internal (name
, value
, global_variables
->table
, 0, flags
));
2291 /* Make VAR, a simple shell variable, have value VALUE. Once assigned a
2292 value, variables are no longer invisible. This is a duplicate of part
2293 of the internals of bind_variable. If the variable is exported, or
2294 all modified variables should be exported, mark the variable for export
2295 and note that the export environment needs to be recreated. */
2297 bind_variable_value (var
, value
, aflags
)
2304 VUNSETATTR (var
, att_invisible
);
2306 if (var
->assign_func
)
2308 /* If we're appending, we need the old value, so use
2309 make_variable_value */
2310 t
= (aflags
& ASS_APPEND
) ? make_variable_value (var
, value
, aflags
) : value
;
2311 (*(var
->assign_func
)) (var
, t
, -1, 0);
2312 if (t
!= value
&& t
)
2317 t
= make_variable_value (var
, value
, aflags
);
2318 FREE (value_cell (var
));
2319 var_setvalue (var
, t
);
2322 INVALIDATE_EXPORTSTR (var
);
2324 if (mark_modified_vars
)
2325 VSETATTR (var
, att_exported
);
2327 if (exported_p (var
))
2328 array_needs_making
= 1;
2333 /* Bind/create a shell variable with the name LHS to the RHS.
2334 This creates or modifies a variable such that it is an integer.
2336 This used to be in expr.c, but it is here so that all of the
2337 variable binding stuff is localized. Since we don't want any
2338 recursive evaluation from bind_variable() (possible without this code,
2339 since bind_variable() calls the evaluator for variables with the integer
2340 attribute set), we temporarily turn off the integer attribute for each
2341 variable we set here, then turn it back on after binding as necessary. */
2344 bind_int_variable (lhs
, rhs
)
2347 register SHELL_VAR
*v
;
2351 #if defined (ARRAY_VARS)
2352 if (valid_array_reference (lhs
))
2355 v
= array_variable_part (lhs
, (char **)0, (int *)0);
2359 v
= find_variable (lhs
);
2363 isint
= integer_p (v
);
2364 VUNSETATTR (v
, att_integer
);
2367 #if defined (ARRAY_VARS)
2369 v
= assign_array_element (lhs
, rhs
, 0);
2372 v
= bind_variable (lhs
, rhs
, 0);
2375 VSETATTR (v
, att_integer
);
2381 bind_var_to_int (var
, val
)
2385 char ibuf
[INT_STRLEN_BOUND (intmax_t) + 1], *p
;
2387 p
= fmtulong (val
, 10, ibuf
, sizeof (ibuf
), 0);
2388 return (bind_int_variable (var
, p
));
2391 /* Do a function binding to a variable. You pass the name and
2392 the command to bind to. This conses the name and command. */
2394 bind_function (name
, value
)
2400 entry
= find_function (name
);
2403 BUCKET_CONTENTS
*elt
;
2405 elt
= hash_insert (savestring (name
), shell_functions
, HASH_NOSRCH
);
2406 entry
= new_shell_variable (name
);
2407 elt
->data
= (PTR_T
)entry
;
2410 INVALIDATE_EXPORTSTR (entry
);
2412 if (var_isset (entry
))
2413 dispose_command (function_cell (entry
));
2416 var_setfunc (entry
, copy_command (value
));
2418 var_setfunc (entry
, 0);
2420 VSETATTR (entry
, att_function
);
2422 if (mark_modified_vars
)
2423 VSETATTR (entry
, att_exported
);
2425 VUNSETATTR (entry
, att_invisible
); /* Just to be sure */
2427 if (exported_p (entry
))
2428 array_needs_making
= 1;
2430 #if defined (PROGRAMMABLE_COMPLETION)
2431 set_itemlist_dirty (&it_functions
);
2437 #if defined (DEBUGGER)
2438 /* Bind a function definition, which includes source file and line number
2439 information in addition to the command, into the FUNCTION_DEF hash table.*/
2441 bind_function_def (name
, value
)
2443 FUNCTION_DEF
*value
;
2445 FUNCTION_DEF
*entry
;
2446 BUCKET_CONTENTS
*elt
;
2449 entry
= find_function_def (name
);
2452 dispose_function_def_contents (entry
);
2453 entry
= copy_function_def_contents (value
, entry
);
2457 cmd
= value
->command
;
2459 entry
= copy_function_def (value
);
2460 value
->command
= cmd
;
2462 elt
= hash_insert (savestring (name
), shell_function_defs
, HASH_NOSRCH
);
2463 elt
->data
= (PTR_T
*)entry
;
2466 #endif /* DEBUGGER */
2468 /* Add STRING, which is of the form foo=bar, to the temporary environment
2469 HASH_TABLE (temporary_env). The functions in execute_cmd.c are
2470 responsible for moving the main temporary env to one of the other
2471 temporary environments. The expansion code in subst.c calls this. */
2473 assign_in_env (word
)
2477 char *name
, *temp
, *value
;
2481 string
= word
->word
;
2483 offset
= assignment (string
, 0);
2484 name
= savestring (string
);
2485 value
= (char *)NULL
;
2487 if (name
[offset
] == '=')
2491 /* ignore the `+' when assigning temporary environment */
2492 if (name
[offset
- 1] == '+')
2493 name
[offset
- 1] = '\0';
2495 var
= find_variable (name
);
2496 if (var
&& (readonly_p (var
) || noassign_p (var
)))
2498 if (readonly_p (var
))
2499 err_readonly (name
);
2504 temp
= name
+ offset
+ 1;
2505 value
= expand_assignment_string_to_string (temp
, 0);
2508 if (temporary_env
== 0)
2509 temporary_env
= hash_create (TEMPENV_HASH_BUCKETS
);
2511 var
= hash_lookup (name
, temporary_env
);
2513 var
= make_new_variable (name
, temporary_env
);
2515 FREE (value_cell (var
));
2519 value
= (char *)xmalloc (1); /* like do_assignment_internal */
2523 var_setvalue (var
, value
);
2524 var
->attributes
|= (att_exported
|att_tempvar
);
2525 var
->context
= variable_context
; /* XXX */
2527 INVALIDATE_EXPORTSTR (var
);
2528 var
->exportstr
= mk_env_string (name
, value
);
2530 array_needs_making
= 1;
2535 if (echo_command_at_execute
)
2536 /* The Korn shell prints the `+ ' in front of assignment statements,
2538 xtrace_print_assignment (name
, value
, 0, 1);
2544 /* **************************************************************** */
2546 /* Copying variables */
2548 /* **************************************************************** */
2550 #ifdef INCLUDE_UNUSED
2551 /* Copy VAR to a new data structure and return that structure. */
2556 SHELL_VAR
*copy
= (SHELL_VAR
*)NULL
;
2560 copy
= (SHELL_VAR
*)xmalloc (sizeof (SHELL_VAR
));
2562 copy
->attributes
= var
->attributes
;
2563 copy
->name
= savestring (var
->name
);
2565 if (function_p (var
))
2566 var_setfunc (copy
, copy_command (function_cell (var
)));
2567 #if defined (ARRAY_VARS)
2568 else if (array_p (var
))
2569 var_setarray (copy
, array_copy (array_cell (var
)));
2570 else if (assoc_p (var
))
2571 var_setassoc (copy
, assoc_copy (assoc_cell (var
)));
2573 else if (value_cell (var
))
2574 var_setvalue (copy
, savestring (value_cell (var
)));
2576 var_setvalue (copy
, (char *)NULL
);
2578 copy
->dynamic_value
= var
->dynamic_value
;
2579 copy
->assign_func
= var
->assign_func
;
2581 copy
->exportstr
= COPY_EXPORTSTR (var
);
2583 copy
->context
= var
->context
;
2589 /* **************************************************************** */
2591 /* Deleting and unsetting variables */
2593 /* **************************************************************** */
2595 /* Dispose of the information attached to VAR. */
2597 dispose_variable_value (var
)
2600 if (function_p (var
))
2601 dispose_command (function_cell (var
));
2602 #if defined (ARRAY_VARS)
2603 else if (array_p (var
))
2604 array_dispose (array_cell (var
));
2605 else if (assoc_p (var
))
2606 assoc_dispose (assoc_cell (var
));
2609 FREE (value_cell (var
));
2613 dispose_variable (var
)
2619 if (nofree_p (var
) == 0)
2620 dispose_variable_value (var
);
2622 FREE_EXPORTSTR (var
);
2626 if (exported_p (var
))
2627 array_needs_making
= 1;
2632 /* Unset the shell variable referenced by NAME. */
2634 unbind_variable (name
)
2637 return makunbound (name
, shell_variables
);
2640 /* Unset the shell function named NAME. */
2645 BUCKET_CONTENTS
*elt
;
2648 elt
= hash_remove (name
, shell_functions
, 0);
2653 #if defined (PROGRAMMABLE_COMPLETION)
2654 set_itemlist_dirty (&it_functions
);
2657 func
= (SHELL_VAR
*)elt
->data
;
2660 if (exported_p (func
))
2661 array_needs_making
++;
2662 dispose_variable (func
);
2671 #if defined (DEBUGGER)
2673 unbind_function_def (name
)
2676 BUCKET_CONTENTS
*elt
;
2677 FUNCTION_DEF
*funcdef
;
2679 elt
= hash_remove (name
, shell_function_defs
, 0);
2684 funcdef
= (FUNCTION_DEF
*)elt
->data
;
2686 dispose_function_def (funcdef
);
2693 #endif /* DEBUGGER */
2695 /* Make the variable associated with NAME go away. HASH_LIST is the
2696 hash table from which this variable should be deleted (either
2697 shell_variables or shell_functions).
2698 Returns non-zero if the variable couldn't be found. */
2700 makunbound (name
, vc
)
2704 BUCKET_CONTENTS
*elt
, *new_elt
;
2709 for (elt
= (BUCKET_CONTENTS
*)NULL
, v
= vc
; v
; v
= v
->down
)
2710 if (elt
= hash_remove (name
, v
->table
, 0))
2716 old_var
= (SHELL_VAR
*)elt
->data
;
2718 if (old_var
&& exported_p (old_var
))
2719 array_needs_making
++;
2721 /* If we're unsetting a local variable and we're still executing inside
2722 the function, just mark the variable as invisible. The function
2723 eventually called by pop_var_context() will clean it up later. This
2724 must be done so that if the variable is subsequently assigned a new
2725 value inside the function, the `local' attribute is still present.
2726 We also need to add it back into the correct hash table. */
2727 if (old_var
&& local_p (old_var
) && variable_context
== old_var
->context
)
2729 if (nofree_p (old_var
))
2730 var_setvalue (old_var
, (char *)NULL
);
2731 #if defined (ARRAY_VARS)
2732 else if (array_p (old_var
))
2733 array_dispose (array_cell (old_var
));
2734 else if (assoc_p (old_var
))
2735 assoc_dispose (assoc_cell (old_var
));
2738 FREE (value_cell (old_var
));
2739 /* Reset the attributes. Preserve the export attribute if the variable
2740 came from a temporary environment. Make sure it stays local, and
2741 make it invisible. */
2742 old_var
->attributes
= (exported_p (old_var
) && tempvar_p (old_var
)) ? att_exported
: 0;
2743 VSETATTR (old_var
, att_local
);
2744 VSETATTR (old_var
, att_invisible
);
2745 var_setvalue (old_var
, (char *)NULL
);
2746 INVALIDATE_EXPORTSTR (old_var
);
2748 new_elt
= hash_insert (savestring (old_var
->name
), v
->table
, 0);
2749 new_elt
->data
= (PTR_T
)old_var
;
2750 stupidly_hack_special_variables (old_var
->name
);
2757 /* Have to save a copy of name here, because it might refer to
2758 old_var->name. If so, stupidly_hack_special_variables will
2759 reference freed memory. */
2760 t
= savestring (name
);
2765 dispose_variable (old_var
);
2766 stupidly_hack_special_variables (t
);
2772 /* Get rid of all of the variables in the current context. */
2774 kill_all_local_variables ()
2778 for (vc
= shell_variables
; vc
; vc
= vc
->down
)
2779 if (vc_isfuncenv (vc
) && vc
->scope
== variable_context
)
2784 if (vc
->table
&& vc_haslocals (vc
))
2786 delete_all_variables (vc
->table
);
2787 hash_dispose (vc
->table
);
2789 vc
->table
= (HASH_TABLE
*)NULL
;
2793 free_variable_hash_data (data
)
2798 var
= (SHELL_VAR
*)data
;
2799 dispose_variable (var
);
2802 /* Delete the entire contents of the hash table. */
2804 delete_all_variables (hashed_vars
)
2805 HASH_TABLE
*hashed_vars
;
2807 hash_flush (hashed_vars
, free_variable_hash_data
);
2810 /* **************************************************************** */
2812 /* Setting variable attributes */
2814 /* **************************************************************** */
2816 #define FIND_OR_MAKE_VARIABLE(name, entry) \
2819 entry = find_variable (name); \
2822 entry = bind_variable (name, "", 0); \
2823 if (!no_invisible_vars) entry->attributes |= att_invisible; \
2828 /* Make the variable associated with NAME be readonly.
2829 If NAME does not exist yet, create it. */
2831 set_var_read_only (name
)
2836 FIND_OR_MAKE_VARIABLE (name
, entry
);
2837 VSETATTR (entry
, att_readonly
);
2840 #ifdef INCLUDE_UNUSED
2841 /* Make the function associated with NAME be readonly.
2842 If NAME does not exist, we just punt, like auto_export code below. */
2844 set_func_read_only (name
)
2849 entry
= find_function (name
);
2851 VSETATTR (entry
, att_readonly
);
2854 /* Make the variable associated with NAME be auto-exported.
2855 If NAME does not exist yet, create it. */
2857 set_var_auto_export (name
)
2862 FIND_OR_MAKE_VARIABLE (name
, entry
);
2863 set_auto_export (entry
);
2866 /* Make the function associated with NAME be auto-exported. */
2868 set_func_auto_export (name
)
2873 entry
= find_function (name
);
2875 set_auto_export (entry
);
2879 /* **************************************************************** */
2881 /* Creating lists of variables */
2883 /* **************************************************************** */
2886 vlist_alloc (nentries
)
2891 vlist
= (VARLIST
*)xmalloc (sizeof (VARLIST
));
2892 vlist
->list
= (SHELL_VAR
**)xmalloc ((nentries
+ 1) * sizeof (SHELL_VAR
*));
2893 vlist
->list_size
= nentries
;
2894 vlist
->list_len
= 0;
2895 vlist
->list
[0] = (SHELL_VAR
*)NULL
;
2901 vlist_realloc (vlist
, n
)
2906 return (vlist
= vlist_alloc (n
));
2907 if (n
> vlist
->list_size
)
2909 vlist
->list_size
= n
;
2910 vlist
->list
= (SHELL_VAR
**)xrealloc (vlist
->list
, (vlist
->list_size
+ 1) * sizeof (SHELL_VAR
*));
2916 vlist_add (vlist
, var
, flags
)
2923 for (i
= 0; i
< vlist
->list_len
; i
++)
2924 if (STREQ (var
->name
, vlist
->list
[i
]->name
))
2926 if (i
< vlist
->list_len
)
2929 if (i
>= vlist
->list_size
)
2930 vlist
= vlist_realloc (vlist
, vlist
->list_size
+ 16);
2932 vlist
->list
[vlist
->list_len
++] = var
;
2933 vlist
->list
[vlist
->list_len
] = (SHELL_VAR
*)NULL
;
2936 /* Map FUNCTION over the variables in VAR_HASH_TABLE. Return an array of the
2937 variables for which FUNCTION returns a non-zero value. A NULL value
2938 for FUNCTION means to use all variables. */
2940 map_over (function
, vc
)
2941 sh_var_map_func_t
*function
;
2949 for (nentries
= 0, v
= vc
; v
; v
= v
->down
)
2950 nentries
+= HASH_ENTRIES (v
->table
);
2953 return (SHELL_VAR
**)NULL
;
2955 vlist
= vlist_alloc (nentries
);
2957 for (v
= vc
; v
; v
= v
->down
)
2958 flatten (v
->table
, function
, vlist
, 0);
2966 map_over_funcs (function
)
2967 sh_var_map_func_t
*function
;
2972 if (shell_functions
== 0 || HASH_ENTRIES (shell_functions
) == 0)
2973 return ((SHELL_VAR
**)NULL
);
2975 vlist
= vlist_alloc (HASH_ENTRIES (shell_functions
));
2977 flatten (shell_functions
, function
, vlist
, 0);
2984 /* Flatten VAR_HASH_TABLE, applying FUNC to each member and adding those
2985 elements for which FUNC succeeds to VLIST->list. FLAGS is reserved
2986 for future use. Only unique names are added to VLIST. If FUNC is
2987 NULL, each variable in VAR_HASH_TABLE is added to VLIST. If VLIST is
2988 NULL, FUNC is applied to each SHELL_VAR in VAR_HASH_TABLE. If VLIST
2989 and FUNC are both NULL, nothing happens. */
2991 flatten (var_hash_table
, func
, vlist
, flags
)
2992 HASH_TABLE
*var_hash_table
;
2993 sh_var_map_func_t
*func
;
2998 register BUCKET_CONTENTS
*tlist
;
3002 if (var_hash_table
== 0 || (HASH_ENTRIES (var_hash_table
) == 0) || (vlist
== 0 && func
== 0))
3005 for (i
= 0; i
< var_hash_table
->nbuckets
; i
++)
3007 for (tlist
= hash_items (i
, var_hash_table
); tlist
; tlist
= tlist
->next
)
3009 var
= (SHELL_VAR
*)tlist
->data
;
3011 r
= func
? (*func
) (var
) : 1;
3013 vlist_add (vlist
, var
, flags
);
3019 sort_variables (array
)
3022 qsort (array
, strvec_len ((char **)array
), sizeof (SHELL_VAR
*), (QSFUNC
*)qsort_var_comp
);
3026 qsort_var_comp (var1
, var2
)
3027 SHELL_VAR
**var1
, **var2
;
3031 if ((result
= (*var1
)->name
[0] - (*var2
)->name
[0]) == 0)
3032 result
= strcmp ((*var1
)->name
, (*var2
)->name
);
3037 /* Apply FUNC to each variable in SHELL_VARIABLES, adding each one for
3038 which FUNC succeeds to an array of SHELL_VAR *s. Returns the array. */
3041 sh_var_map_func_t
*func
;
3045 list
= map_over (func
, shell_variables
);
3046 if (list
/* && posixly_correct */)
3047 sort_variables (list
);
3051 /* Apply FUNC to each variable in SHELL_FUNCTIONS, adding each one for
3052 which FUNC succeeds to an array of SHELL_VAR *s. Returns the array. */
3055 sh_var_map_func_t
*func
;
3059 list
= map_over_funcs (func
);
3060 if (list
/* && posixly_correct */)
3061 sort_variables (list
);
3065 /* Create a NULL terminated array of all the shell variables. */
3067 all_shell_variables ()
3069 return (vapply ((sh_var_map_func_t
*)NULL
));
3072 /* Create a NULL terminated array of all the shell functions. */
3074 all_shell_functions ()
3076 return (fapply ((sh_var_map_func_t
*)NULL
));
3083 return (invisible_p (var
) == 0);
3087 all_visible_functions ()
3089 return (fapply (visible_var
));
3093 all_visible_variables ()
3095 return (vapply (visible_var
));
3098 /* Return non-zero if the variable VAR is visible and exported. Array
3099 variables cannot be exported. */
3101 visible_and_exported (var
)
3104 return (invisible_p (var
) == 0 && exported_p (var
));
3107 /* Candidate variables for the export environment are either valid variables
3108 with the export attribute or invalid variables inherited from the initial
3109 environment and simply passed through. */
3111 export_environment_candidate (var
)
3114 return (exported_p (var
) && (invisible_p (var
) == 0 || imported_p (var
)));
3117 /* Return non-zero if VAR is a local variable in the current context and
3120 local_and_exported (var
)
3123 return (invisible_p (var
) == 0 && local_p (var
) && var
->context
== variable_context
&& exported_p (var
));
3127 all_exported_variables ()
3129 return (vapply (visible_and_exported
));
3133 local_exported_variables ()
3135 return (vapply (local_and_exported
));
3139 variable_in_context (var
)
3142 return (invisible_p (var
) == 0 && local_p (var
) && var
->context
== variable_context
);
3146 all_local_variables ()
3152 vc
= shell_variables
;
3153 for (vc
= shell_variables
; vc
; vc
= vc
->down
)
3154 if (vc_isfuncenv (vc
) && vc
->scope
== variable_context
)
3159 internal_error (_("all_local_variables: no function context at current scope"));
3160 return (SHELL_VAR
**)NULL
;
3162 if (vc
->table
== 0 || HASH_ENTRIES (vc
->table
) == 0 || vc_haslocals (vc
) == 0)
3163 return (SHELL_VAR
**)NULL
;
3165 vlist
= vlist_alloc (HASH_ENTRIES (vc
->table
));
3167 flatten (vc
->table
, variable_in_context
, vlist
, 0);
3172 sort_variables (ret
);
3176 #if defined (ARRAY_VARS)
3177 /* Return non-zero if the variable VAR is visible and an array. */
3179 visible_array_vars (var
)
3182 return (invisible_p (var
) == 0 && array_p (var
));
3186 all_array_variables ()
3188 return (vapply (visible_array_vars
));
3190 #endif /* ARRAY_VARS */
3193 all_variables_matching_prefix (prefix
)
3196 SHELL_VAR
**varlist
;
3198 int vind
, rind
, plen
;
3200 plen
= STRLEN (prefix
);
3201 varlist
= all_visible_variables ();
3202 for (vind
= 0; varlist
&& varlist
[vind
]; vind
++)
3204 if (varlist
== 0 || vind
== 0)
3205 return ((char **)NULL
);
3206 rlist
= strvec_create (vind
+ 1);
3207 for (vind
= rind
= 0; varlist
[vind
]; vind
++)
3209 if (plen
== 0 || STREQN (prefix
, varlist
[vind
]->name
, plen
))
3210 rlist
[rind
++] = savestring (varlist
[vind
]->name
);
3212 rlist
[rind
] = (char *)0;
3218 /* **************************************************************** */
3220 /* Managing temporary variable scopes */
3222 /* **************************************************************** */
3224 /* Make variable NAME have VALUE in the temporary environment. */
3226 bind_tempenv_variable (name
, value
)
3232 var
= temporary_env
? hash_lookup (name
, temporary_env
) : (SHELL_VAR
*)NULL
;
3236 FREE (value_cell (var
));
3237 var_setvalue (var
, savestring (value
));
3238 INVALIDATE_EXPORTSTR (var
);
3244 /* Find a variable in the temporary environment that is named NAME.
3245 Return the SHELL_VAR *, or NULL if not found. */
3247 find_tempenv_variable (name
)
3250 return (temporary_env
? hash_lookup (name
, temporary_env
) : (SHELL_VAR
*)NULL
);
3253 /* Push the variable described by (SHELL_VAR *)DATA down to the next
3254 variable context from the temporary environment. */
3256 push_temp_var (data
)
3260 HASH_TABLE
*binding_table
;
3262 var
= (SHELL_VAR
*)data
;
3264 binding_table
= shell_variables
->table
;
3265 if (binding_table
== 0)
3267 if (shell_variables
== global_variables
)
3268 /* shouldn't happen */
3269 binding_table
= shell_variables
->table
= global_variables
->table
= hash_create (0);
3271 binding_table
= shell_variables
->table
= hash_create (TEMPENV_HASH_BUCKETS
);
3274 v
= bind_variable_internal (var
->name
, value_cell (var
), binding_table
, 0, 0);
3276 /* XXX - should we set the context here? It shouldn't matter because of how
3277 assign_in_env works, but might want to check. */
3278 if (binding_table
== global_variables
->table
) /* XXX */
3279 var
->attributes
&= ~(att_tempvar
|att_propagate
);
3282 var
->attributes
|= att_propagate
;
3283 if (binding_table
== shell_variables
->table
)
3284 shell_variables
->flags
|= VC_HASTMPVAR
;
3286 v
->attributes
|= var
->attributes
;
3288 dispose_variable (var
);
3292 propagate_temp_var (data
)
3297 var
= (SHELL_VAR
*)data
;
3298 if (tempvar_p (var
) && (var
->attributes
& att_propagate
))
3299 push_temp_var (data
);
3301 dispose_variable (var
);
3304 /* Free the storage used in the hash table for temporary
3305 environment variables. PUSHF is a function to be called
3306 to free each hash table entry. It takes care of pushing variables
3307 to previous scopes if appropriate. */
3309 dispose_temporary_env (pushf
)
3310 sh_free_func_t
*pushf
;
3312 hash_flush (temporary_env
, pushf
);
3313 hash_dispose (temporary_env
);
3314 temporary_env
= (HASH_TABLE
*)NULL
;
3316 array_needs_making
= 1;
3318 sv_ifs ("IFS"); /* XXX here for now */
3322 dispose_used_env_vars ()
3326 dispose_temporary_env (propagate_temp_var
);
3327 maybe_make_export_env ();
3331 /* Take all of the shell variables in the temporary environment HASH_TABLE
3332 and make shell variables from them at the current variable context. */
3334 merge_temporary_env ()
3337 dispose_temporary_env (push_temp_var
);
3340 /* **************************************************************** */
3342 /* Creating and manipulating the environment */
3344 /* **************************************************************** */
3346 static inline char *
3347 mk_env_string (name
, value
)
3348 const char *name
, *value
;
3350 int name_len
, value_len
;
3353 name_len
= strlen (name
);
3354 value_len
= STRLEN (value
);
3355 p
= (char *)xmalloc (2 + name_len
+ value_len
);
3358 if (value
&& *value
)
3359 strcpy (p
+ name_len
+ 1, value
);
3361 p
[name_len
+ 1] = '\0';
3376 internal_error (_("%s has null exportstr"), v
->name
);
3379 if (legal_variable_starter ((unsigned char)*s
) == 0)
3381 internal_error (_("invalid character %d in exportstr for %s"), *s
, v
->name
);
3384 for (s
= v
->exportstr
+ 1; s
&& *s
; s
++)
3388 if (legal_variable_char ((unsigned char)*s
) == 0)
3390 internal_error (_("invalid character %d in exportstr for %s"), *s
, v
->name
);
3396 internal_error (_("no `=' in exportstr for %s"), v
->name
);
3404 make_env_array_from_var_list (vars
)
3407 register int i
, list_index
;
3408 register SHELL_VAR
*var
;
3409 char **list
, *value
;
3411 list
= strvec_create ((1 + strvec_len ((char **)vars
)));
3413 #define USE_EXPORTSTR (value == var->exportstr)
3415 for (i
= 0, list_index
= 0; var
= vars
[i
]; i
++)
3417 #if defined (__CYGWIN__)
3418 /* We don't use the exportstr stuff on Cygwin at all. */
3419 INVALIDATE_EXPORTSTR (var
);
3422 value
= var
->exportstr
;
3423 else if (function_p (var
))
3424 value
= named_function_string ((char *)NULL
, function_cell (var
), 0);
3425 #if defined (ARRAY_VARS)
3426 else if (array_p (var
))
3428 value
= array_to_assignment_string (array_cell (var
));
3430 continue; /* XXX array vars cannot yet be exported */
3432 else if (assoc_p (var
))
3434 value
= assoc_to_assignment_string (assoc_cell (var
));
3436 continue; /* XXX associative array vars cannot yet be exported */
3440 value
= value_cell (var
);
3444 /* Gee, I'd like to get away with not using savestring() if we're
3445 using the cached exportstr... */
3446 list
[list_index
] = USE_EXPORTSTR
? savestring (value
)
3447 : mk_env_string (var
->name
, value
);
3449 if (USE_EXPORTSTR
== 0)
3450 SAVE_EXPORTSTR (var
, list
[list_index
]);
3453 #undef USE_EXPORTSTR
3456 #if defined (ARRAY_VARS)
3457 if (array_p (var
) || assoc_p (var
))
3464 list
[list_index
] = (char *)NULL
;
3468 /* Make an array of assignment statements from the hash table
3469 HASHED_VARS which contains SHELL_VARs. Only visible, exported
3470 variables are eligible. */
3472 make_var_export_array (vcxt
)
3479 vars
= map_over (visible_and_exported
, vcxt
);
3481 vars
= map_over (export_environment_candidate
, vcxt
);
3485 return (char **)NULL
;
3487 list
= make_env_array_from_var_list (vars
);
3494 make_func_export_array ()
3499 vars
= map_over_funcs (visible_and_exported
);
3501 return (char **)NULL
;
3503 list
= make_env_array_from_var_list (vars
);
3509 /* Add ENVSTR to the end of the exported environment, EXPORT_ENV. */
3510 #define add_to_export_env(envstr,do_alloc) \
3513 if (export_env_index >= (export_env_size - 1)) \
3515 export_env_size += 16; \
3516 export_env = strvec_resize (export_env, export_env_size); \
3517 environ = export_env; \
3519 export_env[export_env_index++] = (do_alloc) ? savestring (envstr) : envstr; \
3520 export_env[export_env_index] = (char *)NULL; \
3523 /* Add ASSIGN to EXPORT_ENV, or supercede a previous assignment in the
3524 array with the same left-hand side. Return the new EXPORT_ENV. */
3526 add_or_supercede_exported_var (assign
, do_alloc
)
3533 equal_offset
= assignment (assign
, 0);
3534 if (equal_offset
== 0)
3535 return (export_env
);
3537 /* If this is a function, then only supersede the function definition.
3538 We do this by including the `=() {' in the comparison, like
3539 initialize_shell_variables does. */
3540 if (assign
[equal_offset
+ 1] == '(' &&
3541 strncmp (assign
+ equal_offset
+ 2, ") {", 3) == 0) /* } */
3544 for (i
= 0; i
< export_env_index
; i
++)
3546 if (STREQN (assign
, export_env
[i
], equal_offset
+ 1))
3548 free (export_env
[i
]);
3549 export_env
[i
] = do_alloc
? savestring (assign
) : assign
;
3550 return (export_env
);
3553 add_to_export_env (assign
, do_alloc
);
3554 return (export_env
);
3558 add_temp_array_to_env (temp_array
, do_alloc
, do_supercede
)
3560 int do_alloc
, do_supercede
;
3564 if (temp_array
== 0)
3567 for (i
= 0; temp_array
[i
]; i
++)
3570 export_env
= add_or_supercede_exported_var (temp_array
[i
], do_alloc
);
3572 add_to_export_env (temp_array
[i
], do_alloc
);
3578 /* Make the environment array for the command about to be executed, if the
3579 array needs making. Otherwise, do nothing. If a shell action could
3580 change the array that commands receive for their environment, then the
3581 code should `array_needs_making++'.
3583 The order to add to the array is:
3585 list of var contexts whose head is shell_variables
3588 This is the shell variable lookup order. We add only new variable
3589 names at each step, which allows local variables and variables in
3590 the temporary environments to shadow variables in the global (or
3591 any previous) scope.
3595 n_shell_variables ()
3600 for (n
= 0, vc
= shell_variables
; vc
; vc
= vc
->down
)
3601 n
+= HASH_ENTRIES (vc
->table
);
3606 maybe_make_export_env ()
3608 register char **temp_array
;
3612 if (array_needs_making
)
3615 strvec_flush (export_env
);
3617 /* Make a guess based on how many shell variables and functions we
3618 have. Since there will always be array variables, and array
3619 variables are not (yet) exported, this will always be big enough
3620 for the exported variables and functions. */
3621 new_size
= n_shell_variables () + HASH_ENTRIES (shell_functions
) + 1 +
3622 HASH_ENTRIES (temporary_env
);
3623 if (new_size
> export_env_size
)
3625 export_env_size
= new_size
;
3626 export_env
= strvec_resize (export_env
, export_env_size
);
3627 environ
= export_env
;
3629 export_env
[export_env_index
= 0] = (char *)NULL
;
3631 /* Make a dummy variable context from the temporary_env, stick it on
3632 the front of shell_variables, call make_var_export_array on the
3633 whole thing to flatten it, and convert the list of SHELL_VAR *s
3634 to the form needed by the environment. */
3637 tcxt
= new_var_context ((char *)NULL
, 0);
3638 tcxt
->table
= temporary_env
;
3639 tcxt
->down
= shell_variables
;
3642 tcxt
= shell_variables
;
3644 temp_array
= make_var_export_array (tcxt
);
3646 add_temp_array_to_env (temp_array
, 0, 0);
3648 if (tcxt
!= shell_variables
)
3651 #if defined (RESTRICTED_SHELL)
3652 /* Restricted shells may not export shell functions. */
3653 temp_array
= restricted
? (char **)0 : make_func_export_array ();
3655 temp_array
= make_func_export_array ();
3658 add_temp_array_to_env (temp_array
, 0, 0);
3660 array_needs_making
= 0;
3664 /* This is an efficiency hack. PWD and OLDPWD are auto-exported, so
3665 we will need to remake the exported environment every time we
3666 change directories. `_' is always put into the environment for
3667 every external command, so without special treatment it will always
3668 cause the environment to be remade.
3670 If there is no other reason to make the exported environment, we can
3671 just update the variables in place and mark the exported environment
3672 as no longer needing a remake. */
3674 update_export_env_inplace (env_prefix
, preflen
, value
)
3681 evar
= (char *)xmalloc (STRLEN (value
) + preflen
+ 1);
3682 strcpy (evar
, env_prefix
);
3684 strcpy (evar
+ preflen
, value
);
3685 export_env
= add_or_supercede_exported_var (evar
, 0);
3688 /* We always put _ in the environment as the name of this command. */
3690 put_command_name_into_env (command_name
)
3693 update_export_env_inplace ("_=", 2, command_name
);
3696 #if 0 /* UNUSED -- it caused too many problems */
3698 put_gnu_argv_flags_into_env (pid
, flags_string
)
3708 fl
= strlen (flags_string
);
3710 dummy
= (char *)xmalloc (l
+ fl
+ 30);
3712 strcpy (dummy
+ 1, pbuf
);
3713 strcpy (dummy
+ 1 + l
, "_GNU_nonoption_argv_flags_");
3714 dummy
[l
+ 27] = '=';
3715 strcpy (dummy
+ l
+ 28, flags_string
);
3719 export_env
= add_or_supercede_exported_var (dummy
, 0);
3723 /* **************************************************************** */
3725 /* Managing variable contexts */
3727 /* **************************************************************** */
3729 /* Allocate and return a new variable context with NAME and FLAGS.
3730 NAME can be NULL. */
3733 new_var_context (name
, flags
)
3739 vc
= (VAR_CONTEXT
*)xmalloc (sizeof (VAR_CONTEXT
));
3740 vc
->name
= name
? savestring (name
) : (char *)NULL
;
3741 vc
->scope
= variable_context
;
3744 vc
->up
= vc
->down
= (VAR_CONTEXT
*)NULL
;
3745 vc
->table
= (HASH_TABLE
*)NULL
;
3750 /* Free a variable context and its data, including the hash table. Dispose
3751 all of the variables. */
3753 dispose_var_context (vc
)
3760 delete_all_variables (vc
->table
);
3761 hash_dispose (vc
->table
);
3767 /* Set VAR's scope level to the current variable context. */
3772 return (var
->context
= variable_context
);
3775 /* Make a new variable context with NAME and FLAGS and a HASH_TABLE of
3776 temporary variables, and push it onto shell_variables. This is
3777 for shell functions. */
3779 push_var_context (name
, flags
, tempvars
)
3782 HASH_TABLE
*tempvars
;
3786 vc
= new_var_context (name
, flags
);
3787 vc
->table
= tempvars
;
3790 /* Have to do this because the temp environment was created before
3791 variable_context was incremented. */
3792 flatten (tempvars
, set_context
, (VARLIST
*)NULL
, 0);
3793 vc
->flags
|= VC_HASTMPVAR
;
3795 vc
->down
= shell_variables
;
3796 shell_variables
->up
= vc
;
3798 return (shell_variables
= vc
);
3802 push_func_var (data
)
3807 var
= (SHELL_VAR
*)data
;
3809 if (tempvar_p (var
) && (posixly_correct
|| (var
->attributes
& att_propagate
)))
3811 /* Make sure we have a hash table to store the variable in while it is
3812 being propagated down to the global variables table. Create one if
3814 if ((vc_isfuncenv (shell_variables
) || vc_istempenv (shell_variables
)) && shell_variables
->table
== 0)
3815 shell_variables
->table
= hash_create (0);
3816 /* XXX - should we set v->context here? */
3817 v
= bind_variable_internal (var
->name
, value_cell (var
), shell_variables
->table
, 0, 0);
3818 if (shell_variables
== global_variables
)
3819 var
->attributes
&= ~(att_tempvar
|att_propagate
);
3821 shell_variables
->flags
|= VC_HASTMPVAR
;
3822 v
->attributes
|= var
->attributes
;
3825 stupidly_hack_special_variables (var
->name
); /* XXX */
3827 dispose_variable (var
);
3830 /* Pop the top context off of VCXT and dispose of it, returning the rest of
3835 VAR_CONTEXT
*ret
, *vcxt
;
3837 vcxt
= shell_variables
;
3838 if (vc_isfuncenv (vcxt
) == 0)
3840 internal_error (_("pop_var_context: head of shell_variables not a function context"));
3844 if (ret
= vcxt
->down
)
3846 ret
->up
= (VAR_CONTEXT
*)NULL
;
3847 shell_variables
= ret
;
3849 hash_flush (vcxt
->table
, push_func_var
);
3850 dispose_var_context (vcxt
);
3853 internal_error (_("pop_var_context: no global_variables context"));
3856 /* Delete the HASH_TABLEs for all variable contexts beginning at VCXT, and
3857 all of the VAR_CONTEXTs except GLOBAL_VARIABLES. */
3859 delete_all_contexts (vcxt
)
3864 for (v
= vcxt
; v
!= global_variables
; v
= t
)
3867 dispose_var_context (v
);
3870 delete_all_variables (global_variables
->table
);
3871 shell_variables
= global_variables
;
3874 /* **************************************************************** */
3876 /* Pushing and Popping temporary variable scopes */
3878 /* **************************************************************** */
3881 push_scope (flags
, tmpvars
)
3883 HASH_TABLE
*tmpvars
;
3885 return (push_var_context ((char *)NULL
, flags
, tmpvars
));
3889 push_exported_var (data
)
3894 var
= (SHELL_VAR
*)data
;
3896 /* If a temp var had its export attribute set, or it's marked to be
3897 propagated, bind it in the previous scope before disposing it. */
3898 /* XXX - This isn't exactly right, because all tempenv variables have the
3899 export attribute set. */
3901 if (exported_p (var
) || (var
->attributes
& att_propagate
))
3903 if (tempvar_p (var
) && exported_p (var
) && (var
->attributes
& att_propagate
))
3906 var
->attributes
&= ~att_tempvar
; /* XXX */
3907 v
= bind_variable_internal (var
->name
, value_cell (var
), shell_variables
->table
, 0, 0);
3908 if (shell_variables
== global_variables
)
3909 var
->attributes
&= ~att_propagate
;
3910 v
->attributes
|= var
->attributes
;
3913 stupidly_hack_special_variables (var
->name
); /* XXX */
3915 dispose_variable (var
);
3919 pop_scope (is_special
)
3922 VAR_CONTEXT
*vcxt
, *ret
;
3924 vcxt
= shell_variables
;
3925 if (vc_istempscope (vcxt
) == 0)
3927 internal_error (_("pop_scope: head of shell_variables not a temporary environment scope"));
3933 ret
->up
= (VAR_CONTEXT
*)NULL
;
3935 shell_variables
= ret
;
3937 /* Now we can take care of merging variables in VCXT into set of scopes
3938 whose head is RET (shell_variables). */
3943 hash_flush (vcxt
->table
, push_func_var
);
3945 hash_flush (vcxt
->table
, push_exported_var
);
3946 hash_dispose (vcxt
->table
);
3950 sv_ifs ("IFS"); /* XXX here for now */
3953 /* **************************************************************** */
3955 /* Pushing and Popping function contexts */
3957 /* **************************************************************** */
3959 static WORD_LIST
**dollar_arg_stack
= (WORD_LIST
**)NULL
;
3960 static int dollar_arg_stack_slots
;
3961 static int dollar_arg_stack_index
;
3963 /* XXX - we might want to consider pushing and popping the `getopts' state
3964 when we modify the positional parameters. */
3966 push_context (name
, is_subshell
, tempvars
)
3967 char *name
; /* function name */
3969 HASH_TABLE
*tempvars
;
3971 if (is_subshell
== 0)
3972 push_dollar_vars ();
3974 push_var_context (name
, VC_FUNCENV
, tempvars
);
3977 /* Only called when subshell == 0, so we don't need to check, and can
3978 unconditionally pop the dollar vars off the stack. */
3986 sv_ifs ("IFS"); /* XXX here for now */
3989 /* Save the existing positional parameters on a stack. */
3993 if (dollar_arg_stack_index
+ 2 > dollar_arg_stack_slots
)
3995 dollar_arg_stack
= (WORD_LIST
**)
3996 xrealloc (dollar_arg_stack
, (dollar_arg_stack_slots
+= 10)
3997 * sizeof (WORD_LIST
**));
3999 dollar_arg_stack
[dollar_arg_stack_index
++] = list_rest_of_args ();
4000 dollar_arg_stack
[dollar_arg_stack_index
] = (WORD_LIST
*)NULL
;
4003 /* Restore the positional parameters from our stack. */
4007 if (!dollar_arg_stack
|| dollar_arg_stack_index
== 0)
4010 remember_args (dollar_arg_stack
[--dollar_arg_stack_index
], 1);
4011 dispose_words (dollar_arg_stack
[dollar_arg_stack_index
]);
4012 dollar_arg_stack
[dollar_arg_stack_index
] = (WORD_LIST
*)NULL
;
4013 set_dollar_vars_unchanged ();
4017 dispose_saved_dollar_vars ()
4019 if (!dollar_arg_stack
|| dollar_arg_stack_index
== 0)
4022 dispose_words (dollar_arg_stack
[dollar_arg_stack_index
]);
4023 dollar_arg_stack
[dollar_arg_stack_index
] = (WORD_LIST
*)NULL
;
4026 /* Manipulate the special BASH_ARGV and BASH_ARGC variables. */
4032 #if defined (ARRAY_VARS) && defined (DEBUGGER)
4033 SHELL_VAR
*bash_argv_v
, *bash_argc_v
;
4034 ARRAY
*bash_argv_a
, *bash_argc_a
;
4039 GET_ARRAY_FROM_VAR ("BASH_ARGV", bash_argv_v
, bash_argv_a
);
4040 GET_ARRAY_FROM_VAR ("BASH_ARGC", bash_argc_v
, bash_argc_a
);
4042 for (l
= list
, i
= 0; l
; l
= l
->next
, i
++)
4043 array_push (bash_argv_a
, l
->word
->word
);
4046 array_push (bash_argc_a
, t
);
4048 #endif /* ARRAY_VARS && DEBUGGER */
4051 /* Remove arguments from BASH_ARGV array. Pop top element off BASH_ARGC
4052 array and use that value as the count of elements to remove from
4057 #if defined (ARRAY_VARS) && defined (DEBUGGER)
4058 SHELL_VAR
*bash_argv_v
, *bash_argc_v
;
4059 ARRAY
*bash_argv_a
, *bash_argc_a
;
4063 GET_ARRAY_FROM_VAR ("BASH_ARGV", bash_argv_v
, bash_argv_a
);
4064 GET_ARRAY_FROM_VAR ("BASH_ARGC", bash_argc_v
, bash_argc_a
);
4066 ce
= array_shift (bash_argc_a
, 1, 0);
4067 if (ce
== 0 || legal_number (element_value (ce
), &i
) == 0)
4071 array_pop (bash_argv_a
);
4072 array_dispose_element (ce
);
4073 #endif /* ARRAY_VARS && DEBUGGER */
4076 /*************************************************
4078 * Functions to manage special variables *
4080 *************************************************/
4082 /* Extern declarations for variables this code has to manage. */
4083 extern int eof_encountered
, eof_encountered_limit
, ignoreeof
;
4085 #if defined (READLINE)
4086 extern int hostname_list_initialized
;
4089 /* An alist of name.function for each special variable. Most of the
4090 functions don't do much, and in fact, this would be faster with a
4091 switch statement, but by the end of this file, I am sick of switch
4094 #define SET_INT_VAR(name, intvar) intvar = find_variable (name) != 0
4096 /* This table will be sorted with qsort() the first time it's accessed. */
4097 struct name_and_function
{
4099 sh_sv_func_t
*function
;
4102 static struct name_and_function special_vars
[] = {
4103 { "BASH_XTRACEFD", sv_xtracefd
},
4105 #if defined (READLINE)
4106 # if defined (STRICT_POSIX)
4107 { "COLUMNS", sv_winsize
},
4109 { "COMP_WORDBREAKS", sv_comp_wordbreaks
},
4112 { "GLOBIGNORE", sv_globignore
},
4114 #if defined (HISTORY)
4115 { "HISTCONTROL", sv_history_control
},
4116 { "HISTFILESIZE", sv_histsize
},
4117 { "HISTIGNORE", sv_histignore
},
4118 { "HISTSIZE", sv_histsize
},
4119 { "HISTTIMEFORMAT", sv_histtimefmt
},
4122 #if defined (__CYGWIN__)
4123 { "HOME", sv_home
},
4126 #if defined (READLINE)
4127 { "HOSTFILE", sv_hostfile
},
4131 { "IGNOREEOF", sv_ignoreeof
},
4133 { "LANG", sv_locale
},
4134 { "LC_ALL", sv_locale
},
4135 { "LC_COLLATE", sv_locale
},
4136 { "LC_CTYPE", sv_locale
},
4137 { "LC_MESSAGES", sv_locale
},
4138 { "LC_NUMERIC", sv_locale
},
4139 { "LC_TIME", sv_locale
},
4141 #if defined (READLINE) && defined (STRICT_POSIX)
4142 { "LINES", sv_winsize
},
4145 { "MAIL", sv_mail
},
4146 { "MAILCHECK", sv_mail
},
4147 { "MAILPATH", sv_mail
},
4149 { "OPTERR", sv_opterr
},
4150 { "OPTIND", sv_optind
},
4152 { "PATH", sv_path
},
4153 { "POSIXLY_CORRECT", sv_strict_posix
},
4155 #if defined (READLINE)
4156 { "TERM", sv_terminal
},
4157 { "TERMCAP", sv_terminal
},
4158 { "TERMINFO", sv_terminal
},
4159 #endif /* READLINE */
4161 { "TEXTDOMAIN", sv_locale
},
4162 { "TEXTDOMAINDIR", sv_locale
},
4164 #if defined (HAVE_TZSET) && defined (PROMPT_STRING_DECODE)
4168 #if defined (HISTORY) && defined (BANG_HISTORY)
4169 { "histchars", sv_histchars
},
4170 #endif /* HISTORY && BANG_HISTORY */
4172 { "ignoreeof", sv_ignoreeof
},
4174 { (char *)0, (sh_sv_func_t
*)0 }
4177 #define N_SPECIAL_VARS (sizeof (special_vars) / sizeof (special_vars[0]) - 1)
4180 sv_compare (sv1
, sv2
)
4181 struct name_and_function
*sv1
, *sv2
;
4185 if ((r
= sv1
->name
[0] - sv2
->name
[0]) == 0)
4186 r
= strcmp (sv1
->name
, sv2
->name
);
4191 find_special_var (name
)
4196 for (i
= 0; special_vars
[i
].name
; i
++)
4198 r
= special_vars
[i
].name
[0] - name
[0];
4200 r
= strcmp (special_vars
[i
].name
, name
);
4204 /* Can't match any of rest of elements in sorted list. Take this out
4205 if it causes problems in certain environments. */
4211 /* The variable in NAME has just had its state changed. Check to see if it
4212 is one of the special ones where something special happens. */
4214 stupidly_hack_special_variables (name
)
4217 static int sv_sorted
= 0;
4220 if (sv_sorted
== 0) /* shouldn't need, but it's fairly cheap. */
4222 qsort (special_vars
, N_SPECIAL_VARS
, sizeof (special_vars
[0]),
4223 (QSFUNC
*)sv_compare
);
4227 i
= find_special_var (name
);
4229 (*(special_vars
[i
].function
)) (name
);
4232 /* Special variables that need hooks to be run when they are unset as part
4233 of shell reinitialization should have their sv_ functions run here. */
4235 reinit_special_variables ()
4237 #if defined (READLINE)
4238 sv_comp_wordbreaks ("COMP_WORDBREAKS");
4240 sv_globignore ("GLOBIGNORE");
4241 sv_opterr ("OPTERR");
4250 v
= find_variable ("IFS");
4254 /* What to do just after the PATH variable has changed. */
4263 /* What to do just after one of the MAILxxxx variables has changed. NAME
4264 is the name of the variable. This is called with NAME set to one of
4265 MAIL, MAILCHECK, or MAILPATH. */
4270 /* If the time interval for checking the files has changed, then
4271 reset the mail timer. Otherwise, one of the pathname vars
4272 to the users mailbox has changed, so rebuild the array of
4274 if (name
[4] == 'C') /* if (strcmp (name, "MAILCHECK") == 0) */
4275 reset_mail_timer ();
4279 remember_mail_dates ();
4283 /* What to do when GLOBIGNORE changes. */
4285 sv_globignore (name
)
4288 if (privileged_mode
== 0)
4289 setup_glob_ignore (name
);
4292 #if defined (READLINE)
4294 sv_comp_wordbreaks (name
)
4299 sv
= find_variable (name
);
4301 reset_completer_word_break_chars ();
4304 /* What to do just after one of the TERMxxx variables has changed.
4305 If we are an interactive shell, then try to reset the terminal
4306 information in readline. */
4311 if (interactive_shell
&& no_line_editing
== 0)
4312 rl_reset_terminal (get_string_value ("TERM"));
4321 v
= find_variable (name
);
4323 clear_hostname_list ();
4325 hostname_list_initialized
= 0;
4328 #if defined (STRICT_POSIX)
4329 /* In strict posix mode, we allow assignments to LINES and COLUMNS (and values
4330 found in the initial environment) to override the terminal size reported by
4340 if (posixly_correct
== 0 || interactive_shell
== 0 || no_line_editing
)
4343 v
= find_variable (name
);
4344 if (v
== 0 || var_isnull (v
))
4345 rl_reset_screen_size ();
4348 if (legal_number (value_cell (v
), &xd
) == 0)
4350 winsize_assignment
= winsize_assigned
= 1;
4351 d
= xd
; /* truncate */
4352 if (name
[0] == 'L') /* LINES */
4353 rl_set_screen_size (d
, -1);
4355 rl_set_screen_size (-1, d
);
4356 winsize_assignment
= 0;
4359 #endif /* STRICT_POSIX */
4360 #endif /* READLINE */
4362 /* Update the value of HOME in the export environment so tilde expansion will
4364 #if defined (__CYGWIN__)
4368 array_needs_making
= 1;
4369 maybe_make_export_env ();
4373 #if defined (HISTORY)
4374 /* What to do after the HISTSIZE or HISTFILESIZE variables change.
4375 If there is a value for this HISTSIZE (and it is numeric), then stifle
4376 the history. Otherwise, if there is NO value for this variable,
4377 unstifle the history. If name is HISTFILESIZE, and its value is
4378 numeric, truncate the history file to hold no more than that many
4388 temp
= get_string_value (name
);
4392 if (legal_number (temp
, &num
))
4397 stifle_history (hmax
);
4398 hmax
= where_history ();
4399 if (history_lines_this_session
> hmax
)
4400 history_lines_this_session
= hmax
;
4404 history_truncate_file (get_string_value ("HISTFILE"), hmax
);
4405 if (hmax
<= history_lines_in_file
)
4406 history_lines_in_file
= hmax
;
4410 else if (name
[4] == 'S')
4411 unstifle_history ();
4414 /* What to do after the HISTIGNORE variable changes. */
4416 sv_histignore (name
)
4419 setup_history_ignore (name
);
4422 /* What to do after the HISTCONTROL variable changes. */
4424 sv_history_control (name
)
4431 history_control
= 0;
4432 temp
= get_string_value (name
);
4434 if (temp
== 0 || *temp
== 0)
4438 while (val
= extract_colon_unit (temp
, &tptr
))
4440 if (STREQ (val
, "ignorespace"))
4441 history_control
|= HC_IGNSPACE
;
4442 else if (STREQ (val
, "ignoredups"))
4443 history_control
|= HC_IGNDUPS
;
4444 else if (STREQ (val
, "ignoreboth"))
4445 history_control
|= HC_IGNBOTH
;
4446 else if (STREQ (val
, "erasedups"))
4447 history_control
|= HC_ERASEDUPS
;
4453 #if defined (BANG_HISTORY)
4454 /* Setting/unsetting of the history expansion character. */
4461 temp
= get_string_value (name
);
4464 history_expansion_char
= *temp
;
4465 if (temp
[0] && temp
[1])
4467 history_subst_char
= temp
[1];
4469 history_comment_char
= temp
[2];
4474 history_expansion_char
= '!';
4475 history_subst_char
= '^';
4476 history_comment_char
= '#';
4479 #endif /* BANG_HISTORY */
4482 sv_histtimefmt (name
)
4487 v
= find_variable (name
);
4488 history_write_timestamps
= (v
!= 0);
4490 #endif /* HISTORY */
4492 #if defined (HAVE_TZSET) && defined (PROMPT_STRING_DECODE)
4501 /* If the variable exists, then the value of it can be the number
4502 of times we actually ignore the EOF. The default is small,
4503 (smaller than csh, anyway). */
4511 eof_encountered
= 0;
4513 tmp_var
= find_variable (name
);
4514 ignoreeof
= tmp_var
!= 0;
4515 temp
= tmp_var
? value_cell (tmp_var
) : (char *)NULL
;
4517 eof_encountered_limit
= (*temp
&& all_digits (temp
)) ? atoi (temp
) : 10;
4518 set_shellopts (); /* make sure `ignoreeof' is/is not in $SHELLOPTS */
4528 tt
= get_string_value ("OPTIND");
4533 /* According to POSIX, setting OPTIND=1 resets the internal state
4535 if (s
< 0 || s
== 1)
4549 tt
= get_string_value ("OPTERR");
4550 sh_opterr
= (tt
&& *tt
) ? atoi (tt
) : 1;
4554 sv_strict_posix (name
)
4557 SET_INT_VAR (name
, posixly_correct
);
4558 posix_initialize (posixly_correct
);
4559 #if defined (READLINE)
4560 if (interactive_shell
)
4561 posix_readline_initialize (posixly_correct
);
4562 #endif /* READLINE */
4563 set_shellopts (); /* make sure `posix' is/is not in $SHELLOPTS */
4572 v
= get_string_value (name
);
4573 if (name
[0] == 'L' && name
[1] == 'A') /* LANG */
4576 set_locale_var (name
, v
); /* LC_*, TEXTDOMAIN* */
4579 #if defined (ARRAY_VARS)
4581 set_pipestatus_array (ps
, nproc
)
4589 char *t
, tbuf
[INT_STRLEN_BOUND(int) + 1];
4591 v
= find_variable ("PIPESTATUS");
4593 v
= make_new_array_variable ("PIPESTATUS");
4594 if (array_p (v
) == 0)
4595 return; /* Do nothing if not an array variable. */
4598 if (a
== 0 || array_num_elements (a
) == 0)
4600 for (i
= 0; i
< nproc
; i
++) /* was ps[i] != -1, not i < nproc */
4602 t
= inttostr (ps
[i
], tbuf
, sizeof (tbuf
));
4603 array_insert (a
, i
, t
);
4609 if (array_num_elements (a
) == nproc
&& nproc
== 1)
4611 ae
= element_forw (a
->head
);
4612 free (element_value (ae
));
4613 ae
->value
= itos (ps
[0]);
4615 else if (array_num_elements (a
) <= nproc
)
4617 /* modify in array_num_elements members in place, then add */
4619 for (i
= 0; i
< array_num_elements (a
); i
++)
4621 ae
= element_forw (ae
);
4622 free (element_value (ae
));
4623 ae
->value
= itos (ps
[i
]);
4626 for ( ; i
< nproc
; i
++)
4628 t
= inttostr (ps
[i
], tbuf
, sizeof (tbuf
));
4629 array_insert (a
, i
, t
);
4634 /* deleting elements. it's faster to rebuild the array. */
4636 for (i
= 0; ps
[i
] != -1; i
++)
4638 t
= inttostr (ps
[i
], tbuf
, sizeof (tbuf
));
4639 array_insert (a
, i
, t
);
4646 set_pipestatus_from_exit (s
)
4649 #if defined (ARRAY_VARS)
4650 static int v
[2] = { 0, -1 };
4653 set_pipestatus_array (v
, 1);
4666 v
= find_variable (name
);
4674 if (t
== 0 || *t
== 0)
4678 fd
= (int)strtol (t
, &e
, 10);
4679 if (e
!= t
&& *e
== '\0' && sh_validfd (fd
))
4681 fp
= fdopen (fd
, "w");
4683 internal_error (_("%s: %s: cannot open as FILE"), name
, value_cell (v
));
4685 xtrace_set (fd
, fp
);
4688 internal_error (_("%s: %s: invalid value for trace file descriptor"), name
, value_cell (v
));