-
Notifications
You must be signed in to change notification settings - Fork 4.5k
balancer: disallow producer streams until SubConn has reported READY #7523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* | ||
* | ||
* Copyright 2024 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_test | ||
|
||
import ( | ||
"context" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
||
"google.golang.org/grpc" | ||
"google.golang.org/grpc/balancer" | ||
"google.golang.org/grpc/connectivity" | ||
"google.golang.org/grpc/credentials/insecure" | ||
"google.golang.org/grpc/internal/balancer/stub" | ||
"google.golang.org/grpc/internal/stubserver" | ||
testgrpc "google.golang.org/grpc/interop/grpc_testing" | ||
) | ||
|
||
type producerBuilder struct{} | ||
|
||
type producer struct { | ||
client testgrpc.TestServiceClient | ||
stopped chan struct{} | ||
} | ||
|
||
// Build constructs and returns a producer and its cleanup function | ||
func (*producerBuilder) Build(cci any) (balancer.Producer, func()) { | ||
p := &producer{ | ||
client: testgrpc.NewTestServiceClient(cci.(grpc.ClientConnInterface)), | ||
stopped: make(chan struct{}), | ||
} | ||
return p, func() { | ||
<-p.stopped | ||
} | ||
} | ||
|
||
func (p *producer) TestStreamStart(t *testing.T, streamStarted chan<- struct{}) { | ||
go func() { | ||
defer close(p.stopped) | ||
ctx, cancel := context.WithTimeout(context.Background(), defaultTestTimeout) | ||
defer cancel() | ||
if _, err := p.client.FullDuplexCall(ctx); err != nil { | ||
t.Errorf("Unexpected error starting stream: %v", err) | ||
} | ||
close(streamStarted) | ||
}() | ||
} | ||
|
||
var producerBuilderSingleton = &producerBuilder{} | ||
|
||
// TestProducerStreamStartsAfterReady ensures producer streams only start after | ||
// the subchannel reports as READY to the LB policy. | ||
func (s) TestProducerStreamStartsAfterReady(t *testing.T) { | ||
name := strings.ReplaceAll(strings.ToLower(t.Name()), "/", "") | ||
producerCh := make(chan balancer.Producer) | ||
streamStarted := make(chan struct{}) | ||
done := make(chan struct{}) | ||
bf := stub.BalancerFuncs{ | ||
UpdateClientConnState: func(bd *stub.BalancerData, ccs balancer.ClientConnState) error { | ||
sc, err := bd.ClientConn.NewSubConn(ccs.ResolverState.Addresses, balancer.NewSubConnOptions{ | ||
StateListener: func(scs balancer.SubConnState) { | ||
if scs.ConnectivityState == connectivity.Ready { | ||
timer := time.NewTimer(5 * time.Millisecond) | ||
select { | ||
case <-streamStarted: | ||
t.Errorf("Producer stream started before Ready listener returned") | ||
case <-timer.C: | ||
} | ||
close(done) | ||
} | ||
}, | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
producer, _ := sc.GetOrBuildProducer(producerBuilderSingleton) | ||
producerCh <- producer | ||
sc.Connect() | ||
return nil | ||
}, | ||
} | ||
stub.Register(name, bf) | ||
|
||
ss := stubserver.StubServer{ | ||
FullDuplexCallF: func(stream testgrpc.TestService_FullDuplexCallServer) error { | ||
return nil | ||
}, | ||
} | ||
if err := ss.StartServer(); err != nil { | ||
t.Fatal("Error starting server:", err) | ||
} | ||
defer ss.Stop() | ||
|
||
cc, err := grpc.NewClient("dns:///"+ss.Address, | ||
grpc.WithDefaultServiceConfig(`{"loadBalancingConfig": [{"`+name+`":{}}]}`), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. " There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's shorter...? And this is a test so there's no concerns about escaping or buffer overflow attacks or anything, so I think this is OK? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure. I didn't have any concerns about this. I was just curious to understand this new way. |
||
grpc.WithTransportCredentials(insecure.NewCredentials()), | ||
) | ||
if err != nil { | ||
t.Fatalf("Error creating client: %v", err) | ||
} | ||
defer cc.Close() | ||
|
||
go cc.Connect() | ||
p := <-producerCh | ||
p.(*producer).TestStreamStart(t, streamStarted) | ||
|
||
<-done | ||
} |
Uh oh!
There was an error while loading. Please reload this page.