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