/*
 *
 * Copyright 2014 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.
 *
 */

package credentials

import (
	
	
	
	
	
	
	
	

	
	credinternal 
	
)

const alpnFailureHelpMessage = "If you upgraded from a grpc-go version earlier than 1.67, your TLS connections may have stopped working due to ALPN enforcement. For more details, see: https://github.com/grpc/grpc-go/issues/434"

var logger = grpclog.Component("credentials")

// TLSInfo contains the auth information for a TLS authenticated connection.
// It implements the AuthInfo interface.
type TLSInfo struct {
	State tls.ConnectionState
	CommonAuthInfo
	// This API is experimental.
	SPIFFEID *url.URL
}

// AuthType returns the type of TLSInfo as a string.
func ( TLSInfo) () string {
	return "tls"
}

// ValidateAuthority validates the provided authority being used to override the
// :authority header by verifying it against the peer certificates. It returns a
// non-nil error if the validation fails.
func ( TLSInfo) ( string) error {
	var  []error
	for ,  := range .State.PeerCertificates {
		var  error
		if  = .VerifyHostname();  == nil {
			return nil
		}
		 = append(, )
	}
	return fmt.Errorf("credentials: invalid authority %q: %v", , errors.Join(...))
}

// cipherSuiteLookup returns the string version of a TLS cipher suite ID.
func ( uint16) string {
	for ,  := range tls.CipherSuites() {
		if .ID ==  {
			return .Name
		}
	}
	for ,  := range tls.InsecureCipherSuites() {
		if .ID ==  {
			return .Name
		}
	}
	return fmt.Sprintf("unknown ID: %v", )
}

// GetSecurityValue returns security info requested by channelz.
func ( TLSInfo) () ChannelzSecurityValue {
	 := &TLSChannelzSecurityValue{
		StandardName: cipherSuiteLookup(.State.CipherSuite),
	}
	// Currently there's no way to get LocalCertificate info from tls package.
	if len(.State.PeerCertificates) > 0 {
		.RemoteCertificate = .State.PeerCertificates[0].Raw
	}
	return 
}

// tlsCreds is the credentials required for authenticating a connection using TLS.
type tlsCreds struct {
	// TLS configuration
	config *tls.Config
}

func ( tlsCreds) () ProtocolInfo {
	return ProtocolInfo{
		SecurityProtocol: "tls",
		SecurityVersion:  "1.2",
		ServerName:       .config.ServerName,
	}
}

func ( *tlsCreds) ( context.Context,  string,  net.Conn) ( net.Conn,  AuthInfo,  error) {
	// use local cfg to avoid clobbering ServerName if using multiple endpoints
	 := credinternal.CloneTLSConfig(.config)

	, ,  := net.SplitHostPort()
	if  != nil {
		// If the authority had no host port or if the authority cannot be parsed, use it as-is.
		 = 
	}
	.ServerName = 

	 := tls.Client(, )
	 := make(chan error, 1)
	go func() {
		 <- .Handshake()
		close()
	}()
	select {
	case  := <-:
		if  != nil {
			.Close()
			return nil, nil, 
		}
	case <-.Done():
		.Close()
		return nil, nil, .Err()
	}

	// The negotiated protocol can be either of the following:
	// 1. h2: When the server supports ALPN. Only HTTP/2 can be negotiated since
	//    it is the only protocol advertised by the client during the handshake.
	//    The tls library ensures that the server chooses a protocol advertised
	//    by the client.
	// 2. "" (empty string): If the server doesn't support ALPN. ALPN is a requirement
	//    for using HTTP/2 over TLS. We can terminate the connection immediately.
	 := .ConnectionState().NegotiatedProtocol
	if  == "" {
		if envconfig.EnforceALPNEnabled {
			.Close()
			return nil, nil, fmt.Errorf("credentials: cannot check peer: missing selected ALPN property. %s", alpnFailureHelpMessage)
		}
		logger.Warningf("Allowing TLS connection to server %q with ALPN disabled. TLS connections to servers with ALPN disabled will be disallowed in future grpc-go releases", .ServerName)
	}
	 := TLSInfo{
		State: .ConnectionState(),
		CommonAuthInfo: CommonAuthInfo{
			SecurityLevel: PrivacyAndIntegrity,
		},
	}
	 := credinternal.SPIFFEIDFromState(.ConnectionState())
	if  != nil {
		.SPIFFEID = 
	}
	return credinternal.WrapSyscallConn(, ), , nil
}

func ( *tlsCreds) ( net.Conn) (net.Conn, AuthInfo, error) {
	 := tls.Server(, .config)
	if  := .Handshake();  != nil {
		.Close()
		return nil, nil, 
	}
	 := .ConnectionState()
	// The negotiated application protocol can be empty only if the client doesn't
	// support ALPN. In such cases, we can close the connection since ALPN is required
	// for using HTTP/2 over TLS.
	if .NegotiatedProtocol == "" {
		if envconfig.EnforceALPNEnabled {
			.Close()
			return nil, nil, fmt.Errorf("credentials: cannot check peer: missing selected ALPN property. %s", alpnFailureHelpMessage)
		} else if logger.V(2) {
			logger.Info("Allowing TLS connection from client with ALPN disabled. TLS connections with ALPN disabled will be disallowed in future grpc-go releases")
		}
	}
	 := TLSInfo{
		State: ,
		CommonAuthInfo: CommonAuthInfo{
			SecurityLevel: PrivacyAndIntegrity,
		},
	}
	 := credinternal.SPIFFEIDFromState(.ConnectionState())
	if  != nil {
		.SPIFFEID = 
	}
	return credinternal.WrapSyscallConn(, ), , nil
}

func ( *tlsCreds) () TransportCredentials {
	return NewTLS(.config)
}

func ( *tlsCreds) ( string) error {
	.config.ServerName = 
	return nil
}

// The following cipher suites are forbidden for use with HTTP/2 by
// https://datatracker.ietf.org/doc/html/rfc7540#appendix-A
var tls12ForbiddenCipherSuites = map[uint16]struct{}{
	tls.TLS_RSA_WITH_AES_128_CBC_SHA:         {},
	tls.TLS_RSA_WITH_AES_256_CBC_SHA:         {},
	tls.TLS_RSA_WITH_AES_128_GCM_SHA256:      {},
	tls.TLS_RSA_WITH_AES_256_GCM_SHA384:      {},
	tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: {},
	tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: {},
	tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA:   {},
	tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA:   {},
}

// NewTLS uses c to construct a TransportCredentials based on TLS.
func ( *tls.Config) TransportCredentials {
	 := applyDefaults()
	if .GetConfigForClient != nil {
		 := .GetConfigForClient
		.GetConfigForClient = func( *tls.ClientHelloInfo) (*tls.Config, error) {
			,  := ()
			if  != nil ||  == nil {
				return , 
			}
			return applyDefaults(), nil
		}
	}
	return &tlsCreds{config: }
}

func ( *tls.Config) *tls.Config {
	 := credinternal.CloneTLSConfig()
	.NextProtos = credinternal.AppendH2ToNextProtos(.NextProtos)
	// If the user did not configure a MinVersion and did not configure a
	// MaxVersion < 1.2, use MinVersion=1.2, which is required by
	// https://datatracker.ietf.org/doc/html/rfc7540#section-9.2
	if .MinVersion == 0 && (.MaxVersion == 0 || .MaxVersion >= tls.VersionTLS12) {
		.MinVersion = tls.VersionTLS12
	}
	// If the user did not configure CipherSuites, use all "secure" cipher
	// suites reported by the TLS package, but remove some explicitly forbidden
	// by https://datatracker.ietf.org/doc/html/rfc7540#appendix-A
	if .CipherSuites == nil {
		for ,  := range tls.CipherSuites() {
			if ,  := tls12ForbiddenCipherSuites[.ID]; ! {
				.CipherSuites = append(.CipherSuites, .ID)
			}
		}
	}
	return 
}

// NewClientTLSFromCert constructs TLS credentials from the provided root
// certificate authority certificate(s) to validate server connections. If
// certificates to establish the identity of the client need to be included in
// the credentials (eg: for mTLS), use NewTLS instead, where a complete
// tls.Config can be specified.
//
// serverNameOverride is for testing only. If set to a non empty string, it will
// override the virtual host name of authority (e.g. :authority header field) in
// requests.  Users should use grpc.WithAuthority passed to grpc.NewClient to
// override the authority of the client instead.
func ( *x509.CertPool,  string) TransportCredentials {
	return NewTLS(&tls.Config{ServerName: , RootCAs: })
}

// NewClientTLSFromFile constructs TLS credentials from the provided root
// certificate authority certificate file(s) to validate server connections. If
// certificates to establish the identity of the client need to be included in
// the credentials (eg: for mTLS), use NewTLS instead, where a complete
// tls.Config can be specified.
//
// serverNameOverride is for testing only. If set to a non empty string, it will
// override the virtual host name of authority (e.g. :authority header field) in
// requests.  Users should use grpc.WithAuthority passed to grpc.NewClient to
// override the authority of the client instead.
func (,  string) (TransportCredentials, error) {
	,  := os.ReadFile()
	if  != nil {
		return nil, 
	}
	 := x509.NewCertPool()
	if !.AppendCertsFromPEM() {
		return nil, fmt.Errorf("credentials: failed to append certificates")
	}
	return NewTLS(&tls.Config{ServerName: , RootCAs: }), nil
}

// NewServerTLSFromCert constructs TLS credentials from the input certificate for server.
func ( *tls.Certificate) TransportCredentials {
	return NewTLS(&tls.Config{Certificates: []tls.Certificate{*}})
}

// NewServerTLSFromFile constructs TLS credentials from the input certificate file and key
// file for server.
func (,  string) (TransportCredentials, error) {
	,  := tls.LoadX509KeyPair(, )
	if  != nil {
		return nil, 
	}
	return NewTLS(&tls.Config{Certificates: []tls.Certificate{}}), nil
}

// TLSChannelzSecurityValue defines the struct that TLS protocol should return
// from GetSecurityValue(), containing security info like cipher and certificate used.
//
// # Experimental
//
// Notice: This type is EXPERIMENTAL and may be changed or removed in a
// later release.
type TLSChannelzSecurityValue struct {
	ChannelzSecurityValue
	StandardName      string
	LocalCertificate  []byte
	RemoteCertificate []byte
}