vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Petr Lautrbach 802815
diff --git a/Makefile.in b/Makefile.in
Petr Lautrbach 190035
index 9311e16..1eb2b45 100644
Petr Lautrbach 802815
--- a/Makefile.in
Petr Lautrbach 802815
+++ b/Makefile.in
Petr Lautrbach 190035
@@ -164,25 +164,25 @@ libssh.a: $(LIBSSH_OBJS)
Petr Lautrbach 802815
 	$(RANLIB) $@
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
Petr Lautrbach 802815
-	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHLIBS) $(LIBS) $(GSSLIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 sshd$(EXEEXT): libssh.a	$(LIBCOMPAT) $(SSHDOBJS)
Petr Lautrbach 802815
-	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o
Petr Lautrbach 802815
 	$(LD) -o $@ scp.o progressmeter.o bufaux.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
Petr Lautrbach 802815
-	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o ssh-pkcs11-client.o
Petr Lautrbach 802815
-	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
Petr Lautrbach 802815
-	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o roaming_dummy.o readconf.o
Petr Lautrbach 802815
-	$(LD) -o $@ ssh-keysign.o readconf.o roaming_dummy.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ ssh-keysign.o readconf.o roaming_dummy.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-pkcs11-helper$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-pkcs11-helper.o ssh-pkcs11.o
Petr Lautrbach 802815
 	$(LD) -o $@ ssh-pkcs11-helper.o ssh-pkcs11.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 190035
@@ -197,7 +197,7 @@ ctr-cavstest$(EXEEXT): $(LIBCOMPAT) libssh.a ctr-cavstest.o
Petr Lautrbach 802815
 	$(LD) -o $@ ctr-cavstest.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o roaming_dummy.o
Petr Lautrbach 802815
-	$(LD) -o $@ ssh-keyscan.o roaming_dummy.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
Petr Lautrbach 802815
+	$(LD) -o $@ ssh-keyscan.o roaming_dummy.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lfipscheck $(LIBS)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o sftp-server-main.o
Petr Lautrbach 802815
 	$(LD) -o $@ sftp-server.o sftp-common.o sftp-server-main.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Petr Lautrbach 802815
diff --git a/cipher-ctr.c b/cipher-ctr.c
Petr Lautrbach 802815
index 73e9c7c..40ee395 100644
Petr Lautrbach 802815
--- a/cipher-ctr.c
Petr Lautrbach 802815
+++ b/cipher-ctr.c
Petr Lautrbach 802815
@@ -179,7 +179,8 @@ evp_aes_128_ctr(void)
Petr Lautrbach 802815
 	aes_ctr.do_cipher = ssh_aes_ctr;
Petr Lautrbach 802815
 #ifndef SSH_OLD_EVP
Petr Lautrbach 802815
 	aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
Petr Lautrbach 802815
-	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
Petr Lautrbach 802815
+	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV |
Petr Lautrbach 802815
+	    EVP_CIPH_FLAG_FIPS;
Petr Lautrbach 802815
 #endif
Petr Lautrbach 802815
 	return (&aes_ctr);
Petr Lautrbach 802815
 }
Petr Lautrbach 802815
diff --git a/cipher.c b/cipher.c
Petr Lautrbach 190035
index 9cc7cf8..5ebfa84 100644
Petr Lautrbach 802815
--- a/cipher.c
Petr Lautrbach 802815
+++ b/cipher.c
Petr Lautrbach 802815
@@ -39,6 +39,8 @@
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include <sys/types.h>
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 #include <string.h>
Petr Lautrbach 802815
 #include <stdarg.h>
Petr Lautrbach 802815
 #include <stdio.h>
Petr Lautrbach 190035
@@ -99,6 +101,26 @@ static const struct sshcipher ciphers[] = {
Petr Lautrbach 802815
 	{ NULL,		SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
Petr Lautrbach 802815
 };
Petr Lautrbach 802815
 
Petr Lautrbach 190035
+static const struct sshcipher fips_ciphers[] = {
Petr Lautrbach 802815
+	{ "none",	SSH_CIPHER_NONE, 8, 0, 0, 0, 0, 0, EVP_enc_null },
Petr Lautrbach 802815
+	{ "3des-cbc",	SSH_CIPHER_SSH2, 8, 24, 0, 0, 0, 1, EVP_des_ede3_cbc },
Petr Lautrbach 802815
+	{ "aes128-cbc",	SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 1, EVP_aes_128_cbc },
Petr Lautrbach 802815
+	{ "aes192-cbc",	SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 1, EVP_aes_192_cbc },
Petr Lautrbach 802815
+	{ "aes256-cbc",	SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
Petr Lautrbach 802815
+	{ "rijndael-cbc@lysator.liu.se",
Petr Lautrbach 802815
+			SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
Petr Lautrbach 802815
+	{ "aes128-ctr",	SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 0, EVP_aes_128_ctr },
Petr Lautrbach 802815
+	{ "aes192-ctr",	SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 0, EVP_aes_192_ctr },
Petr Lautrbach 802815
+	{ "aes256-ctr",	SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 0, EVP_aes_256_ctr },
Petr Lautrbach 802815
+#ifdef OPENSSL_HAVE_EVPGCM
Petr Lautrbach 802815
+	{ "aes128-gcm@openssh.com",
Petr Lautrbach 802815
+			SSH_CIPHER_SSH2, 16, 16, 12, 16, 0, 0, EVP_aes_128_gcm },
Petr Lautrbach 802815
+	{ "aes256-gcm@openssh.com",
Petr Lautrbach 802815
+			SSH_CIPHER_SSH2, 16, 32, 12, 16, 0, 0, EVP_aes_256_gcm },
Petr Lautrbach 802815
+#endif
Petr Lautrbach 802815
+	{ NULL,		SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
Petr Lautrbach 802815
+};
Petr Lautrbach 190035
+
Petr Lautrbach 802815
 /*--*/
Petr Lautrbach 802815
 
Petr Lautrbach 190035
 /* Returns a comma-separated list of supported ciphers. */
Petr Lautrbach 190035
@@ -109,7 +131,7 @@ cipher_alg_list(char sep, int auth_only)
Petr Lautrbach 802815
 	size_t nlen, rlen = 0;
Petr Lautrbach 190035
 	const struct sshcipher *c;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-	for (c = ciphers; c->name != NULL; c++) {
Petr Lautrbach 802815
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++) {
Petr Lautrbach 802815
 		if (c->number != SSH_CIPHER_SSH2)
Petr Lautrbach 802815
 			continue;
Petr Lautrbach 802815
 		if (auth_only && c->auth_len == 0)
Petr Lautrbach 190035
@@ -193,7 +215,7 @@ const struct sshcipher *
Petr Lautrbach 802815
 cipher_by_name(const char *name)
Petr Lautrbach 802815
 {
Petr Lautrbach 190035
 	const struct sshcipher *c;
Petr Lautrbach 802815
-	for (c = ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
 		if (strcmp(c->name, name) == 0)
Petr Lautrbach 802815
 			return c;
Petr Lautrbach 802815
 	return NULL;
Petr Lautrbach 190035
@@ -203,7 +225,7 @@ const struct sshcipher *
Petr Lautrbach 802815
 cipher_by_number(int id)
Petr Lautrbach 802815
 {
Petr Lautrbach 190035
 	const struct sshcipher *c;
Petr Lautrbach 802815
-	for (c = ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
 		if (c->number == id)
Petr Lautrbach 802815
 			return c;
Petr Lautrbach 802815
 	return NULL;
Petr Lautrbach 190035
@@ -244,7 +266,7 @@ cipher_number(const char *name)
Petr Lautrbach 190035
 	const struct sshcipher *c;
Petr Lautrbach 802815
 	if (name == NULL)
Petr Lautrbach 802815
 		return -1;
Petr Lautrbach 802815
-	for (c = ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
Petr Lautrbach 802815
 		if (strcasecmp(c->name, name) == 0)
Petr Lautrbach 802815
 			return c->number;
Petr Lautrbach 802815
 	return -1;
Petr Lautrbach 802815
diff --git a/dh.h b/dh.h
Petr Lautrbach 802815
index 48f7b68..9ff39f4 100644
Petr Lautrbach 802815
--- a/dh.h
Petr Lautrbach 802815
+++ b/dh.h
Petr Lautrbach 802815
@@ -45,6 +45,7 @@ int	 dh_estimate(int);
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 /* Min and max values from RFC4419. */
Petr Lautrbach 802815
 #define DH_GRP_MIN	1024
Petr Lautrbach 802815
+#define DH_GRP_MIN_FIPS	2048
Petr Lautrbach 802815
 #define DH_GRP_MAX	8192
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 /*
Petr Lautrbach 802815
diff --git a/entropy.c b/entropy.c
Petr Lautrbach 190035
index d24e724..06b0095 100644
Petr Lautrbach 802815
--- a/entropy.c
Petr Lautrbach 802815
+++ b/entropy.c
Petr Lautrbach 190035
@@ -215,6 +215,9 @@ seed_rng(void)
Petr Lautrbach 802815
 		fatal("OpenSSL version mismatch. Built against %lx, you "
Petr Lautrbach 802815
 		    "have %lx", (u_long)OPENSSL_VERSION_NUMBER, SSLeay());
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+	/* clean the PRNG status when exiting the program */
Petr Lautrbach 802815
+	atexit(RAND_cleanup);
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 #ifndef OPENSSL_PRNG_ONLY
Petr Lautrbach 802815
 	if (RAND_status() == 1) {
Petr Lautrbach 802815
 		debug3("RNG is ready, skipping seeding");
Petr Lautrbach 802815
diff --git a/kex.c b/kex.c
Petr Lautrbach 190035
index e0cf3de..e11198f 100644
Petr Lautrbach 802815
--- a/kex.c
Petr Lautrbach 802815
+++ b/kex.c
Petr Lautrbach 190035
@@ -35,6 +35,7 @@
Petr Lautrbach 802815
 
Petr Lautrbach 190035
 #ifdef WITH_OPENSSL
Petr Lautrbach 802815
 #include <openssl/crypto.h>
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 190035
 #endif
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include "xmalloc.h"
Petr Lautrbach 190035
@@ -107,6 +108,25 @@ static const struct kexalg kexalgs[] = {
Petr Lautrbach 802815
 	{ NULL, -1, -1, -1},
Petr Lautrbach 802815
 };
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+static const struct kexalg kexalgs_fips[] = {
Petr Lautrbach 802815
+	{ KEX_DH14, KEX_DH_GRP14_SHA1, 0, SSH_DIGEST_SHA1 },
Petr Lautrbach 802815
+	{ KEX_DHGEX_SHA1, KEX_DH_GEX_SHA1, 0, SSH_DIGEST_SHA1 },
Petr Lautrbach 802815
+#ifdef HAVE_EVP_SHA256
Petr Lautrbach 802815
+	{ KEX_DHGEX_SHA256, KEX_DH_GEX_SHA256, 0, SSH_DIGEST_SHA256 },
Petr Lautrbach 802815
+#endif
Petr Lautrbach 802815
+#ifdef OPENSSL_HAS_ECC
Petr Lautrbach 802815
+	{ KEX_ECDH_SHA2_NISTP256, KEX_ECDH_SHA2,
Petr Lautrbach 802815
+	    NID_X9_62_prime256v1, SSH_DIGEST_SHA256 },
Petr Lautrbach 802815
+	{ KEX_ECDH_SHA2_NISTP384, KEX_ECDH_SHA2, NID_secp384r1,
Petr Lautrbach 802815
+	    SSH_DIGEST_SHA384 },
Petr Lautrbach 802815
+# ifdef OPENSSL_HAS_NISTP521
Petr Lautrbach 802815
+	{ KEX_ECDH_SHA2_NISTP521, KEX_ECDH_SHA2, NID_secp521r1,
Petr Lautrbach 802815
+	    SSH_DIGEST_SHA512 },
Petr Lautrbach 802815
+# endif
Petr Lautrbach 802815
+#endif
Jakub Jelen 580f98
+	{ NULL, -1, -1, -1},
Petr Lautrbach 802815
+};
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 char *
Petr Lautrbach 802815
 kex_alg_list(char sep)
Petr Lautrbach 802815
 {
Petr Lautrbach 190035
@@ -130,7 +150,7 @@ kex_alg_by_name(const char *name)
Petr Lautrbach 802815
 {
Petr Lautrbach 802815
 	const struct kexalg *k;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-	for (k = kexalgs; k->name != NULL; k++) {
Petr Lautrbach 802815
+	for (k = (FIPS_mode() ? kexalgs_fips : kexalgs); k->name != NULL; k++) {
Petr Lautrbach 802815
 		if (strcmp(k->name, name) == 0)
Petr Lautrbach 802815
 			return k;
Petr Lautrbach 802815
 #ifdef GSSAPI
Petr Lautrbach 190035
@@ -155,7 +175,10 @@ kex_names_valid(const char *names)
Petr Lautrbach 802815
 	for ((p = strsep(&cp, ",")); p && *p != '\0';
Petr Lautrbach 802815
 	    (p = strsep(&cp, ","))) {
Petr Lautrbach 802815
 		if (kex_alg_by_name(p) == NULL) {
Petr Lautrbach 802815
-			error("Unsupported KEX algorithm \"%.100s\"", p);
Petr Lautrbach 802815
+			if (FIPS_mode())
Petr Lautrbach 802815
+				error("\"%.100s\" is not allowed in FIPS mode", p);
Petr Lautrbach 802815
+			else
Petr Lautrbach 802815
+				error("Unsupported KEX algorithm \"%.100s\"", p);
Petr Lautrbach 802815
 			free(s);
Petr Lautrbach 802815
 			return 0;
Petr Lautrbach 802815
 		}
Petr Lautrbach 802815
diff --git a/kexecdhc.c b/kexecdhc.c
Petr Lautrbach 802815
index 2f7629c..20c9946 100644
Petr Lautrbach 802815
--- a/kexecdhc.c
Petr Lautrbach 802815
+++ b/kexecdhc.c
Petr Lautrbach 802815
@@ -154,6 +154,7 @@ kexecdh_client(Kex *kex)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	kex_derive_keys_bn(kex, hash, hashlen, shared_secret);
Petr Lautrbach 802815
 	BN_clear_free(shared_secret);
Petr Lautrbach 802815
+	memset(hash, 0, hashlen);
Petr Lautrbach 802815
 	kex_finish(kex);
Petr Lautrbach 802815
 }
Petr Lautrbach 802815
 #else /* OPENSSL_HAS_ECC */
Petr Lautrbach 802815
diff --git a/kexecdhs.c b/kexecdhs.c
Petr Lautrbach 802815
index 2700b72..0820894 100644
Petr Lautrbach 802815
--- a/kexecdhs.c
Petr Lautrbach 802815
+++ b/kexecdhs.c
Petr Lautrbach 802815
@@ -150,6 +150,7 @@ kexecdh_server(Kex *kex)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	kex_derive_keys_bn(kex, hash, hashlen, shared_secret);
Petr Lautrbach 802815
 	BN_clear_free(shared_secret);
Petr Lautrbach 802815
+	memset(hash, 0, hashlen);
Petr Lautrbach 802815
 	kex_finish(kex);
Petr Lautrbach 802815
 }
Petr Lautrbach 802815
 #else /* OPENSSL_HAS_ECC */
Petr Lautrbach 802815
diff --git a/kexgexc.c b/kexgexc.c
Petr Lautrbach 190035
index 0a91bdd..b75930b 100644
Petr Lautrbach 802815
--- a/kexgexc.c
Petr Lautrbach 802815
+++ b/kexgexc.c
Petr Lautrbach 802815
@@ -26,6 +26,8 @@
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include "includes.h"
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 #include <sys/types.h>
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include <openssl/dh.h>
Petr Lautrbach 08fe9e
@@ -58,7 +60,7 @@ kexgex_client(Kex *kex)
Petr Lautrbach 08fe9e
 	int min, max, nbits;
Petr Lautrbach 08fe9e
 	DH *dh;
Petr Lautrbach 08fe9e
 
Petr Lautrbach 08fe9e
-	min = DH_GRP_MIN;
Petr Lautrbach 08fe9e
+	min = FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN;
Petr Lautrbach 08fe9e
 	max = DH_GRP_MAX;
Petr Lautrbach 08fe9e
 
Petr Lautrbach 08fe9e
 	/* Servers with MAX4096DH need a preferred size (nbits) <= 4096.
Petr Lautrbach 802815
diff --git a/kexgexs.c b/kexgexs.c
Petr Lautrbach 802815
index 770ad28..9d4fc6d 100644
Petr Lautrbach 802815
--- a/kexgexs.c
Petr Lautrbach 802815
+++ b/kexgexs.c
Petr Lautrbach 802815
@@ -76,16 +76,16 @@ kexgex_server(Kex *kex)
Petr Lautrbach 802815
 		omin = min = packet_get_int();
Petr Lautrbach 802815
 		onbits = nbits = packet_get_int();
Petr Lautrbach 802815
 		omax = max = packet_get_int();
Petr Lautrbach 802815
-		min = MAX(DH_GRP_MIN, min);
Petr Lautrbach 802815
+		min = MAX(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, min);
Petr Lautrbach 802815
 		max = MIN(DH_GRP_MAX, max);
Petr Lautrbach 802815
-		nbits = MAX(DH_GRP_MIN, nbits);
Petr Lautrbach 802815
+		nbits = MAX(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, nbits);
Petr Lautrbach 802815
 		nbits = MIN(DH_GRP_MAX, nbits);
Petr Lautrbach 802815
 		break;
Petr Lautrbach 802815
 	case SSH2_MSG_KEX_DH_GEX_REQUEST_OLD:
Petr Lautrbach 802815
 		debug("SSH2_MSG_KEX_DH_GEX_REQUEST_OLD received");
Petr Lautrbach 802815
 		onbits = nbits = packet_get_int();
Petr Lautrbach 802815
 		/* unused for old GEX */
Petr Lautrbach 802815
-		omin = min = DH_GRP_MIN;
Petr Lautrbach 802815
+		omin = min = FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN;
Petr Lautrbach 802815
 		omax = max = DH_GRP_MAX;
Petr Lautrbach 802815
 		break;
Petr Lautrbach 802815
 	default:
Petr Lautrbach 802815
diff --git a/mac.c b/mac.c
Petr Lautrbach 190035
index fd07bf2..fedfbb2 100644
Petr Lautrbach 802815
--- a/mac.c
Petr Lautrbach 802815
+++ b/mac.c
Petr Lautrbach 802815
@@ -27,6 +27,8 @@
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include <sys/types.h>
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 #include <stdarg.h>
Petr Lautrbach 802815
 #include <string.h>
Petr Lautrbach 802815
 #include <signal.h>
Petr Lautrbach 802815
@@ -60,7 +62,7 @@ struct macalg {
Petr Lautrbach 802815
 	int		etm;		/* Encrypt-then-MAC */
Petr Lautrbach 802815
 };
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-static const struct macalg macs[] = {
Petr Lautrbach 802815
+static const struct macalg all_macs[] = {
Petr Lautrbach 802815
 	/* Encrypt-and-MAC (encrypt-and-authenticate) variants */
Petr Lautrbach 802815
 	{ "hmac-sha1",				SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
Petr Lautrbach 802815
 	{ "hmac-sha1-96",			SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 },
Petr Lautrbach 802815
@@ -91,6 +93,24 @@ static const struct macalg macs[] = {
Petr Lautrbach 802815
 	{ NULL,					0, 0, 0, 0, 0, 0 }
Petr Lautrbach 802815
 };
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+static const struct macalg fips_macs[] = {
Petr Lautrbach 802815
+	/* Encrypt-and-MAC (encrypt-and-authenticate) variants */
Petr Lautrbach 802815
+	{ "hmac-sha1",				SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
Petr Lautrbach 802815
+#ifdef HAVE_EVP_SHA256
Petr Lautrbach 802815
+	{ "hmac-sha2-256",			SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 0 },
Petr Lautrbach 802815
+	{ "hmac-sha2-512",			SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 0 },
Petr Lautrbach 802815
+#endif
Petr Lautrbach 802815
+
Petr Lautrbach 802815
+	/* Encrypt-then-MAC variants */
Petr Lautrbach 802815
+	{ "hmac-sha1-etm@openssh.com",		SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 },
Petr Lautrbach 802815
+#ifdef HAVE_EVP_SHA256
Petr Lautrbach 802815
+	{ "hmac-sha2-256-etm@openssh.com",	SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 },
Petr Lautrbach 802815
+	{ "hmac-sha2-512-etm@openssh.com",	SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 },
Petr Lautrbach 802815
+#endif
Petr Lautrbach 802815
+
Petr Lautrbach 802815
+	{ NULL,					0, 0, 0, 0, 0, 0 }
Petr Lautrbach 802815
+};
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 /* Returns a list of supported MACs separated by the specified char. */
Petr Lautrbach 802815
 char *
Petr Lautrbach 802815
 mac_alg_list(char sep)
Petr Lautrbach 802815
@@ -99,7 +119,7 @@ mac_alg_list(char sep)
Petr Lautrbach 802815
 	size_t nlen, rlen = 0;
Petr Lautrbach 802815
 	const struct macalg *m;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-	for (m = macs; m->name != NULL; m++) {
Petr Lautrbach 802815
+	for (m = FIPS_mode() ? fips_macs : all_macs; m->name != NULL; m++) {
Petr Lautrbach 802815
 		if (ret != NULL)
Petr Lautrbach 802815
 			ret[rlen++] = sep;
Petr Lautrbach 802815
 		nlen = strlen(m->name);
Petr Lautrbach 802815
@@ -133,7 +153,7 @@ mac_setup(Mac *mac, char *name)
Petr Lautrbach 802815
 {
Petr Lautrbach 802815
 	const struct macalg *m;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-	for (m = macs; m->name != NULL; m++) {
Petr Lautrbach 802815
+	for (m = FIPS_mode() ? fips_macs : all_macs; m->name != NULL; m++) {
Petr Lautrbach 802815
 		if (strcmp(name, m->name) != 0)
Petr Lautrbach 802815
 			continue;
Petr Lautrbach 802815
 		if (mac != NULL) {
Petr Lautrbach 802815
diff --git a/myproposal.h b/myproposal.h
Petr Lautrbach 190035
index b35b2b8..a608d27 100644
Petr Lautrbach 802815
--- a/myproposal.h
Petr Lautrbach 802815
+++ b/myproposal.h
Petr Lautrbach 190035
@@ -140,6 +140,28 @@
Petr Lautrbach 190035
 	"hmac-sha1-96," \
Petr Lautrbach 190035
 	"hmac-md5-96"
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#define KEX_DEFAULT_KEX_FIPS		\
Petr Lautrbach 802815
+	KEX_ECDH_METHODS \
Petr Lautrbach 802815
+	KEX_SHA256_METHODS \
Petr Lautrbach 802815
+	"diffie-hellman-group-exchange-sha1," \
Petr Lautrbach 802815
+	"diffie-hellman-group14-sha1"
Petr Lautrbach 802815
+#define	KEX_FIPS_ENCRYPT \
Petr Lautrbach 802815
+	"aes128-ctr,aes192-ctr,aes256-ctr," \
Petr Lautrbach 802815
+	"aes128-cbc,3des-cbc," \
Petr Lautrbach 802815
+	"aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se"
Petr Lautrbach 802815
+#ifdef HAVE_EVP_SHA256
Petr Lautrbach 802815
+#define	KEX_FIPS_MAC \
Petr Lautrbach 802815
+	"hmac-sha1," \
Petr Lautrbach 802815
+	"hmac-sha2-256," \
Petr Lautrbach 802815
+	"hmac-sha2-512," \
Petr Lautrbach 802815
+	"hmac-sha1-etm@openssh.com," \
Petr Lautrbach 802815
+	"hmac-sha2-256-etm@openssh.com," \
Petr Lautrbach 802815
+	"hmac-sha2-512-etm@openssh.com"
Petr Lautrbach 802815
+#else
Petr Lautrbach 802815
+#define        KEX_FIPS_MAC \
Petr Lautrbach 802815
+       "hmac-sha1"
Petr Lautrbach 802815
+#endif
Petr Lautrbach 190035
+
Petr Lautrbach 190035
 #else
Petr Lautrbach 802815
 
Petr Lautrbach 190035
 #define KEX_SERVER_KEX		\
Petr Lautrbach 802815
diff --git a/ssh.c b/ssh.c
Petr Lautrbach 190035
index 26e9681..a0a7c29 100644
Petr Lautrbach 802815
--- a/ssh.c
Petr Lautrbach 802815
+++ b/ssh.c
Petr Lautrbach 190035
@@ -75,6 +75,8 @@
Petr Lautrbach 802815
 #include <openssl/evp.h>
Petr Lautrbach 802815
 #include <openssl/err.h>
Petr Lautrbach 190035
 #endif
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+#include <fipscheck.h>
Petr Lautrbach 802815
 #include "openbsd-compat/openssl-compat.h"
Petr Lautrbach 802815
 #include "openbsd-compat/sys-queue.h"
Petr Lautrbach 802815
 
Jakub Jelen 580f98
@@ -433,6 +435,14 @@ main(int ac, char **av)
Petr Lautrbach 802815
 	sanitise_stdfd();
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	__progname = ssh_get_progname(av[0]);
Petr Lautrbach 802815
+        SSLeay_add_all_algorithms();
Petr Lautrbach 802815
+	if (access("/etc/system-fips", F_OK) == 0)
Jakub Jelen 580f98
+		if (! FIPSCHECK_verify(NULL, NULL)){
Petr Lautrbach 802815
+			if (FIPS_mode())
Petr Lautrbach 802815
+				fatal("FIPS integrity verification test failed.");
Petr Lautrbach 802815
+			else
Petr Lautrbach 802815
+				logit("FIPS integrity verification test failed.");
Jakub Jelen 580f98
+	}
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #ifndef HAVE_SETPROCTITLE
Petr Lautrbach 802815
 	/* Prepare for later setproctitle emulation */
Petr Lautrbach 190035
@@ -510,6 +519,9 @@ main(int ac, char **av)
Petr Lautrbach 802815
 	    "ACD:E:F:I:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Petr Lautrbach 802815
 		switch (opt) {
Petr Lautrbach 802815
 		case '1':
Petr Lautrbach 802815
+			if (FIPS_mode()) {
Petr Lautrbach 802815
+				fatal("Protocol 1 not allowed in the FIPS mode.");
Petr Lautrbach 802815
+			}
Petr Lautrbach 802815
 			options.protocol = SSH_PROTO_1;
Petr Lautrbach 802815
 			break;
Petr Lautrbach 802815
 		case '2':
Petr Lautrbach 190035
@@ -841,7 +853,6 @@ main(int ac, char **av)
Petr Lautrbach 802815
 	host_arg = xstrdup(host);
Petr Lautrbach 802815
 
Petr Lautrbach 190035
 #ifdef WITH_OPENSSL
Petr Lautrbach 802815
-	OpenSSL_add_all_algorithms();
Petr Lautrbach 802815
 	ERR_load_crypto_strings();
Petr Lautrbach 190035
 #endif
Petr Lautrbach 802815
 
Petr Lautrbach 190035
@@ -997,6 +1008,10 @@ main(int ac, char **av)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	seed_rng();
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+	if (FIPS_mode()) {
Petr Lautrbach 802815
+		logit("FIPS mode initialized");
Petr Lautrbach 802815
+	}
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	if (options.user == NULL)
Petr Lautrbach 802815
 		options.user = xstrdup(pw->pw_name);
Petr Lautrbach 802815
 
Petr Lautrbach 190035
@@ -1069,6 +1084,12 @@ main(int ac, char **av)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	timeout_ms = options.connection_timeout * 1000;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+	if (FIPS_mode()) {
Petr Lautrbach 802815
+		options.protocol &= SSH_PROTO_2;
Petr Lautrbach 802815
+		if (options.protocol == 0)
Petr Lautrbach 802815
+			fatal("Protocol 2 disabled by configuration but required in the FIPS mode.");
Petr Lautrbach 802815
+	}
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	/* Open a connection to the remote host. */
Petr Lautrbach 802815
 	if (ssh_connect(host, addrs, &hostaddr, options.port,
Petr Lautrbach 802815
 	    options.address_family, options.connection_attempts,
Petr Lautrbach 802815
diff --git a/sshconnect2.c b/sshconnect2.c
Petr Lautrbach 190035
index efe6158..5631f39 100644
Petr Lautrbach 802815
--- a/sshconnect2.c
Petr Lautrbach 802815
+++ b/sshconnect2.c
Petr Lautrbach 190035
@@ -46,6 +46,8 @@
Petr Lautrbach 802815
 #include <vis.h>
Petr Lautrbach 802815
 #endif
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 #include "openbsd-compat/sys-queue.h"
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #include "xmalloc.h"
Petr Lautrbach 190035
@@ -171,20 +173,25 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 #ifdef GSSAPI
Petr Lautrbach 802815
 	if (options.gss_keyex) {
Petr Lautrbach 802815
-		/* Add the GSSAPI mechanisms currently supported on this 
Petr Lautrbach 802815
-		 * client to the key exchange algorithm proposal */
Petr Lautrbach 802815
-		orig = myproposal[PROPOSAL_KEX_ALGS];
Petr Lautrbach 802815
+		if (FIPS_mode()) {
Petr Lautrbach 802815
+			logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
Petr Lautrbach 802815
+			options.gss_keyex = 0;
Petr Lautrbach 802815
+		} else {
Petr Lautrbach 802815
+			/* Add the GSSAPI mechanisms currently supported on this
Petr Lautrbach 802815
+			 * client to the key exchange algorithm proposal */
Petr Lautrbach 802815
+			orig = myproposal[PROPOSAL_KEX_ALGS];
Petr Lautrbach 190035
 
Petr Lautrbach 190035
-		if (options.gss_trust_dns)
Petr Lautrbach 190035
-			gss_host = (char *)get_canonical_hostname(1);
Petr Lautrbach 190035
-		else
Petr Lautrbach 190035
-			gss_host = host;
Petr Lautrbach 802815
+			if (options.gss_trust_dns)
Petr Lautrbach 802815
+				gss_host = (char *)get_canonical_hostname(1);
Petr Lautrbach 802815
+			else
Petr Lautrbach 802815
+				gss_host = host;
Petr Lautrbach 190035
 
Petr Lautrbach 190035
-		gss = ssh_gssapi_client_mechanisms(gss_host, options.gss_client_identity);
Petr Lautrbach 190035
-		if (gss) {
Petr Lautrbach 190035
-			debug("Offering GSSAPI proposal: %s", gss);
Petr Lautrbach 190035
-			xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
Petr Lautrbach 190035
-			    "%s,%s", gss, orig);
Petr Lautrbach 802815
+			gss = ssh_gssapi_client_mechanisms(gss_host, options.gss_client_identity);
Petr Lautrbach 802815
+			if (gss) {
Petr Lautrbach 802815
+				debug("Offering GSSAPI proposal: %s", gss);
Petr Lautrbach 802815
+				xasprintf(&myproposal[PROPOSAL_KEX_ALGS],
Petr Lautrbach 802815
+				    "%s,%s", gss, orig);
Petr Lautrbach 802815
+			}
Petr Lautrbach 802815
 		}
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 #endif
Petr Lautrbach 190035
@@ -196,6 +203,10 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Petr Lautrbach 802815
 	if (options.ciphers != NULL) {
Petr Lautrbach 802815
 		myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
 		myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
Petr Lautrbach 802815
+	} else if (FIPS_mode()) {
Petr Lautrbach 802815
+		myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
+		myproposal[PROPOSAL_ENC_ALGS_STOC] = KEX_FIPS_ENCRYPT;
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 	myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
 	    compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
Petr Lautrbach 190035
@@ -211,7 +222,11 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Petr Lautrbach 802815
 	if (options.macs != NULL) {
Petr Lautrbach 802815
 		myproposal[PROPOSAL_MAC_ALGS_CTOS] =
Petr Lautrbach 802815
 		myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Petr Lautrbach 802815
+	} else if (FIPS_mode()) {
Petr Lautrbach 802815
+		myproposal[PROPOSAL_MAC_ALGS_CTOS] =
Petr Lautrbach 802815
+		myproposal[PROPOSAL_MAC_ALGS_STOC] = KEX_FIPS_MAC;
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	if (options.hostkeyalgorithms != NULL)
Petr Lautrbach 802815
 		myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
Petr Lautrbach 802815
 		    compat_pkalg_proposal(options.hostkeyalgorithms);
Petr Lautrbach 190035
@@ -223,9 +238,11 @@ ssh_kex2(char *host, struct sockaddr *hostaddr, u_short port)
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 	if (options.kex_algorithms != NULL)
Petr Lautrbach 802815
 		myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;
Petr Lautrbach 802815
+	else if (FIPS_mode())
Petr Lautrbach 802815
+		myproposal[PROPOSAL_KEX_ALGS] = KEX_DEFAULT_KEX_FIPS;
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
Petr Lautrbach 802815
 	    myproposal[PROPOSAL_KEX_ALGS]);
Petr Lautrbach 802815
-
Petr Lautrbach 802815
 #ifdef GSSAPI
Petr Lautrbach 802815
 	/* If we've got GSSAPI algorithms, then we also support the
Petr Lautrbach 802815
 	 * 'null' hostkey, as a last resort */
Petr Lautrbach 802815
diff --git a/sshd.c b/sshd.c
Petr Lautrbach 190035
index db23ce2..3ce59f0 100644
Petr Lautrbach 802815
--- a/sshd.c
Petr Lautrbach 802815
+++ b/sshd.c
Petr Lautrbach 190035
@@ -66,6 +66,7 @@
Petr Lautrbach 190035
 #include <grp.h>
Petr Lautrbach 190035
 #include <pwd.h>
Petr Lautrbach 190035
 #include <signal.h>
Petr Lautrbach 190035
+#include <syslog.h>
Petr Lautrbach 190035
 #include <stdarg.h>
Petr Lautrbach 190035
 #include <stdio.h>
Petr Lautrbach 190035
 #include <stdlib.h>
Petr Lautrbach 190035
@@ -76,6 +77,8 @@
Petr Lautrbach 802815
 #include <openssl/dh.h>
Petr Lautrbach 802815
 #include <openssl/bn.h>
Petr Lautrbach 802815
 #include <openssl/rand.h>
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 802815
+#include <fipscheck.h>
Petr Lautrbach 802815
 #include "openbsd-compat/openssl-compat.h"
Petr Lautrbach 190035
 #endif
Petr Lautrbach 802815
 
Petr Lautrbach 190035
@@ -1479,6 +1482,18 @@ main(int ac, char **av)
Petr Lautrbach 802815
 #endif
Petr Lautrbach 802815
 	__progname = ssh_get_progname(av[0]);
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+        SSLeay_add_all_algorithms();
Petr Lautrbach 802815
+	if (access("/etc/system-fips", F_OK) == 0)
Petr Lautrbach 802815
+		if (! FIPSCHECK_verify(NULL, NULL)) {
Petr Lautrbach 802815
+			openlog(__progname, LOG_PID, LOG_AUTHPRIV);
Petr Lautrbach 802815
+			if (FIPS_mode()) {
Petr Lautrbach 802815
+				syslog(LOG_CRIT, "FIPS integrity verification test failed.");
Petr Lautrbach 802815
+				cleanup_exit(255);
Petr Lautrbach 802815
+			}
Petr Lautrbach 802815
+			else
Petr Lautrbach 802815
+				syslog(LOG_INFO, "FIPS integrity verification test failed.");
Petr Lautrbach 802815
+			closelog();
Petr Lautrbach 802815
+		}
Petr Lautrbach 802815
 	/* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Petr Lautrbach 802815
 	saved_argc = ac;
Petr Lautrbach 802815
 	rexec_argc = ac;
Petr Lautrbach 190035
@@ -1630,7 +1645,7 @@ main(int ac, char **av)
Petr Lautrbach 802815
 	else
Petr Lautrbach 802815
 		closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
Petr Lautrbach 802815
 
Petr Lautrbach 190035
-#ifdef WITH_OPENSSL
Petr Lautrbach 190035
+#if 0 /* FIPS */
Petr Lautrbach 190035
 	OpenSSL_add_all_algorithms();
Petr Lautrbach 190035
 #endif
Petr Lautrbach 190035
 
Petr Lautrbach 190035
@@ -1816,6 +1831,10 @@ main(int ac, char **av)
Petr Lautrbach 802815
 		debug("private host key: #%d type %d %s", i, keytype,
Petr Lautrbach 802815
 		    key_type(key ? key : pubkey));
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
+	if ((options.protocol & SSH_PROTO_1) && FIPS_mode()) {
Petr Lautrbach 802815
+		logit("Disabling protocol version 1. Not allowed in the FIPS mode.");
Petr Lautrbach 802815
+		options.protocol &= ~SSH_PROTO_1;
Petr Lautrbach 802815
+	}
Petr Lautrbach 802815
 	if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
Petr Lautrbach 802815
 		logit("Disabling protocol version 1. Could not load host key");
Petr Lautrbach 802815
 		options.protocol &= ~SSH_PROTO_1;
Petr Lautrbach 190035
@@ -1982,6 +2001,10 @@ main(int ac, char **av)
Petr Lautrbach 802815
 	/* Reinitialize the log (because of the fork above). */
Petr Lautrbach 802815
 	log_init(__progname, options.log_level, options.log_facility, log_stderr);
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+	if (FIPS_mode()) {
Petr Lautrbach 802815
+		logit("FIPS mode initialized");
Petr Lautrbach 802815
+	}
Petr Lautrbach 802815
+
Petr Lautrbach 802815
 	/* Chdir to the root directory so that the current disk can be
Petr Lautrbach 802815
 	   unmounted if desired. */
Petr Lautrbach 802815
 	if (chdir("/") == -1)
Petr Lautrbach 190035
@@ -2541,6 +2564,9 @@ do_ssh2_kex(void)
Petr Lautrbach 802815
 	if (options.ciphers != NULL) {
Petr Lautrbach 802815
 		myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
 		myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
Petr Lautrbach 802815
+	} else if (FIPS_mode()) {
Petr Lautrbach 802815
+		myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
+		myproposal[PROPOSAL_ENC_ALGS_STOC] = KEX_FIPS_ENCRYPT;
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 	myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Petr Lautrbach 802815
 	    compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
Petr Lautrbach 190035
@@ -2550,6 +2576,9 @@ do_ssh2_kex(void)
Petr Lautrbach 802815
 	if (options.macs != NULL) {
Petr Lautrbach 802815
 		myproposal[PROPOSAL_MAC_ALGS_CTOS] =
Petr Lautrbach 802815
 		myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Petr Lautrbach 802815
+	} else if (FIPS_mode()) {
Petr Lautrbach 802815
+		myproposal[PROPOSAL_MAC_ALGS_CTOS] =
Petr Lautrbach 802815
+		myproposal[PROPOSAL_MAC_ALGS_STOC] = KEX_FIPS_MAC;
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 	if (options.compression == COMP_NONE) {
Petr Lautrbach 802815
 		myproposal[PROPOSAL_COMP_ALGS_CTOS] =
Petr Lautrbach 190035
@@ -2560,6 +2589,8 @@ do_ssh2_kex(void)
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 	if (options.kex_algorithms != NULL)
Petr Lautrbach 802815
 		myproposal[PROPOSAL_KEX_ALGS] = options.kex_algorithms;
Petr Lautrbach 802815
+	else if (FIPS_mode())
Petr Lautrbach 802815
+		myproposal[PROPOSAL_KEX_ALGS] = KEX_DEFAULT_KEX_FIPS;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
Petr Lautrbach 802815
 	    myproposal[PROPOSAL_KEX_ALGS]);
Petr Lautrbach 190035
@@ -2586,10 +2617,14 @@ do_ssh2_kex(void)
Petr Lautrbach 802815
 	if (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]) == 0)
Petr Lautrbach 802815
 		orig = NULL;
Petr Lautrbach 802815
 
Petr Lautrbach 802815
-	if (options.gss_keyex)
Petr Lautrbach 802815
-		gss = ssh_gssapi_server_mechanisms();
Petr Lautrbach 802815
-	else
Petr Lautrbach 802815
-		gss = NULL;
Petr Lautrbach 802815
+	if (options.gss_keyex) {
Petr Lautrbach 802815
+		if (FIPS_mode()) {
Petr Lautrbach 802815
+			logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
Petr Lautrbach 802815
+			options.gss_keyex = 0;
Petr Lautrbach 802815
+		} else {
Petr Lautrbach 802815
+			gss = ssh_gssapi_server_mechanisms();
Petr Lautrbach 802815
+		}
Petr Lautrbach 802815
+	}
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 	if (gss && orig)
Petr Lautrbach 802815
 		xasprintf(&newstr, "%s,%s", gss, orig);
Petr Lautrbach 190035
diff --git a/sshkey.c b/sshkey.c
Petr Lautrbach 190035
index f078e11..5e3d97f 100644
Petr Lautrbach 190035
--- a/sshkey.c
Petr Lautrbach 190035
+++ b/sshkey.c
Petr Lautrbach 190035
@@ -34,6 +34,7 @@
Petr Lautrbach 190035
 #include <openssl/evp.h>
Petr Lautrbach 190035
 #include <openssl/err.h>
Petr Lautrbach 190035
 #include <openssl/pem.h>
Petr Lautrbach 190035
+#include <openssl/fips.h>
Petr Lautrbach 190035
 
Petr Lautrbach 190035
 #include "crypto_api.h"
Petr Lautrbach 190035
 
Petr Lautrbach 190035
@@ -1523,6 +1524,8 @@ rsa_generate_private_key(u_int bits, RSA **rsap)
Petr Lautrbach 190035
 	}
Petr Lautrbach 190035
 	if (!BN_set_word(f4, RSA_F4) ||
Petr Lautrbach 190035
 	    !RSA_generate_key_ex(private, bits, f4, NULL)) {
Petr Lautrbach 190035
+			if (FIPS_mode())
Petr Lautrbach 190035
+				logit("%s: the key length might be unsupported by FIPS mode approved key generation method", __func__);
Petr Lautrbach 190035
 		ret = SSH_ERR_LIBCRYPTO_ERROR;
Petr Lautrbach 190035
 		goto out;
Petr Lautrbach 190035
 	}