GRPC C++  1.64.0
credentials.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright 2015 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_CREDENTIALS_H
20 #define GRPCPP_SECURITY_CREDENTIALS_H
21 
22 #include <map>
23 #include <memory>
24 #include <vector>
25 
27 #include <grpcpp/channel.h>
33 #include <grpcpp/support/status.h>
35 
36 struct grpc_call;
37 
38 namespace grpc {
39 class CallCredentials;
40 class ChannelCredentials;
41 namespace testing {
42 std::string GetOauth2AccessToken();
43 }
44 
45 std::shared_ptr<Channel> CreateCustomChannel(
46  const grpc::string& target,
47  const std::shared_ptr<grpc::ChannelCredentials>& creds,
48  const grpc::ChannelArguments& args);
49 
50 namespace experimental {
51 std::shared_ptr<grpc::Channel> CreateCustomChannelWithInterceptors(
52  const grpc::string& target,
53  const std::shared_ptr<grpc::ChannelCredentials>& creds,
54  const grpc::ChannelArguments& args,
55  std::vector<
56  std::unique_ptr<grpc::experimental::ClientInterceptorFactoryInterface>>
57  interceptor_creators);
58 } // namespace experimental
59 
61 std::shared_ptr<ChannelCredentials> XdsCredentials(
62  const std::shared_ptr<ChannelCredentials>& fallback_creds);
63 
71  public:
72  ~ChannelCredentials() override;
73 
74  protected:
76 
77  grpc_channel_credentials* c_creds() { return c_creds_; }
78 
79  private:
80  friend std::shared_ptr<grpc::Channel> CreateCustomChannel(
81  const grpc::string& target,
82  const std::shared_ptr<grpc::ChannelCredentials>& creds,
83  const grpc::ChannelArguments& args);
84  friend std::shared_ptr<grpc::Channel>
86  const grpc::string& target,
87  const std::shared_ptr<grpc::ChannelCredentials>& creds,
88  const grpc::ChannelArguments& args,
89  std::vector<std::unique_ptr<
91  interceptor_creators);
92  friend std::shared_ptr<ChannelCredentials> CompositeChannelCredentials(
93  const std::shared_ptr<ChannelCredentials>& channel_creds,
94  const std::shared_ptr<CallCredentials>& call_creds);
96 
97  virtual std::shared_ptr<Channel> CreateChannelImpl(
98  const grpc::string& target, const ChannelArguments& args) {
99  return CreateChannelWithInterceptors(target, args, {});
100  }
101 
102  virtual std::shared_ptr<Channel> CreateChannelWithInterceptors(
103  const grpc::string& target, const ChannelArguments& args,
104  std::vector<std::unique_ptr<
106  interceptor_creators);
107 
108  grpc_channel_credentials* const c_creds_;
109 };
110 
116  public:
117  ~CallCredentials() override;
118 
120  bool ApplyToCall(grpc_call* call);
121 
122  grpc::string DebugString();
123 
124  protected:
125  explicit CallCredentials(grpc_call_credentials* creds);
126 
127  private:
128  friend std::shared_ptr<ChannelCredentials> CompositeChannelCredentials(
129  const std::shared_ptr<ChannelCredentials>& channel_creds,
130  const std::shared_ptr<CallCredentials>& call_creds);
132  friend std::string grpc::testing::GetOauth2AccessToken();
133 
134  grpc_call_credentials* c_creds_ = nullptr;
135 };
136 
144  grpc::string pem_root_certs;
145 
148  grpc::string pem_private_key;
149 
153  grpc::string pem_cert_chain;
154 };
155 
156 // Factories for building different types of Credentials The functions may
157 // return empty shared_ptr when credentials cannot be created. If a
158 // Credentials pointer is returned, it can still be invalid when used to create
159 // a channel. A lame channel will be created then and all rpcs will fail on it.
160 
167 std::shared_ptr<ChannelCredentials> GoogleDefaultCredentials();
168 
170 std::shared_ptr<ChannelCredentials> SslCredentials(
171  const SslCredentialsOptions& options);
172 
179 std::shared_ptr<CallCredentials> GoogleComputeEngineCredentials();
180 
181 constexpr long kMaxAuthTokenLifetimeSecs = 3600;
182 
188 std::shared_ptr<CallCredentials> ServiceAccountJWTAccessCredentials(
189  const grpc::string& json_key,
190  long token_lifetime_seconds = kMaxAuthTokenLifetimeSecs);
191 
200 std::shared_ptr<CallCredentials> GoogleRefreshTokenCredentials(
201  const grpc::string& json_refresh_token);
202 
211 std::shared_ptr<CallCredentials> AccessTokenCredentials(
212  const grpc::string& access_token);
213 
220 std::shared_ptr<CallCredentials> GoogleIAMCredentials(
221  const grpc::string& authorization_token,
222  const grpc::string& authority_selector);
223 
226 std::shared_ptr<ChannelCredentials> CompositeChannelCredentials(
227  const std::shared_ptr<ChannelCredentials>& channel_creds,
228  const std::shared_ptr<CallCredentials>& call_creds);
229 
231 std::shared_ptr<CallCredentials> CompositeCallCredentials(
232  const std::shared_ptr<CallCredentials>& creds1,
233  const std::shared_ptr<CallCredentials>& creds2);
234 
236 std::shared_ptr<ChannelCredentials> InsecureChannelCredentials();
237 
240  public:
242 
245  virtual bool IsBlocking() const { return true; }
246 
248  virtual const char* GetType() const { return ""; }
249 
255  virtual grpc::Status GetMetadata(
256  grpc::string_ref service_url, grpc::string_ref method_name,
257  const grpc::AuthContext& channel_auth_context,
258  std::multimap<grpc::string, grpc::string>* metadata) = 0;
259 
260  virtual grpc::string DebugString() {
261  return "MetadataCredentialsPlugin did not provide a debug string";
262  }
263 };
264 
265 std::shared_ptr<CallCredentials> MetadataCredentialsFromPlugin(
266  std::unique_ptr<MetadataCredentialsPlugin> plugin);
267 
271 std::shared_ptr<CallCredentials> ExternalAccountCredentials(
272  const grpc::string& json_string, const std::vector<grpc::string>& scopes);
273 
274 namespace experimental {
275 
282  grpc::string token_exchange_service_uri; // Required.
283  grpc::string resource; // Optional.
284  grpc::string audience; // Optional.
285  grpc::string scope; // Optional.
286  grpc::string requested_token_type; // Optional.
287  grpc::string subject_token_path; // Required.
288  grpc::string subject_token_type; // Required.
289  grpc::string actor_token_path; // Optional.
290  grpc::string actor_token_type; // Optional.
291 };
292 
293 grpc::Status StsCredentialsOptionsFromJson(const std::string& json_string,
294  StsCredentialsOptions* options);
295 
300 
301 std::shared_ptr<CallCredentials> StsCredentials(
302  const StsCredentialsOptions& options);
303 
304 std::shared_ptr<CallCredentials> MetadataCredentialsFromPlugin(
305  std::unique_ptr<MetadataCredentialsPlugin> plugin,
306  grpc_security_level min_security_level);
307 
313  std::vector<grpc::string> target_service_accounts;
314 };
315 
317 std::shared_ptr<ChannelCredentials> AltsCredentials(
318  const AltsCredentialsOptions& options);
319 
321 std::shared_ptr<ChannelCredentials> LocalCredentials(
323 
325 std::shared_ptr<ChannelCredentials> TlsCredentials(
326  const TlsChannelCredentialsOptions& options);
327 
328 } // namespace experimental
329 } // namespace grpc
330 
331 #endif // GRPCPP_SECURITY_CREDENTIALS_H
grpc::experimental::StsCredentials
std::shared_ptr< CallCredentials > StsCredentials(const StsCredentialsOptions &options)
grpc::experimental::TlsCredentials
std::shared_ptr< ChannelCredentials > TlsCredentials(const TlsChannelCredentialsOptions &options)
Builds TLS Credentials given TLS options.
grpc::XdsCredentials
std::shared_ptr< ChannelCredentials > XdsCredentials(const std::shared_ptr< ChannelCredentials > &fallback_creds)
Builds XDS Credentials.
grpc::string_ref
This class is a non owning reference to a string.
Definition: string_ref.h:41
grpc::experimental::StsCredentialsOptionsFromJson
grpc::Status StsCredentialsOptionsFromJson(const std::string &json_string, StsCredentialsOptions *options)
tls_credentials_options.h
grpc::SslCredentialsOptions::pem_cert_chain
grpc::string pem_cert_chain
The buffer containing the PEM encoding of the client's certificate chain.
Definition: credentials.h:153
grpc::experimental::StsCredentialsOptions
Options for creating STS Oauth Token Exchange credentials following the IETF draft https://tools....
Definition: credentials.h:281
grpc::SslCredentialsOptions::pem_private_key
grpc::string pem_private_key
The buffer containing the PEM encoding of the client's private key.
Definition: credentials.h:148
grpc
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
grpc::CallCredentials::ApplyToCall
bool ApplyToCall(grpc_call *call)
Apply this instance's credentials to call.
grpc::ChannelCredentials::CompositeChannelCredentials
friend std::shared_ptr< ChannelCredentials > CompositeChannelCredentials(const std::shared_ptr< ChannelCredentials > &channel_creds, const std::shared_ptr< CallCredentials > &call_creds)
Combines a channel credentials and a call credentials into a composite channel credentials.
grpc::GoogleDefaultCredentials
std::shared_ptr< ChannelCredentials > GoogleDefaultCredentials()
Builds credentials with reasonable defaults.
grpc::SslCredentialsOptions::pem_root_certs
grpc::string pem_root_certs
The buffer containing the PEM encoding of the server root certificates.
Definition: credentials.h:144
grpc::experimental::AltsCredentials
std::shared_ptr< ChannelCredentials > AltsCredentials(const AltsCredentialsOptions &options)
Builds ALTS Credentials given ALTS specific options.
grpc::MetadataCredentialsPlugin
User defined metadata credentials.
Definition: credentials.h:239
grpc::MetadataCredentialsPlugin::GetType
virtual const char * GetType() const
Type of credentials this plugin is implementing.
Definition: credentials.h:248
grpc::MetadataCredentialsPlugin::IsBlocking
virtual bool IsBlocking() const
If this method returns true, the Process function will be scheduled in a different thread from the on...
Definition: credentials.h:245
grpc::MetadataCredentialsPlugin::~MetadataCredentialsPlugin
virtual ~MetadataCredentialsPlugin()
Definition: credentials.h:241
grpc::experimental::StsCredentialsOptionsFromEnv
grpc::Status StsCredentialsOptionsFromEnv(StsCredentialsOptions *options)
Creates STS credentials options from the $STS_CREDENTIALS environment variable.
grpc::CallCredentials::CompositeChannelCredentials
friend std::shared_ptr< ChannelCredentials > CompositeChannelCredentials(const std::shared_ptr< ChannelCredentials > &channel_creds, const std::shared_ptr< CallCredentials > &call_creds)
Combines a channel credentials and a call credentials into a composite channel credentials.
grpc::SslCredentialsOptions
Options used to build SslCredentials.
Definition: credentials.h:138
grpc::CallCredentials::DebugString
grpc::string DebugString()
grpc::SslCredentials
std::shared_ptr< ChannelCredentials > SslCredentials(const SslCredentialsOptions &options)
Builds SSL Credentials given SSL specific options.
grpc::experimental::MetadataCredentialsFromPlugin
std::shared_ptr< CallCredentials > MetadataCredentialsFromPlugin(std::unique_ptr< MetadataCredentialsPlugin > plugin, grpc_security_level min_security_level)
status.h
grpc::experimental::StsCredentialsOptions::scope
grpc::string scope
Definition: credentials.h:285
grpc::testing::GetOauth2AccessToken
std::string GetOauth2AccessToken()
grpc::ChannelCredentials::XdsChannelCredentialsImpl
friend class XdsChannelCredentialsImpl
Definition: credentials.h:95
grpc::experimental::StsCredentialsOptions::subject_token_path
grpc::string subject_token_path
Definition: credentials.h:287
grpc::CallCredentials::~CallCredentials
~CallCredentials() override
grpc::ChannelArguments
Options for channel creation.
Definition: channel_arguments.h:39
grpc::experimental::StsCredentialsOptions::token_exchange_service_uri
grpc::string token_exchange_service_uri
Definition: credentials.h:282
grpc::ServiceAccountJWTAccessCredentials
std::shared_ptr< CallCredentials > ServiceAccountJWTAccessCredentials(const grpc::string &json_key, long token_lifetime_seconds=kMaxAuthTokenLifetimeSecs)
Builds Service Account JWT Access credentials.
grpc::Status
Did it work? If it didn't, why?
Definition: status.h:34
client_interceptor.h
grpc::experimental::AltsCredentialsOptions
Options used to build AltsCredentials.
Definition: credentials.h:309
grpc::CallCredentials::CompositeCallCredentialsImpl
friend class CompositeCallCredentialsImpl
Definition: credentials.h:131
grpc::CallCredentials
A call credentials object encapsulates the state needed by a client to authenticate with a server for...
Definition: credentials.h:115
grpc::experimental::StsCredentialsOptions::subject_token_type
grpc::string subject_token_type
Definition: credentials.h:288
grpc::ChannelCredentials::c_creds
grpc_channel_credentials * c_creds()
Definition: credentials.h:77
channel_arguments.h
grpc_channel_credentials
struct grpc_channel_credentials grpc_channel_credentials
— grpc_channel_credentials object.
Definition: grpc.h:287
grpc::experimental::TlsChannelCredentialsOptions
Definition: tls_credentials_options.h:151
grpc::ChannelCredentials::~ChannelCredentials
~ChannelCredentials() override
grpc::MetadataCredentialsFromPlugin
std::shared_ptr< CallCredentials > MetadataCredentialsFromPlugin(std::unique_ptr< MetadataCredentialsPlugin > plugin)
grpc::experimental::StsCredentialsOptions::audience
grpc::string audience
Definition: credentials.h:284
grpc_call
struct grpc_call grpc_call
A Call represents an RPC.
Definition: grpc_types.h:69
grpc_call_credentials
struct grpc_call_credentials grpc_call_credentials
— grpc_call_credentials object —
Definition: credentials.h:38
grpc::ChannelCredentials::ChannelCredentials
ChannelCredentials(grpc_channel_credentials *creds)
grpc::experimental::StsCredentialsOptions::resource
grpc::string resource
Definition: credentials.h:283
grpc::AuthContext
Class encapsulating the Authentication Information.
Definition: auth_context.h:70
grpc::experimental::LocalCredentials
std::shared_ptr< ChannelCredentials > LocalCredentials(grpc_local_connect_type type)
Builds Local Credentials.
channel.h
grpc::internal::GrpcLibrary
Classes that require gRPC to be initialized should inherit from this class.
Definition: grpc_library.h:32
grpc::ExternalAccountCredentials
std::shared_ptr< CallCredentials > ExternalAccountCredentials(const grpc::string &json_string, const std::vector< grpc::string > &scopes)
Builds External Account credentials.
grpc::GoogleComputeEngineCredentials
std::shared_ptr< CallCredentials > GoogleComputeEngineCredentials()
Builds credentials for use when running in GCE.
grpc::experimental::StsCredentialsOptions::actor_token_type
grpc::string actor_token_type
Definition: credentials.h:290
grpc::experimental::AltsCredentialsOptions::target_service_accounts
std::vector< grpc::string > target_service_accounts
service accounts of target endpoint that will be acceptable by the client.
Definition: credentials.h:313
grpc_security_level
grpc_security_level
Definition: grpc_security_constants.h:131
grpc::InsecureChannelCredentials
std::shared_ptr< ChannelCredentials > InsecureChannelCredentials()
Credentials for an unencrypted, unauthenticated channel.
grpc::GoogleRefreshTokenCredentials
std::shared_ptr< CallCredentials > GoogleRefreshTokenCredentials(const grpc::string &json_refresh_token)
Builds refresh token credentials.
grpc::experimental::StsCredentialsOptions::requested_token_type
grpc::string requested_token_type
Definition: credentials.h:286
grpc_library.h
grpc::experimental::ClientInterceptorFactoryInterface
Definition: client_interceptor.h:49
grpc::experimental::CreateCustomChannelWithInterceptors
std::shared_ptr< Channel > CreateCustomChannelWithInterceptors(const grpc::string &target, const std::shared_ptr< ChannelCredentials > &creds, const ChannelArguments &args, std::vector< std::unique_ptr< experimental::ClientInterceptorFactoryInterface >> interceptor_creators)
Create a new custom Channel pointing to target with interceptors being invoked per call.
grpc::ChannelCredentials
A channel credentials object encapsulates all the state needed by a client to authenticate with a ser...
Definition: credentials.h:70
grpc::ChannelCredentials::CreateCustomChannel
friend std::shared_ptr< grpc::Channel > CreateCustomChannel(const grpc::string &target, const std::shared_ptr< grpc::ChannelCredentials > &creds, const grpc::ChannelArguments &args)
grpc::CreateCustomChannel
std::shared_ptr< Channel > CreateCustomChannel(const grpc::string &target, const std::shared_ptr< ChannelCredentials > &creds, const ChannelArguments &args)
Create a new custom Channel pointing to target.
grpc_security_constants.h
grpc::CompositeChannelCredentials
std::shared_ptr< ChannelCredentials > CompositeChannelCredentials(const std::shared_ptr< ChannelCredentials > &channel_creds, const std::shared_ptr< CallCredentials > &call_creds)
Combines a channel credentials and a call credentials into a composite channel credentials.
grpc::CompositeCallCredentials
std::shared_ptr< CallCredentials > CompositeCallCredentials(const std::shared_ptr< CallCredentials > &creds1, const std::shared_ptr< CallCredentials > &creds2)
Combines two call credentials objects into a composite call credentials.
grpc::kMaxAuthTokenLifetimeSecs
constexpr long kMaxAuthTokenLifetimeSecs
Definition: credentials.h:181
grpc::AccessTokenCredentials
std::shared_ptr< CallCredentials > AccessTokenCredentials(const grpc::string &access_token)
Builds access token credentials.
grpc::experimental::StsCredentialsOptions::actor_token_path
grpc::string actor_token_path
Definition: credentials.h:289
auth_context.h
grpc_local_connect_type
grpc_local_connect_type
Type of local connections for which local channel/server credentials will be applied.
Definition: grpc_security_constants.h:143
grpc::MetadataCredentialsPlugin::DebugString
virtual grpc::string DebugString()
Definition: credentials.h:260
grpc::MetadataCredentialsPlugin::GetMetadata
virtual grpc::Status GetMetadata(grpc::string_ref service_url, grpc::string_ref method_name, const grpc::AuthContext &channel_auth_context, std::multimap< grpc::string, grpc::string > *metadata)=0
Gets the auth metatada produced by this plugin.
string_ref.h
grpc::GoogleIAMCredentials
std::shared_ptr< CallCredentials > GoogleIAMCredentials(const grpc::string &authorization_token, const grpc::string &authority_selector)
Builds IAM credentials.
grpc::CallCredentials::CallCredentials
CallCredentials(grpc_call_credentials *creds)