123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- /*
- *
- * Copyright 2015 gRPC authors.
- *
- * 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 "src/core/tsi/transport_security.h"
- #include <string.h>
- #include <string>
- #include <openssl/crypto.h>
- #include "absl/strings/str_format.h"
- #include <grpc/support/alloc.h>
- #include <grpc/support/log.h>
- #include <grpc/support/string_util.h>
- #include "src/core/lib/gpr/string.h"
- #include "src/core/lib/gpr/useful.h"
- #include "src/core/tsi/fake_transport_security.h"
- #include "src/core/tsi/ssl_transport_security.h"
- #include "test/core/util/test_config.h"
- typedef struct {
- /* 1 if success, 0 if failure. */
- int expected;
- /* Host name to match. */
- const char* host_name;
- /* Common name (CN). */
- const char* common_name;
- /* Comma separated list of certificate names to match against. Any occurrence
- of '#' will be replaced with a null character before processing. */
- const char* dns_names;
- /* Comma separated list of IP SANs to match aggainst */
- const char* ip_names;
- } cert_name_test_entry;
- /* Largely inspired from:
- chromium/src/net/cert/x509_certificate_unittest.cc.
- TODO(jboeuf) uncomment test cases as we fix tsi_ssl_peer_matches_name. */
- const cert_name_test_entry cert_name_test_entries[] = {
- {1, "foo.com", "foo.com", nullptr, nullptr},
- {1, "f", "f", nullptr, nullptr},
- {0, "h", "i", nullptr, nullptr},
- {1, "bar.foo.com", "*.foo.com", nullptr, nullptr},
- {1, "www.test.fr", "common.name",
- "*.test.com,*.test.co.uk,*.test.de,*.test.fr", nullptr},
- /*
- {1, "wwW.tESt.fr", "common.name", ",*.*,*.test.de,*.test.FR,www"},
- */
- {0, "f.uk", ".uk", nullptr, nullptr},
- {0, "w.bar.foo.com", "?.bar.foo.com", nullptr, nullptr},
- {0, "www.foo.com", "(www|ftp).foo.com", nullptr, nullptr},
- {0, "www.foo.com", "www.foo.com#", nullptr, nullptr}, /* # = null char. */
- {0, "www.foo.com", "", "www.foo.com#*.foo.com,#,#", nullptr},
- {0, "www.house.example", "ww.house.example", nullptr, nullptr},
- {0, "test.org", "", "www.test.org,*.test.org,*.org", nullptr},
- {0, "w.bar.foo.com", "w*.bar.foo.com", nullptr, nullptr},
- {0, "www.bar.foo.com", "ww*ww.bar.foo.com", nullptr, nullptr},
- {0, "wwww.bar.foo.com", "ww*ww.bar.foo.com", nullptr, nullptr},
- {0, "wwww.bar.foo.com", "w*w.bar.foo.com", nullptr, nullptr},
- {0, "wwww.bar.foo.com", "w*w.bar.foo.c0m", nullptr, nullptr},
- {0, "WALLY.bar.foo.com", "wa*.bar.foo.com", nullptr, nullptr},
- {0, "wally.bar.foo.com", "*Ly.bar.foo.com", nullptr, nullptr},
- /*
- {1, "ww%57.foo.com", "", "www.foo.com"},
- {1, "www&.foo.com", "www%26.foo.com", NULL},
- */
- /* Common name must not be used if subject alternative name was provided. */
- {0, "www.test.co.jp", "www.test.co.jp",
- "*.test.de,*.jp,www.test.co.uk,www.*.co.jp", nullptr},
- {0, "www.bar.foo.com", "www.bar.foo.com",
- "*.foo.com,*.*.foo.com,*.*.bar.foo.com,*..bar.foo.com,", nullptr},
- /* IDN tests */
- {1, "xn--poema-9qae5a.com.br", "xn--poema-9qae5a.com.br", nullptr, nullptr},
- {1, "www.xn--poema-9qae5a.com.br", "*.xn--poema-9qae5a.com.br", nullptr,
- nullptr},
- {0, "xn--poema-9qae5a.com.br", "",
- "*.xn--poema-9qae5a.com.br,"
- "xn--poema-*.com.br,"
- "xn--*-9qae5a.com.br,"
- "*--poema-9qae5a.com.br",
- nullptr},
- /* The following are adapted from the examples quoted from
- http://tools.ietf.org/html/rfc6125#section-6.4.3
- (e.g., *.example.com would match foo.example.com but
- not bar.foo.example.com or example.com). */
- {1, "foo.example.com", "*.example.com", nullptr, nullptr},
- {0, "bar.foo.example.com", "*.example.com", nullptr, nullptr},
- {0, "example.com", "*.example.com", nullptr, nullptr},
- /* Partial wildcards are disallowed, though RFC 2818 rules allow them.
- That is, forms such as baz*.example.net, *baz.example.net, and
- b*z.example.net should NOT match domains. Instead, the wildcard must
- always be the left-most label, and only a single label. */
- {0, "baz1.example.net", "baz*.example.net", nullptr, nullptr},
- {0, "foobaz.example.net", "*baz.example.net", nullptr, nullptr},
- {0, "buzz.example.net", "b*z.example.net", nullptr, nullptr},
- {0, "www.test.example.net", "www.*.example.net", nullptr, nullptr},
- /* Wildcards should not be valid for public registry controlled domains,
- and unknown/unrecognized domains, at least three domain components must
- be present. */
- {1, "www.test.example", "*.test.example", nullptr, nullptr},
- {1, "test.example.co.uk", "*.example.co.uk", nullptr, nullptr},
- {0, "test.example", "*.example", nullptr, nullptr},
- /*
- {0, "example.co.uk", "*.co.uk", NULL},
- */
- {0, "foo.com", "*.com", nullptr, nullptr},
- {0, "foo.us", "*.us", nullptr, nullptr},
- {0, "foo", "*", nullptr, nullptr},
- /* IDN variants of wildcards and registry controlled domains. */
- {1, "www.xn--poema-9qae5a.com.br", "*.xn--poema-9qae5a.com.br", nullptr,
- nullptr},
- {1, "test.example.xn--mgbaam7a8h", "*.example.xn--mgbaam7a8h", nullptr,
- nullptr},
- /*
- {0, "xn--poema-9qae5a.com.br", "*.com.br", NULL},
- */
- {0, "example.xn--mgbaam7a8h", "*.xn--mgbaam7a8h", nullptr, nullptr},
- /* Wildcards should be permissible for 'private' registry controlled
- domains. */
- {1, "www.appspot.com", "*.appspot.com", nullptr, nullptr},
- {1, "foo.s3.amazonaws.com", "*.s3.amazonaws.com", nullptr, nullptr},
- /* Multiple wildcards are not valid. */
- {0, "foo.example.com", "*.*.com", nullptr, nullptr},
- {0, "foo.bar.example.com", "*.bar.*.com", nullptr, nullptr},
- /* Absolute vs relative DNS name tests. Although not explicitly specified
- in RFC 6125, absolute reference names (those ending in a .) should
- match either absolute or relative presented names. */
- {1, "foo.com", "foo.com.", nullptr, nullptr},
- {1, "foo.com.", "foo.com", nullptr, nullptr},
- {1, "foo.com.", "foo.com.", nullptr, nullptr},
- {1, "f", "f.", nullptr, nullptr},
- {1, "f.", "f", nullptr, nullptr},
- {1, "f.", "f.", nullptr, nullptr},
- {1, "www-3.bar.foo.com", "*.bar.foo.com.", nullptr, nullptr},
- {1, "www-3.bar.foo.com.", "*.bar.foo.com", nullptr, nullptr},
- {1, "www-3.bar.foo.com.", "*.bar.foo.com.", nullptr, nullptr},
- {0, ".", ".", nullptr, nullptr},
- {0, "example.com", "*.com.", nullptr, nullptr},
- {0, "example.com.", "*.com", nullptr, nullptr},
- {0, "example.com.", "*.com.", nullptr, nullptr},
- {0, "foo.", "*.", nullptr, nullptr},
- {0, "foo", "*.", nullptr, nullptr},
- /*
- {0, "foo.co.uk", "*.co.uk.", NULL},
- {0, "foo.co.uk.", "*.co.uk.", NULL},
- */
- /* An empty CN is OK. */
- {1, "test.foo.com", "", "test.foo.com", nullptr},
- /* An IP should not be used for the CN. */
- {0, "173.194.195.139", "173.194.195.139", nullptr, nullptr},
- /* An IP can be used if the SAN IP is present */
- {1, "173.194.195.139", "foo.example.com", nullptr, "173.194.195.139"},
- {0, "173.194.195.139", "foo.example.com", nullptr, "8.8.8.8"},
- {0, "173.194.195.139", "foo.example.com", nullptr, "8.8.8.8,8.8.4.4"},
- {1, "173.194.195.139", "foo.example.com", nullptr,
- "8.8.8.8,173.194.195.139"},
- {0, "173.194.195.139", "foo.example.com", nullptr, "173.194.195.13"},
- {0, "2001:db8:a0b:12f0::1", "foo.example.com", nullptr, "173.194.195.13"},
- {1, "2001:db8:a0b:12f0::1", "foo.example.com", nullptr,
- "2001:db8:a0b:12f0::1"},
- {0, "2001:db8:a0b:12f0::1", "foo.example.com", nullptr,
- "2001:db8:a0b:12f0::2"},
- {1, "2001:db8:a0b:12f0::1", "foo.example.com", nullptr,
- "2001:db8:a0b:12f0::2,2001:db8:a0b:12f0::1,8.8.8.8"},
- };
- typedef struct name_list {
- const char* name;
- struct name_list* next;
- } name_list;
- typedef struct {
- size_t name_count;
- char* buffer;
- name_list* names;
- } parsed_names;
- name_list* name_list_add(const char* n) {
- name_list* result = static_cast<name_list*>(gpr_malloc(sizeof(name_list)));
- result->name = n;
- result->next = nullptr;
- return result;
- }
- static parsed_names parse_names(const char* names_str) {
- parsed_names result;
- name_list* current_nl;
- size_t i;
- memset(&result, 0, sizeof(parsed_names));
- if (names_str == nullptr) return result;
- result.name_count = 1;
- result.buffer = gpr_strdup(names_str);
- result.names = name_list_add(result.buffer);
- current_nl = result.names;
- for (i = 0; i < strlen(names_str); i++) {
- if (names_str[i] == ',') {
- result.buffer[i] = '\0';
- result.name_count++;
- i++;
- current_nl->next = name_list_add(result.buffer + i);
- current_nl = current_nl->next;
- }
- }
- return result;
- }
- static void destruct_parsed_names(parsed_names* pdn) {
- name_list* nl = pdn->names;
- if (pdn->buffer != nullptr) gpr_free(pdn->buffer);
- while (nl != nullptr) {
- name_list* to_be_free = nl;
- nl = nl->next;
- gpr_free(to_be_free);
- }
- }
- static char* processed_name(const char* name) {
- char* result = gpr_strdup(name);
- size_t i;
- for (i = 0; i < strlen(result); i++) {
- if (result[i] == '#') {
- result[i] = '\0';
- }
- }
- return result;
- }
- static tsi_peer peer_from_cert_name_test_entry(
- const cert_name_test_entry* entry) {
- size_t i;
- tsi_peer peer;
- name_list* nl;
- parsed_names dns_entries = parse_names(entry->dns_names);
- parsed_names ip_entries = parse_names(entry->ip_names);
- nl = dns_entries.names;
- GPR_ASSERT(tsi_construct_peer(
- 1 + dns_entries.name_count + ip_entries.name_count, &peer) ==
- TSI_OK);
- GPR_ASSERT(tsi_construct_string_peer_property_from_cstring(
- TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, entry->common_name,
- &peer.properties[0]) == TSI_OK);
- i = 1;
- while (nl != nullptr) {
- char* processed = processed_name(nl->name);
- GPR_ASSERT(tsi_construct_string_peer_property(
- TSI_X509_SUBJECT_ALTERNATIVE_NAME_PEER_PROPERTY, processed,
- strlen(nl->name), &peer.properties[i++]) == TSI_OK);
- nl = nl->next;
- gpr_free(processed);
- }
- nl = ip_entries.names;
- while (nl != nullptr) {
- char* processed = processed_name(nl->name);
- GPR_ASSERT(tsi_construct_string_peer_property(
- TSI_X509_SUBJECT_ALTERNATIVE_NAME_PEER_PROPERTY, processed,
- strlen(nl->name), &peer.properties[i++]) == TSI_OK);
- nl = nl->next;
- gpr_free(processed);
- }
- destruct_parsed_names(&dns_entries);
- destruct_parsed_names(&ip_entries);
- return peer;
- }
- std::string cert_name_test_entry_to_string(const cert_name_test_entry* entry) {
- return absl::StrFormat(
- "{ success = %s, host_name = %s, common_name = %s, dns_names = "
- "%s, ip_names = %s}",
- entry->expected ? "true" : "false", entry->host_name, entry->common_name,
- entry->dns_names != nullptr ? entry->dns_names : "",
- entry->ip_names != nullptr ? entry->ip_names : "");
- }
- static void test_peer_matches_name(void) {
- size_t i = 0;
- for (i = 0; i < GPR_ARRAY_SIZE(cert_name_test_entries); i++) {
- const cert_name_test_entry* entry = &cert_name_test_entries[i];
- tsi_peer peer = peer_from_cert_name_test_entry(entry);
- int result = tsi_ssl_peer_matches_name(&peer, entry->host_name);
- if (result != entry->expected) {
- gpr_log(GPR_ERROR, "%s", cert_name_test_entry_to_string(entry).c_str());
- GPR_ASSERT(0); /* Unexpected result. */
- }
- tsi_peer_destruct(&peer);
- }
- }
- typedef struct {
- tsi_result res;
- const char* str;
- } tsi_result_string_pair;
- static void test_result_strings(void) {
- const tsi_result_string_pair results[] = {
- {TSI_OK, "TSI_OK"},
- {TSI_UNKNOWN_ERROR, "TSI_UNKNOWN_ERROR"},
- {TSI_INVALID_ARGUMENT, "TSI_INVALID_ARGUMENT"},
- {TSI_PERMISSION_DENIED, "TSI_PERMISSION_DENIED"},
- {TSI_INCOMPLETE_DATA, "TSI_INCOMPLETE_DATA"},
- {TSI_FAILED_PRECONDITION, "TSI_FAILED_PRECONDITION"},
- {TSI_UNIMPLEMENTED, "TSI_UNIMPLEMENTED"},
- {TSI_INTERNAL_ERROR, "TSI_INTERNAL_ERROR"},
- {TSI_DATA_CORRUPTED, "TSI_DATA_CORRUPTED"},
- {TSI_NOT_FOUND, "TSI_NOT_FOUND"},
- {TSI_PROTOCOL_FAILURE, "TSI_PROTOCOL_FAILURE"},
- {TSI_HANDSHAKE_IN_PROGRESS, "TSI_HANDSHAKE_IN_PROGRESS"},
- {TSI_OUT_OF_RESOURCES, "TSI_OUT_OF_RESOURCES"}};
- size_t i;
- for (i = 0; i < GPR_ARRAY_SIZE(results); i++) {
- GPR_ASSERT(strcmp(results[i].str, tsi_result_to_string(results[i].res)) ==
- 0);
- }
- GPR_ASSERT(strcmp("UNKNOWN", tsi_result_to_string((tsi_result)42)) == 0);
- }
- static void test_protector_invalid_args(void) {
- GPR_ASSERT(tsi_frame_protector_protect(nullptr, nullptr, nullptr, nullptr,
- nullptr) == TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_frame_protector_protect_flush(
- nullptr, nullptr, nullptr, nullptr) == TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_frame_protector_unprotect(nullptr, nullptr, nullptr, nullptr,
- nullptr) == TSI_INVALID_ARGUMENT);
- }
- static void test_handshaker_invalid_args(void) {
- GPR_ASSERT(tsi_handshaker_get_result(nullptr) == TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_handshaker_extract_peer(nullptr, nullptr) ==
- TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_handshaker_create_frame_protector(nullptr, nullptr, nullptr) ==
- TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_handshaker_process_bytes_from_peer(
- nullptr, nullptr, nullptr) == TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_handshaker_get_bytes_to_send_to_peer(
- nullptr, nullptr, nullptr) == TSI_INVALID_ARGUMENT);
- GPR_ASSERT(tsi_handshaker_next(nullptr, nullptr, 0, nullptr, nullptr, nullptr,
- nullptr, nullptr) == TSI_INVALID_ARGUMENT);
- }
- static void test_handshaker_invalid_state(void) {
- tsi_handshaker* h = tsi_create_fake_handshaker(0);
- tsi_peer peer;
- tsi_frame_protector* p;
- GPR_ASSERT(tsi_handshaker_extract_peer(h, &peer) == TSI_FAILED_PRECONDITION);
- GPR_ASSERT(tsi_handshaker_create_frame_protector(h, nullptr, &p) ==
- TSI_FAILED_PRECONDITION);
- tsi_handshaker_destroy(h);
- }
- int main(int argc, char** argv) {
- grpc::testing::TestEnvironment env(argc, argv);
- test_peer_matches_name();
- test_result_strings();
- test_protector_invalid_args();
- test_handshaker_invalid_args();
- test_handshaker_invalid_state();
- return 0;
- }
|