2015-02-06 04:14:05 +03:00
/ *
*
* Copyright 2014 , Google Inc .
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are
* met :
*
* * Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* * Redistributions in binary form must reproduce the above
* copyright notice , this list of conditions and the following disclaimer
* in the documentation and / or other materials provided with the
* distribution .
* * Neither the name of Google Inc . nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL ,
* SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT
* LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* /
2015-02-09 03:35:38 +03:00
package grpc
2015-02-06 04:14:05 +03:00
import (
2015-02-19 14:57:41 +03:00
"errors"
2015-08-01 05:00:43 +03:00
"fmt"
2015-04-17 23:50:18 +03:00
"net"
2015-04-22 02:19:29 +03:00
"strings"
2015-02-06 04:14:05 +03:00
"sync"
"time"
2015-02-19 09:15:13 +03:00
"golang.org/x/net/context"
2015-09-23 22:18:41 +03:00
"golang.org/x/net/trace"
2015-02-09 03:39:06 +03:00
"google.golang.org/grpc/credentials"
2015-05-09 12:43:59 +03:00
"google.golang.org/grpc/grpclog"
2016-11-18 04:50:52 +03:00
"google.golang.org/grpc/keepalive"
2017-01-10 04:11:32 +03:00
"google.golang.org/grpc/stats"
2015-02-09 03:39:06 +03:00
"google.golang.org/grpc/transport"
2015-02-06 04:14:05 +03:00
)
2015-02-19 14:57:41 +03:00
var (
2016-05-25 21:28:45 +03:00
// ErrClientConnClosing indicates that the operation is illegal because
// the ClientConn is closing.
ErrClientConnClosing = errors . New ( "grpc: the client connection is closing" )
2016-06-06 22:08:11 +03:00
// ErrClientConnTimeout indicates that the ClientConn cannot establish the
// underlying connections within the specified timeout.
2016-12-20 03:31:00 +03:00
// DEPRECATED: Please use context.DeadlineExceeded instead. This error will be
// removed in Q1 2017.
2016-06-06 22:08:11 +03:00
ErrClientConnTimeout = errors . New ( "grpc: timed out when dialing" )
2016-05-25 21:28:45 +03:00
// errNoTransportSecurity indicates that there is no transport security
2016-03-17 02:40:16 +03:00
// being set for ClientConn. Users should either set one or explicitly
2015-08-28 03:21:52 +03:00
// call WithInsecure DialOption to disable security.
2016-05-25 21:28:45 +03:00
errNoTransportSecurity = errors . New ( "grpc: no transport security set (use grpc.WithInsecure() explicitly or set credentials)" )
2016-06-08 23:44:43 +03:00
// errTransportCredentialsMissing indicates that users want to transmit security
// information (e.g., oauth2 token) which requires secure connection on an insecure
2015-08-28 23:19:36 +03:00
// connection.
2016-06-08 23:44:43 +03:00
errTransportCredentialsMissing = errors . New ( "grpc: the credentials require transport level security (use grpc.WithTransportCredentials() to set)" )
// errCredentialsConflict indicates that grpc.WithTransportCredentials()
// and grpc.WithInsecure() are both called for a connection.
errCredentialsConflict = errors . New ( "grpc: transport credentials are set for an insecure connection (grpc.WithTransportCredentials() and grpc.WithInsecure() are both called)" )
2016-07-28 21:07:42 +03:00
// errNetworkIO indicates that the connection is down due to some network I/O error.
2016-05-25 21:28:45 +03:00
errNetworkIO = errors . New ( "grpc: failed with network I/O error" )
// errConnDrain indicates that the connection starts to be drained and does not accept any new RPCs.
errConnDrain = errors . New ( "grpc: the connection is drained" )
// errConnClosing indicates that the connection is closing.
errConnClosing = errors . New ( "grpc: the connection is closing" )
2016-08-17 00:16:42 +03:00
// errConnUnavailable indicates that the connection is unavailable.
errConnUnavailable = errors . New ( "grpc: the connection is unavailable" )
errNoAddr = errors . New ( "grpc: there is no address available to dial" )
2015-07-28 21:12:07 +03:00
// minimum time to give a connection to complete
minConnectTimeout = 20 * time . Second
2015-02-19 14:57:41 +03:00
)
2015-04-02 00:02:26 +03:00
// dialOptions configure a Dial call. dialOptions are set by the DialOption
// values passed to Dial.
type dialOptions struct {
2016-08-26 23:50:38 +03:00
unaryInt UnaryClientInterceptor
streamInt StreamClientInterceptor
codec Codec
cp Compressor
dc Decompressor
bs backoffStrategy
balancer Balancer
block bool
insecure bool
timeout time . Duration
2016-12-20 03:31:00 +03:00
scChan <- chan ServiceConfig
2016-08-26 23:50:38 +03:00
copts transport . ConnectOptions
2015-04-02 00:02:26 +03:00
}
2015-03-04 04:08:39 +03:00
// DialOption configures how we set up the connection.
2015-04-02 00:02:26 +03:00
type DialOption func ( * dialOptions )
// WithCodec returns a DialOption which sets a codec for message marshaling and unmarshaling.
2015-04-02 00:22:53 +03:00
func WithCodec ( c Codec ) DialOption {
2015-04-02 00:02:26 +03:00
return func ( o * dialOptions ) {
2015-04-02 00:22:53 +03:00
o . codec = c
2015-04-02 00:02:26 +03:00
}
}
2015-02-06 04:14:05 +03:00
2016-01-25 22:18:41 +03:00
// WithCompressor returns a DialOption which sets a CompressorGenerator for generating message
// compressor.
2016-01-30 01:38:20 +03:00
func WithCompressor ( cp Compressor ) DialOption {
2016-01-23 05:21:41 +03:00
return func ( o * dialOptions ) {
2016-01-30 01:38:20 +03:00
o . cp = cp
2016-01-23 05:21:41 +03:00
}
}
2016-01-25 22:18:41 +03:00
// WithDecompressor returns a DialOption which sets a DecompressorGenerator for generating
// message decompressor.
2016-01-30 01:38:20 +03:00
func WithDecompressor ( dc Decompressor ) DialOption {
2016-01-23 05:21:41 +03:00
return func ( o * dialOptions ) {
2016-01-30 01:38:20 +03:00
o . dc = dc
2016-01-23 05:21:41 +03:00
}
}
2016-05-13 05:19:14 +03:00
// WithBalancer returns a DialOption which sets a load balancer.
func WithBalancer ( b Balancer ) DialOption {
return func ( o * dialOptions ) {
o . balancer = b
}
}
2016-12-20 03:31:00 +03:00
// WithServiceConfig returns a DialOption which has a channel to read the service configuration.
func WithServiceConfig ( c <- chan ServiceConfig ) DialOption {
return func ( o * dialOptions ) {
o . scChan = c
}
}
2016-04-15 04:40:32 +03:00
// WithBackoffMaxDelay configures the dialer to use the provided maximum delay
// when backing off after failed connection attempts.
func WithBackoffMaxDelay ( md time . Duration ) DialOption {
2016-04-18 21:33:39 +03:00
return WithBackoffConfig ( BackoffConfig { MaxDelay : md } )
2016-04-15 04:40:32 +03:00
}
2016-03-23 21:49:05 +03:00
// WithBackoffConfig configures the dialer to use the provided backoff
// parameters after connection failures.
2016-04-15 04:40:32 +03:00
//
// Use WithBackoffMaxDelay until more parameters on BackoffConfig are opened up
// for use.
2016-04-18 21:33:39 +03:00
func WithBackoffConfig ( b BackoffConfig ) DialOption {
2016-04-15 04:40:32 +03:00
// Set defaults to ensure that provided BackoffConfig is valid and
// unexported fields get default values.
2016-04-18 23:15:27 +03:00
setDefaults ( & b )
2016-03-23 21:49:05 +03:00
return withBackoff ( b )
}
// withBackoff sets the backoff strategy used for retries after a
// failed connection attempt.
//
2016-06-03 04:00:07 +03:00
// This can be exported if arbitrary backoff strategies are allowed by gRPC.
2016-03-23 21:49:05 +03:00
func withBackoff ( bs backoffStrategy ) DialOption {
return func ( o * dialOptions ) {
o . bs = bs
}
}
2015-06-05 01:45:06 +03:00
// WithBlock returns a DialOption which makes caller of Dial blocks until the underlying
2015-06-05 01:47:02 +03:00
// connection is up. Without this, Dial returns immediately and connecting the server
// happens in background.
2015-06-05 01:45:06 +03:00
func WithBlock ( ) DialOption {
return func ( o * dialOptions ) {
o . block = true
}
}
2016-01-08 01:18:20 +03:00
// WithInsecure returns a DialOption which disables transport security for this ClientConn.
// Note that transport security is required unless WithInsecure is set.
2015-08-28 03:21:52 +03:00
func WithInsecure ( ) DialOption {
return func ( o * dialOptions ) {
o . insecure = true
}
}
2015-02-26 09:57:07 +03:00
// WithTransportCredentials returns a DialOption which configures a
// connection level security credentials (e.g., TLS/SSL).
2016-06-08 21:10:23 +03:00
func WithTransportCredentials ( creds credentials . TransportCredentials ) DialOption {
2015-04-02 00:02:26 +03:00
return func ( o * dialOptions ) {
2016-06-08 21:10:23 +03:00
o . copts . TransportCredentials = creds
2015-02-06 04:14:05 +03:00
}
}
2015-02-18 23:02:43 +03:00
// WithPerRPCCredentials returns a DialOption which sets
// credentials which will place auth state on each outbound RPC.
2016-06-07 03:28:10 +03:00
func WithPerRPCCredentials ( creds credentials . PerRPCCredentials ) DialOption {
2015-04-02 00:02:26 +03:00
return func ( o * dialOptions ) {
2016-06-07 03:28:10 +03:00
o . copts . PerRPCCredentials = append ( o . copts . PerRPCCredentials , creds )
2015-03-04 04:08:39 +03:00
}
}
2016-06-06 22:13:00 +03:00
// WithTimeout returns a DialOption that configures a timeout for dialing a ClientConn
// initially. This is valid if and only if WithBlock() is present.
2015-03-04 04:08:39 +03:00
func WithTimeout ( d time . Duration ) DialOption {
2015-04-02 00:02:26 +03:00
return func ( o * dialOptions ) {
2016-06-06 22:08:11 +03:00
o . timeout = d
2015-02-06 04:14:05 +03:00
}
}
2015-04-22 02:48:41 +03:00
// WithDialer returns a DialOption that specifies a function to use for dialing network addresses.
2016-11-12 01:16:58 +03:00
// If FailOnNonTempDialError() is set to true, and an error is returned by f, gRPC checks the error's
// Temporary() method to decide if it should try to reconnect to the network address.
2016-07-29 00:00:23 +03:00
func WithDialer ( f func ( string , time . Duration ) ( net . Conn , error ) ) DialOption {
2015-04-17 23:50:18 +03:00
return func ( o * dialOptions ) {
2016-07-29 20:16:56 +03:00
o . copts . Dialer = func ( ctx context . Context , addr string ) ( net . Conn , error ) {
if deadline , ok := ctx . Deadline ( ) ; ok {
return f ( addr , deadline . Sub ( time . Now ( ) ) )
}
return f ( addr , 0 )
2016-07-29 00:00:23 +03:00
}
2015-04-17 23:50:18 +03:00
}
}
2017-01-10 04:11:32 +03:00
// WithStatsHandler returns a DialOption that specifies the stats handler
// for all the RPCs and underlying network connections in this ClientConn.
func WithStatsHandler ( h stats . Handler ) DialOption {
return func ( o * dialOptions ) {
o . copts . StatsHandler = h
}
}
2016-11-12 01:16:58 +03:00
// FailOnNonTempDialError returns a DialOption that specified if gRPC fails on non-temporary dial errors.
// If f is true, and dialer returns a non-temporary error, gRPC will fail the connection to the network
// address and won't try to reconnect.
// The default value of FailOnNonTempDialError is false.
// This is an EXPERIMENTAL API.
func FailOnNonTempDialError ( f bool ) DialOption {
return func ( o * dialOptions ) {
o . copts . FailOnNonTempDialError = f
}
}
2015-07-24 21:19:08 +03:00
// WithUserAgent returns a DialOption that specifies a user agent string for all the RPCs.
func WithUserAgent ( s string ) DialOption {
return func ( o * dialOptions ) {
o . copts . UserAgent = s
}
}
2017-01-07 04:18:22 +03:00
// WithKeepaliveParams returns a DialOption that specifies keepalive paramaters for the client transport.
2017-01-30 22:32:54 +03:00
func WithKeepaliveParams ( k * keepalive . Params ) DialOption {
2016-11-18 04:50:52 +03:00
return func ( o * dialOptions ) {
2017-01-07 03:52:37 +03:00
o . copts . KeepaliveParams = k
2016-11-18 04:50:52 +03:00
}
}
2016-08-26 23:50:38 +03:00
// WithUnaryInterceptor returns a DialOption that specifies the interceptor for unary RPCs.
func WithUnaryInterceptor ( f UnaryClientInterceptor ) DialOption {
return func ( o * dialOptions ) {
o . unaryInt = f
}
}
// WithStreamInterceptor returns a DialOption that specifies the interceptor for streaming RPCs.
func WithStreamInterceptor ( f StreamClientInterceptor ) DialOption {
return func ( o * dialOptions ) {
o . streamInt = f
}
}
2016-08-15 20:17:09 +03:00
// Dial creates a client connection to the given target.
2015-02-06 04:14:05 +03:00
func Dial ( target string , opts ... DialOption ) ( * ClientConn , error ) {
2016-08-15 20:17:09 +03:00
return DialContext ( context . Background ( ) , target , opts ... )
}
2016-08-24 04:18:18 +03:00
// DialContext creates a client connection to the given target. ctx can be used to
2016-08-24 05:23:04 +03:00
// cancel or expire the pending connecting. Once this function returns, the
// cancellation and expiration of ctx will be noop. Users should call ClientConn.Close
// to terminate all the pending operations after this function returns.
2016-08-24 20:46:06 +03:00
// This is the EXPERIMENTAL API.
2016-08-24 22:56:16 +03:00
func DialContext ( ctx context . Context , target string , opts ... DialOption ) ( conn * ClientConn , err error ) {
2015-09-29 20:24:03 +03:00
cc := & ClientConn {
target : target ,
2016-05-11 05:29:44 +03:00
conns : make ( map [ Address ] * addrConn ) ,
2015-09-29 20:24:03 +03:00
}
2016-08-24 04:18:18 +03:00
cc . ctx , cc . cancel = context . WithCancel ( context . Background ( ) )
2016-12-20 03:31:00 +03:00
for _ , opt := range opts {
opt ( & cc . dopts )
}
if cc . dopts . timeout > 0 {
var cancel context . CancelFunc
ctx , cancel = context . WithTimeout ( ctx , cc . dopts . timeout )
defer cancel ( )
}
2016-08-24 22:56:16 +03:00
defer func ( ) {
2016-08-24 04:18:18 +03:00
select {
case <- ctx . Done ( ) :
2016-08-25 22:18:19 +03:00
conn , err = nil , ctx . Err ( )
2016-08-24 22:56:16 +03:00
default :
2016-08-24 04:18:18 +03:00
}
2016-08-25 22:18:19 +03:00
if err != nil {
cc . Close ( )
}
2016-08-24 04:18:18 +03:00
} ( )
2016-12-20 03:31:00 +03:00
if cc . dopts . scChan != nil {
// Wait for the initial service config.
select {
case sc , ok := <- cc . dopts . scChan :
if ok {
cc . sc = sc
}
case <- ctx . Done ( ) :
return nil , ctx . Err ( )
}
2015-02-06 04:14:05 +03:00
}
2016-07-05 21:51:54 +03:00
// Set defaults.
2015-10-08 21:05:59 +03:00
if cc . dopts . codec == nil {
cc . dopts . codec = protoCodec { }
}
2016-03-23 21:49:05 +03:00
if cc . dopts . bs == nil {
cc . dopts . bs = DefaultBackoffConfig
}
2016-09-20 01:11:57 +03:00
creds := cc . dopts . copts . TransportCredentials
if creds != nil && creds . Info ( ) . ServerName != "" {
cc . authority = creds . Info ( ) . ServerName
} else {
colonPos := strings . LastIndex ( target , ":" )
if colonPos == - 1 {
colonPos = len ( target )
}
cc . authority = target [ : colonPos ]
}
2016-09-09 00:18:08 +03:00
var ok bool
waitC := make ( chan error , 1 )
go func ( ) {
var addrs [ ] Address
2016-12-20 03:31:00 +03:00
if cc . dopts . balancer == nil && cc . sc . LB != nil {
cc . dopts . balancer = cc . sc . LB
}
2016-09-09 00:18:08 +03:00
if cc . dopts . balancer == nil {
// Connect to target directly if balancer is nil.
2016-07-19 01:58:41 +03:00
addrs = append ( addrs , Address { Addr : target } )
} else {
2016-09-27 21:14:33 +03:00
var credsClone credentials . TransportCredentials
if creds != nil {
credsClone = creds . Clone ( )
}
2016-09-20 01:11:57 +03:00
config := BalancerConfig {
2016-09-27 21:14:33 +03:00
DialCreds : credsClone ,
2016-09-20 01:11:57 +03:00
}
if err := cc . dopts . balancer . Start ( target , config ) ; err != nil {
2016-09-09 00:18:08 +03:00
waitC <- err
return
}
ch := cc . dopts . balancer . Notify ( )
if ch == nil {
// There is no name resolver installed.
addrs = append ( addrs , Address { Addr : target } )
} else {
addrs , ok = <- ch
if ! ok || len ( addrs ) == 0 {
waitC <- errNoAddr
return
}
2016-07-19 01:58:41 +03:00
}
2016-05-07 01:47:09 +03:00
}
2016-05-24 05:25:01 +03:00
for _ , a := range addrs {
2016-07-29 22:57:38 +03:00
if err := cc . resetAddrConn ( a , false , nil ) ; err != nil {
2016-06-06 22:08:11 +03:00
waitC <- err
return
2016-05-07 01:47:09 +03:00
}
2016-05-24 05:25:01 +03:00
}
2016-06-06 22:08:11 +03:00
close ( waitC )
} ( )
select {
2016-08-24 20:46:06 +03:00
case <- ctx . Done ( ) :
return nil , ctx . Err ( )
2016-06-06 22:08:11 +03:00
case err := <- waitC :
if err != nil {
return nil , err
}
}
2016-12-20 03:31:00 +03:00
2016-07-30 03:17:36 +03:00
// If balancer is nil or balancer.Notify() is nil, ok will be false here.
// The lbWatcher goroutine will not be created.
2016-06-06 22:08:11 +03:00
if ok {
2016-05-26 04:17:23 +03:00
go cc . lbWatcher ( )
2015-09-23 22:18:41 +03:00
}
2016-12-20 03:31:00 +03:00
if cc . dopts . scChan != nil {
go cc . scWatcher ( )
}
2015-09-29 20:24:03 +03:00
return cc , nil
2015-09-23 22:18:41 +03:00
}
2015-07-31 01:30:26 +03:00
// ConnectivityState indicates the state of a client connection.
type ConnectivityState int
const (
// Idle indicates the ClientConn is idle.
Idle ConnectivityState = iota
// Connecting indicates the ClienConn is connecting.
Connecting
// Ready indicates the ClientConn is ready for work.
Ready
// TransientFailure indicates the ClientConn has seen a failure but expects to recover.
TransientFailure
2015-09-07 07:26:27 +03:00
// Shutdown indicates the ClientConn has started shutting down.
2015-07-31 01:30:26 +03:00
Shutdown
)
2015-08-01 05:00:43 +03:00
func ( s ConnectivityState ) String ( ) string {
switch s {
case Idle :
return "IDLE"
case Connecting :
return "CONNECTING"
case Ready :
return "READY"
case TransientFailure :
return "TRANSIENT_FAILURE"
case Shutdown :
return "SHUTDOWN"
default :
panic ( fmt . Sprintf ( "unknown connectivity state: %d" , s ) )
}
}
2016-05-18 21:18:10 +03:00
// ClientConn represents a client connection to an RPC server.
2015-02-06 04:14:05 +03:00
type ClientConn struct {
2016-07-29 20:16:56 +03:00
ctx context . Context
cancel context . CancelFunc
2015-10-08 21:05:59 +03:00
target string
authority string
dopts dialOptions
2015-09-24 05:09:37 +03:00
2016-05-07 01:47:09 +03:00
mu sync . RWMutex
2016-12-20 03:31:00 +03:00
sc ServiceConfig
2016-05-11 05:29:44 +03:00
conns map [ Address ] * addrConn
2015-09-24 05:09:37 +03:00
}
2016-05-26 04:17:23 +03:00
func ( cc * ClientConn ) lbWatcher ( ) {
2016-07-05 21:51:54 +03:00
for addrs := range cc . dopts . balancer . Notify ( ) {
2016-05-24 05:25:01 +03:00
var (
add [ ] Address // Addresses need to setup connections.
del [ ] * addrConn // Connections need to tear down.
)
cc . mu . Lock ( )
for _ , a := range addrs {
if _ , ok := cc . conns [ a ] ; ! ok {
add = append ( add , a )
2016-05-07 01:47:09 +03:00
}
2016-05-24 05:25:01 +03:00
}
for k , c := range cc . conns {
var keep bool
for _ , a := range addrs {
if k == a {
keep = true
break
}
2016-05-07 01:47:09 +03:00
}
2016-05-24 05:25:01 +03:00
if ! keep {
del = append ( del , c )
2016-07-29 22:57:38 +03:00
delete ( cc . conns , c . addr )
2016-05-07 01:47:09 +03:00
}
2016-05-24 05:25:01 +03:00
}
cc . mu . Unlock ( )
2016-05-27 00:20:31 +03:00
for _ , a := range add {
2016-07-29 22:57:38 +03:00
cc . resetAddrConn ( a , true , nil )
2016-05-24 05:25:01 +03:00
}
for _ , c := range del {
2016-05-25 21:28:45 +03:00
c . tearDown ( errConnDrain )
2016-05-07 01:47:09 +03:00
}
}
2015-02-06 04:14:05 +03:00
}
2016-12-20 03:31:00 +03:00
func ( cc * ClientConn ) scWatcher ( ) {
for {
select {
case sc , ok := <- cc . dopts . scChan :
if ! ok {
return
}
cc . mu . Lock ( )
// TODO: load balance policy runtime change is ignored.
// We may revist this decision in the future.
cc . sc = sc
cc . mu . Unlock ( )
case <- cc . ctx . Done ( ) :
return
}
}
}
2016-07-29 22:57:38 +03:00
// resetAddrConn creates an addrConn for addr and adds it to cc.conns.
2016-08-01 20:43:48 +03:00
// If there is an old addrConn for addr, it will be torn down, using tearDownErr as the reason.
// If tearDownErr is nil, errConnDrain will be used instead.
func ( cc * ClientConn ) resetAddrConn ( addr Address , skipWait bool , tearDownErr error ) error {
2016-05-18 03:18:54 +03:00
ac := & addrConn {
2016-07-05 21:56:57 +03:00
cc : cc ,
addr : addr ,
dopts : cc . dopts ,
2015-09-24 05:09:37 +03:00
}
2016-07-29 20:16:56 +03:00
ac . ctx , ac . cancel = context . WithCancel ( cc . ctx )
2016-07-29 05:47:38 +03:00
ac . stateCV = sync . NewCond ( & ac . mu )
2015-09-24 05:09:37 +03:00
if EnableTracing {
2016-05-18 03:18:54 +03:00
ac . events = trace . NewEventLog ( "grpc.ClientConn" , ac . addr . Addr )
2015-09-24 05:09:37 +03:00
}
2016-05-18 03:18:54 +03:00
if ! ac . dopts . insecure {
2016-06-08 21:10:23 +03:00
if ac . dopts . copts . TransportCredentials == nil {
2016-05-25 21:28:45 +03:00
return errNoTransportSecurity
2015-09-24 05:09:37 +03:00
}
} else {
2016-06-08 21:10:23 +03:00
if ac . dopts . copts . TransportCredentials != nil {
2016-06-08 23:44:43 +03:00
return errCredentialsConflict
2016-06-07 02:24:46 +03:00
}
2016-06-07 03:28:10 +03:00
for _ , cd := range ac . dopts . copts . PerRPCCredentials {
2015-09-24 05:09:37 +03:00
if cd . RequireTransportSecurity ( ) {
2016-06-08 23:44:43 +03:00
return errTransportCredentialsMissing
2015-09-24 05:09:37 +03:00
}
}
}
2016-07-29 20:16:56 +03:00
// Track ac in cc. This needs to be done before any getTransport(...) is called.
cc . mu . Lock ( )
if cc . conns == nil {
cc . mu . Unlock ( )
2016-05-18 03:18:54 +03:00
return ErrClientConnClosing
}
2016-07-29 20:16:56 +03:00
stale := cc . conns [ ac . addr ]
cc . conns [ ac . addr ] = ac
cc . mu . Unlock ( )
2016-05-27 00:20:31 +03:00
if stale != nil {
// There is an addrConn alive on ac.addr already. This could be due to
2016-08-01 20:43:48 +03:00
// 1) a buggy Balancer notifies duplicated Addresses;
// 2) goaway was received, a new ac will replace the old ac.
2016-07-29 22:57:38 +03:00
// The old ac should be deleted from cc.conns, but the
// underlying transport should drain rather than close.
2016-08-01 20:43:48 +03:00
if tearDownErr == nil {
// tearDownErr is nil if resetAddrConn is called by
2016-07-29 22:57:38 +03:00
// 1) Dial
// 2) lbWatcher
// In both cases, the stale ac should drain, not close.
stale . tearDown ( errConnDrain )
} else {
2016-08-01 20:43:48 +03:00
stale . tearDown ( tearDownErr )
2016-07-29 22:57:38 +03:00
}
2016-05-27 00:20:31 +03:00
}
2016-05-24 05:25:01 +03:00
// skipWait may overwrite the decision in ac.dopts.block.
if ac . dopts . block && ! skipWait {
2016-05-18 03:18:54 +03:00
if err := ac . resetTransport ( false ) ; err != nil {
2016-07-16 02:20:34 +03:00
if err != errConnClosing {
2016-07-30 03:17:36 +03:00
// Tear down ac and delete it from cc.conns.
cc . mu . Lock ( )
delete ( cc . conns , ac . addr )
cc . mu . Unlock ( )
2016-07-16 02:20:34 +03:00
ac . tearDown ( err )
}
2016-07-19 01:00:37 +03:00
if e , ok := err . ( transport . ConnectionError ) ; ok && ! e . Temporary ( ) {
2016-07-30 03:17:36 +03:00
return e . Origin ( )
2016-07-19 01:00:37 +03:00
}
return err
2015-09-24 05:09:37 +03:00
}
// Start to monitor the error status of transport.
2016-05-18 03:18:54 +03:00
go ac . transportMonitor ( )
2015-09-24 05:09:37 +03:00
} else {
// Start a goroutine connecting to the server asynchronously.
go func ( ) {
2016-05-18 03:18:54 +03:00
if err := ac . resetTransport ( false ) ; err != nil {
grpclog . Printf ( "Failed to dial %s: %v; please retry." , ac . addr . Addr , err )
2016-07-16 02:20:34 +03:00
if err != errConnClosing {
2016-07-30 03:17:36 +03:00
// Keep this ac in cc.conns, to get the reason it's torn down.
2016-07-16 02:20:34 +03:00
ac . tearDown ( err )
}
2015-09-24 05:09:37 +03:00
return
}
2016-05-18 03:18:54 +03:00
ac . transportMonitor ( )
2015-09-24 05:09:37 +03:00
} ( )
}
2016-05-17 01:31:00 +03:00
return nil
2015-09-24 05:09:37 +03:00
}
2016-12-20 03:31:00 +03:00
// TODO: Avoid the locking here.
func ( cc * ClientConn ) getMethodConfig ( method string ) ( m MethodConfig , ok bool ) {
cc . mu . RLock ( )
defer cc . mu . RUnlock ( )
m , ok = cc . sc . Methods [ method ]
return
}
2016-05-25 03:19:44 +03:00
func ( cc * ClientConn ) getTransport ( ctx context . Context , opts BalancerGetOptions ) ( transport . ClientTransport , func ( ) , error ) {
2016-07-19 01:58:41 +03:00
var (
ac * addrConn
ok bool
put func ( )
)
if cc . dopts . balancer == nil {
// If balancer is nil, there should be only one addrConn available.
2016-07-27 00:28:36 +03:00
cc . mu . RLock ( )
2016-08-19 02:41:22 +03:00
if cc . conns == nil {
cc . mu . RUnlock ( )
return nil , nil , toRPCErr ( ErrClientConnClosing )
}
2016-07-19 01:58:41 +03:00
for _ , ac = range cc . conns {
2016-07-30 03:17:36 +03:00
// Break after the first iteration to get the first addrConn.
2016-07-27 00:28:36 +03:00
ok = true
2016-07-19 01:58:41 +03:00
break
}
2016-07-27 00:28:36 +03:00
cc . mu . RUnlock ( )
2016-07-19 01:58:41 +03:00
} else {
2016-07-27 00:28:36 +03:00
var (
addr Address
err error
)
addr , put , err = cc . dopts . balancer . Get ( ctx , opts )
2016-07-19 01:58:41 +03:00
if err != nil {
return nil , nil , toRPCErr ( err )
}
cc . mu . RLock ( )
if cc . conns == nil {
cc . mu . RUnlock ( )
return nil , nil , toRPCErr ( ErrClientConnClosing )
}
ac , ok = cc . conns [ addr ]
2016-05-07 01:47:09 +03:00
cc . mu . RUnlock ( )
2016-07-27 00:28:36 +03:00
}
if ! ok {
if put != nil {
put ( )
2016-05-24 05:25:01 +03:00
}
2016-07-27 21:57:23 +03:00
return nil , nil , errConnClosing
2016-05-07 01:47:09 +03:00
}
2016-08-17 00:16:42 +03:00
t , err := ac . wait ( ctx , cc . dopts . balancer != nil , ! opts . BlockingWait )
2016-05-07 01:47:09 +03:00
if err != nil {
2016-05-24 05:25:01 +03:00
if put != nil {
put ( )
}
2016-05-07 01:47:09 +03:00
return nil , nil , err
2015-09-24 05:09:37 +03:00
}
2016-05-07 01:47:09 +03:00
return t , put , nil
2015-09-24 05:09:37 +03:00
}
2016-05-18 03:18:54 +03:00
// Close tears down the ClientConn and all underlying connections.
2016-05-07 01:47:09 +03:00
func ( cc * ClientConn ) Close ( ) error {
2016-07-29 20:16:56 +03:00
cc . cancel ( )
2015-08-01 00:16:02 +03:00
cc . mu . Lock ( )
2016-05-11 05:29:44 +03:00
if cc . conns == nil {
2016-05-07 01:47:09 +03:00
cc . mu . Unlock ( )
return ErrClientConnClosing
}
2016-05-11 05:29:44 +03:00
conns := cc . conns
cc . conns = nil
2016-05-07 01:47:09 +03:00
cc . mu . Unlock ( )
2016-07-19 01:58:41 +03:00
if cc . dopts . balancer != nil {
cc . dopts . balancer . Close ( )
}
2016-05-11 05:29:44 +03:00
for _ , ac := range conns {
ac . tearDown ( ErrClientConnClosing )
2016-05-07 01:47:09 +03:00
}
return nil
}
// addrConn is a network connection to a given address.
type addrConn struct {
2016-07-29 20:16:56 +03:00
ctx context . Context
cancel context . CancelFunc
2016-07-05 21:56:57 +03:00
cc * ClientConn
addr Address
dopts dialOptions
events trace . EventLog
2016-05-07 01:47:09 +03:00
mu sync . Mutex
state ConnectivityState
stateCV * sync . Cond
down func ( error ) // the handler called when a connection is down.
// ready is closed and becomes nil when a new transport is up or failed
// due to timeout.
ready chan struct { }
transport transport . ClientTransport
2016-07-16 02:20:34 +03:00
// The reason this addrConn is torn down.
tearDownErr error
2016-05-07 01:47:09 +03:00
}
// printf records an event in ac's event log, unless ac has been closed.
// REQUIRES ac.mu is held.
func ( ac * addrConn ) printf ( format string , a ... interface { } ) {
if ac . events != nil {
ac . events . Printf ( format , a ... )
}
}
// errorf records an error in ac's event log, unless ac has been closed.
// REQUIRES ac.mu is held.
func ( ac * addrConn ) errorf ( format string , a ... interface { } ) {
if ac . events != nil {
ac . events . Errorf ( format , a ... )
}
}
// getState returns the connectivity state of the Conn
func ( ac * addrConn ) getState ( ) ConnectivityState {
ac . mu . Lock ( )
defer ac . mu . Unlock ( )
return ac . state
}
// waitForStateChange blocks until the state changes to something other than the sourceState.
func ( ac * addrConn ) waitForStateChange ( ctx context . Context , sourceState ConnectivityState ) ( ConnectivityState , error ) {
ac . mu . Lock ( )
defer ac . mu . Unlock ( )
if sourceState != ac . state {
return ac . state , nil
2015-08-03 21:29:27 +03:00
}
2015-08-03 21:45:42 +03:00
done := make ( chan struct { } )
2015-12-15 01:32:43 +03:00
var err error
2015-08-03 23:18:25 +03:00
go func ( ) {
2015-08-01 00:16:02 +03:00
select {
2015-12-15 01:32:43 +03:00
case <- ctx . Done ( ) :
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
2015-12-15 01:32:43 +03:00
err = ctx . Err ( )
2016-05-07 01:47:09 +03:00
ac . stateCV . Broadcast ( )
ac . mu . Unlock ( )
2015-08-01 00:16:02 +03:00
case <- done :
}
2015-08-03 23:18:25 +03:00
} ( )
2015-08-01 05:00:43 +03:00
defer close ( done )
2016-05-07 01:47:09 +03:00
for sourceState == ac . state {
ac . stateCV . Wait ( )
2015-12-15 01:32:43 +03:00
if err != nil {
2016-05-07 01:47:09 +03:00
return ac . state , err
2015-08-01 05:00:43 +03:00
}
2015-08-01 00:16:02 +03:00
}
2016-05-07 01:47:09 +03:00
return ac . state , nil
2015-08-01 00:16:02 +03:00
}
2016-05-07 01:47:09 +03:00
func ( ac * addrConn ) resetTransport ( closeTransport bool ) error {
2016-08-10 19:37:53 +03:00
for retries := 0 ; ; retries ++ {
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
ac . printf ( "connecting" )
if ac . state == Shutdown {
// ac.tearDown(...) has been invoked.
ac . mu . Unlock ( )
2016-05-25 21:28:45 +03:00
return errConnClosing
2015-02-06 04:14:05 +03:00
}
2016-05-07 01:47:09 +03:00
if ac . down != nil {
2016-05-25 21:28:45 +03:00
ac . down ( downErrorf ( false , true , "%v" , errNetworkIO ) )
2016-05-07 01:47:09 +03:00
ac . down = nil
}
ac . state = Connecting
ac . stateCV . Broadcast ( )
t := ac . transport
ac . mu . Unlock ( )
if closeTransport && t != nil {
t . Close ( )
2015-02-06 04:14:05 +03:00
}
2016-05-07 01:47:09 +03:00
sleepTime := ac . dopts . bs . backoff ( retries )
2016-07-29 20:16:56 +03:00
timeout := minConnectTimeout
if timeout < sleepTime {
timeout = sleepTime
2015-07-28 21:12:07 +03:00
}
2016-07-29 20:16:56 +03:00
ctx , cancel := context . WithTimeout ( ac . ctx , timeout )
2015-07-28 21:12:07 +03:00
connectTime := time . Now ( )
2016-10-14 02:44:27 +03:00
sinfo := transport . TargetInfo {
Addr : ac . addr . Addr ,
Metadata : ac . addr . Metadata ,
}
newTransport , err := transport . NewClientTransport ( ctx , sinfo , ac . dopts . copts )
2015-02-06 04:14:05 +03:00
if err != nil {
2016-07-29 20:16:56 +03:00
cancel ( )
2016-07-15 01:19:57 +03:00
if e , ok := err . ( transport . ConnectionError ) ; ok && ! e . Temporary ( ) {
2016-07-16 02:20:34 +03:00
return err
2016-07-15 01:19:57 +03:00
}
2016-09-12 22:09:10 +03:00
grpclog . Printf ( "grpc: addrConn.resetTransport failed to create client transport: %v; Reconnecting to %v" , err , ac . addr )
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
if ac . state == Shutdown {
// ac.tearDown(...) has been invoked.
ac . mu . Unlock ( )
2016-05-25 21:28:45 +03:00
return errConnClosing
2015-11-11 01:02:38 +03:00
}
2016-05-07 01:47:09 +03:00
ac . errorf ( "transient failure: %v" , err )
ac . state = TransientFailure
ac . stateCV . Broadcast ( )
if ac . ready != nil {
close ( ac . ready )
ac . ready = nil
2015-09-25 23:21:25 +03:00
}
2016-05-07 01:47:09 +03:00
ac . mu . Unlock ( )
2015-02-06 04:14:05 +03:00
closeTransport = false
2016-05-12 23:08:31 +03:00
select {
2016-07-29 20:16:56 +03:00
case <- time . After ( sleepTime - time . Since ( connectTime ) ) :
case <- ac . ctx . Done ( ) :
return ac . ctx . Err ( )
2016-05-12 23:08:31 +03:00
}
2015-02-06 04:14:05 +03:00
continue
}
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
ac . printf ( "ready" )
if ac . state == Shutdown {
// ac.tearDown(...) has been invoked.
ac . mu . Unlock ( )
2015-03-05 20:45:50 +03:00
newTransport . Close ( )
2016-05-25 21:28:45 +03:00
return errConnClosing
2015-03-05 20:45:50 +03:00
}
2016-05-07 01:47:09 +03:00
ac . state = Ready
ac . stateCV . Broadcast ( )
ac . transport = newTransport
if ac . ready != nil {
close ( ac . ready )
ac . ready = nil
2015-02-06 04:14:05 +03:00
}
2016-07-19 01:58:41 +03:00
if ac . cc . dopts . balancer != nil {
ac . down = ac . cc . dopts . balancer . Up ( ac . addr )
}
2016-05-07 01:47:09 +03:00
ac . mu . Unlock ( )
2015-02-06 04:14:05 +03:00
return nil
}
}
// Run in a goroutine to track the error in transport and create the
// new transport if an error happens. It returns when the channel is closing.
2016-05-07 01:47:09 +03:00
func ( ac * addrConn ) transportMonitor ( ) {
2015-02-06 04:14:05 +03:00
for {
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
t := ac . transport
ac . mu . Unlock ( )
2015-02-06 04:14:05 +03:00
select {
2016-07-29 20:16:56 +03:00
// This is needed to detect the teardown when
2016-05-07 01:47:09 +03:00
// the addrConn is idle (i.e., no RPC in flight).
2016-07-29 20:16:56 +03:00
case <- ac . ctx . Done ( ) :
2016-07-28 05:46:34 +03:00
select {
case <- t . Error ( ) :
t . Close ( )
default :
}
2015-02-06 04:14:05 +03:00
return
2016-07-22 02:19:34 +03:00
case <- t . GoAway ( ) :
2016-07-28 21:07:42 +03:00
// If GoAway happens without any network I/O error, ac is closed without shutting down the
// underlying transport (the transport will be closed when all the pending RPCs finished or
// failed.).
// If GoAway and some network I/O error happen concurrently, ac and its underlying transport
// are closed.
// In both cases, a new ac is created.
2016-07-28 05:46:34 +03:00
select {
case <- t . Error ( ) :
2016-07-29 22:57:38 +03:00
ac . cc . resetAddrConn ( ac . addr , true , errNetworkIO )
2016-07-28 05:46:34 +03:00
default :
2016-07-29 22:57:38 +03:00
ac . cc . resetAddrConn ( ac . addr , true , errConnDrain )
2016-07-28 05:46:34 +03:00
}
2016-07-22 02:19:34 +03:00
return
case <- t . Error ( ) :
2016-07-28 05:46:34 +03:00
select {
2016-07-29 20:16:56 +03:00
case <- ac . ctx . Done ( ) :
2016-07-28 05:46:34 +03:00
t . Close ( )
return
case <- t . GoAway ( ) :
2016-07-29 22:57:38 +03:00
ac . cc . resetAddrConn ( ac . addr , true , errNetworkIO )
2016-07-28 05:46:34 +03:00
return
default :
}
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
if ac . state == Shutdown {
2016-07-28 03:27:10 +03:00
// ac has been shutdown.
2016-05-07 01:47:09 +03:00
ac . mu . Unlock ( )
2015-11-11 01:02:38 +03:00
return
}
2016-05-07 01:47:09 +03:00
ac . state = TransientFailure
ac . stateCV . Broadcast ( )
ac . mu . Unlock ( )
if err := ac . resetTransport ( true ) ; err != nil {
ac . mu . Lock ( )
ac . printf ( "transport exiting: %v" , err )
ac . mu . Unlock ( )
grpclog . Printf ( "grpc: addrConn.transportMonitor exits due to: %v" , err )
2016-07-16 02:20:34 +03:00
if err != errConnClosing {
2016-07-30 03:17:36 +03:00
// Keep this ac in cc.conns, to get the reason it's torn down.
2016-07-16 02:20:34 +03:00
ac . tearDown ( err )
}
2015-02-06 04:14:05 +03:00
return
}
}
}
}
2016-06-28 00:36:59 +03:00
// wait blocks until i) the new transport is up or ii) ctx is done or iii) ac is closed or
2016-10-18 23:42:15 +03:00
// iv) transport is in TransientFailure and there is a balancer/failfast is true.
2016-08-17 00:16:42 +03:00
func ( ac * addrConn ) wait ( ctx context . Context , hasBalancer , failfast bool ) ( transport . ClientTransport , error ) {
2015-02-06 04:14:05 +03:00
for {
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
2015-02-06 04:14:05 +03:00
switch {
2016-05-07 01:47:09 +03:00
case ac . state == Shutdown :
2016-08-17 00:16:42 +03:00
if failfast || ! hasBalancer {
// RPC is failfast or balancer is nil. This RPC should fail with ac.tearDownErr.
err := ac . tearDownErr
ac . mu . Unlock ( )
return nil , err
}
2016-05-07 01:47:09 +03:00
ac . mu . Unlock ( )
2016-08-17 00:16:42 +03:00
return nil , errConnClosing
2016-05-07 01:47:09 +03:00
case ac . state == Ready :
ct := ac . transport
ac . mu . Unlock ( )
2016-02-23 03:26:15 +03:00
return ct , nil
2016-08-17 00:16:42 +03:00
case ac . state == TransientFailure :
if failfast || hasBalancer {
ac . mu . Unlock ( )
return nil , errConnUnavailable
2015-02-06 04:14:05 +03:00
}
}
2016-08-17 00:16:42 +03:00
ready := ac . ready
if ready == nil {
ready = make ( chan struct { } )
ac . ready = ready
}
ac . mu . Unlock ( )
select {
case <- ctx . Done ( ) :
return nil , toRPCErr ( ctx . Err ( ) )
// Wait until the new transport is ready or failed.
case <- ready :
}
2015-02-06 04:14:05 +03:00
}
}
2016-05-17 01:31:00 +03:00
// tearDown starts to tear down the addrConn.
2015-02-06 04:14:05 +03:00
// TODO(zhaoq): Make this synchronous to avoid unbounded memory consumption in
2016-05-07 01:47:09 +03:00
// some edge cases (e.g., the caller opens and closes many addrConn's in a
2015-02-06 04:14:05 +03:00
// tight loop.
2016-07-29 22:57:38 +03:00
// tearDown doesn't remove ac from ac.cc.conns.
2016-05-07 01:47:09 +03:00
func ( ac * addrConn ) tearDown ( err error ) {
2016-07-29 20:16:56 +03:00
ac . cancel ( )
2016-05-07 01:47:09 +03:00
ac . mu . Lock ( )
2016-07-29 22:57:38 +03:00
defer ac . mu . Unlock ( )
2016-05-27 00:53:32 +03:00
if ac . down != nil {
ac . down ( downErrorf ( false , false , "%v" , err ) )
ac . down = nil
}
2016-07-26 02:35:32 +03:00
if err == errConnDrain && ac . transport != nil {
// GracefulClose(...) may be executed multiple times when
// i) receiving multiple GoAway frames from the server; or
// ii) there are concurrent name resolver/Balancer triggered
// address removal and GoAway.
ac . transport . GracefulClose ( )
}
if ac . state == Shutdown {
return
}
ac . state = Shutdown
2016-07-16 02:20:34 +03:00
ac . tearDownErr = err
2016-05-07 01:47:09 +03:00
ac . stateCV . Broadcast ( )
if ac . events != nil {
ac . events . Finish ( )
ac . events = nil
2015-03-05 00:00:47 +03:00
}
2016-05-07 01:47:09 +03:00
if ac . ready != nil {
close ( ac . ready )
ac . ready = nil
2015-03-04 06:04:29 +03:00
}
2016-07-26 02:35:32 +03:00
if ac . transport != nil && err != errConnDrain {
ac . transport . Close ( )
2015-03-04 06:04:29 +03:00
}
2016-05-07 01:47:09 +03:00
return
2015-02-06 04:14:05 +03:00
}