Update providedCiphersStr_ in one place.
authorXiangyu Bu <xbu@fb.com>
Tue, 11 Jul 2017 17:00:51 +0000 (10:00 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Tue, 11 Jul 2017 17:12:33 +0000 (10:12 -0700)
Summary:
The function `setCipherList` seems to forget to update the data member
`providedCipherString_`. This diff updates `providedCiphersString_` at
a single place `setCiphersOrThrow()`, and adds two test cases to make
sure the derived `SSL*` uses the desired set of ciphers.

Reviewed By: yfeldblum

Differential Revision: D5372758

fbshipit-source-id: 8144ab3bc518b2b9fa8090af62f3bd6475bbbece

folly/io/async/SSLContext.cpp
folly/io/async/test/SSLContextTest.cpp [new file with mode: 0644]

index b38ea2bb7b2ef1435adc6ff79676308d771ee80b..5ef22353efd3cde0e8950278bf7268fa23f1d7ec 100644 (file)
@@ -102,7 +102,6 @@ SSLContext::~SSLContext() {
 }
 
 void SSLContext::ciphers(const std::string& ciphers) {
-  providedCiphersString_ = ciphers;
   setCiphersOrThrow(ciphers);
 }
 
@@ -188,6 +187,7 @@ void SSLContext::setCiphersOrThrow(const std::string& ciphers) {
   if (rc == 0) {
     throw std::runtime_error("SSL_CTX_set_cipher_list: " + getErrors());
   }
+  providedCiphersString_ = ciphers;
 }
 
 void SSLContext::setVerificationOption(const SSLContext::SSLVerifyPeerEnum&
diff --git a/folly/io/async/test/SSLContextTest.cpp b/folly/io/async/test/SSLContextTest.cpp
new file mode 100644 (file)
index 0000000..98f6467
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2017 Facebook, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <folly/io/async/SSLContext.h>
+#include <folly/portability/GTest.h>
+
+using namespace std;
+using namespace testing;
+
+namespace folly {
+
+class SSLContextTest : public testing::Test {
+ public:
+  SSLContext ctx;
+  void verifySSLCipherList(const vector<string>& ciphers);
+};
+
+void SSLContextTest::verifySSLCipherList(const vector<string>& ciphers) {
+  int i = 0;
+  SSL* ssl = ctx.createSSL();
+  for (auto& cipher : ciphers) {
+    ASSERT_STREQ(cipher.c_str(), SSL_get_cipher_list(ssl, i++));
+  }
+  ASSERT_EQ(nullptr, SSL_get_cipher_list(ssl, i));
+  SSL_free(ssl);
+}
+
+TEST_F(SSLContextTest, TestSetCipherString) {
+  ctx.ciphers("AES128-SHA:ECDHE-RSA-AES256-SHA384");
+  verifySSLCipherList({"AES128-SHA", "ECDHE-RSA-AES256-SHA384"});
+}
+
+TEST_F(SSLContextTest, TestSetCipherList) {
+  const vector<string> ciphers = {"ECDHE-RSA-AES128-SHA", "AES256-SHA"};
+  ctx.setCipherList(ciphers);
+  verifySSLCipherList(ciphers);
+}
+}