diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2020-02-06 22:46:32 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2020-02-06 22:46:32 +0000 |
commit | 1ee50f444bb4576f251373165cf84b9ef301b48b (patch) | |
tree | eaa90672564e8a89ca5d045acf14cc8312282a12 | |
parent | 88697c086a580b3e151750f959340acc66f65fae (diff) |
expand HostkeyAlgorithms prior to config dump, matching other
algorithm lists; ok markus@
-rw-r--r-- | usr.bin/ssh/readconf.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 0dfa776615e..886ebcdcadf 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.325 2020/02/03 23:47:57 djm Exp $ */ +/* $OpenBSD: readconf.c,v 1.326 2020/02/06 22:46:31 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2642,8 +2642,20 @@ dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds) void dump_client_config(Options *o, const char *host) { - int i; - char buf[8]; + int i, r; + char buf[8], *all_key; + + /* + * Expand HostKeyAlgorithms name lists. This isn't handled in + * fill_default_options() like the other algorithm lists because + * the host key algorithms are by default dynamically chosen based + * on the host's keys found in known_hosts. + */ + all_key = sshkey_alg_list(0, 0, 1, ','); + if ((r = kex_assemble_names(&o->hostkeyalgorithms, kex_default_pk_alg(), + all_key)) != 0) + fatal("%s: expand HostKeyAlgorithms: %s", __func__, ssh_err(r)); + free(all_key); /* Most interesting options first: user, host, port */ dump_cfg_string(oUser, o->user); |