blob: 34728ebfaaa233b8dff301a722eb9c4fbf630040 [file] [log] [blame]
Jari Aalto726f6381996-08-26 18:22:31 +00001This file is exit.def, from which is created exit.c.
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002It implements the builtins "exit", and "logout" in Bash.
Jari Aalto726f6381996-08-26 18:22:31 +00003
Jari Aalto31859422009-01-12 13:36:28 +00004Copyright (C) 1987-2009 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00005
6This file is part of GNU Bash, the Bourne Again SHell.
7
Jari Aalto31859422009-01-12 13:36:28 +00008Bash is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
Jari Aalto726f6381996-08-26 18:22:31 +000012
Jari Aalto31859422009-01-12 13:36:28 +000013Bash is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
Jari Aalto726f6381996-08-26 18:22:31 +000017
Jari Aalto31859422009-01-12 13:36:28 +000018You should have received a copy of the GNU General Public License
19along with Bash. If not, see <http://www.gnu.org/licenses/>.
Jari Aalto726f6381996-08-26 18:22:31 +000020
21$PRODUCES exit.c
22
23$BUILTIN exit
24$FUNCTION exit_builtin
25$SHORT_DOC exit [n]
Jari Aalto31859422009-01-12 13:36:28 +000026Exit the shell.
27
28Exits the shell with a status of N. If N is omitted, the exit status
Jari Aalto726f6381996-08-26 18:22:31 +000029is that of the last command executed.
30$END
31
Jari Aaltoccc6cda1996-12-23 17:02:34 +000032#include <config.h>
33
Jari Aaltod166f041997-06-05 14:59:13 +000034#include "../bashtypes.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000035#include <stdio.h>
36
37#if defined (HAVE_UNISTD_H)
38# include <unistd.h>
39#endif
40
Jari Aaltob80f6442004-07-27 13:29:18 +000041#include "../bashintl.h"
42
Jari Aalto726f6381996-08-26 18:22:31 +000043#include "../shell.h"
44#include "../jobs.h"
45
Jari Aaltoccc6cda1996-12-23 17:02:34 +000046#include "common.h"
Jari Aalto726f6381996-08-26 18:22:31 +000047#include "builtext.h" /* for jobs_builtin */
48
Jari Aalto31859422009-01-12 13:36:28 +000049extern int check_jobs_at_exit;
Jari Aalto726f6381996-08-26 18:22:31 +000050extern int last_command_exit_value;
Jari Aaltob80f6442004-07-27 13:29:18 +000051extern int running_trap, trap_saved_exit_value;
Jari Aaltof73dda02001-11-13 17:56:06 +000052extern int subshell_environment;
53extern sh_builtin_func_t *this_shell_builtin;
54extern sh_builtin_func_t *last_shell_builtin;
Jari Aalto726f6381996-08-26 18:22:31 +000055
Jari Aaltof73dda02001-11-13 17:56:06 +000056static int exit_or_logout __P((WORD_LIST *));
Jari Aaltoccc6cda1996-12-23 17:02:34 +000057static int sourced_logout;
Jari Aalto726f6381996-08-26 18:22:31 +000058
59int
60exit_builtin (list)
61 WORD_LIST *list;
62{
63 if (interactive)
64 {
Jari Aalto31859422009-01-12 13:36:28 +000065 fprintf (stderr, login_shell ? _("logout\n") : "exit\n");
Jari Aalto726f6381996-08-26 18:22:31 +000066 fflush (stderr);
67 }
68
69 return (exit_or_logout (list));
70}
71
72$BUILTIN logout
73$FUNCTION logout_builtin
Jari Aalto31859422009-01-12 13:36:28 +000074$SHORT_DOC logout [n]
75Exit a login shell.
76
77Exits a login shell with exit status N. Returns an error if not executed
78in a login shell.
Jari Aalto726f6381996-08-26 18:22:31 +000079$END
80
81/* How to logout. */
82int
83logout_builtin (list)
84 WORD_LIST *list;
85{
Jari Aaltocce855b1998-04-17 19:52:44 +000086 if (login_shell == 0 /* && interactive */)
Jari Aalto726f6381996-08-26 18:22:31 +000087 {
Jari Aaltob80f6442004-07-27 13:29:18 +000088 builtin_error (_("not login shell: use `exit'"));
Jari Aalto726f6381996-08-26 18:22:31 +000089 return (EXECUTION_FAILURE);
90 }
91 else
92 return (exit_or_logout (list));
93}
94
Jari Aalto726f6381996-08-26 18:22:31 +000095static int
96exit_or_logout (list)
97 WORD_LIST *list;
98{
99 int exit_value;
100
101#if defined (JOB_CONTROL)
Jari Aalto31859422009-01-12 13:36:28 +0000102 int exit_immediate_okay, stopmsg;
Jari Aalto726f6381996-08-26 18:22:31 +0000103
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000104 exit_immediate_okay = (interactive == 0 ||
Jari Aalto726f6381996-08-26 18:22:31 +0000105 last_shell_builtin == exit_builtin ||
106 last_shell_builtin == logout_builtin ||
107 last_shell_builtin == jobs_builtin);
108
109 /* Check for stopped jobs if the user wants to. */
Jari Aalto31859422009-01-12 13:36:28 +0000110 if (exit_immediate_okay == 0)
Jari Aalto726f6381996-08-26 18:22:31 +0000111 {
112 register int i;
Jari Aalto31859422009-01-12 13:36:28 +0000113 for (i = stopmsg = 0; i < js.j_jobslots; i++)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000114 if (jobs[i] && STOPPED (i))
Jari Aalto31859422009-01-12 13:36:28 +0000115 stopmsg = JSTOPPED;
Chet Ramey89a92862011-11-21 20:49:12 -0500116 else if (check_jobs_at_exit && stopmsg == 0 && jobs[i] && RUNNING (i))
Jari Aalto31859422009-01-12 13:36:28 +0000117 stopmsg = JRUNNING;
Jari Aalto726f6381996-08-26 18:22:31 +0000118
Jari Aalto31859422009-01-12 13:36:28 +0000119 if (stopmsg == JSTOPPED)
120 fprintf (stderr, _("There are stopped jobs.\n"));
121 else if (stopmsg == JRUNNING)
122 fprintf (stderr, _("There are running jobs.\n"));
123
124 if (stopmsg && check_jobs_at_exit)
125 list_all_jobs (JLIST_STANDARD);
126
127 if (stopmsg)
128 {
129 /* This is NOT superfluous because EOF can get here without
130 going through the command parser. Set both last and this
131 so that either `exit', `logout', or ^D will work to exit
132 immediately if nothing intervenes. */
133 this_shell_builtin = last_shell_builtin = exit_builtin;
134 return (EXECUTION_FAILURE);
135 }
Jari Aalto726f6381996-08-26 18:22:31 +0000136 }
137#endif /* JOB_CONTROL */
138
139 /* Get return value if present. This means that you can type
140 `logout 5' to a shell, and it returns 5. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000141
Jari Aaltob80f6442004-07-27 13:29:18 +0000142 /* If we're running the exit trap (running_trap == 1, since running_trap
143 gets set to SIG+1), and we don't have a argument given to `exit'
144 (list == 0), use the exit status we saved before running the trap
145 commands (trap_saved_exit_value). */
146 exit_value = (running_trap == 1 && list == 0) ? trap_saved_exit_value : get_exitstat (list);
Jari Aalto726f6381996-08-26 18:22:31 +0000147
Jari Aaltob80f6442004-07-27 13:29:18 +0000148 bash_logout ();
149
150 last_command_exit_value = exit_value;
151
152 /* Exit the program. */
153 jump_to_top_level (EXITPROG);
154 /*NOTREACHED*/
155}
156
157void
158bash_logout ()
159{
Jari Aalto726f6381996-08-26 18:22:31 +0000160 /* Run our `~/.bash_logout' file if it exists, and this is a login shell. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000161 if (login_shell && sourced_logout++ == 0 && subshell_environment == 0)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000162 {
163 maybe_execute_file ("~/.bash_logout", 1);
164#ifdef SYS_BASH_LOGOUT
165 maybe_execute_file (SYS_BASH_LOGOUT, 1);
166#endif
167 }
Jari Aalto726f6381996-08-26 18:22:31 +0000168}