Skip to content

Commit

Permalink
Use io.ReadFull to read envelope prefix (#580)
Browse files Browse the repository at this point in the history
Previously, trying to reading the envelope before all 5
bytes of the prefix are ready causes an `ErrUnexpectedEOF`,
even when no EOF is observed. This results in a spurious client error:
`invalid_argument: protocol error: incomplete envelope: unexpected EOF`

Switching to use `io.ReadFull` guarantees that the entire prefix
is read and only results in `ErrUnexpectedEOF` when an actual
premature EOF is observed.

Co-authored-by: Edward McFarlane <[email protected]>
  • Loading branch information
njiang747 and emcfarlane authored Oct 6, 2023
1 parent 969bcab commit 57f56b8
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 5 deletions.
7 changes: 2 additions & 5 deletions envelope.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func (r *envelopeReader) Unmarshal(message any) *Error {

func (r *envelopeReader) Read(env *envelope) *Error {
prefixes := [5]byte{}
prefixBytesRead, err := r.reader.Read(prefixes[:])
prefixBytesRead, err := io.ReadFull(r.reader, prefixes[:])

switch {
case (err == nil || errors.Is(err, io.EOF)) &&
Expand All @@ -240,7 +240,7 @@ func (r *envelopeReader) Read(env *envelope) *Error {
// to the user so that they know that the stream has ended. We shouldn't
// add any alarming text about protocol errors, though.
return NewError(CodeUnknown, err)
case err != nil || prefixBytesRead < 5:
case err != nil:
// Something else has gone wrong - the stream didn't end cleanly.
if connectErr, ok := asError(err); ok {
return connectErr
Expand All @@ -249,9 +249,6 @@ func (r *envelopeReader) Read(env *envelope) *Error {
// We're reading from an http.MaxBytesHandler, and we've exceeded the read limit.
return maxBytesErr
}
if err == nil {
err = io.ErrUnexpectedEOF
}
return errorf(
CodeInvalidArgument,
"protocol error: incomplete envelope: %w", err,
Expand Down
74 changes: 74 additions & 0 deletions envelope_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
// Copyright 2021-2023 The Connect 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 connect

import (
"bytes"
"encoding/binary"
"io"
"testing"

"connectrpc.com/connect/internal/assert"
)

func TestEnvelope_read(t *testing.T) {
t.Parallel()

head := [5]byte{}
payload := []byte(`{"number": 42}`)
binary.BigEndian.PutUint32(head[1:], uint32(len(payload)))

buf := &bytes.Buffer{}
buf.Write(head[:])
buf.Write(payload)

t.Run("full", func(t *testing.T) {
t.Parallel()
env := &envelope{Data: &bytes.Buffer{}}
rdr := envelopeReader{
reader: bytes.NewReader(buf.Bytes()),
}
assert.Nil(t, rdr.Read(env))
assert.Equal(t, payload, env.Data.Bytes())
})
t.Run("byteByByte", func(t *testing.T) {
t.Parallel()
env := &envelope{Data: &bytes.Buffer{}}
rdr := envelopeReader{
reader: byteByByteReader{
reader: bytes.NewReader(buf.Bytes()),
},
}
assert.Nil(t, rdr.Read(env))
assert.Equal(t, payload, env.Data.Bytes())
})
}

// byteByByteReader is test reader that reads a single byte at a time.
type byteByByteReader struct {
reader io.ByteReader
}

func (b byteByByteReader) Read(data []byte) (int, error) {
if len(data) == 0 {
return 0, nil
}
next, err := b.reader.ReadByte()
if err != nil {
return 0, err
}
data[0] = next
return 1, nil
}

0 comments on commit 57f56b8

Please sign in to comment.