1 /* shell.c -- GNU's idea of the POSIX shell specification. */
3 /* Copyright (C) 1987-2009 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
7 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
23 Sunday, January 10th, 1988.
24 Initial author: Brian Fox
26 #define INSTALL_DEBUG_MODE
30 #include "bashtypes.h"
31 #if !defined (_MINIX) && defined (HAVE_SYS_FILE_H)
32 # include <sys/file.h>
34 #include "posixstat.h"
35 #include "posixtime.h"
43 #if defined (HAVE_UNISTD_H)
49 #define NEED_SH_SETLINEBUF_DECL /* used in externs.h */
54 #include "mailcheck.h"
56 #include "builtins/common.h"
58 #if defined (JOB_CONTROL)
60 #endif /* JOB_CONTROL */
63 #include "execute_cmd.h"
66 #if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
67 # include <malloc/shmalloc.h>
71 # include "bashhist.h"
72 # include <readline/history.h>
75 #if defined (READLINE)
76 # include "bashline.h"
79 #include <tilde/tilde.h>
80 #include <glob/strmatch.h>
82 #if defined (__OPENNT)
83 # include <opennt/opennt.h>
86 #if !defined (HAVE_GETPW_DECLS)
87 extern struct passwd *getpwuid ();
88 #endif /* !HAVE_GETPW_DECLS */
94 #if defined (NO_MAIN_ENV_ARG)
95 extern char **environ; /* used if no third argument to main() */
98 extern char *dist_version, *release_status;
99 extern int patch_level, build_version;
100 extern int shell_level;
101 extern int subshell_environment;
102 extern int last_command_exit_value;
103 extern int line_number;
104 extern int expand_aliases;
105 extern int array_needs_making;
106 extern int gnu_error_format;
107 extern char *primary_prompt, *secondary_prompt;
108 extern char *this_command_name;
110 /* Non-zero means that this shell has already been run; i.e. you should
111 call shell_reinitialize () if you need to start afresh. */
112 int shell_initialized = 0;
114 COMMAND *global_command = (COMMAND *)NULL;
116 /* Information about the current user. */
117 struct user_info current_user =
119 (uid_t)-1, (uid_t)-1, (gid_t)-1, (gid_t)-1,
120 (char *)NULL, (char *)NULL, (char *)NULL
123 /* The current host's name. */
124 char *current_host_name = (char *)NULL;
126 /* Non-zero means that this shell is a login shell.
129 1 = login shell from getty (or equivalent fake out)
130 -1 = login shell from "--login" (or -l) flag.
131 -2 = both from getty, and from flag.
135 /* Non-zero means that at this moment, the shell is interactive. In
136 general, this means that the shell is at this moment reading input
137 from the keyboard. */
140 /* Non-zero means that the shell was started as an interactive shell. */
141 int interactive_shell = 0;
143 /* Non-zero means to send a SIGHUP to all jobs when an interactive login
147 /* Non-zero means to list status of running and stopped jobs at shell exit */
148 int check_jobs_at_exit = 0;
150 /* Non-zero means to change to a directory name supplied as a command name */
153 /* Tells what state the shell was in when it started:
154 0 = non-interactive shell script
157 3 = wordexp evaluation
158 This is a superset of the information provided by interactive_shell.
160 int startup_state = 0;
162 /* Special debugging helper. */
163 int debugging_login_shell = 0;
165 /* The environment that the shell passes to other commands. */
166 char **shell_environment;
168 /* Non-zero when we are executing a top-level command. */
171 /* The number of commands executed so far. */
172 int current_command_number = 1;
174 /* Non-zero is the recursion depth for commands. */
175 int indirection_level = 0;
177 /* The name of this shell, as taken from argv[0]. */
178 char *shell_name = (char *)NULL;
180 /* time in seconds when the shell was started */
181 time_t shell_start_time;
183 /* Are we running in an emacs shell window? */
184 int running_under_emacs;
186 /* Do we have /dev/fd? */
188 int have_devfd = HAVE_DEV_FD;
193 /* The name of the .(shell)rc file. */
194 static char *bashrc_file = "~/.bashrc";
196 /* Non-zero means to act more like the Bourne shell on startup. */
197 static int act_like_sh;
199 /* Non-zero if this shell is being run by `su'. */
202 /* Non-zero if we have already expanded and sourced $ENV. */
203 static int sourced_env;
205 /* Is this shell running setuid? */
206 static int running_setuid;
208 /* Values for the long-winded argument names. */
209 static int debugging; /* Do debugging things. */
210 static int no_rc; /* Don't execute ~/.bashrc */
211 static int no_profile; /* Don't execute .profile */
212 static int do_version; /* Display interesting version info. */
213 static int make_login_shell; /* Make this shell be a `-bash' shell. */
214 static int want_initial_help; /* --help option */
216 int debugging_mode = 0; /* In debugging mode with --debugger */
217 int no_line_editing = 0; /* Don't do fancy line editing. */
218 int dump_translatable_strings; /* Dump strings in $"...", don't execute. */
219 int dump_po_strings; /* Dump strings in $"..." in po format */
220 int wordexp_only = 0; /* Do word expansion only */
221 int protected_mode = 0; /* No command substitution with --wordexp */
223 #if defined (STRICT_POSIX)
224 int posixly_correct = 1; /* Non-zero means posix.2 superset. */
226 int posixly_correct = 0; /* Non-zero means posix.2 superset. */
230 /* Some long-winded argument names. These are obviously new. */
233 static const struct {
239 { "debug", Int, &debugging, (char **)0x0 },
240 #if defined (DEBUGGER)
241 { "debugger", Int, &debugging_mode, (char **)0x0 },
243 { "dump-po-strings", Int, &dump_po_strings, (char **)0x0 },
244 { "dump-strings", Int, &dump_translatable_strings, (char **)0x0 },
245 { "help", Int, &want_initial_help, (char **)0x0 },
246 { "init-file", Charp, (int *)0x0, &bashrc_file },
247 { "login", Int, &make_login_shell, (char **)0x0 },
248 { "noediting", Int, &no_line_editing, (char **)0x0 },
249 { "noprofile", Int, &no_profile, (char **)0x0 },
250 { "norc", Int, &no_rc, (char **)0x0 },
251 { "posix", Int, &posixly_correct, (char **)0x0 },
252 { "protected", Int, &protected_mode, (char **)0x0 },
253 { "rcfile", Charp, (int *)0x0, &bashrc_file },
254 #if defined (RESTRICTED_SHELL)
255 { "restricted", Int, &restricted, (char **)0x0 },
257 { "verbose", Int, &echo_input_at_read, (char **)0x0 },
258 { "version", Int, &do_version, (char **)0x0 },
259 { "wordexp", Int, &wordexp_only, (char **)0x0 },
260 { (char *)0x0, Int, (int *)0x0, (char **)0x0 }
263 /* These are extern so execute_simple_command can set them, and then
264 longjmp back to main to execute a shell script, instead of calling
265 main () again and resulting in indefinite, possibly fatal, stack
267 procenv_t subshell_top_level;
269 char **subshell_argv;
270 char **subshell_envp;
272 #if defined (BUFFERED_INPUT)
273 /* The file descriptor from which the shell is reading input. */
274 int default_buffered_input = -1;
277 /* The following two variables are not static so they can show up in $-. */
278 int read_from_stdin; /* -s flag supplied */
279 int want_pending_command; /* -c flag supplied */
281 /* This variable is not static so it can be bound to $BASH_EXECUTION_STRING */
282 char *command_execution_string; /* argument to -c option */
284 int malloc_trace_at_exit = 0;
286 static int shell_reinitialized = 0;
288 static FILE *default_input;
290 static STRING_INT_ALIST *shopt_alist;
291 static int shopt_ind = 0, shopt_len = 0;
293 static int parse_long_options __P((char **, int, int));
294 static int parse_shell_options __P((char **, int, int));
295 static int bind_args __P((char **, int, int, int));
297 static void start_debugger __P((void));
299 static void add_shopt_to_alist __P((char *, int));
300 static void run_shopt_alist __P((void));
302 static void execute_env_file __P((char *));
303 static void run_startup_files __P((void));
304 static int open_shell_script __P((char *));
305 static void set_bash_input __P((void));
306 static int run_one_command __P((char *));
307 static int run_wordexp __P((char *));
309 static int uidget __P((void));
311 static void init_interactive __P((void));
312 static void init_noninteractive __P((void));
313 static void init_interactive_script __P((void));
315 static void set_shell_name __P((char *));
316 static void shell_initialize __P((void));
317 static void shell_reinitialize __P((void));
319 static void show_shell_usage __P((FILE *, int));
323 _cygwin32_check_tmp ()
327 if (stat ("/tmp", &sb) < 0)
328 internal_warning (_("could not find /tmp, please create!"));
331 if (S_ISDIR (sb.st_mode) == 0)
332 internal_warning (_("/tmp must be a valid directory name"));
335 #endif /* __CYGWIN__ */
337 #if defined (NO_MAIN_ENV_ARG)
338 /* systems without third argument to main() */
343 #else /* !NO_MAIN_ENV_ARG */
345 main (argc, argv, env)
348 #endif /* !NO_MAIN_ENV_ARG */
351 int code, old_errexit_flag;
352 #if defined (RESTRICTED_SHELL)
355 volatile int locally_skip_execution;
356 volatile int arg_index, top_level_arg_index;
361 #endif /* __OPENNT */
367 USE_VAR(old_errexit_flag);
368 #if defined (RESTRICTED_SHELL)
372 /* Catch early SIGINTs. */
373 code = setjmp (top_level);
377 #if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
379 malloc_set_register (1);
386 _cygwin32_check_tmp ();
387 #endif /* __CYGWIN__ */
389 /* Wait forever if we are debugging a login shell. */
390 while (debugging_login_shell) sleep (3);
392 set_default_locale ();
394 running_setuid = uidget ();
396 if (getenv ("POSIXLY_CORRECT") || getenv ("POSIX_PEDANTIC"))
399 #if defined (USE_GNU_MALLOC_LIBRARY)
400 mcheck (programming_error, (void (*) ())0);
401 #endif /* USE_GNU_MALLOC_LIBRARY */
403 if (setjmp (subshell_top_level))
405 argc = subshell_argc;
406 argv = subshell_argv;
411 shell_reinitialized = 0;
413 /* Initialize `local' variables for all `invocations' of main (). */
415 if (arg_index > argc)
417 command_execution_string = (char *)NULL;
418 want_pending_command = locally_skip_execution = read_from_stdin = 0;
419 default_input = stdin;
420 #if defined (BUFFERED_INPUT)
421 default_buffered_input = -1;
424 /* Fix for the `infinite process creation' bug when running shell scripts
425 from startup files on System V. */
426 login_shell = make_login_shell = 0;
428 /* If this shell has already been run, then reinitialize it to a
430 if (shell_initialized || shell_name)
432 /* Make sure that we do not infinitely recurse as a login shell. */
433 if (*shell_name == '-')
436 shell_reinitialize ();
437 if (setjmp (top_level))
441 shell_environment = env;
442 set_shell_name (argv[0]);
443 shell_start_time = NOW; /* NOW now defined in general.h */
445 /* Parse argument flags from the input line. */
447 /* Find full word arguments first. */
448 arg_index = parse_long_options (argv, arg_index, argc);
450 if (want_initial_help)
452 show_shell_usage (stdout, 1);
453 exit (EXECUTION_SUCCESS);
458 show_shell_version (1);
459 exit (EXECUTION_SUCCESS);
462 /* All done with full word options; do standard shell option parsing.*/
463 this_command_name = shell_name; /* for error reporting */
464 arg_index = parse_shell_options (argv, arg_index, argc);
466 /* If user supplied the "--login" (or -l) flag, then set and invert
468 if (make_login_shell)
471 login_shell = -login_shell;
474 set_login_shell (login_shell != 0);
477 dump_translatable_strings = 1;
479 if (dump_translatable_strings)
480 read_but_dont_execute = 1;
482 if (running_setuid && privileged_mode == 0)
483 disable_priv_mode ();
485 /* Need to get the argument to a -c option processed in the
486 above loop. The next arg is a command to execute, and the
487 following args are $0...$n respectively. */
488 if (want_pending_command)
490 command_execution_string = argv[arg_index];
491 if (command_execution_string == 0)
493 report_error (_("%s: option requires an argument"), "-c");
498 this_command_name = (char *)NULL;
500 cmd_init(); /* initialize the command object caches */
502 /* First, let the outside world know about our interactive status.
503 A shell is interactive if the `-i' flag was given, or if all of
504 the following conditions are met:
506 no arguments remaining or the -s flag given
507 standard input is a terminal
508 standard error is a terminal
509 Refer to Posix.2, the description of the `sh' utility. */
511 if (forced_interactive || /* -i flag */
512 (!command_execution_string && /* No -c command and ... */
513 wordexp_only == 0 && /* No --wordexp and ... */
514 ((arg_index == argc) || /* no remaining args or... */
515 read_from_stdin) && /* -s flag with args, and */
516 isatty (fileno (stdin)) && /* Input is a terminal and */
517 isatty (fileno (stderr)))) /* error output is a terminal. */
520 init_noninteractive ();
522 #define CLOSE_FDS_AT_LOGIN
523 #if defined (CLOSE_FDS_AT_LOGIN)
525 * Some systems have the bad habit of starting login shells with lots of open
526 * file descriptors. For instance, most systems that have picked up the
527 * pre-4.0 Sun YP code leave a file descriptor open each time you call one
528 * of the getpw* functions, and it's set to be open across execs. That
529 * means one for login, one for xterm, one for shelltool, etc.
531 if (login_shell && interactive_shell)
533 for (i = 3; i < 20; i++)
536 #endif /* CLOSE_FDS_AT_LOGIN */
538 /* If we're in a strict Posix.2 mode, turn on interactive comments,
539 alias expansion in non-interactive shells, and other Posix.2 things. */
542 bind_variable ("POSIXLY_CORRECT", "y", 0);
543 sv_strict_posix ("POSIXLY_CORRECT");
546 /* Now we run the shopt_alist and process the options. */
550 /* From here on in, the shell must be a normal functioning shell.
551 Variables from the environment are expected to be set, etc. */
555 set_default_locale_vars ();
558 * M-x term -> TERM=eterm EMACS=22.1 (term:0.96) (eterm)
559 * M-x shell -> TERM=dumb EMACS=t (no line editing)
560 * M-x terminal -> TERM=emacs-em7955 EMACS= (line editing)
562 if (interactive_shell)
566 term = get_string_value ("TERM");
567 emacs = get_string_value ("EMACS");
569 /* Not sure any emacs terminal emulator sets TERM=emacs any more */
570 no_line_editing |= term && (STREQ (term, "emacs"));
571 no_line_editing |= emacs && emacs[0] == 't' && emacs[1] == '\0' && STREQ (term, "dumb");
573 /* running_under_emacs == 2 for `eterm' */
574 running_under_emacs = (emacs != 0) || (term && STREQN (term, "emacs", 5));
575 running_under_emacs += term && STREQN (term, "eterm", 5) && strstr (emacs, "term");
577 if (running_under_emacs)
578 gnu_error_format = 1;
581 top_level_arg_index = arg_index;
582 old_errexit_flag = exit_immediately_on_error;
584 /* Give this shell a place to longjmp to before executing the
585 startup files. This allows users to press C-c to abort the
587 code = setjmp (top_level);
590 if (code == EXITPROG || code == ERREXIT)
591 exit_shell (last_command_exit_value);
594 #if defined (JOB_CONTROL)
595 /* Reset job control, since run_startup_files turned it off. */
596 set_job_control (interactive_shell);
598 /* Reset value of `set -e', since it's turned off before running
599 the startup files. */
600 exit_immediately_on_error += old_errexit_flag;
601 locally_skip_execution++;
605 arg_index = top_level_arg_index;
607 /* Execute the start-up scripts. */
609 if (interactive_shell == 0)
611 unbind_variable ("PS1");
612 unbind_variable ("PS2");
615 /* This has already been done by init_noninteractive */
616 expand_aliases = posixly_correct;
621 change_flag ('i', FLAG_ON);
625 #if defined (RESTRICTED_SHELL)
626 /* Set restricted_shell based on whether the basename of $0 indicates that
627 the shell should be restricted or if the `-r' option was supplied at
629 restricted_shell = shell_is_restricted (shell_name);
631 /* If the `-r' option is supplied at invocation, make sure that the shell
632 is not in restricted mode when running the startup files. */
633 saverst = restricted;
637 /* The startup files are run with `set -e' temporarily disabled. */
638 if (locally_skip_execution == 0 && running_setuid == 0)
640 old_errexit_flag = exit_immediately_on_error;
641 exit_immediately_on_error = 0;
643 run_startup_files ();
644 exit_immediately_on_error += old_errexit_flag;
647 /* If we are invoked as `sh', turn on Posix mode. */
650 bind_variable ("POSIXLY_CORRECT", "y", 0);
651 sv_strict_posix ("POSIXLY_CORRECT");
654 #if defined (RESTRICTED_SHELL)
655 /* Turn on the restrictions after executing the startup files. This
656 means that `bash -r' or `set -r' invoked from a startup file will
657 turn on the restrictions after the startup files are executed. */
658 restricted = saverst || restricted;
659 if (shell_reinitialized == 0)
660 maybe_make_restricted (shell_name);
661 #endif /* RESTRICTED_SHELL */
666 last_command_exit_value = run_wordexp (argv[arg_index]);
667 exit_shell (last_command_exit_value);
670 if (command_execution_string)
672 arg_index = bind_args (argv, arg_index, argc, 0);
678 #if defined (ONESHOT)
680 run_one_command (command_execution_string);
681 exit_shell (last_command_exit_value);
683 with_input_from_string (command_execution_string, "-c");
684 goto read_and_execute;
685 #endif /* !ONESHOT */
688 /* Get possible input filename and set up default_buffered_input or
689 default_input as appropriate. */
690 if (arg_index != argc && read_from_stdin == 0)
692 open_shell_script (argv[arg_index]);
695 else if (interactive == 0)
696 /* In this mode, bash is reading a script from stdin, which is a
697 pipe or redirected file. */
698 #if defined (BUFFERED_INPUT)
699 default_buffered_input = fileno (stdin); /* == 0 */
701 setbuf (default_input, (char *)NULL);
702 #endif /* !BUFFERED_INPUT */
706 /* Bind remaining args to $1 ... $n */
707 arg_index = bind_args (argv, arg_index, argc, 1);
709 if (debugging_mode && locally_skip_execution == 0 && running_setuid == 0)
712 /* Do the things that should be done only for interactive shells. */
713 if (interactive_shell)
715 /* Set up for checking for presence of mail. */
719 #if defined (HISTORY)
720 /* Initialize the interactive history stuff. */
721 bash_initialize_history ();
722 /* Don't load the history from the history file if we've already
723 saved some lines in this session (e.g., by putting `history -s xx'
724 into one of the startup files). */
725 if (shell_initialized == 0 && history_lines_this_session == 0)
729 /* Initialize terminal state for interactive shells after the
730 .bash_profile and .bashrc are interpreted. */
734 #if !defined (ONESHOT)
736 #endif /* !ONESHOT */
738 shell_initialized = 1;
740 /* Read commands until exit condition. */
742 exit_shell (last_command_exit_value);
746 parse_long_options (argv, arg_start, arg_end)
748 int arg_start, arg_end;
750 int arg_index, longarg, i;
753 arg_index = arg_start;
754 while ((arg_index != arg_end) && (arg_string = argv[arg_index]) &&
755 (*arg_string == '-'))
759 /* Make --login equivalent to -login. */
760 if (arg_string[1] == '-' && arg_string[2])
766 for (i = 0; long_args[i].name; i++)
768 if (STREQ (arg_string + 1, long_args[i].name))
770 if (long_args[i].type == Int)
771 *long_args[i].int_value = 1;
772 else if (argv[++arg_index] == 0)
774 report_error (_("%s: option requires an argument"), long_args[i].name);
778 *long_args[i].char_value = argv[arg_index];
783 if (long_args[i].name == 0)
787 report_error (_("%s: invalid option"), argv[arg_index]);
788 show_shell_usage (stderr, 0);
791 break; /* No such argument. Maybe flag arg. */
801 parse_shell_options (argv, arg_start, arg_end)
803 int arg_start, arg_end;
806 int arg_character, on_or_off, next_arg, i;
807 char *o_option, *arg_string;
809 arg_index = arg_start;
810 while (arg_index != arg_end && (arg_string = argv[arg_index]) &&
811 (*arg_string == '-' || *arg_string == '+'))
813 /* There are flag arguments, so parse them. */
814 next_arg = arg_index + 1;
816 /* A single `-' signals the end of options. From the 4.3 BSD sh.
817 An option `--' means the same thing; this is the standard
818 getopt(3) meaning. */
819 if (arg_string[0] == '-' &&
820 (arg_string[1] == '\0' ||
821 (arg_string[1] == '-' && arg_string[2] == '\0')))
825 on_or_off = arg_string[0];
826 while (arg_character = arg_string[i++])
828 switch (arg_character)
831 want_pending_command = 1;
835 make_login_shell = 1;
843 o_option = argv[next_arg];
846 list_minus_o_opts (-1, (on_or_off == '-') ? 0 : 1);
849 if (set_minus_o_option (on_or_off, o_option) != EXECUTION_SUCCESS)
855 /* Since some of these can be overridden by the normal
856 interactive/non-interactive shell initialization or
857 initializing posix mode, we save the options and process
858 them after initialization. */
859 o_option = argv[next_arg];
862 shopt_listopt (o_option, (on_or_off == '-') ? 0 : 1);
865 add_shopt_to_alist (o_option, on_or_off);
870 dump_translatable_strings = 1;
874 if (change_flag (arg_character, on_or_off) == FLAG_ERROR)
876 report_error (_("%c%c: invalid option"), on_or_off, arg_character);
877 show_shell_usage (stderr, 0);
882 /* Can't do just a simple increment anymore -- what about
883 "bash -abouo emacs ignoreeof -hP"? */
884 arg_index = next_arg;
890 /* Exit the shell with status S. */
895 /* Do trap[0] if defined. Allow it to override the exit status
897 if (signal_is_trapped (0))
898 s = run_exit_trap ();
900 #if defined (PROCESS_SUBSTITUTION)
902 #endif /* PROCESS_SUBSTITUTION */
904 #if defined (HISTORY)
905 if (interactive_shell)
906 maybe_save_shell_history ();
909 #if defined (COPROCESS_SUPPORT)
913 #if defined (JOB_CONTROL)
914 /* If the user has run `shopt -s huponexit', hangup all jobs when we exit
915 an interactive login shell. ksh does this unconditionally. */
916 if (interactive_shell && login_shell && hup_on_exit)
919 /* If this shell is interactive, terminate all stopped jobs and
920 restore the original terminal process group. Don't do this if we're
921 in a subshell and calling exit_shell after, for example, a failed
923 if (subshell_environment == 0)
925 #endif /* JOB_CONTROL */
927 /* Always return the exit status of the last command to our parent. */
931 /* A wrapper for exit that (optionally) can do other things, like malloc
932 statistics tracing. */
937 #if defined (MALLOC_DEBUG) && defined (USING_BASH_MALLOC)
938 if (malloc_trace_at_exit)
939 trace_malloc_stats (get_name_for_error (), (char *)NULL);
945 /* Source the bash startup files. If POSIXLY_CORRECT is non-zero, we obey
946 the Posix.2 startup file rules: $ENV is expanded, and if the file it
947 names exists, that file is sourced. The Posix.2 rules are in effect
948 for interactive shells only. (section 4.56.5.3) */
950 /* Execute ~/.bashrc for most shells. Never execute it if
951 ACT_LIKE_SH is set, or if NO_RC is set.
953 If the executable file "/usr/gnu/src/bash/foo" contains:
960 COMMAND EXECUTE BASHRC
961 --------------------------------
965 rsh machine ls YES (for rsh, which calls `bash -c')
966 rsh machine foo YES (for shell started by rsh) NO (for foo!)
973 execute_env_file (env_file)
978 if (env_file && *env_file)
980 fn = expand_string_unsplit_to_string (env_file, Q_DOUBLE_QUOTES);
982 maybe_execute_file (fn, 1);
990 #if defined (JOB_CONTROL)
993 int sourced_login, run_by_ssh;
995 /* get the rshd/sshd case out of the way first. */
996 if (interactive_shell == 0 && no_rc == 0 && login_shell == 0 &&
997 act_like_sh == 0 && command_execution_string)
999 #ifdef SSH_SOURCE_BASHRC
1000 run_by_ssh = (find_variable ("SSH_CLIENT") != (SHELL_VAR *)0) ||
1001 (find_variable ("SSH2_CLIENT") != (SHELL_VAR *)0);
1006 /* If we were run by sshd or we think we were run by rshd, execute
1007 ~/.bashrc if we are a top-level shell. */
1008 if ((run_by_ssh || isnetconn (fileno (stdin))) && shell_level < 2)
1011 # if defined (__OPENNT)
1012 maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
1014 maybe_execute_file (SYS_BASHRC, 1);
1017 maybe_execute_file (bashrc_file, 1);
1022 #if defined (JOB_CONTROL)
1023 /* Startup files should be run without job control enabled. */
1024 old_job_control = interactive_shell ? set_job_control (0) : 0;
1029 /* A shell begun with the --login (or -l) flag that is not in posix mode
1030 runs the login shell startup files, no matter whether or not it is
1031 interactive. If NON_INTERACTIVE_LOGIN_SHELLS is defined, run the
1032 startup files if argv[0][0] == '-' as well. */
1033 #if defined (NON_INTERACTIVE_LOGIN_SHELLS)
1034 if (login_shell && posixly_correct == 0)
1036 if (login_shell < 0 && posixly_correct == 0)
1039 /* We don't execute .bashrc for login shells. */
1042 /* Execute /etc/profile and one of the personal login shell
1043 initialization files. */
1044 if (no_profile == 0)
1046 maybe_execute_file (SYS_PROFILE, 1);
1048 if (act_like_sh) /* sh */
1049 maybe_execute_file ("~/.profile", 1);
1050 else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1051 (maybe_execute_file ("~/.bash_login", 1) == 0)) /* bash */
1052 maybe_execute_file ("~/.profile", 1);
1058 /* A non-interactive shell not named `sh' and not in posix mode reads and
1059 executes commands from $BASH_ENV. If `su' starts a shell with `-c cmd'
1060 and `-su' as the name of the shell, we want to read the startup files.
1061 No other non-interactive shells read any startup files. */
1062 if (interactive_shell == 0 && !(su_shell && login_shell))
1064 if (posixly_correct == 0 && act_like_sh == 0 && privileged_mode == 0 &&
1066 execute_env_file (get_string_value ("BASH_ENV"));
1070 /* Interactive shell or `-su' shell. */
1071 if (posixly_correct == 0) /* bash, sh */
1073 if (login_shell && sourced_login++ == 0)
1075 /* We don't execute .bashrc for login shells. */
1078 /* Execute /etc/profile and one of the personal login shell
1079 initialization files. */
1080 if (no_profile == 0)
1082 maybe_execute_file (SYS_PROFILE, 1);
1084 if (act_like_sh) /* sh */
1085 maybe_execute_file ("~/.profile", 1);
1086 else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1087 (maybe_execute_file ("~/.bash_login", 1) == 0)) /* bash */
1088 maybe_execute_file ("~/.profile", 1);
1093 if (act_like_sh == 0 && no_rc == 0)
1096 # if defined (__OPENNT)
1097 maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
1099 maybe_execute_file (SYS_BASHRC, 1);
1102 maybe_execute_file (bashrc_file, 1);
1105 else if (act_like_sh && privileged_mode == 0 && sourced_env++ == 0)
1106 execute_env_file (get_string_value ("ENV"));
1108 else /* bash --posix, sh --posix */
1111 if (interactive_shell && privileged_mode == 0 && sourced_env++ == 0)
1112 execute_env_file (get_string_value ("ENV"));
1115 #if defined (JOB_CONTROL)
1116 set_job_control (old_job_control);
1120 #if defined (RESTRICTED_SHELL)
1121 /* Return 1 if the shell should be a restricted one based on NAME or the
1122 value of `restricted'. Don't actually do anything, just return a
1125 shell_is_restricted (name)
1132 temp = base_pathname (name);
1135 return (STREQ (temp, RESTRICTED_SHELL_NAME));
1138 /* Perhaps make this shell a `restricted' one, based on NAME. If the
1139 basename of NAME is "rbash", then this shell is restricted. The
1140 name of the restricted shell is a configurable option, see config.h.
1141 In a restricted shell, PATH, SHELL, ENV, and BASH_ENV are read-only
1143 Do this also if `restricted' is already set to 1; maybe the shell was
1146 maybe_make_restricted (name)
1151 temp = base_pathname (name);
1154 if (restricted || (STREQ (temp, RESTRICTED_SHELL_NAME)))
1156 set_var_read_only ("PATH");
1157 set_var_read_only ("SHELL");
1158 set_var_read_only ("ENV");
1159 set_var_read_only ("BASH_ENV");
1162 return (restricted);
1164 #endif /* RESTRICTED_SHELL */
1166 /* Fetch the current set of uids and gids and return 1 if we're running
1167 setuid or setgid. */
1174 if (current_user.uid != u)
1176 FREE (current_user.user_name);
1177 FREE (current_user.shell);
1178 FREE (current_user.home_dir);
1179 current_user.user_name = current_user.shell = current_user.home_dir = (char *)NULL;
1181 current_user.uid = u;
1182 current_user.gid = getgid ();
1183 current_user.euid = geteuid ();
1184 current_user.egid = getegid ();
1186 /* See whether or not we are running setuid or setgid. */
1187 return (current_user.uid != current_user.euid) ||
1188 (current_user.gid != current_user.egid);
1192 disable_priv_mode ()
1194 setuid (current_user.uid);
1195 setgid (current_user.gid);
1196 current_user.euid = current_user.uid;
1197 current_user.egid = current_user.gid;
1205 WORD_LIST *wl, *tl, *result;
1207 code = setjmp (top_level);
1209 if (code != NOT_JUMPED)
1213 /* Some kind of throw to top_level has occured. */
1215 return last_command_exit_value = 127;
1218 return last_command_exit_value;
1220 return last_command_exit_value = 1;
1222 command_error ("run_wordexp", CMDERR_BADJUMP, code, 0);
1226 /* Run it through the parser to get a list of words and expand them */
1227 if (words && *words)
1229 with_input_from_string (words, "--wordexp");
1230 if (parse_command () != 0)
1232 if (global_command == 0)
1237 if (global_command->type != cm_simple)
1239 wl = global_command->value.Simple->words;
1241 for (tl = wl; tl; tl = tl->next)
1242 tl->word->flags |= W_NOCOMSUB|W_NOPROCSUB;
1243 result = wl ? expand_words_no_vars (wl) : (WORD_LIST *)0;
1246 result = (WORD_LIST *)0;
1248 last_command_exit_value = 0;
1256 /* Count up the number of words and bytes, and print them. Don't count
1257 the trailing NUL byte. */
1258 for (nw = nb = 0, wl = result; wl; wl = wl->next)
1261 nb += strlen (wl->word->word);
1263 printf ("%u\n%u\n", nw, nb);
1264 /* Print each word on a separate line. This will have to be changed when
1265 the interface to glibc is completed. */
1266 for (wl = result; wl; wl = wl->next)
1267 printf ("%s\n", wl->word->word);
1272 #if defined (ONESHOT)
1273 /* Run one command, given as the argument to the -c option. Tell
1274 parse_and_execute not to fork for a simple command. */
1276 run_one_command (command)
1281 code = setjmp (top_level);
1283 if (code != NOT_JUMPED)
1285 #if defined (PROCESS_SUBSTITUTION)
1286 unlink_fifo_list ();
1287 #endif /* PROCESS_SUBSTITUTION */
1290 /* Some kind of throw to top_level has occured. */
1292 return last_command_exit_value = 127;
1295 return last_command_exit_value;
1297 return last_command_exit_value = 1;
1299 command_error ("run_one_command", CMDERR_BADJUMP, code, 0);
1302 return (parse_and_execute (savestring (command), "-c", SEVAL_NOHIST));
1304 #endif /* ONESHOT */
1307 bind_args (argv, arg_start, arg_end, start_index)
1309 int arg_start, arg_end, start_index;
1314 for (i = arg_start, args = (WORD_LIST *)NULL; i < arg_end; i++)
1315 args = make_word_list (make_word (argv[i]), args);
1318 args = REVERSE_LIST (args, WORD_LIST *);
1319 if (start_index == 0) /* bind to $0...$n for sh -c command */
1321 /* Posix.2 4.56.3 says that the first argument after sh -c command
1322 becomes $0, and the rest of the arguments become $1...$n */
1323 shell_name = savestring (args->word->word);
1324 FREE (dollar_vars[0]);
1325 dollar_vars[0] = savestring (args->word->word);
1326 remember_args (args->next, 1);
1327 push_args (args->next); /* BASH_ARGV and BASH_ARGC */
1329 else /* bind to $1...$n for shell script */
1331 remember_args (args, 1);
1332 push_args (args); /* BASH_ARGV and BASH_ARGC */
1335 dispose_words (args);
1344 remember_args ((WORD_LIST *)NULL, 1);
1345 pop_args (); /* Reset BASH_ARGV and BASH_ARGC */
1351 #if defined (DEBUGGER) && defined (DEBUGGER_START_FILE)
1354 old_errexit = exit_immediately_on_error;
1355 exit_immediately_on_error = 0;
1357 maybe_execute_file (DEBUGGER_START_FILE, 1);
1358 function_trace_mode = 1;
1360 exit_immediately_on_error += old_errexit;
1365 open_shell_script (script_name)
1368 int fd, e, fd_is_tty;
1369 char *filename, *path_filename, *t;
1373 #if defined (ARRAY_VARS)
1374 SHELL_VAR *funcname_v, *bash_source_v, *bash_lineno_v;
1375 ARRAY *funcname_a, *bash_source_a, *bash_lineno_a;
1378 filename = savestring (script_name);
1380 fd = open (filename, O_RDONLY);
1381 if ((fd < 0) && (errno == ENOENT) && (absolute_program (filename) == 0))
1384 /* If it's not in the current directory, try looking through PATH
1386 path_filename = find_path_file (script_name);
1390 filename = path_filename;
1391 fd = open (filename, O_RDONLY);
1400 file_error (filename);
1401 exit ((e == ENOENT) ? EX_NOTFOUND : EX_NOINPUT);
1404 free (dollar_vars[0]);
1405 dollar_vars[0] = savestring (script_name);
1407 #if defined (ARRAY_VARS)
1408 GET_ARRAY_FROM_VAR ("FUNCNAME", funcname_v, funcname_a);
1409 GET_ARRAY_FROM_VAR ("BASH_SOURCE", bash_source_v, bash_source_a);
1410 GET_ARRAY_FROM_VAR ("BASH_LINENO", bash_lineno_v, bash_lineno_a);
1412 array_push (bash_source_a, filename);
1415 t = itos (executing_line_number ());
1416 array_push (bash_lineno_a, t);
1419 array_push (funcname_a, "main");
1423 fd_is_tty = isatty (fd);
1428 /* Only do this with non-tty file descriptors we can seek on. */
1429 if (fd_is_tty == 0 && (lseek (fd, 0L, 1) != -1))
1431 /* Check to see if the `file' in `bash file' is a binary file
1432 according to the same tests done by execute_simple_command (),
1433 and report an error and exit if it is. */
1434 sample_len = read (fd, sample, sizeof (sample));
1438 if ((fstat (fd, &sb) == 0) && S_ISDIR (sb.st_mode))
1439 internal_error (_("%s: is a directory"), filename);
1443 file_error (filename);
1447 else if (sample_len > 0 && (check_binary_file (sample, sample_len)))
1449 internal_error (_("%s: cannot execute binary file"), filename);
1450 exit (EX_BINARY_FILE);
1452 /* Now rewind the file back to the beginning. */
1456 /* Open the script. But try to move the file descriptor to a randomly
1457 large one, in the hopes that any descriptors used by the script will
1458 not match with ours. */
1459 fd = move_to_high_fd (fd, 1, -1);
1461 #if defined (__CYGWIN__) && defined (O_TEXT)
1462 setmode (fd, O_TEXT);
1465 #if defined (BUFFERED_INPUT)
1466 default_buffered_input = fd;
1467 SET_CLOSE_ON_EXEC (default_buffered_input);
1468 #else /* !BUFFERED_INPUT */
1469 default_input = fdopen (fd, "r");
1471 if (default_input == 0)
1473 file_error (filename);
1477 SET_CLOSE_ON_EXEC (fd);
1478 if (fileno (default_input) != fd)
1479 SET_CLOSE_ON_EXEC (fileno (default_input));
1480 #endif /* !BUFFERED_INPUT */
1482 /* Just about the only way for this code to be executed is if something
1483 like `bash -i /dev/stdin' is executed. */
1484 if (interactive_shell && fd_is_tty)
1489 #if defined (BUFFERED_INPUT)
1490 default_buffered_input = 0;
1492 fclose (default_input);
1493 default_input = stdin;
1496 else if (forced_interactive && fd_is_tty == 0)
1497 /* But if a script is called with something like `bash -i scriptname',
1498 we need to do a non-interactive setup here, since we didn't do it
1500 init_interactive_script ();
1506 /* Initialize the input routines for the parser. */
1510 /* Make sure the fd from which we are reading input is not in
1512 #if defined (BUFFERED_INPUT)
1513 if (interactive == 0)
1514 sh_unset_nodelay_mode (default_buffered_input);
1516 #endif /* !BUFFERED_INPUT */
1517 sh_unset_nodelay_mode (fileno (stdin));
1519 /* with_input_from_stdin really means `with_input_from_readline' */
1520 if (interactive && no_line_editing == 0)
1521 with_input_from_stdin ();
1522 #if defined (BUFFERED_INPUT)
1523 else if (interactive == 0)
1524 with_input_from_buffered_stream (default_buffered_input, dollar_vars[0]);
1525 #endif /* BUFFERED_INPUT */
1527 with_input_from_stream (default_input, dollar_vars[0]);
1530 /* Close the current shell script input source and forget about it. This is
1531 extern so execute_cmd.c:initialize_subshell() can call it. If CHECK_ZERO
1532 is non-zero, we close default_buffered_input even if it's the standard
1535 unset_bash_input (check_zero)
1538 #if defined (BUFFERED_INPUT)
1539 if ((check_zero && default_buffered_input >= 0) ||
1540 (check_zero == 0 && default_buffered_input > 0))
1542 close_buffered_fd (default_buffered_input);
1543 default_buffered_input = bash_input.location.buffered_fd = -1;
1544 bash_input.type = st_none; /* XXX */
1546 #else /* !BUFFERED_INPUT */
1549 fclose (default_input);
1550 default_input = (FILE *)NULL;
1552 #endif /* !BUFFERED_INPUT */
1556 #if !defined (PROGRAM)
1557 # define PROGRAM "bash"
1561 set_shell_name (argv0)
1564 /* Here's a hack. If the name of this shell is "sh", then don't do
1565 any startup files; just try to be more like /bin/sh. */
1566 shell_name = argv0 ? base_pathname (argv0) : PROGRAM;
1568 if (argv0 && *argv0 == '-')
1570 if (*shell_name == '-')
1575 if (shell_name[0] == 's' && shell_name[1] == 'h' && shell_name[2] == '\0')
1577 if (shell_name[0] == 's' && shell_name[1] == 'u' && shell_name[2] == '\0')
1580 shell_name = argv0 ? argv0 : PROGRAM;
1581 FREE (dollar_vars[0]);
1582 dollar_vars[0] = savestring (shell_name);
1584 /* A program may start an interactive shell with
1585 "execl ("/bin/bash", "-", NULL)".
1586 If so, default the name of this shell to our name. */
1587 if (!shell_name || !*shell_name || (shell_name[0] == '-' && !shell_name[1]))
1588 shell_name = PROGRAM;
1594 expand_aliases = interactive_shell = startup_state = 1;
1599 init_noninteractive ()
1601 #if defined (HISTORY)
1602 bash_history_reinit (0);
1603 #endif /* HISTORY */
1604 interactive_shell = startup_state = interactive = 0;
1605 expand_aliases = posixly_correct; /* XXX - was 0 not posixly_correct */
1606 no_line_editing = 1;
1607 #if defined (JOB_CONTROL)
1608 set_job_control (0);
1609 #endif /* JOB_CONTROL */
1613 init_interactive_script ()
1615 init_noninteractive ();
1616 expand_aliases = interactive_shell = startup_state = 1;
1620 get_current_user_info ()
1622 struct passwd *entry;
1624 /* Don't fetch this more than once. */
1625 if (current_user.user_name == 0)
1627 entry = getpwuid (current_user.uid);
1630 current_user.user_name = savestring (entry->pw_name);
1631 current_user.shell = (entry->pw_shell && entry->pw_shell[0])
1632 ? savestring (entry->pw_shell)
1633 : savestring ("/bin/sh");
1634 current_user.home_dir = savestring (entry->pw_dir);
1638 current_user.user_name = _("I have no name!");
1639 current_user.user_name = savestring (current_user.user_name);
1640 current_user.shell = savestring ("/bin/sh");
1641 current_user.home_dir = savestring ("/");
1647 /* Do whatever is necessary to initialize the shell.
1648 Put new initializations in here. */
1654 /* Line buffer output for stderr and stdout. */
1655 if (shell_initialized == 0)
1657 sh_setlinebuf (stderr);
1658 sh_setlinebuf (stdout);
1661 /* Sort the array of shell builtins so that the binary search in
1662 find_shell_builtin () works correctly. */
1663 initialize_shell_builtins ();
1665 /* Initialize the trap signal handlers before installing our own
1666 signal handlers. traps.c:restore_original_signals () is responsible
1667 for restoring the original default signal handlers. That function
1668 is called when we make a new child. */
1669 initialize_traps ();
1670 initialize_signals (0);
1672 /* It's highly unlikely that this will change. */
1673 if (current_host_name == 0)
1675 /* Initialize current_host_name. */
1676 if (gethostname (hostname, 255) < 0)
1677 current_host_name = "??host??";
1679 current_host_name = savestring (hostname);
1682 /* Initialize the stuff in current_user that comes from the password
1683 file. We don't need to do this right away if the shell is not
1685 if (interactive_shell)
1686 get_current_user_info ();
1688 /* Initialize our interface to the tilde expander. */
1689 tilde_initialize ();
1691 /* Initialize internal and environment variables. Don't import shell
1692 functions from the environment if we are running in privileged or
1693 restricted mode or if the shell is running setuid. */
1694 #if defined (RESTRICTED_SHELL)
1695 initialize_shell_variables (shell_environment, privileged_mode||restricted||running_setuid);
1697 initialize_shell_variables (shell_environment, privileged_mode||running_setuid);
1700 /* Initialize the data structures for storing and running jobs. */
1701 initialize_job_control (0);
1703 /* Initialize input streams to null. */
1704 initialize_bash_input ();
1706 initialize_flags ();
1708 /* Initialize the shell options. Don't import the shell options
1709 from the environment variable $SHELLOPTS if we are running in
1710 privileged or restricted mode or if the shell is running setuid. */
1711 #if defined (RESTRICTED_SHELL)
1712 initialize_shell_options (privileged_mode||restricted||running_setuid);
1714 initialize_shell_options (privileged_mode||running_setuid);
1718 /* Function called by main () when it appears that the shell has already
1719 had some initialization performed. This is supposed to reset the world
1720 back to a pristine state, as if we had been exec'ed. */
1722 shell_reinitialize ()
1724 /* The default shell prompts. */
1725 primary_prompt = PPROMPT;
1726 secondary_prompt = SPROMPT;
1728 /* Things that get 1. */
1729 current_command_number = 1;
1731 /* We have decided that the ~/.bashrc file should not be executed
1732 for the invocation of each shell script. If the variable $ENV
1733 (or $BASH_ENV) is set, its value is used as the name of a file
1735 no_rc = no_profile = 1;
1737 /* Things that get 0. */
1738 login_shell = make_login_shell = interactive = executing = 0;
1739 debugging = do_version = line_number = last_command_exit_value = 0;
1740 forced_interactive = interactive_shell = subshell_environment = 0;
1743 #if defined (HISTORY)
1744 bash_history_reinit (0);
1745 #endif /* HISTORY */
1747 #if defined (RESTRICTED_SHELL)
1749 #endif /* RESTRICTED_SHELL */
1751 /* Ensure that the default startup file is used. (Except that we don't
1752 execute this file for reinitialized shells). */
1753 bashrc_file = "~/.bashrc";
1755 /* Delete all variables and functions. They will be reinitialized when
1756 the environment is parsed. */
1757 delete_all_contexts (shell_variables);
1758 delete_all_variables (shell_functions);
1760 reinit_special_variables ();
1762 #if defined (READLINE)
1763 bashline_reinitialize ();
1766 shell_reinitialized = 1;
1770 show_shell_usage (fp, extra)
1775 char *set_opts, *s, *t;
1778 fprintf (fp, _("GNU bash, version %s-(%s)\n"), shell_version_string (), MACHTYPE);
1779 fprintf (fp, _("Usage:\t%s [GNU long option] [option] ...\n\t%s [GNU long option] [option] script-file ...\n"),
1780 shell_name, shell_name);
1781 fputs (_("GNU long options:\n"), fp);
1782 for (i = 0; long_args[i].name; i++)
1783 fprintf (fp, "\t--%s\n", long_args[i].name);
1785 fputs (_("Shell options:\n"), fp);
1786 fputs (_("\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"), fp);
1788 for (i = 0, set_opts = 0; shell_builtins[i].name; i++)
1789 if (STREQ (shell_builtins[i].name, "set"))
1790 set_opts = savestring (shell_builtins[i].short_doc);
1793 s = xstrchr (set_opts, '[');
1798 t = xstrchr (s, ']');
1801 fprintf (fp, _("\t-%s or -o option\n"), s);
1807 fprintf (fp, _("Type `%s -c \"help set\"' for more information about shell options.\n"), shell_name);
1808 fprintf (fp, _("Type `%s -c help' for more information about shell builtin commands.\n"), shell_name);
1809 fprintf (fp, _("Use the `bashbug' command to report bugs.\n"));
1814 add_shopt_to_alist (opt, on_or_off)
1818 if (shopt_ind >= shopt_len)
1821 shopt_alist = (STRING_INT_ALIST *)xrealloc (shopt_alist, shopt_len * sizeof (shopt_alist[0]));
1823 shopt_alist[shopt_ind].word = opt;
1824 shopt_alist[shopt_ind].token = on_or_off;
1833 for (i = 0; i < shopt_ind; i++)
1834 if (shopt_setopt (shopt_alist[i].word, (shopt_alist[i].token == '-')) != EXECUTION_SUCCESS)
1838 shopt_ind = shopt_len = 0;