d83721
diff -up vsftpd-3.0.2/parseconf.c.ecdh vsftpd-3.0.2/parseconf.c
d83721
--- vsftpd-3.0.2/parseconf.c.ecdh	2014-06-04 10:25:36.786735755 +0200
d83721
+++ vsftpd-3.0.2/parseconf.c	2014-06-04 10:25:36.812735747 +0200
d83721
@@ -176,6 +176,7 @@ parseconf_str_array[] =
d83721
   { "rsa_cert_file", &tunable_rsa_cert_file },
d83721
   { "dsa_cert_file", &tunable_dsa_cert_file },
d83721
   { "dh_param_file", &tunable_dh_param_file },
d83721
+  { "ecdh_param_file", &tunable_ecdh_param_file },
d83721
   { "ssl_ciphers", &tunable_ssl_ciphers },
d83721
   { "rsa_private_key_file", &tunable_rsa_private_key_file },
d83721
   { "dsa_private_key_file", &tunable_dsa_private_key_file },
d83721
diff -up vsftpd-3.0.2/ssl.c.ecdh vsftpd-3.0.2/ssl.c
d83721
--- vsftpd-3.0.2/ssl.c.ecdh	2014-06-04 10:25:36.786735755 +0200
d83721
+++ vsftpd-3.0.2/ssl.c	2014-06-04 10:25:36.812735747 +0200
d83721
@@ -122,7 +122,7 @@ ssl_init(struct vsf_session* p_sess)
d83721
     {
d83721
       die("SSL: could not allocate SSL context");
d83721
     }
d83721
-    options = SSL_OP_ALL | SSL_OP_SINGLE_DH_USE;
d83721
+    options = SSL_OP_ALL | SSL_OP_SINGLE_DH_USE | SSL_OP_SINGLE_ECDH_USE;
d83721
     if (!tunable_sslv2)
d83721
     {
d83721
       options |= SSL_OP_NO_SSLv2;
d83721
@@ -235,6 +235,41 @@ ssl_init(struct vsf_session* p_sess)
d83721
     
d83721
     SSL_CTX_set_tmp_dh_callback(p_ctx, ssl_tmp_dh_callback);
d83721
 
d83721
+    if (tunable_ecdh_param_file)
d83721
+    {
d83721
+      BIO *bio;
d83721
+      int nid;
d83721
+      EC_GROUP *ecparams = NULL;
d83721
+      EC_KEY *eckey;
d83721
+
d83721
+      if ((bio = BIO_new_file(tunable_ecdh_param_file, "r")) == NULL)
d83721
+        die("SSL: cannot load custom ec params");
d83721
+      else
d83721
+      {
d83721
+        ecparams = PEM_read_bio_ECPKParameters(bio, NULL, NULL, NULL);
d83721
+        BIO_free(bio);
d83721
+
d83721
+        if (ecparams && (nid = EC_GROUP_get_curve_name(ecparams)) &&
d83721
+            (eckey = EC_KEY_new_by_curve_name(nid)))
d83721
+        {
d83721
+          if (!SSL_CTX_set_tmp_ecdh(p_ctx, eckey))
d83721
+            die("SSL: setting custom EC params failed");
d83721
+	}
d83721
+	else
d83721
+        {
d83721
+          die("SSL: getting ec group or key failed");
d83721
+	}
d83721
+      }
d83721
+    }
d83721
+    else
d83721
+    {
d83721
+#if defined(SSL_CTX_set_ecdh_auto)
d83721
+      SSL_CTX_set_ecdh_auto(p_ctx, 1);
d83721
+#else
d83721
+      SSL_CTX_set_tmp_ecdh(p_ctx, EC_KEY_new_by_curve_name(NID_X9_62_prime256v1));
d83721
+#endif
d83721
+    }
d83721
+
d83721
     p_sess->p_ssl_ctx = p_ctx;
d83721
     ssl_inited = 1;
d83721
   }
d83721
diff -up vsftpd-3.0.2/tunables.c.ecdh vsftpd-3.0.2/tunables.c
d83721
--- vsftpd-3.0.2/tunables.c.ecdh	2014-06-04 10:25:36.787735755 +0200
d83721
+++ vsftpd-3.0.2/tunables.c	2014-06-04 10:25:36.813735747 +0200
d83721
@@ -140,6 +140,7 @@ const char* tunable_email_password_file;
d83721
 const char* tunable_rsa_cert_file;
d83721
 const char* tunable_dsa_cert_file;
d83721
 const char* tunable_dh_param_file;
d83721
+const char* tunable_ecdh_param_file;
d83721
 const char* tunable_ssl_ciphers;
d83721
 const char* tunable_rsa_private_key_file;
d83721
 const char* tunable_dsa_private_key_file;
d83721
@@ -288,7 +289,8 @@ tunables_load_defaults()
d83721
                       &tunable_rsa_cert_file);
d83721
   install_str_setting(0, &tunable_dsa_cert_file);
d83721
   install_str_setting(0, &tunable_dh_param_file);
d83721
-  install_str_setting("AES128-SHA:DES-CBC3-SHA:DHE-RSA-AES256-SHA",
d83721
+  install_str_setting(0, &tunable_ecdh_param_file);
d83721
+  install_str_setting("AES128-SHA:DES-CBC3-SHA:DHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA",
d83721
                       &tunable_ssl_ciphers);
d83721
   install_str_setting(0, &tunable_rsa_private_key_file);
d83721
   install_str_setting(0, &tunable_dsa_private_key_file);
d83721
diff -up vsftpd-3.0.2/tunables.h.ecdh vsftpd-3.0.2/tunables.h
d83721
--- vsftpd-3.0.2/tunables.h.ecdh	2014-06-04 10:25:36.787735755 +0200
d83721
+++ vsftpd-3.0.2/tunables.h	2014-06-04 10:25:36.813735747 +0200
d83721
@@ -142,6 +142,7 @@ extern const char* tunable_email_passwor
d83721
 extern const char* tunable_rsa_cert_file;
d83721
 extern const char* tunable_dsa_cert_file;
d83721
 extern const char* tunable_dh_param_file;
d83721
+extern const char* tunable_ecdh_param_file;
d83721
 extern const char* tunable_ssl_ciphers;
d83721
 extern const char* tunable_rsa_private_key_file;
d83721
 extern const char* tunable_dsa_private_key_file;
d83721
diff -up vsftpd-3.0.2/vsftpd.conf.5.ecdh vsftpd-3.0.2/vsftpd.conf.5
d83721
--- vsftpd-3.0.2/vsftpd.conf.5.ecdh	2014-06-04 10:25:36.787735755 +0200
d83721
+++ vsftpd-3.0.2/vsftpd.conf.5	2014-06-04 10:25:36.813735747 +0200
d83721
@@ -890,6 +890,14 @@ ephemeral Diffie-Hellman key exchange in
d83721
 
d83721
 Default: (none - use built in parameters appropriate for certificate key size)
d83721
 .TP
d83721
+.B ecdh_param_file
d83721
+This option specifies the location of custom parameters for ephemeral
d83721
+Elliptic Curve Diffie-Hellman (ECDH) key exchange.
d83721
+
d83721
+Default: (none - use built in parameters, NIST P-256 with OpenSSL 1.0.1 and
d83721
+automatically selected curve based on client preferences with OpenSSL 1.0.2
d83721
+and later)
d83721
+.TP
d83721
 .B email_password_file
d83721
 This option can be used to provide an alternate file for usage by the
d83721
 .BR secure_email_list_enable