blob: 7eee7e4ec126bfa567e65907bd7c15cb574927f2 [file] [log] [blame]
khenaidoo5fc5cea2021-08-11 17:39:16 -04001/*
2 *
3 * Copyright 2014 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// Package credentials implements various credentials supported by gRPC library,
20// which encapsulate all the state needed by a client to authenticate with a
21// server and make various assertions, e.g., about the client's identity, role,
22// or whether it is authorized to make a particular call.
23package credentials // import "google.golang.org/grpc/credentials"
24
25import (
26 "context"
27 "errors"
28 "fmt"
29 "net"
30
31 "github.com/golang/protobuf/proto"
32 "google.golang.org/grpc/attributes"
33 icredentials "google.golang.org/grpc/internal/credentials"
34)
35
36// PerRPCCredentials defines the common interface for the credentials which need to
37// attach security information to every RPC (e.g., oauth2).
38type PerRPCCredentials interface {
39 // GetRequestMetadata gets the current request metadata, refreshing
40 // tokens if required. This should be called by the transport layer on
41 // each request, and the data should be populated in headers or other
42 // context. If a status code is returned, it will be used as the status
43 // for the RPC. uri is the URI of the entry point for the request.
44 // When supported by the underlying implementation, ctx can be used for
45 // timeout and cancellation. Additionally, RequestInfo data will be
46 // available via ctx to this call.
47 // TODO(zhaoq): Define the set of the qualified keys instead of leaving
48 // it as an arbitrary string.
49 GetRequestMetadata(ctx context.Context, uri ...string) (map[string]string, error)
50 // RequireTransportSecurity indicates whether the credentials requires
51 // transport security.
52 RequireTransportSecurity() bool
53}
54
55// SecurityLevel defines the protection level on an established connection.
56//
57// This API is experimental.
58type SecurityLevel int
59
60const (
61 // InvalidSecurityLevel indicates an invalid security level.
62 // The zero SecurityLevel value is invalid for backward compatibility.
63 InvalidSecurityLevel SecurityLevel = iota
64 // NoSecurity indicates a connection is insecure.
65 NoSecurity
66 // IntegrityOnly indicates a connection only provides integrity protection.
67 IntegrityOnly
68 // PrivacyAndIntegrity indicates a connection provides both privacy and integrity protection.
69 PrivacyAndIntegrity
70)
71
72// String returns SecurityLevel in a string format.
73func (s SecurityLevel) String() string {
74 switch s {
75 case NoSecurity:
76 return "NoSecurity"
77 case IntegrityOnly:
78 return "IntegrityOnly"
79 case PrivacyAndIntegrity:
80 return "PrivacyAndIntegrity"
81 }
82 return fmt.Sprintf("invalid SecurityLevel: %v", int(s))
83}
84
85// CommonAuthInfo contains authenticated information common to AuthInfo implementations.
86// It should be embedded in a struct implementing AuthInfo to provide additional information
87// about the credentials.
88//
89// This API is experimental.
90type CommonAuthInfo struct {
91 SecurityLevel SecurityLevel
92}
93
94// GetCommonAuthInfo returns the pointer to CommonAuthInfo struct.
95func (c CommonAuthInfo) GetCommonAuthInfo() CommonAuthInfo {
96 return c
97}
98
99// ProtocolInfo provides information regarding the gRPC wire protocol version,
100// security protocol, security protocol version in use, server name, etc.
101type ProtocolInfo struct {
102 // ProtocolVersion is the gRPC wire protocol version.
103 ProtocolVersion string
104 // SecurityProtocol is the security protocol in use.
105 SecurityProtocol string
106 // SecurityVersion is the security protocol version. It is a static version string from the
107 // credentials, not a value that reflects per-connection protocol negotiation. To retrieve
108 // details about the credentials used for a connection, use the Peer's AuthInfo field instead.
109 //
110 // Deprecated: please use Peer.AuthInfo.
111 SecurityVersion string
112 // ServerName is the user-configured server name.
113 ServerName string
114}
115
116// AuthInfo defines the common interface for the auth information the users are interested in.
117// A struct that implements AuthInfo should embed CommonAuthInfo by including additional
118// information about the credentials in it.
119type AuthInfo interface {
120 AuthType() string
121}
122
123// ErrConnDispatched indicates that rawConn has been dispatched out of gRPC
124// and the caller should not close rawConn.
125var ErrConnDispatched = errors.New("credentials: rawConn is dispatched out of gRPC")
126
127// TransportCredentials defines the common interface for all the live gRPC wire
128// protocols and supported transport security protocols (e.g., TLS, SSL).
129type TransportCredentials interface {
130 // ClientHandshake does the authentication handshake specified by the
131 // corresponding authentication protocol on rawConn for clients. It returns
132 // the authenticated connection and the corresponding auth information
133 // about the connection. The auth information should embed CommonAuthInfo
134 // to return additional information about the credentials. Implementations
135 // must use the provided context to implement timely cancellation. gRPC
136 // will try to reconnect if the error returned is a temporary error
137 // (io.EOF, context.DeadlineExceeded or err.Temporary() == true). If the
138 // returned error is a wrapper error, implementations should make sure that
139 // the error implements Temporary() to have the correct retry behaviors.
140 // Additionally, ClientHandshakeInfo data will be available via the context
141 // passed to this call.
142 //
143 // If the returned net.Conn is closed, it MUST close the net.Conn provided.
144 ClientHandshake(context.Context, string, net.Conn) (net.Conn, AuthInfo, error)
145 // ServerHandshake does the authentication handshake for servers. It returns
146 // the authenticated connection and the corresponding auth information about
147 // the connection. The auth information should embed CommonAuthInfo to return additional information
148 // about the credentials.
149 //
150 // If the returned net.Conn is closed, it MUST close the net.Conn provided.
151 ServerHandshake(net.Conn) (net.Conn, AuthInfo, error)
152 // Info provides the ProtocolInfo of this TransportCredentials.
153 Info() ProtocolInfo
154 // Clone makes a copy of this TransportCredentials.
155 Clone() TransportCredentials
156 // OverrideServerName overrides the server name used to verify the hostname on the returned certificates from the server.
157 // gRPC internals also use it to override the virtual hosting name if it is set.
158 // It must be called before dialing. Currently, this is only used by grpclb.
159 OverrideServerName(string) error
160}
161
162// Bundle is a combination of TransportCredentials and PerRPCCredentials.
163//
164// It also contains a mode switching method, so it can be used as a combination
165// of different credential policies.
166//
167// Bundle cannot be used together with individual TransportCredentials.
168// PerRPCCredentials from Bundle will be appended to other PerRPCCredentials.
169//
170// This API is experimental.
171type Bundle interface {
172 TransportCredentials() TransportCredentials
173 PerRPCCredentials() PerRPCCredentials
174 // NewWithMode should make a copy of Bundle, and switch mode. Modifying the
175 // existing Bundle may cause races.
176 //
177 // NewWithMode returns nil if the requested mode is not supported.
178 NewWithMode(mode string) (Bundle, error)
179}
180
181// RequestInfo contains request data attached to the context passed to GetRequestMetadata calls.
182//
183// This API is experimental.
184type RequestInfo struct {
185 // The method passed to Invoke or NewStream for this RPC. (For proto methods, this has the format "/some.Service/Method")
186 Method string
187 // AuthInfo contains the information from a security handshake (TransportCredentials.ClientHandshake, TransportCredentials.ServerHandshake)
188 AuthInfo AuthInfo
189}
190
191// RequestInfoFromContext extracts the RequestInfo from the context if it exists.
192//
193// This API is experimental.
194func RequestInfoFromContext(ctx context.Context) (ri RequestInfo, ok bool) {
195 ri, ok = icredentials.RequestInfoFromContext(ctx).(RequestInfo)
196 return ri, ok
197}
198
199// ClientHandshakeInfo holds data to be passed to ClientHandshake. This makes
200// it possible to pass arbitrary data to the handshaker from gRPC, resolver,
201// balancer etc. Individual credential implementations control the actual
202// format of the data that they are willing to receive.
203//
204// This API is experimental.
205type ClientHandshakeInfo struct {
206 // Attributes contains the attributes for the address. It could be provided
207 // by the gRPC, resolver, balancer etc.
208 Attributes *attributes.Attributes
209}
210
211// ClientHandshakeInfoFromContext returns the ClientHandshakeInfo struct stored
212// in ctx.
213//
214// This API is experimental.
215func ClientHandshakeInfoFromContext(ctx context.Context) ClientHandshakeInfo {
216 chi, _ := icredentials.ClientHandshakeInfoFromContext(ctx).(ClientHandshakeInfo)
217 return chi
218}
219
220// CheckSecurityLevel checks if a connection's security level is greater than or equal to the specified one.
221// It returns success if 1) the condition is satisified or 2) AuthInfo struct does not implement GetCommonAuthInfo() method
222// or 3) CommonAuthInfo.SecurityLevel has an invalid zero value. For 2) and 3), it is for the purpose of backward-compatibility.
223//
224// This API is experimental.
225func CheckSecurityLevel(ai AuthInfo, level SecurityLevel) error {
226 type internalInfo interface {
227 GetCommonAuthInfo() CommonAuthInfo
228 }
229 if ai == nil {
230 return errors.New("AuthInfo is nil")
231 }
232 if ci, ok := ai.(internalInfo); ok {
233 // CommonAuthInfo.SecurityLevel has an invalid value.
234 if ci.GetCommonAuthInfo().SecurityLevel == InvalidSecurityLevel {
235 return nil
236 }
237 if ci.GetCommonAuthInfo().SecurityLevel < level {
238 return fmt.Errorf("requires SecurityLevel %v; connection has %v", level, ci.GetCommonAuthInfo().SecurityLevel)
239 }
240 }
241 // The condition is satisfied or AuthInfo struct does not implement GetCommonAuthInfo() method.
242 return nil
243}
244
245// ChannelzSecurityInfo defines the interface that security protocols should implement
246// in order to provide security info to channelz.
247//
248// This API is experimental.
249type ChannelzSecurityInfo interface {
250 GetSecurityValue() ChannelzSecurityValue
251}
252
253// ChannelzSecurityValue defines the interface that GetSecurityValue() return value
254// should satisfy. This interface should only be satisfied by *TLSChannelzSecurityValue
255// and *OtherChannelzSecurityValue.
256//
257// This API is experimental.
258type ChannelzSecurityValue interface {
259 isChannelzSecurityValue()
260}
261
262// OtherChannelzSecurityValue defines the struct that non-TLS protocol should return
263// from GetSecurityValue(), which contains protocol specific security info. Note
264// the Value field will be sent to users of channelz requesting channel info, and
265// thus sensitive info should better be avoided.
266//
267// This API is experimental.
268type OtherChannelzSecurityValue struct {
269 ChannelzSecurityValue
270 Name string
271 Value proto.Message
272}