2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/cipher-ctr.c.fips openssh-8.0p1/cipher-ctr.c
|
|
|
|
--- openssh-8.0p1/cipher-ctr.c.fips 2019-07-23 14:55:45.326525641 +0200
|
|
|
|
+++ openssh-8.0p1/cipher-ctr.c 2019-07-23 14:55:45.401526401 +0200
|
2015-06-24 12:11:59 +00:00
|
|
|
@@ -179,7 +179,8 @@ evp_aes_128_ctr(void)
|
|
|
|
aes_ctr.do_cipher = ssh_aes_ctr;
|
|
|
|
#ifndef SSH_OLD_EVP
|
|
|
|
aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
|
|
|
|
- EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
|
|
|
|
+ EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV |
|
|
|
|
+ EVP_CIPH_FLAG_FIPS;
|
|
|
|
#endif
|
|
|
|
return (&aes_ctr);
|
|
|
|
}
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/dh.c.fips openssh-8.0p1/dh.c
|
|
|
|
--- openssh-8.0p1/dh.c.fips 2019-04-18 00:52:57.000000000 +0200
|
|
|
|
+++ openssh-8.0p1/dh.c 2019-07-23 14:55:45.401526401 +0200
|
2019-03-11 16:17:13 +00:00
|
|
|
@@ -152,6 +152,12 @@ choose_dh(int min, int wantbits, int max
|
|
|
|
int best, bestcount, which, linenum;
|
|
|
|
struct dhgroup dhg;
|
|
|
|
|
|
|
|
+ if (FIPS_mode()) {
|
|
|
|
+ logit("Using arbitrary primes is not allowed in FIPS mode."
|
|
|
|
+ " Falling back to known groups.");
|
|
|
|
+ return (dh_new_group_fallback(max));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if ((f = fopen(_PATH_DH_MODULI, "r")) == NULL) {
|
|
|
|
logit("WARNING: could not open %s (%s), using fixed modulus",
|
|
|
|
_PATH_DH_MODULI, strerror(errno));
|
|
|
|
@@ -489,4 +495,38 @@ dh_estimate(int bits)
|
|
|
|
return 8192;
|
|
|
|
}
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * Compares the received DH parameters with known-good groups,
|
|
|
|
+ * which might be either from group14, group16 or group18.
|
|
|
|
+ */
|
|
|
|
+int
|
|
|
|
+dh_is_known_group(const DH *dh)
|
|
|
|
+{
|
|
|
|
+ const BIGNUM *p, *g;
|
|
|
|
+ const BIGNUM *known_p, *known_g;
|
|
|
|
+ DH *known = NULL;
|
|
|
|
+ int bits = 0, rv = 0;
|
|
|
|
+
|
|
|
|
+ DH_get0_pqg(dh, &p, NULL, &g);
|
|
|
|
+ bits = BN_num_bits(p);
|
|
|
|
+
|
|
|
|
+ if (bits <= 3072) {
|
|
|
|
+ known = dh_new_group14();
|
|
|
|
+ } else if (bits <= 6144) {
|
|
|
|
+ known = dh_new_group16();
|
|
|
|
+ } else {
|
|
|
|
+ known = dh_new_group18();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ DH_get0_pqg(known, &known_p, NULL, &known_g);
|
|
|
|
+
|
|
|
|
+ if (BN_cmp(g, known_g) == 0 &&
|
|
|
|
+ BN_cmp(p, known_p) == 0) {
|
|
|
|
+ rv = 1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ DH_free(known);
|
|
|
|
+ return rv;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#endif /* WITH_OPENSSL */
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/dh.h.fips openssh-8.0p1/dh.h
|
|
|
|
--- openssh-8.0p1/dh.h.fips 2019-04-18 00:52:57.000000000 +0200
|
|
|
|
+++ openssh-8.0p1/dh.h 2019-07-23 14:55:45.401526401 +0200
|
2019-03-11 16:17:13 +00:00
|
|
|
@@ -43,6 +43,7 @@ DH *dh_new_group_fallback(int);
|
|
|
|
|
|
|
|
int dh_gen_key(DH *, int);
|
|
|
|
int dh_pub_is_valid(const DH *, const BIGNUM *);
|
|
|
|
+int dh_is_known_group(const DH *);
|
|
|
|
|
|
|
|
u_int dh_estimate(int);
|
|
|
|
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/kex.c.fips openssh-8.0p1/kex.c
|
|
|
|
--- openssh-8.0p1/kex.c.fips 2019-07-23 14:55:45.395526340 +0200
|
|
|
|
+++ openssh-8.0p1/kex.c 2019-07-23 14:55:45.402526411 +0200
|
|
|
|
@@ -199,7 +199,10 @@ kex_names_valid(const char *names)
|
2014-07-09 19:16:53 +00:00
|
|
|
for ((p = strsep(&cp, ",")); p && *p != '\0';
|
|
|
|
(p = strsep(&cp, ","))) {
|
|
|
|
if (kex_alg_by_name(p) == NULL) {
|
|
|
|
- error("Unsupported KEX algorithm \"%.100s\"", p);
|
|
|
|
+ if (FIPS_mode())
|
|
|
|
+ error("\"%.100s\" is not allowed in FIPS mode", p);
|
|
|
|
+ else
|
|
|
|
+ error("Unsupported KEX algorithm \"%.100s\"", p);
|
|
|
|
free(s);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/kexgexc.c.fips openssh-8.0p1/kexgexc.c
|
|
|
|
--- openssh-8.0p1/kexgexc.c.fips 2019-04-18 00:52:57.000000000 +0200
|
|
|
|
+++ openssh-8.0p1/kexgexc.c 2019-07-23 14:55:45.402526411 +0200
|
2015-06-24 12:11:59 +00:00
|
|
|
@@ -28,6 +28,7 @@
|
2014-07-09 19:16:53 +00:00
|
|
|
|
2015-03-20 13:56:04 +00:00
|
|
|
#ifdef WITH_OPENSSL
|
2014-07-09 19:16:53 +00:00
|
|
|
|
2019-03-21 16:02:28 +00:00
|
|
|
+#include <openssl/crypto.h>
|
2014-07-09 19:16:53 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
#include <openssl/dh.h>
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -113,6 +114,10 @@ input_kex_dh_gex_group(int type, u_int32
|
2019-03-11 16:17:13 +00:00
|
|
|
r = SSH_ERR_ALLOC_FAIL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
+ if (FIPS_mode() && dh_is_known_group(kex->dh) == 0) {
|
|
|
|
+ r = SSH_ERR_INVALID_ARGUMENT;
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
p = g = NULL; /* belong to kex->dh now */
|
|
|
|
|
|
|
|
/* generate and send 'e', client DH public key */
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/myproposal.h.fips openssh-8.0p1/myproposal.h
|
|
|
|
--- openssh-8.0p1/myproposal.h.fips 2019-04-18 00:52:57.000000000 +0200
|
|
|
|
+++ openssh-8.0p1/myproposal.h 2019-07-23 14:55:45.402526411 +0200
|
2020-02-17 10:57:13 +00:00
|
|
|
@@ -111,6 +111,20 @@
|
2017-06-30 10:18:02 +00:00
|
|
|
"rsa-sha2-256," \
|
|
|
|
"ssh-rsa"
|
|
|
|
|
|
|
|
+#define KEX_FIPS_PK_ALG \
|
2020-02-17 10:57:13 +00:00
|
|
|
+ "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
|
|
|
|
+ "ecdsa-sha2-nistp384-cert-v01@openssh.com," \
|
|
|
|
+ "ecdsa-sha2-nistp521-cert-v01@openssh.com," \
|
2019-07-23 13:35:09 +00:00
|
|
|
+ "rsa-sha2-512-cert-v01@openssh.com," \
|
|
|
|
+ "rsa-sha2-256-cert-v01@openssh.com," \
|
2017-06-30 10:18:02 +00:00
|
|
|
+ "ssh-rsa-cert-v01@openssh.com," \
|
2020-02-17 10:57:13 +00:00
|
|
|
+ "ecdsa-sha2-nistp256," \
|
|
|
|
+ "ecdsa-sha2-nistp384," \
|
|
|
|
+ "ecdsa-sha2-nistp521," \
|
2017-06-30 10:18:02 +00:00
|
|
|
+ "rsa-sha2-512," \
|
|
|
|
+ "rsa-sha2-256," \
|
|
|
|
+ "ssh-rsa"
|
|
|
|
+
|
2020-02-17 10:57:13 +00:00
|
|
|
#define KEX_SERVER_ENCRYPT \
|
|
|
|
"chacha20-poly1305@openssh.com," \
|
|
|
|
"aes128-ctr,aes192-ctr,aes256-ctr," \
|
|
|
|
@@ -134,6 +142,27 @@
|
2016-02-29 14:16:45 +00:00
|
|
|
|
|
|
|
#define KEX_CLIENT_MAC KEX_SERVER_MAC
|
2014-07-09 19:16:53 +00:00
|
|
|
|
|
|
|
+#define KEX_FIPS_ENCRYPT \
|
|
|
|
+ "aes128-ctr,aes192-ctr,aes256-ctr," \
|
|
|
|
+ "aes128-cbc,3des-cbc," \
|
2020-02-17 10:57:13 +00:00
|
|
|
+ "aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se," \
|
|
|
|
+ "aes128-gcm@openssh.com,aes256-gcm@openssh.com"
|
|
|
|
+#define KEX_DEFAULT_KEX_FIPS \
|
|
|
|
+ "ecdh-sha2-nistp256," \
|
|
|
|
+ "ecdh-sha2-nistp384," \
|
|
|
|
+ "ecdh-sha2-nistp521," \
|
|
|
|
+ "diffie-hellman-group-exchange-sha256," \
|
|
|
|
+ "diffie-hellman-group16-sha512," \
|
|
|
|
+ "diffie-hellman-group18-sha512," \
|
2017-04-26 12:26:25 +00:00
|
|
|
+ "diffie-hellman-group14-sha256"
|
2020-02-17 10:57:13 +00:00
|
|
|
+#define KEX_FIPS_MAC \
|
2014-07-09 19:16:53 +00:00
|
|
|
+ "hmac-sha1," \
|
|
|
|
+ "hmac-sha2-256," \
|
|
|
|
+ "hmac-sha2-512," \
|
|
|
|
+ "hmac-sha1-etm@openssh.com," \
|
|
|
|
+ "hmac-sha2-256-etm@openssh.com," \
|
|
|
|
+ "hmac-sha2-512-etm@openssh.com"
|
2015-01-20 12:18:45 +00:00
|
|
|
+
|
2018-10-12 13:54:56 +00:00
|
|
|
/* Not a KEX value, but here so all the algorithm defaults are together */
|
|
|
|
#define SSH_ALLOWED_CA_SIGALGS \
|
2021-02-23 23:22:49 +00:00
|
|
|
"ssh-ed25519," \
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/readconf.c.fips openssh-8.0p1/readconf.c
|
|
|
|
--- openssh-8.0p1/readconf.c.fips 2019-07-23 14:55:45.334525723 +0200
|
|
|
|
+++ openssh-8.0p1/readconf.c 2019-07-23 14:55:45.402526411 +0200
|
2020-02-17 10:57:13 +00:00
|
|
|
@@ -2179,11 +2179,16 @@ fill_default_options(Options * options)
|
2018-08-24 20:40:20 +00:00
|
|
|
all_key = sshkey_alg_list(0, 0, 1, ',');
|
2018-10-12 13:54:56 +00:00
|
|
|
all_sig = sshkey_alg_list(0, 1, 1, ',');
|
2020-02-17 10:57:13 +00:00
|
|
|
/* remove unsupported algos from default lists */
|
2020-09-21 11:19:05 +00:00
|
|
|
- def_cipher = match_filter_allowlist(KEX_CLIENT_ENCRYPT, all_cipher);
|
|
|
|
- def_mac = match_filter_allowlist(KEX_CLIENT_MAC, all_mac);
|
|
|
|
- def_kex = match_filter_allowlist(KEX_CLIENT_KEX, all_kex);
|
|
|
|
- def_key = match_filter_allowlist(KEX_DEFAULT_PK_ALG, all_key);
|
|
|
|
- def_sig = match_filter_allowlist(SSH_ALLOWED_CA_SIGALGS, all_sig);
|
|
|
|
+ def_cipher = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_ENCRYPT : KEX_CLIENT_ENCRYPT), all_cipher);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_mac = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_MAC : KEX_CLIENT_MAC), all_mac);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_kex = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_DEFAULT_KEX_FIPS : KEX_CLIENT_KEX), all_kex);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_key = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_PK_ALG : KEX_DEFAULT_PK_ALG), all_key);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_sig = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_PK_ALG : SSH_ALLOWED_CA_SIGALGS), all_sig);
|
|
|
|
#define ASSEMBLE(what, defaults, all) \
|
2018-08-24 20:40:20 +00:00
|
|
|
do { \
|
|
|
|
if ((r = kex_assemble_names(&options->what, \
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/sandbox-seccomp-filter.c.fips openssh-8.0p1/sandbox-seccomp-filter.c
|
|
|
|
--- openssh-8.0p1/sandbox-seccomp-filter.c.fips 2019-07-23 14:55:45.373526117 +0200
|
|
|
|
+++ openssh-8.0p1/sandbox-seccomp-filter.c 2019-07-23 14:55:45.402526411 +0200
|
2017-06-30 10:18:02 +00:00
|
|
|
@@ -137,6 +137,9 @@ static const struct sock_filter preauth_
|
2017-01-02 14:42:13 +00:00
|
|
|
#ifdef __NR_open
|
2017-03-20 14:55:43 +00:00
|
|
|
SC_DENY(__NR_open, EACCES),
|
2017-01-02 14:42:13 +00:00
|
|
|
#endif
|
|
|
|
+#ifdef __NR_socket
|
2017-03-20 14:55:43 +00:00
|
|
|
+ SC_DENY(__NR_socket, EACCES),
|
2017-01-02 14:42:13 +00:00
|
|
|
+#endif
|
|
|
|
#ifdef __NR_openat
|
2017-03-20 14:55:43 +00:00
|
|
|
SC_DENY(__NR_openat, EACCES),
|
2017-01-02 14:42:13 +00:00
|
|
|
#endif
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/servconf.c.fips openssh-8.0p1/servconf.c
|
|
|
|
--- openssh-8.0p1/servconf.c.fips 2019-07-23 14:55:45.361525996 +0200
|
|
|
|
+++ openssh-8.0p1/servconf.c 2019-07-23 14:55:45.403526421 +0200
|
2020-02-17 10:57:13 +00:00
|
|
|
@@ -208,11 +208,16 @@ assemble_algorithms(ServerOptions *o)
|
2018-08-24 20:40:20 +00:00
|
|
|
all_key = sshkey_alg_list(0, 0, 1, ',');
|
2018-10-12 13:54:56 +00:00
|
|
|
all_sig = sshkey_alg_list(0, 1, 1, ',');
|
2020-02-17 10:57:13 +00:00
|
|
|
/* remove unsupported algos from default lists */
|
2020-09-21 11:19:05 +00:00
|
|
|
- def_cipher = match_filter_allowlist(KEX_SERVER_ENCRYPT, all_cipher);
|
|
|
|
- def_mac = match_filter_allowlist(KEX_SERVER_MAC, all_mac);
|
|
|
|
- def_kex = match_filter_allowlist(KEX_SERVER_KEX, all_kex);
|
|
|
|
- def_key = match_filter_allowlist(KEX_DEFAULT_PK_ALG, all_key);
|
|
|
|
- def_sig = match_filter_allowlist(SSH_ALLOWED_CA_SIGALGS, all_sig);
|
|
|
|
+ def_cipher = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_ENCRYPT : KEX_SERVER_ENCRYPT), all_cipher);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_mac = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_MAC : KEX_SERVER_MAC), all_mac);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_kex = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_DEFAULT_KEX_FIPS : KEX_SERVER_KEX), all_kex);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_key = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_PK_ALG : KEX_DEFAULT_PK_ALG), all_key);
|
2020-09-21 11:19:05 +00:00
|
|
|
+ def_sig = match_filter_allowlist((FIPS_mode() ?
|
2020-02-17 10:57:13 +00:00
|
|
|
+ KEX_FIPS_PK_ALG : SSH_ALLOWED_CA_SIGALGS), all_sig);
|
|
|
|
#define ASSEMBLE(what, defaults, all) \
|
2018-08-24 20:40:20 +00:00
|
|
|
do { \
|
2020-02-17 10:57:13 +00:00
|
|
|
if ((r = kex_assemble_names(&o->what, defaults, all)) != 0) \
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/ssh.c.fips openssh-8.0p1/ssh.c
|
|
|
|
--- openssh-8.0p1/ssh.c.fips 2019-07-23 14:55:45.378526168 +0200
|
|
|
|
+++ openssh-8.0p1/ssh.c 2019-07-23 14:55:45.403526421 +0200
|
2020-03-24 09:40:08 +00:00
|
|
|
@@ -76,6 +76,7 @@
|
2014-07-09 19:16:53 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/err.h>
|
2015-01-20 12:18:45 +00:00
|
|
|
#endif
|
2019-03-21 16:02:28 +00:00
|
|
|
+#include <openssl/crypto.h>
|
2014-07-09 19:16:53 +00:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
|
|
|
#include "openbsd-compat/sys-queue.h"
|
|
|
|
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -614,6 +626,10 @@ main(int ac, char **av)
|
2020-03-24 08:24:31 +00:00
|
|
|
dump_client_config(&options, host);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
+
|
2014-07-09 19:16:53 +00:00
|
|
|
+ if (FIPS_mode()) {
|
2020-02-17 13:30:49 +00:00
|
|
|
+ debug("FIPS mode initialized");
|
2014-07-09 19:16:53 +00:00
|
|
|
+ }
|
2020-03-24 08:24:31 +00:00
|
|
|
|
|
|
|
/* Expand SecurityKeyProvider if it refers to an environment variable */
|
|
|
|
if (options.sk_provider != NULL && *options.sk_provider == '$' &&
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/sshconnect2.c.fips openssh-8.0p1/sshconnect2.c
|
|
|
|
--- openssh-8.0p1/sshconnect2.c.fips 2019-07-23 14:55:45.336525743 +0200
|
|
|
|
+++ openssh-8.0p1/sshconnect2.c 2019-07-23 14:55:45.403526421 +0200
|
2015-08-13 15:43:12 +00:00
|
|
|
@@ -44,6 +44,8 @@
|
2014-07-09 19:16:53 +00:00
|
|
|
#include <vis.h>
|
|
|
|
#endif
|
|
|
|
|
2019-03-21 16:02:28 +00:00
|
|
|
+#include <openssl/crypto.h>
|
2014-07-09 19:16:53 +00:00
|
|
|
+
|
|
|
|
#include "openbsd-compat/sys-queue.h"
|
|
|
|
|
|
|
|
#include "xmalloc.h"
|
2020-03-16 18:26:01 +00:00
|
|
|
@@ -198,36 +203,41 @@ ssh_kex2(struct ssh *ssh, char *host, st
|
2014-07-09 19:16:53 +00:00
|
|
|
|
2019-04-26 15:42:30 +00:00
|
|
|
#if defined(GSSAPI) && defined(WITH_OPENSSL)
|
2014-07-09 19:16:53 +00:00
|
|
|
if (options.gss_keyex) {
|
2019-04-26 15:42:30 +00:00
|
|
|
- /* Add the GSSAPI mechanisms currently supported on this
|
2014-07-09 19:16:53 +00:00
|
|
|
- * client to the key exchange algorithm proposal */
|
2019-04-26 15:42:30 +00:00
|
|
|
- orig = myproposal[PROPOSAL_KEX_ALGS];
|
2015-03-20 13:56:04 +00:00
|
|
|
-
|
2020-03-16 18:26:01 +00:00
|
|
|
- if (options.gss_server_identity) {
|
2019-04-26 15:42:30 +00:00
|
|
|
- gss_host = xstrdup(options.gss_server_identity);
|
2020-03-16 18:26:01 +00:00
|
|
|
- } else if (options.gss_trust_dns) {
|
2019-04-26 15:42:30 +00:00
|
|
|
- gss_host = remote_hostname(ssh);
|
2020-03-16 18:26:01 +00:00
|
|
|
- /* Fall back to specified host if we are using proxy command
|
|
|
|
- * and can not use DNS on that socket */
|
|
|
|
- if (strcmp(gss_host, "UNKNOWN") == 0) {
|
|
|
|
- free(gss_host);
|
|
|
|
- gss_host = xstrdup(host);
|
|
|
|
- }
|
|
|
|
- } else {
|
2019-04-26 15:42:30 +00:00
|
|
|
- gss_host = xstrdup(host);
|
2020-03-16 18:26:01 +00:00
|
|
|
- }
|
2015-03-20 13:56:04 +00:00
|
|
|
-
|
2015-08-19 11:14:20 +00:00
|
|
|
- gss = ssh_gssapi_client_mechanisms(gss_host,
|
|
|
|
- options.gss_client_identity, options.gss_kex_algorithms);
|
2015-03-20 13:56:04 +00:00
|
|
|
- if (gss) {
|
|
|
|
- debug("Offering GSSAPI proposal: %s", gss);
|
2019-04-26 15:42:30 +00:00
|
|
|
- xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
|
2015-03-20 13:56:04 +00:00
|
|
|
- "%s,%s", gss, orig);
|
2019-04-26 15:42:30 +00:00
|
|
|
-
|
|
|
|
- /* If we've got GSSAPI algorithms, then we also support the
|
|
|
|
- * 'null' hostkey, as a last resort */
|
|
|
|
- orig = myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS];
|
|
|
|
- xasprintf(&myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS],
|
|
|
|
- "%s,null", orig);
|
2014-07-09 19:16:53 +00:00
|
|
|
+ if (FIPS_mode()) {
|
|
|
|
+ logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
|
|
|
|
+ options.gss_keyex = 0;
|
|
|
|
+ } else {
|
|
|
|
+ /* Add the GSSAPI mechanisms currently supported on this
|
|
|
|
+ * client to the key exchange algorithm proposal */
|
2019-04-26 15:42:30 +00:00
|
|
|
+ orig = myproposal[PROPOSAL_KEX_ALGS];
|
2015-03-20 13:56:04 +00:00
|
|
|
+
|
2020-03-16 18:26:01 +00:00
|
|
|
+ if (options.gss_server_identity) {
|
2019-04-26 15:42:30 +00:00
|
|
|
+ gss_host = xstrdup(options.gss_server_identity);
|
2020-03-16 18:26:01 +00:00
|
|
|
+ } else if (options.gss_trust_dns) {
|
2019-04-26 15:42:30 +00:00
|
|
|
+ gss_host = remote_hostname(ssh);
|
2020-03-16 18:26:01 +00:00
|
|
|
+ /* Fall back to specified host if we are using proxy command
|
|
|
|
+ * and can not use DNS on that socket */
|
|
|
|
+ if (strcmp(gss_host, "UNKNOWN") == 0) {
|
|
|
|
+ free(gss_host);
|
|
|
|
+ gss_host = xstrdup(host);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
2019-04-26 15:42:30 +00:00
|
|
|
+ gss_host = xstrdup(host);
|
2020-03-16 18:26:01 +00:00
|
|
|
+ }
|
2015-03-20 13:56:04 +00:00
|
|
|
+
|
2015-08-19 11:14:20 +00:00
|
|
|
+ gss = ssh_gssapi_client_mechanisms(gss_host,
|
|
|
|
+ options.gss_client_identity, options.gss_kex_algorithms);
|
2014-07-09 19:16:53 +00:00
|
|
|
+ if (gss) {
|
|
|
|
+ debug("Offering GSSAPI proposal: %s", gss);
|
2019-04-26 15:42:30 +00:00
|
|
|
+ xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
|
2014-07-09 19:16:53 +00:00
|
|
|
+ "%s,%s", gss, orig);
|
2019-04-26 15:42:30 +00:00
|
|
|
+
|
|
|
|
+ /* If we've got GSSAPI algorithms, then we also support the
|
|
|
|
+ * 'null' hostkey, as a last resort */
|
|
|
|
+ orig = myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS];
|
|
|
|
+ xasprintf(&myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS],
|
|
|
|
+ "%s,null", orig);
|
2014-07-09 19:16:53 +00:00
|
|
|
+ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/sshd.c.fips openssh-8.0p1/sshd.c
|
|
|
|
--- openssh-8.0p1/sshd.c.fips 2019-07-23 14:55:45.398526371 +0200
|
|
|
|
+++ openssh-8.0p1/sshd.c 2019-07-23 14:55:45.403526421 +0200
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -66,6 +66,7 @@
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
+#include <syslog.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-03-24 09:40:08 +00:00
|
|
|
@@ -77,6 +78,7 @@
|
2014-07-09 19:16:53 +00:00
|
|
|
#include <openssl/dh.h>
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/rand.h>
|
2019-03-21 16:02:28 +00:00
|
|
|
+#include <openssl/crypto.h>
|
2014-07-09 19:16:53 +00:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
2015-01-20 12:18:45 +00:00
|
|
|
#endif
|
2014-07-09 19:16:53 +00:00
|
|
|
|
2020-03-24 09:40:08 +00:00
|
|
|
@@ -1529,6 +1532,7 @@ main(int ac, char **av)
|
2014-07-09 19:16:53 +00:00
|
|
|
#endif
|
|
|
|
__progname = ssh_get_progname(av[0]);
|
|
|
|
|
2018-10-12 13:54:56 +00:00
|
|
|
+ OpenSSL_add_all_algorithms();
|
2014-07-09 19:16:53 +00:00
|
|
|
/* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
|
|
|
|
saved_argc = ac;
|
|
|
|
rexec_argc = ac;
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -1992,6 +2007,10 @@ main(int ac, char **av)
|
2014-07-09 19:16:53 +00:00
|
|
|
/* Reinitialize the log (because of the fork above). */
|
|
|
|
log_init(__progname, options.log_level, options.log_facility, log_stderr);
|
|
|
|
|
|
|
|
+ if (FIPS_mode()) {
|
2020-02-17 13:30:49 +00:00
|
|
|
+ debug("FIPS mode initialized");
|
2014-07-09 19:16:53 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
/* Chdir to the root directory so that the current disk can be
|
|
|
|
unmounted if desired. */
|
|
|
|
if (chdir("/") == -1)
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -2382,10 +2401,14 @@ do_ssh2_kex(struct ssh *ssh)
|
2014-07-09 19:16:53 +00:00
|
|
|
if (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]) == 0)
|
|
|
|
orig = NULL;
|
|
|
|
|
|
|
|
- if (options.gss_keyex)
|
|
|
|
- gss = ssh_gssapi_server_mechanisms();
|
|
|
|
- else
|
|
|
|
- gss = NULL;
|
|
|
|
+ if (options.gss_keyex) {
|
|
|
|
+ if (FIPS_mode()) {
|
|
|
|
+ logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
|
|
|
|
+ options.gss_keyex = 0;
|
|
|
|
+ } else {
|
|
|
|
+ gss = ssh_gssapi_server_mechanisms();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
|
|
if (gss && orig)
|
|
|
|
xasprintf(&newstr, "%s,%s", gss, orig);
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/sshkey.c.fips openssh-8.0p1/sshkey.c
|
|
|
|
--- openssh-8.0p1/sshkey.c.fips 2019-07-23 14:55:45.398526371 +0200
|
|
|
|
+++ openssh-8.0p1/sshkey.c 2019-07-23 14:55:45.404526431 +0200
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -34,6 +34,7 @@
|
2015-01-20 12:18:45 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/pem.h>
|
2019-03-21 16:02:28 +00:00
|
|
|
+#include <openssl/crypto.h>
|
2015-03-20 13:56:04 +00:00
|
|
|
#endif
|
2015-01-20 12:18:45 +00:00
|
|
|
|
|
|
|
#include "crypto_api.h"
|
2018-08-08 08:17:43 +00:00
|
|
|
@@ -57,6 +58,7 @@
|
2019-10-09 08:24:21 +00:00
|
|
|
#define SSHKEY_INTERNAL
|
2016-06-03 10:40:12 +00:00
|
|
|
#include "sshkey.h"
|
|
|
|
#include "match.h"
|
2017-06-30 10:18:02 +00:00
|
|
|
+#include "log.h"
|
2020-02-17 10:57:13 +00:00
|
|
|
#include "ssh-sk.h"
|
2016-06-03 10:40:12 +00:00
|
|
|
|
2019-10-09 08:24:21 +00:00
|
|
|
#ifdef WITH_XMSS
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -1591,6 +1593,8 @@ rsa_generate_private_key(u_int bits, RSA
|
2015-01-20 12:18:45 +00:00
|
|
|
}
|
|
|
|
if (!BN_set_word(f4, RSA_F4) ||
|
|
|
|
!RSA_generate_key_ex(private, bits, f4, NULL)) {
|
|
|
|
+ if (FIPS_mode())
|
2021-02-23 23:22:49 +00:00
|
|
|
+ logit_f("the key length might be unsupported by FIPS mode approved key generation method");
|
2015-01-20 12:18:45 +00:00
|
|
|
ret = SSH_ERR_LIBCRYPTO_ERROR;
|
|
|
|
goto out;
|
|
|
|
}
|
2019-07-23 13:00:45 +00:00
|
|
|
diff -up openssh-8.0p1/ssh-keygen.c.fips openssh-8.0p1/ssh-keygen.c
|
|
|
|
--- openssh-8.0p1/ssh-keygen.c.fips 2019-07-23 14:55:45.391526300 +0200
|
|
|
|
+++ openssh-8.0p1/ssh-keygen.c 2019-07-23 14:57:54.118830056 +0200
|
|
|
|
@@ -199,6 +199,12 @@ type_bits_valid(int type, const char *na
|
2019-10-09 08:24:21 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#ifdef WITH_OPENSSL
|
2017-06-30 10:18:02 +00:00
|
|
|
+ if (FIPS_mode()) {
|
|
|
|
+ if (type == KEY_DSA)
|
|
|
|
+ fatal("DSA keys are not allowed in FIPS mode");
|
|
|
|
+ if (type == KEY_ED25519)
|
|
|
|
+ fatal("ED25519 keys are not allowed in FIPS mode");
|
|
|
|
+ }
|
2017-09-26 12:04:45 +00:00
|
|
|
switch (type) {
|
|
|
|
case KEY_DSA:
|
|
|
|
if (*bitsp != 1024)
|
2019-07-23 13:00:45 +00:00
|
|
|
@@ -1029,9 +1035,17 @@ do_gen_all_hostkeys(struct passwd *pw)
|
|
|
|
first = 1;
|
|
|
|
printf("%s: generating new host keys: ", __progname);
|
|
|
|
}
|
|
|
|
+ type = sshkey_type_from_name(key_types[i].key_type);
|
|
|
|
+
|
|
|
|
+ /* Skip the keys that are not supported in FIPS mode */
|
|
|
|
+ if (FIPS_mode() && (type == KEY_DSA || type == KEY_ED25519)) {
|
|
|
|
+ logit("Skipping %s key in FIPS mode",
|
|
|
|
+ key_types[i].key_type_display);
|
|
|
|
+ goto next;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
printf("%s ", key_types[i].key_type_display);
|
|
|
|
fflush(stdout);
|
|
|
|
- type = sshkey_type_from_name(key_types[i].key_type);
|
|
|
|
if ((fd = mkstemp(prv_tmp)) == -1) {
|
2020-05-27 07:57:29 +00:00
|
|
|
error("Could not save your private key in %s: %s",
|
|
|
|
prv_tmp, strerror(errno));
|