// // // 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. // // #ifndef GRPC_SRC_CORE_TSI_SSL_TRANSPORT_SECURITY_H #define GRPC_SRC_CORE_TSI_SSL_TRANSPORT_SECURITY_H #include <grpc/support/port_platform.h> #include <openssl/x509.h> #include "absl/strings/string_view.h" #include <grpc/grpc_security_constants.h> #include "src/core/tsi/ssl/key_logging/ssl_key_logging.h" #include "src/core/tsi/ssl_transport_security_utils.h" #include "src/core/tsi/transport_security_interface.h" // Value for the TSI_CERTIFICATE_TYPE_PEER_PROPERTY property for X509 certs. #define TSI_X509_CERTIFICATE_TYPE … // This property is of type TSI_PEER_PROPERTY_STRING. #define TSI_X509_SUBJECT_PEER_PROPERTY … #define TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY … #define TSI_X509_SUBJECT_ALTERNATIVE_NAME_PEER_PROPERTY … #define TSI_SSL_SESSION_REUSED_PEER_PROPERTY … #define TSI_X509_PEM_CERT_PROPERTY … #define TSI_X509_PEM_CERT_CHAIN_PROPERTY … #define TSI_SSL_ALPN_SELECTED_PROTOCOL … #define TSI_X509_DNS_PEER_PROPERTY … #define TSI_X509_URI_PEER_PROPERTY … #define TSI_X509_EMAIL_PEER_PROPERTY … #define TSI_X509_IP_PEER_PROPERTY … #define TSI_X509_VERIFIED_ROOT_CERT_SUBECT_PEER_PROPERTY … // --- tsi_ssl_root_certs_store object --- // This object stores SSL root certificates. It can be shared by multiple SSL // context. tsi_ssl_root_certs_store; // Given a NULL-terminated string containing the PEM encoding of the root // certificates, creates a tsi_ssl_root_certs_store object. tsi_ssl_root_certs_store* tsi_ssl_root_certs_store_create( const char* pem_roots); // Destroys the tsi_ssl_root_certs_store object. void tsi_ssl_root_certs_store_destroy(tsi_ssl_root_certs_store* self); // --- tsi_ssl_session_cache object --- // Cache for SSL sessions for sessions resumption. tsi_ssl_session_cache; // Create LRU cache for SSL sessions with \a capacity. tsi_ssl_session_cache* tsi_ssl_session_cache_create_lru(size_t capacity); // Increment reference counter of \a cache. void tsi_ssl_session_cache_ref(tsi_ssl_session_cache* cache); // Decrement reference counter of \a cache. void tsi_ssl_session_cache_unref(tsi_ssl_session_cache* cache); // --- tsi_ssl_key_logger object --- // Experimental SSL Key logging functionality to enable decryption of // packet captures. static constexpr bool tsi_tls_session_key_logging_supported() { … } // --- tsi_ssl_client_handshaker_factory object --- // This object creates a client tsi_handshaker objects implemented in terms of // the TLS 1.2 specificiation. tsi_ssl_client_handshaker_factory; // Object that holds a private key / certificate chain pair in PEM format. struct tsi_ssl_pem_key_cert_pair { … }; // TO BE DEPRECATED. // Creates a client handshaker factory. // - pem_key_cert_pair is a pointer to the object containing client's private // key and certificate chain. This parameter can be NULL if the client does // not have such a key/cert pair. // - pem_roots_cert is the NULL-terminated string containing the PEM encoding of // the server root certificates. // - cipher_suites contains an optional list of the ciphers that the client // supports. The format of this string is described in: // https://www.openssl.org/docs/apps/ciphers.html. // This parameter can be set to NULL to use the default set of ciphers. // TODO(jboeuf): Revisit the format of this parameter. // - alpn_protocols is an array containing the NULL terminated protocol names // that the handshakers created with this factory support. This parameter can // be NULL. // - num_alpn_protocols is the number of alpn protocols and associated lengths // specified. If this parameter is 0, the other alpn parameters must be NULL. // - factory is the address of the factory pointer to be created. // - This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_create_ssl_client_handshaker_factory( const tsi_ssl_pem_key_cert_pair* pem_key_cert_pair, const char* pem_root_certs, const char* cipher_suites, const char** alpn_protocols, uint16_t num_alpn_protocols, tsi_ssl_client_handshaker_factory** factory); struct tsi_ssl_client_handshaker_options { … }; // Creates a client handshaker factory. // - options is the options used to create a factory. // - factory is the address of the factory pointer to be created. // - This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_create_ssl_client_handshaker_factory_with_options( const tsi_ssl_client_handshaker_options* options, tsi_ssl_client_handshaker_factory** factory); // Creates a client handshaker. //- factory is the factory from which the handshaker will be created. //- server_name_indication indicates the name of the server the client is // trying to connect to which will be relayed to the server using the SNI // extension. //- network_bio_buf_size and ssl_bio_buf_size represent BIO pair buffers used in // SSL. The buffer size being 0 translates to 17KB in boringSSL. //- handshaker is the address of the handshaker pointer to be created. //- This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_ssl_client_handshaker_factory_create_handshaker( tsi_ssl_client_handshaker_factory* factory, const char* server_name_indication, size_t network_bio_buf_size, size_t ssl_bio_buf_size, tsi_handshaker** handshaker); // Decrements reference count of the handshaker factory. Handshaker factory will // be destroyed once no references exist. void tsi_ssl_client_handshaker_factory_unref( tsi_ssl_client_handshaker_factory* factory); // --- tsi_ssl_server_handshaker_factory object --- // This object creates a client tsi_handshaker objects implemented in terms of // the TLS 1.2 specificiation. tsi_ssl_server_handshaker_factory; // TO BE DEPRECATED. // Creates a server handshaker factory. // - pem_key_cert_pairs is an array private key / certificate chains of the // server. // - num_key_cert_pairs is the number of items in the pem_key_cert_pairs array. // - pem_root_certs is the NULL-terminated string containing the PEM encoding // of the client root certificates. This parameter may be NULL if the server // does not want the client to be authenticated with SSL. // - cipher_suites contains an optional list of the ciphers that the server // supports. The format of this string is described in: // https://www.openssl.org/docs/apps/ciphers.html. // This parameter can be set to NULL to use the default set of ciphers. // TODO(jboeuf): Revisit the format of this parameter. // - alpn_protocols is an array containing the NULL terminated protocol names // that the handshakers created with this factory support. This parameter can // be NULL. // - num_alpn_protocols is the number of alpn protocols and associated lengths // specified. If this parameter is 0, the other alpn parameters must be NULL. // - factory is the address of the factory pointer to be created. // - This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_create_ssl_server_handshaker_factory( const tsi_ssl_pem_key_cert_pair* pem_key_cert_pairs, size_t num_key_cert_pairs, const char* pem_client_root_certs, int force_client_auth, const char* cipher_suites, const char** alpn_protocols, uint16_t num_alpn_protocols, tsi_ssl_server_handshaker_factory** factory); // TO BE DEPRECATED. // Same as tsi_create_ssl_server_handshaker_factory method except uses // tsi_client_certificate_request_type to support more ways to handle client // certificate authentication. // - client_certificate_request, if set to non-zero will force the client to // authenticate with an SSL cert. Note that this option is ignored if // pem_client_root_certs is NULL or pem_client_roots_certs_size is 0 tsi_result tsi_create_ssl_server_handshaker_factory_ex( const tsi_ssl_pem_key_cert_pair* pem_key_cert_pairs, size_t num_key_cert_pairs, const char* pem_client_root_certs, tsi_client_certificate_request_type client_certificate_request, const char* cipher_suites, const char** alpn_protocols, uint16_t num_alpn_protocols, tsi_ssl_server_handshaker_factory** factory); struct tsi_ssl_server_handshaker_options { … }; // Creates a server handshaker factory. // - options is the options used to create a factory. // - factory is the address of the factory pointer to be created. // - This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_create_ssl_server_handshaker_factory_with_options( const tsi_ssl_server_handshaker_options* options, tsi_ssl_server_handshaker_factory** factory); // Creates a server handshaker. //- factory is the factory from which the handshaker will be created. //- network_bio_buf_size and ssl_bio_buf_size represent BIO pair buffers used in // SSL. The buffer size being 0 translates to 17KB in boringSSL. //- handshaker is the address of the handshaker pointer to be created. //- This method returns TSI_OK on success or TSI_INVALID_PARAMETER in the case // where a parameter is invalid. tsi_result tsi_ssl_server_handshaker_factory_create_handshaker( tsi_ssl_server_handshaker_factory* factory, size_t network_bio_buf_size, size_t ssl_bio_buf_size, tsi_handshaker** handshaker); // Decrements reference count of the handshaker factory. Handshaker factory will // be destroyed once no references exist. void tsi_ssl_server_handshaker_factory_unref( tsi_ssl_server_handshaker_factory* factory); // Util that checks that an ssl peer matches a specific name. // Still TODO(jboeuf): // - handle mixed case. // - handle %encoded chars. // - handle public suffix wildchar more strictly (e.g. *.co.uk) int tsi_ssl_peer_matches_name(const tsi_peer* peer, absl::string_view name); // --- Testing support. --- // These functions and typedefs are not intended to be used outside of testing. // // Base type of client and server handshaker factories. tsi_ssl_handshaker_factory; // Function pointer to handshaker_factory destructor. tsi_ssl_handshaker_factory_destructor; // Virtual table for tsi_ssl_handshaker_factory. struct tsi_ssl_handshaker_factory_vtable { … }; // Set destructor of handshaker_factory to new_destructor, returns previous // destructor. const tsi_ssl_handshaker_factory_vtable* tsi_ssl_handshaker_factory_swap_vtable( tsi_ssl_handshaker_factory* factory, tsi_ssl_handshaker_factory_vtable* new_vtable); // Exposed for testing only. tsi_result tsi_ssl_extract_x509_subject_names_from_pem_cert( const char* pem_cert, tsi_peer* peer); // Exposed for testing only. tsi_result tsi_ssl_get_cert_chain_contents(STACK_OF(X509) * peer_chain, tsi_peer_property* property); #endif // GRPC_SRC_CORE_TSI_SSL_TRANSPORT_SECURITY_H