mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
upstream commit
Reduce the syslog level of some relatively common protocol events from LOG_CRIT by replacing fatal() calls with logdie(). Part of bz#2585, ok djm@ Upstream-ID: 9005805227c94edf6ac02a160f0e199638d288e5
This commit is contained in:
parent
bd5f2b78b6
commit
af1f084857
12
log.c
12
log.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: log.c,v 1.47 2016/04/29 08:07:53 djm Exp $ */
|
/* $OpenBSD: log.c,v 1.48 2016/07/15 05:01:58 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -176,6 +176,16 @@ sigdie(const char *fmt,...)
|
|||||||
_exit(1);
|
_exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
logdie(const char *fmt,...)
|
||||||
|
{
|
||||||
|
va_list args;
|
||||||
|
|
||||||
|
va_start(args, fmt);
|
||||||
|
do_log(SYSLOG_LEVEL_INFO, fmt, args);
|
||||||
|
va_end(args);
|
||||||
|
cleanup_exit(255);
|
||||||
|
}
|
||||||
|
|
||||||
/* Log this message (information that usually should go to the log). */
|
/* Log this message (information that usually should go to the log). */
|
||||||
|
|
||||||
|
4
log.h
4
log.h
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: log.h,v 1.20 2013/04/07 02:10:33 dtucker Exp $ */
|
/* $OpenBSD: log.h,v 1.21 2016/07/15 05:01:58 dtucker Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
@ -63,6 +63,8 @@ void fatal(const char *, ...) __attribute__((noreturn))
|
|||||||
void error(const char *, ...) __attribute__((format(printf, 1, 2)));
|
void error(const char *, ...) __attribute__((format(printf, 1, 2)));
|
||||||
void sigdie(const char *, ...) __attribute__((noreturn))
|
void sigdie(const char *, ...) __attribute__((noreturn))
|
||||||
__attribute__((format(printf, 1, 2)));
|
__attribute__((format(printf, 1, 2)));
|
||||||
|
void logdie(const char *, ...) __attribute__((noreturn))
|
||||||
|
__attribute__((format(printf, 1, 2)));
|
||||||
void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
|
void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
|
||||||
void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
|
void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
|
||||||
void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
|
void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
|
||||||
|
21
packet.c
21
packet.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: packet.c,v 1.231 2016/07/08 03:44:42 djm Exp $ */
|
/* $OpenBSD: packet.c,v 1.232 2016/07/15 05:01:58 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -2073,24 +2073,19 @@ sshpkt_fatal(struct ssh *ssh, const char *tag, int r)
|
|||||||
{
|
{
|
||||||
switch (r) {
|
switch (r) {
|
||||||
case SSH_ERR_CONN_CLOSED:
|
case SSH_ERR_CONN_CLOSED:
|
||||||
logit("Connection closed by %.200s port %d",
|
logdie("Connection closed by %.200s port %d",
|
||||||
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
||||||
cleanup_exit(255);
|
|
||||||
case SSH_ERR_CONN_TIMEOUT:
|
case SSH_ERR_CONN_TIMEOUT:
|
||||||
logit("Connection %s %.200s port %d timed out",
|
logdie("Connection %s %.200s port %d timed out",
|
||||||
ssh->state->server_side ? "from" : "to",
|
ssh->state->server_side ? "from" : "to",
|
||||||
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
||||||
cleanup_exit(255);
|
|
||||||
case SSH_ERR_DISCONNECTED:
|
case SSH_ERR_DISCONNECTED:
|
||||||
logit("Disconnected from %.200s port %d",
|
logdie("Disconnected from %.200s port %d",
|
||||||
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
||||||
cleanup_exit(255);
|
|
||||||
case SSH_ERR_SYSTEM_ERROR:
|
case SSH_ERR_SYSTEM_ERROR:
|
||||||
if (errno == ECONNRESET) {
|
if (errno == ECONNRESET)
|
||||||
logit("Connection reset by %.200s port %d",
|
logdie("Connection reset by %.200s port %d",
|
||||||
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
|
||||||
cleanup_exit(255);
|
|
||||||
}
|
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
case SSH_ERR_NO_CIPHER_ALG_MATCH:
|
case SSH_ERR_NO_CIPHER_ALG_MATCH:
|
||||||
case SSH_ERR_NO_MAC_ALG_MATCH:
|
case SSH_ERR_NO_MAC_ALG_MATCH:
|
||||||
@ -2098,14 +2093,14 @@ sshpkt_fatal(struct ssh *ssh, const char *tag, int r)
|
|||||||
case SSH_ERR_NO_KEX_ALG_MATCH:
|
case SSH_ERR_NO_KEX_ALG_MATCH:
|
||||||
case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
|
case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
|
||||||
if (ssh && ssh->kex && ssh->kex->failed_choice) {
|
if (ssh && ssh->kex && ssh->kex->failed_choice) {
|
||||||
fatal("Unable to negotiate with %.200s port %d: %s. "
|
logdie("Unable to negotiate with %.200s port %d: %s. "
|
||||||
"Their offer: %s", ssh_remote_ipaddr(ssh),
|
"Their offer: %s", ssh_remote_ipaddr(ssh),
|
||||||
ssh_remote_port(ssh), ssh_err(r),
|
ssh_remote_port(ssh), ssh_err(r),
|
||||||
ssh->kex->failed_choice);
|
ssh->kex->failed_choice);
|
||||||
}
|
}
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
default:
|
default:
|
||||||
fatal("%s%sConnection %s %.200s port %d: %s",
|
logdie("%s%sConnection %s %.200s port %d: %s",
|
||||||
tag != NULL ? tag : "", tag != NULL ? ": " : "",
|
tag != NULL ? tag : "", tag != NULL ? ": " : "",
|
||||||
ssh->state->server_side ? "from" : "to",
|
ssh->state->server_side ? "from" : "to",
|
||||||
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), ssh_err(r));
|
ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), ssh_err(r));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user