| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248 |
- /*
- *
- * 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 grpc
- import (
- "errors"
- "math"
- "net"
- "strings"
- "sync"
- "time"
- "golang.org/x/net/context"
- "golang.org/x/net/trace"
- "google.golang.org/grpc/connectivity"
- "google.golang.org/grpc/credentials"
- "google.golang.org/grpc/grpclog"
- "google.golang.org/grpc/keepalive"
- "google.golang.org/grpc/stats"
- "google.golang.org/grpc/transport"
- )
- var (
- // ErrClientConnClosing indicates that the operation is illegal because
- // the ClientConn is closing.
- ErrClientConnClosing = errors.New("grpc: the client connection is closing")
- // ErrClientConnTimeout indicates that the ClientConn cannot establish the
- // underlying connections within the specified timeout.
- // DEPRECATED: Please use context.DeadlineExceeded instead.
- ErrClientConnTimeout = errors.New("grpc: timed out when dialing")
- // errNoTransportSecurity indicates that there is no transport security
- // being set for ClientConn. Users should either set one or explicitly
- // call WithInsecure DialOption to disable security.
- errNoTransportSecurity = errors.New("grpc: no transport security set (use grpc.WithInsecure() explicitly or set credentials)")
- // errTransportCredentialsMissing indicates that users want to transmit security
- // information (e.g., oauth2 token) which requires secure connection on an insecure
- // connection.
- 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)")
- // errNetworkIO indicates that the connection is down due to some network I/O error.
- 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")
- // errConnUnavailable indicates that the connection is unavailable.
- errConnUnavailable = errors.New("grpc: the connection is unavailable")
- // errBalancerClosed indicates that the balancer is closed.
- errBalancerClosed = errors.New("grpc: balancer is closed")
- // minimum time to give a connection to complete
- minConnectTimeout = 20 * time.Second
- )
- // dialOptions configure a Dial call. dialOptions are set by the DialOption
- // values passed to Dial.
- type dialOptions struct {
- unaryInt UnaryClientInterceptor
- streamInt StreamClientInterceptor
- codec Codec
- cp Compressor
- dc Decompressor
- bs backoffStrategy
- balancer Balancer
- block bool
- insecure bool
- timeout time.Duration
- scChan <-chan ServiceConfig
- copts transport.ConnectOptions
- callOptions []CallOption
- }
- const (
- defaultClientMaxReceiveMessageSize = 1024 * 1024 * 4
- defaultClientMaxSendMessageSize = math.MaxInt32
- )
- // DialOption configures how we set up the connection.
- type DialOption func(*dialOptions)
- // WithInitialWindowSize returns a DialOption which sets the value for initial window size on a stream.
- // The lower bound for window size is 64K and any value smaller than that will be ignored.
- func WithInitialWindowSize(s int32) DialOption {
- return func(o *dialOptions) {
- o.copts.InitialWindowSize = s
- }
- }
- // WithInitialConnWindowSize returns a DialOption which sets the value for initial window size on a connection.
- // The lower bound for window size is 64K and any value smaller than that will be ignored.
- func WithInitialConnWindowSize(s int32) DialOption {
- return func(o *dialOptions) {
- o.copts.InitialConnWindowSize = s
- }
- }
- // WithMaxMsgSize returns a DialOption which sets the maximum message size the client can receive. Deprecated: use WithDefaultCallOptions(MaxCallRecvMsgSize(s)) instead.
- func WithMaxMsgSize(s int) DialOption {
- return WithDefaultCallOptions(MaxCallRecvMsgSize(s))
- }
- // WithDefaultCallOptions returns a DialOption which sets the default CallOptions for calls over the connection.
- func WithDefaultCallOptions(cos ...CallOption) DialOption {
- return func(o *dialOptions) {
- o.callOptions = append(o.callOptions, cos...)
- }
- }
- // WithCodec returns a DialOption which sets a codec for message marshaling and unmarshaling.
- func WithCodec(c Codec) DialOption {
- return func(o *dialOptions) {
- o.codec = c
- }
- }
- // WithCompressor returns a DialOption which sets a CompressorGenerator for generating message
- // compressor.
- func WithCompressor(cp Compressor) DialOption {
- return func(o *dialOptions) {
- o.cp = cp
- }
- }
- // WithDecompressor returns a DialOption which sets a DecompressorGenerator for generating
- // message decompressor.
- func WithDecompressor(dc Decompressor) DialOption {
- return func(o *dialOptions) {
- o.dc = dc
- }
- }
- // WithBalancer returns a DialOption which sets a load balancer.
- func WithBalancer(b Balancer) DialOption {
- return func(o *dialOptions) {
- o.balancer = b
- }
- }
- // 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
- }
- }
- // WithBackoffMaxDelay configures the dialer to use the provided maximum delay
- // when backing off after failed connection attempts.
- func WithBackoffMaxDelay(md time.Duration) DialOption {
- return WithBackoffConfig(BackoffConfig{MaxDelay: md})
- }
- // WithBackoffConfig configures the dialer to use the provided backoff
- // parameters after connection failures.
- //
- // Use WithBackoffMaxDelay until more parameters on BackoffConfig are opened up
- // for use.
- func WithBackoffConfig(b BackoffConfig) DialOption {
- // Set defaults to ensure that provided BackoffConfig is valid and
- // unexported fields get default values.
- setDefaults(&b)
- return withBackoff(b)
- }
- // withBackoff sets the backoff strategy used for retries after a
- // failed connection attempt.
- //
- // This can be exported if arbitrary backoff strategies are allowed by gRPC.
- func withBackoff(bs backoffStrategy) DialOption {
- return func(o *dialOptions) {
- o.bs = bs
- }
- }
- // WithBlock returns a DialOption which makes caller of Dial blocks until the underlying
- // connection is up. Without this, Dial returns immediately and connecting the server
- // happens in background.
- func WithBlock() DialOption {
- return func(o *dialOptions) {
- o.block = true
- }
- }
- // WithInsecure returns a DialOption which disables transport security for this ClientConn.
- // Note that transport security is required unless WithInsecure is set.
- func WithInsecure() DialOption {
- return func(o *dialOptions) {
- o.insecure = true
- }
- }
- // WithTransportCredentials returns a DialOption which configures a
- // connection level security credentials (e.g., TLS/SSL).
- func WithTransportCredentials(creds credentials.TransportCredentials) DialOption {
- return func(o *dialOptions) {
- o.copts.TransportCredentials = creds
- }
- }
- // WithPerRPCCredentials returns a DialOption which sets
- // credentials and places auth state on each outbound RPC.
- func WithPerRPCCredentials(creds credentials.PerRPCCredentials) DialOption {
- return func(o *dialOptions) {
- o.copts.PerRPCCredentials = append(o.copts.PerRPCCredentials, creds)
- }
- }
- // WithTimeout returns a DialOption that configures a timeout for dialing a ClientConn
- // initially. This is valid if and only if WithBlock() is present.
- // Deprecated: use DialContext and context.WithTimeout instead.
- func WithTimeout(d time.Duration) DialOption {
- return func(o *dialOptions) {
- o.timeout = d
- }
- }
- // WithDialer returns a DialOption that specifies a function to use for dialing network addresses.
- // 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.
- func WithDialer(f func(string, time.Duration) (net.Conn, error)) DialOption {
- return func(o *dialOptions) {
- 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)
- }
- }
- }
- // 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
- }
- }
- // FailOnNonTempDialError returns a DialOption that specifies 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
- }
- }
- // 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
- }
- }
- // WithKeepaliveParams returns a DialOption that specifies keepalive paramaters for the client transport.
- func WithKeepaliveParams(kp keepalive.ClientParameters) DialOption {
- return func(o *dialOptions) {
- o.copts.KeepaliveParams = kp
- }
- }
- // 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
- }
- }
- // WithAuthority returns a DialOption that specifies the value to be used as
- // the :authority pseudo-header. This value only works with WithInsecure and
- // has no effect if TransportCredentials are present.
- func WithAuthority(a string) DialOption {
- return func(o *dialOptions) {
- o.copts.Authority = a
- }
- }
- // Dial creates a client connection to the given target.
- func Dial(target string, opts ...DialOption) (*ClientConn, error) {
- return DialContext(context.Background(), target, opts...)
- }
- // DialContext creates a client connection to the given target. ctx can be used to
- // cancel or expire the pending connection. 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.
- func DialContext(ctx context.Context, target string, opts ...DialOption) (conn *ClientConn, err error) {
- cc := &ClientConn{
- target: target,
- csMgr: &connectivityStateManager{},
- conns: make(map[Address]*addrConn),
- }
- cc.csEvltr = &connectivityStateEvaluator{csMgr: cc.csMgr}
- cc.ctx, cc.cancel = context.WithCancel(context.Background())
- for _, opt := range opts {
- opt(&cc.dopts)
- }
- cc.mkp = cc.dopts.copts.KeepaliveParams
- if cc.dopts.copts.Dialer == nil {
- cc.dopts.copts.Dialer = newProxyDialer(
- func(ctx context.Context, addr string) (net.Conn, error) {
- return dialContext(ctx, "tcp", addr)
- },
- )
- }
- if cc.dopts.copts.UserAgent != "" {
- cc.dopts.copts.UserAgent += " " + grpcUA
- } else {
- cc.dopts.copts.UserAgent = grpcUA
- }
- if cc.dopts.timeout > 0 {
- var cancel context.CancelFunc
- ctx, cancel = context.WithTimeout(ctx, cc.dopts.timeout)
- defer cancel()
- }
- defer func() {
- select {
- case <-ctx.Done():
- conn, err = nil, ctx.Err()
- default:
- }
- if err != nil {
- cc.Close()
- }
- }()
- scSet := false
- if cc.dopts.scChan != nil {
- // Try to get an initial service config.
- select {
- case sc, ok := <-cc.dopts.scChan:
- if ok {
- cc.sc = sc
- scSet = true
- }
- default:
- }
- }
- // Set defaults.
- if cc.dopts.codec == nil {
- cc.dopts.codec = protoCodec{}
- }
- if cc.dopts.bs == nil {
- cc.dopts.bs = DefaultBackoffConfig
- }
- creds := cc.dopts.copts.TransportCredentials
- if creds != nil && creds.Info().ServerName != "" {
- cc.authority = creds.Info().ServerName
- } else if cc.dopts.insecure && cc.dopts.copts.Authority != "" {
- cc.authority = cc.dopts.copts.Authority
- } else {
- cc.authority = target
- }
- waitC := make(chan error, 1)
- go func() {
- defer close(waitC)
- if cc.dopts.balancer == nil && cc.sc.LB != nil {
- cc.dopts.balancer = cc.sc.LB
- }
- if cc.dopts.balancer != nil {
- var credsClone credentials.TransportCredentials
- if creds != nil {
- credsClone = creds.Clone()
- }
- config := BalancerConfig{
- DialCreds: credsClone,
- Dialer: cc.dopts.copts.Dialer,
- }
- if err := cc.dopts.balancer.Start(target, config); err != nil {
- waitC <- err
- return
- }
- ch := cc.dopts.balancer.Notify()
- if ch != nil {
- if cc.dopts.block {
- doneChan := make(chan struct{})
- go cc.lbWatcher(doneChan)
- <-doneChan
- } else {
- go cc.lbWatcher(nil)
- }
- return
- }
- }
- // No balancer, or no resolver within the balancer. Connect directly.
- if err := cc.resetAddrConn([]Address{{Addr: target}}, cc.dopts.block, nil); err != nil {
- waitC <- err
- return
- }
- }()
- select {
- case <-ctx.Done():
- return nil, ctx.Err()
- case err := <-waitC:
- if err != nil {
- return nil, err
- }
- }
- if cc.dopts.scChan != nil && !scSet {
- // Blocking 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()
- }
- }
- if cc.dopts.scChan != nil {
- go cc.scWatcher()
- }
- return cc, nil
- }
- // connectivityStateEvaluator gets updated by addrConns when their
- // states transition, based on which it evaluates the state of
- // ClientConn.
- // Note: This code will eventually sit in the balancer in the new design.
- type connectivityStateEvaluator struct {
- csMgr *connectivityStateManager
- mu sync.Mutex
- numReady uint64 // Number of addrConns in ready state.
- numConnecting uint64 // Number of addrConns in connecting state.
- numTransientFailure uint64 // Number of addrConns in transientFailure.
- }
- // recordTransition records state change happening in every addrConn and based on
- // that it evaluates what state the ClientConn is in.
- // It can only transition between connectivity.Ready, connectivity.Connecting and connectivity.TransientFailure. Other states,
- // Idle and connectivity.Shutdown are transitioned into by ClientConn; in the begining of the connection
- // before any addrConn is created ClientConn is in idle state. In the end when ClientConn
- // closes it is in connectivity.Shutdown state.
- // TODO Note that in later releases, a ClientConn with no activity will be put into an Idle state.
- func (cse *connectivityStateEvaluator) recordTransition(oldState, newState connectivity.State) {
- cse.mu.Lock()
- defer cse.mu.Unlock()
- // Update counters.
- for idx, state := range []connectivity.State{oldState, newState} {
- updateVal := 2*uint64(idx) - 1 // -1 for oldState and +1 for new.
- switch state {
- case connectivity.Ready:
- cse.numReady += updateVal
- case connectivity.Connecting:
- cse.numConnecting += updateVal
- case connectivity.TransientFailure:
- cse.numTransientFailure += updateVal
- }
- }
- // Evaluate.
- if cse.numReady > 0 {
- cse.csMgr.updateState(connectivity.Ready)
- return
- }
- if cse.numConnecting > 0 {
- cse.csMgr.updateState(connectivity.Connecting)
- return
- }
- cse.csMgr.updateState(connectivity.TransientFailure)
- }
- // connectivityStateManager keeps the connectivity.State of ClientConn.
- // This struct will eventually be exported so the balancers can access it.
- type connectivityStateManager struct {
- mu sync.Mutex
- state connectivity.State
- notifyChan chan struct{}
- }
- // updateState updates the connectivity.State of ClientConn.
- // If there's a change it notifies goroutines waiting on state change to
- // happen.
- func (csm *connectivityStateManager) updateState(state connectivity.State) {
- csm.mu.Lock()
- defer csm.mu.Unlock()
- if csm.state == connectivity.Shutdown {
- return
- }
- if csm.state == state {
- return
- }
- csm.state = state
- if csm.notifyChan != nil {
- // There are other goroutines waiting on this channel.
- close(csm.notifyChan)
- csm.notifyChan = nil
- }
- }
- func (csm *connectivityStateManager) getState() connectivity.State {
- csm.mu.Lock()
- defer csm.mu.Unlock()
- return csm.state
- }
- func (csm *connectivityStateManager) getNotifyChan() <-chan struct{} {
- csm.mu.Lock()
- defer csm.mu.Unlock()
- if csm.notifyChan == nil {
- csm.notifyChan = make(chan struct{})
- }
- return csm.notifyChan
- }
- // ClientConn represents a client connection to an RPC server.
- type ClientConn struct {
- ctx context.Context
- cancel context.CancelFunc
- target string
- authority string
- dopts dialOptions
- csMgr *connectivityStateManager
- csEvltr *connectivityStateEvaluator // This will eventually be part of balancer.
- mu sync.RWMutex
- sc ServiceConfig
- conns map[Address]*addrConn
- // Keepalive parameter can be updated if a GoAway is received.
- mkp keepalive.ClientParameters
- }
- // WaitForStateChange waits until the connectivity.State of ClientConn changes from sourceState or
- // ctx expires. A true value is returned in former case and false in latter.
- // This is an EXPERIMENTAL API.
- func (cc *ClientConn) WaitForStateChange(ctx context.Context, sourceState connectivity.State) bool {
- ch := cc.csMgr.getNotifyChan()
- if cc.csMgr.getState() != sourceState {
- return true
- }
- select {
- case <-ctx.Done():
- return false
- case <-ch:
- return true
- }
- }
- // GetState returns the connectivity.State of ClientConn.
- // This is an EXPERIMENTAL API.
- func (cc *ClientConn) GetState() connectivity.State {
- return cc.csMgr.getState()
- }
- // lbWatcher watches the Notify channel of the balancer in cc and manages
- // connections accordingly. If doneChan is not nil, it is closed after the
- // first successfull connection is made.
- func (cc *ClientConn) lbWatcher(doneChan chan struct{}) {
- defer func() {
- // In case channel from cc.dopts.balancer.Notify() gets closed before a
- // successful connection gets established, don't forget to notify the
- // caller.
- if doneChan != nil {
- close(doneChan)
- }
- }()
- _, isPickFirst := cc.dopts.balancer.(*pickFirst)
- for addrs := range cc.dopts.balancer.Notify() {
- if isPickFirst {
- if len(addrs) == 0 {
- // No address can be connected, should teardown current addrconn if exists
- cc.mu.Lock()
- if len(cc.conns) != 0 {
- cc.pickFirstAddrConnTearDown()
- }
- cc.mu.Unlock()
- } else {
- cc.resetAddrConn(addrs, true, nil)
- if doneChan != nil {
- close(doneChan)
- doneChan = nil
- }
- }
- } else {
- // Not pickFirst, create a new addrConn for each address.
- 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)
- }
- }
- for k, c := range cc.conns {
- var keep bool
- for _, a := range addrs {
- if k == a {
- keep = true
- break
- }
- }
- if !keep {
- del = append(del, c)
- delete(cc.conns, k)
- }
- }
- cc.mu.Unlock()
- for _, a := range add {
- var err error
- if doneChan != nil {
- err = cc.resetAddrConn([]Address{a}, true, nil)
- if err == nil {
- close(doneChan)
- doneChan = nil
- }
- } else {
- err = cc.resetAddrConn([]Address{a}, false, nil)
- }
- if err != nil {
- grpclog.Warningf("Error creating connection to %v. Err: %v", a, err)
- }
- }
- for _, c := range del {
- c.tearDown(errConnDrain)
- }
- }
- }
- }
- 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
- }
- }
- }
- // pickFirstUpdateAddresses checks whether current address in the updating list, Update the list if true.
- // It is only used when the balancer is pick first.
- func (cc *ClientConn) pickFirstUpdateAddresses(addrs []Address) bool {
- if len(cc.conns) == 0 {
- // No addrconn. Should go resetting addrconn.
- return false
- }
- var currentAc *addrConn
- for _, currentAc = range cc.conns {
- break
- }
- var addrInNewSlice bool
- for _, addr := range addrs {
- if strings.Compare(addr.Addr, currentAc.curAddr.Addr) == 0 {
- addrInNewSlice = true
- break
- }
- }
- if addrInNewSlice {
- cc.conns = make(map[Address]*addrConn)
- for _, addr := range addrs {
- cc.conns[addr] = currentAc
- }
- currentAc.addrs = addrs
- return true
- }
- return false
- }
- // pickFirstAddrConnTearDown() should be called after lock.
- func (cc *ClientConn) pickFirstAddrConnTearDown() {
- if len(cc.conns) == 0 {
- return
- }
- var currentAc *addrConn
- for _, currentAc = range cc.conns {
- break
- }
- for k := range cc.conns {
- delete(cc.conns, k)
- }
- currentAc.tearDown(errConnDrain)
- }
- // resetAddrConn creates an addrConn for addr and adds it to cc.conns.
- // 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.
- //
- // We should never need to replace an addrConn with a new one. This function is only used
- // as newAddrConn to create new addrConn.
- // TODO rename this function and clean up the code.
- func (cc *ClientConn) resetAddrConn(addrs []Address, block bool, tearDownErr error) error {
- // if current transport in addrs, just change lists to update order and new addresses
- // not work for roundrobin
- cc.mu.Lock()
- if _, isPickFirst := cc.dopts.balancer.(*pickFirst); isPickFirst {
- // If Current address in use in the updating list, just update the list.
- // Otherwise, teardown current addrconn and create a new one.
- if cc.pickFirstUpdateAddresses(addrs) {
- cc.mu.Unlock()
- return nil
- }
- cc.pickFirstAddrConnTearDown()
- }
- cc.mu.Unlock()
- ac := &addrConn{
- cc: cc,
- addrs: addrs,
- dopts: cc.dopts,
- }
- ac.ctx, ac.cancel = context.WithCancel(cc.ctx)
- ac.csEvltr = cc.csEvltr
- if EnableTracing {
- ac.events = trace.NewEventLog("grpc.ClientConn", ac.addrs[0].Addr)
- }
- if !ac.dopts.insecure {
- if ac.dopts.copts.TransportCredentials == nil {
- return errNoTransportSecurity
- }
- } else {
- if ac.dopts.copts.TransportCredentials != nil {
- return errCredentialsConflict
- }
- for _, cd := range ac.dopts.copts.PerRPCCredentials {
- if cd.RequireTransportSecurity() {
- return errTransportCredentialsMissing
- }
- }
- }
- // Track ac in cc. This needs to be done before any getTransport(...) is called.
- cc.mu.Lock()
- if cc.conns == nil {
- cc.mu.Unlock()
- return ErrClientConnClosing
- }
- stale := cc.conns[ac.addrs[0]]
- for _, a := range ac.addrs {
- cc.conns[a] = ac
- }
- cc.mu.Unlock()
- if stale != nil {
- // There is an addrConn alive on ac.addr already. This could be due to
- // a buggy Balancer that reports duplicated Addresses.
- if tearDownErr == nil {
- // tearDownErr is nil if resetAddrConn is called by
- // 1) Dial
- // 2) lbWatcher
- // In both cases, the stale ac should drain, not close.
- stale.tearDown(errConnDrain)
- } else {
- stale.tearDown(tearDownErr)
- }
- }
- if block {
- if err := ac.resetTransport(false); err != nil {
- if err != errConnClosing {
- // Tear down ac and delete it from cc.conns.
- cc.mu.Lock()
- delete(cc.conns, ac.addrs[0])
- cc.mu.Unlock()
- ac.tearDown(err)
- }
- if e, ok := err.(transport.ConnectionError); ok && !e.Temporary() {
- return e.Origin()
- }
- return err
- }
- // Start to monitor the error status of transport.
- go ac.transportMonitor()
- } else {
- // Start a goroutine connecting to the server asynchronously.
- go func() {
- if err := ac.resetTransport(false); err != nil {
- grpclog.Warningf("Failed to dial %s: %v; please retry.", ac.addrs[0].Addr, err)
- if err != errConnClosing {
- // Keep this ac in cc.conns, to get the reason it's torn down.
- ac.tearDown(err)
- }
- return
- }
- ac.transportMonitor()
- }()
- }
- return nil
- }
- // GetMethodConfig gets the method config of the input method.
- // If there's an exact match for input method (i.e. /service/method), we return
- // the corresponding MethodConfig.
- // If there isn't an exact match for the input method, we look for the default config
- // under the service (i.e /service/). If there is a default MethodConfig for
- // the serivce, we return it.
- // Otherwise, we return an empty MethodConfig.
- func (cc *ClientConn) GetMethodConfig(method string) MethodConfig {
- // TODO: Avoid the locking here.
- cc.mu.RLock()
- defer cc.mu.RUnlock()
- m, ok := cc.sc.Methods[method]
- if !ok {
- i := strings.LastIndex(method, "/")
- m, _ = cc.sc.Methods[method[:i+1]]
- }
- return m
- }
- func (cc *ClientConn) getTransport(ctx context.Context, opts BalancerGetOptions) (transport.ClientTransport, func(), error) {
- var (
- ac *addrConn
- ok bool
- put func()
- )
- if cc.dopts.balancer == nil {
- // If balancer is nil, there should be only one addrConn available.
- cc.mu.RLock()
- if cc.conns == nil {
- cc.mu.RUnlock()
- return nil, nil, toRPCErr(ErrClientConnClosing)
- }
- for _, ac = range cc.conns {
- // Break after the first iteration to get the first addrConn.
- ok = true
- break
- }
- cc.mu.RUnlock()
- } else {
- var (
- addr Address
- err error
- )
- addr, put, err = cc.dopts.balancer.Get(ctx, opts)
- 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]
- cc.mu.RUnlock()
- }
- if !ok {
- if put != nil {
- updateRPCInfoInContext(ctx, rpcInfo{bytesSent: false, bytesReceived: false})
- put()
- }
- return nil, nil, errConnClosing
- }
- t, err := ac.wait(ctx, cc.dopts.balancer != nil, !opts.BlockingWait)
- if err != nil {
- if put != nil {
- updateRPCInfoInContext(ctx, rpcInfo{bytesSent: false, bytesReceived: false})
- put()
- }
- return nil, nil, err
- }
- return t, put, nil
- }
- // Close tears down the ClientConn and all underlying connections.
- func (cc *ClientConn) Close() error {
- cc.cancel()
- cc.mu.Lock()
- if cc.conns == nil {
- cc.mu.Unlock()
- return ErrClientConnClosing
- }
- conns := cc.conns
- cc.conns = nil
- cc.csMgr.updateState(connectivity.Shutdown)
- cc.mu.Unlock()
- if cc.dopts.balancer != nil {
- cc.dopts.balancer.Close()
- }
- for _, ac := range conns {
- ac.tearDown(ErrClientConnClosing)
- }
- return nil
- }
- // addrConn is a network connection to a given address.
- type addrConn struct {
- ctx context.Context
- cancel context.CancelFunc
- cc *ClientConn
- curAddr Address
- addrs []Address
- dopts dialOptions
- events trace.EventLog
- csEvltr *connectivityStateEvaluator
- mu sync.Mutex
- state connectivity.State
- 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
- // The reason this addrConn is torn down.
- tearDownErr error
- }
- // adjustParams updates parameters used to create transports upon
- // receiving a GoAway.
- func (ac *addrConn) adjustParams(r transport.GoAwayReason) {
- switch r {
- case transport.TooManyPings:
- v := 2 * ac.dopts.copts.KeepaliveParams.Time
- ac.cc.mu.Lock()
- if v > ac.cc.mkp.Time {
- ac.cc.mkp.Time = v
- }
- ac.cc.mu.Unlock()
- }
- }
- // 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...)
- }
- }
- // resetTransport recreates a transport to the address for ac.
- // For the old transport:
- // - if drain is true, it will be gracefully closed.
- // - otherwise, it will be closed.
- func (ac *addrConn) resetTransport(drain bool) error {
- ac.mu.Lock()
- if ac.state == connectivity.Shutdown {
- ac.mu.Unlock()
- return errConnClosing
- }
- ac.printf("connecting")
- if ac.down != nil {
- ac.down(downErrorf(false, true, "%v", errNetworkIO))
- ac.down = nil
- }
- oldState := ac.state
- ac.state = connectivity.Connecting
- ac.csEvltr.recordTransition(oldState, ac.state)
- t := ac.transport
- ac.transport = nil
- ac.mu.Unlock()
- if t != nil && !drain {
- t.Close()
- }
- ac.cc.mu.RLock()
- ac.dopts.copts.KeepaliveParams = ac.cc.mkp
- ac.cc.mu.RUnlock()
- for retries := 0; ; retries++ {
- ac.mu.Lock()
- sleepTime := ac.dopts.bs.backoff(retries)
- timeout := minConnectTimeout
- if timeout < time.Duration(int(sleepTime)/len(ac.addrs)) {
- timeout = time.Duration(int(sleepTime) / len(ac.addrs))
- }
- connectTime := time.Now()
- // copy ac.addrs in case of race
- addrsIter := make([]Address, len(ac.addrs))
- copy(addrsIter, ac.addrs)
- ac.mu.Unlock()
- for _, addr := range addrsIter {
- ac.mu.Lock()
- if ac.state == connectivity.Shutdown {
- // ac.tearDown(...) has been invoked.
- ac.mu.Unlock()
- return errConnClosing
- }
- ac.mu.Unlock()
- ctx, cancel := context.WithTimeout(ac.ctx, timeout)
- sinfo := transport.TargetInfo{
- Addr: addr.Addr,
- Metadata: addr.Metadata,
- }
- newTransport, err := transport.NewClientTransport(ctx, sinfo, ac.dopts.copts)
- // Don't call cancel in success path due to a race in Go 1.6:
- // https://github.com/golang/go/issues/15078.
- if err != nil {
- cancel()
- if e, ok := err.(transport.ConnectionError); ok && !e.Temporary() {
- return err
- }
- grpclog.Warningf("grpc: addrConn.resetTransport failed to create client transport: %v; Reconnecting to %v", err, addr)
- ac.mu.Lock()
- if ac.state == connectivity.Shutdown {
- // ac.tearDown(...) has been invoked.
- ac.mu.Unlock()
- return errConnClosing
- }
- ac.errorf("transient failure: %v", err)
- oldState = ac.state
- ac.state = connectivity.TransientFailure
- ac.csEvltr.recordTransition(oldState, ac.state)
- if ac.ready != nil {
- close(ac.ready)
- ac.ready = nil
- }
- ac.mu.Unlock()
- continue
- }
- ac.mu.Lock()
- ac.printf("ready")
- if ac.state == connectivity.Shutdown {
- // ac.tearDown(...) has been invoked.
- ac.mu.Unlock()
- newTransport.Close()
- return errConnClosing
- }
- oldState = ac.state
- ac.state = connectivity.Ready
- ac.csEvltr.recordTransition(oldState, ac.state)
- ac.transport = newTransport
- if ac.ready != nil {
- close(ac.ready)
- ac.ready = nil
- }
- if ac.cc.dopts.balancer != nil {
- ac.down = ac.cc.dopts.balancer.Up(addr)
- }
- ac.curAddr = addr
- ac.mu.Unlock()
- return nil
- }
- timer := time.NewTimer(sleepTime - time.Since(connectTime))
- select {
- case <-timer.C:
- case <-ac.ctx.Done():
- timer.Stop()
- return ac.ctx.Err()
- }
- timer.Stop()
- }
- }
- // 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.
- func (ac *addrConn) transportMonitor() {
- for {
- ac.mu.Lock()
- t := ac.transport
- ac.mu.Unlock()
- select {
- // This is needed to detect the teardown when
- // the addrConn is idle (i.e., no RPC in flight).
- case <-ac.ctx.Done():
- select {
- case <-t.Error():
- t.Close()
- default:
- }
- return
- case <-t.GoAway():
- ac.adjustParams(t.GetGoAwayReason())
- // If GoAway happens without any network I/O error, the underlying transport
- // will be gracefully closed, and a new transport will be created.
- // (The transport will be closed when all the pending RPCs finished or failed.)
- // If GoAway and some network I/O error happen concurrently, the underlying transport
- // will be closed, and a new transport will be created.
- var drain bool
- select {
- case <-t.Error():
- default:
- drain = true
- }
- if err := ac.resetTransport(drain); err != nil {
- grpclog.Infof("get error from resetTransport %v, transportMonitor returning", err)
- if err != errConnClosing {
- // Keep this ac in cc.conns, to get the reason it's torn down.
- ac.tearDown(err)
- }
- return
- }
- case <-t.Error():
- select {
- case <-ac.ctx.Done():
- t.Close()
- return
- case <-t.GoAway():
- ac.adjustParams(t.GetGoAwayReason())
- if err := ac.resetTransport(false); err != nil {
- grpclog.Infof("get error from resetTransport %v, transportMonitor returning", err)
- if err != errConnClosing {
- // Keep this ac in cc.conns, to get the reason it's torn down.
- ac.tearDown(err)
- }
- return
- }
- default:
- }
- ac.mu.Lock()
- if ac.state == connectivity.Shutdown {
- // ac has been shutdown.
- ac.mu.Unlock()
- return
- }
- oldState := ac.state
- ac.state = connectivity.TransientFailure
- ac.csEvltr.recordTransition(oldState, ac.state)
- ac.mu.Unlock()
- if err := ac.resetTransport(false); err != nil {
- grpclog.Infof("get error from resetTransport %v, transportMonitor returning", err)
- ac.mu.Lock()
- ac.printf("transport exiting: %v", err)
- ac.mu.Unlock()
- grpclog.Warningf("grpc: addrConn.transportMonitor exits due to: %v", err)
- if err != errConnClosing {
- // Keep this ac in cc.conns, to get the reason it's torn down.
- ac.tearDown(err)
- }
- return
- }
- }
- }
- }
- // wait blocks until i) the new transport is up or ii) ctx is done or iii) ac is closed or
- // iv) transport is in connectivity.TransientFailure and there is a balancer/failfast is true.
- func (ac *addrConn) wait(ctx context.Context, hasBalancer, failfast bool) (transport.ClientTransport, error) {
- for {
- ac.mu.Lock()
- switch {
- case ac.state == connectivity.Shutdown:
- 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
- }
- ac.mu.Unlock()
- return nil, errConnClosing
- case ac.state == connectivity.Ready:
- ct := ac.transport
- ac.mu.Unlock()
- return ct, nil
- case ac.state == connectivity.TransientFailure:
- if failfast || hasBalancer {
- ac.mu.Unlock()
- return nil, errConnUnavailable
- }
- }
- 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:
- }
- }
- }
- // tearDown starts to tear down the addrConn.
- // TODO(zhaoq): Make this synchronous to avoid unbounded memory consumption in
- // some edge cases (e.g., the caller opens and closes many addrConn's in a
- // tight loop.
- // tearDown doesn't remove ac from ac.cc.conns.
- func (ac *addrConn) tearDown(err error) {
- ac.cancel()
- ac.mu.Lock()
- ac.curAddr = Address{}
- defer ac.mu.Unlock()
- if ac.down != nil {
- ac.down(downErrorf(false, false, "%v", err))
- ac.down = nil
- }
- 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 == connectivity.Shutdown {
- return
- }
- oldState := ac.state
- ac.state = connectivity.Shutdown
- ac.tearDownErr = err
- ac.csEvltr.recordTransition(oldState, ac.state)
- if ac.events != nil {
- ac.events.Finish()
- ac.events = nil
- }
- if ac.ready != nil {
- close(ac.ready)
- ac.ready = nil
- }
- if ac.transport != nil && err != errConnDrain {
- ac.transport.Close()
- }
- return
- }
|