credentials.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. /*
  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. // Package credentials implements various credentials supported by gRPC library,
  19. // which encapsulate all the state needed by a client to authenticate with a
  20. // server and make various assertions, e.g., about the client's identity, role,
  21. // or whether it is authorized to make a particular call.
  22. package credentials // import "google.golang.org/grpc/credentials"
  23. import (
  24. "crypto/tls"
  25. "crypto/x509"
  26. "errors"
  27. "fmt"
  28. "io/ioutil"
  29. "net"
  30. "strings"
  31. "github.com/golang/protobuf/proto"
  32. "golang.org/x/net/context"
  33. )
  34. // alpnProtoStr are the specified application level protocols for gRPC.
  35. var alpnProtoStr = []string{"h2"}
  36. // PerRPCCredentials defines the common interface for the credentials which need to
  37. // attach security information to every RPC (e.g., oauth2).
  38. type 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.
  46. // TODO(zhaoq): Define the set of the qualified keys instead of leaving
  47. // it as an arbitrary string.
  48. GetRequestMetadata(ctx context.Context, uri ...string) (map[string]string, error)
  49. // RequireTransportSecurity indicates whether the credentials requires
  50. // transport security.
  51. RequireTransportSecurity() bool
  52. }
  53. // ProtocolInfo provides information regarding the gRPC wire protocol version,
  54. // security protocol, security protocol version in use, server name, etc.
  55. type ProtocolInfo struct {
  56. // ProtocolVersion is the gRPC wire protocol version.
  57. ProtocolVersion string
  58. // SecurityProtocol is the security protocol in use.
  59. SecurityProtocol string
  60. // SecurityVersion is the security protocol version.
  61. SecurityVersion string
  62. // ServerName is the user-configured server name.
  63. ServerName string
  64. }
  65. // AuthInfo defines the common interface for the auth information the users are interested in.
  66. type AuthInfo interface {
  67. AuthType() string
  68. }
  69. // ErrConnDispatched indicates that rawConn has been dispatched out of gRPC
  70. // and the caller should not close rawConn.
  71. var ErrConnDispatched = errors.New("credentials: rawConn is dispatched out of gRPC")
  72. // TransportCredentials defines the common interface for all the live gRPC wire
  73. // protocols and supported transport security protocols (e.g., TLS, SSL).
  74. type TransportCredentials interface {
  75. // ClientHandshake does the authentication handshake specified by the corresponding
  76. // authentication protocol on rawConn for clients. It returns the authenticated
  77. // connection and the corresponding auth information about the connection.
  78. // Implementations must use the provided context to implement timely cancellation.
  79. // gRPC will try to reconnect if the error returned is a temporary error
  80. // (io.EOF, context.DeadlineExceeded or err.Temporary() == true).
  81. // If the returned error is a wrapper error, implementations should make sure that
  82. // the error implements Temporary() to have the correct retry behaviors.
  83. //
  84. // If the returned net.Conn is closed, it MUST close the net.Conn provided.
  85. ClientHandshake(context.Context, string, net.Conn) (net.Conn, AuthInfo, error)
  86. // ServerHandshake does the authentication handshake for servers. It returns
  87. // the authenticated connection and the corresponding auth information about
  88. // the connection.
  89. //
  90. // If the returned net.Conn is closed, it MUST close the net.Conn provided.
  91. ServerHandshake(net.Conn) (net.Conn, AuthInfo, error)
  92. // Info provides the ProtocolInfo of this TransportCredentials.
  93. Info() ProtocolInfo
  94. // Clone makes a copy of this TransportCredentials.
  95. Clone() TransportCredentials
  96. // OverrideServerName overrides the server name used to verify the hostname on the returned certificates from the server.
  97. // gRPC internals also use it to override the virtual hosting name if it is set.
  98. // It must be called before dialing. Currently, this is only used by grpclb.
  99. OverrideServerName(string) error
  100. }
  101. // TLSInfo contains the auth information for a TLS authenticated connection.
  102. // It implements the AuthInfo interface.
  103. type TLSInfo struct {
  104. State tls.ConnectionState
  105. }
  106. // AuthType returns the type of TLSInfo as a string.
  107. func (t TLSInfo) AuthType() string {
  108. return "tls"
  109. }
  110. // GetChannelzSecurityValue returns security info requested by channelz.
  111. func (t TLSInfo) GetChannelzSecurityValue() ChannelzSecurityValue {
  112. v := &TLSChannelzSecurityValue{
  113. StandardName: cipherSuiteLookup[t.State.CipherSuite],
  114. }
  115. // Currently there's no way to get LocalCertificate info from tls package.
  116. if len(t.State.PeerCertificates) > 0 {
  117. v.RemoteCertificate = t.State.PeerCertificates[0].Raw
  118. }
  119. return v
  120. }
  121. // tlsCreds is the credentials required for authenticating a connection using TLS.
  122. type tlsCreds struct {
  123. // TLS configuration
  124. config *tls.Config
  125. }
  126. func (c tlsCreds) Info() ProtocolInfo {
  127. return ProtocolInfo{
  128. SecurityProtocol: "tls",
  129. SecurityVersion: "1.2",
  130. ServerName: c.config.ServerName,
  131. }
  132. }
  133. func (c *tlsCreds) ClientHandshake(ctx context.Context, authority string, rawConn net.Conn) (_ net.Conn, _ AuthInfo, err error) {
  134. // use local cfg to avoid clobbering ServerName if using multiple endpoints
  135. cfg := cloneTLSConfig(c.config)
  136. if cfg.ServerName == "" {
  137. colonPos := strings.LastIndex(authority, ":")
  138. if colonPos == -1 {
  139. colonPos = len(authority)
  140. }
  141. cfg.ServerName = authority[:colonPos]
  142. }
  143. conn := tls.Client(rawConn, cfg)
  144. errChannel := make(chan error, 1)
  145. go func() {
  146. errChannel <- conn.Handshake()
  147. }()
  148. select {
  149. case err := <-errChannel:
  150. if err != nil {
  151. return nil, nil, err
  152. }
  153. case <-ctx.Done():
  154. return nil, nil, ctx.Err()
  155. }
  156. return tlsConn{Conn: conn, rawConn: rawConn}, TLSInfo{conn.ConnectionState()}, nil
  157. }
  158. func (c *tlsCreds) ServerHandshake(rawConn net.Conn) (net.Conn, AuthInfo, error) {
  159. conn := tls.Server(rawConn, c.config)
  160. if err := conn.Handshake(); err != nil {
  161. return nil, nil, err
  162. }
  163. return tlsConn{Conn: conn, rawConn: rawConn}, TLSInfo{conn.ConnectionState()}, nil
  164. }
  165. func (c *tlsCreds) Clone() TransportCredentials {
  166. return NewTLS(c.config)
  167. }
  168. func (c *tlsCreds) OverrideServerName(serverNameOverride string) error {
  169. c.config.ServerName = serverNameOverride
  170. return nil
  171. }
  172. // NewTLS uses c to construct a TransportCredentials based on TLS.
  173. func NewTLS(c *tls.Config) TransportCredentials {
  174. tc := &tlsCreds{cloneTLSConfig(c)}
  175. tc.config.NextProtos = alpnProtoStr
  176. return tc
  177. }
  178. // NewClientTLSFromCert constructs TLS credentials from the input certificate for client.
  179. // serverNameOverride is for testing only. If set to a non empty string,
  180. // it will override the virtual host name of authority (e.g. :authority header field) in requests.
  181. func NewClientTLSFromCert(cp *x509.CertPool, serverNameOverride string) TransportCredentials {
  182. return NewTLS(&tls.Config{ServerName: serverNameOverride, RootCAs: cp})
  183. }
  184. // NewClientTLSFromFile constructs TLS credentials from the input certificate file for client.
  185. // serverNameOverride is for testing only. If set to a non empty string,
  186. // it will override the virtual host name of authority (e.g. :authority header field) in requests.
  187. func NewClientTLSFromFile(certFile, serverNameOverride string) (TransportCredentials, error) {
  188. b, err := ioutil.ReadFile(certFile)
  189. if err != nil {
  190. return nil, err
  191. }
  192. cp := x509.NewCertPool()
  193. if !cp.AppendCertsFromPEM(b) {
  194. return nil, fmt.Errorf("credentials: failed to append certificates")
  195. }
  196. return NewTLS(&tls.Config{ServerName: serverNameOverride, RootCAs: cp}), nil
  197. }
  198. // NewServerTLSFromCert constructs TLS credentials from the input certificate for server.
  199. func NewServerTLSFromCert(cert *tls.Certificate) TransportCredentials {
  200. return NewTLS(&tls.Config{Certificates: []tls.Certificate{*cert}})
  201. }
  202. // NewServerTLSFromFile constructs TLS credentials from the input certificate file and key
  203. // file for server.
  204. func NewServerTLSFromFile(certFile, keyFile string) (TransportCredentials, error) {
  205. cert, err := tls.LoadX509KeyPair(certFile, keyFile)
  206. if err != nil {
  207. return nil, err
  208. }
  209. return NewTLS(&tls.Config{Certificates: []tls.Certificate{cert}}), nil
  210. }
  211. // ChannelzSecurityInfo defines the interface that security protocols should implement
  212. // in order to provide security info to channelz.
  213. type ChannelzSecurityInfo interface {
  214. GetSecurityValue() ChannelzSecurityValue
  215. }
  216. // ChannelzSecurityValue defines the interface that GetSecurityValue() return value
  217. // should satisfy. This interface should only be satisfied by *TLSChannelzSecurityValue
  218. // and *OtherChannelzSecurityValue.
  219. type ChannelzSecurityValue interface {
  220. isChannelzSecurityValue()
  221. }
  222. // TLSChannelzSecurityValue defines the struct that TLS protocol should return
  223. // from GetSecurityValue(), containing security info like cipher and certificate used.
  224. type TLSChannelzSecurityValue struct {
  225. StandardName string
  226. LocalCertificate []byte
  227. RemoteCertificate []byte
  228. }
  229. func (*TLSChannelzSecurityValue) isChannelzSecurityValue() {}
  230. // OtherChannelzSecurityValue defines the struct that non-TLS protocol should return
  231. // from GetSecurityValue(), which contains protocol specific security info. Note
  232. // the Value field will be sent to users of channelz requesting channel info, and
  233. // thus sensitive info should better be avoided.
  234. type OtherChannelzSecurityValue struct {
  235. Name string
  236. Value proto.Message
  237. }
  238. func (*OtherChannelzSecurityValue) isChannelzSecurityValue() {}
  239. type tlsConn struct {
  240. *tls.Conn
  241. rawConn net.Conn
  242. }
  243. var cipherSuiteLookup = map[uint16]string{
  244. tls.TLS_RSA_WITH_RC4_128_SHA: "TLS_RSA_WITH_RC4_128_SHA",
  245. tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA: "TLS_RSA_WITH_3DES_EDE_CBC_SHA",
  246. tls.TLS_RSA_WITH_AES_128_CBC_SHA: "TLS_RSA_WITH_AES_128_CBC_SHA",
  247. tls.TLS_RSA_WITH_AES_256_CBC_SHA: "TLS_RSA_WITH_AES_256_CBC_SHA",
  248. tls.TLS_RSA_WITH_AES_128_GCM_SHA256: "TLS_RSA_WITH_AES_128_GCM_SHA256",
  249. tls.TLS_RSA_WITH_AES_256_GCM_SHA384: "TLS_RSA_WITH_AES_256_GCM_SHA384",
  250. tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA: "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA",
  251. tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
  252. tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
  253. tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA: "TLS_ECDHE_RSA_WITH_RC4_128_SHA",
  254. tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA: "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA",
  255. tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
  256. tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA: "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
  257. tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
  258. tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
  259. tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384: "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
  260. tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384: "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
  261. tls.TLS_FALLBACK_SCSV: "TLS_FALLBACK_SCSV",
  262. }