Skip to content
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

rpc_util: fix bug of getting empty response when compress enabled and maxReceiveMessageSize be maxInt64 #7468

Conversation

infovivek2020
Copy link
Contributor

@infovivek2020 infovivek2020 commented Aug 1, 2024

Fixes #4552

RELEASE NOTES: fix bug of getting empty response when compress enabled and maxReceiveMessageSize be maxInt64

Copy link

codecov bot commented Aug 1, 2024

Codecov Report

Attention: Patch coverage is 61.90476% with 8 lines in your changes missing coverage. Please review.

Project coverage is 81.74%. Comparing base (b45fc41) to head (8c7d5c6).
Report is 6 commits behind head on master.

Files Patch % Lines
rpc_util.go 61.90% 4 Missing and 4 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #7468      +/-   ##
==========================================
- Coverage   82.07%   81.74%   -0.34%     
==========================================
  Files         360      360              
  Lines       27533    27521      -12     
==========================================
- Hits        22599    22497     -102     
- Misses       3759     3810      +51     
- Partials     1175     1214      +39     
Files Coverage Δ
rpc_util.go 81.84% <61.90%> (-0.30%) ⬇️

... and 29 files with indirect coverage changes

@purnesh42H
Copy link
Contributor

purnesh42H commented Aug 2, 2024

@infovivek2020 please revert the changes in greeter_client if not related to fix. You can have the repro code changes in your fork.

Few more things about convention

  1. PR title should be <package_name>: "sentence about the fix"
  2. In description, make sure to mention issue being fixed in this format "fixes: Get empty response when compress enabled and maxReceiveMessageSize be maxInt64 #4552". Also, add RELEASE NOTES: in description. Please refer to other commits to get familiar with convention

@purnesh42H
Copy link
Contributor

@infovivek2020 can you please fix the PR title and description as mentioned above

@infovivek2020 infovivek2020 changed the title 4552 compression issue empty response gpc_uttil: while compression geting empty response Aug 8, 2024
@infovivek2020 infovivek2020 changed the title gpc_uttil: while compression geting empty response rpc_util: while compression geting empty response Aug 9, 2024
@aranjans aranjans added this to the 1.66 Release milestone Aug 13, 2024
@dfawley dfawley assigned purnesh42H and unassigned infovivek2020 Aug 13, 2024
@infovivek2020
Copy link
Contributor Author

@purnesh42H Please have a look PR i have added unit test case for decompress function

@purnesh42H
Copy link
Contributor

@infovivek2020 please rebase from latest and undo the unrelated changes

@infovivek2020 infovivek2020 force-pushed the 4552-compression-issue-empty-response branch 3 times, most recently from a2a1757 to d53d3f5 Compare August 20, 2024 15:36
@infovivek2020
Copy link
Contributor Author

@purnesh42H please review this PR rebase done

@purnesh42H purnesh42H changed the title rpc_util: while compression geting empty response grpc: fix bug of getting empty response when compress enabled and maxReceiveMessageSize be maxInt64 Aug 20, 2024
@purnesh42H purnesh42H changed the title grpc: fix bug of getting empty response when compress enabled and maxReceiveMessageSize be maxInt64 rpc_util: fix bug of getting empty response when compress enabled and maxReceiveMessageSize be maxInt64 Aug 21, 2024
@@ -809,25 +810,50 @@ func decompress(compressor encoding.Compressor, d []byte, maxReceiveMessageSize
}); ok {
if size := sizer.DecompressedSize(d); size >= 0 {
if size > maxReceiveMessageSize {
return nil, size, nil
return nil, size, errors.New("message size exceeds maximum allowed")
Copy link
Contributor

@purnesh42H purnesh42H Aug 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: received message size is more than allowed maxReceiveMessageSize

@@ -266,3 +267,133 @@ func BenchmarkGZIPCompressor512KiB(b *testing.B) {
func BenchmarkGZIPCompressor1MiB(b *testing.B) {
bmCompressor(b, 1024*1024, NewGZIPCompressor())
}
func TestCheckReceiveMessageOverflow(t *testing.T) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

one line separator before TestCheckReceiveMessageOverflow

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := checkReceiveMessageOverflow(tt.readBytes, tt.maxReceiveMessageSize, tt.dcReader)
if (err != nil) != (tt.wantErr != nil) {
Copy link
Contributor

@purnesh42H purnesh42H Aug 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if  tt.wantErr != nil && err == nil   {
				t.Errorf("checkReceiveMessageOverflow(): got nil error, want an error")
			}
if err != nil && err.Error() != tt.wantErr.Error() {
				t.Errorf("checkReceiveMessageOverflow(): got err=%v, want err=%v", err, tt.wantErr)
			}
			```


if (err != nil) != tt.wantErr {
t.Errorf("decompress() error = %v, wantErr %v", err, tt.wantErr)
return
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need of return since you are raising the error before

}
}

type testCompressor struct {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we move the helper structs and functions to the top before test functions?

Copy link
Contributor

@purnesh42H purnesh42H left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall lgtm

return
}
if !bytes.Equal(output, tt.wantOutput) {
t.Errorf("decompress() got = %v, want %v", output, tt.wantOutput)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing colon (:) after decompress

t.Errorf("decompress() got = %v, want %v", output, tt.wantOutput)
}
if size != tt.wantSize {
t.Errorf("decompress() size = %d, want %d", size, tt.wantSize)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

colon (:) and got after decompress()

@purnesh42H purnesh42H assigned dfawley and unassigned purnesh42H Aug 21, 2024
}

// TestDecompress tests the decompress function.
func TestDecompress(t *testing.T) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try to cover the testcase of dcReader overflow when reading extra byte and remove the separate tests for CheckOverflow

@infovivek2020 infovivek2020 force-pushed the 4552-compression-issue-empty-response branch from 8c7d5c6 to 259244c Compare August 23, 2024 06:33
@purnesh42H
Copy link
Contributor

@infovivek2020 please fix the merge commits and reopen the PR or submit a new PR from latest main branch

@purnesh42H purnesh42H closed this Aug 28, 2024
@infovivek2020 infovivek2020 deleted the 4552-compression-issue-empty-response branch September 9, 2024 10:24
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 9, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Get empty response when compress enabled and maxReceiveMessageSize be maxInt64
5 participants