vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/cipher.c.fips openssh-7.2p1/cipher.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/cipher.c.fips	2016-02-12 18:53:56.083665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/cipher.c	2016-02-12 18:53:56.090665235 +0100
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>
Jakub Jelen 132f8f
@@ -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;
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/cipher-ctr.c.fips openssh-7.2p1/cipher-ctr.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/cipher-ctr.c.fips	2016-02-12 18:53:56.013665228 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/cipher-ctr.c	2016-02-12 18:53:56.090665235 +0100
Jakub Jelen 535d34
@@ -179,7 +179,8 @@ evp_aes_128_ctr(void)
Jakub Jelen 535d34
 	aes_ctr.do_cipher = ssh_aes_ctr;
Jakub Jelen 535d34
 #ifndef SSH_OLD_EVP
Jakub Jelen 535d34
 	aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
Jakub Jelen 535d34
-	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
Jakub Jelen 535d34
+	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV |
Jakub Jelen 535d34
+	    EVP_CIPH_FLAG_FIPS;
Jakub Jelen 535d34
 #endif
Jakub Jelen 535d34
 	return (&aes_ctr);
Jakub Jelen 535d34
 }
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/dh.h.fips openssh-7.2p1/dh.h
Jakub Jelen 13bf5b
--- openssh-7.2p1/dh.h.fips	2016-02-12 18:53:56.090665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/dh.h	2016-02-12 18:54:48.425670204 +0100
Jakub Jelen 13bf5b
@@ -49,6 +49,7 @@ u_int	 dh_estimate(int);
Jakub Jelen 13bf5b
  * Miniumum increased in light of DH precomputation attacks.
Jakub Jelen 13bf5b
  */
Jakub Jelen 13073f
 #define DH_GRP_MIN	2048
Petr Lautrbach 802815
+#define DH_GRP_MIN_FIPS	2048
Petr Lautrbach 802815
 #define DH_GRP_MAX	8192
Petr Lautrbach 802815
 
Petr Lautrbach 802815
 /*
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/entropy.c.fips openssh-7.2p1/entropy.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/entropy.c.fips	2016-02-12 18:53:56.005665227 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/entropy.c	2016-02-12 18:53:56.091665235 +0100
Jakub Jelen 132f8f
@@ -217,6 +217,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");
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/kex.c.fips openssh-7.2p1/kex.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/kex.c.fips	2016-02-12 18:53:56.084665234 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/kex.c	2016-02-12 18:53:56.091665235 +0100
Petr Lautrbach 190035
@@ -35,6 +35,7 @@
Petr Lautrbach 190035
 #ifdef WITH_OPENSSL
Petr Lautrbach 802815
 #include <openssl/crypto.h>
Jakub Jelen 5878eb
 #include <openssl/dh.h>
Petr Lautrbach 802815
+#include <openssl/fips.h>
Petr Lautrbach 190035
 #endif
Petr Lautrbach 802815
 
Jakub Jelen 132f8f
 #include "ssh2.h"
Jakub Jelen 13bf5b
@@ -121,6 +122,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
 {
Jakub Jelen 13bf5b
@@ -148,7 +168,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
Jakub Jelen 13bf5b
@@ -174,7 +194,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
 		}
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/kexgexc.c.fips openssh-7.2p1/kexgexc.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/kexgexc.c.fips	2016-02-12 11:47:25.000000000 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/kexgexc.c	2016-02-12 18:53:56.091665235 +0100
Jakub Jelen 535d34
@@ -28,6 +28,7 @@
Petr Lautrbach 802815
 
Jakub Jelen 132f8f
 #ifdef WITH_OPENSSL
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#include <openssl/fips.h>
Jakub Jelen 535d34
 #include <sys/param.h>
Petr Lautrbach 802815
 #include <sys/types.h>
Petr Lautrbach 802815
 
Jakub Jelen 535d34
@@ -63,7 +64,7 @@ kexgex_client(struct ssh *ssh)
Jakub Jelen 132f8f
 
Jakub Jelen 132f8f
 	nbits = dh_estimate(kex->dh_need * 8);
Petr Lautrbach 08fe9e
 
Jakub Jelen 132f8f
-	kex->min = DH_GRP_MIN;
Jakub Jelen 132f8f
+	kex->min = FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN;
Jakub Jelen 132f8f
 	kex->max = DH_GRP_MAX;
Jakub Jelen 535d34
 	kex->nbits = nbits;
Jakub Jelen 535d34
 	if (datafellows & SSH_BUG_DHGEX_LARGE)
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/kexgexs.c.fips openssh-7.2p1/kexgexs.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/kexgexs.c.fips	2016-02-12 11:47:25.000000000 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/kexgexs.c	2016-02-12 18:53:56.091665235 +0100
Jakub Jelen 13bf5b
@@ -83,9 +83,9 @@ input_kex_dh_gex_request(int type, u_int
Jakub Jelen 535d34
 	kex->nbits = nbits;
Jakub Jelen 13bf5b
 	kex->min = min;
Jakub Jelen 535d34
 	kex->max = max;
Jakub Jelen 535d34
-	min = MAX(DH_GRP_MIN, min);
Jakub Jelen 535d34
+	min = MAX(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, min);
Jakub Jelen 535d34
 	max = MIN(DH_GRP_MAX, max);
Jakub Jelen 535d34
-	nbits = MAX(DH_GRP_MIN, nbits);
Jakub Jelen 535d34
+	nbits = MAX(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, nbits);
Jakub Jelen 535d34
 	nbits = MIN(DH_GRP_MAX, nbits);
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 	if (kex->max < kex->min || kex->nbits < kex->min ||
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/mac.c.fips openssh-7.2p1/mac.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/mac.c.fips	2016-02-12 18:53:56.084665234 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/mac.c	2016-02-12 18:53:56.091665235 +0100
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 <string.h>
Jakub Jelen 132f8f
 #include <stdio.h>
Jakub Jelen 132f8f
 
Jakub Jelen 132f8f
@@ -54,7 +56,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 },
Jakub Jelen 132f8f
@@ -85,6 +87,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)
Jakub Jelen 132f8f
@@ -93,7 +113,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);
Jakub Jelen 132f8f
@@ -132,7 +152,7 @@ mac_setup(struct sshmac *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;
Jakub Jelen 132f8f
 		if (mac != NULL)
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/Makefile.in.fips openssh-7.2p1/Makefile.in
Jakub Jelen 13bf5b
--- openssh-7.2p1/Makefile.in.fips	2016-02-12 18:53:56.085665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/Makefile.in	2016-02-12 18:53:56.092665235 +0100
Jakub Jelen 535d34
@@ -168,25 +168,25 @@ libssh.a: $(LIBSSH_OBJS)
Jakub Jelen 535d34
 	$(RANLIB) $@
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
Jakub Jelen 535d34
-	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
Jakub Jelen 535d34
+	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHLIBS) $(LIBS) $(GSSLIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 sshd$(EXEEXT): libssh.a	$(LIBCOMPAT) $(SSHDOBJS)
Jakub Jelen 535d34
-	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
Jakub Jelen 535d34
+	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 5878eb
 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o
Jakub Jelen 5878eb
 	$(LD) -o $@ scp.o progressmeter.o bufaux.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
Jakub Jelen 535d34
-	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
+	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o ssh-pkcs11-client.o
Jakub Jelen 535d34
-	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
+	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
Jakub Jelen 535d34
-	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
+	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 13073f
 ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o readconf.o
Jakub Jelen 13073f
-	$(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 13073f
+	$(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 ssh-pkcs11-helper$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-pkcs11-helper.o ssh-pkcs11.o
Jakub Jelen 535d34
 	$(LD) -o $@ ssh-pkcs11-helper.o ssh-pkcs11.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
@@ -204,7 +204,7 @@ ssh-cavs$(EXEEXT): $(LIBCOMPAT) libssh.a
Jakub Jelen 13073f
 	$(LD) -o $@ ssh-cavs.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 13073f
 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
Jakub Jelen 13073f
-	$(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
Jakub Jelen 13073f
+	$(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lfipscheck $(LIBS)
Jakub Jelen 535d34
 
Jakub Jelen 535d34
 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o sftp-server-main.o
Jakub Jelen 535d34
 	$(LD) -o $@ sftp-server.o sftp-common.o sftp-server-main.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/myproposal.h.fips openssh-7.2p1/myproposal.h
Jakub Jelen 13bf5b
--- openssh-7.2p1/myproposal.h.fips	2016-02-12 18:53:56.092665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/myproposal.h	2016-02-12 18:55:42.137675304 +0100
Jakub Jelen 13bf5b
@@ -129,6 +129,28 @@
Jakub Jelen 13bf5b
 
Jakub Jelen 13bf5b
 #define KEX_CLIENT_MAC KEX_SERVER_MAC
Petr Lautrbach 802815
 
Petr Lautrbach 802815
+#define KEX_DEFAULT_KEX_FIPS		\
Petr Lautrbach 802815
+	KEX_ECDH_METHODS \
Jakub Jelen a711d3
+	KEX_SHA2_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
+
Jakub Jelen 13bf5b
 #else /* WITH_OPENSSL */
Petr Lautrbach 802815
 
Petr Lautrbach 190035
 #define KEX_SERVER_KEX		\
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/readconf.c.fips openssh-7.2p1/readconf.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/readconf.c.fips	2016-02-12 18:53:56.073665234 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/readconf.c	2016-02-12 18:53:56.092665235 +0100
Jakub Jelen 13bf5b
@@ -1969,9 +1969,12 @@ fill_default_options(Options * options)
Jakub Jelen 4df30a
 	}
Jakub Jelen 3f5513
 	if (options->update_hostkeys == -1)
Jakub Jelen 3f5513
 		options->update_hostkeys = 0;
Jakub Jelen 3f5513
-	if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
Jakub Jelen 3f5513
-	    kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
Jakub Jelen 3f5513
-	    kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
Jakub Jelen 3f5513
+	if (kex_assemble_names((FIPS_mode() ? KEX_FIPS_ENCRYPT
Jakub Jelen 3f5513
+	        : KEX_CLIENT_ENCRYPT), &options->ciphers) != 0 ||
Jakub Jelen 3f5513
+	    kex_assemble_names((FIPS_mode() ? KEX_FIPS_MAC
Jakub Jelen 3f5513
+	        : KEX_CLIENT_MAC), &options->macs) != 0 ||
Jakub Jelen 3f5513
+	    kex_assemble_names((FIPS_mode() ? KEX_DEFAULT_KEX_FIPS
Jakub Jelen 3f5513
+	        : KEX_CLIENT_KEX), &options->kex_algorithms) != 0 ||
Jakub Jelen 3f5513
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
Jakub Jelen 3f5513
 	    &options->hostbased_key_types) != 0 ||
Jakub Jelen 3f5513
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/servconf.c.fips openssh-7.2p1/servconf.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/servconf.c.fips	2016-02-12 18:53:56.068665233 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/servconf.c	2016-02-12 18:56:52.185681954 +0100
Jakub Jelen 13bf5b
@@ -188,9 +188,12 @@ option_clear_or_none(const char *o)
Jakub Jelen 13bf5b
 static void
Jakub Jelen 13bf5b
 assemble_algorithms(ServerOptions *o)
Jakub Jelen 13bf5b
 {
Jakub Jelen 13bf5b
-	if (kex_assemble_names(KEX_SERVER_ENCRYPT, &o->ciphers) != 0 ||
Jakub Jelen 13bf5b
-	    kex_assemble_names(KEX_SERVER_MAC, &o->macs) != 0 ||
Jakub Jelen 13bf5b
-	    kex_assemble_names(KEX_SERVER_KEX, &o->kex_algorithms) != 0 ||
Jakub Jelen 3f5513
+	if (kex_assemble_names((FIPS_mode() ? KEX_FIPS_ENCRYPT
Jakub Jelen 13bf5b
+	        : KEX_SERVER_ENCRYPT), &o->ciphers) != 0 ||
Jakub Jelen 3f5513
+	    kex_assemble_names((FIPS_mode() ? KEX_FIPS_MAC
Jakub Jelen 13bf5b
+	        : KEX_SERVER_MAC), &o->macs) != 0 ||
Jakub Jelen 3f5513
+	    kex_assemble_names((FIPS_mode() ? KEX_DEFAULT_KEX_FIPS
Jakub Jelen 13bf5b
+	        : KEX_SERVER_KEX), &o->kex_algorithms) != 0 ||
Jakub Jelen 3f5513
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
Jakub Jelen 13bf5b
 	    &o->hostkeyalgorithms) != 0 ||
Jakub Jelen 3f5513
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
Jakub Jelen 13bf5b
@@ -2376,8 +2379,10 @@ dump_config(ServerOptions *o)
Jakub Jelen 535d34
 	/* string arguments */
Jakub Jelen 535d34
 	dump_cfg_string(sPidFile, o->pid_file);
Jakub Jelen 535d34
 	dump_cfg_string(sXAuthLocation, o->xauth_location);
Jakub Jelen 535d34
-	dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : KEX_SERVER_ENCRYPT);
Jakub Jelen 535d34
-	dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
Jakub Jelen 535d34
+	dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : FIPS_mode()
Jakub Jelen 535d34
+		? KEX_FIPS_ENCRYPT : KEX_SERVER_ENCRYPT);
Jakub Jelen 535d34
+	dump_cfg_string(sMacs, o->macs ? o->macs : FIPS_mode()
Jakub Jelen 535d34
+		? KEX_FIPS_MAC : KEX_SERVER_MAC);
Jakub Jelen 535d34
 	dump_cfg_string(sBanner, o->banner != NULL ? o->banner : "none");
Jakub Jelen 535d34
 	dump_cfg_string(sForceCommand, o->adm_forced_command);
Jakub Jelen 535d34
 	dump_cfg_string(sChrootDirectory, o->chroot_directory);
Jakub Jelen 13bf5b
@@ -2392,8 +2397,8 @@ dump_config(ServerOptions *o)
Jakub Jelen 535d34
 	dump_cfg_string(sAuthorizedPrincipalsCommand, o->authorized_principals_command);
Jakub Jelen 535d34
 	dump_cfg_string(sAuthorizedPrincipalsCommandUser, o->authorized_principals_command_user);
Jakub Jelen 535d34
 	dump_cfg_string(sHostKeyAgent, o->host_key_agent);
Jakub Jelen 535d34
-	dump_cfg_string(sKexAlgorithms,
Jakub Jelen 535d34
-	    o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX);
Jakub Jelen 535d34
+	dump_cfg_string(sKexAlgorithms, o->kex_algorithms ? o->kex_algorithms :
Jakub Jelen 535d34
+		FIPS_mode() ? KEX_DEFAULT_KEX_FIPS : KEX_SERVER_KEX);
Jakub Jelen 535d34
 	dump_cfg_string(sHostbasedAcceptedKeyTypes, o->hostbased_key_types ?
Jakub Jelen 535d34
 	    o->hostbased_key_types : KEX_DEFAULT_PK_ALG);
Jakub Jelen 3f5513
 	dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms ?
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/ssh.c.fips openssh-7.2p1/ssh.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/ssh.c.fips	2016-02-12 11:47:25.000000000 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/ssh.c	2016-02-12 18:53:56.093665236 +0100
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 13bf5b
@@ -531,6 +533,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 */
Jakub Jelen 13bf5b
@@ -608,6 +618,9 @@ main(int ac, char **av)
Jakub Jelen 5878eb
 	    "ACD:E:F:GI:J: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':
Jakub Jelen 13bf5b
@@ -952,7 +965,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
 
Jakub Jelen 13bf5b
@@ -1126,6 +1138,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
 
Jakub Jelen 13bf5b
@@ -1206,6 +1222,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,
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/sshconnect2.c.fips openssh-7.2p1/sshconnect2.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/sshconnect2.c.fips	2016-02-12 18:53:56.074665234 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/sshconnect2.c	2016-02-12 18:53:56.094665236 +0100
Jakub Jelen 3f5513
@@ -44,6 +44,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"
Jakub Jelen 13bf5b
@@ -171,21 +173,26 @@ ssh_kex2(char *host, struct sockaddr *ho
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 */
Jakub Jelen 9a804f
-		orig = options.kex_algorithms;
Jakub Jelen 132f8f
-
Jakub Jelen 132f8f
-		if (options.gss_trust_dns)
Jakub Jelen b487a6
-			gss_host = (char *)get_canonical_hostname(active_state, 1);
Jakub Jelen 132f8f
-		else
Jakub Jelen 132f8f
-			gss_host = host;
Jakub Jelen 132f8f
-
Jakub Jelen bc4ef0
-		gss = ssh_gssapi_client_mechanisms(gss_host,
Jakub Jelen bc4ef0
-		    options.gss_client_identity, options.gss_kex_algorithms);
Jakub Jelen 132f8f
-		if (gss) {
Jakub Jelen 132f8f
-			debug("Offering GSSAPI proposal: %s", gss);
Jakub Jelen 9a804f
-			xasprintf(&options.kex_algorithms,
Jakub Jelen 132f8f
-			    "%s,%s", gss, orig);
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 */
Jakub Jelen 9a804f
+			orig = options.kex_algorithms;
Jakub Jelen 132f8f
+
Petr Lautrbach 802815
+			if (options.gss_trust_dns)
Jakub Jelen b487a6
+				gss_host = (char *)get_canonical_hostname(active_state, 1);
Petr Lautrbach 802815
+			else
Petr Lautrbach 802815
+				gss_host = host;
Jakub Jelen 132f8f
+
Jakub Jelen bc4ef0
+			gss = ssh_gssapi_client_mechanisms(gss_host,
Jakub Jelen bc4ef0
+			    options.gss_client_identity, options.gss_kex_algorithms);
Petr Lautrbach 802815
+			if (gss) {
Petr Lautrbach 802815
+				debug("Offering GSSAPI proposal: %s", gss);
Jakub Jelen 9a804f
+				xasprintf(&options.kex_algorithms,
Petr Lautrbach 802815
+				    "%s,%s", gss, orig);
Petr Lautrbach 802815
+			}
Petr Lautrbach 802815
 		}
Petr Lautrbach 802815
 	}
Petr Lautrbach 802815
 #endif
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/sshd.c.fips openssh-7.2p1/sshd.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/sshd.c.fips	2016-02-12 18:53:56.088665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/sshd.c	2016-02-12 18:53:56.094665236 +0100
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>
Jakub Jelen 132f8f
@@ -77,6 +78,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
 
Jakub Jelen 13bf5b
@@ -1555,6 +1558,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;
Jakub Jelen 13bf5b
@@ -1707,7 +1722,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
 
Jakub Jelen 13bf5b
@@ -1906,6 +1921,10 @@ main(int ac, char **av)
Jakub Jelen 132f8f
 		    sshkey_type(pubkey) : sshkey_ssh_name(pubkey), fp);
Jakub Jelen 132f8f
 		free(fp);
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;
Jakub Jelen 13bf5b
@@ -2074,6 +2093,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)
Jakub Jelen 13bf5b
@@ -2695,10 +2718,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);
Jakub Jelen 13bf5b
diff -up openssh-7.2p1/sshkey.c.fips openssh-7.2p1/sshkey.c
Jakub Jelen 13bf5b
--- openssh-7.2p1/sshkey.c.fips	2016-02-12 18:53:56.089665235 +0100
Jakub Jelen 13bf5b
+++ openssh-7.2p1/sshkey.c	2016-02-12 18:53:56.095665236 +0100
Jakub Jelen 132f8f
@@ -35,6 +35,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>
Jakub Jelen 132f8f
 #endif
Petr Lautrbach 190035
 
Petr Lautrbach 190035
 #include "crypto_api.h"
Jakub Jelen 84d398
@@ -58,6 +58,7 @@
Jakub Jelen 84d398
 #include "digest.h"
Jakub Jelen 84d398
 #define SSHKEY_INTERNAL
Jakub Jelen 84d398
 #include "sshkey.h"
Jakub Jelen 84d398
+#include "log.h"
Jakub Jelen 84d398
 #include "match.h"
Jakub Jelen 209c7a
 #include "xmalloc.h"
Jakub Jelen 84d398
 
Jakub Jelen 13bf5b
@@ -1554,6 +1555,8 @@ rsa_generate_private_key(u_int bits, RSA
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
 	}
Jakub Jelen bda184
diff --git a/pam_ssh_agent_auth-0.10.2/pam_user_key_allowed2.c b/pam_ssh_agent_auth-0.10.2/pam_user_key_allowed2.c
Jakub Jelen bda184
index 688b1b1..a3c1541 100644
Jakub Jelen bda184
--- a/pam_ssh_agent_auth-0.10.2/pam_user_key_allowed2.c
Jakub Jelen bda184
+++ b/pam_ssh_agent_auth-0.10.2/pam_user_key_allowed2.c
Jakub Jelen bda184
@@ -55,6 +55,7 @@
Jakub Jelen bda184
 #include "secure_filename.h"
Jakub Jelen bda184
 #include "uidswap.h"
Jakub Jelen bda184
 #include <unistd.h>
Jakub Jelen bda184
+#include <openssl/crypto.h>
Jakub Jelen bda184
 
Jakub Jelen bda184
 #include "identity.h"
Jakub Jelen bda184
 
Jakub Jelen bda184
@@ -104,7 +105,8 @@ pamsshagentauth_check_authkeys_file(FILE * f, char *file, Key * key)
Jakub Jelen bda184
             found_key = 1;
Jakub Jelen bda184
             logit("matching key found: file/command %s, line %lu", file,
Jakub Jelen bda184
                                   linenum);
Jakub Jelen bda184
-            fp = sshkey_fingerprint(found, SSH_DIGEST_MD5, SSH_FP_HEX);
Jakub Jelen bda184
+            fp = sshkey_fingerprint(found, FIPS_mode() ? SSH_DIGEST_SHA1 : SSH_DIGEST_MD5,
Jakub Jelen bda184
+				SSH_FP_HEX);
Jakub Jelen bda184
             logit("Found matching %s key: %s",
Jakub Jelen bda184
                                   key_type(found), fp);
Jakub Jelen bda184
             free(fp);
Jakub Jelen 117a73
diff --git a/cipher.c b/cipher.c
Jakub Jelen 117a73
index f282907..51bbffb 100644
Jakub Jelen 117a73
--- a/cipher.c
Jakub Jelen 117a73
+++ b/cipher.c
Jakub Jelen 117a73
@@ -112,12 +112,6 @@ static const struct sshcipher fips_ciphers[] = {
Jakub Jelen 117a73
 	{ "aes128-ctr",	SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 0, EVP_aes_128_ctr },
Jakub Jelen 117a73
 	{ "aes192-ctr",	SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 0, EVP_aes_192_ctr },
Jakub Jelen 117a73
 	{ "aes256-ctr",	SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 0, EVP_aes_256_ctr },
Jakub Jelen 117a73
-#ifdef OPENSSL_HAVE_EVPGCM
Jakub Jelen 117a73
-	{ "aes128-gcm@openssh.com",
Jakub Jelen 117a73
-			SSH_CIPHER_SSH2, 16, 16, 12, 16, 0, 0, EVP_aes_128_gcm },
Jakub Jelen 117a73
-	{ "aes256-gcm@openssh.com",
Jakub Jelen 117a73
-			SSH_CIPHER_SSH2, 16, 32, 12, 16, 0, 0, EVP_aes_256_gcm },
Jakub Jelen 117a73
-#endif
Jakub Jelen 117a73
 	{ NULL,		SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
Jakub Jelen 117a73
 };
Jakub Jelen 117a73
 
Jakub Jelen 0509c6
diff --git a/kex.c b/kex.c
Jakub Jelen 0509c6
index f07a636..4ce5843 100644
Jakub Jelen 0509c6
--- a/kex.c
Jakub Jelen 0509c6
+++ b/kex.c
Jakub Jelen 0509c6
@@ -123,8 +123,6 @@ static const struct kexalg kexalgs[] = {
Jakub Jelen 0509c6
 };
Jakub Jelen 0509c6
 
Jakub Jelen 0509c6
 static const struct kexalg kexalgs_fips[] = {
Jakub Jelen 0509c6
-	{ KEX_DH14, KEX_DH_GRP14_SHA1, 0, SSH_DIGEST_SHA1 },
Jakub Jelen 0509c6
-	{ KEX_DHGEX_SHA1, KEX_DH_GEX_SHA1, 0, SSH_DIGEST_SHA1 },
Jakub Jelen 0509c6
 #ifdef HAVE_EVP_SHA256
Jakub Jelen 0509c6
 	{ KEX_DHGEX_SHA256, KEX_DH_GEX_SHA256, 0, SSH_DIGEST_SHA256 },
Jakub Jelen 0509c6
 #endif
Jakub Jelen 0509c6
diff --git a/myproposal.h b/myproposal.h
Jakub Jelen 0509c6
index 7efe312..bcf2ae1 100644
Jakub Jelen 0509c6
--- a/myproposal.h
Jakub Jelen 0509c6
+++ b/myproposal.h
Jakub Jelen 0509c6
@@ -131,9 +131,7 @@
Jakub Jelen 0509c6
 
Jakub Jelen 0509c6
 #define KEX_DEFAULT_KEX_FIPS		\
Jakub Jelen 0509c6
 	KEX_ECDH_METHODS \
Jakub Jelen a711d3
-	KEX_SHA2_METHODS \
Jakub Jelen 0509c6
-	"diffie-hellman-group-exchange-sha1," \
Jakub Jelen 0509c6
-	"diffie-hellman-group14-sha1"
Jakub Jelen a711d3
+	KEX_SHA2_METHODS
Jakub Jelen 0509c6
 #define	KEX_FIPS_ENCRYPT \
Jakub Jelen 0509c6
 	"aes128-ctr,aes192-ctr,aes256-ctr," \
Jakub Jelen 0509c6
 	"aes128-cbc,3des-cbc," \
Jakub Jelen 3d2c14
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
Jakub Jelen 3d2c14
index a3975eb..5224084 100644
Jakub Jelen 3d2c14
--- a/sandbox-seccomp-filter.c
Jakub Jelen 3d2c14
+++ b/sandbox-seccomp-filter.c
Jakub Jelen 3d2c14
@@ -112,6 +112,9 @@ static const struct sock_filter preauth_insns[] = {
Jakub Jelen 3d2c14
 #ifdef __NR_open
Jakub Jelen 3d2c14
 	SC_DENY(open, EACCES),
Jakub Jelen 3d2c14
 #endif
Jakub Jelen 3d2c14
+#ifdef __NR_socket
Jakub Jelen 3d2c14
+	SC_DENY(socket, EACCES),
Jakub Jelen 3d2c14
+#endif
Jakub Jelen 3d2c14
 #ifdef __NR_openat
Jakub Jelen 3d2c14
 	SC_DENY(openat, EACCES),
Jakub Jelen 3d2c14
 #endif
Jakub Jelen 3d2c14