blob: 6d07c78f589d9f5f3b3eec1cc0b8f942d90198ab [file] [log] [blame]
Jari Aaltobb706242000-03-17 21:46:59 +00001/* shell.c -- GNU's idea of the POSIX shell specification. */
Jari Aalto726f6381996-08-26 18:22:31 +00002
Jari Aalto95732b42005-12-07 14:08:12 +00003/* Copyright (C) 1987-2005 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00004
Jari Aaltobb706242000-03-17 21:46:59 +00005 This file is part of GNU Bash, the Bourne Again SHell.
Jari Aalto726f6381996-08-26 18:22:31 +00006
Jari Aaltobb706242000-03-17 21:46:59 +00007 Bash is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
Jari Aalto726f6381996-08-26 18:22:31 +000011
12 Bash is distributed in the hope that it will be useful, but WITHOUT
Jari Aaltobb706242000-03-17 21:46:59 +000013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
Jari Aalto726f6381996-08-26 18:22:31 +000016
Jari Aaltobb706242000-03-17 21:46:59 +000017 You should have received a copy of the GNU General Public License
18 along with Bash; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
Jari Aalto726f6381996-08-26 18:22:31 +000020
21 Birthdate:
22 Sunday, January 10th, 1988.
23 Initial author: Brian Fox
24*/
25#define INSTALL_DEBUG_MODE
26
Jari Aaltoccc6cda1996-12-23 17:02:34 +000027#include "config.h"
28
Jari Aalto726f6381996-08-26 18:22:31 +000029#include "bashtypes.h"
Jari Aaltob80f6442004-07-27 13:29:18 +000030#if !defined (_MINIX) && defined (HAVE_SYS_FILE_H)
Jari Aaltocce855b1998-04-17 19:52:44 +000031# include <sys/file.h>
32#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +000033#include "posixstat.h"
Jari Aaltof73dda02001-11-13 17:56:06 +000034#include "posixtime.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000035#include "bashansi.h"
Jari Aalto726f6381996-08-26 18:22:31 +000036#include <stdio.h>
37#include <signal.h>
38#include <errno.h>
Jari Aalto726f6381996-08-26 18:22:31 +000039#include "filecntl.h"
40#include <pwd.h>
Jari Aalto726f6381996-08-26 18:22:31 +000041
Jari Aaltoccc6cda1996-12-23 17:02:34 +000042#if defined (HAVE_UNISTD_H)
43# include <unistd.h>
Jari Aalto726f6381996-08-26 18:22:31 +000044#endif
45
Jari Aaltob80f6442004-07-27 13:29:18 +000046#include "bashintl.h"
47
Jari Aaltof73dda02001-11-13 17:56:06 +000048#define NEED_SH_SETLINEBUF_DECL /* used in externs.h */
49
Jari Aalto726f6381996-08-26 18:22:31 +000050#include "shell.h"
51#include "flags.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000052#include "trap.h"
53#include "mailcheck.h"
54#include "builtins.h"
55#include "builtins/common.h"
Jari Aalto726f6381996-08-26 18:22:31 +000056
57#if defined (JOB_CONTROL)
58#include "jobs.h"
59#endif /* JOB_CONTROL */
60
61#include "input.h"
62#include "execute_cmd.h"
Jari Aaltocce855b1998-04-17 19:52:44 +000063#include "findcmd.h"
Jari Aalto726f6381996-08-26 18:22:31 +000064
Jari Aalto7117c2d2002-07-17 14:10:11 +000065#if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
66# include <malloc/shmalloc.h>
67#endif
68
Jari Aalto726f6381996-08-26 18:22:31 +000069#if defined (HISTORY)
70# include "bashhist.h"
71# include <readline/history.h>
72#endif
73
74#include <tilde/tilde.h>
Jari Aaltof73dda02001-11-13 17:56:06 +000075#include <glob/strmatch.h>
Jari Aalto726f6381996-08-26 18:22:31 +000076
Jari Aaltob72432f1999-02-19 17:11:39 +000077#if defined (__OPENNT)
78# include <opennt/opennt.h>
79#endif
80
Jari Aaltoccc6cda1996-12-23 17:02:34 +000081#if !defined (HAVE_GETPW_DECLS)
Jari Aalto726f6381996-08-26 18:22:31 +000082extern struct passwd *getpwuid ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +000083#endif /* !HAVE_GETPW_DECLS */
Jari Aalto726f6381996-08-26 18:22:31 +000084
Jari Aalto726f6381996-08-26 18:22:31 +000085#if !defined (errno)
86extern int errno;
87#endif
88
Jari Aaltob72432f1999-02-19 17:11:39 +000089#if defined (NO_MAIN_ENV_ARG)
90extern char **environ; /* used if no third argument to main() */
91#endif
92
Jari Aaltoccc6cda1996-12-23 17:02:34 +000093extern char *dist_version, *release_status;
Jari Aalto726f6381996-08-26 18:22:31 +000094extern int patch_level, build_version;
Jari Aaltobb706242000-03-17 21:46:59 +000095extern int shell_level;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000096extern int subshell_environment;
Jari Aalto726f6381996-08-26 18:22:31 +000097extern int last_command_exit_value;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000098extern int line_number;
Jari Aaltoccc6cda1996-12-23 17:02:34 +000099extern int expand_aliases;
Jari Aaltocce855b1998-04-17 19:52:44 +0000100extern int array_needs_making;
Jari Aalto95732b42005-12-07 14:08:12 +0000101extern int gnu_error_format;
102extern char *primary_prompt, *secondary_prompt;
103extern char *this_command_name;
Jari Aalto726f6381996-08-26 18:22:31 +0000104
105/* Non-zero means that this shell has already been run; i.e. you should
106 call shell_reinitialize () if you need to start afresh. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000107int shell_initialized = 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000108
109COMMAND *global_command = (COMMAND *)NULL;
110
Jari Aalto726f6381996-08-26 18:22:31 +0000111/* Information about the current user. */
112struct user_info current_user =
113{
Jari Aaltof73dda02001-11-13 17:56:06 +0000114 (uid_t)-1, (uid_t)-1, (gid_t)-1, (gid_t)-1,
115 (char *)NULL, (char *)NULL, (char *)NULL
Jari Aalto726f6381996-08-26 18:22:31 +0000116};
117
118/* The current host's name. */
119char *current_host_name = (char *)NULL;
120
121/* Non-zero means that this shell is a login shell.
122 Specifically:
123 0 = not login shell.
124 1 = login shell from getty (or equivalent fake out)
Jari Aalto7117c2d2002-07-17 14:10:11 +0000125 -1 = login shell from "--login" (or -l) flag.
Jari Aalto726f6381996-08-26 18:22:31 +0000126 -2 = both from getty, and from flag.
127 */
128int login_shell = 0;
129
130/* Non-zero means that at this moment, the shell is interactive. In
131 general, this means that the shell is at this moment reading input
132 from the keyboard. */
133int interactive = 0;
134
135/* Non-zero means that the shell was started as an interactive shell. */
136int interactive_shell = 0;
137
Jari Aaltocce855b1998-04-17 19:52:44 +0000138/* Non-zero means to send a SIGHUP to all jobs when an interactive login
139 shell exits. */
140int hup_on_exit = 0;
141
Jari Aalto726f6381996-08-26 18:22:31 +0000142/* Tells what state the shell was in when it started:
143 0 = non-interactive shell script
144 1 = interactive
145 2 = -c command
Jari Aalto7117c2d2002-07-17 14:10:11 +0000146 3 = wordexp evaluation
Jari Aalto726f6381996-08-26 18:22:31 +0000147 This is a superset of the information provided by interactive_shell.
148*/
149int startup_state = 0;
150
151/* Special debugging helper. */
152int debugging_login_shell = 0;
153
154/* The environment that the shell passes to other commands. */
155char **shell_environment;
156
157/* Non-zero when we are executing a top-level command. */
158int executing = 0;
159
160/* The number of commands executed so far. */
161int current_command_number = 1;
162
Jari Aalto726f6381996-08-26 18:22:31 +0000163/* Non-zero is the recursion depth for commands. */
164int indirection_level = 0;
165
Jari Aalto726f6381996-08-26 18:22:31 +0000166/* The name of this shell, as taken from argv[0]. */
167char *shell_name = (char *)NULL;
168
169/* time in seconds when the shell was started */
170time_t shell_start_time;
171
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000172/* Are we running in an emacs shell window? */
173int running_under_emacs;
174
Jari Aalto726f6381996-08-26 18:22:31 +0000175/* The name of the .(shell)rc file. */
176static char *bashrc_file = "~/.bashrc";
177
178/* Non-zero means to act more like the Bourne shell on startup. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000179static int act_like_sh;
180
181/* Non-zero if this shell is being run by `su'. */
182static int su_shell;
183
184/* Non-zero if we have already expanded and sourced $ENV. */
185static int sourced_env;
186
187/* Is this shell running setuid? */
188static int running_setuid;
Jari Aalto726f6381996-08-26 18:22:31 +0000189
190/* Values for the long-winded argument names. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000191static int debugging; /* Do debugging things. */
192static int no_rc; /* Don't execute ~/.bashrc */
193static int no_profile; /* Don't execute .profile */
194static int do_version; /* Display interesting version info. */
195static int make_login_shell; /* Make this shell be a `-bash' shell. */
196static int want_initial_help; /* --help option */
Jari Aalto726f6381996-08-26 18:22:31 +0000197
Jari Aaltob80f6442004-07-27 13:29:18 +0000198int debugging_mode = 0; /* In debugging mode with --debugger */
Jari Aalto726f6381996-08-26 18:22:31 +0000199int no_line_editing = 0; /* Don't do fancy line editing. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000200int dump_translatable_strings; /* Dump strings in $"...", don't execute. */
Jari Aaltocce855b1998-04-17 19:52:44 +0000201int dump_po_strings; /* Dump strings in $"..." in po format */
202int wordexp_only = 0; /* Do word expansion only */
Jari Aaltob80f6442004-07-27 13:29:18 +0000203int protected_mode = 0; /* No command substitution with --wordexp */
Jari Aalto726f6381996-08-26 18:22:31 +0000204
Jari Aalto95732b42005-12-07 14:08:12 +0000205#if defined (STRICT_POSIX)
206int posixly_correct = 1; /* Non-zero means posix.2 superset. */
207#else
208int posixly_correct = 0; /* Non-zero means posix.2 superset. */
209#endif
210
211
Jari Aalto726f6381996-08-26 18:22:31 +0000212/* Some long-winded argument names. These are obviously new. */
213#define Int 1
214#define Charp 2
215struct {
216 char *name;
217 int type;
218 int *int_value;
219 char **char_value;
220} long_args[] = {
221 { "debug", Int, &debugging, (char **)0x0 },
Jari Aaltob80f6442004-07-27 13:29:18 +0000222#if defined (DEBUGGER)
223 { "debugger", Int, &debugging_mode, (char **)0x0 },
224#endif
Jari Aaltocce855b1998-04-17 19:52:44 +0000225 { "dump-po-strings", Int, &dump_po_strings, (char **)0x0 },
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000226 { "dump-strings", Int, &dump_translatable_strings, (char **)0x0 },
227 { "help", Int, &want_initial_help, (char **)0x0 },
Jari Aalto28ef6c32001-04-06 19:14:31 +0000228 { "init-file", Charp, (int *)0x0, &bashrc_file },
Jari Aalto726f6381996-08-26 18:22:31 +0000229 { "login", Int, &make_login_shell, (char **)0x0 },
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000230 { "noediting", Int, &no_line_editing, (char **)0x0 },
231 { "noprofile", Int, &no_profile, (char **)0x0 },
232 { "norc", Int, &no_rc, (char **)0x0 },
Jari Aalto726f6381996-08-26 18:22:31 +0000233 { "posix", Int, &posixly_correct, (char **)0x0 },
Jari Aaltob80f6442004-07-27 13:29:18 +0000234 { "protected", Int, &protected_mode, (char **)0x0 },
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000235 { "rcfile", Charp, (int *)0x0, &bashrc_file },
236#if defined (RESTRICTED_SHELL)
237 { "restricted", Int, &restricted, (char **)0x0 },
238#endif
239 { "verbose", Int, &echo_input_at_read, (char **)0x0 },
240 { "version", Int, &do_version, (char **)0x0 },
Jari Aaltocce855b1998-04-17 19:52:44 +0000241 { "wordexp", Int, &wordexp_only, (char **)0x0 },
Jari Aalto726f6381996-08-26 18:22:31 +0000242 { (char *)0x0, Int, (int *)0x0, (char **)0x0 }
243};
244
245/* These are extern so execute_simple_command can set them, and then
246 longjmp back to main to execute a shell script, instead of calling
247 main () again and resulting in indefinite, possibly fatal, stack
248 growth. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000249procenv_t subshell_top_level;
Jari Aalto726f6381996-08-26 18:22:31 +0000250int subshell_argc;
251char **subshell_argv;
252char **subshell_envp;
253
254#if defined (BUFFERED_INPUT)
255/* The file descriptor from which the shell is reading input. */
256int default_buffered_input = -1;
257#endif
258
Jari Aaltobb706242000-03-17 21:46:59 +0000259/* The following two variables are not static so they can show up in $-. */
260int read_from_stdin; /* -s flag supplied */
261int want_pending_command; /* -c flag supplied */
262
Jari Aaltob80f6442004-07-27 13:29:18 +0000263/* This variable is not static so it can be bound to $BASH_EXECUTION_STRING */
264char *command_execution_string; /* argument to -c option */
265
Jari Aalto7117c2d2002-07-17 14:10:11 +0000266int malloc_trace_at_exit = 0;
267
Jari Aalto28ef6c32001-04-06 19:14:31 +0000268static int shell_reinitialized = 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000269
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000270static FILE *default_input;
Jari Aalto726f6381996-08-26 18:22:31 +0000271
Jari Aaltof73dda02001-11-13 17:56:06 +0000272static STRING_INT_ALIST *shopt_alist;
273static int shopt_ind = 0, shopt_len = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000274
Jari Aaltof73dda02001-11-13 17:56:06 +0000275static int parse_long_options __P((char **, int, int));
276static int parse_shell_options __P((char **, int, int));
277static int bind_args __P((char **, int, int, int));
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000278
Jari Aaltob80f6442004-07-27 13:29:18 +0000279static void start_debugger __P((void));
280
Jari Aaltof73dda02001-11-13 17:56:06 +0000281static void add_shopt_to_alist __P((char *, int));
282static void run_shopt_alist __P((void));
Jari Aalto726f6381996-08-26 18:22:31 +0000283
Jari Aaltof73dda02001-11-13 17:56:06 +0000284static void execute_env_file __P((char *));
285static void run_startup_files __P((void));
286static int open_shell_script __P((char *));
287static void set_bash_input __P((void));
288static int run_one_command __P((char *));
289static int run_wordexp __P((char *));
290
291static int uidget __P((void));
Jari Aaltof73dda02001-11-13 17:56:06 +0000292
293static void init_interactive __P((void));
294static void init_noninteractive __P((void));
295
296static void set_shell_name __P((char *));
297static void shell_initialize __P((void));
298static void shell_reinitialize __P((void));
299
300static void show_shell_usage __P((FILE *, int));
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000301
Jari Aalto28ef6c32001-04-06 19:14:31 +0000302#ifdef __CYGWIN__
Jari Aaltocce855b1998-04-17 19:52:44 +0000303static void
304_cygwin32_check_tmp ()
305{
306 struct stat sb;
307
308 if (stat ("/tmp", &sb) < 0)
Jari Aaltob80f6442004-07-27 13:29:18 +0000309 internal_warning (_("could not find /tmp, please create!"));
Jari Aaltocce855b1998-04-17 19:52:44 +0000310 else
311 {
312 if (S_ISDIR (sb.st_mode) == 0)
Jari Aaltob80f6442004-07-27 13:29:18 +0000313 internal_warning (_("/tmp must be a valid directory name"));
Jari Aaltocce855b1998-04-17 19:52:44 +0000314 }
315}
Jari Aalto28ef6c32001-04-06 19:14:31 +0000316#endif /* __CYGWIN__ */
Jari Aaltocce855b1998-04-17 19:52:44 +0000317
Jari Aaltob72432f1999-02-19 17:11:39 +0000318#if defined (NO_MAIN_ENV_ARG)
319/* systems without third argument to main() */
320int
321main (argc, argv)
322 int argc;
323 char **argv;
324#else /* !NO_MAIN_ENV_ARG */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000325int
Jari Aalto726f6381996-08-26 18:22:31 +0000326main (argc, argv, env)
327 int argc;
328 char **argv, **env;
Jari Aaltob72432f1999-02-19 17:11:39 +0000329#endif /* !NO_MAIN_ENV_ARG */
Jari Aalto726f6381996-08-26 18:22:31 +0000330{
331 register int i;
Jari Aaltof73dda02001-11-13 17:56:06 +0000332 int code, old_errexit_flag;
333#if defined (RESTRICTED_SHELL)
334 int saverst;
335#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000336 volatile int locally_skip_execution;
337 volatile int arg_index, top_level_arg_index;
Jari Aaltob72432f1999-02-19 17:11:39 +0000338#ifdef __OPENNT
339 char **env;
340
341 env = environ;
342#endif /* __OPENNT */
Jari Aalto726f6381996-08-26 18:22:31 +0000343
Jari Aaltof73dda02001-11-13 17:56:06 +0000344 USE_VAR(argc);
345 USE_VAR(argv);
346 USE_VAR(env);
347 USE_VAR(code);
348 USE_VAR(old_errexit_flag);
349#if defined (RESTRICTED_SHELL)
350 USE_VAR(saverst);
351#endif
352
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000353 /* Catch early SIGINTs. */
354 code = setjmp (top_level);
355 if (code)
356 exit (2);
Jari Aalto726f6381996-08-26 18:22:31 +0000357
Jari Aalto7117c2d2002-07-17 14:10:11 +0000358#if defined (USING_BASH_MALLOC) && defined (DEBUG) && !defined (DISABLE_MALLOC_WRAPPERS)
359# if 1
Jari Aaltof73dda02001-11-13 17:56:06 +0000360 malloc_set_register (1);
361# endif
362#endif
363
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000364 check_dev_tty ();
Jari Aalto726f6381996-08-26 18:22:31 +0000365
Jari Aalto28ef6c32001-04-06 19:14:31 +0000366#ifdef __CYGWIN__
Jari Aaltocce855b1998-04-17 19:52:44 +0000367 _cygwin32_check_tmp ();
Jari Aalto28ef6c32001-04-06 19:14:31 +0000368#endif /* __CYGWIN__ */
Jari Aaltocce855b1998-04-17 19:52:44 +0000369
Jari Aalto726f6381996-08-26 18:22:31 +0000370 /* Wait forever if we are debugging a login shell. */
Jari Aalto95732b42005-12-07 14:08:12 +0000371 while (debugging_login_shell) sleep (3);
Jari Aalto726f6381996-08-26 18:22:31 +0000372
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000373 set_default_locale ();
Jari Aalto726f6381996-08-26 18:22:31 +0000374
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000375 running_setuid = uidget ();
Jari Aalto726f6381996-08-26 18:22:31 +0000376
Jari Aalto28ef6c32001-04-06 19:14:31 +0000377 if (getenv ("POSIXLY_CORRECT") || getenv ("POSIX_PEDANTIC"))
378 posixly_correct = 1;
Jari Aalto726f6381996-08-26 18:22:31 +0000379
380#if defined (USE_GNU_MALLOC_LIBRARY)
381 mcheck (programming_error, (void (*) ())0);
382#endif /* USE_GNU_MALLOC_LIBRARY */
383
384 if (setjmp (subshell_top_level))
385 {
386 argc = subshell_argc;
387 argv = subshell_argv;
388 env = subshell_envp;
389 sourced_env = 0;
390 }
391
Jari Aalto28ef6c32001-04-06 19:14:31 +0000392 shell_reinitialized = 0;
393
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000394 /* Initialize `local' variables for all `invocations' of main (). */
Jari Aalto726f6381996-08-26 18:22:31 +0000395 arg_index = 1;
Jari Aalto95732b42005-12-07 14:08:12 +0000396 if (arg_index > argc)
397 arg_index = argc;
Jari Aaltob80f6442004-07-27 13:29:18 +0000398 command_execution_string = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000399 want_pending_command = locally_skip_execution = read_from_stdin = 0;
Jari Aalto726f6381996-08-26 18:22:31 +0000400 default_input = stdin;
401#if defined (BUFFERED_INPUT)
402 default_buffered_input = -1;
403#endif
404
405 /* Fix for the `infinite process creation' bug when running shell scripts
406 from startup files on System V. */
407 login_shell = make_login_shell = 0;
408
409 /* If this shell has already been run, then reinitialize it to a
410 vanilla state. */
411 if (shell_initialized || shell_name)
412 {
413 /* Make sure that we do not infinitely recurse as a login shell. */
414 if (*shell_name == '-')
415 shell_name++;
416
417 shell_reinitialize ();
418 if (setjmp (top_level))
419 exit (2);
420 }
421
Jari Aalto726f6381996-08-26 18:22:31 +0000422 shell_environment = env;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000423 set_shell_name (argv[0]);
Jari Aalto726f6381996-08-26 18:22:31 +0000424 shell_start_time = NOW; /* NOW now defined in general.h */
425
Jari Aalto726f6381996-08-26 18:22:31 +0000426 /* Parse argument flags from the input line. */
427
428 /* Find full word arguments first. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000429 arg_index = parse_long_options (argv, arg_index, argc);
430
431 if (want_initial_help)
Jari Aalto726f6381996-08-26 18:22:31 +0000432 {
Jari Aaltod166f041997-06-05 14:59:13 +0000433 show_shell_usage (stdout, 1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000434 exit (EXECUTION_SUCCESS);
Jari Aalto726f6381996-08-26 18:22:31 +0000435 }
436
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000437 if (do_version)
438 {
439 show_shell_version (1);
440 exit (EXECUTION_SUCCESS);
441 }
Jari Aalto726f6381996-08-26 18:22:31 +0000442
Jari Aalto7117c2d2002-07-17 14:10:11 +0000443 /* All done with full word options; do standard shell option parsing.*/
444 this_command_name = shell_name; /* for error reporting */
445 arg_index = parse_shell_options (argv, arg_index, argc);
446
447 /* If user supplied the "--login" (or -l) flag, then set and invert
448 LOGIN_SHELL. */
Jari Aalto726f6381996-08-26 18:22:31 +0000449 if (make_login_shell)
450 {
451 login_shell++;
452 login_shell = -login_shell;
453 }
454
Jari Aaltof73dda02001-11-13 17:56:06 +0000455 set_login_shell (login_shell != 0);
456
Jari Aaltocce855b1998-04-17 19:52:44 +0000457 if (dump_po_strings)
458 dump_translatable_strings = 1;
459
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000460 if (dump_translatable_strings)
461 read_but_dont_execute = 1;
Jari Aalto726f6381996-08-26 18:22:31 +0000462
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000463 if (running_setuid && privileged_mode == 0)
464 disable_priv_mode ();
Jari Aalto726f6381996-08-26 18:22:31 +0000465
466 /* Need to get the argument to a -c option processed in the
467 above loop. The next arg is a command to execute, and the
468 following args are $0...$n respectively. */
469 if (want_pending_command)
470 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000471 command_execution_string = argv[arg_index];
472 if (command_execution_string == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000473 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000474 report_error (_("%s: option requires an argument"), "-c");
475 exit (EX_BADUSAGE);
Jari Aalto726f6381996-08-26 18:22:31 +0000476 }
477 arg_index++;
478 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000479 this_command_name = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +0000480
Jari Aalto7117c2d2002-07-17 14:10:11 +0000481 cmd_init(); /* initialize the command object caches */
482
Jari Aalto726f6381996-08-26 18:22:31 +0000483 /* First, let the outside world know about our interactive status.
484 A shell is interactive if the `-i' flag was given, or if all of
485 the following conditions are met:
486 no -c command
487 no arguments remaining or the -s flag given
488 standard input is a terminal
Jari Aaltob80f6442004-07-27 13:29:18 +0000489 standard error is a terminal
Jari Aalto726f6381996-08-26 18:22:31 +0000490 Refer to Posix.2, the description of the `sh' utility. */
491
492 if (forced_interactive || /* -i flag */
Jari Aaltob80f6442004-07-27 13:29:18 +0000493 (!command_execution_string && /* No -c command and ... */
Jari Aaltocce855b1998-04-17 19:52:44 +0000494 wordexp_only == 0 && /* No --wordexp and ... */
Jari Aalto726f6381996-08-26 18:22:31 +0000495 ((arg_index == argc) || /* no remaining args or... */
496 read_from_stdin) && /* -s flag with args, and */
497 isatty (fileno (stdin)) && /* Input is a terminal and */
Jari Aaltob80f6442004-07-27 13:29:18 +0000498 isatty (fileno (stderr)))) /* error output is a terminal. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000499 init_interactive ();
Jari Aalto726f6381996-08-26 18:22:31 +0000500 else
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000501 init_noninteractive ();
Jari Aalto726f6381996-08-26 18:22:31 +0000502
503#define CLOSE_FDS_AT_LOGIN
504#if defined (CLOSE_FDS_AT_LOGIN)
505 /*
506 * Some systems have the bad habit of starting login shells with lots of open
507 * file descriptors. For instance, most systems that have picked up the
508 * pre-4.0 Sun YP code leave a file descriptor open each time you call one
509 * of the getpw* functions, and it's set to be open across execs. That
510 * means one for login, one for xterm, one for shelltool, etc.
511 */
512 if (login_shell && interactive_shell)
513 {
514 for (i = 3; i < 20; i++)
515 close (i);
516 }
517#endif /* CLOSE_FDS_AT_LOGIN */
518
Jari Aalto7117c2d2002-07-17 14:10:11 +0000519 /* If we're in a strict Posix.2 mode, turn on interactive comments,
520 alias expansion in non-interactive shells, and other Posix.2 things. */
Jari Aaltod166f041997-06-05 14:59:13 +0000521 if (posixly_correct)
522 {
Jari Aalto95732b42005-12-07 14:08:12 +0000523 bind_variable ("POSIXLY_CORRECT", "y", 0);
Jari Aalto28ef6c32001-04-06 19:14:31 +0000524 sv_strict_posix ("POSIXLY_CORRECT");
Jari Aaltod166f041997-06-05 14:59:13 +0000525 }
526
Jari Aaltof73dda02001-11-13 17:56:06 +0000527 /* Now we run the shopt_alist and process the options. */
528 if (shopt_alist)
529 run_shopt_alist ();
530
Jari Aalto726f6381996-08-26 18:22:31 +0000531 /* From here on in, the shell must be a normal functioning shell.
532 Variables from the environment are expected to be set, etc. */
533 shell_initialize ();
534
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000535 set_default_locale_vars ();
536
Jari Aalto726f6381996-08-26 18:22:31 +0000537 if (interactive_shell)
538 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000539 char *term, *emacs;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000540
Jari Aaltob80f6442004-07-27 13:29:18 +0000541 term = get_string_value ("TERM");
Jari Aalto726f6381996-08-26 18:22:31 +0000542 no_line_editing |= term && (STREQ (term, "emacs"));
Jari Aaltob80f6442004-07-27 13:29:18 +0000543 emacs = get_string_value ("EMACS");
Jari Aalto95732b42005-12-07 14:08:12 +0000544 running_under_emacs = emacs ? ((strstr (emacs, "term") != 0) ? 2 : 1) : 0;
Jari Aaltob80f6442004-07-27 13:29:18 +0000545#if 0
546 no_line_editing |= emacs && emacs[0] == 't' && emacs[1] == '\0';
547#else
548 no_line_editing |= emacs && emacs[0] == 't' && emacs[1] == '\0' && STREQ (term, "dumb");
549#endif
Jari Aalto95732b42005-12-07 14:08:12 +0000550 if (running_under_emacs)
551 gnu_error_format = 1;
Jari Aalto726f6381996-08-26 18:22:31 +0000552 }
553
554 top_level_arg_index = arg_index;
Jari Aaltob72432f1999-02-19 17:11:39 +0000555 old_errexit_flag = exit_immediately_on_error;
Jari Aalto726f6381996-08-26 18:22:31 +0000556
Jari Aalto726f6381996-08-26 18:22:31 +0000557 /* Give this shell a place to longjmp to before executing the
558 startup files. This allows users to press C-c to abort the
559 lengthy startup. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000560 code = setjmp (top_level);
561 if (code)
562 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000563 if (code == EXITPROG || code == ERREXIT)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000564 exit_shell (last_command_exit_value);
565 else
Jari Aaltod166f041997-06-05 14:59:13 +0000566 {
567#if defined (JOB_CONTROL)
568 /* Reset job control, since run_startup_files turned it off. */
569 set_job_control (interactive_shell);
570#endif
Jari Aaltob72432f1999-02-19 17:11:39 +0000571 /* Reset value of `set -e', since it's turned off before running
572 the startup files. */
573 exit_immediately_on_error += old_errexit_flag;
Jari Aaltod166f041997-06-05 14:59:13 +0000574 locally_skip_execution++;
575 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000576 }
Jari Aalto726f6381996-08-26 18:22:31 +0000577
578 arg_index = top_level_arg_index;
579
580 /* Execute the start-up scripts. */
581
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000582 if (interactive_shell == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000583 {
Jari Aalto7117c2d2002-07-17 14:10:11 +0000584 unbind_variable ("PS1");
585 unbind_variable ("PS2");
Jari Aalto28ef6c32001-04-06 19:14:31 +0000586 interactive = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000587#if 0
588 /* This has already been done by init_noninteractive */
Jari Aalto28ef6c32001-04-06 19:14:31 +0000589 expand_aliases = posixly_correct;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000590#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000591 }
592 else
593 {
594 change_flag ('i', FLAG_ON);
595 interactive = 1;
596 }
597
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000598#if defined (RESTRICTED_SHELL)
Jari Aaltob72432f1999-02-19 17:11:39 +0000599 /* Set restricted_shell based on whether the basename of $0 indicates that
600 the shell should be restricted or if the `-r' option was supplied at
601 startup. */
602 restricted_shell = shell_is_restricted (shell_name);
603
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000604 /* If the `-r' option is supplied at invocation, make sure that the shell
605 is not in restricted mode when running the startup files. */
Jari Aaltob72432f1999-02-19 17:11:39 +0000606 saverst = restricted;
607 restricted = 0;
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000608#endif
609
Jari Aaltob72432f1999-02-19 17:11:39 +0000610 /* The startup files are run with `set -e' temporarily disabled. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000611 if (locally_skip_execution == 0 && running_setuid == 0)
Jari Aaltob72432f1999-02-19 17:11:39 +0000612 {
613 old_errexit_flag = exit_immediately_on_error;
614 exit_immediately_on_error = 0;
615
616 run_startup_files ();
Jari Aaltob72432f1999-02-19 17:11:39 +0000617 exit_immediately_on_error += old_errexit_flag;
618 }
Jari Aalto726f6381996-08-26 18:22:31 +0000619
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000620 /* If we are invoked as `sh', turn on Posix mode. */
621 if (act_like_sh)
Jari Aaltod166f041997-06-05 14:59:13 +0000622 {
Jari Aalto95732b42005-12-07 14:08:12 +0000623 bind_variable ("POSIXLY_CORRECT", "y", 0);
Jari Aalto28ef6c32001-04-06 19:14:31 +0000624 sv_strict_posix ("POSIXLY_CORRECT");
Jari Aaltod166f041997-06-05 14:59:13 +0000625 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000626
Jari Aalto726f6381996-08-26 18:22:31 +0000627#if defined (RESTRICTED_SHELL)
Jari Aaltocce855b1998-04-17 19:52:44 +0000628 /* Turn on the restrictions after executing the startup files. This
Jari Aaltoe8ce7751997-09-22 20:22:27 +0000629 means that `bash -r' or `set -r' invoked from a startup file will
630 turn on the restrictions after the startup files are executed. */
631 restricted = saverst || restricted;
Jari Aalto28ef6c32001-04-06 19:14:31 +0000632 if (shell_reinitialized == 0)
633 maybe_make_restricted (shell_name);
Jari Aalto726f6381996-08-26 18:22:31 +0000634#endif /* RESTRICTED_SHELL */
635
Jari Aaltocce855b1998-04-17 19:52:44 +0000636 if (wordexp_only)
637 {
638 startup_state = 3;
639 last_command_exit_value = run_wordexp (argv[arg_index]);
640 exit_shell (last_command_exit_value);
641 }
642
Jari Aaltob80f6442004-07-27 13:29:18 +0000643 if (command_execution_string)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000644 {
645 arg_index = bind_args (argv, arg_index, argc, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000646 startup_state = 2;
Jari Aaltob80f6442004-07-27 13:29:18 +0000647
648 if (debugging_mode)
649 start_debugger ();
650
Jari Aalto726f6381996-08-26 18:22:31 +0000651#if defined (ONESHOT)
Jari Aaltof73dda02001-11-13 17:56:06 +0000652 executing = 1;
Jari Aaltob80f6442004-07-27 13:29:18 +0000653 run_one_command (command_execution_string);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000654 exit_shell (last_command_exit_value);
Jari Aalto726f6381996-08-26 18:22:31 +0000655#else /* ONESHOT */
Jari Aaltob80f6442004-07-27 13:29:18 +0000656 with_input_from_string (command_execution_string, "-c");
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000657 goto read_and_execute;
Jari Aalto726f6381996-08-26 18:22:31 +0000658#endif /* !ONESHOT */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000659 }
660
661 /* Get possible input filename and set up default_buffered_input or
662 default_input as appropriate. */
663 if (arg_index != argc && read_from_stdin == 0)
664 {
665 open_shell_script (argv[arg_index]);
666 arg_index++;
667 }
668 else if (interactive == 0)
669 /* In this mode, bash is reading a script from stdin, which is a
670 pipe or redirected file. */
671#if defined (BUFFERED_INPUT)
672 default_buffered_input = fileno (stdin); /* == 0 */
673#else
674 setbuf (default_input, (char *)NULL);
675#endif /* !BUFFERED_INPUT */
676
677 set_bash_input ();
678
679 /* Bind remaining args to $1 ... $n */
680 arg_index = bind_args (argv, arg_index, argc, 1);
Jari Aaltob80f6442004-07-27 13:29:18 +0000681
682 if (debugging_mode && locally_skip_execution == 0 && running_setuid == 0)
683 start_debugger ();
684
Jari Aalto726f6381996-08-26 18:22:31 +0000685 /* Do the things that should be done only for interactive shells. */
686 if (interactive_shell)
687 {
688 /* Set up for checking for presence of mail. */
689 remember_mail_dates ();
690 reset_mail_timer ();
691
692#if defined (HISTORY)
693 /* Initialize the interactive history stuff. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000694 bash_initialize_history ();
Jari Aalto7117c2d2002-07-17 14:10:11 +0000695 /* Don't load the history from the history file if we've already
696 saved some lines in this session (e.g., by putting `history -s xx'
697 into one of the startup files). */
698 if (shell_initialized == 0 && history_lines_this_session == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000699 load_history ();
700#endif /* HISTORY */
701
702 /* Initialize terminal state for interactive shells after the
703 .bash_profile and .bashrc are interpreted. */
704 get_tty_state ();
705 }
706
Jari Aalto726f6381996-08-26 18:22:31 +0000707#if !defined (ONESHOT)
708 read_and_execute:
709#endif /* !ONESHOT */
710
711 shell_initialized = 1;
712
713 /* Read commands until exit condition. */
714 reader_loop ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000715 exit_shell (last_command_exit_value);
716}
Jari Aalto726f6381996-08-26 18:22:31 +0000717
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000718static int
719parse_long_options (argv, arg_start, arg_end)
720 char **argv;
721 int arg_start, arg_end;
722{
723 int arg_index, longarg, i;
724 char *arg_string;
725
726 arg_index = arg_start;
727 while ((arg_index != arg_end) && (arg_string = argv[arg_index]) &&
728 (*arg_string == '-'))
729 {
730 longarg = 0;
731
732 /* Make --login equivalent to -login. */
733 if (arg_string[1] == '-' && arg_string[2])
734 {
735 longarg = 1;
736 arg_string++;
737 }
738
739 for (i = 0; long_args[i].name; i++)
740 {
741 if (STREQ (arg_string + 1, long_args[i].name))
742 {
743 if (long_args[i].type == Int)
744 *long_args[i].int_value = 1;
745 else if (argv[++arg_index] == 0)
746 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000747 report_error (_("%s: option requires an argument"), long_args[i].name);
748 exit (EX_BADUSAGE);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000749 }
750 else
751 *long_args[i].char_value = argv[arg_index];
752
753 break;
754 }
755 }
756 if (long_args[i].name == 0)
757 {
758 if (longarg)
759 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000760 report_error (_("%s: invalid option"), argv[arg_index]);
Jari Aaltod166f041997-06-05 14:59:13 +0000761 show_shell_usage (stderr, 0);
Jari Aaltob80f6442004-07-27 13:29:18 +0000762 exit (EX_BADUSAGE);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000763 }
764 break; /* No such argument. Maybe flag arg. */
765 }
766
767 arg_index++;
768 }
769
770 return (arg_index);
771}
772
773static int
774parse_shell_options (argv, arg_start, arg_end)
775 char **argv;
776 int arg_start, arg_end;
777{
778 int arg_index;
779 int arg_character, on_or_off, next_arg, i;
780 char *o_option, *arg_string;
781
782 arg_index = arg_start;
783 while (arg_index != arg_end && (arg_string = argv[arg_index]) &&
784 (*arg_string == '-' || *arg_string == '+'))
785 {
786 /* There are flag arguments, so parse them. */
787 next_arg = arg_index + 1;
788
789 /* A single `-' signals the end of options. From the 4.3 BSD sh.
790 An option `--' means the same thing; this is the standard
791 getopt(3) meaning. */
792 if (arg_string[0] == '-' &&
793 (arg_string[1] == '\0' ||
794 (arg_string[1] == '-' && arg_string[2] == '\0')))
795 return (next_arg);
796
797 i = 1;
798 on_or_off = arg_string[0];
799 while (arg_character = arg_string[i++])
800 {
801 switch (arg_character)
802 {
803 case 'c':
804 want_pending_command = 1;
805 break;
806
Jari Aalto7117c2d2002-07-17 14:10:11 +0000807 case 'l':
808 make_login_shell = 1;
809 break;
810
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000811 case 's':
812 read_from_stdin = 1;
813 break;
814
815 case 'o':
816 o_option = argv[next_arg];
817 if (o_option == 0)
818 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000819 list_minus_o_opts (-1, (on_or_off == '-') ? 0 : 1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000820 break;
821 }
822 if (set_minus_o_option (on_or_off, o_option) != EXECUTION_SUCCESS)
Jari Aaltob80f6442004-07-27 13:29:18 +0000823 exit (EX_BADUSAGE);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000824 next_arg++;
825 break;
826
Jari Aaltof73dda02001-11-13 17:56:06 +0000827 case 'O':
828 /* Since some of these can be overridden by the normal
829 interactive/non-interactive shell initialization or
830 initializing posix mode, we save the options and process
831 them after initialization. */
832 o_option = argv[next_arg];
833 if (o_option == 0)
834 {
835 shopt_listopt (o_option, (on_or_off == '-') ? 0 : 1);
836 break;
837 }
838 add_shopt_to_alist (o_option, on_or_off);
839 next_arg++;
840 break;
841
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000842 case 'D':
843 dump_translatable_strings = 1;
844 break;
845
846 default:
847 if (change_flag (arg_character, on_or_off) == FLAG_ERROR)
848 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000849 report_error (_("%c%c: invalid option"), on_or_off, arg_character);
Jari Aaltod166f041997-06-05 14:59:13 +0000850 show_shell_usage (stderr, 0);
Jari Aaltob80f6442004-07-27 13:29:18 +0000851 exit (EX_BADUSAGE);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000852 }
853 }
854 }
855 /* Can't do just a simple increment anymore -- what about
856 "bash -abouo emacs ignoreeof -hP"? */
857 arg_index = next_arg;
858 }
859
860 return (arg_index);
861}
862
863/* Exit the shell with status S. */
Jari Aaltocce855b1998-04-17 19:52:44 +0000864void
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000865exit_shell (s)
866 int s;
867{
868 /* Do trap[0] if defined. Allow it to override the exit status
869 passed to us. */
Jari Aalto726f6381996-08-26 18:22:31 +0000870 if (signal_is_trapped (0))
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000871 s = run_exit_trap ();
Jari Aalto726f6381996-08-26 18:22:31 +0000872
873#if defined (PROCESS_SUBSTITUTION)
874 unlink_fifo_list ();
875#endif /* PROCESS_SUBSTITUTION */
876
877#if defined (HISTORY)
878 if (interactive_shell)
879 maybe_save_shell_history ();
880#endif /* HISTORY */
881
882#if defined (JOB_CONTROL)
Jari Aaltocce855b1998-04-17 19:52:44 +0000883 /* If the user has run `shopt -s huponexit', hangup all jobs when we exit
884 an interactive login shell. ksh does this unconditionally. */
885 if (interactive_shell && login_shell && hup_on_exit)
886 hangup_all_jobs ();
887
Jari Aalto726f6381996-08-26 18:22:31 +0000888 /* If this shell is interactive, terminate all stopped jobs and
Jari Aalto28ef6c32001-04-06 19:14:31 +0000889 restore the original terminal process group. Don't do this if we're
890 in a subshell and calling exit_shell after, for example, a failed
891 word expansion. */
892 if (subshell_environment == 0)
893 end_job_control ();
Jari Aalto726f6381996-08-26 18:22:31 +0000894#endif /* JOB_CONTROL */
895
896 /* Always return the exit status of the last command to our parent. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000897 sh_exit (s);
Jari Aalto726f6381996-08-26 18:22:31 +0000898}
899
Jari Aaltobb706242000-03-17 21:46:59 +0000900/* A wrapper for exit that (optionally) can do other things, like malloc
901 statistics tracing. */
902void
903sh_exit (s)
904 int s;
905{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000906#if defined (MALLOC_DEBUG) && defined (USING_BASH_MALLOC)
907 if (malloc_trace_at_exit)
908 trace_malloc_stats (get_name_for_error (), (char *)NULL);
909#endif
910
Jari Aaltobb706242000-03-17 21:46:59 +0000911 exit (s);
912}
913
Jari Aalto726f6381996-08-26 18:22:31 +0000914/* Source the bash startup files. If POSIXLY_CORRECT is non-zero, we obey
915 the Posix.2 startup file rules: $ENV is expanded, and if the file it
916 names exists, that file is sourced. The Posix.2 rules are in effect
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000917 for interactive shells only. (section 4.56.5.3) */
Jari Aalto726f6381996-08-26 18:22:31 +0000918
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000919/* Execute ~/.bashrc for most shells. Never execute it if
920 ACT_LIKE_SH is set, or if NO_RC is set.
Jari Aalto726f6381996-08-26 18:22:31 +0000921
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000922 If the executable file "/usr/gnu/src/bash/foo" contains:
Jari Aalto726f6381996-08-26 18:22:31 +0000923
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000924 #!/usr/gnu/bin/bash
925 echo hello
Jari Aalto726f6381996-08-26 18:22:31 +0000926
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000927 then:
Jari Aalto726f6381996-08-26 18:22:31 +0000928
Jari Aalto28ef6c32001-04-06 19:14:31 +0000929 COMMAND EXECUTE BASHRC
930 --------------------------------
931 bash -c foo NO
932 bash foo NO
933 foo NO
934 rsh machine ls YES (for rsh, which calls `bash -c')
935 rsh machine foo YES (for shell started by rsh) NO (for foo!)
936 echo ls | bash NO
937 login NO
938 bash YES
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000939*/
Jari Aalto726f6381996-08-26 18:22:31 +0000940
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000941static void
942execute_env_file (env_file)
943 char *env_file;
944{
945 char *fn;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000946
947 if (env_file && *env_file)
Jari Aalto726f6381996-08-26 18:22:31 +0000948 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000949 fn = expand_string_unsplit_to_string (env_file, Q_DOUBLE_QUOTES);
950 if (fn && *fn)
951 maybe_execute_file (fn, 1);
952 FREE (fn);
Jari Aalto726f6381996-08-26 18:22:31 +0000953 }
954}
955
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000956static void
957run_startup_files ()
958{
Jari Aaltod166f041997-06-05 14:59:13 +0000959#if defined (JOB_CONTROL)
960 int old_job_control;
961#endif
Jari Aaltocce855b1998-04-17 19:52:44 +0000962 int sourced_login, run_by_ssh;
Jari Aaltod166f041997-06-05 14:59:13 +0000963
Jari Aaltocce855b1998-04-17 19:52:44 +0000964 /* get the rshd/sshd case out of the way first. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000965 if (interactive_shell == 0 && no_rc == 0 && login_shell == 0 &&
Jari Aaltob80f6442004-07-27 13:29:18 +0000966 act_like_sh == 0 && command_execution_string)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000967 {
Jari Aaltof73dda02001-11-13 17:56:06 +0000968#ifdef SSH_SOURCE_BASHRC
969 run_by_ssh = (find_variable ("SSH_CLIENT") != (SHELL_VAR *)0) ||
970 (find_variable ("SSH2_CLIENT") != (SHELL_VAR *)0);
971#else
972 run_by_ssh = 0;
973#endif
Jari Aaltocce855b1998-04-17 19:52:44 +0000974
975 /* If we were run by sshd or we think we were run by rshd, execute
Jari Aaltobb706242000-03-17 21:46:59 +0000976 ~/.bashrc if we are a top-level shell. */
977 if ((run_by_ssh || isnetconn (fileno (stdin))) && shell_level < 2)
Jari Aaltocce855b1998-04-17 19:52:44 +0000978 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000979#ifdef SYS_BASHRC
Jari Aaltob72432f1999-02-19 17:11:39 +0000980# if defined (__OPENNT)
981 maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
982# else
Jari Aaltocce855b1998-04-17 19:52:44 +0000983 maybe_execute_file (SYS_BASHRC, 1);
Jari Aaltob72432f1999-02-19 17:11:39 +0000984# endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000985#endif
Jari Aaltocce855b1998-04-17 19:52:44 +0000986 maybe_execute_file (bashrc_file, 1);
987 return;
988 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000989 }
990
Jari Aaltocce855b1998-04-17 19:52:44 +0000991#if defined (JOB_CONTROL)
992 /* Startup files should be run without job control enabled. */
993 old_job_control = interactive_shell ? set_job_control (0) : 0;
994#endif
995
996 sourced_login = 0;
997
Jari Aalto7117c2d2002-07-17 14:10:11 +0000998 /* A shell begun with the --login (or -l) flag that is not in posix mode
999 runs the login shell startup files, no matter whether or not it is
Jari Aaltobb706242000-03-17 21:46:59 +00001000 interactive. If NON_INTERACTIVE_LOGIN_SHELLS is defined, run the
1001 startup files if argv[0][0] == '-' as well. */
1002#if defined (NON_INTERACTIVE_LOGIN_SHELLS)
1003 if (login_shell && posixly_correct == 0)
1004#else
1005 if (login_shell < 0 && posixly_correct == 0)
1006#endif
Jari Aaltocce855b1998-04-17 19:52:44 +00001007 {
1008 /* We don't execute .bashrc for login shells. */
1009 no_rc++;
1010
1011 /* Execute /etc/profile and one of the personal login shell
1012 initialization files. */
1013 if (no_profile == 0)
1014 {
1015 maybe_execute_file (SYS_PROFILE, 1);
1016
1017 if (act_like_sh) /* sh */
1018 maybe_execute_file ("~/.profile", 1);
1019 else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1020 (maybe_execute_file ("~/.bash_login", 1) == 0)) /* bash */
1021 maybe_execute_file ("~/.profile", 1);
1022 }
1023
1024 sourced_login = 1;
1025 }
Jari Aaltocce855b1998-04-17 19:52:44 +00001026
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001027 /* A non-interactive shell not named `sh' and not in posix mode reads and
1028 executes commands from $BASH_ENV. If `su' starts a shell with `-c cmd'
1029 and `-su' as the name of the shell, we want to read the startup files.
1030 No other non-interactive shells read any startup files. */
1031 if (interactive_shell == 0 && !(su_shell && login_shell))
1032 {
1033 if (posixly_correct == 0 && act_like_sh == 0 && privileged_mode == 0 &&
1034 sourced_env++ == 0)
1035 execute_env_file (get_string_value ("BASH_ENV"));
1036 return;
1037 }
1038
1039 /* Interactive shell or `-su' shell. */
1040 if (posixly_correct == 0) /* bash, sh */
1041 {
Jari Aaltocce855b1998-04-17 19:52:44 +00001042 if (login_shell && sourced_login++ == 0)
1043 {
1044 /* We don't execute .bashrc for login shells. */
1045 no_rc++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001046
Jari Aaltocce855b1998-04-17 19:52:44 +00001047 /* Execute /etc/profile and one of the personal login shell
1048 initialization files. */
1049 if (no_profile == 0)
1050 {
1051 maybe_execute_file (SYS_PROFILE, 1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001052
Jari Aaltocce855b1998-04-17 19:52:44 +00001053 if (act_like_sh) /* sh */
1054 maybe_execute_file ("~/.profile", 1);
1055 else if ((maybe_execute_file ("~/.bash_profile", 1) == 0) &&
1056 (maybe_execute_file ("~/.bash_login", 1) == 0)) /* bash */
1057 maybe_execute_file ("~/.profile", 1);
1058 }
1059 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001060
1061 /* bash */
1062 if (act_like_sh == 0 && no_rc == 0)
1063 {
1064#ifdef SYS_BASHRC
Jari Aaltob72432f1999-02-19 17:11:39 +00001065# if defined (__OPENNT)
1066 maybe_execute_file (_prefixInstallPath(SYS_BASHRC, NULL, 0), 1);
1067# else
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001068 maybe_execute_file (SYS_BASHRC, 1);
Jari Aaltobb706242000-03-17 21:46:59 +00001069# endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001070#endif
Jari Aalto28ef6c32001-04-06 19:14:31 +00001071 maybe_execute_file (bashrc_file, 1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001072 }
1073 /* sh */
1074 else if (act_like_sh && privileged_mode == 0 && sourced_env++ == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001075 execute_env_file (get_string_value ("ENV"));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001076 }
1077 else /* bash --posix, sh --posix */
1078 {
1079 /* bash and sh */
1080 if (interactive_shell && privileged_mode == 0 && sourced_env++ == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001081 execute_env_file (get_string_value ("ENV"));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001082 }
Jari Aaltod166f041997-06-05 14:59:13 +00001083
1084#if defined (JOB_CONTROL)
1085 set_job_control (old_job_control);
1086#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001087}
1088
Jari Aalto726f6381996-08-26 18:22:31 +00001089#if defined (RESTRICTED_SHELL)
Jari Aaltob72432f1999-02-19 17:11:39 +00001090/* Return 1 if the shell should be a restricted one based on NAME or the
1091 value of `restricted'. Don't actually do anything, just return a
1092 boolean value. */
1093int
1094shell_is_restricted (name)
1095 char *name;
1096{
1097 char *temp;
1098
1099 if (restricted)
1100 return 1;
1101 temp = base_pathname (name);
Jari Aalto95732b42005-12-07 14:08:12 +00001102 if (*temp == '-')
1103 temp++;
Jari Aaltob72432f1999-02-19 17:11:39 +00001104 return (STREQ (temp, RESTRICTED_SHELL_NAME));
1105}
1106
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001107/* Perhaps make this shell a `restricted' one, based on NAME. If the
1108 basename of NAME is "rbash", then this shell is restricted. The
1109 name of the restricted shell is a configurable option, see config.h.
Jari Aaltob72432f1999-02-19 17:11:39 +00001110 In a restricted shell, PATH, SHELL, ENV, and BASH_ENV are read-only
1111 and non-unsettable.
Jari Aalto726f6381996-08-26 18:22:31 +00001112 Do this also if `restricted' is already set to 1; maybe the shell was
1113 started with -r. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001114int
Jari Aalto726f6381996-08-26 18:22:31 +00001115maybe_make_restricted (name)
1116 char *name;
1117{
1118 char *temp;
1119
Jari Aalto7117c2d2002-07-17 14:10:11 +00001120 temp = base_pathname (name);
Jari Aaltob80f6442004-07-27 13:29:18 +00001121 if (*temp == '-')
1122 temp++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001123 if (restricted || (STREQ (temp, RESTRICTED_SHELL_NAME)))
Jari Aalto726f6381996-08-26 18:22:31 +00001124 {
1125 set_var_read_only ("PATH");
Jari Aalto726f6381996-08-26 18:22:31 +00001126 set_var_read_only ("SHELL");
Jari Aaltob72432f1999-02-19 17:11:39 +00001127 set_var_read_only ("ENV");
1128 set_var_read_only ("BASH_ENV");
Jari Aalto28ef6c32001-04-06 19:14:31 +00001129 restricted = 1;
Jari Aalto726f6381996-08-26 18:22:31 +00001130 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001131 return (restricted);
Jari Aalto726f6381996-08-26 18:22:31 +00001132}
1133#endif /* RESTRICTED_SHELL */
1134
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001135/* Fetch the current set of uids and gids and return 1 if we're running
1136 setuid or setgid. */
1137static int
1138uidget ()
Jari Aalto726f6381996-08-26 18:22:31 +00001139{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001140 uid_t u;
Jari Aalto726f6381996-08-26 18:22:31 +00001141
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001142 u = getuid ();
1143 if (current_user.uid != u)
Jari Aalto726f6381996-08-26 18:22:31 +00001144 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001145 FREE (current_user.user_name);
1146 FREE (current_user.shell);
1147 FREE (current_user.home_dir);
1148 current_user.user_name = current_user.shell = current_user.home_dir = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00001149 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001150 current_user.uid = u;
1151 current_user.gid = getgid ();
1152 current_user.euid = geteuid ();
1153 current_user.egid = getegid ();
Jari Aalto726f6381996-08-26 18:22:31 +00001154
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001155 /* See whether or not we are running setuid or setgid. */
1156 return (current_user.uid != current_user.euid) ||
1157 (current_user.gid != current_user.egid);
1158}
Jari Aalto726f6381996-08-26 18:22:31 +00001159
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001160void
1161disable_priv_mode ()
1162{
1163 setuid (current_user.uid);
1164 setgid (current_user.gid);
1165 current_user.euid = current_user.uid;
1166 current_user.egid = current_user.gid;
Jari Aalto726f6381996-08-26 18:22:31 +00001167}
1168
Jari Aaltocce855b1998-04-17 19:52:44 +00001169static int
1170run_wordexp (words)
1171 char *words;
1172{
1173 int code, nw, nb;
Jari Aaltob80f6442004-07-27 13:29:18 +00001174 WORD_LIST *wl, *tl, *result;
Jari Aaltocce855b1998-04-17 19:52:44 +00001175
1176 code = setjmp (top_level);
1177
1178 if (code != NOT_JUMPED)
1179 {
1180 switch (code)
1181 {
1182 /* Some kind of throw to top_level has occured. */
1183 case FORCE_EOF:
1184 return last_command_exit_value = 127;
Jari Aaltob80f6442004-07-27 13:29:18 +00001185 case ERREXIT:
Jari Aaltocce855b1998-04-17 19:52:44 +00001186 case EXITPROG:
1187 return last_command_exit_value;
1188 case DISCARD:
1189 return last_command_exit_value = 1;
1190 default:
Jari Aaltob72432f1999-02-19 17:11:39 +00001191 command_error ("run_wordexp", CMDERR_BADJUMP, code, 0);
Jari Aaltocce855b1998-04-17 19:52:44 +00001192 }
1193 }
1194
1195 /* Run it through the parser to get a list of words and expand them */
1196 if (words && *words)
1197 {
1198 with_input_from_string (words, "--wordexp");
1199 if (parse_command () != 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001200 return (126);
Jari Aaltocce855b1998-04-17 19:52:44 +00001201 if (global_command == 0)
1202 {
1203 printf ("0\n0\n");
1204 return (0);
1205 }
1206 if (global_command->type != cm_simple)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001207 return (126);
Jari Aaltocce855b1998-04-17 19:52:44 +00001208 wl = global_command->value.Simple->words;
Jari Aaltob80f6442004-07-27 13:29:18 +00001209 if (protected_mode)
1210 for (tl = wl; tl; tl = tl->next)
1211 tl->word->flags |= W_NOCOMSUB;
Jari Aaltocce855b1998-04-17 19:52:44 +00001212 result = wl ? expand_words_no_vars (wl) : (WORD_LIST *)0;
1213 }
1214 else
1215 result = (WORD_LIST *)0;
1216
1217 last_command_exit_value = 0;
1218
1219 if (result == 0)
1220 {
1221 printf ("0\n0\n");
1222 return (0);
1223 }
1224
1225 /* Count up the number of words and bytes, and print them. Don't count
1226 the trailing NUL byte. */
1227 for (nw = nb = 0, wl = result; wl; wl = wl->next)
1228 {
1229 nw++;
1230 nb += strlen (wl->word->word);
1231 }
1232 printf ("%u\n%u\n", nw, nb);
1233 /* Print each word on a separate line. This will have to be changed when
1234 the interface to glibc is completed. */
1235 for (wl = result; wl; wl = wl->next)
1236 printf ("%s\n", wl->word->word);
1237
1238 return (0);
1239}
1240
Jari Aalto726f6381996-08-26 18:22:31 +00001241#if defined (ONESHOT)
1242/* Run one command, given as the argument to the -c option. Tell
1243 parse_and_execute not to fork for a simple command. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001244static int
Jari Aalto726f6381996-08-26 18:22:31 +00001245run_one_command (command)
1246 char *command;
1247{
1248 int code;
1249
1250 code = setjmp (top_level);
1251
1252 if (code != NOT_JUMPED)
1253 {
1254#if defined (PROCESS_SUBSTITUTION)
1255 unlink_fifo_list ();
1256#endif /* PROCESS_SUBSTITUTION */
1257 switch (code)
1258 {
1259 /* Some kind of throw to top_level has occured. */
1260 case FORCE_EOF:
1261 return last_command_exit_value = 127;
Jari Aaltob80f6442004-07-27 13:29:18 +00001262 case ERREXIT:
Jari Aalto726f6381996-08-26 18:22:31 +00001263 case EXITPROG:
1264 return last_command_exit_value;
1265 case DISCARD:
1266 return last_command_exit_value = 1;
1267 default:
Jari Aaltob72432f1999-02-19 17:11:39 +00001268 command_error ("run_one_command", CMDERR_BADJUMP, code, 0);
Jari Aalto726f6381996-08-26 18:22:31 +00001269 }
1270 }
Jari Aaltod166f041997-06-05 14:59:13 +00001271 return (parse_and_execute (savestring (command), "-c", SEVAL_NOHIST));
Jari Aalto726f6381996-08-26 18:22:31 +00001272}
1273#endif /* ONESHOT */
1274
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001275static int
1276bind_args (argv, arg_start, arg_end, start_index)
1277 char **argv;
1278 int arg_start, arg_end, start_index;
Jari Aalto726f6381996-08-26 18:22:31 +00001279{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001280 register int i;
1281 WORD_LIST *args;
Jari Aalto726f6381996-08-26 18:22:31 +00001282
Jari Aalto95732b42005-12-07 14:08:12 +00001283 for (i = arg_start, args = (WORD_LIST *)NULL; i < arg_end; i++)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001284 args = make_word_list (make_word (argv[i]), args);
1285 if (args)
Jari Aalto726f6381996-08-26 18:22:31 +00001286 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001287 args = REVERSE_LIST (args, WORD_LIST *);
1288 if (start_index == 0) /* bind to $0...$n for sh -c command */
Jari Aalto726f6381996-08-26 18:22:31 +00001289 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001290 /* Posix.2 4.56.3 says that the first argument after sh -c command
1291 becomes $0, and the rest of the arguments become $1...$n */
1292 shell_name = savestring (args->word->word);
Jari Aaltod166f041997-06-05 14:59:13 +00001293 FREE (dollar_vars[0]);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001294 dollar_vars[0] = savestring (args->word->word);
1295 remember_args (args->next, 1);
Jari Aaltob80f6442004-07-27 13:29:18 +00001296 push_args (args->next); /* BASH_ARGV and BASH_ARGC */
Jari Aalto726f6381996-08-26 18:22:31 +00001297 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001298 else /* bind to $1...$n for shell script */
Jari Aaltob80f6442004-07-27 13:29:18 +00001299 {
1300 remember_args (args, 1);
1301 push_args (args); /* BASH_ARGV and BASH_ARGC */
1302 }
Jari Aalto726f6381996-08-26 18:22:31 +00001303
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001304 dispose_words (args);
1305 }
Jari Aalto726f6381996-08-26 18:22:31 +00001306
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001307 return (i);
1308}
1309
1310void
1311unbind_args ()
1312{
1313 remember_args ((WORD_LIST *)NULL, 1);
Jari Aaltob80f6442004-07-27 13:29:18 +00001314 pop_args (); /* Reset BASH_ARGV and BASH_ARGC */
1315}
1316
1317static void
1318start_debugger ()
1319{
1320#if defined (DEBUGGER) && defined (DEBUGGER_START_FILE)
1321 int old_errexit;
1322
1323 old_errexit = exit_immediately_on_error;
1324 exit_immediately_on_error = 0;
1325
1326 maybe_execute_file (DEBUGGER_START_FILE, 1);
1327 function_trace_mode = 1;
1328
1329 exit_immediately_on_error += old_errexit;
1330#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001331}
1332
1333static int
1334open_shell_script (script_name)
1335 char *script_name;
1336{
Jari Aalto28ef6c32001-04-06 19:14:31 +00001337 int fd, e, fd_is_tty;
Jari Aaltob80f6442004-07-27 13:29:18 +00001338 char *filename, *path_filename, *t;
Jari Aaltof73dda02001-11-13 17:56:06 +00001339 char sample[80];
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001340 int sample_len;
Jari Aaltod166f041997-06-05 14:59:13 +00001341 struct stat sb;
Jari Aaltob80f6442004-07-27 13:29:18 +00001342#if defined (ARRAY_VARS)
1343 SHELL_VAR *funcname_v, *bash_source_v, *bash_lineno_v;
1344 ARRAY *funcname_a, *bash_source_a, *bash_lineno_a;
1345#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001346
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001347 filename = savestring (script_name);
1348
1349 fd = open (filename, O_RDONLY);
1350 if ((fd < 0) && (errno == ENOENT) && (absolute_program (filename) == 0))
1351 {
Jari Aaltod166f041997-06-05 14:59:13 +00001352 e = errno;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001353 /* If it's not in the current directory, try looking through PATH
1354 for it. */
1355 path_filename = find_path_file (script_name);
1356 if (path_filename)
1357 {
1358 free (filename);
1359 filename = path_filename;
1360 fd = open (filename, O_RDONLY);
1361 }
Jari Aaltod166f041997-06-05 14:59:13 +00001362 else
1363 errno = e;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001364 }
1365
1366 if (fd < 0)
1367 {
Jari Aaltod166f041997-06-05 14:59:13 +00001368 e = errno;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001369 file_error (filename);
1370 exit ((e == ENOENT) ? EX_NOTFOUND : EX_NOINPUT);
1371 }
1372
Jari Aaltob80f6442004-07-27 13:29:18 +00001373 free (dollar_vars[0]);
1374 dollar_vars[0] = savestring (script_name);
1375
1376#if defined (ARRAY_VARS)
1377 GET_ARRAY_FROM_VAR ("FUNCNAME", funcname_v, funcname_a);
1378 GET_ARRAY_FROM_VAR ("BASH_SOURCE", bash_source_v, bash_source_a);
1379 GET_ARRAY_FROM_VAR ("BASH_LINENO", bash_lineno_v, bash_lineno_a);
1380
1381 array_push (bash_source_a, filename);
1382 if (bash_lineno_a)
1383 {
1384 t = itos (executing_line_number ());
1385 array_push (bash_lineno_a, t);
1386 free (t);
1387 }
1388 array_push (funcname_a, "main");
1389#endif
1390
Jari Aalto28ef6c32001-04-06 19:14:31 +00001391#ifdef HAVE_DEV_FD
1392 fd_is_tty = isatty (fd);
1393#else
1394 fd_is_tty = 0;
1395#endif
1396
1397 /* Only do this with non-tty file descriptors we can seek on. */
1398 if (fd_is_tty == 0 && (lseek (fd, 0L, 1) != -1))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001399 {
1400 /* Check to see if the `file' in `bash file' is a binary file
1401 according to the same tests done by execute_simple_command (),
1402 and report an error and exit if it is. */
1403 sample_len = read (fd, sample, sizeof (sample));
Jari Aaltod166f041997-06-05 14:59:13 +00001404 if (sample_len < 0)
1405 {
1406 e = errno;
1407 if ((fstat (fd, &sb) == 0) && S_ISDIR (sb.st_mode))
Jari Aaltob80f6442004-07-27 13:29:18 +00001408 internal_error (_("%s: is a directory"), filename);
Jari Aalto28ef6c32001-04-06 19:14:31 +00001409 else
Jari Aaltod166f041997-06-05 14:59:13 +00001410 {
1411 errno = e;
1412 file_error (filename);
1413 }
1414 exit (EX_NOEXEC);
1415 }
1416 else if (sample_len > 0 && (check_binary_file (sample, sample_len)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001417 {
1418 internal_error ("%s: cannot execute binary file", filename);
1419 exit (EX_BINARY_FILE);
1420 }
1421 /* Now rewind the file back to the beginning. */
1422 lseek (fd, 0L, 0);
1423 }
1424
Jari Aaltobb706242000-03-17 21:46:59 +00001425 /* Open the script. But try to move the file descriptor to a randomly
1426 large one, in the hopes that any descriptors used by the script will
1427 not match with ours. */
1428 fd = move_to_high_fd (fd, 0, -1);
1429
Jari Aalto28ef6c32001-04-06 19:14:31 +00001430#if defined (__CYGWIN__) && defined (O_TEXT)
1431 setmode (fd, O_TEXT);
1432#endif
1433
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001434#if defined (BUFFERED_INPUT)
1435 default_buffered_input = fd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001436 SET_CLOSE_ON_EXEC (default_buffered_input);
1437#else /* !BUFFERED_INPUT */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001438 default_input = fdopen (fd, "r");
1439
1440 if (default_input == 0)
1441 {
1442 file_error (filename);
1443 exit (EX_NOTFOUND);
1444 }
1445
1446 SET_CLOSE_ON_EXEC (fd);
1447 if (fileno (default_input) != fd)
1448 SET_CLOSE_ON_EXEC (fileno (default_input));
1449#endif /* !BUFFERED_INPUT */
1450
Jari Aalto28ef6c32001-04-06 19:14:31 +00001451 /* Just about the only way for this code to be executed is if something
1452 like `bash -i /dev/stdin' is executed. */
1453 if (interactive_shell && fd_is_tty)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001454 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001455 dup2 (fd, 0);
1456 close (fd);
1457 fd = 0;
1458#if defined (BUFFERED_INPUT)
1459 default_buffered_input = 0;
1460#else
1461 fclose (default_input);
1462 default_input = stdin;
1463#endif
1464 }
Jari Aaltof73dda02001-11-13 17:56:06 +00001465 else if (forced_interactive && fd_is_tty == 0)
1466 /* But if a script is called with something like `bash -i scriptname',
1467 we need to do a non-interactive setup here, since we didn't do it
1468 before. */
1469 init_noninteractive ();
Jari Aalto28ef6c32001-04-06 19:14:31 +00001470
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001471 free (filename);
1472 return (fd);
1473}
1474
1475/* Initialize the input routines for the parser. */
1476static void
1477set_bash_input ()
1478{
1479 /* Make sure the fd from which we are reading input is not in
1480 no-delay mode. */
1481#if defined (BUFFERED_INPUT)
1482 if (interactive == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001483 sh_unset_nodelay_mode (default_buffered_input);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001484 else
1485#endif /* !BUFFERED_INPUT */
Jari Aalto28ef6c32001-04-06 19:14:31 +00001486 sh_unset_nodelay_mode (fileno (stdin));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001487
1488 /* with_input_from_stdin really means `with_input_from_readline' */
1489 if (interactive && no_line_editing == 0)
1490 with_input_from_stdin ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001491#if defined (BUFFERED_INPUT)
Jari Aalto95732b42005-12-07 14:08:12 +00001492 else if (interactive == 0)
1493 with_input_from_buffered_stream (default_buffered_input, dollar_vars[0]);
1494#endif /* BUFFERED_INPUT */
1495 else
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001496 with_input_from_stream (default_input, dollar_vars[0]);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001497}
1498
Jari Aaltocce855b1998-04-17 19:52:44 +00001499/* Close the current shell script input source and forget about it. This is
1500 extern so execute_cmd.c:initialize_subshell() can call it. If CHECK_ZERO
1501 is non-zero, we close default_buffered_input even if it's the standard
1502 input (fd 0). */
1503void
1504unset_bash_input (check_zero)
1505 int check_zero;
1506{
1507#if defined (BUFFERED_INPUT)
1508 if ((check_zero && default_buffered_input >= 0) ||
1509 (check_zero == 0 && default_buffered_input > 0))
1510 {
1511 close_buffered_fd (default_buffered_input);
1512 default_buffered_input = bash_input.location.buffered_fd = -1;
1513 }
1514#else /* !BUFFERED_INPUT */
1515 if (default_input)
1516 {
1517 fclose (default_input);
1518 default_input = (FILE *)NULL;
1519 }
1520#endif /* !BUFFERED_INPUT */
1521}
1522
1523
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001524#if !defined (PROGRAM)
1525# define PROGRAM "bash"
Jari Aalto726f6381996-08-26 18:22:31 +00001526#endif
1527
Jari Aalto726f6381996-08-26 18:22:31 +00001528static void
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001529set_shell_name (argv0)
1530 char *argv0;
Jari Aalto726f6381996-08-26 18:22:31 +00001531{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001532 /* Here's a hack. If the name of this shell is "sh", then don't do
1533 any startup files; just try to be more like /bin/sh. */
Jari Aalto95732b42005-12-07 14:08:12 +00001534 shell_name = argv0 ? base_pathname (argv0) : PROGRAM;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001535
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001536 if (*shell_name == '-')
Jari Aalto7117c2d2002-07-17 14:10:11 +00001537 {
1538 shell_name++;
1539 login_shell++;
1540 }
1541
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001542 if (shell_name[0] == 's' && shell_name[1] == 'h' && shell_name[2] == '\0')
1543 act_like_sh++;
1544 if (shell_name[0] == 's' && shell_name[1] == 'u' && shell_name[2] == '\0')
1545 su_shell++;
1546
Jari Aalto95732b42005-12-07 14:08:12 +00001547 shell_name = argv0 ? argv0 : PROGRAM;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001548 FREE (dollar_vars[0]);
1549 dollar_vars[0] = savestring (shell_name);
1550
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001551 /* A program may start an interactive shell with
1552 "execl ("/bin/bash", "-", NULL)".
1553 If so, default the name of this shell to our name. */
1554 if (!shell_name || !*shell_name || (shell_name[0] == '-' && !shell_name[1]))
1555 shell_name = PROGRAM;
1556}
1557
1558static void
1559init_interactive ()
1560{
1561 interactive_shell = startup_state = interactive = 1;
1562 expand_aliases = 1;
1563}
1564
1565static void
1566init_noninteractive ()
1567{
1568#if defined (HISTORY)
1569 bash_history_reinit (0);
1570#endif /* HISTORY */
1571 interactive_shell = startup_state = interactive = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001572 expand_aliases = posixly_correct; /* XXX - was 0 not posixly_correct */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001573 no_line_editing = 1;
1574#if defined (JOB_CONTROL)
1575 set_job_control (0);
1576#endif /* JOB_CONTROL */
Jari Aalto726f6381996-08-26 18:22:31 +00001577}
1578
Jari Aaltod166f041997-06-05 14:59:13 +00001579void
1580get_current_user_info ()
Jari Aalto726f6381996-08-26 18:22:31 +00001581{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001582 struct passwd *entry;
Jari Aalto726f6381996-08-26 18:22:31 +00001583
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001584 /* Don't fetch this more than once. */
1585 if (current_user.user_name == 0)
1586 {
1587 entry = getpwuid (current_user.uid);
1588 if (entry)
1589 {
1590 current_user.user_name = savestring (entry->pw_name);
1591 current_user.shell = (entry->pw_shell && entry->pw_shell[0])
1592 ? savestring (entry->pw_shell)
1593 : savestring ("/bin/sh");
1594 current_user.home_dir = savestring (entry->pw_dir);
1595 }
1596 else
1597 {
Jari Aaltob80f6442004-07-27 13:29:18 +00001598 current_user.user_name = _("I have no name!");
1599 current_user.user_name = savestring (current_user.user_name);
Jari Aalto726f6381996-08-26 18:22:31 +00001600 current_user.shell = savestring ("/bin/sh");
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001601 current_user.home_dir = savestring ("/");
1602 }
1603 endpwent ();
1604 }
Jari Aaltod166f041997-06-05 14:59:13 +00001605}
1606
1607/* Do whatever is necessary to initialize the shell.
1608 Put new initializations in here. */
1609static void
1610shell_initialize ()
1611{
1612 char hostname[256];
1613
1614 /* Line buffer output for stderr and stdout. */
Jari Aaltocce855b1998-04-17 19:52:44 +00001615 if (shell_initialized == 0)
Jari Aaltocce855b1998-04-17 19:52:44 +00001616 {
Jari Aaltobb706242000-03-17 21:46:59 +00001617 sh_setlinebuf (stderr);
1618 sh_setlinebuf (stdout);
Jari Aaltocce855b1998-04-17 19:52:44 +00001619 }
Jari Aaltod166f041997-06-05 14:59:13 +00001620
1621 /* Sort the array of shell builtins so that the binary search in
1622 find_shell_builtin () works correctly. */
1623 initialize_shell_builtins ();
1624
1625 /* Initialize the trap signal handlers before installing our own
1626 signal handlers. traps.c:restore_original_signals () is responsible
1627 for restoring the original default signal handlers. That function
1628 is called when we make a new child. */
1629 initialize_traps ();
Jari Aalto7117c2d2002-07-17 14:10:11 +00001630 initialize_signals (0);
Jari Aaltod166f041997-06-05 14:59:13 +00001631
1632 /* It's highly unlikely that this will change. */
1633 if (current_host_name == 0)
1634 {
1635 /* Initialize current_host_name. */
1636 if (gethostname (hostname, 255) < 0)
1637 current_host_name = "??host??";
1638 else
1639 current_host_name = savestring (hostname);
1640 }
1641
1642 /* Initialize the stuff in current_user that comes from the password
1643 file. We don't need to do this right away if the shell is not
1644 interactive. */
1645 if (interactive_shell)
1646 get_current_user_info ();
Jari Aalto726f6381996-08-26 18:22:31 +00001647
1648 /* Initialize our interface to the tilde expander. */
1649 tilde_initialize ();
1650
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001651 /* Initialize internal and environment variables. Don't import shell
1652 functions from the environment if we are running in privileged or
1653 restricted mode or if the shell is running setuid. */
1654#if defined (RESTRICTED_SHELL)
1655 initialize_shell_variables (shell_environment, privileged_mode||restricted||running_setuid);
1656#else
1657 initialize_shell_variables (shell_environment, privileged_mode||running_setuid);
1658#endif
Jari Aalto726f6381996-08-26 18:22:31 +00001659
Jari Aalto726f6381996-08-26 18:22:31 +00001660 /* Initialize the data structures for storing and running jobs. */
Jari Aaltod166f041997-06-05 14:59:13 +00001661 initialize_job_control (0);
Jari Aalto726f6381996-08-26 18:22:31 +00001662
1663 /* Initialize input streams to null. */
1664 initialize_bash_input ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001665
Jari Aalto7117c2d2002-07-17 14:10:11 +00001666 initialize_flags ();
1667
Jari Aaltocce855b1998-04-17 19:52:44 +00001668 /* Initialize the shell options. Don't import the shell options
1669 from the environment variable $SHELLOPTS if we are running in
1670 privileged or restricted mode or if the shell is running setuid. */
1671#if defined (RESTRICTED_SHELL)
1672 initialize_shell_options (privileged_mode||restricted||running_setuid);
1673#else
1674 initialize_shell_options (privileged_mode||running_setuid);
1675#endif
Jari Aalto726f6381996-08-26 18:22:31 +00001676}
1677
1678/* Function called by main () when it appears that the shell has already
1679 had some initialization performed. This is supposed to reset the world
1680 back to a pristine state, as if we had been exec'ed. */
1681static void
1682shell_reinitialize ()
1683{
1684 /* The default shell prompts. */
1685 primary_prompt = PPROMPT;
1686 secondary_prompt = SPROMPT;
1687
1688 /* Things that get 1. */
1689 current_command_number = 1;
1690
1691 /* We have decided that the ~/.bashrc file should not be executed
1692 for the invocation of each shell script. If the variable $ENV
1693 (or $BASH_ENV) is set, its value is used as the name of a file
1694 to source. */
1695 no_rc = no_profile = 1;
1696
1697 /* Things that get 0. */
1698 login_shell = make_login_shell = interactive = executing = 0;
1699 debugging = do_version = line_number = last_command_exit_value = 0;
1700 forced_interactive = interactive_shell = subshell_environment = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001701 expand_aliases = 0;
Jari Aalto726f6381996-08-26 18:22:31 +00001702
1703#if defined (HISTORY)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001704 bash_history_reinit (0);
Jari Aalto726f6381996-08-26 18:22:31 +00001705#endif /* HISTORY */
1706
1707#if defined (RESTRICTED_SHELL)
1708 restricted = 0;
1709#endif /* RESTRICTED_SHELL */
1710
1711 /* Ensure that the default startup file is used. (Except that we don't
1712 execute this file for reinitialized shells). */
1713 bashrc_file = "~/.bashrc";
1714
1715 /* Delete all variables and functions. They will be reinitialized when
1716 the environment is parsed. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00001717 delete_all_contexts (shell_variables);
Jari Aalto726f6381996-08-26 18:22:31 +00001718 delete_all_variables (shell_functions);
1719
Jari Aalto28ef6c32001-04-06 19:14:31 +00001720 shell_reinitialized = 1;
Jari Aalto726f6381996-08-26 18:22:31 +00001721}
1722
1723static void
Jari Aaltod166f041997-06-05 14:59:13 +00001724show_shell_usage (fp, extra)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001725 FILE *fp;
Jari Aaltod166f041997-06-05 14:59:13 +00001726 int extra;
Jari Aalto726f6381996-08-26 18:22:31 +00001727{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001728 int i;
1729 char *set_opts, *s, *t;
Jari Aalto726f6381996-08-26 18:22:31 +00001730
Jari Aaltod166f041997-06-05 14:59:13 +00001731 if (extra)
1732 fprintf (fp, "GNU bash, version %s-(%s)\n", shell_version_string (), MACHTYPE);
Jari Aaltob80f6442004-07-27 13:29:18 +00001733 fprintf (fp, _("Usage:\t%s [GNU long option] [option] ...\n\t%s [GNU long option] [option] script-file ...\n"),
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001734 shell_name, shell_name);
Jari Aaltob80f6442004-07-27 13:29:18 +00001735 fputs (_("GNU long options:\n"), fp);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001736 for (i = 0; long_args[i].name; i++)
1737 fprintf (fp, "\t--%s\n", long_args[i].name);
Jari Aalto726f6381996-08-26 18:22:31 +00001738
Jari Aaltob80f6442004-07-27 13:29:18 +00001739 fputs (_("Shell options:\n"), fp);
1740 fputs (_("\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"), fp);
Jari Aalto726f6381996-08-26 18:22:31 +00001741
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001742 for (i = 0, set_opts = 0; shell_builtins[i].name; i++)
1743 if (STREQ (shell_builtins[i].name, "set"))
1744 set_opts = savestring (shell_builtins[i].short_doc);
1745 if (set_opts)
Jari Aalto726f6381996-08-26 18:22:31 +00001746 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00001747 s = xstrchr (set_opts, '[');
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001748 if (s == 0)
1749 s = set_opts;
1750 while (*++s == '-')
1751 ;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001752 t = xstrchr (s, ']');
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001753 if (t)
1754 *t = '\0';
Jari Aaltob80f6442004-07-27 13:29:18 +00001755 fprintf (fp, _("\t-%s or -o option\n"), s);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001756 free (set_opts);
Jari Aalto726f6381996-08-26 18:22:31 +00001757 }
1758
Jari Aaltod166f041997-06-05 14:59:13 +00001759 if (extra)
1760 {
Jari Aaltob80f6442004-07-27 13:29:18 +00001761 fprintf (fp, _("Type `%s -c \"help set\"' for more information about shell options.\n"), shell_name);
1762 fprintf (fp, _("Type `%s -c help' for more information about shell builtin commands.\n"), shell_name);
1763 fprintf (fp, _("Use the `bashbug' command to report bugs.\n"));
Jari Aaltod166f041997-06-05 14:59:13 +00001764 }
Jari Aalto726f6381996-08-26 18:22:31 +00001765}
1766
Jari Aaltof73dda02001-11-13 17:56:06 +00001767static void
1768add_shopt_to_alist (opt, on_or_off)
1769 char *opt;
1770 int on_or_off;
1771{
1772 if (shopt_ind >= shopt_len)
1773 {
1774 shopt_len += 8;
1775 shopt_alist = (STRING_INT_ALIST *)xrealloc (shopt_alist, shopt_len * sizeof (shopt_alist[0]));
1776 }
1777 shopt_alist[shopt_ind].word = opt;
1778 shopt_alist[shopt_ind].token = on_or_off;
1779 shopt_ind++;
1780}
1781
1782static void
1783run_shopt_alist ()
1784{
1785 register int i;
1786
1787 for (i = 0; i < shopt_ind; i++)
1788 if (shopt_setopt (shopt_alist[i].word, (shopt_alist[i].token == '-')) != EXECUTION_SUCCESS)
Jari Aaltob80f6442004-07-27 13:29:18 +00001789 exit (EX_BADUSAGE);
Jari Aaltof73dda02001-11-13 17:56:06 +00001790 free (shopt_alist);
1791 shopt_alist = 0;
1792 shopt_ind = shopt_len = 0;
1793}