aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk.c
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-14 03:08:17 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-14 03:08:17 +0000
commit51dc50aed85165ee933a8367765dc4bcb7139efe (patch)
tree175d55f0d735661bde55ad216db11a5310deb8b1 /asterisk.c
parent5ac713c7fb6ed2ecab4df5b5aed4938b0108bec1 (diff)
Merged changes from r9844 from /trunk. Make sure that PR_SET_DUMPABLE is set to make certain that we still dump core if Asterisk has setuid'd to run as non-root.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@9861 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'asterisk.c')
-rw-r--r--asterisk.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/asterisk.c b/asterisk.c
index cc23c4ff3..5c8a1bfba 100644
--- a/asterisk.c
+++ b/asterisk.c
@@ -75,6 +75,7 @@
#include <grp.h>
#include <pwd.h>
#include <sys/stat.h>
+#include <sys/prctl.h>
#include <regex.h>
#if defined(__FreeBSD__) || defined( __NetBSD__ ) || defined(SOLARIS)
@@ -2209,6 +2210,12 @@ int main(int argc, char *argv[])
#endif /* __CYGWIN__ */
+ if (geteuid() && ast_opt_dump_core) {
+ if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) < 0) {
+ ast_log(LOG_WARNING, "Unable to set the process for core dumps after changing to a non-root user. %s\n", strerror(errno));
+ }
+ }
+
term_init();
printf(term_end());
fflush(stdout);