summaryrefslogtreecommitdiffstats
path: root/clientloop.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-02-16 22:08:57 +0000
committerDamien Miller <djm@mindrot.org>2015-02-17 09:32:31 +1100
commit6c5c949782d86a6e7d58006599c7685bfcd01685 (patch)
tree7a3f58c507d8aacaefae9880bcfcc924aa2b891b /clientloop.c
parent51b082ccbe633dc970df1d1f4c9c0497115fe721 (diff)
upstream commit
Refactor hostkeys_foreach() and dependent code Deal with IP addresses (i.e. CheckHostIP) Don't clobber known_hosts when nothing changed ok markus@ as part of larger commit
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/clientloop.c b/clientloop.c
index 7b54b6eb..c6f8e9dc 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.267 2015/01/26 03:04:45 djm Exp $ */
+/* $OpenBSD: clientloop.c,v 1.268 2015/02/16 22:08:57 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2102,8 +2102,9 @@ client_input_hostkeys(void)
struct sshbuf *buf = NULL;
struct sshkey *key = NULL, **tmp, **keys = NULL;
int r, success = 1;
- char *fp, *host_str = NULL;
+ char *fp, *host_str = NULL, *ip_str = NULL;
static int hostkeys_seen = 0; /* XXX use struct ssh */
+ extern struct sockaddr_storage hostaddr; /* XXX from ssh.c */
/*
* NB. Return success for all cases other than protocol error. The
@@ -2148,16 +2149,24 @@ client_input_hostkeys(void)
key = NULL;
}
- debug3("%s: received %u keys from server", __func__, nkeys);
if (nkeys == 0) {
error("%s: server sent no hostkeys", __func__);
goto out;
}
- get_hostfile_hostname_ipaddr(host, NULL, options.port, &host_str, NULL);
+ get_hostfile_hostname_ipaddr(host,
+ options.check_host_ip ? (struct sockaddr *)&hostaddr : NULL,
+ options.port, &host_str, options.check_host_ip ? &ip_str : NULL);
- if ((r = hostfile_replace_entries(options.user_hostfiles[0], host_str,
- keys, nkeys, options.hash_known_hosts, 1)) != 0) {
+ debug3("%s: update known hosts for %s%s%s with %u keys from server",
+ __func__, host_str,
+ options.check_host_ip ? " " : "",
+ options.check_host_ip ? ip_str : "", nkeys);
+
+ if ((r = hostfile_replace_entries(options.user_hostfiles[0],
+ host_str, options.check_host_ip ? ip_str : NULL,
+ keys, nkeys, options.hash_known_hosts, 0,
+ options.fingerprint_hash)) != 0) {
error("%s: hostfile_replace_entries failed: %s",
__func__, ssh_err(r));
goto out;
@@ -2166,6 +2175,7 @@ client_input_hostkeys(void)
/* Success */
out:
free(host_str);
+ free(ip_str);
sshkey_free(key);
for (i = 0; i < nkeys; i++)
sshkey_free(keys[i]);