2 Unix SMB/CIFS implementation.
3 Critical Fault handling
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifdef HAVE_SYS_PRCTL_H
23 #include <sys/prctl.h>
26 static void (*cont_fn
)(void *);
27 static char *corepath
;
29 /*******************************************************************
31 ********************************************************************/
32 static void fault_report(int sig
)
36 if (counter
) _exit(1);
41 DEBUG(0,("INTERNAL ERROR: Signal %d in pid %d (%s)",sig
,(int)sys_getpid(),SAMBA_VERSION_STRING
));
42 DEBUG(0,("\nPlease read the Trouble-Shooting section of the Samba3-HOWTO\n"));
43 DEBUG(0,("\nFrom: http://www.samba.org/samba/docs/Samba3-HOWTO.pdf\n"));
46 smb_panic("internal error");
51 CatchSignal(SIGSEGV
,SIGNAL_CAST SIG_DFL
);
54 CatchSignal(SIGBUS
,SIGNAL_CAST SIG_DFL
);
57 CatchSignal(SIGABRT
,SIGNAL_CAST SIG_DFL
);
59 return; /* this should cause a core dump */
64 /****************************************************************************
66 ****************************************************************************/
67 static void sig_fault(int sig
)
72 /*******************************************************************
73 setup our fault handlers
74 ********************************************************************/
75 void fault_setup(void (*fn
)(void *))
80 CatchSignal(SIGSEGV
,SIGNAL_CAST sig_fault
);
83 CatchSignal(SIGBUS
,SIGNAL_CAST sig_fault
);
86 CatchSignal(SIGABRT
,SIGNAL_CAST sig_fault
);
90 /*******************************************************************
91 make all the preparations to safely dump a core file
92 ********************************************************************/
94 void dump_core_setup(const char *progname
)
99 if (lp_logfile() && *lp_logfile()) {
100 if (asprintf(&logbase
, "%s", lp_logfile()) < 0) {
103 if ((end
= strrchr_m(logbase
, '/'))) {
107 /* We will end up here is the log file is given on the command
108 * line by the -l option but the "log file" option is not set
111 if (asprintf(&logbase
, "%s", get_dyn_LOGFILEBASE()) < 0) {
116 SMB_ASSERT(progname
!= NULL
);
118 if (asprintf(&corepath
, "%s/cores", logbase
) < 0) {
122 mkdir(corepath
,0700);
125 if (asprintf(&corepath
, "%s/cores/%s",
126 logbase
, progname
) < 0) {
130 mkdir(corepath
,0700);
132 sys_chown(corepath
,getuid(),getgid());
133 chmod(corepath
,0700);
137 #ifdef HAVE_GETRLIMIT
141 getrlimit(RLIMIT_CORE
, &rlp
);
142 rlp
.rlim_cur
= MAX(16*1024*1024,rlp
.rlim_cur
);
143 setrlimit(RLIMIT_CORE
, &rlp
);
144 getrlimit(RLIMIT_CORE
, &rlp
);
145 DEBUG(3,("Maximum core file size limits now %d(soft) %d(hard)\n",
146 (int)rlp
.rlim_cur
,(int)rlp
.rlim_max
));
151 #if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
152 /* On Linux we lose the ability to dump core when we change our user
153 * ID. We know how to dump core safely, so let's make sure we have our
156 prctl(PR_SET_DUMPABLE
, 1);
159 /* FIXME: if we have a core-plus-pid facility, configurably set
169 DEBUG(0, ("dump_core() called recursive\n"));
174 /* Note that even if core dumping has been disabled, we still set up
175 * the core path. This is to handle the case where core dumping is
176 * turned on in smb.conf and the relevant daemon is not restarted.
178 if (!lp_enable_core_files()) {
179 DEBUG(0, ("Exiting on internal error (core file administratively disabled)\n"));
184 /* If we're running as non root we might not be able to dump the core
185 * file to the corepath. There must not be an unbecome_root() before
186 * we call abort(). */
187 if (geteuid() != 0) {
191 if (*corepath
!= '\0') {
192 /* The chdir might fail if we dump core before we finish
193 * processing the config file.
195 if (chdir(corepath
) != 0) {
196 DEBUG(0, ("unable to change to %s\n", corepath
));
197 DEBUGADD(0, ("refusing to dump core\n"));
201 DEBUG(0,("dumping core in %s\n", corepath
));
207 /* Ensure we don't have a signal handler for abort. */
209 CatchSignal(SIGABRT
,SIGNAL_CAST SIG_DFL
);
214 #else /* DUMP_CORE */
216 #endif /* DUMP_CORE */