]> git.ipfire.org Git - thirdparty/bash.git/blame - variables.c
Bash-4.3 patch 24
[thirdparty/bash.git] / variables.c
CommitLineData
726f6388
JA
1/* variables.c -- Functions for hacking shell variables. */
2
ac50fbac 3/* Copyright (C) 1987-2013 Free Software Foundation, Inc.
726f6388
JA
4
5 This file is part of GNU Bash, the Bourne Again SHell.
6
3185942a
JA
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.
726f6388 11
3185942a
JA
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.
726f6388
JA
16
17 You should have received a copy of the GNU General Public License
3185942a
JA
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
726f6388 20
ccc6cda3
JA
21#include "config.h"
22
726f6388
JA
23#include "bashtypes.h"
24#include "posixstat.h"
f73dda09 25#include "posixtime.h"
ccc6cda3 26
3185942a
JA
27#if defined (__QNX__)
28# if defined (__QNXNTO__)
29# include <sys/netmgr.h>
95732b49
JA
30# else
31# include <sys/vc.h>
3185942a
JA
32# endif /* !__QNXNTO__ */
33#endif /* __QNX__ */
d166f048 34
ccc6cda3
JA
35#if defined (HAVE_UNISTD_H)
36# include <unistd.h>
37#endif
38
39#include <stdio.h>
f73dda09 40#include "chartypes.h"
3185942a
JA
41#if defined (HAVE_PWD_H)
42# include <pwd.h>
43#endif
726f6388 44#include "bashansi.h"
b80f6443 45#include "bashintl.h"
ccc6cda3 46
0001803f
CR
47#define NEED_XTRACE_SET_DECL
48
726f6388 49#include "shell.h"
726f6388
JA
50#include "flags.h"
51#include "execute_cmd.h"
cce855bc 52#include "findcmd.h"
ccc6cda3
JA
53#include "mailcheck.h"
54#include "input.h"
f73dda09
JA
55#include "hashcmd.h"
56#include "pathexp.h"
3185942a 57#include "alias.h"
ac50fbac
CR
58#include "jobs.h"
59
60#include "version.h"
726f6388 61
d166f048 62#include "builtins/getopt.h"
726f6388 63#include "builtins/common.h"
ac50fbac 64#include "builtins/builtext.h"
cce855bc
JA
65
66#if defined (READLINE)
67# include "bashline.h"
68# include <readline/readline.h>
69#else
70# include <tilde/tilde.h>
71#endif
726f6388 72
ccc6cda3
JA
73#if defined (HISTORY)
74# include "bashhist.h"
cce855bc 75# include <readline/history.h>
ccc6cda3
JA
76#endif /* HISTORY */
77
bb70624e
JA
78#if defined (PROGRAMMABLE_COMPLETION)
79# include "pcomplete.h"
80#endif
81
7117c2d2
JA
82#define TEMPENV_HASH_BUCKETS 4 /* must be power of two */
83
84#define ifsname(s) ((s)[0] == 'I' && (s)[1] == 'F' && (s)[2] == 'S' && (s)[3] == '\0')
85
95732b49
JA
86extern char **environ;
87
726f6388
JA
88/* Variables used here and defined in other files. */
89extern int posixly_correct;
495aee44 90extern int line_number, line_number_base;
b80f6443 91extern int subshell_environment, indirection_level, subshell_level;
ccc6cda3 92extern int build_version, patch_level;
b80f6443 93extern int expanding_redir;
ac50fbac 94extern int last_command_exit_value;
ccc6cda3 95extern char *dist_version, *release_status;
726f6388
JA
96extern char *shell_name;
97extern char *primary_prompt, *secondary_prompt;
ccc6cda3 98extern char *current_host_name;
f73dda09 99extern sh_builtin_func_t *this_shell_builtin;
bb70624e 100extern SHELL_VAR *this_shell_function;
b80f6443 101extern char *the_printed_command_except_trap;
ccc6cda3 102extern char *this_command_name;
b80f6443 103extern char *command_execution_string;
726f6388 104extern time_t shell_start_time;
3185942a
JA
105extern int assigning_in_environment;
106extern int executing_builtin;
495aee44 107extern int funcnest_max;
726f6388 108
b80f6443 109#if defined (READLINE)
95732b49 110extern int no_line_editing;
b80f6443
JA
111extern int perform_hostname_completion;
112#endif
113
7117c2d2
JA
114/* The list of shell variables that the user has created at the global
115 scope, or that came from the environment. */
116VAR_CONTEXT *global_variables = (VAR_CONTEXT *)NULL;
117
118/* The current list of shell variables, including function scopes */
119VAR_CONTEXT *shell_variables = (VAR_CONTEXT *)NULL;
726f6388
JA
120
121/* The list of shell functions that the user has created, or that came from
122 the environment. */
123HASH_TABLE *shell_functions = (HASH_TABLE *)NULL;
124
b80f6443
JA
125#if defined (DEBUGGER)
126/* The table of shell function definitions that the user defined or that
127 came from the environment. */
128HASH_TABLE *shell_function_defs = (HASH_TABLE *)NULL;
129#endif
130
726f6388
JA
131/* The current variable context. This is really a count of how deep into
132 executing functions we are. */
133int variable_context = 0;
134
7117c2d2 135/* The set of shell assignments which are made only in the environment
726f6388 136 for a single command. */
7117c2d2 137HASH_TABLE *temporary_env = (HASH_TABLE *)NULL;
726f6388 138
b80f6443
JA
139/* Set to non-zero if an assignment error occurs while putting variables
140 into the temporary environment. */
141int tempenv_assign_error;
142
726f6388
JA
143/* Some funky variables which are known about specially. Here is where
144 "$*", "$1", and all the cruft is kept. */
145char *dollar_vars[10];
146WORD_LIST *rest_of_args = (WORD_LIST *)NULL;
147
148/* The value of $$. */
f73dda09 149pid_t dollar_dollar_pid;
726f6388 150
3185942a
JA
151/* Non-zero means that we have to remake EXPORT_ENV. */
152int array_needs_making = 1;
153
154/* The number of times BASH has been executed. This is set
155 by initialize_variables (). */
156int shell_level = 0;
157
726f6388 158/* An array which is passed to commands as their environment. It is
d166f048 159 manufactured from the union of the initial environment and the
726f6388
JA
160 shell variables that are marked for export. */
161char **export_env = (char **)NULL;
d166f048
JA
162static int export_env_index;
163static int export_env_size;
726f6388 164
95732b49
JA
165#if defined (READLINE)
166static int winsize_assignment; /* currently assigning to LINES or COLUMNS */
95732b49
JA
167#endif
168
ac50fbac
CR
169static HASH_TABLE *last_table_searched; /* hash_lookup sets this */
170
726f6388 171/* Some forward declarations. */
0628567a
JA
172static void create_variable_tables __P((void));
173
f73dda09
JA
174static void set_machine_vars __P((void));
175static void set_home_var __P((void));
176static void set_shell_var __P((void));
177static char *get_bash_name __P((void));
178static void initialize_shell_level __P((void));
179static void uidset __P((void));
180#if defined (ARRAY_VARS)
181static void make_vers_array __P((void));
182#endif
f73dda09 183
3185942a 184static SHELL_VAR *null_assign __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2 185#if defined (ARRAY_VARS)
3185942a 186static SHELL_VAR *null_array_assign __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2 187#endif
b80f6443
JA
188static SHELL_VAR *get_self __P((SHELL_VAR *));
189
190#if defined (ARRAY_VARS)
191static SHELL_VAR *init_dynamic_array_var __P((char *, sh_var_value_func_t *, sh_var_assign_func_t *, int));
3185942a 192static SHELL_VAR *init_dynamic_assoc_var __P((char *, sh_var_value_func_t *, sh_var_assign_func_t *, int));
b80f6443 193#endif
7117c2d2 194
3185942a 195static SHELL_VAR *assign_seconds __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2
JA
196static SHELL_VAR *get_seconds __P((SHELL_VAR *));
197static SHELL_VAR *init_seconds_var __P((void));
198
199static int brand __P((void));
f73dda09 200static void sbrand __P((unsigned long)); /* set bash random number generator. */
3185942a
JA
201static void seedrand __P((void)); /* seed generator randomly */
202static SHELL_VAR *assign_random __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2 203static SHELL_VAR *get_random __P((SHELL_VAR *));
f73dda09 204
3185942a 205static SHELL_VAR *assign_lineno __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2 206static SHELL_VAR *get_lineno __P((SHELL_VAR *));
f73dda09 207
3185942a 208static SHELL_VAR *assign_subshell __P((SHELL_VAR *, char *, arrayind_t, char *));
b80f6443
JA
209static SHELL_VAR *get_subshell __P((SHELL_VAR *));
210
3185942a
JA
211static SHELL_VAR *get_bashpid __P((SHELL_VAR *));
212
7117c2d2
JA
213#if defined (HISTORY)
214static SHELL_VAR *get_histcmd __P((SHELL_VAR *));
215#endif
216
3185942a
JA
217#if defined (READLINE)
218static SHELL_VAR *get_comp_wordbreaks __P((SHELL_VAR *));
219static SHELL_VAR *assign_comp_wordbreaks __P((SHELL_VAR *, char *, arrayind_t, char *));
220#endif
221
7117c2d2 222#if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
3185942a 223static SHELL_VAR *assign_dirstack __P((SHELL_VAR *, char *, arrayind_t, char *));
7117c2d2 224static SHELL_VAR *get_dirstack __P((SHELL_VAR *));
7117c2d2
JA
225#endif
226
227#if defined (ARRAY_VARS)
228static SHELL_VAR *get_groupset __P((SHELL_VAR *));
3185942a
JA
229
230static SHELL_VAR *build_hashcmd __P((SHELL_VAR *));
231static SHELL_VAR *get_hashcmd __P((SHELL_VAR *));
232static SHELL_VAR *assign_hashcmd __P((SHELL_VAR *, char *, arrayind_t, char *));
0001803f 233# if defined (ALIAS)
3185942a
JA
234static SHELL_VAR *build_aliasvar __P((SHELL_VAR *));
235static SHELL_VAR *get_aliasvar __P((SHELL_VAR *));
236static SHELL_VAR *assign_aliasvar __P((SHELL_VAR *, char *, arrayind_t, char *));
0001803f 237# endif
7117c2d2
JA
238#endif
239
240static SHELL_VAR *get_funcname __P((SHELL_VAR *));
241static SHELL_VAR *init_funcname_var __P((void));
242
243static void initialize_dynamic_variables __P((void));
244
245static SHELL_VAR *hash_lookup __P((const char *, HASH_TABLE *));
f73dda09 246static SHELL_VAR *new_shell_variable __P((const char *));
7117c2d2 247static SHELL_VAR *make_new_variable __P((const char *, HASH_TABLE *));
95732b49 248static SHELL_VAR *bind_variable_internal __P((const char *, char *, HASH_TABLE *, int, int));
7117c2d2 249
3185942a 250static void dispose_variable_value __P((SHELL_VAR *));
7117c2d2
JA
251static void free_variable_hash_data __P((PTR_T));
252
253static VARLIST *vlist_alloc __P((int));
254static VARLIST *vlist_realloc __P((VARLIST *, int));
255static void vlist_add __P((VARLIST *, SHELL_VAR *, int));
256
257static void flatten __P((HASH_TABLE *, sh_var_map_func_t *, VARLIST *, int));
258
259static int qsort_var_comp __P((SHELL_VAR **, SHELL_VAR **));
f73dda09 260
7117c2d2
JA
261static SHELL_VAR **vapply __P((sh_var_map_func_t *));
262static SHELL_VAR **fapply __P((sh_var_map_func_t *));
f73dda09
JA
263
264static int visible_var __P((SHELL_VAR *));
f73dda09 265static int visible_and_exported __P((SHELL_VAR *));
89a92869 266static int export_environment_candidate __P((SHELL_VAR *));
7117c2d2
JA
267static int local_and_exported __P((SHELL_VAR *));
268static int variable_in_context __P((SHELL_VAR *));
f73dda09
JA
269#if defined (ARRAY_VARS)
270static int visible_array_vars __P((SHELL_VAR *));
271#endif
272
ac50fbac
CR
273static SHELL_VAR *find_nameref_at_context __P((SHELL_VAR *, VAR_CONTEXT *));
274static SHELL_VAR *find_variable_nameref_context __P((SHELL_VAR *, VAR_CONTEXT *, VAR_CONTEXT **));
275static SHELL_VAR *find_variable_last_nameref_context __P((SHELL_VAR *, VAR_CONTEXT *, VAR_CONTEXT **));
276
7117c2d2
JA
277static SHELL_VAR *bind_tempenv_variable __P((const char *, char *));
278static void push_temp_var __P((PTR_T));
279static void propagate_temp_var __P((PTR_T));
280static void dispose_temporary_env __P((sh_free_func_t *));
281
f73dda09 282static inline char *mk_env_string __P((const char *, const char *));
7117c2d2
JA
283static char **make_env_array_from_var_list __P((SHELL_VAR **));
284static char **make_var_export_array __P((VAR_CONTEXT *));
285static char **make_func_export_array __P((void));
286static void add_temp_array_to_env __P((char **, int, int));
f73dda09 287
7117c2d2
JA
288static int n_shell_variables __P((void));
289static int set_context __P((SHELL_VAR *));
726f6388 290
7117c2d2
JA
291static void push_func_var __P((PTR_T));
292static void push_exported_var __P((PTR_T));
726f6388 293
7117c2d2 294static inline int find_special_var __P((const char *));
726f6388 295
0628567a
JA
296static void
297create_variable_tables ()
298{
cce855bc 299 if (shell_variables == 0)
7117c2d2
JA
300 {
301 shell_variables = global_variables = new_var_context ((char *)NULL, 0);
302 shell_variables->scope = 0;
303 shell_variables->table = hash_create (0);
304 }
726f6388 305
cce855bc 306 if (shell_functions == 0)
7117c2d2 307 shell_functions = hash_create (0);
726f6388 308
b80f6443
JA
309#if defined (DEBUGGER)
310 if (shell_function_defs == 0)
311 shell_function_defs = hash_create (0);
312#endif
0628567a
JA
313}
314
315/* Initialize the shell variables from the current environment.
316 If PRIVMODE is nonzero, don't import functions from ENV or
317 parse $SHELLOPTS. */
318void
319initialize_shell_variables (env, privmode)
320 char **env;
321 int privmode;
322{
323 char *name, *string, *temp_string;
ac50fbac 324 int c, char_index, string_index, string_length, ro;
0628567a
JA
325 SHELL_VAR *temp_var;
326
327 create_variable_tables ();
b80f6443 328
ccc6cda3 329 for (string_index = 0; string = env[string_index++]; )
726f6388 330 {
726f6388 331 char_index = 0;
d166f048 332 name = string;
726f6388 333 while ((c = *string++) && c != '=')
d166f048
JA
334 ;
335 if (string[-1] == '=')
28ef6c31 336 char_index = string - name - 1;
726f6388 337
d166f048
JA
338 /* If there are weird things in the environment, like `=xxx' or a
339 string without an `=', just skip them. */
340 if (char_index == 0)
28ef6c31 341 continue;
d166f048
JA
342
343 /* ASSERT(name[char_index] == '=') */
726f6388 344 name[char_index] = '\0';
d166f048 345 /* Now, name = env variable name, string = env variable value, and
28ef6c31 346 char_index == strlen (name) */
726f6388 347
3185942a
JA
348 temp_var = (SHELL_VAR *)NULL;
349
f73dda09 350 /* If exported function, define it now. Don't import functions from
7117c2d2 351 the environment in privileged mode. */
bb70624e 352 if (privmode == 0 && read_but_dont_execute == 0 && STREQN ("() {", string, 4))
726f6388 353 {
d166f048 354 string_length = strlen (string);
f73dda09 355 temp_string = (char *)xmalloc (3 + string_length + char_index);
bb70624e 356
d166f048
JA
357 strcpy (temp_string, name);
358 temp_string[char_index] = ' ';
359 strcpy (temp_string + char_index + 1, string);
726f6388 360
ac50fbac
CR
361 if (posixly_correct == 0 || legal_identifier (name))
362 parse_and_execute (temp_string, name, SEVAL_NONINT|SEVAL_NOHIST);
726f6388 363
d166f048
JA
364 /* Ancient backwards compatibility. Old versions of bash exported
365 functions like name()=() {...} */
366 if (name[char_index - 1] == ')' && name[char_index - 2] == '(')
726f6388
JA
367 name[char_index - 2] = '\0';
368
ccc6cda3 369 if (temp_var = find_function (name))
726f6388 370 {
bb70624e 371 VSETATTR (temp_var, (att_exported|att_imported));
726f6388
JA
372 array_needs_making = 1;
373 }
374 else
ac50fbac
CR
375 {
376 if (temp_var = bind_variable (name, string, 0))
377 {
378 VSETATTR (temp_var, (att_exported | att_imported | att_invisible));
379 array_needs_making = 1;
380 }
381 last_command_exit_value = 1;
382 report_error (_("error importing function definition for `%s'"), name);
383 }
d166f048 384
bb70624e 385 /* ( */
d166f048 386 if (name[char_index - 1] == ')' && name[char_index - 2] == '\0')
bb70624e 387 name[char_index - 2] = '('; /* ) */
726f6388 388 }
ccc6cda3 389#if defined (ARRAY_VARS)
ac50fbac 390# if ARRAY_EXPORT
ccc6cda3 391 /* Array variables may not yet be exported. */
95732b49 392 else if (*string == '(' && string[1] == '[' && string[strlen (string) - 1] == ')')
ccc6cda3
JA
393 {
394 string_length = 1;
395 temp_string = extract_array_assignment_list (string, &string_length);
396 temp_var = assign_array_from_string (name, temp_string);
397 FREE (temp_string);
bb70624e 398 VSETATTR (temp_var, (att_exported | att_imported));
ccc6cda3
JA
399 array_needs_making = 1;
400 }
ac50fbac 401# endif /* ARRAY_EXPORT */
ccc6cda3 402#endif
89a92869 403#if 0
3185942a 404 else if (legal_identifier (name))
89a92869
CR
405#else
406 else
407#endif
726f6388 408 {
ac50fbac
CR
409 ro = 0;
410 if (posixly_correct && STREQ (name, "SHELLOPTS"))
411 {
412 temp_var = find_variable ("SHELLOPTS");
413 ro = temp_var && readonly_p (temp_var);
414 if (temp_var)
415 VUNSETATTR (temp_var, att_readonly);
416 }
95732b49 417 temp_var = bind_variable (name, string, 0);
495aee44
CR
418 if (temp_var)
419 {
420 if (legal_identifier (name))
421 VSETATTR (temp_var, (att_exported | att_imported));
422 else
423 VSETATTR (temp_var, (att_exported | att_imported | att_invisible));
ac50fbac
CR
424 if (ro)
425 VSETATTR (temp_var, att_readonly);
495aee44
CR
426 array_needs_making = 1;
427 }
726f6388 428 }
d166f048
JA
429
430 name[char_index] = '=';
bb70624e 431 /* temp_var can be NULL if it was an exported function with a syntax
28ef6c31 432 error (a different bug, but it still shouldn't dump core). */
bb70624e
JA
433 if (temp_var && function_p (temp_var) == 0) /* XXX not yet */
434 {
435 CACHE_IMPORTSTR (temp_var, name);
436 }
726f6388
JA
437 }
438
28ef6c31 439 set_pwd ();
b72432fd 440
ccc6cda3 441 /* Set up initial value of $_ */
95732b49 442 temp_var = set_if_not ("_", dollar_vars[0]);
ccc6cda3 443
726f6388 444 /* Remember this pid. */
f73dda09 445 dollar_dollar_pid = getpid ();
726f6388
JA
446
447 /* Now make our own defaults in case the vars that we think are
448 important are missing. */
449 temp_var = set_if_not ("PATH", DEFAULT_PATH_VALUE);
f73dda09
JA
450#if 0
451 set_auto_export (temp_var); /* XXX */
452#endif
726f6388
JA
453
454 temp_var = set_if_not ("TERM", "dumb");
f73dda09
JA
455#if 0
456 set_auto_export (temp_var); /* XXX */
457#endif
726f6388 458
3185942a 459#if defined (__QNX__)
d166f048
JA
460 /* set node id -- don't import it from the environment */
461 {
462 char node_name[22];
3185942a 463# if defined (__QNXNTO__)
95732b49
JA
464 netmgr_ndtostr(ND2S_LOCAL_STR, ND_LOCAL_NODE, node_name, sizeof(node_name));
465# else
d166f048 466 qnx_nidtostr (getnid (), node_name, sizeof (node_name));
95732b49
JA
467# endif
468 temp_var = bind_variable ("NODE", node_name, 0);
d166f048
JA
469 set_auto_export (temp_var);
470 }
471#endif
472
ccc6cda3 473 /* set up the prompts. */
726f6388
JA
474 if (interactive_shell)
475 {
b72432fd 476#if defined (PROMPT_STRING_DECODE)
726f6388 477 set_if_not ("PS1", primary_prompt);
b72432fd
JA
478#else
479 if (current_user.uid == -1)
480 get_current_user_info ();
481 set_if_not ("PS1", current_user.euid == 0 ? "# " : primary_prompt);
482#endif
726f6388
JA
483 set_if_not ("PS2", secondary_prompt);
484 }
485 set_if_not ("PS4", "+ ");
486
ccc6cda3 487 /* Don't allow IFS to be imported from the environment. */
95732b49 488 temp_var = bind_variable ("IFS", " \t\n", 0);
7117c2d2 489 setifs (temp_var);
726f6388
JA
490
491 /* Magic machine types. Pretty convenient. */
f73dda09 492 set_machine_vars ();
726f6388 493
ccc6cda3
JA
494 /* Default MAILCHECK for interactive shells. Defer the creation of a
495 default MAILPATH until the startup files are read, because MAIL
f73dda09 496 names a mail file if MAILPATH is not set, and we should provide a
ccc6cda3 497 default only if neither is set. */
726f6388 498 if (interactive_shell)
95732b49
JA
499 {
500 temp_var = set_if_not ("MAILCHECK", posixly_correct ? "600" : "60");
501 VSETATTR (temp_var, att_integer);
502 }
726f6388
JA
503
504 /* Do some things with shell level. */
d166f048 505 initialize_shell_level ();
726f6388 506
b72432fd 507 set_ppid ();
726f6388 508
726f6388 509 /* Initialize the `getopts' stuff. */
95732b49
JA
510 temp_var = bind_variable ("OPTIND", "1", 0);
511 VSETATTR (temp_var, att_integer);
d166f048 512 getopts_reset (0);
95732b49 513 bind_variable ("OPTERR", "1", 0);
d166f048
JA
514 sh_opterr = 1;
515
0628567a 516 if (login_shell == 1 && posixly_correct == 0)
d166f048 517 set_home_var ();
726f6388
JA
518
519 /* Get the full pathname to THIS shell, and set the BASH variable
520 to it. */
d166f048 521 name = get_bash_name ();
95732b49 522 temp_var = bind_variable ("BASH", name, 0);
ccc6cda3
JA
523 free (name);
524
525 /* Make the exported environment variable SHELL be the user's login
526 shell. Note that the `tset' command looks at this variable
527 to determine what style of commands to output; if it ends in "csh",
528 then C-shell commands are output, else Bourne shell commands. */
d166f048 529 set_shell_var ();
726f6388
JA
530
531 /* Make a variable called BASH_VERSION which contains the version info. */
95732b49 532 bind_variable ("BASH_VERSION", shell_version_string (), 0);
ccc6cda3
JA
533#if defined (ARRAY_VARS)
534 make_vers_array ();
535#endif
726f6388 536
b80f6443 537 if (command_execution_string)
95732b49 538 bind_variable ("BASH_EXECUTION_STRING", command_execution_string, 0);
b80f6443 539
726f6388
JA
540 /* Find out if we're supposed to be in Posix.2 mode via an
541 environment variable. */
542 temp_var = find_variable ("POSIXLY_CORRECT");
543 if (!temp_var)
544 temp_var = find_variable ("POSIX_PEDANTIC");
545 if (temp_var && imported_p (temp_var))
546 sv_strict_posix (temp_var->name);
547
548#if defined (HISTORY)
549 /* Set history variables to defaults, and then do whatever we would
550 do if the variable had just been set. Do this only in the case
551 that we are remembering commands on the history list. */
552 if (remember_on_history)
553 {
7117c2d2 554 name = bash_tilde_expand (posixly_correct ? "~/.sh_history" : "~/.bash_history", 0);
726f6388
JA
555
556 set_if_not ("HISTFILE", name);
557 free (name);
726f6388
JA
558 }
559#endif /* HISTORY */
560
561 /* Seed the random number generator. */
3185942a 562 seedrand ();
726f6388
JA
563
564 /* Handle some "special" variables that we may have inherited from a
565 parent shell. */
d166f048
JA
566 if (interactive_shell)
567 {
568 temp_var = find_variable ("IGNOREEOF");
569 if (!temp_var)
570 temp_var = find_variable ("ignoreeof");
571 if (temp_var && imported_p (temp_var))
572 sv_ignoreeof (temp_var->name);
573 }
726f6388
JA
574
575#if defined (HISTORY)
576 if (interactive_shell && remember_on_history)
577 {
ccc6cda3
JA
578 sv_history_control ("HISTCONTROL");
579 sv_histignore ("HISTIGNORE");
3185942a 580 sv_histtimefmt ("HISTTIMEFORMAT");
726f6388
JA
581 }
582#endif /* HISTORY */
583
95732b49
JA
584#if defined (READLINE) && defined (STRICT_POSIX)
585 /* POSIXLY_CORRECT will only be 1 here if the shell was compiled
586 -DSTRICT_POSIX */
587 if (interactive_shell && posixly_correct && no_line_editing == 0)
588 rl_prefer_env_winsize = 1;
589#endif /* READLINE && STRICT_POSIX */
590
f73dda09
JA
591 /*
592 * 24 October 2001
593 *
594 * I'm tired of the arguing and bug reports. Bash now leaves SSH_CLIENT
595 * and SSH2_CLIENT alone. I'm going to rely on the shell_level check in
596 * isnetconn() to avoid running the startup files more often than wanted.
597 * That will, of course, only work if the user's login shell is bash, so
598 * I've made that behavior conditional on SSH_SOURCE_BASHRC being defined
599 * in config-top.h.
600 */
601#if 0
bb70624e 602 temp_var = find_variable ("SSH_CLIENT");
28ef6c31
JA
603 if (temp_var && imported_p (temp_var))
604 {
605 VUNSETATTR (temp_var, att_exported);
606 array_needs_making = 1;
607 }
608 temp_var = find_variable ("SSH2_CLIENT");
bb70624e
JA
609 if (temp_var && imported_p (temp_var))
610 {
611 VUNSETATTR (temp_var, att_exported);
612 array_needs_making = 1;
613 }
f73dda09 614#endif
bb70624e 615
ccc6cda3
JA
616 /* Get the user's real and effective user ids. */
617 uidset ();
618
495aee44
CR
619 temp_var = find_variable ("BASH_XTRACEFD");
620 if (temp_var && imported_p (temp_var))
621 sv_xtracefd (temp_var->name);
622
726f6388
JA
623 /* Initialize the dynamic variables, and seed their values. */
624 initialize_dynamic_variables ();
726f6388
JA
625}
626
7117c2d2
JA
627/* **************************************************************** */
628/* */
629/* Setting values for special shell variables */
630/* */
631/* **************************************************************** */
632
f73dda09
JA
633static void
634set_machine_vars ()
635{
636 SHELL_VAR *temp_var;
637
638 temp_var = set_if_not ("HOSTTYPE", HOSTTYPE);
639 temp_var = set_if_not ("OSTYPE", OSTYPE);
640 temp_var = set_if_not ("MACHTYPE", MACHTYPE);
641
642 temp_var = set_if_not ("HOSTNAME", current_host_name);
643}
644
d166f048
JA
645/* Set $HOME to the information in the password file if we didn't get
646 it from the environment. */
b72432fd
JA
647
648/* This function is not static so the tilde and readline libraries can
649 use it. */
650char *
28ef6c31 651sh_get_home_dir ()
b72432fd
JA
652{
653 if (current_user.home_dir == 0)
654 get_current_user_info ();
655 return current_user.home_dir;
656}
657
d166f048
JA
658static void
659set_home_var ()
660{
661 SHELL_VAR *temp_var;
662
663 temp_var = find_variable ("HOME");
664 if (temp_var == 0)
95732b49 665 temp_var = bind_variable ("HOME", sh_get_home_dir (), 0);
f73dda09 666#if 0
bb70624e 667 VSETATTR (temp_var, att_exported);
f73dda09 668#endif
d166f048
JA
669}
670
671/* Set $SHELL to the user's login shell if it is not already set. Call
672 get_current_user_info if we haven't already fetched the shell. */
673static void
674set_shell_var ()
675{
676 SHELL_VAR *temp_var;
677
678 temp_var = find_variable ("SHELL");
679 if (temp_var == 0)
680 {
681 if (current_user.shell == 0)
682 get_current_user_info ();
95732b49 683 temp_var = bind_variable ("SHELL", current_user.shell, 0);
d166f048 684 }
f73dda09 685#if 0
bb70624e 686 VSETATTR (temp_var, att_exported);
f73dda09 687#endif
d166f048
JA
688}
689
690static char *
691get_bash_name ()
692{
693 char *name;
694
28ef6c31 695 if ((login_shell == 1) && RELPATH(shell_name))
d166f048
JA
696 {
697 if (current_user.shell == 0)
28ef6c31 698 get_current_user_info ();
d166f048
JA
699 name = savestring (current_user.shell);
700 }
28ef6c31 701 else if (ABSPATH(shell_name))
d166f048
JA
702 name = savestring (shell_name);
703 else if (shell_name[0] == '.' && shell_name[1] == '/')
704 {
705 /* Fast path for common case. */
706 char *cdir;
707 int len;
708
709 cdir = get_string_value ("PWD");
28ef6c31
JA
710 if (cdir)
711 {
712 len = strlen (cdir);
f73dda09 713 name = (char *)xmalloc (len + strlen (shell_name) + 1);
28ef6c31
JA
714 strcpy (name, cdir);
715 strcpy (name + len, shell_name + 1);
716 }
717 else
718 name = savestring (shell_name);
d166f048
JA
719 }
720 else
721 {
722 char *tname;
723 int s;
724
725 tname = find_user_command (shell_name);
726
727 if (tname == 0)
728 {
729 /* Try the current directory. If there is not an executable
730 there, just punt and use the login shell. */
731 s = file_status (shell_name);
732 if (s & FS_EXECABLE)
733 {
734 tname = make_absolute (shell_name, get_string_value ("PWD"));
735 if (*shell_name == '.')
736 {
28ef6c31 737 name = sh_canonpath (tname, PATH_CHECKDOTDOT|PATH_CHECKEXISTS);
d166f048
JA
738 if (name == 0)
739 name = tname;
740 else
741 free (tname);
742 }
743 else
744 name = tname;
745 }
746 else
747 {
748 if (current_user.shell == 0)
749 get_current_user_info ();
750 name = savestring (current_user.shell);
751 }
752 }
753 else
754 {
755 name = full_pathname (tname);
756 free (tname);
757 }
758 }
759
760 return (name);
761}
762
726f6388
JA
763void
764adjust_shell_level (change)
765 int change;
766{
d166f048 767 char new_level[5], *old_SHLVL;
7117c2d2 768 intmax_t old_level;
d166f048 769 SHELL_VAR *temp_var;
726f6388
JA
770
771 old_SHLVL = get_string_value ("SHLVL");
f73dda09
JA
772 if (old_SHLVL == 0 || *old_SHLVL == '\0' || legal_number (old_SHLVL, &old_level) == 0)
773 old_level = 0;
726f6388
JA
774
775 shell_level = old_level + change;
776 if (shell_level < 0)
777 shell_level = 0;
d166f048
JA
778 else if (shell_level > 1000)
779 {
b80f6443 780 internal_warning (_("shell level (%d) too high, resetting to 1"), shell_level);
d166f048
JA
781 shell_level = 1;
782 }
783
784 /* We don't need the full generality of itos here. */
785 if (shell_level < 10)
786 {
787 new_level[0] = shell_level + '0';
788 new_level[1] = '\0';
789 }
790 else if (shell_level < 100)
791 {
792 new_level[0] = (shell_level / 10) + '0';
793 new_level[1] = (shell_level % 10) + '0';
794 new_level[2] = '\0';
795 }
796 else if (shell_level < 1000)
797 {
798 new_level[0] = (shell_level / 100) + '0';
799 old_level = shell_level % 100;
800 new_level[1] = (old_level / 10) + '0';
801 new_level[2] = (old_level % 10) + '0';
802 new_level[3] = '\0';
803 }
804
95732b49 805 temp_var = bind_variable ("SHLVL", new_level, 0);
d166f048
JA
806 set_auto_export (temp_var);
807}
808
809static void
810initialize_shell_level ()
811{
d166f048 812 adjust_shell_level (1);
726f6388
JA
813}
814
28ef6c31
JA
815/* If we got PWD from the environment, update our idea of the current
816 working directory. In any case, make sure that PWD exists before
817 checking it. It is possible for getcwd () to fail on shell startup,
818 and in that case, PWD would be undefined. If this is an interactive
819 login shell, see if $HOME is the current working directory, and if
820 that's not the same string as $PWD, set PWD=$HOME. */
821
822void
823set_pwd ()
824{
825 SHELL_VAR *temp_var, *home_var;
826 char *temp_string, *home_string;
827
828 home_var = find_variable ("HOME");
829 home_string = home_var ? value_cell (home_var) : (char *)NULL;
830
831 temp_var = find_variable ("PWD");
832 if (temp_var && imported_p (temp_var) &&
833 (temp_string = value_cell (temp_var)) &&
834 same_file (temp_string, ".", (struct stat *)NULL, (struct stat *)NULL))
835 set_working_directory (temp_string);
836 else if (home_string && interactive_shell && login_shell &&
837 same_file (home_string, ".", (struct stat *)NULL, (struct stat *)NULL))
838 {
839 set_working_directory (home_string);
95732b49 840 temp_var = bind_variable ("PWD", home_string, 0);
28ef6c31
JA
841 set_auto_export (temp_var);
842 }
843 else
844 {
845 temp_string = get_working_directory ("shell-init");
846 if (temp_string)
847 {
95732b49 848 temp_var = bind_variable ("PWD", temp_string, 0);
28ef6c31
JA
849 set_auto_export (temp_var);
850 free (temp_string);
851 }
852 }
853
854 /* According to the Single Unix Specification, v2, $OLDPWD is an
855 `environment variable' and therefore should be auto-exported.
856 Make a dummy invisible variable for OLDPWD, and mark it as exported. */
95732b49 857 temp_var = bind_variable ("OLDPWD", (char *)NULL, 0);
28ef6c31
JA
858 VSETATTR (temp_var, (att_exported | att_invisible));
859}
860
b72432fd
JA
861/* Make a variable $PPID, which holds the pid of the shell's parent. */
862void
863set_ppid ()
864{
f73dda09 865 char namebuf[INT_STRLEN_BOUND(pid_t) + 1], *name;
b72432fd
JA
866 SHELL_VAR *temp_var;
867
f73dda09 868 name = inttostr (getppid (), namebuf, sizeof(namebuf));
b72432fd
JA
869 temp_var = find_variable ("PPID");
870 if (temp_var)
bb70624e 871 VUNSETATTR (temp_var, (att_readonly | att_exported));
95732b49 872 temp_var = bind_variable ("PPID", name, 0);
bb70624e 873 VSETATTR (temp_var, (att_readonly | att_integer));
b72432fd
JA
874}
875
ccc6cda3
JA
876static void
877uidset ()
726f6388 878{
f73dda09 879 char buff[INT_STRLEN_BOUND(uid_t) + 1], *b;
ccc6cda3
JA
880 register SHELL_VAR *v;
881
b72432fd 882 b = inttostr (current_user.uid, buff, sizeof (buff));
ccc6cda3 883 v = find_variable ("UID");
28ef6c31
JA
884 if (v == 0)
885 {
95732b49 886 v = bind_variable ("UID", b, 0);
28ef6c31
JA
887 VSETATTR (v, (att_readonly | att_integer));
888 }
726f6388 889
ccc6cda3 890 if (current_user.euid != current_user.uid)
b72432fd 891 b = inttostr (current_user.euid, buff, sizeof (buff));
726f6388 892
ccc6cda3 893 v = find_variable ("EUID");
28ef6c31
JA
894 if (v == 0)
895 {
95732b49 896 v = bind_variable ("EUID", b, 0);
28ef6c31
JA
897 VSETATTR (v, (att_readonly | att_integer));
898 }
ccc6cda3
JA
899}
900
901#if defined (ARRAY_VARS)
902static void
903make_vers_array ()
904{
905 SHELL_VAR *vv;
906 ARRAY *av;
f73dda09 907 char *s, d[32], b[INT_STRLEN_BOUND(int) + 1];
ccc6cda3 908
7117c2d2 909 unbind_variable ("BASH_VERSINFO");
ccc6cda3
JA
910
911 vv = make_new_array_variable ("BASH_VERSINFO");
912 av = array_cell (vv);
913 strcpy (d, dist_version);
0001803f 914 s = strchr (d, '.');
ccc6cda3
JA
915 if (s)
916 *s++ = '\0';
7117c2d2
JA
917 array_insert (av, 0, d);
918 array_insert (av, 1, s);
f73dda09 919 s = inttostr (patch_level, b, sizeof (b));
7117c2d2 920 array_insert (av, 2, s);
f73dda09 921 s = inttostr (build_version, b, sizeof (b));
7117c2d2
JA
922 array_insert (av, 3, s);
923 array_insert (av, 4, release_status);
924 array_insert (av, 5, MACHTYPE);
ccc6cda3 925
bb70624e 926 VSETATTR (vv, att_readonly);
ccc6cda3
JA
927}
928#endif /* ARRAY_VARS */
929
930/* Set the environment variables $LINES and $COLUMNS in response to
931 a window size change. */
932void
28ef6c31 933sh_set_lines_and_columns (lines, cols)
ccc6cda3
JA
934 int lines, cols;
935{
f73dda09 936 char val[INT_STRLEN_BOUND(int) + 1], *v;
ccc6cda3 937
0628567a 938#if defined (READLINE)
95732b49
JA
939 /* If we are currently assigning to LINES or COLUMNS, don't do anything. */
940 if (winsize_assignment)
941 return;
0628567a 942#endif
95732b49 943
b72432fd 944 v = inttostr (lines, val, sizeof (val));
95732b49 945 bind_variable ("LINES", v, 0);
ccc6cda3 946
b72432fd 947 v = inttostr (cols, val, sizeof (val));
95732b49 948 bind_variable ("COLUMNS", v, 0);
726f6388
JA
949}
950
7117c2d2
JA
951/* **************************************************************** */
952/* */
953/* Printing variables and values */
954/* */
955/* **************************************************************** */
726f6388 956
28ef6c31
JA
957/* Print LIST (a list of shell variables) to stdout in such a way that
958 they can be read back in. */
726f6388
JA
959void
960print_var_list (list)
961 register SHELL_VAR **list;
962{
963 register int i;
964 register SHELL_VAR *var;
965
966 for (i = 0; list && (var = list[i]); i++)
7117c2d2 967 if (invisible_p (var) == 0)
726f6388
JA
968 print_assignment (var);
969}
970
28ef6c31
JA
971/* Print LIST (a list of shell functions) to stdout in such a way that
972 they can be read back in. */
973void
974print_func_list (list)
975 register SHELL_VAR **list;
976{
977 register int i;
978 register SHELL_VAR *var;
979
980 for (i = 0; list && (var = list[i]); i++)
981 {
982 printf ("%s ", var->name);
983 print_var_function (var);
984 printf ("\n");
985 }
986}
987
726f6388
JA
988/* Print the value of a single SHELL_VAR. No newline is
989 output, but the variable is printed in such a way that
990 it can be read back in. */
991void
992print_assignment (var)
993 SHELL_VAR *var;
994{
7117c2d2
JA
995 if (var_isset (var) == 0)
996 return;
997
998 if (function_p (var))
726f6388 999 {
28ef6c31 1000 printf ("%s", var->name);
726f6388
JA
1001 print_var_function (var);
1002 printf ("\n");
1003 }
ccc6cda3 1004#if defined (ARRAY_VARS)
7117c2d2 1005 else if (array_p (var))
ccc6cda3 1006 print_array_assignment (var, 0);
3185942a
JA
1007 else if (assoc_p (var))
1008 print_assoc_assignment (var, 0);
ccc6cda3 1009#endif /* ARRAY_VARS */
7117c2d2 1010 else
726f6388
JA
1011 {
1012 printf ("%s=", var->name);
ccc6cda3 1013 print_var_value (var, 1);
726f6388
JA
1014 printf ("\n");
1015 }
1016}
1017
1018/* Print the value cell of VAR, a shell variable. Do not print
ccc6cda3
JA
1019 the name, nor leading/trailing newline. If QUOTE is non-zero,
1020 and the value contains shell metacharacters, quote the value
1021 in such a way that it can be read back in. */
726f6388 1022void
ccc6cda3 1023print_var_value (var, quote)
726f6388 1024 SHELL_VAR *var;
ccc6cda3 1025 int quote;
726f6388 1026{
ccc6cda3
JA
1027 char *t;
1028
7117c2d2
JA
1029 if (var_isset (var) == 0)
1030 return;
1031
1032 if (quote && posixly_correct == 0 && ansic_shouldquote (value_cell (var)))
ccc6cda3 1033 {
7117c2d2
JA
1034 t = ansic_quote (value_cell (var), 0, (int *)0);
1035 printf ("%s", t);
1036 free (t);
1037 }
1038 else if (quote && sh_contains_shell_metas (value_cell (var)))
1039 {
1040 t = sh_single_quote (value_cell (var));
1041 printf ("%s", t);
1042 free (t);
ccc6cda3 1043 }
7117c2d2
JA
1044 else
1045 printf ("%s", value_cell (var));
726f6388
JA
1046}
1047
1048/* Print the function cell of VAR, a shell variable. Do not
1049 print the name, nor leading/trailing newline. */
1050void
1051print_var_function (var)
1052 SHELL_VAR *var;
1053{
3185942a
JA
1054 char *x;
1055
7117c2d2 1056 if (function_p (var) && var_isset (var))
3185942a
JA
1057 {
1058 x = named_function_string ((char *)NULL, function_cell(var), FUNC_MULTILINE|FUNC_EXTERNAL);
1059 printf ("%s", x);
1060 }
726f6388
JA
1061}
1062
1063/* **************************************************************** */
ccc6cda3 1064/* */
7117c2d2 1065/* Dynamic Variables */
ccc6cda3 1066/* */
726f6388
JA
1067/* **************************************************************** */
1068
1069/* DYNAMIC VARIABLES
ccc6cda3 1070
726f6388
JA
1071 These are variables whose values are generated anew each time they are
1072 referenced. These are implemented using a pair of function pointers
7117c2d2
JA
1073 in the struct variable: assign_func, which is called from bind_variable
1074 and, if arrays are compiled into the shell, some of the functions in
1075 arrayfunc.c, and dynamic_value, which is called from find_variable.
1076
1077 assign_func is called from bind_variable_internal, if
1078 bind_variable_internal discovers that the variable being assigned to
1079 has such a function. The function is called as
1080 SHELL_VAR *temp = (*(entry->assign_func)) (entry, value, ind)
726f6388 1081 and the (SHELL_VAR *)temp is returned as the value of bind_variable. It
7117c2d2
JA
1082 is usually ENTRY (self). IND is an index for an array variable, and
1083 unused otherwise.
ccc6cda3 1084
7117c2d2
JA
1085 dynamic_value is called from find_variable_internal to return a `new'
1086 value for the specified dynamic varible. If this function is NULL,
1087 the variable is treated as a `normal' shell variable. If it is not,
1088 however, then this function is called like this:
1089 tempvar = (*(var->dynamic_value)) (var);
ccc6cda3 1090
726f6388
JA
1091 Sometimes `tempvar' will replace the value of `var'. Other times, the
1092 shell will simply use the string value. Pretty object-oriented, huh?
ccc6cda3 1093
726f6388
JA
1094 Be warned, though: if you `unset' a special variable, it loses its
1095 special meaning, even if you subsequently set it.
ccc6cda3 1096
726f6388 1097 The special assignment code would probably have been better put in
7117c2d2 1098 subst.c: do_assignment_internal, in the same style as
726f6388
JA
1099 stupidly_hack_special_variables, but I wanted the changes as
1100 localized as possible. */
1101
f73dda09
JA
1102#define INIT_DYNAMIC_VAR(var, val, gfunc, afunc) \
1103 do \
1104 { \
95732b49 1105 v = bind_variable (var, (val), 0); \
f73dda09
JA
1106 v->dynamic_value = gfunc; \
1107 v->assign_func = afunc; \
1108 } \
1109 while (0)
1110
1111#define INIT_DYNAMIC_ARRAY_VAR(var, gfunc, afunc) \
1112 do \
1113 { \
1114 v = make_new_array_variable (var); \
1115 v->dynamic_value = gfunc; \
1116 v->assign_func = afunc; \
1117 } \
1118 while (0)
1119
3185942a
JA
1120#define INIT_DYNAMIC_ASSOC_VAR(var, gfunc, afunc) \
1121 do \
1122 { \
1123 v = make_new_assoc_variable (var); \
1124 v->dynamic_value = gfunc; \
1125 v->assign_func = afunc; \
1126 } \
1127 while (0)
1128
bb70624e 1129static SHELL_VAR *
3185942a 1130null_assign (self, value, unused, key)
bb70624e
JA
1131 SHELL_VAR *self;
1132 char *value;
7117c2d2 1133 arrayind_t unused;
3185942a 1134 char *key;
bb70624e
JA
1135{
1136 return (self);
1137}
1138
1139#if defined (ARRAY_VARS)
1140static SHELL_VAR *
3185942a 1141null_array_assign (self, value, ind, key)
bb70624e 1142 SHELL_VAR *self;
bb70624e 1143 char *value;
7117c2d2 1144 arrayind_t ind;
3185942a 1145 char *key;
bb70624e
JA
1146{
1147 return (self);
1148}
1149#endif
1150
b80f6443
JA
1151/* Degenerate `dynamic_value' function; just returns what's passed without
1152 manipulation. */
1153static SHELL_VAR *
1154get_self (self)
1155 SHELL_VAR *self;
1156{
1157 return (self);
1158}
1159
1160#if defined (ARRAY_VARS)
ac50fbac 1161/* A generic dynamic array variable initializer. Initialize array variable
b80f6443
JA
1162 NAME with dynamic value function GETFUNC and assignment function SETFUNC. */
1163static SHELL_VAR *
1164init_dynamic_array_var (name, getfunc, setfunc, attrs)
1165 char *name;
1166 sh_var_value_func_t *getfunc;
1167 sh_var_assign_func_t *setfunc;
1168 int attrs;
1169{
1170 SHELL_VAR *v;
1171
1172 v = find_variable (name);
1173 if (v)
1174 return (v);
1175 INIT_DYNAMIC_ARRAY_VAR (name, getfunc, setfunc);
1176 if (attrs)
1177 VSETATTR (v, attrs);
1178 return v;
1179}
b80f6443 1180
3185942a
JA
1181static SHELL_VAR *
1182init_dynamic_assoc_var (name, getfunc, setfunc, attrs)
1183 char *name;
1184 sh_var_value_func_t *getfunc;
1185 sh_var_assign_func_t *setfunc;
1186 int attrs;
1187{
1188 SHELL_VAR *v;
1189
1190 v = find_variable (name);
1191 if (v)
1192 return (v);
1193 INIT_DYNAMIC_ASSOC_VAR (name, getfunc, setfunc);
1194 if (attrs)
1195 VSETATTR (v, attrs);
1196 return v;
1197}
1198#endif
b80f6443 1199
726f6388
JA
1200/* The value of $SECONDS. This is the number of seconds since shell
1201 invocation, or, the number of seconds since the last assignment + the
1202 value of the last assignment. */
7117c2d2 1203static intmax_t seconds_value_assigned;
726f6388
JA
1204
1205static SHELL_VAR *
3185942a 1206assign_seconds (self, value, unused, key)
726f6388
JA
1207 SHELL_VAR *self;
1208 char *value;
7117c2d2 1209 arrayind_t unused;
3185942a 1210 char *key;
726f6388 1211{
f73dda09
JA
1212 if (legal_number (value, &seconds_value_assigned) == 0)
1213 seconds_value_assigned = 0;
726f6388
JA
1214 shell_start_time = NOW;
1215 return (self);
1216}
1217
1218static SHELL_VAR *
1219get_seconds (var)
1220 SHELL_VAR *var;
1221{
1222 time_t time_since_start;
1223 char *p;
1224
1225 time_since_start = NOW - shell_start_time;
f73dda09 1226 p = itos(seconds_value_assigned + time_since_start);
726f6388 1227
7117c2d2 1228 FREE (value_cell (var));
726f6388 1229
bb70624e 1230 VSETATTR (var, att_integer);
7117c2d2 1231 var_setvalue (var, p);
726f6388
JA
1232 return (var);
1233}
1234
f73dda09
JA
1235static SHELL_VAR *
1236init_seconds_var ()
1237{
1238 SHELL_VAR *v;
1239
1240 v = find_variable ("SECONDS");
1241 if (v)
1242 {
1243 if (legal_number (value_cell(v), &seconds_value_assigned) == 0)
1244 seconds_value_assigned = 0;
1245 }
7117c2d2 1246 INIT_DYNAMIC_VAR ("SECONDS", (v ? value_cell (v) : (char *)NULL), get_seconds, assign_seconds);
f73dda09
JA
1247 return v;
1248}
1249
726f6388
JA
1250/* The random number seed. You can change this by setting RANDOM. */
1251static unsigned long rseed = 1;
f73dda09 1252static int last_random_value;
95732b49 1253static int seeded_subshell = 0;
726f6388 1254
f73dda09 1255/* A linear congruential random number generator based on the example
7117c2d2 1256 one in the ANSI C standard. This one isn't very good, but a more
f73dda09 1257 complicated one is overkill. */
726f6388
JA
1258
1259/* Returns a pseudo-random number between 0 and 32767. */
1260static int
1261brand ()
1262{
3185942a
JA
1263 /* From "Random number generators: good ones are hard to find",
1264 Park and Miller, Communications of the ACM, vol. 31, no. 10,
1265 October 1988, p. 1195. filtered through FreeBSD */
1266 long h, l;
1267
495aee44 1268 /* Can't seed with 0. */
3185942a 1269 if (rseed == 0)
495aee44 1270 rseed = 123459876;
3185942a
JA
1271 h = rseed / 127773;
1272 l = rseed % 127773;
1273 rseed = 16807 * l - 2836 * h;
1274#if 0
1275 if (rseed < 0)
1276 rseed += 0x7fffffff;
1277#endif
1278 return ((unsigned int)(rseed & 32767)); /* was % 32768 */
726f6388
JA
1279}
1280
1281/* Set the random number generator seed to SEED. */
1282static void
1283sbrand (seed)
f73dda09 1284 unsigned long seed;
726f6388
JA
1285{
1286 rseed = seed;
e8ce775d 1287 last_random_value = 0;
726f6388
JA
1288}
1289
3185942a
JA
1290static void
1291seedrand ()
1292{
1293 struct timeval tv;
1294
1295 gettimeofday (&tv, NULL);
1296 sbrand (tv.tv_sec ^ tv.tv_usec ^ getpid ());
1297}
1298
726f6388 1299static SHELL_VAR *
3185942a 1300assign_random (self, value, unused, key)
726f6388
JA
1301 SHELL_VAR *self;
1302 char *value;
7117c2d2 1303 arrayind_t unused;
3185942a 1304 char *key;
726f6388 1305{
f73dda09 1306 sbrand (strtoul (value, (char **)NULL, 10));
95732b49 1307 if (subshell_environment)
3185942a 1308 seeded_subshell = getpid ();
726f6388
JA
1309 return (self);
1310}
1311
28ef6c31
JA
1312int
1313get_random_number ()
726f6388 1314{
3185942a 1315 int rv, pid;
726f6388 1316
ccc6cda3 1317 /* Reset for command and process substitution. */
3185942a
JA
1318 pid = getpid ();
1319 if (subshell_environment && seeded_subshell != pid)
95732b49 1320 {
3185942a
JA
1321 seedrand ();
1322 seeded_subshell = pid;
95732b49 1323 }
ccc6cda3
JA
1324
1325 do
1326 rv = brand ();
f73dda09 1327 while (rv == last_random_value);
28ef6c31
JA
1328 return rv;
1329}
ccc6cda3 1330
28ef6c31
JA
1331static SHELL_VAR *
1332get_random (var)
1333 SHELL_VAR *var;
1334{
1335 int rv;
1336 char *p;
1337
1338 rv = get_random_number ();
ccc6cda3 1339 last_random_value = rv;
f73dda09 1340 p = itos (rv);
726f6388 1341
7117c2d2 1342 FREE (value_cell (var));
726f6388 1343
bb70624e 1344 VSETATTR (var, att_integer);
7117c2d2 1345 var_setvalue (var, p);
726f6388
JA
1346 return (var);
1347}
1348
7117c2d2 1349static SHELL_VAR *
3185942a 1350assign_lineno (var, value, unused, key)
7117c2d2
JA
1351 SHELL_VAR *var;
1352 char *value;
1353 arrayind_t unused;
3185942a 1354 char *key;
7117c2d2
JA
1355{
1356 intmax_t new_value;
1357
1358 if (value == 0 || *value == '\0' || legal_number (value, &new_value) == 0)
1359 new_value = 0;
495aee44 1360 line_number = line_number_base = new_value;
7117c2d2
JA
1361 return var;
1362}
1363
726f6388
JA
1364/* Function which returns the current line number. */
1365static SHELL_VAR *
1366get_lineno (var)
1367 SHELL_VAR *var;
1368{
1369 char *p;
ccc6cda3 1370 int ln;
726f6388 1371
ccc6cda3
JA
1372 ln = executing_line_number ();
1373 p = itos (ln);
7117c2d2
JA
1374 FREE (value_cell (var));
1375 var_setvalue (var, p);
726f6388
JA
1376 return (var);
1377}
1378
b80f6443 1379static SHELL_VAR *
3185942a 1380assign_subshell (var, value, unused, key)
b80f6443
JA
1381 SHELL_VAR *var;
1382 char *value;
1383 arrayind_t unused;
3185942a 1384 char *key;
b80f6443
JA
1385{
1386 intmax_t new_value;
1387
1388 if (value == 0 || *value == '\0' || legal_number (value, &new_value) == 0)
1389 new_value = 0;
1390 subshell_level = new_value;
1391 return var;
1392}
1393
1394static SHELL_VAR *
1395get_subshell (var)
1396 SHELL_VAR *var;
1397{
1398 char *p;
1399
1400 p = itos (subshell_level);
1401 FREE (value_cell (var));
1402 var_setvalue (var, p);
1403 return (var);
1404}
1405
3185942a
JA
1406static SHELL_VAR *
1407get_bashpid (var)
1408 SHELL_VAR *var;
1409{
1410 int pid;
1411 char *p;
1412
1413 pid = getpid ();
1414 p = itos (pid);
1415
1416 FREE (value_cell (var));
1417 VSETATTR (var, att_integer|att_readonly);
1418 var_setvalue (var, p);
1419 return (var);
1420}
1421
b80f6443
JA
1422static SHELL_VAR *
1423get_bash_command (var)
1424 SHELL_VAR *var;
1425{
1426 char *p;
1427
95732b49
JA
1428 if (the_printed_command_except_trap)
1429 p = savestring (the_printed_command_except_trap);
1430 else
1431 {
1432 p = (char *)xmalloc (1);
1433 p[0] = '\0';
1434 }
b80f6443
JA
1435 FREE (value_cell (var));
1436 var_setvalue (var, p);
1437 return (var);
1438}
1439
726f6388
JA
1440#if defined (HISTORY)
1441static SHELL_VAR *
1442get_histcmd (var)
1443 SHELL_VAR *var;
1444{
1445 char *p;
1446
1447 p = itos (history_number ());
7117c2d2
JA
1448 FREE (value_cell (var));
1449 var_setvalue (var, p);
726f6388
JA
1450 return (var);
1451}
1452#endif
1453
b80f6443
JA
1454#if defined (READLINE)
1455/* When this function returns, VAR->value points to malloced memory. */
1456static SHELL_VAR *
1457get_comp_wordbreaks (var)
1458 SHELL_VAR *var;
1459{
b80f6443
JA
1460 /* If we don't have anything yet, assign a default value. */
1461 if (rl_completer_word_break_characters == 0 && bash_readline_initialized == 0)
1462 enable_hostname_completion (perform_hostname_completion);
1463
3185942a
JA
1464 FREE (value_cell (var));
1465 var_setvalue (var, savestring (rl_completer_word_break_characters));
b80f6443
JA
1466
1467 return (var);
1468}
1469
1470/* When this function returns, rl_completer_word_break_characters points to
1471 malloced memory. */
1472static SHELL_VAR *
3185942a 1473assign_comp_wordbreaks (self, value, unused, key)
b80f6443
JA
1474 SHELL_VAR *self;
1475 char *value;
1476 arrayind_t unused;
3185942a 1477 char *key;
b80f6443
JA
1478{
1479 if (rl_completer_word_break_characters &&
1480 rl_completer_word_break_characters != rl_basic_word_break_characters)
1481 free (rl_completer_word_break_characters);
1482
1483 rl_completer_word_break_characters = savestring (value);
1484 return self;
1485}
1486#endif /* READLINE */
1487
ccc6cda3 1488#if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
b80f6443 1489static SHELL_VAR *
3185942a 1490assign_dirstack (self, value, ind, key)
7117c2d2
JA
1491 SHELL_VAR *self;
1492 char *value;
1493 arrayind_t ind;
3185942a 1494 char *key;
7117c2d2
JA
1495{
1496 set_dirstack_element (ind, 1, value);
1497 return self;
1498}
1499
ccc6cda3
JA
1500static SHELL_VAR *
1501get_dirstack (self)
1502 SHELL_VAR *self;
1503{
1504 ARRAY *a;
1505 WORD_LIST *l;
1506
0628567a 1507 l = get_directory_stack (0);
7117c2d2
JA
1508 a = array_from_word_list (l);
1509 array_dispose (array_cell (self));
d166f048 1510 dispose_words (l);
7117c2d2 1511 var_setarray (self, a);
ccc6cda3
JA
1512 return self;
1513}
1514#endif /* PUSHD AND POPD && ARRAY_VARS */
1515
d166f048
JA
1516#if defined (ARRAY_VARS)
1517/* We don't want to initialize the group set with a call to getgroups()
1518 unless we're asked to, but we only want to do it once. */
1519static SHELL_VAR *
1520get_groupset (self)
1521 SHELL_VAR *self;
1522{
1523 register int i;
1524 int ng;
1525 ARRAY *a;
1526 static char **group_set = (char **)NULL;
1527
1528 if (group_set == 0)
1529 {
1530 group_set = get_group_list (&ng);
1531 a = array_cell (self);
1532 for (i = 0; i < ng; i++)
7117c2d2 1533 array_insert (a, i, group_set[i]);
d166f048
JA
1534 }
1535 return (self);
1536}
3185942a
JA
1537
1538static SHELL_VAR *
1539build_hashcmd (self)
1540 SHELL_VAR *self;
1541{
1542 HASH_TABLE *h;
1543 int i;
1544 char *k, *v;
1545 BUCKET_CONTENTS *item;
1546
1547 h = assoc_cell (self);
1548 if (h)
1549 assoc_dispose (h);
1550
1551 if (hashed_filenames == 0 || HASH_ENTRIES (hashed_filenames) == 0)
1552 {
1553 var_setvalue (self, (char *)NULL);
1554 return self;
1555 }
1556
1557 h = assoc_create (hashed_filenames->nbuckets);
1558 for (i = 0; i < hashed_filenames->nbuckets; i++)
1559 {
1560 for (item = hash_items (i, hashed_filenames); item; item = item->next)
1561 {
1562 k = savestring (item->key);
1563 v = pathdata(item)->path;
1564 assoc_insert (h, k, v);
1565 }
1566 }
1567
1568 var_setvalue (self, (char *)h);
1569 return self;
1570}
1571
1572static SHELL_VAR *
1573get_hashcmd (self)
1574 SHELL_VAR *self;
1575{
1576 build_hashcmd (self);
1577 return (self);
1578}
1579
1580static SHELL_VAR *
1581assign_hashcmd (self, value, ind, key)
1582 SHELL_VAR *self;
1583 char *value;
1584 arrayind_t ind;
1585 char *key;
1586{
1587 phash_insert (key, value, 0, 0);
1588 return (build_hashcmd (self));
1589}
1590
0001803f 1591#if defined (ALIAS)
3185942a
JA
1592static SHELL_VAR *
1593build_aliasvar (self)
1594 SHELL_VAR *self;
1595{
1596 HASH_TABLE *h;
1597 int i;
1598 char *k, *v;
1599 BUCKET_CONTENTS *item;
1600
1601 h = assoc_cell (self);
1602 if (h)
1603 assoc_dispose (h);
1604
1605 if (aliases == 0 || HASH_ENTRIES (aliases) == 0)
1606 {
1607 var_setvalue (self, (char *)NULL);
1608 return self;
1609 }
1610
1611 h = assoc_create (aliases->nbuckets);
1612 for (i = 0; i < aliases->nbuckets; i++)
1613 {
1614 for (item = hash_items (i, aliases); item; item = item->next)
1615 {
1616 k = savestring (item->key);
1617 v = ((alias_t *)(item->data))->value;
1618 assoc_insert (h, k, v);
1619 }
1620 }
1621
1622 var_setvalue (self, (char *)h);
1623 return self;
1624}
1625
1626static SHELL_VAR *
1627get_aliasvar (self)
1628 SHELL_VAR *self;
1629{
1630 build_aliasvar (self);
1631 return (self);
1632}
1633
1634static SHELL_VAR *
1635assign_aliasvar (self, value, ind, key)
1636 SHELL_VAR *self;
1637 char *value;
1638 arrayind_t ind;
1639 char *key;
1640{
1641 add_alias (key, value);
1642 return (build_aliasvar (self));
1643}
0001803f
CR
1644#endif /* ALIAS */
1645
d166f048 1646#endif /* ARRAY_VARS */
bb70624e 1647
b80f6443
JA
1648/* If ARRAY_VARS is not defined, this just returns the name of any
1649 currently-executing function. If we have arrays, it's a call stack. */
bb70624e
JA
1650static SHELL_VAR *
1651get_funcname (self)
1652 SHELL_VAR *self;
1653{
b80f6443 1654#if ! defined (ARRAY_VARS)
7117c2d2 1655 char *t;
bb70624e
JA
1656 if (variable_context && this_shell_function)
1657 {
7117c2d2
JA
1658 FREE (value_cell (self));
1659 t = savestring (this_shell_function->name);
1660 var_setvalue (self, t);
bb70624e 1661 }
b80f6443 1662#endif
bb70624e
JA
1663 return (self);
1664}
1665
1666void
1667make_funcname_visible (on_or_off)
1668 int on_or_off;
726f6388
JA
1669{
1670 SHELL_VAR *v;
1671
bb70624e
JA
1672 v = find_variable ("FUNCNAME");
1673 if (v == 0 || v->dynamic_value == 0)
1674 return;
1675
1676 if (on_or_off)
1677 VUNSETATTR (v, att_invisible);
1678 else
1679 VSETATTR (v, att_invisible);
1680}
1681
f73dda09
JA
1682static SHELL_VAR *
1683init_funcname_var ()
1684{
1685 SHELL_VAR *v;
bb70624e 1686
f73dda09
JA
1687 v = find_variable ("FUNCNAME");
1688 if (v)
1689 return v;
b80f6443
JA
1690#if defined (ARRAY_VARS)
1691 INIT_DYNAMIC_ARRAY_VAR ("FUNCNAME", get_funcname, null_array_assign);
1692#else
f73dda09 1693 INIT_DYNAMIC_VAR ("FUNCNAME", (char *)NULL, get_funcname, null_assign);
b80f6443 1694#endif
f73dda09
JA
1695 VSETATTR (v, att_invisible|att_noassign);
1696 return v;
1697}
726f6388 1698
bb70624e
JA
1699static void
1700initialize_dynamic_variables ()
1701{
1702 SHELL_VAR *v;
726f6388 1703
f73dda09
JA
1704 v = init_seconds_var ();
1705
b80f6443
JA
1706 INIT_DYNAMIC_VAR ("BASH_COMMAND", (char *)NULL, get_bash_command, (sh_var_assign_func_t *)NULL);
1707 INIT_DYNAMIC_VAR ("BASH_SUBSHELL", (char *)NULL, get_subshell, assign_subshell);
1708
bb70624e 1709 INIT_DYNAMIC_VAR ("RANDOM", (char *)NULL, get_random, assign_random);
95732b49 1710 VSETATTR (v, att_integer);
bb70624e 1711 INIT_DYNAMIC_VAR ("LINENO", (char *)NULL, get_lineno, assign_lineno);
95732b49 1712 VSETATTR (v, att_integer);
726f6388 1713
3185942a
JA
1714 INIT_DYNAMIC_VAR ("BASHPID", (char *)NULL, get_bashpid, null_assign);
1715 VSETATTR (v, att_integer|att_readonly);
1716
726f6388 1717#if defined (HISTORY)
7117c2d2 1718 INIT_DYNAMIC_VAR ("HISTCMD", (char *)NULL, get_histcmd, (sh_var_assign_func_t *)NULL);
95732b49 1719 VSETATTR (v, att_integer);
726f6388 1720#endif
ccc6cda3 1721
b80f6443
JA
1722#if defined (READLINE)
1723 INIT_DYNAMIC_VAR ("COMP_WORDBREAKS", (char *)NULL, get_comp_wordbreaks, assign_comp_wordbreaks);
1724#endif
1725
ccc6cda3 1726#if defined (PUSHD_AND_POPD) && defined (ARRAY_VARS)
b80f6443 1727 v = init_dynamic_array_var ("DIRSTACK", get_dirstack, assign_dirstack, 0);
ccc6cda3 1728#endif /* PUSHD_AND_POPD && ARRAY_VARS */
d166f048
JA
1729
1730#if defined (ARRAY_VARS)
b80f6443
JA
1731 v = init_dynamic_array_var ("GROUPS", get_groupset, null_array_assign, att_noassign);
1732
1733# if defined (DEBUGGER)
95732b49
JA
1734 v = init_dynamic_array_var ("BASH_ARGC", get_self, null_array_assign, att_noassign|att_nounset);
1735 v = init_dynamic_array_var ("BASH_ARGV", get_self, null_array_assign, att_noassign|att_nounset);
b80f6443 1736# endif /* DEBUGGER */
95732b49
JA
1737 v = init_dynamic_array_var ("BASH_SOURCE", get_self, null_array_assign, att_noassign|att_nounset);
1738 v = init_dynamic_array_var ("BASH_LINENO", get_self, null_array_assign, att_noassign|att_nounset);
3185942a
JA
1739
1740 v = init_dynamic_assoc_var ("BASH_CMDS", get_hashcmd, assign_hashcmd, att_nofree);
0001803f 1741# if defined (ALIAS)
3185942a 1742 v = init_dynamic_assoc_var ("BASH_ALIASES", get_aliasvar, assign_aliasvar, att_nofree);
0001803f 1743# endif
d166f048 1744#endif
bb70624e 1745
f73dda09 1746 v = init_funcname_var ();
726f6388
JA
1747}
1748
7117c2d2
JA
1749/* **************************************************************** */
1750/* */
1751/* Retrieving variables and values */
1752/* */
1753/* **************************************************************** */
1754
726f6388
JA
1755/* How to get a pointer to the shell variable or function named NAME.
1756 HASHED_VARS is a pointer to the hash table containing the list
1757 of interest (either variables or functions). */
7117c2d2
JA
1758
1759static SHELL_VAR *
1760hash_lookup (name, hashed_vars)
f73dda09 1761 const char *name;
726f6388
JA
1762 HASH_TABLE *hashed_vars;
1763{
1764 BUCKET_CONTENTS *bucket;
1765
7117c2d2 1766 bucket = hash_search (name, hashed_vars, 0);
ac50fbac
CR
1767 /* If we find the name in HASHED_VARS, set LAST_TABLE_SEARCHED to that
1768 table. */
1769 if (bucket)
1770 last_table_searched = hashed_vars;
ccc6cda3 1771 return (bucket ? (SHELL_VAR *)bucket->data : (SHELL_VAR *)NULL);
726f6388
JA
1772}
1773
7117c2d2
JA
1774SHELL_VAR *
1775var_lookup (name, vcontext)
1776 const char *name;
1777 VAR_CONTEXT *vcontext;
1778{
1779 VAR_CONTEXT *vc;
1780 SHELL_VAR *v;
1781
1782 v = (SHELL_VAR *)NULL;
1783 for (vc = vcontext; vc; vc = vc->down)
1784 if (v = hash_lookup (name, vc->table))
1785 break;
1786
1787 return v;
1788}
1789
726f6388 1790/* Look up the variable entry named NAME. If SEARCH_TEMPENV is non-zero,
7117c2d2
JA
1791 then also search the temporarily built list of exported variables.
1792 The lookup order is:
1793 temporary_env
3185942a 1794 shell_variables list
7117c2d2
JA
1795*/
1796
726f6388 1797SHELL_VAR *
b80f6443 1798find_variable_internal (name, force_tempenv)
f73dda09 1799 const char *name;
b80f6443 1800 int force_tempenv;
726f6388 1801{
28ef6c31 1802 SHELL_VAR *var;
b80f6443 1803 int search_tempenv;
ac50fbac 1804 VAR_CONTEXT *vc;
28ef6c31
JA
1805
1806 var = (SHELL_VAR *)NULL;
726f6388
JA
1807
1808 /* If explicitly requested, first look in the temporary environment for
1809 the variable. This allows constructs such as "foo=x eval 'echo $foo'"
1810 to get the `exported' value of $foo. This happens if we are executing
1811 a function or builtin, or if we are looking up a variable in a
1812 "subshell environment". */
b80f6443
JA
1813 search_tempenv = force_tempenv || (expanding_redir == 0 && subshell_environment);
1814
1815 if (search_tempenv && temporary_env)
7117c2d2 1816 var = hash_lookup (name, temporary_env);
726f6388 1817
ac50fbac
CR
1818 vc = shell_variables;
1819#if 0
1820if (search_tempenv == 0 && /* (subshell_environment & SUBSHELL_COMSUB) && */
1821 expanding_redir &&
1822 (this_shell_builtin == eval_builtin || this_shell_builtin == command_builtin))
1823 {
1824 itrace("find_variable_internal: search_tempenv == 0: skipping VC_BLTNENV");
1825 while (vc && (vc->flags & VC_BLTNENV))
1826 vc = vc->down;
1827 if (vc == 0)
1828 vc = shell_variables;
1829 }
1830#endif
1831
7117c2d2 1832 if (var == 0)
ac50fbac 1833 var = var_lookup (name, vc);
726f6388 1834
7117c2d2 1835 if (var == 0)
726f6388
JA
1836 return ((SHELL_VAR *)NULL);
1837
ccc6cda3 1838 return (var->dynamic_value ? (*(var->dynamic_value)) (var) : var);
726f6388
JA
1839}
1840
ac50fbac
CR
1841/* Look up and resolve the chain of nameref variables starting at V all the
1842 way to NULL or non-nameref. */
1843SHELL_VAR *
1844find_variable_nameref (v)
1845 SHELL_VAR *v;
1846{
1847 int level;
1848 char *newname;
1849 SHELL_VAR *orig, *oldv;
1850
1851 level = 0;
1852 orig = v;
1853 while (v && nameref_p (v))
1854 {
1855 level++;
1856 if (level > NAMEREF_MAX)
1857 return ((SHELL_VAR *)0); /* error message here? */
1858 newname = nameref_cell (v);
1859 if (newname == 0 || *newname == '\0')
1860 return ((SHELL_VAR *)0);
1861 oldv = v;
1862 v = find_variable_internal (newname, (expanding_redir == 0 && (assigning_in_environment || executing_builtin)));
1863 if (v == orig || v == oldv)
1864 {
1865 internal_warning (_("%s: circular name reference"), orig->name);
1866 return ((SHELL_VAR *)0);
1867 }
1868 }
1869 return v;
1870}
1871
1872/* Resolve the chain of nameref variables for NAME. XXX - could change later */
1873SHELL_VAR *
1874find_variable_last_nameref (name)
1875 const char *name;
1876{
1877 SHELL_VAR *v, *nv;
1878 char *newname;
1879 int level;
1880
1881 nv = v = find_variable_noref (name);
1882 level = 0;
1883 while (v && nameref_p (v))
1884 {
1885 level++;
1886 if (level > NAMEREF_MAX)
1887 return ((SHELL_VAR *)0); /* error message here? */
1888 newname = nameref_cell (v);
1889 if (newname == 0 || *newname == '\0')
1890 return ((SHELL_VAR *)0);
1891 nv = v;
1892 v = find_variable_internal (newname, (expanding_redir == 0 && (assigning_in_environment || executing_builtin)));
1893 }
1894 return nv;
1895}
1896
1897/* Resolve the chain of nameref variables for NAME. XXX - could change later */
1898SHELL_VAR *
1899find_global_variable_last_nameref (name)
1900 const char *name;
1901{
1902 SHELL_VAR *v, *nv;
1903 char *newname;
1904 int level;
1905
1906 nv = v = find_global_variable_noref (name);
1907 level = 0;
1908 while (v && nameref_p (v))
1909 {
1910 level++;
1911 if (level > NAMEREF_MAX)
1912 return ((SHELL_VAR *)0); /* error message here? */
1913 newname = nameref_cell (v);
1914 if (newname == 0 || *newname == '\0')
1915 return ((SHELL_VAR *)0);
1916 nv = v;
1917 v = find_global_variable_noref (newname);
1918 }
1919 return nv;
1920}
1921
1922static SHELL_VAR *
1923find_nameref_at_context (v, vc)
1924 SHELL_VAR *v;
1925 VAR_CONTEXT *vc;
1926{
1927 SHELL_VAR *nv, *nv2;
1928 VAR_CONTEXT *nvc;
1929 char *newname;
1930 int level;
1931
1932 nv = v;
1933 level = 1;
1934 while (nv && nameref_p (nv))
1935 {
1936 level++;
1937 if (level > NAMEREF_MAX)
1938 return ((SHELL_VAR *)NULL);
1939 newname = nameref_cell (nv);
1940 if (newname == 0 || *newname == '\0')
1941 return ((SHELL_VAR *)NULL);
1942 nv2 = hash_lookup (newname, vc->table);
1943 if (nv2 == 0)
1944 break;
1945 nv = nv2;
1946 }
1947 return nv;
1948}
1949
1950/* Do nameref resolution from the VC, which is the local context for some
1951 function or builtin, `up' the chain to the global variables context. If
1952 NVCP is not NULL, return the variable context where we finally ended the
1953 nameref resolution (so the bind_variable_internal can use the correct
1954 variable context and hash table). */
1955static SHELL_VAR *
1956find_variable_nameref_context (v, vc, nvcp)
1957 SHELL_VAR *v;
1958 VAR_CONTEXT *vc;
1959 VAR_CONTEXT **nvcp;
1960{
1961 SHELL_VAR *nv, *nv2;
1962 VAR_CONTEXT *nvc;
1963
1964 /* Look starting at the current context all the way `up' */
1965 for (nv = v, nvc = vc; nvc; nvc = nvc->down)
1966 {
1967 nv2 = find_nameref_at_context (nv, nvc);
1968 if (nv2 == 0)
1969 continue;
1970 nv = nv2;
1971 if (*nvcp)
1972 *nvcp = nvc;
1973 if (nameref_p (nv) == 0)
1974 break;
1975 }
1976 return (nameref_p (nv) ? (SHELL_VAR *)NULL : nv);
1977}
1978
1979/* Do nameref resolution from the VC, which is the local context for some
1980 function or builtin, `up' the chain to the global variables context. If
1981 NVCP is not NULL, return the variable context where we finally ended the
1982 nameref resolution (so the bind_variable_internal can use the correct
1983 variable context and hash table). */
1984static SHELL_VAR *
1985find_variable_last_nameref_context (v, vc, nvcp)
1986 SHELL_VAR *v;
1987 VAR_CONTEXT *vc;
1988 VAR_CONTEXT **nvcp;
1989{
1990 SHELL_VAR *nv, *nv2;
1991 VAR_CONTEXT *nvc;
1992
1993 /* Look starting at the current context all the way `up' */
1994 for (nv = v, nvc = vc; nvc; nvc = nvc->down)
1995 {
1996 nv2 = find_nameref_at_context (nv, nvc);
1997 if (nv2 == 0)
1998 continue;
1999 nv = nv2;
2000 if (*nvcp)
2001 *nvcp = nvc;
2002 }
2003 return (nameref_p (nv) ? nv : (SHELL_VAR *)NULL);
2004}
2005
2006/* Find a variable, forcing a search of the temporary environment first */
2007SHELL_VAR *
2008find_variable_tempenv (name)
2009 const char *name;
2010{
2011 SHELL_VAR *var;
2012
2013 var = find_variable_internal (name, 1);
2014 if (var && nameref_p (var))
2015 var = find_variable_nameref (var);
2016 return (var);
2017}
2018
2019/* Find a variable, not forcing a search of the temporary environment first */
2020SHELL_VAR *
2021find_variable_notempenv (name)
2022 const char *name;
2023{
2024 SHELL_VAR *var;
2025
2026 var = find_variable_internal (name, 0);
2027 if (var && nameref_p (var))
2028 var = find_variable_nameref (var);
2029 return (var);
2030}
2031
495aee44
CR
2032SHELL_VAR *
2033find_global_variable (name)
2034 const char *name;
2035{
2036 SHELL_VAR *var;
2037
ac50fbac
CR
2038 var = var_lookup (name, global_variables);
2039 if (var && nameref_p (var))
2040 var = find_variable_nameref (var);
2041
2042 if (var == 0)
2043 return ((SHELL_VAR *)NULL);
2044
2045 return (var->dynamic_value ? (*(var->dynamic_value)) (var) : var);
2046}
2047
2048SHELL_VAR *
2049find_global_variable_noref (name)
2050 const char *name;
2051{
2052 SHELL_VAR *var;
2053
495aee44
CR
2054 var = var_lookup (name, global_variables);
2055
2056 if (var == 0)
2057 return ((SHELL_VAR *)NULL);
2058
2059 return (var->dynamic_value ? (*(var->dynamic_value)) (var) : var);
2060}
2061
ac50fbac
CR
2062SHELL_VAR *
2063find_shell_variable (name)
2064 const char *name;
2065{
2066 SHELL_VAR *var;
2067
2068 var = var_lookup (name, shell_variables);
2069 if (var && nameref_p (var))
2070 var = find_variable_nameref (var);
2071
2072 if (var == 0)
2073 return ((SHELL_VAR *)NULL);
2074
2075 return (var->dynamic_value ? (*(var->dynamic_value)) (var) : var);
2076}
2077
726f6388
JA
2078/* Look up the variable entry named NAME. Returns the entry or NULL. */
2079SHELL_VAR *
2080find_variable (name)
f73dda09 2081 const char *name;
726f6388 2082{
ac50fbac
CR
2083 SHELL_VAR *v;
2084
2085 last_table_searched = 0;
2086 v = find_variable_internal (name, (expanding_redir == 0 && (assigning_in_environment || executing_builtin)));
2087 if (v && nameref_p (v))
2088 v = find_variable_nameref (v);
2089 return v;
2090}
2091
2092SHELL_VAR *
2093find_variable_noref (name)
2094 const char *name;
2095{
2096 SHELL_VAR *v;
2097
2098 v = find_variable_internal (name, (expanding_redir == 0 && (assigning_in_environment || executing_builtin)));
2099 return v;
726f6388
JA
2100}
2101
2102/* Look up the function entry whose name matches STRING.
2103 Returns the entry or NULL. */
2104SHELL_VAR *
2105find_function (name)
f73dda09 2106 const char *name;
726f6388 2107{
7117c2d2
JA
2108 return (hash_lookup (name, shell_functions));
2109}
2110
b80f6443
JA
2111/* Find the function definition for the shell function named NAME. Returns
2112 the entry or NULL. */
2113FUNCTION_DEF *
2114find_function_def (name)
2115 const char *name;
2116{
3185942a 2117#if defined (DEBUGGER)
b80f6443 2118 return ((FUNCTION_DEF *)hash_lookup (name, shell_function_defs));
3185942a
JA
2119#else
2120 return ((FUNCTION_DEF *)0);
2121#endif
b80f6443
JA
2122}
2123
7117c2d2
JA
2124/* Return the value of VAR. VAR is assumed to have been the result of a
2125 lookup without any subscript, if arrays are compiled into the shell. */
2126char *
2127get_variable_value (var)
2128 SHELL_VAR *var;
2129{
2130 if (var == 0)
2131 return ((char *)NULL);
2132#if defined (ARRAY_VARS)
2133 else if (array_p (var))
2134 return (array_reference (array_cell (var), 0));
3185942a
JA
2135 else if (assoc_p (var))
2136 return (assoc_reference (assoc_cell (var), "0"));
7117c2d2
JA
2137#endif
2138 else
2139 return (value_cell (var));
726f6388
JA
2140}
2141
2142/* Return the string value of a variable. Return NULL if the variable
7117c2d2
JA
2143 doesn't exist. Don't cons a new string. This is a potential memory
2144 leak if the variable is found in the temporary environment. Since
2145 functions and variables have separate name spaces, returns NULL if
2146 var_name is a shell function only. */
726f6388
JA
2147char *
2148get_string_value (var_name)
28ef6c31 2149 const char *var_name;
726f6388 2150{
d166f048
JA
2151 SHELL_VAR *var;
2152
f73dda09 2153 var = find_variable (var_name);
7117c2d2 2154 return ((var) ? get_variable_value (var) : (char *)NULL);
726f6388
JA
2155}
2156
b72432fd
JA
2157/* This is present for use by the tilde and readline libraries. */
2158char *
28ef6c31
JA
2159sh_get_env_value (v)
2160 const char *v;
b72432fd
JA
2161{
2162 return get_string_value (v);
2163}
2164
7117c2d2
JA
2165/* **************************************************************** */
2166/* */
2167/* Creating and setting variables */
2168/* */
2169/* **************************************************************** */
2170
2171/* Set NAME to VALUE if NAME has no value. */
2172SHELL_VAR *
2173set_if_not (name, value)
2174 char *name, *value;
2175{
2176 SHELL_VAR *v;
2177
0628567a
JA
2178 if (shell_variables == 0)
2179 create_variable_tables ();
2180
7117c2d2
JA
2181 v = find_variable (name);
2182 if (v == 0)
95732b49 2183 v = bind_variable_internal (name, value, global_variables->table, HASH_NOSRCH, 0);
7117c2d2
JA
2184 return (v);
2185}
2186
726f6388
JA
2187/* Create a local variable referenced by NAME. */
2188SHELL_VAR *
2189make_local_variable (name)
f73dda09 2190 const char *name;
726f6388
JA
2191{
2192 SHELL_VAR *new_var, *old_var;
7117c2d2
JA
2193 VAR_CONTEXT *vc;
2194 int was_tmpvar;
2195 char *tmp_value;
726f6388
JA
2196
2197 /* local foo; local foo; is a no-op. */
2198 old_var = find_variable (name);
7117c2d2 2199 if (old_var && local_p (old_var) && old_var->context == variable_context)
9ddcfa16 2200 return (old_var);
726f6388 2201
7117c2d2 2202 was_tmpvar = old_var && tempvar_p (old_var);
ac50fbac
CR
2203 /* If we're making a local variable in a shell function, the temporary env
2204 has already been merged into the function's variable context stack. We
2205 can assume that a temporary var in the same context appears in the same
2206 VAR_CONTEXT and can safely be returned without creating a new variable
2207 (which results in duplicate names in the same VAR_CONTEXT->table */
2208 /* We can't just test tmpvar_p because variables in the temporary env given
2209 to a shell function appear in the function's local variable VAR_CONTEXT
2210 but retain their tempvar attribute. We want temporary variables that are
2211 found in temporary_env, hence the test for last_table_searched, which is
2212 set in hash_lookup and only (so far) checked here. */
2213 if (was_tmpvar && old_var->context == variable_context && last_table_searched != temporary_env)
2214 {
2215 VUNSETATTR (old_var, att_invisible);
2216 return (old_var);
2217 }
7117c2d2
JA
2218 if (was_tmpvar)
2219 tmp_value = value_cell (old_var);
2220
2221 for (vc = shell_variables; vc; vc = vc->down)
2222 if (vc_isfuncenv (vc) && vc->scope == variable_context)
2223 break;
2224
2225 if (vc == 0)
2226 {
b80f6443 2227 internal_error (_("make_local_variable: no function context at current scope"));
7117c2d2
JA
2228 return ((SHELL_VAR *)NULL);
2229 }
2230 else if (vc->table == 0)
2231 vc->table = hash_create (TEMPENV_HASH_BUCKETS);
2232
bb70624e
JA
2233 /* Since this is called only from the local/declare/typeset code, we can
2234 call builtin_error here without worry (of course, it will also work
28ef6c31
JA
2235 for anything that sets this_command_name). Variables with the `noassign'
2236 attribute may not be made local. The test against old_var's context
2237 level is to disallow local copies of readonly global variables (since I
2238 believe that this could be a security hole). Readonly copies of calling
2239 function local variables are OK. */
2240 if (old_var && (noassign_p (old_var) ||
2241 (readonly_p (old_var) && old_var->context == 0)))
2242 {
2243 if (readonly_p (old_var))
7117c2d2 2244 sh_readonly (name);
ac50fbac
CR
2245 else if (noassign_p (old_var))
2246 builtin_error (_("%s: variable may not be assigned value"), name);
2247#if 0
2248 /* Let noassign variables through with a warning */
2249 if (readonly_p (old_var))
2250#endif
2251 return ((SHELL_VAR *)NULL);
bb70624e
JA
2252 }
2253
d166f048 2254 if (old_var == 0)
3185942a 2255 new_var = make_new_variable (name, vc->table);
726f6388
JA
2256 else
2257 {
7117c2d2 2258 new_var = make_new_variable (name, vc->table);
726f6388 2259
7117c2d2
JA
2260 /* If we found this variable in one of the temporary environments,
2261 inherit its value. Watch to see if this causes problems with
ac50fbac
CR
2262 things like `x=4 local x'. XXX - see above for temporary env
2263 variables with the same context level as variable_context */
2264 /* XXX - we should only do this if the variable is not an array. */
7117c2d2 2265 if (was_tmpvar)
3185942a 2266 var_setvalue (new_var, savestring (tmp_value));
726f6388 2267
ccc6cda3 2268 new_var->attributes = exported_p (old_var) ? att_exported : 0;
726f6388
JA
2269 }
2270
7117c2d2
JA
2271 vc->flags |= VC_HASLOCAL;
2272
726f6388 2273 new_var->context = variable_context;
bb70624e 2274 VSETATTR (new_var, att_local);
726f6388 2275
7117c2d2
JA
2276 if (ifsname (name))
2277 setifs (new_var);
726f6388 2278
ac50fbac
CR
2279 if (was_tmpvar == 0)
2280 VSETATTR (new_var, att_invisible); /* XXX */
726f6388
JA
2281 return (new_var);
2282}
2283
7117c2d2 2284/* Create a new shell variable with name NAME. */
f73dda09 2285static SHELL_VAR *
7117c2d2 2286new_shell_variable (name)
f73dda09 2287 const char *name;
726f6388 2288{
ccc6cda3 2289 SHELL_VAR *entry;
726f6388 2290
ccc6cda3 2291 entry = (SHELL_VAR *)xmalloc (sizeof (SHELL_VAR));
726f6388 2292
ccc6cda3 2293 entry->name = savestring (name);
7117c2d2 2294 var_setvalue (entry, (char *)NULL);
bb70624e 2295 CLEAR_EXPORTSTR (entry);
726f6388 2296
7117c2d2
JA
2297 entry->dynamic_value = (sh_var_value_func_t *)NULL;
2298 entry->assign_func = (sh_var_assign_func_t *)NULL;
2299
2300 entry->attributes = 0;
ccc6cda3
JA
2301
2302 /* Always assume variables are to be made at toplevel!
ac50fbac 2303 make_local_variable has the responsibility of changing the
ccc6cda3
JA
2304 variable context. */
2305 entry->context = 0;
7117c2d2
JA
2306
2307 return (entry);
2308}
2309
2310/* Create a new shell variable with name NAME and add it to the hash table
2311 TABLE. */
2312static SHELL_VAR *
2313make_new_variable (name, table)
2314 const char *name;
2315 HASH_TABLE *table;
2316{
2317 SHELL_VAR *entry;
2318 BUCKET_CONTENTS *elt;
2319
2320 entry = new_shell_variable (name);
ccc6cda3 2321
28ef6c31
JA
2322 /* Make sure we have a shell_variables hash table to add to. */
2323 if (shell_variables == 0)
0628567a 2324 create_variable_tables ();
28ef6c31 2325
7117c2d2
JA
2326 elt = hash_insert (savestring (name), table, HASH_NOSRCH);
2327 elt->data = (PTR_T)entry;
ccc6cda3
JA
2328
2329 return entry;
2330}
2331
2332#if defined (ARRAY_VARS)
2333SHELL_VAR *
2334make_new_array_variable (name)
2335 char *name;
2336{
2337 SHELL_VAR *entry;
2338 ARRAY *array;
2339
7117c2d2
JA
2340 entry = make_new_variable (name, global_variables->table);
2341 array = array_create ();
3185942a 2342
7117c2d2 2343 var_setarray (entry, array);
bb70624e 2344 VSETATTR (entry, att_array);
ccc6cda3
JA
2345 return entry;
2346}
3185942a
JA
2347
2348SHELL_VAR *
ac50fbac 2349make_local_array_variable (name, assoc_ok)
3185942a 2350 char *name;
ac50fbac 2351 int assoc_ok;
3185942a
JA
2352{
2353 SHELL_VAR *var;
2354 ARRAY *array;
2355
2356 var = make_local_variable (name);
ac50fbac 2357 if (var == 0 || array_p (var) || (assoc_ok && assoc_p (var)))
3185942a
JA
2358 return var;
2359
2360 array = array_create ();
2361
2362 dispose_variable_value (var);
2363 var_setarray (var, array);
2364 VSETATTR (var, att_array);
2365 return var;
2366}
2367
2368SHELL_VAR *
2369make_new_assoc_variable (name)
2370 char *name;
2371{
2372 SHELL_VAR *entry;
2373 HASH_TABLE *hash;
2374
2375 entry = make_new_variable (name, global_variables->table);
2376 hash = assoc_create (0);
2377
2378 var_setassoc (entry, hash);
2379 VSETATTR (entry, att_assoc);
2380 return entry;
2381}
2382
2383SHELL_VAR *
2384make_local_assoc_variable (name)
2385 char *name;
2386{
2387 SHELL_VAR *var;
2388 HASH_TABLE *hash;
2389
2390 var = make_local_variable (name);
2391 if (var == 0 || assoc_p (var))
2392 return var;
2393
2394 dispose_variable_value (var);
2395 hash = assoc_create (0);
2396
2397 var_setassoc (var, hash);
2398 VSETATTR (var, att_assoc);
2399 return var;
2400}
ccc6cda3
JA
2401#endif
2402
2403char *
95732b49 2404make_variable_value (var, value, flags)
ccc6cda3
JA
2405 SHELL_VAR *var;
2406 char *value;
95732b49 2407 int flags;
ccc6cda3 2408{
95732b49
JA
2409 char *retval, *oval;
2410 intmax_t lval, rval;
3185942a 2411 int expok, olen, op;
ccc6cda3
JA
2412
2413 /* If this variable has had its type set to integer (via `declare -i'),
2414 then do expression evaluation on it and store the result. The
7117c2d2 2415 functions in expr.c (evalexp()) and bind_int_variable() are responsible
ccc6cda3
JA
2416 for turning off the integer flag if they don't want further
2417 evaluation done. */
2418 if (integer_p (var))
2419 {
95732b49
JA
2420 if (flags & ASS_APPEND)
2421 {
2422 oval = value_cell (var);
2423 lval = evalexp (oval, &expok); /* ksh93 seems to do this */
2424 if (expok == 0)
f1be666c
JA
2425 {
2426 top_level_cleanup ();
2427 jump_to_top_level (DISCARD);
2428 }
95732b49
JA
2429 }
2430 rval = evalexp (value, &expok);
d166f048 2431 if (expok == 0)
f1be666c
JA
2432 {
2433 top_level_cleanup ();
2434 jump_to_top_level (DISCARD);
2435 }
ac50fbac
CR
2436 /* This can be fooled if the variable's value changes while evaluating
2437 `rval'. We can change it if we move the evaluation of lval to here. */
95732b49
JA
2438 if (flags & ASS_APPEND)
2439 rval += lval;
2440 retval = itos (rval);
ccc6cda3 2441 }
3185942a
JA
2442#if defined (CASEMOD_ATTRS)
2443 else if (capcase_p (var) || uppercase_p (var) || lowercase_p (var))
2444 {
2445 if (flags & ASS_APPEND)
2446 {
2447 oval = get_variable_value (var);
2448 if (oval == 0) /* paranoia */
2449 oval = "";
2450 olen = STRLEN (oval);
2451 retval = (char *)xmalloc (olen + (value ? STRLEN (value) : 0) + 1);
2452 strcpy (retval, oval);
2453 if (value)
2454 strcpy (retval+olen, value);
2455 }
2456 else if (*value)
2457 retval = savestring (value);
2458 else
2459 {
2460 retval = (char *)xmalloc (1);
2461 retval[0] = '\0';
2462 }
2463 op = capcase_p (var) ? CASE_CAPITALIZE
2464 : (uppercase_p (var) ? CASE_UPPER : CASE_LOWER);
2465 oval = sh_modcase (retval, (char *)0, op);
2466 free (retval);
2467 retval = oval;
2468 }
2469#endif /* CASEMOD_ATTRS */
ccc6cda3
JA
2470 else if (value)
2471 {
95732b49
JA
2472 if (flags & ASS_APPEND)
2473 {
2474 oval = get_variable_value (var);
2475 if (oval == 0) /* paranoia */
2476 oval = "";
2477 olen = STRLEN (oval);
2478 retval = (char *)xmalloc (olen + (value ? STRLEN (value) : 0) + 1);
2479 strcpy (retval, oval);
2480 if (value)
2481 strcpy (retval+olen, value);
2482 }
2483 else if (*value)
ccc6cda3
JA
2484 retval = savestring (value);
2485 else
726f6388 2486 {
f73dda09 2487 retval = (char *)xmalloc (1);
ccc6cda3 2488 retval[0] = '\0';
726f6388 2489 }
ccc6cda3
JA
2490 }
2491 else
2492 retval = (char *)NULL;
726f6388 2493
ccc6cda3
JA
2494 return retval;
2495}
726f6388 2496
7117c2d2
JA
2497/* Bind a variable NAME to VALUE in the HASH_TABLE TABLE, which may be the
2498 temporary environment (but usually is not). */
2499static SHELL_VAR *
95732b49 2500bind_variable_internal (name, value, table, hflags, aflags)
f73dda09
JA
2501 const char *name;
2502 char *value;
7117c2d2 2503 HASH_TABLE *table;
95732b49 2504 int hflags, aflags;
ccc6cda3
JA
2505{
2506 char *newval;
7117c2d2 2507 SHELL_VAR *entry;
28ef6c31 2508
7117c2d2 2509 entry = (hflags & HASH_NOSRCH) ? (SHELL_VAR *)NULL : hash_lookup (name, table);
ac50fbac
CR
2510 /* Follow the nameref chain here if this is the global variables table */
2511 if (entry && nameref_p (entry) && (invisible_p (entry) == 0) && table == global_variables->table)
2512 {
2513 entry = find_global_variable (entry->name);
2514 /* Let's see if we have a nameref referencing a variable that hasn't yet
2515 been created. */
2516 if (entry == 0)
2517 entry = find_variable_last_nameref (name); /* XXX */
2518 if (entry == 0) /* just in case */
2519 return (entry);
2520 }
ccc6cda3 2521
ac50fbac
CR
2522 /* The first clause handles `declare -n ref; ref=x;' */
2523 if (entry && invisible_p (entry) && nameref_p (entry))
2524 goto assign_value;
2525 else if (entry && nameref_p (entry))
2526 {
2527 newval = nameref_cell (entry);
2528#if defined (ARRAY_VARS)
2529 /* declare -n foo=x[2] */
2530 if (valid_array_reference (newval))
2531 /* XXX - should it be aflags? */
2532 entry = assign_array_element (newval, make_variable_value (entry, value, 0), aflags);
2533 else
2534#endif
2535 {
2536 entry = make_new_variable (newval, table);
2537 var_setvalue (entry, make_variable_value (entry, value, 0));
2538 }
2539 }
2540 else if (entry == 0)
ccc6cda3 2541 {
7117c2d2 2542 entry = make_new_variable (name, table);
95732b49 2543 var_setvalue (entry, make_variable_value (entry, value, 0)); /* XXX */
726f6388 2544 }
28ef6c31 2545 else if (entry->assign_func) /* array vars have assign functions now */
bb70624e
JA
2546 {
2547 INVALIDATE_EXPORTSTR (entry);
95732b49 2548 newval = (aflags & ASS_APPEND) ? make_variable_value (entry, value, aflags) : value;
0001803f
CR
2549 if (assoc_p (entry))
2550 entry = (*(entry->assign_func)) (entry, newval, -1, savestring ("0"));
2551 else if (array_p (entry))
2552 entry = (*(entry->assign_func)) (entry, newval, 0, 0);
2553 else
2554 entry = (*(entry->assign_func)) (entry, newval, -1, 0);
95732b49 2555 if (newval != value)
3185942a 2556 free (newval);
95732b49 2557 return (entry);
bb70624e 2558 }
726f6388
JA
2559 else
2560 {
ac50fbac 2561assign_value:
28ef6c31 2562 if (readonly_p (entry) || noassign_p (entry))
726f6388 2563 {
28ef6c31 2564 if (readonly_p (entry))
7117c2d2 2565 err_readonly (name);
726f6388
JA
2566 return (entry);
2567 }
2568
2569 /* Variables which are bound are visible. */
bb70624e 2570 VUNSETATTR (entry, att_invisible);
726f6388 2571
ac50fbac
CR
2572#if defined (ARRAY_VARS)
2573 if (assoc_p (entry) || array_p (entry))
2574 newval = make_array_variable_value (entry, 0, "0", value, aflags);
2575 else
2576#endif
2577
95732b49 2578 newval = make_variable_value (entry, value, aflags); /* XXX */
726f6388 2579
bb70624e
JA
2580 /* Invalidate any cached export string */
2581 INVALIDATE_EXPORTSTR (entry);
2582
ccc6cda3
JA
2583#if defined (ARRAY_VARS)
2584 /* XXX -- this bears looking at again -- XXX */
2585 /* If an existing array variable x is being assigned to with x=b or
2586 `read x' or something of that nature, silently convert it to
2587 x[0]=b or `read x[0]'. */
ac50fbac 2588 if (assoc_p (entry))
d166f048 2589 {
ac50fbac 2590 assoc_insert (assoc_cell (entry), savestring ("0"), newval);
d166f048
JA
2591 free (newval);
2592 }
ac50fbac 2593 else if (array_p (entry))
3185942a 2594 {
ac50fbac 2595 array_insert (array_cell (entry), 0, newval);
3185942a
JA
2596 free (newval);
2597 }
726f6388 2598 else
f73dda09 2599#endif
726f6388 2600 {
7117c2d2
JA
2601 FREE (value_cell (entry));
2602 var_setvalue (entry, newval);
726f6388
JA
2603 }
2604 }
2605
2606 if (mark_modified_vars)
bb70624e 2607 VSETATTR (entry, att_exported);
726f6388
JA
2608
2609 if (exported_p (entry))
2610 array_needs_making = 1;
2611
2612 return (entry);
2613}
7117c2d2
JA
2614
2615/* Bind a variable NAME to VALUE. This conses up the name
2616 and value strings. If we have a temporary environment, we bind there
2617 first, then we bind into shell_variables. */
2618
2619SHELL_VAR *
95732b49 2620bind_variable (name, value, flags)
7117c2d2
JA
2621 const char *name;
2622 char *value;
95732b49 2623 int flags;
7117c2d2 2624{
ac50fbac
CR
2625 SHELL_VAR *v, *nv;
2626 VAR_CONTEXT *vc, *nvc;
2627 int level;
7117c2d2
JA
2628
2629 if (shell_variables == 0)
0628567a 2630 create_variable_tables ();
7117c2d2
JA
2631
2632 /* If we have a temporary environment, look there first for the variable,
2633 and, if found, modify the value there before modifying it in the
2634 shell_variables table. This allows sourced scripts to modify values
2635 given to them in a temporary environment while modifying the variable
2636 value that the caller sees. */
2637 if (temporary_env)
2638 bind_tempenv_variable (name, value);
2639
2640 /* XXX -- handle local variables here. */
2641 for (vc = shell_variables; vc; vc = vc->down)
2642 {
2643 if (vc_isfuncenv (vc) || vc_isbltnenv (vc))
3185942a
JA
2644 {
2645 v = hash_lookup (name, vc->table);
ac50fbac
CR
2646 nvc = vc;
2647 if (v && nameref_p (v))
2648 {
2649 nv = find_variable_nameref_context (v, vc, &nvc);
2650 if (nv == 0)
2651 {
2652 nv = find_variable_last_nameref_context (v, vc, &nvc);
2653 if (nv && nameref_p (nv))
2654 {
2655 /* If this nameref variable doesn't have a value yet,
2656 set the value. Otherwise, assign using the value as
2657 normal. */
2658 if (nameref_cell (nv) == 0)
2659 return (bind_variable_internal (nv->name, value, nvc->table, 0, flags));
2660 return (bind_variable_internal (nameref_cell (nv), value, nvc->table, 0, flags));
2661 }
2662 else
2663 v = nv;
2664 }
2665 else
2666 v = nv;
2667 }
3185942a 2668 if (v)
ac50fbac 2669 return (bind_variable_internal (v->name, value, nvc->table, 0, flags));
3185942a 2670 }
7117c2d2 2671 }
ac50fbac
CR
2672 /* bind_variable_internal will handle nameref resolution in this case */
2673 return (bind_variable_internal (name, value, global_variables->table, 0, flags));
2674}
2675
2676SHELL_VAR *
2677bind_global_variable (name, value, flags)
2678 const char *name;
2679 char *value;
2680 int flags;
2681{
2682 SHELL_VAR *v, *nv;
2683 VAR_CONTEXT *vc, *nvc;
2684 int level;
2685
2686 if (shell_variables == 0)
2687 create_variable_tables ();
2688
2689 /* bind_variable_internal will handle nameref resolution in this case */
95732b49 2690 return (bind_variable_internal (name, value, global_variables->table, 0, flags));
7117c2d2 2691}
726f6388 2692
bb70624e
JA
2693/* Make VAR, a simple shell variable, have value VALUE. Once assigned a
2694 value, variables are no longer invisible. This is a duplicate of part
2695 of the internals of bind_variable. If the variable is exported, or
2696 all modified variables should be exported, mark the variable for export
2697 and note that the export environment needs to be recreated. */
2698SHELL_VAR *
95732b49 2699bind_variable_value (var, value, aflags)
bb70624e
JA
2700 SHELL_VAR *var;
2701 char *value;
95732b49 2702 int aflags;
bb70624e
JA
2703{
2704 char *t;
ac50fbac 2705 int invis;
bb70624e 2706
ac50fbac 2707 invis = invisible_p (var);
bb70624e
JA
2708 VUNSETATTR (var, att_invisible);
2709
95732b49
JA
2710 if (var->assign_func)
2711 {
2712 /* If we're appending, we need the old value, so use
2713 make_variable_value */
2714 t = (aflags & ASS_APPEND) ? make_variable_value (var, value, aflags) : value;
3185942a 2715 (*(var->assign_func)) (var, t, -1, 0);
95732b49
JA
2716 if (t != value && t)
2717 free (t);
2718 }
2719 else
2720 {
2721 t = make_variable_value (var, value, aflags);
ac50fbac
CR
2722#if defined (ARRAY_VARS)
2723 if ((aflags & ASS_NAMEREF) && (t == 0 || *t == 0 || (legal_identifier (t) == 0 && valid_array_reference (t) == 0)))
2724#else
2725 if ((aflags & ASS_NAMEREF) && (t == 0 || *t == 0 || legal_identifier (t) == 0))
2726#endif
2727 {
2728 free (t);
2729 if (invis)
2730 VSETATTR (var, att_invisible); /* XXX */
2731 return ((SHELL_VAR *)NULL);
2732 }
95732b49
JA
2733 FREE (value_cell (var));
2734 var_setvalue (var, t);
2735 }
bb70624e
JA
2736
2737 INVALIDATE_EXPORTSTR (var);
2738
2739 if (mark_modified_vars)
2740 VSETATTR (var, att_exported);
2741
2742 if (exported_p (var))
2743 array_needs_making = 1;
2744
2745 return (var);
2746}
2747
2748/* Bind/create a shell variable with the name LHS to the RHS.
2749 This creates or modifies a variable such that it is an integer.
2750
2751 This used to be in expr.c, but it is here so that all of the
2752 variable binding stuff is localized. Since we don't want any
2753 recursive evaluation from bind_variable() (possible without this code,
2754 since bind_variable() calls the evaluator for variables with the integer
2755 attribute set), we temporarily turn off the integer attribute for each
2756 variable we set here, then turn it back on after binding as necessary. */
2757
2758SHELL_VAR *
2759bind_int_variable (lhs, rhs)
2760 char *lhs, *rhs;
2761{
2762 register SHELL_VAR *v;
ac50fbac 2763 int isint, isarr, implicitarray;
7117c2d2 2764
ac50fbac 2765 isint = isarr = implicitarray = 0;
7117c2d2 2766#if defined (ARRAY_VARS)
b80f6443 2767 if (valid_array_reference (lhs))
7117c2d2
JA
2768 {
2769 isarr = 1;
2770 v = array_variable_part (lhs, (char **)0, (int *)0);
2771 }
2772 else
2773#endif
2774 v = find_variable (lhs);
bb70624e 2775
bb70624e
JA
2776 if (v)
2777 {
2778 isint = integer_p (v);
2779 VUNSETATTR (v, att_integer);
ac50fbac
CR
2780#if defined (ARRAY_VARS)
2781 if (array_p (v) && isarr == 0)
2782 implicitarray = 1;
2783#endif
bb70624e
JA
2784 }
2785
7117c2d2
JA
2786#if defined (ARRAY_VARS)
2787 if (isarr)
95732b49 2788 v = assign_array_element (lhs, rhs, 0);
ac50fbac
CR
2789 else if (implicitarray)
2790 v = bind_array_variable (lhs, 0, rhs, 0);
7117c2d2
JA
2791 else
2792#endif
95732b49 2793 v = bind_variable (lhs, rhs, 0);
7117c2d2 2794
495aee44 2795 if (v && isint)
bb70624e
JA
2796 VSETATTR (v, att_integer);
2797
ac50fbac
CR
2798 VUNSETATTR (v, att_invisible);
2799
bb70624e
JA
2800 return (v);
2801}
2802
ccc6cda3 2803SHELL_VAR *
f73dda09
JA
2804bind_var_to_int (var, val)
2805 char *var;
7117c2d2 2806 intmax_t val;
ccc6cda3 2807{
7117c2d2 2808 char ibuf[INT_STRLEN_BOUND (intmax_t) + 1], *p;
ccc6cda3 2809
f73dda09
JA
2810 p = fmtulong (val, 10, ibuf, sizeof (ibuf), 0);
2811 return (bind_int_variable (var, p));
ccc6cda3
JA
2812}
2813
7117c2d2
JA
2814/* Do a function binding to a variable. You pass the name and
2815 the command to bind to. This conses the name and command. */
2816SHELL_VAR *
2817bind_function (name, value)
2818 const char *name;
2819 COMMAND *value;
2820{
2821 SHELL_VAR *entry;
2822
2823 entry = find_function (name);
2824 if (entry == 0)
2825 {
2826 BUCKET_CONTENTS *elt;
2827
2828 elt = hash_insert (savestring (name), shell_functions, HASH_NOSRCH);
2829 entry = new_shell_variable (name);
2830 elt->data = (PTR_T)entry;
2831 }
2832 else
2833 INVALIDATE_EXPORTSTR (entry);
2834
2835 if (var_isset (entry))
2836 dispose_command (function_cell (entry));
2837
2838 if (value)
2839 var_setfunc (entry, copy_command (value));
2840 else
2841 var_setfunc (entry, 0);
2842
2843 VSETATTR (entry, att_function);
2844
2845 if (mark_modified_vars)
2846 VSETATTR (entry, att_exported);
2847
2848 VUNSETATTR (entry, att_invisible); /* Just to be sure */
2849
2850 if (exported_p (entry))
2851 array_needs_making = 1;
2852
2853#if defined (PROGRAMMABLE_COMPLETION)
2854 set_itemlist_dirty (&it_functions);
2855#endif
2856
2857 return (entry);
2858}
2859
3185942a 2860#if defined (DEBUGGER)
b80f6443
JA
2861/* Bind a function definition, which includes source file and line number
2862 information in addition to the command, into the FUNCTION_DEF hash table.*/
2863void
2864bind_function_def (name, value)
2865 const char *name;
2866 FUNCTION_DEF *value;
2867{
2868 FUNCTION_DEF *entry;
2869 BUCKET_CONTENTS *elt;
2870 COMMAND *cmd;
2871
2872 entry = find_function_def (name);
2873 if (entry)
2874 {
2875 dispose_function_def_contents (entry);
2876 entry = copy_function_def_contents (value, entry);
2877 }
2878 else
2879 {
2880 cmd = value->command;
2881 value->command = 0;
2882 entry = copy_function_def (value);
2883 value->command = cmd;
2884
2885 elt = hash_insert (savestring (name), shell_function_defs, HASH_NOSRCH);
2886 elt->data = (PTR_T *)entry;
2887 }
2888}
3185942a 2889#endif /* DEBUGGER */
b80f6443 2890
7117c2d2
JA
2891/* Add STRING, which is of the form foo=bar, to the temporary environment
2892 HASH_TABLE (temporary_env). The functions in execute_cmd.c are
2893 responsible for moving the main temporary env to one of the other
2894 temporary environments. The expansion code in subst.c calls this. */
2895int
495aee44 2896assign_in_env (word, flags)
95732b49 2897 WORD_DESC *word;
495aee44 2898 int flags;
7117c2d2 2899{
ac50fbac 2900 int offset, aflags;
7117c2d2
JA
2901 char *name, *temp, *value;
2902 SHELL_VAR *var;
95732b49
JA
2903 const char *string;
2904
2905 string = word->word;
7117c2d2 2906
ac50fbac 2907 aflags = 0;
b80f6443 2908 offset = assignment (string, 0);
7117c2d2
JA
2909 name = savestring (string);
2910 value = (char *)NULL;
2911
2912 if (name[offset] == '=')
2913 {
2914 name[offset] = 0;
2915
ac50fbac 2916 /* don't ignore the `+' when assigning temporary environment */
95732b49 2917 if (name[offset - 1] == '+')
ac50fbac
CR
2918 {
2919 name[offset - 1] = '\0';
2920 aflags |= ASS_APPEND;
2921 }
95732b49 2922
7117c2d2
JA
2923 var = find_variable (name);
2924 if (var && (readonly_p (var) || noassign_p (var)))
2925 {
2926 if (readonly_p (var))
2927 err_readonly (name);
2928 free (name);
2929 return (0);
2930 }
2931
2932 temp = name + offset + 1;
95732b49 2933 value = expand_assignment_string_to_string (temp, 0);
ac50fbac
CR
2934
2935 if (var && (aflags & ASS_APPEND))
2936 {
2937 temp = make_variable_value (var, value, aflags);
2938 FREE (value);
2939 value = temp;
2940 }
7117c2d2
JA
2941 }
2942
2943 if (temporary_env == 0)
2944 temporary_env = hash_create (TEMPENV_HASH_BUCKETS);
2945
2946 var = hash_lookup (name, temporary_env);
2947 if (var == 0)
2948 var = make_new_variable (name, temporary_env);
2949 else
2950 FREE (value_cell (var));
2951
2952 if (value == 0)
2953 {
2954 value = (char *)xmalloc (1); /* like do_assignment_internal */
2955 value[0] = '\0';
2956 }
2957
2958 var_setvalue (var, value);
2959 var->attributes |= (att_exported|att_tempvar);
2960 var->context = variable_context; /* XXX */
2961
2962 INVALIDATE_EXPORTSTR (var);
2963 var->exportstr = mk_env_string (name, value);
2964
2965 array_needs_making = 1;
2966
495aee44
CR
2967 if (flags)
2968 stupidly_hack_special_variables (name);
7117c2d2
JA
2969
2970 if (echo_command_at_execute)
b80f6443
JA
2971 /* The Korn shell prints the `+ ' in front of assignment statements,
2972 so we do too. */
2973 xtrace_print_assignment (name, value, 0, 1);
7117c2d2 2974
b80f6443 2975 free (name);
7117c2d2
JA
2976 return 1;
2977}
2978
2979/* **************************************************************** */
2980/* */
2981/* Copying variables */
2982/* */
2983/* **************************************************************** */
2984
2985#ifdef INCLUDE_UNUSED
2986/* Copy VAR to a new data structure and return that structure. */
2987SHELL_VAR *
2988copy_variable (var)
2989 SHELL_VAR *var;
2990{
2991 SHELL_VAR *copy = (SHELL_VAR *)NULL;
2992
2993 if (var)
2994 {
2995 copy = (SHELL_VAR *)xmalloc (sizeof (SHELL_VAR));
2996
2997 copy->attributes = var->attributes;
2998 copy->name = savestring (var->name);
2999
3000 if (function_p (var))
3001 var_setfunc (copy, copy_command (function_cell (var)));
3002#if defined (ARRAY_VARS)
3003 else if (array_p (var))
3185942a
JA
3004 var_setarray (copy, array_copy (array_cell (var)));
3005 else if (assoc_p (var))
3006 var_setassoc (copy, assoc_copy (assoc_cell (var)));
7117c2d2 3007#endif
ac50fbac
CR
3008 else if (nameref_cell (var)) /* XXX - nameref */
3009 var_setref (copy, savestring (nameref_cell (var)));
3010 else if (value_cell (var)) /* XXX - nameref */
7117c2d2
JA
3011 var_setvalue (copy, savestring (value_cell (var)));
3012 else
3013 var_setvalue (copy, (char *)NULL);
3014
3015 copy->dynamic_value = var->dynamic_value;
3016 copy->assign_func = var->assign_func;
3017
3018 copy->exportstr = COPY_EXPORTSTR (var);
3019
3020 copy->context = var->context;
3021 }
3022 return (copy);
3023}
3024#endif
3025
3026/* **************************************************************** */
3027/* */
3028/* Deleting and unsetting variables */
3029/* */
3030/* **************************************************************** */
3031
726f6388 3032/* Dispose of the information attached to VAR. */
3185942a
JA
3033static void
3034dispose_variable_value (var)
726f6388
JA
3035 SHELL_VAR *var;
3036{
726f6388 3037 if (function_p (var))
ccc6cda3
JA
3038 dispose_command (function_cell (var));
3039#if defined (ARRAY_VARS)
3040 else if (array_p (var))
7117c2d2 3041 array_dispose (array_cell (var));
3185942a
JA
3042 else if (assoc_p (var))
3043 assoc_dispose (assoc_cell (var));
ccc6cda3 3044#endif
ac50fbac
CR
3045 else if (nameref_p (var))
3046 FREE (nameref_cell (var));
ccc6cda3
JA
3047 else
3048 FREE (value_cell (var));
3185942a
JA
3049}
3050
3051void
3052dispose_variable (var)
3053 SHELL_VAR *var;
3054{
3055 if (var == 0)
3056 return;
3057
3058 if (nofree_p (var) == 0)
3059 dispose_variable_value (var);
726f6388 3060
bb70624e
JA
3061 FREE_EXPORTSTR (var);
3062
726f6388
JA
3063 free (var->name);
3064
3065 if (exported_p (var))
3066 array_needs_making = 1;
3067
3068 free (var);
3069}
3070
ac50fbac
CR
3071/* Unset the shell variable referenced by NAME. Unsetting a nameref variable
3072 unsets the variable it resolves to but leaves the nameref alone. */
ccc6cda3 3073int
726f6388 3074unbind_variable (name)
f73dda09 3075 const char *name;
726f6388 3076{
ac50fbac
CR
3077 SHELL_VAR *v, *nv;
3078 int r;
3079
3080 v = var_lookup (name, shell_variables);
3081 nv = (v && nameref_p (v)) ? find_variable_nameref (v) : (SHELL_VAR *)NULL;
3082
3083 r = nv ? makunbound (nv->name, shell_variables) : makunbound (name, shell_variables);
3084 return r;
3085}
3086
3087/* Unbind NAME, where NAME is assumed to be a nameref variable */
3088int
3089unbind_nameref (name)
3090 const char *name;
3091{
3092 SHELL_VAR *v;
3093
3094 v = var_lookup (name, shell_variables);
3095 if (v && nameref_p (v))
3096 return makunbound (name, shell_variables);
3097 return 0;
7117c2d2 3098}
726f6388 3099
7117c2d2
JA
3100/* Unset the shell function named NAME. */
3101int
3102unbind_func (name)
3103 const char *name;
3104{
3105 BUCKET_CONTENTS *elt;
3106 SHELL_VAR *func;
726f6388 3107
7117c2d2
JA
3108 elt = hash_remove (name, shell_functions, 0);
3109
3110 if (elt == 0)
3111 return -1;
3112
3113#if defined (PROGRAMMABLE_COMPLETION)
3114 set_itemlist_dirty (&it_functions);
ccc6cda3 3115#endif
7117c2d2
JA
3116
3117 func = (SHELL_VAR *)elt->data;
3118 if (func)
726f6388 3119 {
7117c2d2
JA
3120 if (exported_p (func))
3121 array_needs_making++;
3122 dispose_variable (func);
726f6388
JA
3123 }
3124
7117c2d2
JA
3125 free (elt->key);
3126 free (elt);
726f6388 3127
7117c2d2 3128 return 0;
726f6388
JA
3129}
3130
3185942a 3131#if defined (DEBUGGER)
b80f6443
JA
3132int
3133unbind_function_def (name)
3134 const char *name;
3135{
3136 BUCKET_CONTENTS *elt;
3137 FUNCTION_DEF *funcdef;
3138
3139 elt = hash_remove (name, shell_function_defs, 0);
3140
3141 if (elt == 0)
3142 return -1;
3143
3144 funcdef = (FUNCTION_DEF *)elt->data;
3145 if (funcdef)
3146 dispose_function_def (funcdef);
3147
3148 free (elt->key);
3149 free (elt);
3150
3151 return 0;
3152}
3185942a 3153#endif /* DEBUGGER */
b80f6443 3154
ac50fbac
CR
3155int
3156delete_var (name, vc)
3157 const char *name;
3158 VAR_CONTEXT *vc;
3159{
3160 BUCKET_CONTENTS *elt;
3161 SHELL_VAR *old_var;
3162 VAR_CONTEXT *v;
3163
3164 for (elt = (BUCKET_CONTENTS *)NULL, v = vc; v; v = v->down)
3165 if (elt = hash_remove (name, v->table, 0))
3166 break;
3167
3168 if (elt == 0)
3169 return (-1);
3170
3171 old_var = (SHELL_VAR *)elt->data;
3172 free (elt->key);
3173 free (elt);
3174
3175 dispose_variable (old_var);
3176 return (0);
3177}
3178
726f6388
JA
3179/* Make the variable associated with NAME go away. HASH_LIST is the
3180 hash table from which this variable should be deleted (either
3181 shell_variables or shell_functions).
3182 Returns non-zero if the variable couldn't be found. */
ccc6cda3 3183int
7117c2d2 3184makunbound (name, vc)
f73dda09 3185 const char *name;
7117c2d2 3186 VAR_CONTEXT *vc;
726f6388 3187{
d166f048 3188 BUCKET_CONTENTS *elt, *new_elt;
7117c2d2
JA
3189 SHELL_VAR *old_var;
3190 VAR_CONTEXT *v;
726f6388
JA
3191 char *t;
3192
7117c2d2
JA
3193 for (elt = (BUCKET_CONTENTS *)NULL, v = vc; v; v = v->down)
3194 if (elt = hash_remove (name, v->table, 0))
3195 break;
726f6388 3196
d166f048 3197 if (elt == 0)
726f6388
JA
3198 return (-1);
3199
3200 old_var = (SHELL_VAR *)elt->data;
726f6388
JA
3201
3202 if (old_var && exported_p (old_var))
3203 array_needs_making++;
3204
ccc6cda3 3205 /* If we're unsetting a local variable and we're still executing inside
7117c2d2
JA
3206 the function, just mark the variable as invisible. The function
3207 eventually called by pop_var_context() will clean it up later. This
3208 must be done so that if the variable is subsequently assigned a new
3209 value inside the function, the `local' attribute is still present.
3210 We also need to add it back into the correct hash table. */
ccc6cda3
JA
3211 if (old_var && local_p (old_var) && variable_context == old_var->context)
3212 {
3185942a
JA
3213 if (nofree_p (old_var))
3214 var_setvalue (old_var, (char *)NULL);
95732b49 3215#if defined (ARRAY_VARS)
3185942a 3216 else if (array_p (old_var))
95732b49 3217 array_dispose (array_cell (old_var));
3185942a
JA
3218 else if (assoc_p (old_var))
3219 assoc_dispose (assoc_cell (old_var));
95732b49 3220#endif
ac50fbac
CR
3221 else if (nameref_p (old_var))
3222 FREE (nameref_cell (old_var));
3185942a 3223 else
95732b49 3224 FREE (value_cell (old_var));
b80f6443 3225 /* Reset the attributes. Preserve the export attribute if the variable
3185942a
JA
3226 came from a temporary environment. Make sure it stays local, and
3227 make it invisible. */
b80f6443
JA
3228 old_var->attributes = (exported_p (old_var) && tempvar_p (old_var)) ? att_exported : 0;
3229 VSETATTR (old_var, att_local);
bb70624e 3230 VSETATTR (old_var, att_invisible);
7117c2d2 3231 var_setvalue (old_var, (char *)NULL);
bb70624e 3232 INVALIDATE_EXPORTSTR (old_var);
7117c2d2
JA
3233
3234 new_elt = hash_insert (savestring (old_var->name), v->table, 0);
3235 new_elt->data = (PTR_T)old_var;
ccc6cda3 3236 stupidly_hack_special_variables (old_var->name);
7117c2d2 3237
d166f048
JA
3238 free (elt->key);
3239 free (elt);
ccc6cda3
JA
3240 return (0);
3241 }
3242
726f6388
JA
3243 /* Have to save a copy of name here, because it might refer to
3244 old_var->name. If so, stupidly_hack_special_variables will
3245 reference freed memory. */
3246 t = savestring (name);
3247
3248 free (elt->key);
3249 free (elt);
3250
3251 dispose_variable (old_var);
3252 stupidly_hack_special_variables (t);
3253 free (t);
7117c2d2 3254
726f6388
JA
3255 return (0);
3256}
3257
7117c2d2
JA
3258/* Get rid of all of the variables in the current context. */
3259void
3260kill_all_local_variables ()
726f6388 3261{
7117c2d2
JA
3262 VAR_CONTEXT *vc;
3263
3264 for (vc = shell_variables; vc; vc = vc->down)
3265 if (vc_isfuncenv (vc) && vc->scope == variable_context)
3266 break;
3267 if (vc == 0)
3268 return; /* XXX */
726f6388 3269
7117c2d2 3270 if (vc->table && vc_haslocals (vc))
726f6388 3271 {
7117c2d2
JA
3272 delete_all_variables (vc->table);
3273 hash_dispose (vc->table);
726f6388 3274 }
7117c2d2 3275 vc->table = (HASH_TABLE *)NULL;
726f6388
JA
3276}
3277
ccc6cda3
JA
3278static void
3279free_variable_hash_data (data)
f73dda09 3280 PTR_T data;
ccc6cda3 3281{
7117c2d2 3282 SHELL_VAR *var;
ccc6cda3
JA
3283
3284 var = (SHELL_VAR *)data;
7117c2d2 3285 dispose_variable (var);
ccc6cda3
JA
3286}
3287
726f6388
JA
3288/* Delete the entire contents of the hash table. */
3289void
3290delete_all_variables (hashed_vars)
3291 HASH_TABLE *hashed_vars;
3292{
7117c2d2 3293 hash_flush (hashed_vars, free_variable_hash_data);
726f6388
JA
3294}
3295
7117c2d2
JA
3296/* **************************************************************** */
3297/* */
3298/* Setting variable attributes */
3299/* */
3300/* **************************************************************** */
726f6388 3301
ccc6cda3
JA
3302#define FIND_OR_MAKE_VARIABLE(name, entry) \
3303 do \
3304 { \
3305 entry = find_variable (name); \
3306 if (!entry) \
3307 { \
95732b49 3308 entry = bind_variable (name, "", 0); \
495aee44 3309 if (!no_invisible_vars && entry) entry->attributes |= att_invisible; \
ccc6cda3
JA
3310 } \
3311 } \
3312 while (0)
3313
3314/* Make the variable associated with NAME be readonly.
726f6388
JA
3315 If NAME does not exist yet, create it. */
3316void
3317set_var_read_only (name)
3318 char *name;
3319{
ccc6cda3 3320 SHELL_VAR *entry;
726f6388 3321
ccc6cda3 3322 FIND_OR_MAKE_VARIABLE (name, entry);
bb70624e 3323 VSETATTR (entry, att_readonly);
726f6388
JA
3324}
3325
cce855bc 3326#ifdef INCLUDE_UNUSED
ccc6cda3 3327/* Make the function associated with NAME be readonly.
726f6388
JA
3328 If NAME does not exist, we just punt, like auto_export code below. */
3329void
3330set_func_read_only (name)
f73dda09 3331 const char *name;
726f6388 3332{
d166f048 3333 SHELL_VAR *entry;
726f6388 3334
d166f048 3335 entry = find_function (name);
726f6388 3336 if (entry)
bb70624e 3337 VSETATTR (entry, att_readonly);
726f6388
JA
3338}
3339
3340/* Make the variable associated with NAME be auto-exported.
3341 If NAME does not exist yet, create it. */
3342void
3343set_var_auto_export (name)
3344 char *name;
3345{
ccc6cda3 3346 SHELL_VAR *entry;
726f6388 3347
ccc6cda3 3348 FIND_OR_MAKE_VARIABLE (name, entry);
726f6388
JA
3349 set_auto_export (entry);
3350}
3351
3352/* Make the function associated with NAME be auto-exported. */
3353void
3354set_func_auto_export (name)
f73dda09 3355 const char *name;
726f6388 3356{
ccc6cda3 3357 SHELL_VAR *entry;
726f6388 3358
ccc6cda3 3359 entry = find_function (name);
726f6388 3360 if (entry)
ccc6cda3
JA
3361 set_auto_export (entry);
3362}
cce855bc 3363#endif
ccc6cda3 3364
7117c2d2
JA
3365/* **************************************************************** */
3366/* */
3367/* Creating lists of variables */
3368/* */
3369/* **************************************************************** */
3370
3371static VARLIST *
3372vlist_alloc (nentries)
3373 int nentries;
726f6388 3374{
7117c2d2 3375 VARLIST *vlist;
726f6388 3376
7117c2d2
JA
3377 vlist = (VARLIST *)xmalloc (sizeof (VARLIST));
3378 vlist->list = (SHELL_VAR **)xmalloc ((nentries + 1) * sizeof (SHELL_VAR *));
3379 vlist->list_size = nentries;
3380 vlist->list_len = 0;
3381 vlist->list[0] = (SHELL_VAR *)NULL;
726f6388 3382
7117c2d2
JA
3383 return vlist;
3384}
726f6388 3385
7117c2d2
JA
3386static VARLIST *
3387vlist_realloc (vlist, n)
3388 VARLIST *vlist;
3389 int n;
3390{
3391 if (vlist == 0)
3392 return (vlist = vlist_alloc (n));
3393 if (n > vlist->list_size)
726f6388 3394 {
7117c2d2
JA
3395 vlist->list_size = n;
3396 vlist->list = (SHELL_VAR **)xrealloc (vlist->list, (vlist->list_size + 1) * sizeof (SHELL_VAR *));
3397 }
3398 return vlist;
3399}
726f6388 3400
7117c2d2
JA
3401static void
3402vlist_add (vlist, var, flags)
3403 VARLIST *vlist;
3404 SHELL_VAR *var;
3405 int flags;
3406{
3407 register int i;
ccc6cda3 3408
7117c2d2
JA
3409 for (i = 0; i < vlist->list_len; i++)
3410 if (STREQ (var->name, vlist->list[i]->name))
3411 break;
3412 if (i < vlist->list_len)
3413 return;
3414
3415 if (i >= vlist->list_size)
3416 vlist = vlist_realloc (vlist, vlist->list_size + 16);
726f6388 3417
7117c2d2
JA
3418 vlist->list[vlist->list_len++] = var;
3419 vlist->list[vlist->list_len] = (SHELL_VAR *)NULL;
3420}
3421
3422/* Map FUNCTION over the variables in VAR_HASH_TABLE. Return an array of the
3423 variables for which FUNCTION returns a non-zero value. A NULL value
3424 for FUNCTION means to use all variables. */
3425SHELL_VAR **
3426map_over (function, vc)
3427 sh_var_map_func_t *function;
3428 VAR_CONTEXT *vc;
3429{
3430 VAR_CONTEXT *v;
3431 VARLIST *vlist;
3432 SHELL_VAR **ret;
3433 int nentries;
3434
3435 for (nentries = 0, v = vc; v; v = v->down)
3436 nentries += HASH_ENTRIES (v->table);
3437
3438 if (nentries == 0)
3439 return (SHELL_VAR **)NULL;
3440
3441 vlist = vlist_alloc (nentries);
3442
3443 for (v = vc; v; v = v->down)
3444 flatten (v->table, function, vlist, 0);
3445
3446 ret = vlist->list;
3447 free (vlist);
3448 return ret;
3449}
3450
3451SHELL_VAR **
3452map_over_funcs (function)
3453 sh_var_map_func_t *function;
3454{
3455 VARLIST *vlist;
3456 SHELL_VAR **ret;
3457
3458 if (shell_functions == 0 || HASH_ENTRIES (shell_functions) == 0)
3459 return ((SHELL_VAR **)NULL);
3460
3461 vlist = vlist_alloc (HASH_ENTRIES (shell_functions));
3462
3463 flatten (shell_functions, function, vlist, 0);
3464
3465 ret = vlist->list;
3466 free (vlist);
3467 return ret;
3468}
3469
3470/* Flatten VAR_HASH_TABLE, applying FUNC to each member and adding those
3471 elements for which FUNC succeeds to VLIST->list. FLAGS is reserved
3472 for future use. Only unique names are added to VLIST. If FUNC is
3473 NULL, each variable in VAR_HASH_TABLE is added to VLIST. If VLIST is
3474 NULL, FUNC is applied to each SHELL_VAR in VAR_HASH_TABLE. If VLIST
3475 and FUNC are both NULL, nothing happens. */
3476static void
3477flatten (var_hash_table, func, vlist, flags)
3478 HASH_TABLE *var_hash_table;
3479 sh_var_map_func_t *func;
3480 VARLIST *vlist;
3481 int flags;
3482{
3483 register int i;
3484 register BUCKET_CONTENTS *tlist;
3485 int r;
3486 SHELL_VAR *var;
3487
3488 if (var_hash_table == 0 || (HASH_ENTRIES (var_hash_table) == 0) || (vlist == 0 && func == 0))
3489 return;
3490
3491 for (i = 0; i < var_hash_table->nbuckets; i++)
3492 {
3493 for (tlist = hash_items (i, var_hash_table); tlist; tlist = tlist->next)
3494 {
3495 var = (SHELL_VAR *)tlist->data;
3496
3497 r = func ? (*func) (var) : 1;
3498 if (r && vlist)
3499 vlist_add (vlist, var, flags);
3500 }
726f6388 3501 }
7117c2d2
JA
3502}
3503
3504void
3505sort_variables (array)
3506 SHELL_VAR **array;
3507{
3508 qsort (array, strvec_len ((char **)array), sizeof (SHELL_VAR *), (QSFUNC *)qsort_var_comp);
726f6388
JA
3509}
3510
3511static int
7117c2d2
JA
3512qsort_var_comp (var1, var2)
3513 SHELL_VAR **var1, **var2;
726f6388 3514{
7117c2d2
JA
3515 int result;
3516
3517 if ((result = (*var1)->name[0] - (*var2)->name[0]) == 0)
3518 result = strcmp ((*var1)->name, (*var2)->name);
3519
3520 return (result);
726f6388
JA
3521}
3522
7117c2d2
JA
3523/* Apply FUNC to each variable in SHELL_VARIABLES, adding each one for
3524 which FUNC succeeds to an array of SHELL_VAR *s. Returns the array. */
ccc6cda3 3525static SHELL_VAR **
7117c2d2
JA
3526vapply (func)
3527 sh_var_map_func_t *func;
726f6388
JA
3528{
3529 SHELL_VAR **list;
3530
7117c2d2 3531 list = map_over (func, shell_variables);
d166f048 3532 if (list /* && posixly_correct */)
726f6388 3533 sort_variables (list);
7117c2d2
JA
3534 return (list);
3535}
726f6388 3536
7117c2d2
JA
3537/* Apply FUNC to each variable in SHELL_FUNCTIONS, adding each one for
3538 which FUNC succeeds to an array of SHELL_VAR *s. Returns the array. */
3539static SHELL_VAR **
3540fapply (func)
3541 sh_var_map_func_t *func;
3542{
3543 SHELL_VAR **list;
3544
3545 list = map_over_funcs (func);
3546 if (list /* && posixly_correct */)
3547 sort_variables (list);
726f6388
JA
3548 return (list);
3549}
3550
7117c2d2
JA
3551/* Create a NULL terminated array of all the shell variables. */
3552SHELL_VAR **
3553all_shell_variables ()
3554{
3555 return (vapply ((sh_var_map_func_t *)NULL));
3556}
3557
3558/* Create a NULL terminated array of all the shell functions. */
3559SHELL_VAR **
3560all_shell_functions ()
3561{
3562 return (fapply ((sh_var_map_func_t *)NULL));
3563}
3564
3565static int
3566visible_var (var)
3567 SHELL_VAR *var;
3568{
3569 return (invisible_p (var) == 0);
3570}
3571
726f6388 3572SHELL_VAR **
bb70624e 3573all_visible_functions ()
726f6388 3574{
7117c2d2 3575 return (fapply (visible_var));
ccc6cda3 3576}
726f6388 3577
ccc6cda3 3578SHELL_VAR **
bb70624e 3579all_visible_variables ()
ccc6cda3 3580{
7117c2d2 3581 return (vapply (visible_var));
726f6388
JA
3582}
3583
ccc6cda3
JA
3584/* Return non-zero if the variable VAR is visible and exported. Array
3585 variables cannot be exported. */
726f6388
JA
3586static int
3587visible_and_exported (var)
3588 SHELL_VAR *var;
3589{
ccc6cda3 3590 return (invisible_p (var) == 0 && exported_p (var));
726f6388
JA
3591}
3592
89a92869
CR
3593/* Candidate variables for the export environment are either valid variables
3594 with the export attribute or invalid variables inherited from the initial
3595 environment and simply passed through. */
3596static int
3597export_environment_candidate (var)
3598 SHELL_VAR *var;
3599{
3600 return (exported_p (var) && (invisible_p (var) == 0 || imported_p (var)));
3601}
3602
7117c2d2
JA
3603/* Return non-zero if VAR is a local variable in the current context and
3604 is exported. */
3605static int
3606local_and_exported (var)
3607 SHELL_VAR *var;
3608{
3609 return (invisible_p (var) == 0 && local_p (var) && var->context == variable_context && exported_p (var));
3610}
3611
bb70624e
JA
3612SHELL_VAR **
3613all_exported_variables ()
3614{
7117c2d2
JA
3615 return (vapply (visible_and_exported));
3616}
bb70624e 3617
7117c2d2
JA
3618SHELL_VAR **
3619local_exported_variables ()
3620{
3621 return (vapply (local_and_exported));
3622}
3623
3624static int
3625variable_in_context (var)
3626 SHELL_VAR *var;
3627{
3628 return (invisible_p (var) == 0 && local_p (var) && var->context == variable_context);
3629}
3630
3631SHELL_VAR **
3632all_local_variables ()
3633{
3634 VARLIST *vlist;
3635 SHELL_VAR **ret;
3636 VAR_CONTEXT *vc;
3637
3638 vc = shell_variables;
3639 for (vc = shell_variables; vc; vc = vc->down)
3640 if (vc_isfuncenv (vc) && vc->scope == variable_context)
3641 break;
3642
3643 if (vc == 0)
3644 {
b80f6443 3645 internal_error (_("all_local_variables: no function context at current scope"));
7117c2d2
JA
3646 return (SHELL_VAR **)NULL;
3647 }
3648 if (vc->table == 0 || HASH_ENTRIES (vc->table) == 0 || vc_haslocals (vc) == 0)
3649 return (SHELL_VAR **)NULL;
3650
3651 vlist = vlist_alloc (HASH_ENTRIES (vc->table));
3652
3653 flatten (vc->table, variable_in_context, vlist, 0);
3654
3655 ret = vlist->list;
3656 free (vlist);
3657 if (ret)
3658 sort_variables (ret);
3659 return ret;
bb70624e
JA
3660}
3661
3662#if defined (ARRAY_VARS)
3663/* Return non-zero if the variable VAR is visible and an array. */
3664static int
3665visible_array_vars (var)
3666 SHELL_VAR *var;
3667{
3668 return (invisible_p (var) == 0 && array_p (var));
3669}
3670
3671SHELL_VAR **
3672all_array_variables ()
3673{
7117c2d2 3674 return (vapply (visible_array_vars));
bb70624e
JA
3675}
3676#endif /* ARRAY_VARS */
3677
3678char **
3679all_variables_matching_prefix (prefix)
f73dda09 3680 const char *prefix;
bb70624e
JA
3681{
3682 SHELL_VAR **varlist;
3683 char **rlist;
3684 int vind, rind, plen;
3685
3686 plen = STRLEN (prefix);
3687 varlist = all_visible_variables ();
3688 for (vind = 0; varlist && varlist[vind]; vind++)
3689 ;
3690 if (varlist == 0 || vind == 0)
3691 return ((char **)NULL);
7117c2d2 3692 rlist = strvec_create (vind + 1);
bb70624e
JA
3693 for (vind = rind = 0; varlist[vind]; vind++)
3694 {
3695 if (plen == 0 || STREQN (prefix, varlist[vind]->name, plen))
28ef6c31 3696 rlist[rind++] = savestring (varlist[vind]->name);
bb70624e
JA
3697 }
3698 rlist[rind] = (char *)0;
3699 free (varlist);
3700
3701 return rlist;
3702}
3703
7117c2d2
JA
3704/* **************************************************************** */
3705/* */
3706/* Managing temporary variable scopes */
3707/* */
3708/* **************************************************************** */
3709
3710/* Make variable NAME have VALUE in the temporary environment. */
3711static SHELL_VAR *
3712bind_tempenv_variable (name, value)
3713 const char *name;
3714 char *value;
3715{
3716 SHELL_VAR *var;
3717
3718 var = temporary_env ? hash_lookup (name, temporary_env) : (SHELL_VAR *)NULL;
3719
3720 if (var)
3721 {
3722 FREE (value_cell (var));
3723 var_setvalue (var, savestring (value));
3724 INVALIDATE_EXPORTSTR (var);
3725 }
3726
3727 return (var);
3728}
3729
3730/* Find a variable in the temporary environment that is named NAME.
3731 Return the SHELL_VAR *, or NULL if not found. */
3732SHELL_VAR *
3733find_tempenv_variable (name)
3734 const char *name;
3735{
3736 return (temporary_env ? hash_lookup (name, temporary_env) : (SHELL_VAR *)NULL);
3737}
3738
495aee44
CR
3739char **tempvar_list;
3740int tvlist_ind;
3741
7117c2d2
JA
3742/* Push the variable described by (SHELL_VAR *)DATA down to the next
3743 variable context from the temporary environment. */
3744static void
3745push_temp_var (data)
3746 PTR_T data;
3747{
3748 SHELL_VAR *var, *v;
3749 HASH_TABLE *binding_table;
3750
3751 var = (SHELL_VAR *)data;
3752
3753 binding_table = shell_variables->table;
3754 if (binding_table == 0)
3755 {
3756 if (shell_variables == global_variables)
3757 /* shouldn't happen */
3758 binding_table = shell_variables->table = global_variables->table = hash_create (0);
3759 else
3760 binding_table = shell_variables->table = hash_create (TEMPENV_HASH_BUCKETS);
3761 }
3762
95732b49 3763 v = bind_variable_internal (var->name, value_cell (var), binding_table, 0, 0);
7117c2d2
JA
3764
3765 /* XXX - should we set the context here? It shouldn't matter because of how
3766 assign_in_env works, but might want to check. */
3767 if (binding_table == global_variables->table) /* XXX */
3768 var->attributes &= ~(att_tempvar|att_propagate);
3769 else
3770 {
3771 var->attributes |= att_propagate;
3772 if (binding_table == shell_variables->table)
3773 shell_variables->flags |= VC_HASTMPVAR;
3774 }
3775 v->attributes |= var->attributes;
3776
495aee44
CR
3777 if (find_special_var (var->name) >= 0)
3778 tempvar_list[tvlist_ind++] = savestring (var->name);
3779
7117c2d2
JA
3780 dispose_variable (var);
3781}
3782
3783static void
3784propagate_temp_var (data)
3785 PTR_T data;
3786{
3787 SHELL_VAR *var;
3788
3789 var = (SHELL_VAR *)data;
3790 if (tempvar_p (var) && (var->attributes & att_propagate))
3791 push_temp_var (data);
3792 else
495aee44
CR
3793 {
3794 if (find_special_var (var->name) >= 0)
3795 tempvar_list[tvlist_ind++] = savestring (var->name);
3796 dispose_variable (var);
3797 }
7117c2d2
JA
3798}
3799
3800/* Free the storage used in the hash table for temporary
3801 environment variables. PUSHF is a function to be called
3802 to free each hash table entry. It takes care of pushing variables
495aee44
CR
3803 to previous scopes if appropriate. PUSHF stores names of variables
3804 that require special handling (e.g., IFS) on tempvar_list, so this
3805 function can call stupidly_hack_special_variables on all the
3806 variables in the list when the temporary hash table is destroyed. */
7117c2d2
JA
3807static void
3808dispose_temporary_env (pushf)
3809 sh_free_func_t *pushf;
3810{
495aee44
CR
3811 int i;
3812
3813 tempvar_list = strvec_create (HASH_ENTRIES (temporary_env) + 1);
3814 tempvar_list[tvlist_ind = 0] = 0;
3815
7117c2d2
JA
3816 hash_flush (temporary_env, pushf);
3817 hash_dispose (temporary_env);
3185942a 3818 temporary_env = (HASH_TABLE *)NULL;
7117c2d2 3819
495aee44
CR
3820 tempvar_list[tvlist_ind] = 0;
3821
7117c2d2
JA
3822 array_needs_making = 1;
3823
495aee44
CR
3824#if 0
3825 sv_ifs ("IFS"); /* XXX here for now -- check setifs in assign_in_env */
3826#endif
3827 for (i = 0; i < tvlist_ind; i++)
3828 stupidly_hack_special_variables (tempvar_list[i]);
3829
3830 strvec_dispose (tempvar_list);
3831 tempvar_list = 0;
3832 tvlist_ind = 0;
7117c2d2
JA
3833}
3834
3835void
3836dispose_used_env_vars ()
3837{
3838 if (temporary_env)
0628567a
JA
3839 {
3840 dispose_temporary_env (propagate_temp_var);
3841 maybe_make_export_env ();
3842 }
7117c2d2
JA
3843}
3844
3845/* Take all of the shell variables in the temporary environment HASH_TABLE
3846 and make shell variables from them at the current variable context. */
3847void
3848merge_temporary_env ()
3849{
3850 if (temporary_env)
3851 dispose_temporary_env (push_temp_var);
3852}
3853
3854/* **************************************************************** */
3855/* */
3856/* Creating and manipulating the environment */
3857/* */
3858/* **************************************************************** */
3859
bb70624e
JA
3860static inline char *
3861mk_env_string (name, value)
f73dda09 3862 const char *name, *value;
bb70624e
JA
3863{
3864 int name_len, value_len;
3865 char *p;
3866
3867 name_len = strlen (name);
3868 value_len = STRLEN (value);
f73dda09 3869 p = (char *)xmalloc (2 + name_len + value_len);
bb70624e
JA
3870 strcpy (p, name);
3871 p[name_len] = '=';
3872 if (value && *value)
3873 strcpy (p + name_len + 1, value);
3874 else
3875 p[name_len + 1] = '\0';
3876 return (p);
3877}
3878
f73dda09 3879#ifdef DEBUG
bb70624e
JA
3880/* Debugging */
3881static int
3882valid_exportstr (v)
3883 SHELL_VAR *v;
3884{
3885 char *s;
3886
3887 s = v->exportstr;
0001803f
CR
3888 if (s == 0)
3889 {
3890 internal_error (_("%s has null exportstr"), v->name);
3891 return (0);
3892 }
f73dda09 3893 if (legal_variable_starter ((unsigned char)*s) == 0)
bb70624e 3894 {
b80f6443 3895 internal_error (_("invalid character %d in exportstr for %s"), *s, v->name);
bb70624e
JA
3896 return (0);
3897 }
3898 for (s = v->exportstr + 1; s && *s; s++)
3899 {
3900 if (*s == '=')
28ef6c31 3901 break;
f73dda09 3902 if (legal_variable_char ((unsigned char)*s) == 0)
bb70624e 3903 {
b80f6443 3904 internal_error (_("invalid character %d in exportstr for %s"), *s, v->name);
bb70624e
JA
3905 return (0);
3906 }
3907 }
3908 if (*s != '=')
3909 {
b80f6443 3910 internal_error (_("no `=' in exportstr for %s"), v->name);
bb70624e
JA
3911 return (0);
3912 }
3913 return (1);
3914}
f73dda09 3915#endif
bb70624e 3916
7117c2d2
JA
3917static char **
3918make_env_array_from_var_list (vars)
3919 SHELL_VAR **vars;
726f6388
JA
3920{
3921 register int i, list_index;
3922 register SHELL_VAR *var;
ccc6cda3 3923 char **list, *value;
726f6388 3924
7117c2d2 3925 list = strvec_create ((1 + strvec_len ((char **)vars)));
bb70624e
JA
3926
3927#define USE_EXPORTSTR (value == var->exportstr)
726f6388
JA
3928
3929 for (i = 0, list_index = 0; var = vars[i]; i++)
3930 {
28ef6c31
JA
3931#if defined (__CYGWIN__)
3932 /* We don't use the exportstr stuff on Cygwin at all. */
3933 INVALIDATE_EXPORTSTR (var);
bb70624e 3934#endif
28ef6c31
JA
3935 if (var->exportstr)
3936 value = var->exportstr;
bb70624e 3937 else if (function_p (var))
ccc6cda3
JA
3938 value = named_function_string ((char *)NULL, function_cell (var), 0);
3939#if defined (ARRAY_VARS)
3940 else if (array_p (var))
ac50fbac 3941# if ARRAY_EXPORT
ccc6cda3
JA
3942 value = array_to_assignment_string (array_cell (var));
3943# else
3944 continue; /* XXX array vars cannot yet be exported */
ac50fbac 3945# endif /* ARRAY_EXPORT */
3185942a
JA
3946 else if (assoc_p (var))
3947# if 0
3948 value = assoc_to_assignment_string (assoc_cell (var));
3949# else
3950 continue; /* XXX associative array vars cannot yet be exported */
ccc6cda3
JA
3951# endif
3952#endif
726f6388
JA
3953 else
3954 value = value_cell (var);
3955
3956 if (value)
3957 {
bb70624e
JA
3958 /* Gee, I'd like to get away with not using savestring() if we're
3959 using the cached exportstr... */
3960 list[list_index] = USE_EXPORTSTR ? savestring (value)
3961 : mk_env_string (var->name, value);
3962
7117c2d2
JA
3963 if (USE_EXPORTSTR == 0)
3964 SAVE_EXPORTSTR (var, list[list_index]);
3965
726f6388 3966 list_index++;
bb70624e
JA
3967#undef USE_EXPORTSTR
3968
3969#if 0 /* not yet */
ccc6cda3 3970#if defined (ARRAY_VARS)
3185942a 3971 if (array_p (var) || assoc_p (var))
ccc6cda3 3972 free (value);
bb70624e 3973#endif
ccc6cda3 3974#endif
726f6388
JA
3975 }
3976 }
3977
726f6388
JA
3978 list[list_index] = (char *)NULL;
3979 return (list);
3980}
3981
7117c2d2
JA
3982/* Make an array of assignment statements from the hash table
3983 HASHED_VARS which contains SHELL_VARs. Only visible, exported
3984 variables are eligible. */
3985static char **
3986make_var_export_array (vcxt)
3987 VAR_CONTEXT *vcxt;
726f6388 3988{
7117c2d2
JA
3989 char **list;
3990 SHELL_VAR **vars;
726f6388 3991
89a92869 3992#if 0
7117c2d2 3993 vars = map_over (visible_and_exported, vcxt);
89a92869
CR
3994#else
3995 vars = map_over (export_environment_candidate, vcxt);
3996#endif
726f6388 3997
7117c2d2
JA
3998 if (vars == 0)
3999 return (char **)NULL;
ccc6cda3 4000
7117c2d2 4001 list = make_env_array_from_var_list (vars);
ccc6cda3 4002
7117c2d2
JA
4003 free (vars);
4004 return (list);
ccc6cda3
JA
4005}
4006
7117c2d2
JA
4007static char **
4008make_func_export_array ()
726f6388 4009{
7117c2d2
JA
4010 char **list;
4011 SHELL_VAR **vars;
ccc6cda3 4012
7117c2d2
JA
4013 vars = map_over_funcs (visible_and_exported);
4014 if (vars == 0)
4015 return (char **)NULL;
726f6388 4016
7117c2d2 4017 list = make_env_array_from_var_list (vars);
28ef6c31 4018
7117c2d2
JA
4019 free (vars);
4020 return (list);
bb70624e
JA
4021}
4022
d166f048
JA
4023/* Add ENVSTR to the end of the exported environment, EXPORT_ENV. */
4024#define add_to_export_env(envstr,do_alloc) \
4025do \
4026 { \
4027 if (export_env_index >= (export_env_size - 1)) \
4028 { \
4029 export_env_size += 16; \
7117c2d2 4030 export_env = strvec_resize (export_env, export_env_size); \
95732b49 4031 environ = export_env; \
d166f048
JA
4032 } \
4033 export_env[export_env_index++] = (do_alloc) ? savestring (envstr) : envstr; \
4034 export_env[export_env_index] = (char *)NULL; \
4035 } while (0)
4036
d166f048
JA
4037/* Add ASSIGN to EXPORT_ENV, or supercede a previous assignment in the
4038 array with the same left-hand side. Return the new EXPORT_ENV. */
726f6388 4039char **
d166f048 4040add_or_supercede_exported_var (assign, do_alloc)
726f6388 4041 char *assign;
d166f048 4042 int do_alloc;
726f6388
JA
4043{
4044 register int i;
d166f048 4045 int equal_offset;
726f6388 4046
b80f6443 4047 equal_offset = assignment (assign, 0);
d166f048
JA
4048 if (equal_offset == 0)
4049 return (export_env);
726f6388 4050
7117c2d2
JA
4051 /* If this is a function, then only supersede the function definition.
4052 We do this by including the `=() {' in the comparison, like
4053 initialize_shell_variables does. */
4054 if (assign[equal_offset + 1] == '(' &&
4055 strncmp (assign + equal_offset + 2, ") {", 3) == 0) /* } */
4056 equal_offset += 4;
726f6388 4057
d166f048 4058 for (i = 0; i < export_env_index; i++)
726f6388 4059 {
d166f048 4060 if (STREQN (assign, export_env[i], equal_offset + 1))
726f6388 4061 {
d166f048
JA
4062 free (export_env[i]);
4063 export_env[i] = do_alloc ? savestring (assign) : assign;
4064 return (export_env);
726f6388
JA
4065 }
4066 }
d166f048
JA
4067 add_to_export_env (assign, do_alloc);
4068 return (export_env);
726f6388
JA
4069}
4070
7117c2d2
JA
4071static void
4072add_temp_array_to_env (temp_array, do_alloc, do_supercede)
4073 char **temp_array;
4074 int do_alloc, do_supercede;
4075{
4076 register int i;
4077
4078 if (temp_array == 0)
4079 return;
4080
4081 for (i = 0; temp_array[i]; i++)
4082 {
4083 if (do_supercede)
4084 export_env = add_or_supercede_exported_var (temp_array[i], do_alloc);
4085 else
4086 add_to_export_env (temp_array[i], do_alloc);
4087 }
4088
4089 free (temp_array);
4090}
4091
d166f048 4092/* Make the environment array for the command about to be executed, if the
726f6388
JA
4093 array needs making. Otherwise, do nothing. If a shell action could
4094 change the array that commands receive for their environment, then the
7117c2d2
JA
4095 code should `array_needs_making++'.
4096
4097 The order to add to the array is:
4098 temporary_env
4099 list of var contexts whose head is shell_variables
4100 shell_functions
4101
4102 This is the shell variable lookup order. We add only new variable
4103 names at each step, which allows local variables and variables in
4104 the temporary environments to shadow variables in the global (or
4105 any previous) scope.
4106*/
4107
4108static int
4109n_shell_variables ()
4110{
4111 VAR_CONTEXT *vc;
4112 int n;
4113
4114 for (n = 0, vc = shell_variables; vc; vc = vc->down)
4115 n += HASH_ENTRIES (vc->table);
4116 return n;
4117}
4118
2bbe8058
CR
4119int
4120chkexport (name)
4121 char *name;
4122{
4123 SHELL_VAR *v;
4124
4125 v = find_variable (name);
eafc91a3 4126 if (v && exported_p (v))
2bbe8058
CR
4127 {
4128 array_needs_making = 1;
4129 maybe_make_export_env ();
4130 return 1;
4131 }
4132 return 0;
4133}
4134
726f6388
JA
4135void
4136maybe_make_export_env ()
4137{
726f6388 4138 register char **temp_array;
d166f048 4139 int new_size;
7117c2d2 4140 VAR_CONTEXT *tcxt;
726f6388
JA
4141
4142 if (array_needs_making)
4143 {
4144 if (export_env)
3185942a 4145 strvec_flush (export_env);
d166f048
JA
4146
4147 /* Make a guess based on how many shell variables and functions we
4148 have. Since there will always be array variables, and array
4149 variables are not (yet) exported, this will always be big enough
7117c2d2
JA
4150 for the exported variables and functions. */
4151 new_size = n_shell_variables () + HASH_ENTRIES (shell_functions) + 1 +
4152 HASH_ENTRIES (temporary_env);
d166f048
JA
4153 if (new_size > export_env_size)
4154 {
4155 export_env_size = new_size;
7117c2d2 4156 export_env = strvec_resize (export_env, export_env_size);
95732b49 4157 environ = export_env;
d166f048
JA
4158 }
4159 export_env[export_env_index = 0] = (char *)NULL;
726f6388 4160
0001803f 4161 /* Make a dummy variable context from the temporary_env, stick it on
3185942a
JA
4162 the front of shell_variables, call make_var_export_array on the
4163 whole thing to flatten it, and convert the list of SHELL_VAR *s
4164 to the form needed by the environment. */
7117c2d2 4165 if (temporary_env)
3185942a
JA
4166 {
4167 tcxt = new_var_context ((char *)NULL, 0);
4168 tcxt->table = temporary_env;
4169 tcxt->down = shell_variables;
4170 }
7117c2d2 4171 else
3185942a 4172 tcxt = shell_variables;
7117c2d2
JA
4173
4174 temp_array = make_var_export_array (tcxt);
d166f048 4175 if (temp_array)
7117c2d2
JA
4176 add_temp_array_to_env (temp_array, 0, 0);
4177
4178 if (tcxt != shell_variables)
3185942a 4179 free (tcxt);
726f6388 4180
f73dda09
JA
4181#if defined (RESTRICTED_SHELL)
4182 /* Restricted shells may not export shell functions. */
7117c2d2 4183 temp_array = restricted ? (char **)0 : make_func_export_array ();
f73dda09 4184#else
7117c2d2 4185 temp_array = make_func_export_array ();
f73dda09 4186#endif
d166f048 4187 if (temp_array)
7117c2d2 4188 add_temp_array_to_env (temp_array, 0, 0);
726f6388
JA
4189
4190 array_needs_making = 0;
4191 }
4192}
4193
b72432fd
JA
4194/* This is an efficiency hack. PWD and OLDPWD are auto-exported, so
4195 we will need to remake the exported environment every time we
4196 change directories. `_' is always put into the environment for
4197 every external command, so without special treatment it will always
4198 cause the environment to be remade.
4199
4200 If there is no other reason to make the exported environment, we can
4201 just update the variables in place and mark the exported environment
4202 as no longer needing a remake. */
4203void
4204update_export_env_inplace (env_prefix, preflen, value)
4205 char *env_prefix;
4206 int preflen;
4207 char *value;
4208{
4209 char *evar;
4210
f73dda09 4211 evar = (char *)xmalloc (STRLEN (value) + preflen + 1);
b72432fd
JA
4212 strcpy (evar, env_prefix);
4213 if (value)
4214 strcpy (evar + preflen, value);
4215 export_env = add_or_supercede_exported_var (evar, 0);
4216}
4217
726f6388
JA
4218/* We always put _ in the environment as the name of this command. */
4219void
4220put_command_name_into_env (command_name)
4221 char *command_name;
4222{
b72432fd 4223 update_export_env_inplace ("_=", 2, command_name);
726f6388
JA
4224}
4225
7117c2d2
JA
4226/* **************************************************************** */
4227/* */
4228/* Managing variable contexts */
4229/* */
4230/* **************************************************************** */
4231
4232/* Allocate and return a new variable context with NAME and FLAGS.
4233 NAME can be NULL. */
726f6388 4234
7117c2d2
JA
4235VAR_CONTEXT *
4236new_var_context (name, flags)
4237 char *name;
4238 int flags;
4239{
4240 VAR_CONTEXT *vc;
4241
4242 vc = (VAR_CONTEXT *)xmalloc (sizeof (VAR_CONTEXT));
4243 vc->name = name ? savestring (name) : (char *)NULL;
4244 vc->scope = variable_context;
4245 vc->flags = flags;
4246
4247 vc->up = vc->down = (VAR_CONTEXT *)NULL;
4248 vc->table = (HASH_TABLE *)NULL;
4249
4250 return vc;
4251}
4252
4253/* Free a variable context and its data, including the hash table. Dispose
4254 all of the variables. */
4255void
4256dispose_var_context (vc)
4257 VAR_CONTEXT *vc;
4258{
4259 FREE (vc->name);
4260
4261 if (vc->table)
4262 {
4263 delete_all_variables (vc->table);
4264 hash_dispose (vc->table);
4265 }
4266
4267 free (vc);
4268}
4269
4270/* Set VAR's scope level to the current variable context. */
4271static int
4272set_context (var)
4273 SHELL_VAR *var;
4274{
4275 return (var->context = variable_context);
4276}
4277
4278/* Make a new variable context with NAME and FLAGS and a HASH_TABLE of
4279 temporary variables, and push it onto shell_variables. This is
4280 for shell functions. */
4281VAR_CONTEXT *
4282push_var_context (name, flags, tempvars)
4283 char *name;
4284 int flags;
4285 HASH_TABLE *tempvars;
4286{
4287 VAR_CONTEXT *vc;
4288
4289 vc = new_var_context (name, flags);
4290 vc->table = tempvars;
4291 if (tempvars)
4292 {
4293 /* Have to do this because the temp environment was created before
4294 variable_context was incremented. */
4295 flatten (tempvars, set_context, (VARLIST *)NULL, 0);
4296 vc->flags |= VC_HASTMPVAR;
4297 }
4298 vc->down = shell_variables;
4299 shell_variables->up = vc;
4300
4301 return (shell_variables = vc);
4302}
4303
4304static void
4305push_func_var (data)
4306 PTR_T data;
4307{
4308 SHELL_VAR *var, *v;
4309
4310 var = (SHELL_VAR *)data;
4311
4312 if (tempvar_p (var) && (posixly_correct || (var->attributes & att_propagate)))
4313 {
30d188c2
CR
4314 /* Make sure we have a hash table to store the variable in while it is
4315 being propagated down to the global variables table. Create one if
4316 we have to */
4317 if ((vc_isfuncenv (shell_variables) || vc_istempenv (shell_variables)) && shell_variables->table == 0)
4318 shell_variables->table = hash_create (0);
7117c2d2 4319 /* XXX - should we set v->context here? */
95732b49 4320 v = bind_variable_internal (var->name, value_cell (var), shell_variables->table, 0, 0);
7117c2d2
JA
4321 if (shell_variables == global_variables)
4322 var->attributes &= ~(att_tempvar|att_propagate);
4323 else
f1be666c 4324 shell_variables->flags |= VC_HASTMPVAR;
7117c2d2
JA
4325 v->attributes |= var->attributes;
4326 }
f1be666c
JA
4327 else
4328 stupidly_hack_special_variables (var->name); /* XXX */
7117c2d2
JA
4329
4330 dispose_variable (var);
4331}
4332
4333/* Pop the top context off of VCXT and dispose of it, returning the rest of
4334 the stack. */
4335void
4336pop_var_context ()
4337{
4338 VAR_CONTEXT *ret, *vcxt;
4339
4340 vcxt = shell_variables;
4341 if (vc_isfuncenv (vcxt) == 0)
4342 {
b80f6443 4343 internal_error (_("pop_var_context: head of shell_variables not a function context"));
7117c2d2
JA
4344 return;
4345 }
4346
4347 if (ret = vcxt->down)
4348 {
4349 ret->up = (VAR_CONTEXT *)NULL;
4350 shell_variables = ret;
4351 if (vcxt->table)
4352 hash_flush (vcxt->table, push_func_var);
4353 dispose_var_context (vcxt);
4354 }
4355 else
b80f6443 4356 internal_error (_("pop_var_context: no global_variables context"));
7117c2d2
JA
4357}
4358
4359/* Delete the HASH_TABLEs for all variable contexts beginning at VCXT, and
4360 all of the VAR_CONTEXTs except GLOBAL_VARIABLES. */
4361void
4362delete_all_contexts (vcxt)
4363 VAR_CONTEXT *vcxt;
4364{
4365 VAR_CONTEXT *v, *t;
4366
4367 for (v = vcxt; v != global_variables; v = t)
4368 {
4369 t = v->down;
4370 dispose_var_context (v);
3185942a 4371 }
7117c2d2
JA
4372
4373 delete_all_variables (global_variables->table);
4374 shell_variables = global_variables;
4375}
4376
4377/* **************************************************************** */
4378/* */
4379/* Pushing and Popping temporary variable scopes */
4380/* */
4381/* **************************************************************** */
4382
4383VAR_CONTEXT *
4384push_scope (flags, tmpvars)
4385 int flags;
4386 HASH_TABLE *tmpvars;
4387{
4388 return (push_var_context ((char *)NULL, flags, tmpvars));
4389}
4390
4391static void
4392push_exported_var (data)
4393 PTR_T data;
4394{
4395 SHELL_VAR *var, *v;
4396
4397 var = (SHELL_VAR *)data;
4398
4399 /* If a temp var had its export attribute set, or it's marked to be
4400 propagated, bind it in the previous scope before disposing it. */
95732b49
JA
4401 /* XXX - This isn't exactly right, because all tempenv variables have the
4402 export attribute set. */
4403#if 0
7117c2d2 4404 if (exported_p (var) || (var->attributes & att_propagate))
95732b49
JA
4405#else
4406 if (tempvar_p (var) && exported_p (var) && (var->attributes & att_propagate))
4407#endif
7117c2d2
JA
4408 {
4409 var->attributes &= ~att_tempvar; /* XXX */
95732b49 4410 v = bind_variable_internal (var->name, value_cell (var), shell_variables->table, 0, 0);
7117c2d2
JA
4411 if (shell_variables == global_variables)
4412 var->attributes &= ~att_propagate;
4413 v->attributes |= var->attributes;
4414 }
f1be666c
JA
4415 else
4416 stupidly_hack_special_variables (var->name); /* XXX */
7117c2d2
JA
4417
4418 dispose_variable (var);
4419}
4420
4421void
4422pop_scope (is_special)
4423 int is_special;
4424{
4425 VAR_CONTEXT *vcxt, *ret;
4426
4427 vcxt = shell_variables;
4428 if (vc_istempscope (vcxt) == 0)
4429 {
b80f6443 4430 internal_error (_("pop_scope: head of shell_variables not a temporary environment scope"));
7117c2d2
JA
4431 return;
4432 }
4433
4434 ret = vcxt->down;
4435 if (ret)
4436 ret->up = (VAR_CONTEXT *)NULL;
4437
4438 shell_variables = ret;
4439
4440 /* Now we can take care of merging variables in VCXT into set of scopes
4441 whose head is RET (shell_variables). */
4442 FREE (vcxt->name);
4443 if (vcxt->table)
4444 {
4445 if (is_special)
4446 hash_flush (vcxt->table, push_func_var);
4447 else
4448 hash_flush (vcxt->table, push_exported_var);
4449 hash_dispose (vcxt->table);
4450 }
4451 free (vcxt);
4452
4453 sv_ifs ("IFS"); /* XXX here for now */
4454}
4455
4456/* **************************************************************** */
4457/* */
4458/* Pushing and Popping function contexts */
4459/* */
4460/* **************************************************************** */
4461
4462static WORD_LIST **dollar_arg_stack = (WORD_LIST **)NULL;
4463static int dollar_arg_stack_slots;
4464static int dollar_arg_stack_index;
4465
4466/* XXX - we might want to consider pushing and popping the `getopts' state
4467 when we modify the positional parameters. */
4468void
4469push_context (name, is_subshell, tempvars)
4470 char *name; /* function name */
4471 int is_subshell;
4472 HASH_TABLE *tempvars;
4473{
4474 if (is_subshell == 0)
4475 push_dollar_vars ();
4476 variable_context++;
4477 push_var_context (name, VC_FUNCENV, tempvars);
4478}
4479
4480/* Only called when subshell == 0, so we don't need to check, and can
4481 unconditionally pop the dollar vars off the stack. */
4482void
4483pop_context ()
726f6388 4484{
7117c2d2
JA
4485 pop_dollar_vars ();
4486 variable_context--;
4487 pop_var_context ();
726f6388 4488
7117c2d2
JA
4489 sv_ifs ("IFS"); /* XXX here for now */
4490}
726f6388 4491
7117c2d2
JA
4492/* Save the existing positional parameters on a stack. */
4493void
4494push_dollar_vars ()
4495{
4496 if (dollar_arg_stack_index + 2 > dollar_arg_stack_slots)
4497 {
4498 dollar_arg_stack = (WORD_LIST **)
4499 xrealloc (dollar_arg_stack, (dollar_arg_stack_slots += 10)
ac50fbac 4500 * sizeof (WORD_LIST *));
7117c2d2
JA
4501 }
4502 dollar_arg_stack[dollar_arg_stack_index++] = list_rest_of_args ();
4503 dollar_arg_stack[dollar_arg_stack_index] = (WORD_LIST *)NULL;
4504}
726f6388 4505
7117c2d2
JA
4506/* Restore the positional parameters from our stack. */
4507void
4508pop_dollar_vars ()
4509{
4510 if (!dollar_arg_stack || dollar_arg_stack_index == 0)
4511 return;
726f6388 4512
7117c2d2
JA
4513 remember_args (dollar_arg_stack[--dollar_arg_stack_index], 1);
4514 dispose_words (dollar_arg_stack[dollar_arg_stack_index]);
4515 dollar_arg_stack[dollar_arg_stack_index] = (WORD_LIST *)NULL;
4516 set_dollar_vars_unchanged ();
4517}
ccc6cda3 4518
7117c2d2
JA
4519void
4520dispose_saved_dollar_vars ()
4521{
4522 if (!dollar_arg_stack || dollar_arg_stack_index == 0)
4523 return;
726f6388 4524
7117c2d2
JA
4525 dispose_words (dollar_arg_stack[dollar_arg_stack_index]);
4526 dollar_arg_stack[dollar_arg_stack_index] = (WORD_LIST *)NULL;
726f6388 4527}
cce855bc 4528
b80f6443
JA
4529/* Manipulate the special BASH_ARGV and BASH_ARGC variables. */
4530
4531void
4532push_args (list)
4533 WORD_LIST *list;
4534{
4535#if defined (ARRAY_VARS) && defined (DEBUGGER)
4536 SHELL_VAR *bash_argv_v, *bash_argc_v;
4537 ARRAY *bash_argv_a, *bash_argc_a;
4538 WORD_LIST *l;
4539 arrayind_t i;
4540 char *t;
4541
4542 GET_ARRAY_FROM_VAR ("BASH_ARGV", bash_argv_v, bash_argv_a);
4543 GET_ARRAY_FROM_VAR ("BASH_ARGC", bash_argc_v, bash_argc_a);
4544
4545 for (l = list, i = 0; l; l = l->next, i++)
4546 array_push (bash_argv_a, l->word->word);
4547
4548 t = itos (i);
4549 array_push (bash_argc_a, t);
4550 free (t);
4551#endif /* ARRAY_VARS && DEBUGGER */
4552}
4553
4554/* Remove arguments from BASH_ARGV array. Pop top element off BASH_ARGC
4555 array and use that value as the count of elements to remove from
4556 BASH_ARGV. */
4557void
4558pop_args ()
4559{
4560#if defined (ARRAY_VARS) && defined (DEBUGGER)
4561 SHELL_VAR *bash_argv_v, *bash_argc_v;
4562 ARRAY *bash_argv_a, *bash_argc_a;
4563 ARRAY_ELEMENT *ce;
4564 intmax_t i;
4565
4566 GET_ARRAY_FROM_VAR ("BASH_ARGV", bash_argv_v, bash_argv_a);
4567 GET_ARRAY_FROM_VAR ("BASH_ARGC", bash_argc_v, bash_argc_a);
4568
4569 ce = array_shift (bash_argc_a, 1, 0);
4570 if (ce == 0 || legal_number (element_value (ce), &i) == 0)
4571 i = 0;
4572
4573 for ( ; i > 0; i--)
4574 array_pop (bash_argv_a);
4575 array_dispose_element (ce);
4576#endif /* ARRAY_VARS && DEBUGGER */
4577}
4578
cce855bc
JA
4579/*************************************************
4580 * *
4581 * Functions to manage special variables *
4582 * *
4583 *************************************************/
4584
4585/* Extern declarations for variables this code has to manage. */
4586extern int eof_encountered, eof_encountered_limit, ignoreeof;
4587
4588#if defined (READLINE)
cce855bc
JA
4589extern int hostname_list_initialized;
4590#endif
4591
4592/* An alist of name.function for each special variable. Most of the
4593 functions don't do much, and in fact, this would be faster with a
4594 switch statement, but by the end of this file, I am sick of switch
4595 statements. */
4596
4597#define SET_INT_VAR(name, intvar) intvar = find_variable (name) != 0
4598
7117c2d2 4599/* This table will be sorted with qsort() the first time it's accessed. */
cce855bc
JA
4600struct name_and_function {
4601 char *name;
f73dda09 4602 sh_sv_func_t *function;
7117c2d2 4603};
cce855bc 4604
7117c2d2 4605static struct name_and_function special_vars[] = {
ac50fbac 4606 { "BASH_COMPAT", sv_shcompat },
0001803f
CR
4607 { "BASH_XTRACEFD", sv_xtracefd },
4608
ac50fbac
CR
4609#if defined (JOB_CONTROL)
4610 { "CHILD_MAX", sv_childmax },
4611#endif
4612
95732b49
JA
4613#if defined (READLINE)
4614# if defined (STRICT_POSIX)
4615 { "COLUMNS", sv_winsize },
4616# endif
4617 { "COMP_WORDBREAKS", sv_comp_wordbreaks },
4618#endif
4619
495aee44
CR
4620 { "FUNCNEST", sv_funcnest },
4621
cce855bc
JA
4622 { "GLOBIGNORE", sv_globignore },
4623
cce855bc 4624#if defined (HISTORY)
7117c2d2
JA
4625 { "HISTCONTROL", sv_history_control },
4626 { "HISTFILESIZE", sv_histsize },
cce855bc
JA
4627 { "HISTIGNORE", sv_histignore },
4628 { "HISTSIZE", sv_histsize },
b80f6443 4629 { "HISTTIMEFORMAT", sv_histtimefmt },
7117c2d2 4630#endif
cce855bc 4631
95732b49
JA
4632#if defined (__CYGWIN__)
4633 { "HOME", sv_home },
4634#endif
4635
7117c2d2
JA
4636#if defined (READLINE)
4637 { "HOSTFILE", sv_hostfile },
4638#endif
cce855bc 4639
7117c2d2
JA
4640 { "IFS", sv_ifs },
4641 { "IGNOREEOF", sv_ignoreeof },
cce855bc 4642
7117c2d2 4643 { "LANG", sv_locale },
cce855bc
JA
4644 { "LC_ALL", sv_locale },
4645 { "LC_COLLATE", sv_locale },
4646 { "LC_CTYPE", sv_locale },
4647 { "LC_MESSAGES", sv_locale },
bb70624e 4648 { "LC_NUMERIC", sv_locale },
95732b49
JA
4649 { "LC_TIME", sv_locale },
4650
4651#if defined (READLINE) && defined (STRICT_POSIX)
4652 { "LINES", sv_winsize },
4653#endif
7117c2d2
JA
4654
4655 { "MAIL", sv_mail },
4656 { "MAILCHECK", sv_mail },
4657 { "MAILPATH", sv_mail },
4658
4659 { "OPTERR", sv_opterr },
4660 { "OPTIND", sv_optind },
4661
4662 { "PATH", sv_path },
4663 { "POSIXLY_CORRECT", sv_strict_posix },
4664
4665#if defined (READLINE)
4666 { "TERM", sv_terminal },
4667 { "TERMCAP", sv_terminal },
4668 { "TERMINFO", sv_terminal },
4669#endif /* READLINE */
4670
4671 { "TEXTDOMAIN", sv_locale },
4672 { "TEXTDOMAINDIR", sv_locale },
cce855bc 4673
2bbe8058 4674#if defined (HAVE_TZSET)
cce855bc
JA
4675 { "TZ", sv_tz },
4676#endif
4677
7117c2d2
JA
4678#if defined (HISTORY) && defined (BANG_HISTORY)
4679 { "histchars", sv_histchars },
4680#endif /* HISTORY && BANG_HISTORY */
4681
4682 { "ignoreeof", sv_ignoreeof },
4683
f73dda09 4684 { (char *)0, (sh_sv_func_t *)0 }
cce855bc
JA
4685};
4686
7117c2d2
JA
4687#define N_SPECIAL_VARS (sizeof (special_vars) / sizeof (special_vars[0]) - 1)
4688
4689static int
4690sv_compare (sv1, sv2)
4691 struct name_and_function *sv1, *sv2;
4692{
4693 int r;
4694
4695 if ((r = sv1->name[0] - sv2->name[0]) == 0)
4696 r = strcmp (sv1->name, sv2->name);
4697 return r;
4698}
4699
4700static inline int
4701find_special_var (name)
4702 const char *name;
4703{
4704 register int i, r;
4705
4706 for (i = 0; special_vars[i].name; i++)
4707 {
4708 r = special_vars[i].name[0] - name[0];
4709 if (r == 0)
4710 r = strcmp (special_vars[i].name, name);
4711 if (r == 0)
4712 return i;
4713 else if (r > 0)
4714 /* Can't match any of rest of elements in sorted list. Take this out
4715 if it causes problems in certain environments. */
3185942a 4716 break;
7117c2d2
JA
4717 }
4718 return -1;
4719}
4720
cce855bc
JA
4721/* The variable in NAME has just had its state changed. Check to see if it
4722 is one of the special ones where something special happens. */
4723void
4724stupidly_hack_special_variables (name)
4725 char *name;
4726{
7117c2d2 4727 static int sv_sorted = 0;
cce855bc
JA
4728 int i;
4729
7117c2d2 4730 if (sv_sorted == 0) /* shouldn't need, but it's fairly cheap. */
cce855bc 4731 {
7117c2d2
JA
4732 qsort (special_vars, N_SPECIAL_VARS, sizeof (special_vars[0]),
4733 (QSFUNC *)sv_compare);
4734 sv_sorted = 1;
cce855bc 4735 }
7117c2d2
JA
4736
4737 i = find_special_var (name);
4738 if (i != -1)
4739 (*(special_vars[i].function)) (name);
4740}
4741
3185942a
JA
4742/* Special variables that need hooks to be run when they are unset as part
4743 of shell reinitialization should have their sv_ functions run here. */
4744void
4745reinit_special_variables ()
4746{
4747#if defined (READLINE)
4748 sv_comp_wordbreaks ("COMP_WORDBREAKS");
4749#endif
4750 sv_globignore ("GLOBIGNORE");
4751 sv_opterr ("OPTERR");
4752}
4753
7117c2d2
JA
4754void
4755sv_ifs (name)
4756 char *name;
4757{
4758 SHELL_VAR *v;
4759
4760 v = find_variable ("IFS");
4761 setifs (v);
cce855bc
JA
4762}
4763
4764/* What to do just after the PATH variable has changed. */
4765void
4766sv_path (name)
4767 char *name;
4768{
4769 /* hash -r */
7117c2d2 4770 phash_flush ();
cce855bc
JA
4771}
4772
4773/* What to do just after one of the MAILxxxx variables has changed. NAME
4774 is the name of the variable. This is called with NAME set to one of
4775 MAIL, MAILCHECK, or MAILPATH. */
4776void
4777sv_mail (name)
4778 char *name;
4779{
4780 /* If the time interval for checking the files has changed, then
4781 reset the mail timer. Otherwise, one of the pathname vars
4782 to the users mailbox has changed, so rebuild the array of
4783 filenames. */
4784 if (name[4] == 'C') /* if (strcmp (name, "MAILCHECK") == 0) */
4785 reset_mail_timer ();
4786 else
4787 {
4788 free_mail_files ();
4789 remember_mail_dates ();
4790 }
4791}
4792
495aee44
CR
4793void
4794sv_funcnest (name)
4795 char *name;
4796{
4797 SHELL_VAR *v;
4798 intmax_t num;
4799
4800 v = find_variable (name);
4801 if (v == 0)
4802 funcnest_max = 0;
4803 else if (legal_number (value_cell (v), &num) == 0)
4804 funcnest_max = 0;
4805 else
4806 funcnest_max = num;
4807}
4808
cce855bc
JA
4809/* What to do when GLOBIGNORE changes. */
4810void
4811sv_globignore (name)
4812 char *name;
4813{
3185942a
JA
4814 if (privileged_mode == 0)
4815 setup_glob_ignore (name);
cce855bc
JA
4816}
4817
4818#if defined (READLINE)
95732b49
JA
4819void
4820sv_comp_wordbreaks (name)
4821 char *name;
4822{
4823 SHELL_VAR *sv;
4824
4825 sv = find_variable (name);
4826 if (sv == 0)
3185942a 4827 reset_completer_word_break_chars ();
95732b49
JA
4828}
4829
cce855bc
JA
4830/* What to do just after one of the TERMxxx variables has changed.
4831 If we are an interactive shell, then try to reset the terminal
4832 information in readline. */
4833void
4834sv_terminal (name)
4835 char *name;
4836{
4837 if (interactive_shell && no_line_editing == 0)
4838 rl_reset_terminal (get_string_value ("TERM"));
4839}
4840
4841void
4842sv_hostfile (name)
4843 char *name;
4844{
bb70624e
JA
4845 SHELL_VAR *v;
4846
4847 v = find_variable (name);
4848 if (v == 0)
4849 clear_hostname_list ();
4850 else
4851 hostname_list_initialized = 0;
cce855bc 4852}
95732b49
JA
4853
4854#if defined (STRICT_POSIX)
4855/* In strict posix mode, we allow assignments to LINES and COLUMNS (and values
4856 found in the initial environment) to override the terminal size reported by
4857 the kernel. */
4858void
4859sv_winsize (name)
4860 char *name;
4861{
4862 SHELL_VAR *v;
4863 intmax_t xd;
4864 int d;
4865
4866 if (posixly_correct == 0 || interactive_shell == 0 || no_line_editing)
4867 return;
4868
4869 v = find_variable (name);
4870 if (v == 0 || var_isnull (v))
4871 rl_reset_screen_size ();
4872 else
4873 {
4874 if (legal_number (value_cell (v), &xd) == 0)
4875 return;
495aee44 4876 winsize_assignment = 1;
95732b49
JA
4877 d = xd; /* truncate */
4878 if (name[0] == 'L') /* LINES */
4879 rl_set_screen_size (d, -1);
4880 else /* COLUMNS */
4881 rl_set_screen_size (-1, d);
4882 winsize_assignment = 0;
4883 }
4884}
4885#endif /* STRICT_POSIX */
cce855bc
JA
4886#endif /* READLINE */
4887
95732b49
JA
4888/* Update the value of HOME in the export environment so tilde expansion will
4889 work on cygwin. */
4890#if defined (__CYGWIN__)
4891sv_home (name)
4892 char *name;
4893{
4894 array_needs_making = 1;
4895 maybe_make_export_env ();
4896}
4897#endif
4898
cce855bc
JA
4899#if defined (HISTORY)
4900/* What to do after the HISTSIZE or HISTFILESIZE variables change.
4901 If there is a value for this HISTSIZE (and it is numeric), then stifle
4902 the history. Otherwise, if there is NO value for this variable,
4903 unstifle the history. If name is HISTFILESIZE, and its value is
4904 numeric, truncate the history file to hold no more than that many
4905 lines. */
4906void
4907sv_histsize (name)
4908 char *name;
4909{
4910 char *temp;
7117c2d2 4911 intmax_t num;
95732b49 4912 int hmax;
cce855bc
JA
4913
4914 temp = get_string_value (name);
4915
4916 if (temp && *temp)
4917 {
4918 if (legal_number (temp, &num))
28ef6c31 4919 {
0628567a 4920 hmax = num;
ac50fbac
CR
4921 if (hmax < 0 && name[4] == 'S')
4922 unstifle_history (); /* unstifle history if HISTSIZE < 0 */
4923 else if (name[4] == 'S')
cce855bc 4924 {
95732b49 4925 stifle_history (hmax);
0628567a
JA
4926 hmax = where_history ();
4927 if (history_lines_this_session > hmax)
4928 history_lines_this_session = hmax;
cce855bc 4929 }
ac50fbac 4930 else if (hmax >= 0) /* truncate HISTFILE if HISTFILESIZE >= 0 */
cce855bc 4931 {
0628567a
JA
4932 history_truncate_file (get_string_value ("HISTFILE"), hmax);
4933 if (hmax <= history_lines_in_file)
4934 history_lines_in_file = hmax;
cce855bc
JA
4935 }
4936 }
4937 }
4938 else if (name[4] == 'S')
4939 unstifle_history ();
4940}
4941
4942/* What to do after the HISTIGNORE variable changes. */
4943void
4944sv_histignore (name)
4945 char *name;
4946{
4947 setup_history_ignore (name);
4948}
4949
4950/* What to do after the HISTCONTROL variable changes. */
4951void
4952sv_history_control (name)
4953 char *name;
4954{
4955 char *temp;
b80f6443
JA
4956 char *val;
4957 int tptr;
cce855bc
JA
4958
4959 history_control = 0;
4960 temp = get_string_value (name);
4961
b80f6443
JA
4962 if (temp == 0 || *temp == 0)
4963 return;
4964
4965 tptr = 0;
4966 while (val = extract_colon_unit (temp, &tptr))
cce855bc 4967 {
b80f6443
JA
4968 if (STREQ (val, "ignorespace"))
4969 history_control |= HC_IGNSPACE;
4970 else if (STREQ (val, "ignoredups"))
4971 history_control |= HC_IGNDUPS;
4972 else if (STREQ (val, "ignoreboth"))
4973 history_control |= HC_IGNBOTH;
4974 else if (STREQ (val, "erasedups"))
4975 history_control |= HC_ERASEDUPS;
4976
4977 free (val);
cce855bc
JA
4978 }
4979}
4980
4981#if defined (BANG_HISTORY)
4982/* Setting/unsetting of the history expansion character. */
4983void
4984sv_histchars (name)
4985 char *name;
4986{
4987 char *temp;
4988
4989 temp = get_string_value (name);
4990 if (temp)
4991 {
4992 history_expansion_char = *temp;
4993 if (temp[0] && temp[1])
4994 {
4995 history_subst_char = temp[1];
4996 if (temp[2])
4997 history_comment_char = temp[2];
4998 }
4999 }
5000 else
5001 {
5002 history_expansion_char = '!';
5003 history_subst_char = '^';
5004 history_comment_char = '#';
5005 }
5006}
5007#endif /* BANG_HISTORY */
b80f6443
JA
5008
5009void
5010sv_histtimefmt (name)
5011 char *name;
5012{
5013 SHELL_VAR *v;
5014
ac50fbac
CR
5015 if (v = find_variable (name))
5016 {
5017 if (history_comment_char == 0)
5018 history_comment_char = '#';
5019 }
b80f6443
JA
5020 history_write_timestamps = (v != 0);
5021}
cce855bc
JA
5022#endif /* HISTORY */
5023
2bbe8058 5024#if defined (HAVE_TZSET)
cce855bc
JA
5025void
5026sv_tz (name)
5027 char *name;
5028{
2bbe8058
CR
5029 if (chkexport (name))
5030 tzset ();
cce855bc
JA
5031}
5032#endif
5033
5034/* If the variable exists, then the value of it can be the number
5035 of times we actually ignore the EOF. The default is small,
5036 (smaller than csh, anyway). */
5037void
5038sv_ignoreeof (name)
5039 char *name;
5040{
5041 SHELL_VAR *tmp_var;
5042 char *temp;
5043
5044 eof_encountered = 0;
5045
5046 tmp_var = find_variable (name);
5047 ignoreeof = tmp_var != 0;
5048 temp = tmp_var ? value_cell (tmp_var) : (char *)NULL;
5049 if (temp)
5050 eof_encountered_limit = (*temp && all_digits (temp)) ? atoi (temp) : 10;
5051 set_shellopts (); /* make sure `ignoreeof' is/is not in $SHELLOPTS */
5052}
5053
5054void
5055sv_optind (name)
5056 char *name;
5057{
5058 char *tt;
5059 int s;
5060
5061 tt = get_string_value ("OPTIND");
5062 if (tt && *tt)
5063 {
5064 s = atoi (tt);
5065
5066 /* According to POSIX, setting OPTIND=1 resets the internal state
5067 of getopt (). */
5068 if (s < 0 || s == 1)
5069 s = 0;
5070 }
5071 else
5072 s = 0;
5073 getopts_reset (s);
5074}
5075
5076void
5077sv_opterr (name)
5078 char *name;
5079{
5080 char *tt;
5081
5082 tt = get_string_value ("OPTERR");
5083 sh_opterr = (tt && *tt) ? atoi (tt) : 1;
5084}
5085
5086void
5087sv_strict_posix (name)
5088 char *name;
5089{
5090 SET_INT_VAR (name, posixly_correct);
5091 posix_initialize (posixly_correct);
5092#if defined (READLINE)
5093 if (interactive_shell)
5094 posix_readline_initialize (posixly_correct);
5095#endif /* READLINE */
5096 set_shellopts (); /* make sure `posix' is/is not in $SHELLOPTS */
5097}
5098
5099void
5100sv_locale (name)
5101 char *name;
5102{
5103 char *v;
ac50fbac 5104 int r;
cce855bc
JA
5105
5106 v = get_string_value (name);
5107 if (name[0] == 'L' && name[1] == 'A') /* LANG */
ac50fbac 5108 r = set_lang (name, v);
cce855bc 5109 else
ac50fbac
CR
5110 r = set_locale_var (name, v); /* LC_*, TEXTDOMAIN* */
5111
5112#if 1
5113 if (r == 0 && posixly_correct)
5114 last_command_exit_value = 1;
5115#endif
cce855bc
JA
5116}
5117
5118#if defined (ARRAY_VARS)
5119void
7117c2d2 5120set_pipestatus_array (ps, nproc)
cce855bc 5121 int *ps;
7117c2d2 5122 int nproc;
cce855bc
JA
5123{
5124 SHELL_VAR *v;
5125 ARRAY *a;
7117c2d2 5126 ARRAY_ELEMENT *ae;
cce855bc 5127 register int i;
f73dda09 5128 char *t, tbuf[INT_STRLEN_BOUND(int) + 1];
cce855bc
JA
5129
5130 v = find_variable ("PIPESTATUS");
5131 if (v == 0)
5132 v = make_new_array_variable ("PIPESTATUS");
5133 if (array_p (v) == 0)
5134 return; /* Do nothing if not an array variable. */
5135 a = array_cell (v);
7117c2d2
JA
5136
5137 if (a == 0 || array_num_elements (a) == 0)
cce855bc 5138 {
7117c2d2
JA
5139 for (i = 0; i < nproc; i++) /* was ps[i] != -1, not i < nproc */
5140 {
5141 t = inttostr (ps[i], tbuf, sizeof (tbuf));
5142 array_insert (a, i, t);
5143 }
5144 return;
5145 }
5146
5147 /* Fast case */
5148 if (array_num_elements (a) == nproc && nproc == 1)
5149 {
5150 ae = element_forw (a->head);
5151 free (element_value (ae));
5152 ae->value = itos (ps[0]);
5153 }
5154 else if (array_num_elements (a) <= nproc)
5155 {
5156 /* modify in array_num_elements members in place, then add */
5157 ae = a->head;
5158 for (i = 0; i < array_num_elements (a); i++)
5159 {
5160 ae = element_forw (ae);
5161 free (element_value (ae));
5162 ae->value = itos (ps[i]);
5163 }
5164 /* add any more */
5165 for ( ; i < nproc; i++)
5166 {
5167 t = inttostr (ps[i], tbuf, sizeof (tbuf));
5168 array_insert (a, i, t);
5169 }
5170 }
5171 else
5172 {
5173 /* deleting elements. it's faster to rebuild the array. */
5174 array_flush (a);
5175 for (i = 0; ps[i] != -1; i++)
5176 {
5177 t = inttostr (ps[i], tbuf, sizeof (tbuf));
5178 array_insert (a, i, t);
5179 }
cce855bc
JA
5180 }
5181}
495aee44
CR
5182
5183ARRAY *
5184save_pipestatus_array ()
5185{
5186 SHELL_VAR *v;
5187 ARRAY *a, *a2;
5188
5189 v = find_variable ("PIPESTATUS");
5190 if (v == 0 || array_p (v) == 0 || array_cell (v) == 0)
5191 return ((ARRAY *)NULL);
5192
5193 a = array_cell (v);
5194 a2 = array_copy (array_cell (v));
5195
5196 return a2;
5197}
5198
5199void
5200restore_pipestatus_array (a)
5201 ARRAY *a;
5202{
5203 SHELL_VAR *v;
5204 ARRAY *a2;
5205
5206 v = find_variable ("PIPESTATUS");
5207 /* XXX - should we still assign even if existing value is NULL? */
5208 if (v == 0 || array_p (v) == 0 || array_cell (v) == 0)
5209 return;
5210
5211 a2 = array_cell (v);
5212 var_setarray (v, a);
5213
5214 array_dispose (a2);
5215}
cce855bc
JA
5216#endif
5217
5218void
5219set_pipestatus_from_exit (s)
5220 int s;
5221{
5222#if defined (ARRAY_VARS)
5223 static int v[2] = { 0, -1 };
5224
5225 v[0] = s;
7117c2d2 5226 set_pipestatus_array (v, 1);
cce855bc
JA
5227#endif
5228}
0001803f
CR
5229
5230void
5231sv_xtracefd (name)
5232 char *name;
5233{
5234 SHELL_VAR *v;
5235 char *t, *e;
5236 int fd;
5237 FILE *fp;
5238
5239 v = find_variable (name);
5240 if (v == 0)
5241 {
5242 xtrace_reset ();
5243 return;
5244 }
5245
5246 t = value_cell (v);
5247 if (t == 0 || *t == 0)
5248 xtrace_reset ();
5249 else
5250 {
5251 fd = (int)strtol (t, &e, 10);
5252 if (e != t && *e == '\0' && sh_validfd (fd))
5253 {
5254 fp = fdopen (fd, "w");
5255 if (fp == 0)
5256 internal_error (_("%s: %s: cannot open as FILE"), name, value_cell (v));
5257 else
5258 xtrace_set (fd, fp);
5259 }
5260 else
5261 internal_error (_("%s: %s: invalid value for trace file descriptor"), name, value_cell (v));
5262 }
5263}
ac50fbac
CR
5264
5265#define MIN_COMPAT_LEVEL 31
5266
5267void
5268sv_shcompat (name)
5269 char *name;
5270{
5271 SHELL_VAR *v;
5272 char *val;
5273 int tens, ones, compatval;
5274
5275 v = find_variable (name);
5276 if (v == 0)
5277 {
5278 shell_compatibility_level = DEFAULT_COMPAT_LEVEL;
5279 set_compatibility_opts ();
5280 return;
5281 }
5282 val = value_cell (v);
5283 if (val == 0 || *val == '\0')
5284 {
5285 shell_compatibility_level = DEFAULT_COMPAT_LEVEL;
5286 set_compatibility_opts ();
5287 return;
5288 }
5289 /* Handle decimal-like compatibility version specifications: 4.2 */
5290 if (isdigit (val[0]) && val[1] == '.' && isdigit (val[2]) && val[3] == 0)
5291 {
5292 tens = val[0] - '0';
5293 ones = val[2] - '0';
5294 compatval = tens*10 + ones;
5295 }
5296 /* Handle integer-like compatibility version specifications: 42 */
5297 else if (isdigit (val[0]) && isdigit (val[1]) && val[2] == 0)
5298 {
5299 tens = val[0] - '0';
5300 ones = val[1] - '0';
5301 compatval = tens*10 + ones;
5302 }
5303 else
5304 {
5305compat_error:
5306 internal_error (_("%s: %s: compatibility value out of range"), name, val);
5307 shell_compatibility_level = DEFAULT_COMPAT_LEVEL;
5308 set_compatibility_opts ();
5309 return;
5310 }
5311
5312 if (compatval < MIN_COMPAT_LEVEL || compatval > DEFAULT_COMPAT_LEVEL)
5313 goto compat_error;
5314
5315 shell_compatibility_level = compatval;
5316 set_compatibility_opts ();
5317}
5318
5319#if defined (JOB_CONTROL)
5320void
5321sv_childmax (name)
5322 char *name;
5323{
5324 char *tt;
5325 int s;
5326
5327 tt = get_string_value (name);
5328 s = (tt && *tt) ? atoi (tt) : 0;
5329 set_maxchild (s);
5330}
5331#endif