mgahagan / rpms / openssh

Forked from rpms/openssh 6 years ago
Clone
6cf9b8e
diff -up openssh-7.4p1/cipher.c.fips openssh-7.4p1/cipher.c
6cf9b8e
--- openssh-7.4p1/cipher.c.fips	2016-12-23 16:37:49.290741582 +0100
6cf9b8e
+++ openssh-7.4p1/cipher.c	2016-12-23 16:37:49.300741586 +0100
8028159
@@ -39,6 +39,8 @@
8028159
 
8028159
 #include <sys/types.h>
8028159
 
8028159
+#include <openssl/fips.h>
8028159
+
8028159
 #include <string.h>
8028159
 #include <stdarg.h>
8028159
 #include <stdio.h>
6cf9b8e
@@ -116,6 +118,20 @@ static const struct sshcipher ciphers[]
8028159
 	{ NULL,		SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
8028159
 };
8028159
 
1900351
+static const struct sshcipher fips_ciphers[] = {
8028159
+	{ "none",	SSH_CIPHER_NONE, 8, 0, 0, 0, 0, 0, EVP_enc_null },
8028159
+	{ "3des-cbc",	SSH_CIPHER_SSH2, 8, 24, 0, 0, 0, 1, EVP_des_ede3_cbc },
8028159
+	{ "aes128-cbc",	SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 1, EVP_aes_128_cbc },
8028159
+	{ "aes192-cbc",	SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 1, EVP_aes_192_cbc },
8028159
+	{ "aes256-cbc",	SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
8028159
+	{ "rijndael-cbc@lysator.liu.se",
8028159
+			SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 1, EVP_aes_256_cbc },
8028159
+	{ "aes128-ctr",	SSH_CIPHER_SSH2, 16, 16, 0, 0, 0, 0, EVP_aes_128_ctr },
8028159
+	{ "aes192-ctr",	SSH_CIPHER_SSH2, 16, 24, 0, 0, 0, 0, EVP_aes_192_ctr },
8028159
+	{ "aes256-ctr",	SSH_CIPHER_SSH2, 16, 32, 0, 0, 0, 0, EVP_aes_256_ctr },
8028159
+	{ NULL,		SSH_CIPHER_INVALID, 0, 0, 0, 0, 0, 0, NULL }
8028159
+};
1900351
+
8028159
 /*--*/
8028159
 
1900351
 /* Returns a comma-separated list of supported ciphers. */
6cf9b8e
@@ -126,7 +142,7 @@ cipher_alg_list(char sep, int auth_only)
8028159
 	size_t nlen, rlen = 0;
1900351
 	const struct sshcipher *c;
8028159
 
8028159
-	for (c = ciphers; c->name != NULL; c++) {
8028159
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++) {
8028159
 		if (c->number != SSH_CIPHER_SSH2)
8028159
 			continue;
8028159
 		if (auth_only && c->auth_len == 0)
6cf9b8e
@@ -222,7 +238,7 @@ const struct sshcipher *
8028159
 cipher_by_name(const char *name)
8028159
 {
1900351
 	const struct sshcipher *c;
8028159
-	for (c = ciphers; c->name != NULL; c++)
8028159
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
8028159
 		if (strcmp(c->name, name) == 0)
8028159
 			return c;
8028159
 	return NULL;
6cf9b8e
@@ -232,7 +248,7 @@ const struct sshcipher *
8028159
 cipher_by_number(int id)
8028159
 {
1900351
 	const struct sshcipher *c;
8028159
-	for (c = ciphers; c->name != NULL; c++)
8028159
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
8028159
 		if (c->number == id)
8028159
 			return c;
8028159
 	return NULL;
6cf9b8e
@@ -273,7 +289,7 @@ cipher_number(const char *name)
1900351
 	const struct sshcipher *c;
8028159
 	if (name == NULL)
8028159
 		return -1;
8028159
-	for (c = ciphers; c->name != NULL; c++)
8028159
+	for (c = FIPS_mode() ? fips_ciphers : ciphers; c->name != NULL; c++)
8028159
 		if (strcasecmp(c->name, name) == 0)
8028159
 			return c->number;
8028159
 	return -1;
6cf9b8e
diff -up openssh-7.4p1/cipher-ctr.c.fips openssh-7.4p1/cipher-ctr.c
6cf9b8e
--- openssh-7.4p1/cipher-ctr.c.fips	2016-12-23 16:37:49.225741551 +0100
6cf9b8e
+++ openssh-7.4p1/cipher-ctr.c	2016-12-23 16:37:49.297741585 +0100
535d341
@@ -179,7 +179,8 @@ evp_aes_128_ctr(void)
535d341
 	aes_ctr.do_cipher = ssh_aes_ctr;
535d341
 #ifndef SSH_OLD_EVP
535d341
 	aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH |
535d341
-	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV;
535d341
+	    EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV |
535d341
+	    EVP_CIPH_FLAG_FIPS;
535d341
 #endif
535d341
 	return (&aes_ctr);
535d341
 }
6cf9b8e
diff -up openssh-7.4p1/dh.h.fips openssh-7.4p1/dh.h
6cf9b8e
--- openssh-7.4p1/dh.h.fips	2016-12-19 05:59:41.000000000 +0100
6cf9b8e
+++ openssh-7.4p1/dh.h	2016-12-23 16:37:49.297741585 +0100
6cf9b8e
@@ -51,6 +51,7 @@ u_int	 dh_estimate(int);
13bf5be
  * Miniumum increased in light of DH precomputation attacks.
13bf5be
  */
13073f8
 #define DH_GRP_MIN	2048
8028159
+#define DH_GRP_MIN_FIPS	2048
8028159
 #define DH_GRP_MAX	8192
8028159
 
8028159
 /*
6cf9b8e
diff -up openssh-7.4p1/entropy.c.fips openssh-7.4p1/entropy.c
6cf9b8e
--- openssh-7.4p1/entropy.c.fips	2016-12-23 16:37:49.219741548 +0100
6cf9b8e
+++ openssh-7.4p1/entropy.c	2016-12-23 16:37:49.297741585 +0100
132f8f8
@@ -217,6 +217,9 @@ seed_rng(void)
8028159
 		fatal("OpenSSL version mismatch. Built against %lx, you "
8028159
 		    "have %lx", (u_long)OPENSSL_VERSION_NUMBER, SSLeay());
8028159
 
8028159
+	/* clean the PRNG status when exiting the program */
8028159
+	atexit(RAND_cleanup);
8028159
+
8028159
 #ifndef OPENSSL_PRNG_ONLY
8028159
 	if (RAND_status() == 1) {
8028159
 		debug3("RNG is ready, skipping seeding");
6cf9b8e
diff -up openssh-7.4p1/kex.c.fips openssh-7.4p1/kex.c
6cf9b8e
--- openssh-7.4p1/kex.c.fips	2016-12-23 16:37:49.290741582 +0100
6cf9b8e
+++ openssh-7.4p1/kex.c	2016-12-23 16:37:49.300741586 +0100
1900351
@@ -35,6 +35,7 @@
1900351
 #ifdef WITH_OPENSSL
8028159
 #include <openssl/crypto.h>
5878ebb
 #include <openssl/dh.h>
8028159
+#include <openssl/fips.h>
1900351
 #endif
8028159
 
132f8f8
 #include "ssh2.h"
fd58b9e
@@ -125,6 +126,26 @@ static const struct kexalg kexalgs[] = {
8028159
 	{ NULL, -1, -1, -1},
8028159
 };
8028159
 
8028159
+static const struct kexalg kexalgs_fips[] = {
fd58b9e
+	{ KEX_DH14_SHA256, KEX_DH_GRP14_SHA256, 0, SSH_DIGEST_SHA256 },
fd58b9e
+	{ KEX_DH16_SHA512, KEX_DH_GRP16_SHA512, 0, SSH_DIGEST_SHA512 },
fd58b9e
+	{ KEX_DH18_SHA512, KEX_DH_GRP18_SHA512, 0, SSH_DIGEST_SHA512 },
8028159
+#ifdef HAVE_EVP_SHA256
8028159
+	{ KEX_DHGEX_SHA256, KEX_DH_GEX_SHA256, 0, SSH_DIGEST_SHA256 },
8028159
+#endif
8028159
+#ifdef OPENSSL_HAS_ECC
8028159
+	{ KEX_ECDH_SHA2_NISTP256, KEX_ECDH_SHA2,
8028159
+	    NID_X9_62_prime256v1, SSH_DIGEST_SHA256 },
8028159
+	{ KEX_ECDH_SHA2_NISTP384, KEX_ECDH_SHA2, NID_secp384r1,
8028159
+	    SSH_DIGEST_SHA384 },
8028159
+# ifdef OPENSSL_HAS_NISTP521
8028159
+	{ KEX_ECDH_SHA2_NISTP521, KEX_ECDH_SHA2, NID_secp521r1,
8028159
+	    SSH_DIGEST_SHA512 },
8028159
+# endif
8028159
+#endif
580f986
+	{ NULL, -1, -1, -1},
8028159
+};
8028159
+
8028159
 char *
8028159
 kex_alg_list(char sep)
8028159
 {
6cf9b8e
@@ -152,7 +170,7 @@ kex_alg_by_name(const char *name)
8028159
 {
8028159
 	const struct kexalg *k;
8028159
 
8028159
-	for (k = kexalgs; k->name != NULL; k++) {
8028159
+	for (k = (FIPS_mode() ? kexalgs_fips : kexalgs); k->name != NULL; k++) {
8028159
 		if (strcmp(k->name, name) == 0)
8028159
 			return k;
8028159
 #ifdef GSSAPI
6cf9b8e
@@ -178,7 +196,10 @@ kex_names_valid(const char *names)
8028159
 	for ((p = strsep(&cp, ",")); p && *p != '\0';
8028159
 	    (p = strsep(&cp, ","))) {
8028159
 		if (kex_alg_by_name(p) == NULL) {
8028159
-			error("Unsupported KEX algorithm \"%.100s\"", p);
8028159
+			if (FIPS_mode())
8028159
+				error("\"%.100s\" is not allowed in FIPS mode", p);
8028159
+			else
8028159
+				error("Unsupported KEX algorithm \"%.100s\"", p);
8028159
 			free(s);
8028159
 			return 0;
8028159
 		}
6cf9b8e
diff -up openssh-7.4p1/kexgexc.c.fips openssh-7.4p1/kexgexc.c
6cf9b8e
--- openssh-7.4p1/kexgexc.c.fips	2016-12-19 05:59:41.000000000 +0100
6cf9b8e
+++ openssh-7.4p1/kexgexc.c	2016-12-23 16:38:38.727763540 +0100
535d341
@@ -28,6 +28,7 @@
8028159
 
132f8f8
 #ifdef WITH_OPENSSL
8028159
 
8028159
+#include <openssl/fips.h>
8028159
 #include <sys/types.h>
8028159
 
6cf9b8e
 #include <openssl/dh.h>
535d341
@@ -63,7 +64,7 @@ kexgex_client(struct ssh *ssh)
132f8f8
 
132f8f8
 	nbits = dh_estimate(kex->dh_need * 8);
08fe9e8
 
132f8f8
-	kex->min = DH_GRP_MIN;
132f8f8
+	kex->min = FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN;
132f8f8
 	kex->max = DH_GRP_MAX;
535d341
 	kex->nbits = nbits;
535d341
 	if (datafellows & SSH_BUG_DHGEX_LARGE)
6cf9b8e
diff -up openssh-7.4p1/kexgexs.c.fips openssh-7.4p1/kexgexs.c
6cf9b8e
--- openssh-7.4p1/kexgexs.c.fips	2016-12-23 16:37:49.297741585 +0100
6cf9b8e
+++ openssh-7.4p1/kexgexs.c	2016-12-23 16:39:35.009776626 +0100
13bf5be
@@ -83,9 +83,9 @@ input_kex_dh_gex_request(int type, u_int
535d341
 	kex->nbits = nbits;
13bf5be
 	kex->min = min;
535d341
 	kex->max = max;
6cf9b8e
-	min = MAXIMUM(DH_GRP_MIN, min);
6cf9b8e
+	min = MAXIMUM(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, min);
6cf9b8e
 	max = MINIMUM(DH_GRP_MAX, max);
6cf9b8e
-	nbits = MAXIMUM(DH_GRP_MIN, nbits);
6cf9b8e
+	nbits = MAXIMUM(FIPS_mode() ? DH_GRP_MIN_FIPS : DH_GRP_MIN, nbits);
6cf9b8e
 	nbits = MINIMUM(DH_GRP_MAX, nbits);
535d341
 
535d341
 	if (kex->max < kex->min || kex->nbits < kex->min ||
6cf9b8e
diff -up openssh-7.4p1/mac.c.fips openssh-7.4p1/mac.c
6cf9b8e
--- openssh-7.4p1/mac.c.fips	2016-12-23 16:37:49.291741582 +0100
6cf9b8e
+++ openssh-7.4p1/mac.c	2016-12-23 16:37:49.298741585 +0100
8028159
@@ -27,6 +27,8 @@
8028159
 
8028159
 #include <sys/types.h>
8028159
 
8028159
+#include <openssl/fips.h>
8028159
+
8028159
 #include <string.h>
132f8f8
 #include <stdio.h>
132f8f8
 
132f8f8
@@ -54,7 +56,7 @@ struct macalg {
8028159
 	int		etm;		/* Encrypt-then-MAC */
8028159
 };
8028159
 
8028159
-static const struct macalg macs[] = {
8028159
+static const struct macalg all_macs[] = {
8028159
 	/* Encrypt-and-MAC (encrypt-and-authenticate) variants */
8028159
 	{ "hmac-sha1",				SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
8028159
 	{ "hmac-sha1-96",			SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 },
6cf9b8e
@@ -89,6 +91,24 @@ static const struct macalg macs[] = {
8028159
 	{ NULL,					0, 0, 0, 0, 0, 0 }
8028159
 };
8028159
 
8028159
+static const struct macalg fips_macs[] = {
8028159
+	/* Encrypt-and-MAC (encrypt-and-authenticate) variants */
8028159
+	{ "hmac-sha1",				SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 },
8028159
+#ifdef HAVE_EVP_SHA256
8028159
+	{ "hmac-sha2-256",			SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 0 },
8028159
+	{ "hmac-sha2-512",			SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 0 },
8028159
+#endif
8028159
+
8028159
+	/* Encrypt-then-MAC variants */
8028159
+	{ "hmac-sha1-etm@openssh.com",		SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 },
8028159
+#ifdef HAVE_EVP_SHA256
8028159
+	{ "hmac-sha2-256-etm@openssh.com",	SSH_DIGEST, SSH_DIGEST_SHA256, 0, 0, 0, 1 },
8028159
+	{ "hmac-sha2-512-etm@openssh.com",	SSH_DIGEST, SSH_DIGEST_SHA512, 0, 0, 0, 1 },
8028159
+#endif
8028159
+
8028159
+	{ NULL,					0, 0, 0, 0, 0, 0 }
8028159
+};
8028159
+
8028159
 /* Returns a list of supported MACs separated by the specified char. */
8028159
 char *
8028159
 mac_alg_list(char sep)
6cf9b8e
@@ -97,7 +117,7 @@ mac_alg_list(char sep)
8028159
 	size_t nlen, rlen = 0;
8028159
 	const struct macalg *m;
8028159
 
8028159
-	for (m = macs; m->name != NULL; m++) {
8028159
+	for (m = FIPS_mode() ? fips_macs : all_macs; m->name != NULL; m++) {
8028159
 		if (ret != NULL)
8028159
 			ret[rlen++] = sep;
8028159
 		nlen = strlen(m->name);
6cf9b8e
@@ -136,7 +156,7 @@ mac_setup(struct sshmac *mac, char *name
8028159
 {
8028159
 	const struct macalg *m;
8028159
 
8028159
-	for (m = macs; m->name != NULL; m++) {
8028159
+	for (m = FIPS_mode() ? fips_macs : all_macs; m->name != NULL; m++) {
8028159
 		if (strcmp(name, m->name) != 0)
8028159
 			continue;
132f8f8
 		if (mac != NULL)
6cf9b8e
diff -up openssh-7.4p1/Makefile.in.fips openssh-7.4p1/Makefile.in
6cf9b8e
--- openssh-7.4p1/Makefile.in.fips	2016-12-23 16:37:49.291741582 +0100
6cf9b8e
+++ openssh-7.4p1/Makefile.in	2016-12-23 16:37:49.298741585 +0100
6cf9b8e
@@ -169,25 +169,25 @@ libssh.a: $(LIBSSH_OBJS)
535d341
 	$(RANLIB) $@
535d341
 
535d341
 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
535d341
-	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
535d341
+	$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHLIBS) $(LIBS) $(GSSLIBS)
535d341
 
535d341
 sshd$(EXEEXT): libssh.a	$(LIBCOMPAT) $(SSHDOBJS)
535d341
-	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
535d341
+	$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
535d341
 
5878ebb
 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o progressmeter.o
5878ebb
 	$(LD) -o $@ scp.o progressmeter.o bufaux.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
535d341
 
535d341
 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
535d341
-	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
535d341
+	$(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
535d341
 
535d341
 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o ssh-pkcs11-client.o
535d341
-	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
535d341
+	$(LD) -o $@ ssh-agent.o ssh-pkcs11-client.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
535d341
 
535d341
 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
535d341
-	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
535d341
+	$(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
535d341
 
13073f8
 ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o readconf.o
13073f8
-	$(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
13073f8
+	$(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat -lfipscheck $(LIBS)
535d341
 
535d341
 ssh-pkcs11-helper$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-pkcs11-helper.o ssh-pkcs11.o
535d341
 	$(LD) -o $@ ssh-pkcs11-helper.o ssh-pkcs11.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
6cf9b8e
@@ -205,7 +205,7 @@ ssh-cavs$(EXEEXT): $(LIBCOMPAT) libssh.a
13073f8
 	$(LD) -o $@ ssh-cavs.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
535d341
 
13073f8
 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
13073f8
-	$(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
13073f8
+	$(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lfipscheck $(LIBS)
535d341
 
535d341
 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o sftp-server-main.o
535d341
 	$(LD) -o $@ sftp-server.o sftp-common.o sftp-server-main.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
6cf9b8e
diff -up openssh-7.4p1/myproposal.h.fips openssh-7.4p1/myproposal.h
6cf9b8e
--- openssh-7.4p1/myproposal.h.fips	2016-12-19 05:59:41.000000000 +0100
6cf9b8e
+++ openssh-7.4p1/myproposal.h	2016-12-23 16:37:49.300741586 +0100
eb751fd
@@ -138,6 +138,37 @@
13bf5be
 
13bf5be
 #define KEX_CLIENT_MAC KEX_SERVER_MAC
8028159
 
8028159
+#define	KEX_FIPS_ENCRYPT \
8028159
+	"aes128-ctr,aes192-ctr,aes256-ctr," \
8028159
+	"aes128-cbc,3des-cbc," \
8028159
+	"aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se"
8028159
+#ifdef HAVE_EVP_SHA256
eb751fd
+# define KEX_DEFAULT_KEX_FIPS		\
eb751fd
+	KEX_ECDH_METHODS \
eb751fd
+	KEX_SHA2_METHODS \
eb751fd
+	"diffie-hellman-group14-sha256"
eb751fd
+# define KEX_FIPS_MAC \
8028159
+	"hmac-sha1," \
8028159
+	"hmac-sha2-256," \
8028159
+	"hmac-sha2-512," \
8028159
+	"hmac-sha1-etm@openssh.com," \
8028159
+	"hmac-sha2-256-etm@openssh.com," \
8028159
+	"hmac-sha2-512-etm@openssh.com"
8028159
+#else
eb751fd
+# ifdef OPENSSL_HAS_NISTP521
eb751fd
+#  define KEX_DEFAULT_KEX_FIPS		\
eb751fd
+	"ecdh-sha2-nistp256," \
eb751fd
+	"ecdh-sha2-nistp384," \
eb751fd
+	"ecdh-sha2-nistp521"
eb751fd
+# else
eb751fd
+#  define KEX_DEFAULT_KEX_FIPS		\
eb751fd
+	"ecdh-sha2-nistp256," \
eb751fd
+	"ecdh-sha2-nistp384"
eb751fd
+# endif
8028159
+#define        KEX_FIPS_MAC \
8028159
+       "hmac-sha1"
8028159
+#endif
1900351
+
13bf5be
 #else /* WITH_OPENSSL */
8028159
 
1900351
 #define KEX_SERVER_KEX		\
bdb932c
diff -up openssh-7.4p1/pam_ssh_agent_auth-0.10.3/pam_user_key_allowed2.c.fips openssh-7.4p1/pam_ssh_agent_auth-0.10.3/pam_user_key_allowed2.c
bdb932c
--- openssh-7.4p1/pam_ssh_agent_auth-0.10.3/pam_user_key_allowed2.c.fips	2016-12-23 16:37:49.185741531 +0100
bdb932c
+++ openssh-7.4p1/pam_ssh_agent_auth-0.10.3/pam_user_key_allowed2.c	2016-12-23 16:37:49.300741586 +0100
6cf9b8e
@@ -55,6 +55,7 @@
6cf9b8e
 #include "secure_filename.h"
6cf9b8e
 #include "uidswap.h"
6cf9b8e
 #include <unistd.h>
6cf9b8e
+#include <openssl/crypto.h>
6cf9b8e
 
6cf9b8e
 #include "identity.h"
6cf9b8e
 
6cf9b8e
@@ -104,7 +105,8 @@ pamsshagentauth_check_authkeys_file(FILE
6cf9b8e
             found_key = 1;
6cf9b8e
             logit("matching key found: file/command %s, line %lu", file,
6cf9b8e
                                   linenum);
6cf9b8e
-            fp = sshkey_fingerprint(found, SSH_DIGEST_MD5, SSH_FP_HEX);
6cf9b8e
+            fp = sshkey_fingerprint(found, FIPS_mode() ? SSH_DIGEST_SHA1 : SSH_DIGEST_MD5,
6cf9b8e
+				SSH_FP_HEX);
6cf9b8e
             logit("Found matching %s key: %s",
6cf9b8e
                                   key_type(found), fp);
6cf9b8e
             free(fp);
6cf9b8e
diff -up openssh-7.4p1/readconf.c.fips openssh-7.4p1/readconf.c
6cf9b8e
--- openssh-7.4p1/readconf.c.fips	2016-12-23 16:37:49.274741574 +0100
6cf9b8e
+++ openssh-7.4p1/readconf.c	2016-12-23 16:37:49.298741585 +0100
6cf9b8e
@@ -2110,9 +2110,12 @@ fill_default_options(Options * options)
4df30a2
 	}
3f55133
 	if (options->update_hostkeys == -1)
3f55133
 		options->update_hostkeys = 0;
3f55133
-	if (kex_assemble_names(KEX_CLIENT_ENCRYPT, &options->ciphers) != 0 ||
3f55133
-	    kex_assemble_names(KEX_CLIENT_MAC, &options->macs) != 0 ||
3f55133
-	    kex_assemble_names(KEX_CLIENT_KEX, &options->kex_algorithms) != 0 ||
3f55133
+	if (kex_assemble_names((FIPS_mode() ? KEX_FIPS_ENCRYPT
3f55133
+	        : KEX_CLIENT_ENCRYPT), &options->ciphers) != 0 ||
3f55133
+	    kex_assemble_names((FIPS_mode() ? KEX_FIPS_MAC
3f55133
+	        : KEX_CLIENT_MAC), &options->macs) != 0 ||
3f55133
+	    kex_assemble_names((FIPS_mode() ? KEX_DEFAULT_KEX_FIPS
3f55133
+	        : KEX_CLIENT_KEX), &options->kex_algorithms) != 0 ||
3f55133
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
3f55133
 	    &options->hostbased_key_types) != 0 ||
3f55133
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
6cf9b8e
diff -up openssh-7.4p1/sandbox-seccomp-filter.c.fips openssh-7.4p1/sandbox-seccomp-filter.c
6cf9b8e
--- openssh-7.4p1/sandbox-seccomp-filter.c.fips	2016-12-23 16:37:49.292741583 +0100
6cf9b8e
+++ openssh-7.4p1/sandbox-seccomp-filter.c	2016-12-23 16:37:49.300741586 +0100
6cf9b8e
@@ -118,6 +118,9 @@ static const struct sock_filter preauth_
6cf9b8e
 #ifdef __NR_open
17b491b
 	SC_DENY(__NR_open, EACCES),
6cf9b8e
 #endif
6cf9b8e
+#ifdef __NR_socket
17b491b
+	SC_DENY(__NR_socket, EACCES),
6cf9b8e
+#endif
6cf9b8e
 #ifdef __NR_openat
17b491b
 	SC_DENY(__NR_openat, EACCES),
6cf9b8e
 #endif
6cf9b8e
diff -up openssh-7.4p1/servconf.c.fips openssh-7.4p1/servconf.c
6cf9b8e
--- openssh-7.4p1/servconf.c.fips	2016-12-23 16:37:49.285741579 +0100
6cf9b8e
+++ openssh-7.4p1/servconf.c	2016-12-23 16:37:49.299741586 +0100
6cf9b8e
@@ -185,9 +185,12 @@ option_clear_or_none(const char *o)
13bf5be
 static void
13bf5be
 assemble_algorithms(ServerOptions *o)
13bf5be
 {
13bf5be
-	if (kex_assemble_names(KEX_SERVER_ENCRYPT, &o->ciphers) != 0 ||
13bf5be
-	    kex_assemble_names(KEX_SERVER_MAC, &o->macs) != 0 ||
13bf5be
-	    kex_assemble_names(KEX_SERVER_KEX, &o->kex_algorithms) != 0 ||
3f55133
+	if (kex_assemble_names((FIPS_mode() ? KEX_FIPS_ENCRYPT
13bf5be
+	        : KEX_SERVER_ENCRYPT), &o->ciphers) != 0 ||
3f55133
+	    kex_assemble_names((FIPS_mode() ? KEX_FIPS_MAC
13bf5be
+	        : KEX_SERVER_MAC), &o->macs) != 0 ||
3f55133
+	    kex_assemble_names((FIPS_mode() ? KEX_DEFAULT_KEX_FIPS
13bf5be
+	        : KEX_SERVER_KEX), &o->kex_algorithms) != 0 ||
3f55133
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
13bf5be
 	    &o->hostkeyalgorithms) != 0 ||
3f55133
 	    kex_assemble_names(KEX_DEFAULT_PK_ALG,
6cf9b8e
@@ -2390,8 +2393,10 @@ dump_config(ServerOptions *o)
535d341
 	/* string arguments */
535d341
 	dump_cfg_string(sPidFile, o->pid_file);
535d341
 	dump_cfg_string(sXAuthLocation, o->xauth_location);
535d341
-	dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : KEX_SERVER_ENCRYPT);
535d341
-	dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
535d341
+	dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : FIPS_mode()
535d341
+		? KEX_FIPS_ENCRYPT : KEX_SERVER_ENCRYPT);
535d341
+	dump_cfg_string(sMacs, o->macs ? o->macs : FIPS_mode()
535d341
+		? KEX_FIPS_MAC : KEX_SERVER_MAC);
535d341
 	dump_cfg_string(sBanner, o->banner != NULL ? o->banner : "none");
535d341
 	dump_cfg_string(sForceCommand, o->adm_forced_command);
535d341
 	dump_cfg_string(sChrootDirectory, o->chroot_directory);
6cf9b8e
@@ -2406,8 +2411,8 @@ dump_config(ServerOptions *o)
535d341
 	dump_cfg_string(sAuthorizedPrincipalsCommand, o->authorized_principals_command);
535d341
 	dump_cfg_string(sAuthorizedPrincipalsCommandUser, o->authorized_principals_command_user);
535d341
 	dump_cfg_string(sHostKeyAgent, o->host_key_agent);
535d341
-	dump_cfg_string(sKexAlgorithms,
535d341
-	    o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX);
535d341
+	dump_cfg_string(sKexAlgorithms, o->kex_algorithms ? o->kex_algorithms :
535d341
+		FIPS_mode() ? KEX_DEFAULT_KEX_FIPS : KEX_SERVER_KEX);
535d341
 	dump_cfg_string(sHostbasedAcceptedKeyTypes, o->hostbased_key_types ?
535d341
 	    o->hostbased_key_types : KEX_DEFAULT_PK_ALG);
3f55133
 	dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms ?
6cf9b8e
diff -up openssh-7.4p1/ssh.c.fips openssh-7.4p1/ssh.c
6cf9b8e
--- openssh-7.4p1/ssh.c.fips	2016-12-19 05:59:41.000000000 +0100
6cf9b8e
+++ openssh-7.4p1/ssh.c	2016-12-23 16:37:49.299741586 +0100
6cf9b8e
@@ -76,6 +76,8 @@
8028159
 #include <openssl/evp.h>
8028159
 #include <openssl/err.h>
1900351
 #endif
8028159
+#include <openssl/fips.h>
8028159
+#include <fipscheck.h>
8028159
 #include "openbsd-compat/openssl-compat.h"
8028159
 #include "openbsd-compat/sys-queue.h"
8028159
 
6cf9b8e
@@ -530,6 +532,14 @@ main(int ac, char **av)
8028159
 	sanitise_stdfd();
8028159
 
8028159
 	__progname = ssh_get_progname(av[0]);
8028159
+        SSLeay_add_all_algorithms();
8028159
+	if (access("/etc/system-fips", F_OK) == 0)
580f986
+		if (! FIPSCHECK_verify(NULL, NULL)){
8028159
+			if (FIPS_mode())
8028159
+				fatal("FIPS integrity verification test failed.");
8028159
+			else
8028159
+				logit("FIPS integrity verification test failed.");
580f986
+	}
8028159
 
8028159
 #ifndef HAVE_SETPROCTITLE
8028159
 	/* Prepare for later setproctitle emulation */
6cf9b8e
@@ -609,6 +619,9 @@ main(int ac, char **av)
5878ebb
 	    "ACD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
8028159
 		switch (opt) {
8028159
 		case '1':
8028159
+			if (FIPS_mode()) {
8028159
+				fatal("Protocol 1 not allowed in the FIPS mode.");
8028159
+			}
8028159
 			options.protocol = SSH_PROTO_1;
8028159
 			break;
8028159
 		case '2':
6cf9b8e
@@ -964,7 +977,6 @@ main(int ac, char **av)
8028159
 	host_arg = xstrdup(host);
8028159
 
1900351
 #ifdef WITH_OPENSSL
8028159
-	OpenSSL_add_all_algorithms();
8028159
 	ERR_load_crypto_strings();
1900351
 #endif
8028159
 
6cf9b8e
@@ -1175,6 +1187,10 @@ main(int ac, char **av)
8028159
 
8028159
 	seed_rng();
8028159
 
8028159
+	if (FIPS_mode()) {
8028159
+		logit("FIPS mode initialized");
8028159
+	}
8028159
+
8028159
 	if (options.user == NULL)
8028159
 		options.user = xstrdup(pw->pw_name);
8028159
 
6cf9b8e
@@ -1263,6 +1279,12 @@ main(int ac, char **av)
8028159
 
8028159
 	timeout_ms = options.connection_timeout * 1000;
8028159
 
8028159
+	if (FIPS_mode()) {
8028159
+		options.protocol &= SSH_PROTO_2;
8028159
+		if (options.protocol == 0)
8028159
+			fatal("Protocol 2 disabled by configuration but required in the FIPS mode.");
8028159
+	}
8028159
+
8028159
 	/* Open a connection to the remote host. */
8028159
 	if (ssh_connect(host, addrs, &hostaddr, options.port,
8028159
 	    options.address_family, options.connection_attempts,
6cf9b8e
diff -up openssh-7.4p1/sshconnect2.c.fips openssh-7.4p1/sshconnect2.c
6cf9b8e
--- openssh-7.4p1/sshconnect2.c.fips	2016-12-23 16:37:49.275741574 +0100
6cf9b8e
+++ openssh-7.4p1/sshconnect2.c	2016-12-23 16:37:49.299741586 +0100
3f55133
@@ -44,6 +44,8 @@
8028159
 #include <vis.h>
8028159
 #endif
8028159
 
8028159
+#include <openssl/fips.h>
8028159
+
8028159
 #include "openbsd-compat/sys-queue.h"
8028159
 
8028159
 #include "xmalloc.h"
6cf9b8e
@@ -172,21 +174,26 @@ ssh_kex2(char *host, struct sockaddr *ho
8028159
 
8028159
 #ifdef GSSAPI
8028159
 	if (options.gss_keyex) {
8028159
-		/* Add the GSSAPI mechanisms currently supported on this 
8028159
-		 * client to the key exchange algorithm proposal */
9a804fa
-		orig = options.kex_algorithms;
132f8f8
-
132f8f8
-		if (options.gss_trust_dns)
b487a6d
-			gss_host = (char *)get_canonical_hostname(active_state, 1);
132f8f8
-		else
132f8f8
-			gss_host = host;
132f8f8
-
bc4ef0f
-		gss = ssh_gssapi_client_mechanisms(gss_host,
bc4ef0f
-		    options.gss_client_identity, options.gss_kex_algorithms);
132f8f8
-		if (gss) {
132f8f8
-			debug("Offering GSSAPI proposal: %s", gss);
9a804fa
-			xasprintf(&options.kex_algorithms,
132f8f8
-			    "%s,%s", gss, orig);
8028159
+		if (FIPS_mode()) {
8028159
+			logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
8028159
+			options.gss_keyex = 0;
8028159
+		} else {
8028159
+			/* Add the GSSAPI mechanisms currently supported on this
8028159
+			 * client to the key exchange algorithm proposal */
9a804fa
+			orig = options.kex_algorithms;
132f8f8
+
8028159
+			if (options.gss_trust_dns)
b487a6d
+				gss_host = (char *)get_canonical_hostname(active_state, 1);
8028159
+			else
8028159
+				gss_host = host;
132f8f8
+
bc4ef0f
+			gss = ssh_gssapi_client_mechanisms(gss_host,
bc4ef0f
+			    options.gss_client_identity, options.gss_kex_algorithms);
8028159
+			if (gss) {
8028159
+				debug("Offering GSSAPI proposal: %s", gss);
9a804fa
+				xasprintf(&options.kex_algorithms,
8028159
+				    "%s,%s", gss, orig);
8028159
+			}
8028159
 		}
8028159
 	}
8028159
 #endif
6cf9b8e
diff -up openssh-7.4p1/sshd.c.fips openssh-7.4p1/sshd.c
6cf9b8e
--- openssh-7.4p1/sshd.c.fips	2016-12-23 16:37:49.293741583 +0100
6cf9b8e
+++ openssh-7.4p1/sshd.c	2016-12-23 16:37:49.299741586 +0100
1900351
@@ -66,6 +66,7 @@
1900351
 #include <grp.h>
1900351
 #include <pwd.h>
1900351
 #include <signal.h>
1900351
+#include <syslog.h>
1900351
 #include <stdarg.h>
1900351
 #include <stdio.h>
1900351
 #include <stdlib.h>
132f8f8
@@ -77,6 +78,8 @@
8028159
 #include <openssl/dh.h>
8028159
 #include <openssl/bn.h>
8028159
 #include <openssl/rand.h>
8028159
+#include <openssl/fips.h>
8028159
+#include <fipscheck.h>
8028159
 #include "openbsd-compat/openssl-compat.h"
1900351
 #endif
8028159
 
6cf9b8e
@@ -1475,6 +1478,18 @@ main(int ac, char **av)
8028159
 #endif
8028159
 	__progname = ssh_get_progname(av[0]);
8028159
 
8028159
+        SSLeay_add_all_algorithms();
8028159
+	if (access("/etc/system-fips", F_OK) == 0)
8028159
+		if (! FIPSCHECK_verify(NULL, NULL)) {
8028159
+			openlog(__progname, LOG_PID, LOG_AUTHPRIV);
8028159
+			if (FIPS_mode()) {
8028159
+				syslog(LOG_CRIT, "FIPS integrity verification test failed.");
8028159
+				cleanup_exit(255);
8028159
+			}
8028159
+			else
8028159
+				syslog(LOG_INFO, "FIPS integrity verification test failed.");
8028159
+			closelog();
8028159
+		}
8028159
 	/* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
8028159
 	saved_argc = ac;
8028159
 	rexec_argc = ac;
6cf9b8e
@@ -1623,7 +1638,7 @@ main(int ac, char **av)
8028159
 	else
8028159
 		closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
8028159
 
1900351
-#ifdef WITH_OPENSSL
1900351
+#if 0 /* FIPS */
1900351
 	OpenSSL_add_all_algorithms();
1900351
 #endif
1900351
 
6cf9b8e
@@ -1937,6 +1952,10 @@ main(int ac, char **av)
8028159
 	/* Reinitialize the log (because of the fork above). */
8028159
 	log_init(__progname, options.log_level, options.log_facility, log_stderr);
8028159
 
8028159
+	if (FIPS_mode()) {
8028159
+		logit("FIPS mode initialized");
8028159
+	}
8028159
+
8028159
 	/* Chdir to the root directory so that the current disk can be
8028159
 	   unmounted if desired. */
8028159
 	if (chdir("/") == -1)
6cf9b8e
@@ -2309,10 +2328,14 @@ do_ssh2_kex(void)
8028159
 	if (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]) == 0)
8028159
 		orig = NULL;
8028159
 
8028159
-	if (options.gss_keyex)
8028159
-		gss = ssh_gssapi_server_mechanisms();
8028159
-	else
8028159
-		gss = NULL;
8028159
+	if (options.gss_keyex) {
8028159
+		if (FIPS_mode()) {
8028159
+			logit("Disabling GSSAPIKeyExchange. Not usable in FIPS mode");
8028159
+			options.gss_keyex = 0;
8028159
+		} else {
8028159
+			gss = ssh_gssapi_server_mechanisms();
8028159
+		}
8028159
+	}
8028159
 
8028159
 	if (gss && orig)
8028159
 		xasprintf(&newstr, "%s,%s", gss, orig);
6cf9b8e
diff -up openssh-7.4p1/sshkey.c.fips openssh-7.4p1/sshkey.c
6cf9b8e
--- openssh-7.4p1/sshkey.c.fips	2016-12-23 16:37:49.293741583 +0100
6cf9b8e
+++ openssh-7.4p1/sshkey.c	2016-12-23 16:37:49.300741586 +0100
6cf9b8e
@@ -34,6 +34,7 @@
1900351
 #include <openssl/evp.h>
1900351
 #include <openssl/err.h>
1900351
 #include <openssl/pem.h>
1900351
+#include <openssl/fips.h>
132f8f8
 #endif
1900351
 
1900351
 #include "crypto_api.h"
6cf9b8e
@@ -56,6 +57,7 @@
84d3989
 #include "digest.h"
84d3989
 #define SSHKEY_INTERNAL
84d3989
 #include "sshkey.h"
84d3989
+#include "log.h"
84d3989
 #include "match.h"
209c7a8
 #include "xmalloc.h"
84d3989
 
6cf9b8e
@@ -1580,6 +1582,8 @@ rsa_generate_private_key(u_int bits, RSA
1900351
 	}
1900351
 	if (!BN_set_word(f4, RSA_F4) ||
1900351
 	    !RSA_generate_key_ex(private, bits, f4, NULL)) {
1900351
+			if (FIPS_mode())
1900351
+				logit("%s: the key length might be unsupported by FIPS mode approved key generation method", __func__);
1900351
 		ret = SSH_ERR_LIBCRYPTO_ERROR;
1900351
 		goto out;
1900351
 	}