2013-09-19 06:09:33 +02:00
|
|
|
# block SIGALRM while logging through syslog to prevent deadlocks (through
|
|
|
|
# grace_alarm_handler)
|
|
|
|
# bnc#57354
|
|
|
|
|
2014-04-14 23:53:01 +02:00
|
|
|
diff --git a/openssh-6.6p1/log.c b/openssh-6.6p1/log.c
|
|
|
|
--- a/openssh-6.6p1/log.c
|
|
|
|
+++ b/openssh-6.6p1/log.c
|
2014-01-31 13:18:41 +01:00
|
|
|
@@ -47,16 +47,17 @@
|
2013-09-19 06:09:33 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
|
|
|
|
# include <vis.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "log.h"
|
|
|
|
+#include <signal.h>
|
|
|
|
|
|
|
|
static LogLevel log_level = SYSLOG_LEVEL_INFO;
|
|
|
|
static int log_on_stderr = 1;
|
2014-01-31 13:18:41 +01:00
|
|
|
static int log_stderr_fd = STDERR_FILENO;
|
2013-09-19 06:09:33 +02:00
|
|
|
static int log_facility = LOG_AUTH;
|
|
|
|
static char *argv0;
|
|
|
|
static log_handler_fn *log_handler;
|
|
|
|
static void *log_handler_ctx;
|
2014-01-31 13:18:41 +01:00
|
|
|
@@ -384,16 +385,17 @@ do_log(LogLevel level, const char *fmt,
|
2013-09-19 06:09:33 +02:00
|
|
|
{
|
|
|
|
#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
|
|
|
|
struct syslog_data sdata = SYSLOG_DATA_INIT;
|
|
|
|
#endif
|
|
|
|
char msgbuf[MSGBUFSIZ];
|
|
|
|
char fmtbuf[MSGBUFSIZ];
|
|
|
|
char *txt = NULL;
|
|
|
|
int pri = LOG_INFO;
|
|
|
|
+ sigset_t nset, oset;
|
|
|
|
int saved_errno = errno;
|
|
|
|
log_handler_fn *tmp_handler;
|
|
|
|
|
|
|
|
if (level > log_level)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
case SYSLOG_LEVEL_FATAL:
|
2014-01-31 13:18:41 +01:00
|
|
|
@@ -442,20 +444,29 @@ do_log(LogLevel level, const char *fmt,
|
2013-09-19 06:09:33 +02:00
|
|
|
tmp_handler = log_handler;
|
|
|
|
log_handler = NULL;
|
|
|
|
tmp_handler(level, fmtbuf, log_handler_ctx);
|
|
|
|
log_handler = tmp_handler;
|
|
|
|
} else if (log_on_stderr) {
|
|
|
|
snprintf(msgbuf, sizeof msgbuf, "%s\r\n", fmtbuf);
|
2014-01-31 13:18:41 +01:00
|
|
|
(void)write(log_stderr_fd, msgbuf, strlen(msgbuf));
|
2013-09-19 06:09:33 +02:00
|
|
|
} else {
|
|
|
|
+ /* Prevent a race between the grace_alarm
|
|
|
|
+ * which writes a log message and terminates
|
|
|
|
+ * and main sshd code that leads to deadlock
|
|
|
|
+ * as syslog is not async safe.
|
|
|
|
+ */
|
|
|
|
+ sigemptyset(&nset);
|
|
|
|
+ sigaddset(&nset, SIGALRM);
|
|
|
|
+ sigprocmask(SIG_BLOCK, &nset, &oset);
|
|
|
|
#if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT)
|
|
|
|
openlog_r(argv0 ? argv0 : __progname, LOG_PID, log_facility, &sdata);
|
|
|
|
syslog_r(pri, &sdata, "%.500s", fmtbuf);
|
|
|
|
closelog_r(&sdata);
|
|
|
|
#else
|
|
|
|
openlog(argv0 ? argv0 : __progname, LOG_PID, log_facility);
|
|
|
|
syslog(pri, "%.500s", fmtbuf);
|
|
|
|
closelog();
|
|
|
|
#endif
|
|
|
|
+ sigprocmask(SIG_SETMASK, &oset, NULL);
|
|
|
|
}
|
|
|
|
errno = saved_errno;
|
|
|
|
}
|