mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
throw a MissingPayload error when unpacking packets with no frames
fixes #175
This commit is contained in:
parent
0d46cc1dd4
commit
581dc8a079
2 changed files with 15 additions and 5 deletions
|
@ -37,6 +37,10 @@ func (u *packetUnpacker) Unpack(publicHeaderBinary []byte, hdr *publicHeader, r
|
|||
}
|
||||
entropyBit := privateFlag&0x01 > 0
|
||||
|
||||
if r.Len() == 0 {
|
||||
return nil, qerr.MissingPayload
|
||||
}
|
||||
|
||||
fs := make([]frames.Frame, 0, 1)
|
||||
|
||||
// Read all frames in the packet
|
||||
|
|
|
@ -6,6 +6,7 @@ import (
|
|||
"github.com/lucas-clemente/quic-go/crypto"
|
||||
"github.com/lucas-clemente/quic-go/frames"
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
"github.com/lucas-clemente/quic-go/qerr"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
@ -37,12 +38,17 @@ var _ = Describe("Packet unpacker", func() {
|
|||
r = bytes.NewReader(aead.Seal(0, hdrBin, append([]byte{0x01}, data...)))
|
||||
}
|
||||
|
||||
It("unpacks empty packets", func() {
|
||||
It("returns an error for empty packets that don't have a private flag", func() {
|
||||
// don't use setReader here, since it adds a private flag
|
||||
r = bytes.NewReader(aead.Seal(0, hdrBin, []byte{}))
|
||||
_, err := unpacker.Unpack(hdrBin, hdr, r)
|
||||
Expect(err).To(MatchError(qerr.MissingPayload))
|
||||
})
|
||||
|
||||
It("returns an error for empty packets that have a private flag", func() {
|
||||
setReader(nil)
|
||||
packet, err := unpacker.Unpack(hdrBin, hdr, r)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(packet.entropyBit).To(BeTrue())
|
||||
Expect(packet.frames).To(BeEmpty())
|
||||
_, err := unpacker.Unpack(hdrBin, hdr, r)
|
||||
Expect(err).To(MatchError(qerr.MissingPayload))
|
||||
})
|
||||
|
||||
It("unpacks stream frames", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue