summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-03-13 04:01:56 +0000
committerDamien Miller <djm@mindrot.org>2020-03-14 19:39:30 +1100
commit5becbec023f2037394987f85ed7f74b9a28699e0 (patch)
treeea7a8e45ac5e4a71d95f5b99e376b51fa3f823ef /sshconnect.c
parenteef88418f9e5e51910af3c5b23b5606ebc17af55 (diff)
upstream: use sshpkt_fatal() for kex_exchange_identification()
errors. This ensures that the logged errors are consistent with other transport- layer errors and that the relevant IP addresses are logged. bz3129 ok dtucker@ OpenBSD-Commit-ID: 2c22891f0b9e1a6cd46771cedbb26ac96ec2e6ab
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 4711af782..af08be415 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect.c,v 1.328 2020/01/25 07:17:18 djm Exp $ */ 1/* $OpenBSD: sshconnect.c,v 1.329 2020/03/13 04:01:56 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1276,6 +1276,7 @@ ssh_login(struct ssh *ssh, Sensitive *sensitive, const char *orighost,
1276{ 1276{
1277 char *host; 1277 char *host;
1278 char *server_user, *local_user; 1278 char *server_user, *local_user;
1279 int r;
1279 1280
1280 local_user = xstrdup(pw->pw_name); 1281 local_user = xstrdup(pw->pw_name);
1281 server_user = options.user ? options.user : local_user; 1282 server_user = options.user ? options.user : local_user;
@@ -1285,8 +1286,8 @@ ssh_login(struct ssh *ssh, Sensitive *sensitive, const char *orighost,
1285 lowercase(host); 1286 lowercase(host);
1286 1287
1287 /* Exchange protocol version identification strings with the server. */ 1288 /* Exchange protocol version identification strings with the server. */
1288 if (kex_exchange_identification(ssh, timeout_ms, NULL) != 0) 1289 if ((r = kex_exchange_identification(ssh, timeout_ms, NULL)) != 0)
1289 cleanup_exit(255); /* error already logged */ 1290 sshpkt_fatal(ssh, r, "banner exchange");
1290 1291
1291 /* Put the connection into non-blocking mode. */ 1292 /* Put the connection into non-blocking mode. */
1292 ssh_packet_set_nonblocking(ssh); 1293 ssh_packet_set_nonblocking(ssh);