summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-06-29 12:46:00 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-06-29 12:46:00 +0200
commit8515376ac9b8549a4b93d87455df626cca0199b7 (patch)
treed586f908ea3eaa1d9eb402e840fba5b30f431b78 /tools
parent301ac7591ada58671cf6a02646a7481bf1bfa469 (diff)
parent6511278082a7e1e9602385cd24cdb5e363cb702f (diff)
downloadrsyslog-8515376ac9b8549a4b93d87455df626cca0199b7.tar.gz
rsyslog-8515376ac9b8549a4b93d87455df626cca0199b7.tar.xz
rsyslog-8515376ac9b8549a4b93d87455df626cca0199b7.zip
Merge branch 'v4-stable' into beta
Conflicts: ChangeLog
Diffstat (limited to 'tools')
-rw-r--r--tools/syslogd.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c
index f686a769..ff6369c3 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -3238,7 +3238,6 @@ static rsRetVal mainThread()
glbl.SetHUPisRestart(0); /* we can not do restart-type HUPs with dropped privs */
}
-
/* END OF INTIALIZATION
* ... but keep in mind that we might do a restart and thus init() might
* be called again. If that happens, we must shut down the worker thread,
@@ -3247,6 +3246,19 @@ static rsRetVal mainThread()
*/
DBGPRINTF("initialization completed, transitioning to regular run mode\n");
+ /* close stderr and stdout if they are kept open during a fork. Note that this
+ * may introduce subtle security issues: if we are in a jail, one may break out of
+ * it via these descriptors. But if I close them earlier, error messages will (once
+ * again) not be emitted to the user that starts the daemon. As root jail support
+ * is still in its infancy (and not really done), we currently accept this issue.
+ * rgerhards, 2009-06-29
+ */
+ if(!(Debug || NoFork)) {
+ close(1);
+ close(2);
+ bErrMsgToStderr = 0;
+ }
+
mainloop();
finalize_it: