From: Lars Müller Date: Tue, 17 Apr 2007 17:17:19 +0000 (+0000) Subject: r22318: If we're running as non root we might not be able to dump the core file X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~681 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0814a3acbe0fe40badf88690ab61d8ad106419d6;p=thirdparty%2Fsamba.git r22318: If we're running as non root we might not be able to dump the core file to the corepath. Even the chdir() will fail if the LOGFILEBASE path is set 0700. If the currrent user doesn't have the permission to create the core file we end with: unable to change to refusing to dump core The alternative would be to change the permissions of the directory. But taht would not ensure core dumps are working out of the box. --- diff --git a/source/lib/fault.c b/source/lib/fault.c index b214d9027ea..26b48a80cd0 100644 --- a/source/lib/fault.c +++ b/source/lib/fault.c @@ -161,6 +161,13 @@ void dump_core_setup(const char *progname) } #if DUMP_CORE + /* If we're running as non root we might not be able to dump the core + * file to the corepath. There must not be an unbecome_root() before + * we call abort(). */ + if (getuid() != 0) { + become_root(); + } + if (*corepath != '\0') { /* The chdir might fail if we dump core before we finish * processing the config file.