/* * nghttp2 - HTTP/2 C Library * * Copyright (c) 2013 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "shrpx_ssl_test.h" #include #include "shrpx_ssl.h" #include "util.h" #include "template.h" using namespace nghttp2; namespace shrpx { void test_shrpx_ssl_create_lookup_tree(void) { auto tree = make_unique(); SSL_CTX *ctxs[] = { SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method())}; const char *hostnames[] = {"example.com", "www.example.org", "*www.example.org", "x*.host.domain", "*yy.host.domain", "nghttp2.sourceforge.net", "sourceforge.net", "sourceforge.net", // duplicate "*.foo.bar", // oo.bar is suffix of *.foo.bar "oo.bar"}; int num = array_size(ctxs); for (int i = 0; i < num; ++i) { tree->add_cert(ctxs[i], hostnames[i], strlen(hostnames[i])); } CU_ASSERT(ctxs[0] == tree->lookup(hostnames[0], strlen(hostnames[0]))); CU_ASSERT(ctxs[1] == tree->lookup(hostnames[1], strlen(hostnames[1]))); const char h1[] = "2www.example.org"; CU_ASSERT(ctxs[2] == tree->lookup(h1, strlen(h1))); const char h2[] = "www2.example.org"; CU_ASSERT(0 == tree->lookup(h2, strlen(h2))); const char h3[] = "x1.host.domain"; CU_ASSERT(ctxs[3] == tree->lookup(h3, strlen(h3))); // Does not match *yy.host.domain, because * must match at least 1 // character. const char h4[] = "yy.Host.domain"; CU_ASSERT(0 == tree->lookup(h4, strlen(h4))); const char h5[] = "zyy.host.domain"; CU_ASSERT(ctxs[4] == tree->lookup(h5, strlen(h5))); CU_ASSERT(0 == tree->lookup("", 0)); CU_ASSERT(ctxs[5] == tree->lookup(hostnames[5], strlen(hostnames[5]))); CU_ASSERT(ctxs[6] == tree->lookup(hostnames[6], strlen(hostnames[6]))); const char h6[] = "pdylay.sourceforge.net"; for (int i = 0; i < 7; ++i) { CU_ASSERT(0 == tree->lookup(h6 + i, strlen(h6) - i)); } const char h7[] = "x.foo.bar"; CU_ASSERT(ctxs[8] == tree->lookup(h7, strlen(h7))); CU_ASSERT(ctxs[9] == tree->lookup(hostnames[9], strlen(hostnames[9]))); for (int i = 0; i < num; ++i) { SSL_CTX_free(ctxs[i]); } SSL_CTX *ctxs2[] = { SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method()), SSL_CTX_new(SSLv23_method())}; const char *names[] = {"rab", "zab", "zzub", "ab"}; num = array_size(ctxs2); tree = make_unique(); for (int i = 0; i < num; ++i) { tree->add_cert(ctxs2[i], names[i], strlen(names[i])); } for (int i = 0; i < num; ++i) { CU_ASSERT(ctxs2[i] == tree->lookup(names[i], strlen(names[i]))); } for (int i = 0; i < num; ++i) { SSL_CTX_free(ctxs2[i]); } } void test_shrpx_ssl_cert_lookup_tree_add_cert_from_file(void) { int rv; ssl::CertLookupTree tree; auto ssl_ctx = SSL_CTX_new(SSLv23_method()); const char certfile[] = NGHTTP2_TESTS_DIR "/testdata/cacert.pem"; rv = ssl::cert_lookup_tree_add_cert_from_file(&tree, ssl_ctx, certfile); CU_ASSERT(0 == rv); const char localhost[] = "localhost"; CU_ASSERT(ssl_ctx == tree.lookup(localhost, sizeof(localhost) - 1)); SSL_CTX_free(ssl_ctx); } } // namespace shrpx