Add license file into rpm package
[external/bash.git] / shell.c
1 /* shell.c -- GNU's idea of the POSIX shell specification. */
2
3 /* Copyright (C) 1987-2009 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 /*
22   Birthdate:
23   Sunday, January 10th, 1988.
24   Initial author: Brian Fox
25 */
26 #define INSTALL_DEBUG_MODE
27
28 #include "config.h"
29
30 #include "bashtypes.h"
31 #if !defined (_MINIX) && defined (HAVE_SYS_FILE_H)
32 #  include <sys/file.h>
33 #endif
34 #include "posixstat.h"
35 #include "posixtime.h"
36 #include "bashansi.h"
37 #include <stdio.h>
38 #include <signal.h>
39 #include <errno.h>
40 #include "filecntl.h"
41 #include <pwd.h>
42
43 #if defined (HAVE_UNISTD_H)
44 #  include <unistd.h>
45 #endif
46
47 #include "bashintl.h"
48
49 #define NEED_SH_SETLINEBUF_DECL         /* used in externs.h */
50
51 #include "shell.h"
52 #include "flags.h"
53 #include "trap.h"
54 #include "mailcheck.h"
55 #include "builtins.h"
56 #include "builtins/common.h"
57
58 #if defined (JOB_CONTROL)
59 #include "jobs.h"
60 #endif /* JOB_CONTROL */
61
62 #include "input.h"
63 #include "execute_cmd.h"
64 #include "findcmd.h"
65
66 #if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
67 #  include <malloc/shmalloc.h>
68 #endif
69
70 #if defined (HISTORY)
71 #  include "bashhist.h"
72 #  include <readline/history.h>
73 #endif
74
75 #if defined (READLINE)
76 #  include "bashline.h"
77 #endif
78
79 #include <tilde/tilde.h>
80 #include <glob/strmatch.h>
81
82 #if defined (__OPENNT)
83 #  include <opennt/opennt.h>
84 #endif
85
86 #if !defined (HAVE_GETPW_DECLS)
87 extern struct passwd *getpwuid ();
88 #endif /* !HAVE_GETPW_DECLS */
89
90 #if !defined (errno)
91 extern int errno;
92 #endif
93
94 #if defined (NO_MAIN_ENV_ARG)
95 extern char **environ;  /* used if no third argument to main() */
96 #endif
97
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;
109
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;
113
114 COMMAND *global_command = (COMMAND *)NULL;
115
116 /* Information about the current user. */
117 struct user_info current_user =
118 {
119   (uid_t)-1, (uid_t)-1, (gid_t)-1, (gid_t)-1,
120   (char *)NULL, (char *)NULL, (char *)NULL
121 };
122
123 /* The current host's name. */
124 char *current_host_name = (char *)NULL;
125
126 /* Non-zero means that this shell is a login shell.
127    Specifically:
128    0 = not 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.
132  */
133 int login_shell = 0;
134
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. */
138 int interactive = 0;
139
140 /* Non-zero means that the shell was started as an interactive shell. */
141 int interactive_shell = 0;
142
143 /* Non-zero means to send a SIGHUP to all jobs when an interactive login
144    shell exits. */
145 int hup_on_exit = 0;
146
147 /* Non-zero means to list status of running and stopped jobs at shell exit */
148 int check_jobs_at_exit = 0;
149
150 /* Non-zero means to change to a directory name supplied as a command name */
151 int autocd = 0;
152
153 /* Tells what state the shell was in when it started:
154         0 = non-interactive shell script
155         1 = interactive
156         2 = -c command
157         3 = wordexp evaluation
158    This is a superset of the information provided by interactive_shell.
159 */
160 int startup_state = 0;
161
162 /* Special debugging helper. */
163 int debugging_login_shell = 0;
164
165 /* The environment that the shell passes to other commands. */
166 char **shell_environment;
167
168 /* Non-zero when we are executing a top-level command. */
169 int executing = 0;
170
171 /* The number of commands executed so far. */
172 int current_command_number = 1;
173
174 /* Non-zero is the recursion depth for commands. */
175 int indirection_level = 0;
176
177 /* The name of this shell, as taken from argv[0]. */
178 char *shell_name = (char *)NULL;
179
180 /* time in seconds when the shell was started */
181 time_t shell_start_time;
182
183 /* Are we running in an emacs shell window? */
184 int running_under_emacs;
185
186 /* Do we have /dev/fd? */
187 #ifdef HAVE_DEV_FD
188 int have_devfd = HAVE_DEV_FD;
189 #else
190 int have_devfd = 0;
191 #endif
192
193 /* The name of the .(shell)rc file. */
194 static char *bashrc_file = "~/.bashrc";
195
196 /* Non-zero means to act more like the Bourne shell on startup. */
197 static int act_like_sh;
198
199 /* Non-zero if this shell is being run by `su'. */
200 static int su_shell;
201
202 /* Non-zero if we have already expanded and sourced $ENV. */
203 static int sourced_env;
204
205 /* Is this shell running setuid? */
206 static int running_setuid;
207
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 */
215
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 */
222
223 #if defined (STRICT_POSIX)
224 int posixly_correct = 1;        /* Non-zero means posix.2 superset. */
225 #else
226 int posixly_correct = 0;        /* Non-zero means posix.2 superset. */
227 #endif
228
229
230 /* Some long-winded argument names.  These are obviously new. */
231 #define Int 1
232 #define Charp 2
233 static const struct {
234   const char *name;
235   int type;
236   int *int_value;
237   char **char_value;
238 } long_args[] = {
239   { "debug", Int, &debugging, (char **)0x0 },
240 #if defined (DEBUGGER)
241   { "debugger", Int, &debugging_mode, (char **)0x0 },
242 #endif
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 },
256 #endif
257   { "verbose", Int, &echo_input_at_read, (char **)0x0 },
258   { "version", Int, &do_version, (char **)0x0 },
259 #if defined (WORDEXP_OPTION)
260   { "wordexp", Int, &wordexp_only, (char **)0x0 },
261 #endif
262   { (char *)0x0, Int, (int *)0x0, (char **)0x0 }
263 };
264
265 /* These are extern so execute_simple_command can set them, and then
266    longjmp back to main to execute a shell script, instead of calling
267    main () again and resulting in indefinite, possibly fatal, stack
268    growth. */
269 procenv_t subshell_top_level;
270 int subshell_argc;
271 char **subshell_argv;
272 char **subshell_envp;
273
274 #if defined (BUFFERED_INPUT)
275 /* The file descriptor from which the shell is reading input. */
276 int default_buffered_input = -1;
277 #endif
278
279 /* The following two variables are not static so they can show up in $-. */
280 int read_from_stdin;            /* -s flag supplied */
281 int want_pending_command;       /* -c flag supplied */
282
283 /* This variable is not static so it can be bound to $BASH_EXECUTION_STRING */
284 char *command_execution_string; /* argument to -c option */
285
286 int malloc_trace_at_exit = 0;
287
288 static int shell_reinitialized = 0;
289
290 static FILE *default_input;
291
292 static STRING_INT_ALIST *shopt_alist;
293 static int shopt_ind = 0, shopt_len = 0;
294
295 static int parse_long_options __P((char **, int, int));
296 static int parse_shell_options __P((char **, int, int));
297 static int bind_args __P((char **, int, int, int));
298
299 static void start_debugger __P((void));
300
301 static void add_shopt_to_alist __P((char *, int));
302 static void run_shopt_alist __P((void));
303
304 static void execute_env_file __P((char *));
305 static void run_startup_files __P((void));
306 static int open_shell_script __P((char *));
307 static void set_bash_input __P((void));
308 static int run_one_command __P((char *));
309 #if defined (WORDEXP_OPTION)
310 static int run_wordexp __P((char *));
311 #endif
312
313 static int uidget __P((void));
314
315 static void init_interactive __P((void));
316 static void init_noninteractive __P((void));
317 static void init_interactive_script __P((void));
318
319 static void set_shell_name __P((char *));
320 static void shell_initialize __P((void));
321 static void shell_reinitialize __P((void));
322
323 static void show_shell_usage __P((FILE *, int));
324
325 #ifdef __CYGWIN__
326 static void
327 _cygwin32_check_tmp ()
328 {
329   struct stat sb;
330
331   if (stat ("/tmp", &sb) < 0)
332     internal_warning (_("could not find /tmp, please create!"));
333   else
334     {
335       if (S_ISDIR (sb.st_mode) == 0)
336         internal_warning (_("/tmp must be a valid directory name"));
337     }
338 }
339 #endif /* __CYGWIN__ */
340
341 #if defined (NO_MAIN_ENV_ARG)
342 /* systems without third argument to main() */
343 int
344 main (argc, argv)
345      int argc;
346      char **argv;
347 #else /* !NO_MAIN_ENV_ARG */
348 int
349 main (argc, argv, env)
350      int argc;
351      char **argv, **env;
352 #endif /* !NO_MAIN_ENV_ARG */
353 {
354   register int i;
355   int code, old_errexit_flag;
356 #if defined (RESTRICTED_SHELL)
357   int saverst;
358 #endif
359   volatile int locally_skip_execution;
360   volatile int arg_index, top_level_arg_index;
361 #ifdef __OPENNT
362   char **env;
363
364   env = environ;
365 #endif /* __OPENNT */
366
367   USE_VAR(argc);
368   USE_VAR(argv);
369   USE_VAR(env);
370   USE_VAR(code);
371   USE_VAR(old_errexit_flag);
372 #if defined (RESTRICTED_SHELL)
373   USE_VAR(saverst);
374 #endif
375
376   /* Catch early SIGINTs. */
377   code = setjmp (top_level);
378   if (code)
379     exit (2);
380
381   xtrace_init ();
382
383 #if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
384 #  if 1
385   malloc_set_register (1);
386 #  endif
387 #endif
388
389   check_dev_tty ();
390
391 #ifdef __CYGWIN__
392   _cygwin32_check_tmp ();
393 #endif /* __CYGWIN__ */
394
395   /* Wait forever if we are debugging a login shell. */
396   while (debugging_login_shell) sleep (3);
397
398   set_default_locale ();
399
400   running_setuid = uidget ();
401
402   if (getenv ("POSIXLY_CORRECT") || getenv ("POSIX_PEDANTIC"))
403     posixly_correct = 1;
404
405 #if defined (USE_GNU_MALLOC_LIBRARY)
406   mcheck (programming_error, (void (*) ())0);
407 #endif /* USE_GNU_MALLOC_LIBRARY */
408
409   if (setjmp (subshell_top_level))
410     {
411       argc = subshell_argc;
412       argv = subshell_argv;
413       env = subshell_envp;
414       sourced_env = 0;
415     }
416
417   shell_reinitialized = 0;
418
419   /* Initialize `local' variables for all `invocations' of main (). */
420   arg_index = 1;
421   if (arg_index > argc)
422     arg_index = argc;
423   command_execution_string = (char *)NULL;
424   want_pending_command = locally_skip_execution = read_from_stdin = 0;
425   default_input = stdin;
426 #if defined (BUFFERED_INPUT)
427   default_buffered_input = -1;
428 #endif
429
430   /* Fix for the `infinite process creation' bug when running shell scripts
431      from startup files on System V. */
432   login_shell = make_login_shell = 0;
433
434   /* If this shell has already been run, then reinitialize it to a
435      vanilla state. */
436   if (shell_initialized || shell_name)
437     {
438       /* Make sure that we do not infinitely recurse as a login shell. */
439       if (*shell_name == '-')
440         shell_name++;
441
442       shell_reinitialize ();
443       if (setjmp (top_level))
444         exit (2);
445     }
446
447   shell_environment = env;
448   set_shell_name (argv[0]);
449   shell_start_time = NOW;       /* NOW now defined in general.h */
450
451   /* Parse argument flags from the input line. */
452
453   /* Find full word arguments first. */
454   arg_index = parse_long_options (argv, arg_index, argc);
455
456   if (want_initial_help)
457     {
458       show_shell_usage (stdout, 1);
459       exit (EXECUTION_SUCCESS);
460     }
461
462   if (do_version)
463     {
464       show_shell_version (1);
465       exit (EXECUTION_SUCCESS);
466     }
467
468   /* All done with full word options; do standard shell option parsing.*/
469   this_command_name = shell_name;       /* for error reporting */
470   arg_index = parse_shell_options (argv, arg_index, argc);
471
472   /* If user supplied the "--login" (or -l) flag, then set and invert
473      LOGIN_SHELL. */
474   if (make_login_shell)
475     {
476       login_shell++;
477       login_shell = -login_shell;
478     }
479
480   set_login_shell ("login_shell", login_shell != 0);
481
482   if (dump_po_strings)
483     dump_translatable_strings = 1;
484
485   if (dump_translatable_strings)
486     read_but_dont_execute = 1;
487
488   if (running_setuid && privileged_mode == 0)
489     disable_priv_mode ();
490
491   /* Need to get the argument to a -c option processed in the
492      above loop.  The next arg is a command to execute, and the
493      following args are $0...$n respectively. */
494   if (want_pending_command)
495     {
496       command_execution_string = argv[arg_index];
497       if (command_execution_string == 0)
498         {
499           report_error (_("%s: option requires an argument"), "-c");
500           exit (EX_BADUSAGE);
501         }
502       arg_index++;
503     }
504   this_command_name = (char *)NULL;
505
506   cmd_init();           /* initialize the command object caches */
507
508   /* First, let the outside world know about our interactive status.
509      A shell is interactive if the `-i' flag was given, or if all of
510      the following conditions are met:
511         no -c command
512         no arguments remaining or the -s flag given
513         standard input is a terminal
514         standard error is a terminal
515      Refer to Posix.2, the description of the `sh' utility. */
516
517   if (forced_interactive ||             /* -i flag */
518       (!command_execution_string &&     /* No -c command and ... */
519        wordexp_only == 0 &&             /* No --wordexp and ... */
520        ((arg_index == argc) ||          /*   no remaining args or... */
521         read_from_stdin) &&             /*   -s flag with args, and */
522        isatty (fileno (stdin)) &&       /* Input is a terminal and */
523        isatty (fileno (stderr))))       /* error output is a terminal. */
524     init_interactive ();
525   else
526     init_noninteractive ();
527
528 #define CLOSE_FDS_AT_LOGIN
529 #if defined (CLOSE_FDS_AT_LOGIN)
530   /*
531    * Some systems have the bad habit of starting login shells with lots of open
532    * file descriptors.  For instance, most systems that have picked up the
533    * pre-4.0 Sun YP code leave a file descriptor open each time you call one
534    * of the getpw* functions, and it's set to be open across execs.  That
535    * means one for login, one for xterm, one for shelltool, etc.
536    */
537   if (login_shell && interactive_shell)
538     {
539       for (i = 3; i < 20; i++)
540         close (i);
541     }
542 #endif /* CLOSE_FDS_AT_LOGIN */
543
544   /* If we're in a strict Posix.2 mode, turn on interactive comments,
545      alias expansion in non-interactive shells, and other Posix.2 things. */
546   if (posixly_correct)
547     {
548       bind_variable ("POSIXLY_CORRECT", "y", 0);
549       sv_strict_posix ("POSIXLY_CORRECT");
550     }
551
552   /* Now we run the shopt_alist and process the options. */
553   if (shopt_alist)
554     run_shopt_alist ();
555
556   /* From here on in, the shell must be a normal functioning shell.
557      Variables from the environment are expected to be set, etc. */
558   shell_initialize ();
559
560   set_default_lang ();
561   set_default_locale_vars ();
562
563   /*
564    * M-x term -> TERM=eterm EMACS=22.1 (term:0.96)      (eterm)
565    * M-x shell -> TERM=dumb EMACS=t                     (no line editing)
566    * M-x terminal -> TERM=emacs-em7955 EMACS=           (line editing)
567    */
568   if (interactive_shell)
569     {
570       char *term, *emacs;
571
572       term = get_string_value ("TERM");
573       emacs = get_string_value ("EMACS");
574
575       /* Not sure any emacs terminal emulator sets TERM=emacs any more */
576       no_line_editing |= term && (STREQ (term, "emacs"));
577       no_line_editing |= emacs && emacs[0] == 't' && emacs[1] == '\0' && STREQ (term, "dumb");
578
579       /* running_under_emacs == 2 for `eterm' */
580       running_under_emacs = (emacs != 0) || (term && STREQN (term, "emacs", 5));
581       running_under_emacs += term && STREQN (term, "eterm", 5) && emacs && strstr (emacs, "term");
582
583       if (running_under_emacs)
584         gnu_error_format = 1;
585     }
586
587   top_level_arg_index = arg_index;
588   old_errexit_flag = exit_immediately_on_error;
589
590   /* Give this shell a place to longjmp to before executing the
591      startup files.  This allows users to press C-c to abort the
592      lengthy startup. */
593   code = setjmp (top_level);
594   if (code)
595     {
596       if (code == EXITPROG || code == ERREXIT)
597         exit_shell (last_command_exit_value);
598       else
599         {
600 #if defined (JOB_CONTROL)
601           /* Reset job control, since run_startup_files turned it off. */
602           set_job_control (interactive_shell);
603 #endif
604           /* Reset value of `set -e', since it's turned off before running
605              the startup files. */
606           exit_immediately_on_error += old_errexit_flag;
607           locally_skip_execution++;
608         }
609     }
610
611   arg_index = top_level_arg_index;
612
613   /* Execute the start-up scripts. */
614
615   if (interactive_shell == 0)
616     {
617       unbind_variable ("PS1");
618       unbind_variable ("PS2");
619       interactive = 0;
620 #if 0
621       /* This has already been done by init_noninteractive */
622       expand_aliases = posixly_correct;
623 #endif
624     }
625   else
626     {
627       change_flag ('i', FLAG_ON);
628       interactive = 1;
629     }
630
631 #if defined (RESTRICTED_SHELL)
632   /* Set restricted_shell based on whether the basename of $0 indicates that
633      the shell should be restricted or if the `-r' option was supplied at
634      startup. */
635   restricted_shell = shell_is_restricted (shell_name);
636
637   /* If the `-r' option is supplied at invocation, make sure that the shell
638      is not in restricted mode when running the startup files. */
639   saverst = restricted;
640   restricted = 0;
641 #endif
642
643   /* The startup files are run with `set -e' temporarily disabled. */
644   if (locally_skip_execution == 0 && running_setuid == 0)
645     {
646       old_errexit_flag = exit_immediately_on_error;
647       exit_immediately_on_error = 0;
648
649       run_startup_files ();
650       exit_immediately_on_error += old_errexit_flag;
651     }
652
653   /* If we are invoked as `sh', turn on Posix mode. */
654   if (act_like_sh)
655     {
656       bind_variable ("POSIXLY_CORRECT", "y", 0);
657       sv_strict_posix ("POSIXLY_CORRECT");
658     }
659
660 #if defined (RESTRICTED_SHELL)
661   /* Turn on the restrictions after executing the startup files.  This
662      means that `bash -r' or `set -r' invoked from a startup file will
663      turn on the restrictions after the startup files are executed. */
664   restricted = saverst || restricted;
665   if (shell_reinitialized == 0)
666     maybe_make_restricted (shell_name);
667 #endif /* RESTRICTED_SHELL */
668
669 #if defined (WORDEXP_OPTION)
670   if (wordexp_only)
671     {
672       startup_state = 3;
673       last_command_exit_value = run_wordexp (argv[arg_index]);
674       exit_shell (last_command_exit_value);
675     }
676 #endif
677
678   if (command_execution_string)
679     {
680       arg_index = bind_args (argv, arg_index, argc, 0);
681       startup_state = 2;
682
683       if (debugging_mode)
684         start_debugger ();
685
686 #if defined (ONESHOT)
687       executing = 1;
688       run_one_command (command_execution_string);
689       exit_shell (last_command_exit_value);
690 #else /* ONESHOT */
691       with_input_from_string (command_execution_string, "-c");
692       goto read_and_execute;
693 #endif /* !ONESHOT */
694     }
695
696   /* Get possible input filename and set up default_buffered_input or
697      default_input as appropriate. */
698   if (arg_index != argc && read_from_stdin == 0)
699     {
700       open_shell_script (argv[arg_index]);
701       arg_index++;
702     }
703   else if (interactive == 0)
704     /* In this mode, bash is reading a script from stdin, which is a
705        pipe or redirected file. */
706 #if defined (BUFFERED_INPUT)
707     default_buffered_input = fileno (stdin);    /* == 0 */
708 #else
709     setbuf (default_input, (char *)NULL);
710 #endif /* !BUFFERED_INPUT */
711
712   set_bash_input ();
713
714   /* Bind remaining args to $1 ... $n */
715   arg_index = bind_args (argv, arg_index, argc, 1);
716
717   if (debugging_mode && locally_skip_execution == 0 && running_setuid == 0)
718     start_debugger ();
719
720   /* Do the things that should be done only for interactive shells. */
721   if (interactive_shell)
722     {
723       /* Set up for checking for presence of mail. */
724       reset_mail_timer ();
725       init_mail_dates ();
726
727 #if defined (HISTORY)
728       /* Initialize the interactive history stuff. */
729       bash_initialize_history ();
730       /* Don't load the history from the history file if we've already
731          saved some lines in this session (e.g., by putting `history -s xx'
732          into one of the startup files). */
733       if (shell_initialized == 0 && history_lines_this_session == 0)
734         load_history ();
735 #endif /* HISTORY */
736
737       /* Initialize terminal state for interactive shells after the
738          .bash_profile and .bashrc are interpreted. */
739       get_tty_state ();
740     }
741
742 #if !defined (ONESHOT)
743  read_and_execute:
744 #endif /* !ONESHOT */
745
746   shell_initialized = 1;
747
748   /* Read commands until exit condition. */
749   reader_loop ();
750   exit_shell (last_command_exit_value);
751 }
752
753 static int
754 parse_long_options (argv, arg_start, arg_end)
755      char **argv;
756      int arg_start, arg_end;
757 {
758   int arg_index, longarg, i;
759   char *arg_string;
760
761   arg_index = arg_start;
762   while ((arg_index != arg_end) && (arg_string = argv[arg_index]) &&
763          (*arg_string == '-'))
764     {
765       longarg = 0;
766
767       /* Make --login equivalent to -login. */
768       if (arg_string[1] == '-' && arg_string[2])
769         {
770           longarg = 1;
771           arg_string++;
772         }
773
774       for (i = 0; long_args[i].name; i++)
775         {
776           if (STREQ (arg_string + 1, long_args[i].name))
777             {
778               if (long_args[i].type == Int)
779                 *long_args[i].int_value = 1;
780               else if (argv[++arg_index] == 0)
781                 {
782                   report_error (_("%s: option requires an argument"), long_args[i].name);
783                   exit (EX_BADUSAGE);
784                 }
785               else
786                 *long_args[i].char_value = argv[arg_index];
787
788               break;
789             }
790         }
791       if (long_args[i].name == 0)
792         {
793           if (longarg)
794             {
795               report_error (_("%s: invalid option"), argv[arg_index]);
796               show_shell_usage (stderr, 0);
797               exit (EX_BADUSAGE);
798             }
799           break;                /* No such argument.  Maybe flag arg. */
800         }
801
802       arg_index++;
803     }
804
805   return (arg_index);
806 }
807
808 static int
809 parse_shell_options (argv, arg_start, arg_end)
810      char **argv;
811      int arg_start, arg_end;
812 {
813   int arg_index;
814   int arg_character, on_or_off, next_arg, i;
815   char *o_option, *arg_string;
816
817   arg_index = arg_start;
818   while (arg_index != arg_end && (arg_string = argv[arg_index]) &&
819          (*arg_string == '-' || *arg_string == '+'))
820     {
821       /* There are flag arguments, so parse them. */
822       next_arg = arg_index + 1;
823
824       /* A single `-' signals the end of options.  From the 4.3 BSD sh.
825          An option `--' means the same thing; this is the standard
826          getopt(3) meaning. */
827       if (arg_string[0] == '-' &&
828            (arg_string[1] == '\0' ||
829              (arg_string[1] == '-' && arg_string[2] == '\0')))
830         return (next_arg);
831
832       i = 1;
833       on_or_off = arg_string[0];
834       while (arg_character = arg_string[i++])
835         {
836           switch (arg_character)
837             {
838             case 'c':
839               want_pending_command = 1;
840               break;
841
842             case 'l':
843               make_login_shell = 1;
844               break;
845
846             case 's':
847               read_from_stdin = 1;
848               break;
849
850             case 'o':
851               o_option = argv[next_arg];
852               if (o_option == 0)
853                 {
854                   list_minus_o_opts (-1, (on_or_off == '-') ? 0 : 1);
855                   break;
856                 }
857               if (set_minus_o_option (on_or_off, o_option) != EXECUTION_SUCCESS)
858                 exit (EX_BADUSAGE);
859               next_arg++;
860               break;
861
862             case 'O':
863               /* Since some of these can be overridden by the normal
864                  interactive/non-interactive shell initialization or
865                  initializing posix mode, we save the options and process
866                  them after initialization. */
867               o_option = argv[next_arg];
868               if (o_option == 0)
869                 {
870                   shopt_listopt (o_option, (on_or_off == '-') ? 0 : 1);
871                   break;
872                 }
873               add_shopt_to_alist (o_option, on_or_off);
874               next_arg++;
875               break;
876
877             case 'D':
878               dump_translatable_strings = 1;
879               break;
880
881             default:
882               if (change_flag (arg_character, on_or_off) == FLAG_ERROR)
883                 {
884                   report_error (_("%c%c: invalid option"), on_or_off, arg_character);
885                   show_shell_usage (stderr, 0);
886                   exit (EX_BADUSAGE);
887                 }
888             }
889         }
890       /* Can't do just a simple increment anymore -- what about
891          "bash -abouo emacs ignoreeof -hP"? */
892       arg_index = next_arg;
893     }
894
895   return (arg_index);
896 }
897
898 /* Exit the shell with status S. */
899 void
900 exit_shell (s)
901      int s;
902 {
903   fflush (stdout);              /* XXX */
904   fflush (stderr);
905
906   /* Do trap[0] if defined.  Allow it to override the exit status
907      passed to us. */
908   if (signal_is_trapped (0))
909     s = run_exit_trap ();
910
911 #if defined (PROCESS_SUBSTITUTION)
912   unlink_fifo_list ();
913 #endif /* PROCESS_SUBSTITUTION */
914
915 #if defined (HISTORY)
916   if (interactive_shell)
917     maybe_save_shell_history ();
918 #endif /* HISTORY */
919
920 #if defined (COPROCESS_SUPPORT)
921   coproc_flush ();
922 #endif
923
924 #if defined (JOB_CONTROL)
925   /* If the user has run `shopt -s huponexit', hangup all jobs when we exit
926      an interactive login shell.  ksh does this unconditionally. */
927   if (interactive_shell && login_shell && hup_on_exit)
928     hangup_all_jobs ();
929
930   /* If this shell is interactive, terminate all stopped jobs and
931      restore the original terminal process group.  Don't do this if we're
932      in a subshell and calling exit_shell after, for example, a failed
933      word expansion. */
934   if (subshell_environment == 0)
935     end_job_control ();
936 #endif /* JOB_CONTROL */
937
938   /* Always return the exit status of the last command to our parent. */
939   sh_exit (s);
940 }
941
942 /* A wrapper for exit that (optionally) can do other things, like malloc
943    statistics tracing. */
944 void
945 sh_exit (s)
946      int s;
947 {
948 #if defined (MALLOC_DEBUG) && defined (USING_BASH_MALLOC)
949   if (malloc_trace_at_exit)
950     trace_malloc_stats (get_name_for_error (), (char *)NULL);
951 #endif
952
953   exit (s);
954 }
955
956 /* Source the bash startup files.  If POSIXLY_CORRECT is non-zero, we obey
957    the Posix.2 startup file rules:  $ENV is expanded, and if the file it
958    names exists, that file is sourced.  The Posix.2 rules are in effect
959    for interactive shells only. (section 4.56.5.3) */
960
961 /* Execute ~/.bashrc for most shells.  Never execute it if
962    ACT_LIKE_SH is set, or if NO_RC is set.
963
964    If the executable file "/usr/gnu/src/bash/foo" contains:
965
966    #!/usr/gnu/bin/bash
967    echo hello
968
969    then:
970
971          COMMAND            EXECUTE BASHRC
972          --------------------------------
973          bash -c foo            NO
974          bash foo               NO
975          foo                    NO
976          rsh machine ls         YES (for rsh, which calls `bash -c')
977          rsh machine foo        YES (for shell started by rsh) NO (for foo!)
978          echo ls | bash         NO
979          login                  NO
980          bash                   YES
981 */
982
983 static void
984 execute_env_file (env_file)
985       char *env_file;
986 {
987   char *fn;
988
989   if (env_file && *env_file)
990     {
991       fn = expand_string_unsplit_to_string (env_file, Q_DOUBLE_QUOTES);
992       if (fn && *fn)
993         maybe_execute_file (fn, 1);
994       FREE (fn);
995     }
996 }
997
998 static void
999 run_startup_files ()
1000 {
1001 #if defined (JOB_CONTROL)
1002   int old_job_control;
1003 #endif
1004   int sourced_login, run_by_ssh;
1005
1006   /* get the rshd/sshd case out of the way first. */
1007   if (interactive_shell == 0 && no_rc == 0 && login_shell == 0 &&
1008       act_like_sh == 0 && command_execution_string)
1009     {
1010 #ifdef SSH_SOURCE_BASHRC
1011       run_by_ssh = (find_variable ("SSH_CLIENT") != (SHELL_VAR *)0) ||
1012                    (find_variable ("SSH2_CLIENT") != (SHELL_VAR *)0);
1013 #else
1014       run_by_ssh = 0;
1015 #endif
1016
1017       /* If we were run by sshd or we think we were run by rshd, execute
1018          ~/.bashrc if we are a top-level shell. */
1019       if ((run_by_ssh || isnetconn (fileno (stdin))) && shell_level < 2)
1020         {
1021 #ifdef SYS_BASHRC
1022 #  if defined (__OPENNT)
1023           maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
1024 #  else
1025           maybe_execute_file (SYS_BASHRC, 1);
1026 #  endif
1027 #endif
1028           maybe_execute_file (bashrc_file, 1);
1029           return;
1030         }
1031     }
1032
1033 #if defined (JOB_CONTROL)
1034   /* Startup files should be run without job control enabled. */
1035   old_job_control = interactive_shell ? set_job_control (0) : 0;
1036 #endif
1037
1038   sourced_login = 0;
1039
1040   /* A shell begun with the --login (or -l) flag that is not in posix mode
1041      runs the login shell startup files, no matter whether or not it is
1042      interactive.  If NON_INTERACTIVE_LOGIN_SHELLS is defined, run the
1043      startup files if argv[0][0] == '-' as well. */
1044 #if defined (NON_INTERACTIVE_LOGIN_SHELLS)
1045   if (login_shell && posixly_correct == 0)
1046 #else
1047   if (login_shell < 0 && posixly_correct == 0)
1048 #endif
1049     {
1050       /* We don't execute .bashrc for login shells. */
1051       no_rc++;
1052
1053       /* Execute /etc/profile and one of the personal login shell
1054          initialization files. */
1055       if (no_profile == 0)
1056         {
1057           maybe_execute_file (SYS_PROFILE, 1);
1058
1059           if (act_like_sh)      /* sh */
1060             maybe_execute_file ("~/.profile", 1);
1061           else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1062                    (maybe_execute_file ("~/.bash_login", 1) == 0))      /* bash */
1063             maybe_execute_file ("~/.profile", 1);
1064         }
1065
1066       sourced_login = 1;
1067     }
1068
1069   /* A non-interactive shell not named `sh' and not in posix mode reads and
1070      executes commands from $BASH_ENV.  If `su' starts a shell with `-c cmd'
1071      and `-su' as the name of the shell, we want to read the startup files.
1072      No other non-interactive shells read any startup files. */
1073   if (interactive_shell == 0 && !(su_shell && login_shell))
1074     {
1075       if (posixly_correct == 0 && act_like_sh == 0 && privileged_mode == 0 &&
1076             sourced_env++ == 0)
1077         execute_env_file (get_string_value ("BASH_ENV"));
1078       return;
1079     }
1080
1081   /* Interactive shell or `-su' shell. */
1082   if (posixly_correct == 0)               /* bash, sh */
1083     {
1084       if (login_shell && sourced_login++ == 0)
1085         {
1086           /* We don't execute .bashrc for login shells. */
1087           no_rc++;
1088
1089           /* Execute /etc/profile and one of the personal login shell
1090              initialization files. */
1091           if (no_profile == 0)
1092             {
1093               maybe_execute_file (SYS_PROFILE, 1);
1094
1095               if (act_like_sh)  /* sh */
1096                 maybe_execute_file ("~/.profile", 1);
1097               else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1098                        (maybe_execute_file ("~/.bash_login", 1) == 0))  /* bash */
1099                 maybe_execute_file ("~/.profile", 1);
1100             }
1101         }
1102
1103       /* bash */
1104       if (act_like_sh == 0 && no_rc == 0)
1105         {
1106 #ifdef SYS_BASHRC
1107 #  if defined (__OPENNT)
1108           maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
1109 #  else
1110           maybe_execute_file (SYS_BASHRC, 1);
1111 #  endif
1112 #endif
1113           maybe_execute_file (bashrc_file, 1);
1114         }
1115       /* sh */
1116       else if (act_like_sh && privileged_mode == 0 && sourced_env++ == 0)
1117         execute_env_file (get_string_value ("ENV"));
1118     }
1119   else          /* bash --posix, sh --posix */
1120     {
1121       /* bash and sh */
1122       if (interactive_shell && privileged_mode == 0 && sourced_env++ == 0)
1123         execute_env_file (get_string_value ("ENV"));
1124     }
1125
1126 #if defined (JOB_CONTROL)
1127   set_job_control (old_job_control);
1128 #endif
1129 }
1130
1131 #if defined (RESTRICTED_SHELL)
1132 /* Return 1 if the shell should be a restricted one based on NAME or the
1133    value of `restricted'.  Don't actually do anything, just return a
1134    boolean value. */
1135 int
1136 shell_is_restricted (name)
1137      char *name;
1138 {
1139   char *temp;
1140
1141   if (restricted)
1142     return 1;
1143   temp = base_pathname (name);
1144   if (*temp == '-')
1145     temp++;
1146   return (STREQ (temp, RESTRICTED_SHELL_NAME));
1147 }
1148
1149 /* Perhaps make this shell a `restricted' one, based on NAME.  If the
1150    basename of NAME is "rbash", then this shell is restricted.  The
1151    name of the restricted shell is a configurable option, see config.h.
1152    In a restricted shell, PATH, SHELL, ENV, and BASH_ENV are read-only
1153    and non-unsettable.
1154    Do this also if `restricted' is already set to 1; maybe the shell was
1155    started with -r. */
1156 int
1157 maybe_make_restricted (name)
1158      char *name;
1159 {
1160   char *temp;
1161
1162   temp = base_pathname (name);
1163   if (*temp == '-')
1164     temp++;
1165   if (restricted || (STREQ (temp, RESTRICTED_SHELL_NAME)))
1166     {
1167       set_var_read_only ("PATH");
1168       set_var_read_only ("SHELL");
1169       set_var_read_only ("ENV");
1170       set_var_read_only ("BASH_ENV");
1171       restricted = 1;
1172     }
1173   return (restricted);
1174 }
1175 #endif /* RESTRICTED_SHELL */
1176
1177 /* Fetch the current set of uids and gids and return 1 if we're running
1178    setuid or setgid. */
1179 static int
1180 uidget ()
1181 {
1182   uid_t u;
1183
1184   u = getuid ();
1185   if (current_user.uid != u)
1186     {
1187       FREE (current_user.user_name);
1188       FREE (current_user.shell);
1189       FREE (current_user.home_dir);
1190       current_user.user_name = current_user.shell = current_user.home_dir = (char *)NULL;
1191     }
1192   current_user.uid = u;
1193   current_user.gid = getgid ();
1194   current_user.euid = geteuid ();
1195   current_user.egid = getegid ();
1196
1197   /* See whether or not we are running setuid or setgid. */
1198   return (current_user.uid != current_user.euid) ||
1199            (current_user.gid != current_user.egid);
1200 }
1201
1202 void
1203 disable_priv_mode ()
1204 {
1205   setuid (current_user.uid);
1206   setgid (current_user.gid);
1207   current_user.euid = current_user.uid;
1208   current_user.egid = current_user.gid;
1209 }
1210
1211 #if defined (WORDEXP_OPTION)
1212 static int
1213 run_wordexp (words)
1214      char *words;
1215 {
1216   int code, nw, nb;
1217   WORD_LIST *wl, *tl, *result;
1218
1219   code = setjmp (top_level);
1220
1221   if (code != NOT_JUMPED)
1222     {
1223       switch (code)
1224         {
1225           /* Some kind of throw to top_level has occured. */
1226         case FORCE_EOF:
1227           return last_command_exit_value = 127;
1228         case ERREXIT:
1229         case EXITPROG:
1230           return last_command_exit_value;
1231         case DISCARD:
1232           return last_command_exit_value = 1;
1233         default:
1234           command_error ("run_wordexp", CMDERR_BADJUMP, code, 0);
1235         }
1236     }
1237
1238   /* Run it through the parser to get a list of words and expand them */
1239   if (words && *words)
1240     {
1241       with_input_from_string (words, "--wordexp");
1242       if (parse_command () != 0)
1243         return (126);
1244       if (global_command == 0)
1245         {
1246           printf ("0\n0\n");
1247           return (0);
1248         }
1249       if (global_command->type != cm_simple)
1250         return (126);
1251       wl = global_command->value.Simple->words;
1252       if (protected_mode)
1253         for (tl = wl; tl; tl = tl->next)
1254           tl->word->flags |= W_NOCOMSUB|W_NOPROCSUB;
1255       result = wl ? expand_words_no_vars (wl) : (WORD_LIST *)0;
1256     }
1257   else
1258     result = (WORD_LIST *)0;
1259
1260   last_command_exit_value = 0;
1261
1262   if (result == 0)
1263     {
1264       printf ("0\n0\n");
1265       return (0);
1266     }
1267
1268   /* Count up the number of words and bytes, and print them.  Don't count
1269      the trailing NUL byte. */
1270   for (nw = nb = 0, wl = result; wl; wl = wl->next)
1271     {
1272       nw++;
1273       nb += strlen (wl->word->word);
1274     }
1275   printf ("%u\n%u\n", nw, nb);
1276   /* Print each word on a separate line.  This will have to be changed when
1277      the interface to glibc is completed. */
1278   for (wl = result; wl; wl = wl->next)
1279     printf ("%s\n", wl->word->word);
1280
1281   return (0);
1282 }
1283 #endif
1284
1285 #if defined (ONESHOT)
1286 /* Run one command, given as the argument to the -c option.  Tell
1287    parse_and_execute not to fork for a simple command. */
1288 static int
1289 run_one_command (command)
1290      char *command;
1291 {
1292   int code;
1293
1294   code = setjmp (top_level);
1295
1296   if (code != NOT_JUMPED)
1297     {
1298 #if defined (PROCESS_SUBSTITUTION)
1299       unlink_fifo_list ();
1300 #endif /* PROCESS_SUBSTITUTION */
1301       switch (code)
1302         {
1303           /* Some kind of throw to top_level has occured. */
1304         case FORCE_EOF:
1305           return last_command_exit_value = 127;
1306         case ERREXIT:
1307         case EXITPROG:
1308           return last_command_exit_value;
1309         case DISCARD:
1310           return last_command_exit_value = 1;
1311         default:
1312           command_error ("run_one_command", CMDERR_BADJUMP, code, 0);
1313         }
1314     }
1315    return (parse_and_execute (savestring (command), "-c", SEVAL_NOHIST));
1316 }
1317 #endif /* ONESHOT */
1318
1319 static int
1320 bind_args (argv, arg_start, arg_end, start_index)
1321      char **argv;
1322      int arg_start, arg_end, start_index;
1323 {
1324   register int i;
1325   WORD_LIST *args;
1326
1327   for (i = arg_start, args = (WORD_LIST *)NULL; i < arg_end; i++)
1328     args = make_word_list (make_word (argv[i]), args);
1329   if (args)
1330     {
1331       args = REVERSE_LIST (args, WORD_LIST *);
1332       if (start_index == 0)     /* bind to $0...$n for sh -c command */
1333         {
1334           /* Posix.2 4.56.3 says that the first argument after sh -c command
1335              becomes $0, and the rest of the arguments become $1...$n */
1336           shell_name = savestring (args->word->word);
1337           FREE (dollar_vars[0]);
1338           dollar_vars[0] = savestring (args->word->word);
1339           remember_args (args->next, 1);
1340           push_args (args->next);       /* BASH_ARGV and BASH_ARGC */
1341         }
1342       else                      /* bind to $1...$n for shell script */
1343         {
1344           remember_args (args, 1);
1345           push_args (args);             /* BASH_ARGV and BASH_ARGC */
1346         }
1347
1348       dispose_words (args);
1349     }
1350
1351   return (i);
1352 }
1353
1354 void
1355 unbind_args ()
1356 {
1357   remember_args ((WORD_LIST *)NULL, 1);
1358   pop_args ();                          /* Reset BASH_ARGV and BASH_ARGC */
1359 }
1360
1361 static void
1362 start_debugger ()
1363 {
1364 #if defined (DEBUGGER) && defined (DEBUGGER_START_FILE)
1365   int old_errexit;
1366
1367   old_errexit = exit_immediately_on_error;
1368   exit_immediately_on_error = 0;
1369
1370   maybe_execute_file (DEBUGGER_START_FILE, 1);
1371   function_trace_mode = 1;
1372
1373   exit_immediately_on_error += old_errexit;
1374 #endif
1375 }
1376
1377 static int
1378 open_shell_script (script_name)
1379      char *script_name;
1380 {
1381   int fd, e, fd_is_tty;
1382   char *filename, *path_filename, *t;
1383   char sample[80];
1384   int sample_len;
1385   struct stat sb;
1386 #if defined (ARRAY_VARS)
1387   SHELL_VAR *funcname_v, *bash_source_v, *bash_lineno_v;
1388   ARRAY *funcname_a, *bash_source_a, *bash_lineno_a;
1389 #endif
1390
1391   filename = savestring (script_name);
1392
1393   fd = open (filename, O_RDONLY);
1394   if ((fd < 0) && (errno == ENOENT) && (absolute_program (filename) == 0))
1395     {
1396       e = errno;
1397       /* If it's not in the current directory, try looking through PATH
1398          for it. */
1399       path_filename = find_path_file (script_name);
1400       if (path_filename)
1401         {
1402           free (filename);
1403           filename = path_filename;
1404           fd = open (filename, O_RDONLY);
1405         }
1406       else
1407         errno = e;
1408     }
1409
1410   if (fd < 0)
1411     {
1412       e = errno;
1413       file_error (filename);
1414       exit ((e == ENOENT) ? EX_NOTFOUND : EX_NOINPUT);
1415     }
1416
1417   free (dollar_vars[0]);
1418   dollar_vars[0] = savestring (script_name);
1419
1420 #if defined (ARRAY_VARS)
1421   GET_ARRAY_FROM_VAR ("FUNCNAME", funcname_v, funcname_a);
1422   GET_ARRAY_FROM_VAR ("BASH_SOURCE", bash_source_v, bash_source_a);
1423   GET_ARRAY_FROM_VAR ("BASH_LINENO", bash_lineno_v, bash_lineno_a);
1424
1425   array_push (bash_source_a, filename);
1426   if (bash_lineno_a)
1427     {
1428       t = itos (executing_line_number ());
1429       array_push (bash_lineno_a, t);
1430       free (t);
1431     }
1432   array_push (funcname_a, "main");
1433 #endif
1434
1435 #ifdef HAVE_DEV_FD
1436   fd_is_tty = isatty (fd);
1437 #else
1438   fd_is_tty = 0;
1439 #endif
1440
1441   /* Only do this with non-tty file descriptors we can seek on. */
1442   if (fd_is_tty == 0 && (lseek (fd, 0L, 1) != -1))
1443     {
1444       /* Check to see if the `file' in `bash file' is a binary file
1445          according to the same tests done by execute_simple_command (),
1446          and report an error and exit if it is. */
1447       sample_len = read (fd, sample, sizeof (sample));
1448       if (sample_len < 0)
1449         {
1450           e = errno;
1451           if ((fstat (fd, &sb) == 0) && S_ISDIR (sb.st_mode))
1452             internal_error (_("%s: is a directory"), filename);
1453           else
1454             {
1455               errno = e;
1456               file_error (filename);
1457             }
1458           exit (EX_NOEXEC);
1459         }
1460       else if (sample_len > 0 && (check_binary_file (sample, sample_len)))
1461         {
1462           internal_error (_("%s: cannot execute binary file"), filename);
1463           exit (EX_BINARY_FILE);
1464         }
1465       /* Now rewind the file back to the beginning. */
1466       lseek (fd, 0L, 0);
1467     }
1468
1469   /* Open the script.  But try to move the file descriptor to a randomly
1470      large one, in the hopes that any descriptors used by the script will
1471      not match with ours. */
1472   fd = move_to_high_fd (fd, 1, -1);
1473
1474 #if defined (__CYGWIN__) && defined (O_TEXT)
1475   setmode (fd, O_TEXT);
1476 #endif
1477
1478 #if defined (BUFFERED_INPUT)
1479   default_buffered_input = fd;
1480   SET_CLOSE_ON_EXEC (default_buffered_input);
1481 #else /* !BUFFERED_INPUT */
1482   default_input = fdopen (fd, "r");
1483
1484   if (default_input == 0)
1485     {
1486       file_error (filename);
1487       exit (EX_NOTFOUND);
1488     }
1489
1490   SET_CLOSE_ON_EXEC (fd);
1491   if (fileno (default_input) != fd)
1492     SET_CLOSE_ON_EXEC (fileno (default_input));
1493 #endif /* !BUFFERED_INPUT */
1494
1495   /* Just about the only way for this code to be executed is if something
1496      like `bash -i /dev/stdin' is executed. */
1497   if (interactive_shell && fd_is_tty)
1498     {
1499       dup2 (fd, 0);
1500       close (fd);
1501       fd = 0;
1502 #if defined (BUFFERED_INPUT)
1503       default_buffered_input = 0;
1504 #else
1505       fclose (default_input);
1506       default_input = stdin;
1507 #endif
1508     }
1509   else if (forced_interactive && fd_is_tty == 0)
1510     /* But if a script is called with something like `bash -i scriptname',
1511        we need to do a non-interactive setup here, since we didn't do it
1512        before. */
1513     init_interactive_script ();
1514
1515   free (filename);
1516   return (fd);
1517 }
1518
1519 /* Initialize the input routines for the parser. */
1520 static void
1521 set_bash_input ()
1522 {
1523   /* Make sure the fd from which we are reading input is not in
1524      no-delay mode. */
1525 #if defined (BUFFERED_INPUT)
1526   if (interactive == 0)
1527     sh_unset_nodelay_mode (default_buffered_input);
1528   else
1529 #endif /* !BUFFERED_INPUT */
1530     sh_unset_nodelay_mode (fileno (stdin));
1531
1532   /* with_input_from_stdin really means `with_input_from_readline' */
1533   if (interactive && no_line_editing == 0)
1534     with_input_from_stdin ();
1535 #if defined (BUFFERED_INPUT)
1536   else if (interactive == 0)
1537     with_input_from_buffered_stream (default_buffered_input, dollar_vars[0]);
1538 #endif /* BUFFERED_INPUT */
1539   else
1540     with_input_from_stream (default_input, dollar_vars[0]);
1541 }
1542
1543 /* Close the current shell script input source and forget about it.  This is
1544    extern so execute_cmd.c:initialize_subshell() can call it.  If CHECK_ZERO
1545    is non-zero, we close default_buffered_input even if it's the standard
1546    input (fd 0). */
1547 void
1548 unset_bash_input (check_zero)
1549      int check_zero;
1550 {
1551 #if defined (BUFFERED_INPUT)
1552   if ((check_zero && default_buffered_input >= 0) ||
1553       (check_zero == 0 && default_buffered_input > 0))
1554     {
1555       close_buffered_fd (default_buffered_input);
1556       default_buffered_input = bash_input.location.buffered_fd = -1;
1557       bash_input.type = st_none;                /* XXX */
1558     }
1559 #else /* !BUFFERED_INPUT */
1560   if (default_input)
1561     {
1562       fclose (default_input);
1563       default_input = (FILE *)NULL;
1564     }
1565 #endif /* !BUFFERED_INPUT */
1566 }
1567       
1568
1569 #if !defined (PROGRAM)
1570 #  define PROGRAM "bash"
1571 #endif
1572
1573 static void
1574 set_shell_name (argv0)
1575      char *argv0;
1576 {
1577   /* Here's a hack.  If the name of this shell is "sh", then don't do
1578      any startup files; just try to be more like /bin/sh. */
1579   shell_name = argv0 ? base_pathname (argv0) : PROGRAM;
1580
1581   if (argv0 && *argv0 == '-')
1582     {
1583       if (*shell_name == '-')
1584         shell_name++;
1585       login_shell++;
1586     }
1587
1588   if (shell_name[0] == 's' && shell_name[1] == 'h' && shell_name[2] == '\0')
1589     act_like_sh++;
1590   if (shell_name[0] == 's' && shell_name[1] == 'u' && shell_name[2] == '\0')
1591     su_shell++;
1592
1593   shell_name = argv0 ? argv0 : PROGRAM;
1594   FREE (dollar_vars[0]);
1595   dollar_vars[0] = savestring (shell_name);
1596
1597   /* A program may start an interactive shell with
1598           "execl ("/bin/bash", "-", NULL)".
1599      If so, default the name of this shell to our name. */
1600   if (!shell_name || !*shell_name || (shell_name[0] == '-' && !shell_name[1]))
1601     shell_name = PROGRAM;
1602 }
1603
1604 static void
1605 init_interactive ()
1606 {
1607   expand_aliases = interactive_shell = startup_state = 1;
1608   interactive = 1;
1609 }
1610
1611 static void
1612 init_noninteractive ()
1613 {
1614 #if defined (HISTORY)
1615   bash_history_reinit (0);
1616 #endif /* HISTORY */
1617   interactive_shell = startup_state = interactive = 0;
1618   expand_aliases = posixly_correct;     /* XXX - was 0 not posixly_correct */
1619   no_line_editing = 1;
1620 #if defined (JOB_CONTROL)
1621   set_job_control (0);
1622 #endif /* JOB_CONTROL */
1623 }
1624
1625 static void
1626 init_interactive_script ()
1627 {
1628   init_noninteractive ();
1629   expand_aliases = interactive_shell = startup_state = 1;
1630 }
1631
1632 void
1633 get_current_user_info ()
1634 {
1635   struct passwd *entry;
1636
1637   /* Don't fetch this more than once. */
1638   if (current_user.user_name == 0)
1639     {
1640       entry = getpwuid (current_user.uid);
1641       if (entry)
1642         {
1643           current_user.user_name = savestring (entry->pw_name);
1644           current_user.shell = (entry->pw_shell && entry->pw_shell[0])
1645                                 ? savestring (entry->pw_shell)
1646                                 : savestring ("/bin/sh");
1647           current_user.home_dir = savestring (entry->pw_dir);
1648         }
1649       else
1650         {
1651           current_user.user_name = _("I have no name!");
1652           current_user.user_name = savestring (current_user.user_name);
1653           current_user.shell = savestring ("/bin/sh");
1654           current_user.home_dir = savestring ("/");
1655         }
1656       endpwent ();
1657     }
1658 }
1659
1660 /* Do whatever is necessary to initialize the shell.
1661    Put new initializations in here. */
1662 static void
1663 shell_initialize ()
1664 {
1665   char hostname[256];
1666
1667   /* Line buffer output for stderr and stdout. */
1668   if (shell_initialized == 0)
1669     {
1670       sh_setlinebuf (stderr);
1671       sh_setlinebuf (stdout);
1672     }
1673
1674   /* Sort the array of shell builtins so that the binary search in
1675      find_shell_builtin () works correctly. */
1676   initialize_shell_builtins ();
1677
1678   /* Initialize the trap signal handlers before installing our own
1679      signal handlers.  traps.c:restore_original_signals () is responsible
1680      for restoring the original default signal handlers.  That function
1681      is called when we make a new child. */
1682   initialize_traps ();
1683   initialize_signals (0);
1684
1685   /* It's highly unlikely that this will change. */
1686   if (current_host_name == 0)
1687     {
1688       /* Initialize current_host_name. */
1689       if (gethostname (hostname, 255) < 0)
1690         current_host_name = "??host??";
1691       else
1692         current_host_name = savestring (hostname);
1693     }
1694
1695   /* Initialize the stuff in current_user that comes from the password
1696      file.  We don't need to do this right away if the shell is not
1697      interactive. */
1698   if (interactive_shell)
1699     get_current_user_info ();
1700
1701   /* Initialize our interface to the tilde expander. */
1702   tilde_initialize ();
1703
1704   /* Initialize internal and environment variables.  Don't import shell
1705      functions from the environment if we are running in privileged or
1706      restricted mode or if the shell is running setuid. */
1707 #if defined (RESTRICTED_SHELL)
1708   initialize_shell_variables (shell_environment, privileged_mode||restricted||running_setuid);
1709 #else
1710   initialize_shell_variables (shell_environment, privileged_mode||running_setuid);
1711 #endif
1712
1713   /* Initialize the data structures for storing and running jobs. */
1714   initialize_job_control (0);
1715
1716   /* Initialize input streams to null. */
1717   initialize_bash_input ();
1718
1719   initialize_flags ();
1720
1721   /* Initialize the shell options.  Don't import the shell options
1722      from the environment variable $SHELLOPTS if we are running in
1723      privileged or restricted mode or if the shell is running setuid. */
1724 #if defined (RESTRICTED_SHELL)
1725   initialize_shell_options (privileged_mode||restricted||running_setuid);
1726   initialize_bashopts (privileged_mode||restricted||running_setuid);
1727 #else
1728   initialize_shell_options (privileged_mode||running_setuid);
1729   initialize_bashopts (privileged_mode||running_setuid);
1730 #endif
1731 }
1732
1733 /* Function called by main () when it appears that the shell has already
1734    had some initialization performed.  This is supposed to reset the world
1735    back to a pristine state, as if we had been exec'ed. */
1736 static void
1737 shell_reinitialize ()
1738 {
1739   /* The default shell prompts. */
1740   primary_prompt = PPROMPT;
1741   secondary_prompt = SPROMPT;
1742
1743   /* Things that get 1. */
1744   current_command_number = 1;
1745
1746   /* We have decided that the ~/.bashrc file should not be executed
1747      for the invocation of each shell script.  If the variable $ENV
1748      (or $BASH_ENV) is set, its value is used as the name of a file
1749      to source. */
1750   no_rc = no_profile = 1;
1751
1752   /* Things that get 0. */
1753   login_shell = make_login_shell = interactive = executing = 0;
1754   debugging = do_version = line_number = last_command_exit_value = 0;
1755   forced_interactive = interactive_shell = subshell_environment = 0;
1756   expand_aliases = 0;
1757
1758 #if defined (HISTORY)
1759   bash_history_reinit (0);
1760 #endif /* HISTORY */
1761
1762 #if defined (RESTRICTED_SHELL)
1763   restricted = 0;
1764 #endif /* RESTRICTED_SHELL */
1765
1766   /* Ensure that the default startup file is used.  (Except that we don't
1767      execute this file for reinitialized shells). */
1768   bashrc_file = "~/.bashrc";
1769
1770   /* Delete all variables and functions.  They will be reinitialized when
1771      the environment is parsed. */
1772   delete_all_contexts (shell_variables);
1773   delete_all_variables (shell_functions);
1774
1775   reinit_special_variables ();
1776
1777 #if defined (READLINE)
1778   bashline_reinitialize ();
1779 #endif
1780
1781   shell_reinitialized = 1;
1782 }
1783
1784 static void
1785 show_shell_usage (fp, extra)
1786      FILE *fp;
1787      int extra;
1788 {
1789   int i;
1790   char *set_opts, *s, *t;
1791
1792   if (extra)
1793     fprintf (fp, _("GNU bash, version %s-(%s)\n"), shell_version_string (), MACHTYPE);
1794   fprintf (fp, _("Usage:\t%s [GNU long option] [option] ...\n\t%s [GNU long option] [option] script-file ...\n"),
1795              shell_name, shell_name);
1796   fputs (_("GNU long options:\n"), fp);
1797   for (i = 0; long_args[i].name; i++)
1798     fprintf (fp, "\t--%s\n", long_args[i].name);
1799
1800   fputs (_("Shell options:\n"), fp);
1801   fputs (_("\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"), fp);
1802
1803   for (i = 0, set_opts = 0; shell_builtins[i].name; i++)
1804     if (STREQ (shell_builtins[i].name, "set"))
1805       set_opts = savestring (shell_builtins[i].short_doc);
1806   if (set_opts)
1807     {
1808       s = strchr (set_opts, '[');
1809       if (s == 0)
1810         s = set_opts;
1811       while (*++s == '-')
1812         ;
1813       t = strchr (s, ']');
1814       if (t)
1815         *t = '\0';
1816       fprintf (fp, _("\t-%s or -o option\n"), s);
1817       free (set_opts);
1818     }
1819
1820   if (extra)
1821     {
1822       fprintf (fp, _("Type `%s -c \"help set\"' for more information about shell options.\n"), shell_name);
1823       fprintf (fp, _("Type `%s -c help' for more information about shell builtin commands.\n"), shell_name);
1824       fprintf (fp, _("Use the `bashbug' command to report bugs.\n"));
1825     }
1826 }
1827
1828 static void
1829 add_shopt_to_alist (opt, on_or_off)
1830      char *opt;
1831      int on_or_off;
1832 {
1833   if (shopt_ind >= shopt_len)
1834     {
1835       shopt_len += 8;
1836       shopt_alist = (STRING_INT_ALIST *)xrealloc (shopt_alist, shopt_len * sizeof (shopt_alist[0]));
1837     }
1838   shopt_alist[shopt_ind].word = opt;
1839   shopt_alist[shopt_ind].token = on_or_off;
1840   shopt_ind++;
1841 }
1842
1843 static void
1844 run_shopt_alist ()
1845 {
1846   register int i;
1847
1848   for (i = 0; i < shopt_ind; i++)
1849     if (shopt_setopt (shopt_alist[i].word, (shopt_alist[i].token == '-')) != EXECUTION_SUCCESS)
1850       exit (EX_BADUSAGE);
1851   free (shopt_alist);
1852   shopt_alist = 0;
1853   shopt_ind = shopt_len = 0;
1854 }