GRPC C++  1.66.0
tls_credentials_options.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright 2019 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18 
19 #ifndef GRPCPP_SECURITY_TLS_CREDENTIALS_OPTIONS_H
20 #define GRPCPP_SECURITY_TLS_CREDENTIALS_OPTIONS_H
21 
22 #include <memory>
23 #include <vector>
24 
25 #include <grpc/grpc_security.h>
27 #include <grpc/status.h>
28 #include <grpc/support/log.h>
32 #include <grpcpp/support/config.h>
33 
34 namespace grpc {
35 namespace experimental {
36 
37 // Base class of configurable options specified by users to configure their
38 // certain security features supported in TLS. It is used for experimental
39 // purposes for now and it is subject to change.
41  public:
42  // Constructor for base class TlsCredentialsOptions.
43  //
44  // @param certificate_provider the provider which fetches TLS credentials that
45  // will be used in the TLS handshake
48 
49  // Copy constructor does a deep copy of the underlying pointer. No assignment
50  // permitted
53 
54  // ---- Setters for member fields ----
55  // Sets the certificate provider used to store root certs and identity certs.
57  std::shared_ptr<CertificateProviderInterface> certificate_provider);
58  // Watches the updates of root certificates with name |root_cert_name|.
59  // If used in TLS credentials, setting this field is optional for both the
60  // client side and the server side.
61  // If this is not set on the client side, we will use the root certificates
62  // stored in the default system location, since client side must provide root
63  // certificates in TLS(no matter single-side TLS or mutual TLS).
64  // If this is not set on the server side, we will not watch any root
65  // certificate updates, and assume no root certificates needed for the server
66  // (in the one-side TLS scenario, the server is not required to provide root
67  // certs). We don't support default root certs on server side.
68  void watch_root_certs();
69  // Sets the name of root certificates being watched, if |watch_root_certs| is
70  // called. If not set, an empty string will be used as the name.
71  //
72  // @param root_cert_name the name of root certs being set.
73  void set_root_cert_name(const std::string& root_cert_name);
74  // Watches the updates of identity key-cert pairs with name
75  // |identity_cert_name|. If used in TLS credentials, it is required to be set
76  // on the server side, and optional for the client side(in the one-side
77  // TLS scenario, the client is not required to provide identity certs).
79  // Sets the name of identity key-cert pairs being watched, if
80  // |watch_identity_key_cert_pairs| is called. If not set, an empty string will
81  // be used as the name.
82  //
83  // @param identity_cert_name the name of identity key-cert pairs being set.
84  void set_identity_cert_name(const std::string& identity_cert_name);
85  // Sets the Tls session key logging configuration. If not set, tls
86  // session key logging is disabled. Note that this should be used only for
87  // debugging purposes. It should never be used in a production environment
88  // due to security concerns.
89  //
90  // @param tls_session_key_log_file_path: Path where tls session keys would
91  // be logged.
93  const std::string& tls_session_key_log_file_path);
94  // Sets the certificate verifier used to perform post-handshake peer identity
95  // checks.
97  std::shared_ptr<CertificateVerifier> certificate_verifier);
98  // Sets the options of whether to check the hostname of the peer on a per-call
99  // basis. This is usually used in a combination with virtual hosting at the
100  // client side, where each individual call on a channel can have a different
101  // host associated with it.
102  // This check is intended to verify that the host specified for the individual
103  // call is covered by the cert that the peer presented.
104  // We will perform such checks by default. This should be disabled if
105  // verifiers other than the host name verifier is used.
106  // Deprecated: This function will be removed in the 1.66 release. This will be
107  // replaced by and handled within the custom verifier settings.
108  void set_check_call_host(bool check_call_host);
109 
110  // Deprecated in favor of set_crl_provider. The
111  // crl provider interface provides a significantly more flexible approach to
112  // using CRLs. See gRFC A69 for details.
113  // If set, gRPC will read all hashed x.509 CRL files in the directory and
114  // enforce the CRL files on all TLS handshakes. Only supported for OpenSSL
115  // version > 1.1.
116  // Deprecated: This function will be removed in the 1.66 release. Use the
117  // set_crl_provider function instead.
118  void set_crl_directory(const std::string& path);
119 
120  void set_crl_provider(std::shared_ptr<CrlProvider> crl_provider);
121 
122  // Sets the minimum TLS version that will be negotiated during the TLS
123  // handshake. If not set, the underlying SSL library will use TLS v1.2.
124  // @param tls_version: The minimum TLS version.
125  void set_min_tls_version(grpc_tls_version tls_version);
126  // Sets the maximum TLS version that will be negotiated during the TLS
127  // handshake. If not set, the underlying SSL library will use TLS v1.3.
128  // @param tls_version: The maximum TLS version.
129  void set_max_tls_version(grpc_tls_version tls_version);
130 
131  // ----- Getters for member fields ----
132  // Returns a deep copy of the internal c options. The caller takes ownership
133  // of the returned pointer. This function shall be used only internally.
135 
136  protected:
137  // Returns the internal c options. The caller does not take ownership of the
138  // returned pointer.
140  return c_credentials_options_;
141  }
142 
143  private:
144  std::shared_ptr<CertificateProviderInterface> certificate_provider_;
145  std::shared_ptr<CertificateVerifier> certificate_verifier_;
146  grpc_tls_credentials_options* c_credentials_options_ = nullptr;
147 };
148 
149 // Contains configurable options on the client side.
150 // Client side doesn't need to always use certificate provider. When the
151 // certificate provider is not set, we will use the root certificates stored
152 // in the system default locations, and assume client won't provide any
153 // identity certificates(single side TLS).
154 // It is used for experimental purposes for now and it is subject to change.
156  public:
157  // Sets the decision of whether to do a crypto check on the server certs.
158  // The default is true.
159  void set_verify_server_certs(bool verify_server_certs);
160 
161  private:
162 };
163 
164 // Contains configurable options on the server side.
165 // It is used for experimental purposes for now and it is subject to change.
167  public:
168  // Server side is required to use a provider, because server always needs to
169  // use identity certs.
171  std::shared_ptr<CertificateProviderInterface> certificate_provider)
173  set_certificate_provider(certificate_provider);
174  }
175 
176  // Sets option to request the certificates from the client.
177  // The default is GRPC_SSL_DONT_REQUEST_CLIENT_CERTIFICATE.
179  grpc_ssl_client_certificate_request_type cert_request_type);
180 
181  // Sets whether or not a TLS server should send a list of CA names in the
182  // ServerHello. This list of CA names is read from the server's trust bundle,
183  // so that the client can use this list as a hint to know which certificate it
184  // should send to the server.
185  //
186  // By default, this option is turned off.
187  //
188  // WARNING: This API is extremely dangerous and should not be used. If the
189  // server's trust bundle is too large, then the TLS server will be unable to
190  // form a ServerHello, and hence will be unusable.
191  // Deprecated: This function will be removed in the 1.66 release.
192  void set_send_client_ca_list(bool send_client_ca_list);
193 
194  private:
195 };
196 
197 } // namespace experimental
198 } // namespace grpc
199 
200 #endif // GRPCPP_SECURITY_TLS_CREDENTIALS_OPTIONS_H
grpc::experimental::TlsServerCredentialsOptions::set_cert_request_type
void set_cert_request_type(grpc_ssl_client_certificate_request_type cert_request_type)
grpc
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
grpc::experimental::TlsCredentialsOptions::watch_root_certs
void watch_root_certs()
grpc::experimental::TlsCredentialsOptions::set_check_call_host
void set_check_call_host(bool check_call_host)
grpc::experimental::TlsServerCredentialsOptions::TlsServerCredentialsOptions
TlsServerCredentialsOptions(std::shared_ptr< CertificateProviderInterface > certificate_provider)
Definition: tls_credentials_options.h:170
grpc::experimental::TlsCredentialsOptions::set_crl_provider
void set_crl_provider(std::shared_ptr< CrlProvider > crl_provider)
grpc_security.h
grpc::experimental::TlsCredentialsOptions::set_root_cert_name
void set_root_cert_name(const std::string &root_cert_name)
status.h
grpc::experimental::TlsCredentialsOptions::set_certificate_provider
void set_certificate_provider(std::shared_ptr< CertificateProviderInterface > certificate_provider)
grpc::experimental::TlsCredentialsOptions::c_credentials_options
grpc_tls_credentials_options * c_credentials_options() const
grpc::experimental::TlsChannelCredentialsOptions
Definition: tls_credentials_options.h:155
log.h
tls_crl_provider.h
grpc::experimental::TlsCredentialsOptions::set_max_tls_version
void set_max_tls_version(grpc_tls_version tls_version)
grpc::experimental::TlsCredentialsOptions::mutable_c_credentials_options
grpc_tls_credentials_options * mutable_c_credentials_options()
Definition: tls_credentials_options.h:139
grpc_ssl_client_certificate_request_type
grpc_ssl_client_certificate_request_type
Definition: grpc_security_constants.h:79
tls_certificate_verifier.h
grpc_tls_version
grpc_tls_version
The TLS versions that are supported by the SSL stack.
Definition: grpc_security_constants.h:146
grpc::experimental::TlsCredentialsOptions::~TlsCredentialsOptions
~TlsCredentialsOptions()
grpc::experimental::TlsCredentialsOptions::set_identity_cert_name
void set_identity_cert_name(const std::string &identity_cert_name)
tls_certificate_provider.h
grpc::experimental::TlsChannelCredentialsOptions::set_verify_server_certs
void set_verify_server_certs(bool verify_server_certs)
grpc::experimental::TlsServerCredentialsOptions::set_send_client_ca_list
void set_send_client_ca_list(bool send_client_ca_list)
grpc::experimental::TlsCredentialsOptions::TlsCredentialsOptions
TlsCredentialsOptions()
grpc::experimental::TlsCredentialsOptions::set_min_tls_version
void set_min_tls_version(grpc_tls_version tls_version)
grpc::experimental::TlsServerCredentialsOptions
Definition: tls_credentials_options.h:166
grpc::experimental::TlsCredentialsOptions::watch_identity_key_cert_pairs
void watch_identity_key_cert_pairs()
config.h
grpc::experimental::TlsCredentialsOptions::set_tls_session_key_log_file_path
void set_tls_session_key_log_file_path(const std::string &tls_session_key_log_file_path)
grpc::experimental::TlsCredentialsOptions
Definition: tls_credentials_options.h:40
grpc_security_constants.h
grpc_tls_credentials_options
struct grpc_tls_credentials_options grpc_tls_credentials_options
EXPERIMENTAL API - Subject to change.
Definition: credentials.h:572
grpc::experimental::TlsCredentialsOptions::set_certificate_verifier
void set_certificate_verifier(std::shared_ptr< CertificateVerifier > certificate_verifier)
grpc::experimental::TlsCredentialsOptions::operator=
TlsCredentialsOptions & operator=(const TlsCredentialsOptions &other)=delete
grpc::experimental::TlsCredentialsOptions::set_crl_directory
void set_crl_directory(const std::string &path)