mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fuzz the header parsing
This commit is contained in:
parent
7df59b855f
commit
2c22eb644c
18 changed files with 249 additions and 0 deletions
64
fuzzing/header/fuzz.go
Normal file
64
fuzzing/header/fuzz.go
Normal file
|
@ -0,0 +1,64 @@
|
|||
// +build gofuzz
|
||||
|
||||
package header
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||
)
|
||||
|
||||
const version = protocol.VersionTLS
|
||||
|
||||
func Fuzz(data []byte) int {
|
||||
if len(data) < 1 {
|
||||
return 0
|
||||
}
|
||||
connIDLen := int(data[0] % 21)
|
||||
data = data[1:]
|
||||
|
||||
isVNP := wire.IsVersionNegotiationPacket(data)
|
||||
connID, err := wire.ParseConnectionID(data, connIDLen)
|
||||
if err != nil {
|
||||
return 0
|
||||
}
|
||||
hdr, _, _, err := wire.ParsePacket(data, connIDLen)
|
||||
if err != nil {
|
||||
return 0
|
||||
}
|
||||
if !hdr.DestConnectionID.Equal(connID) {
|
||||
panic(fmt.Sprintf("Expected connection IDs to match: %s vs %s", hdr.DestConnectionID, connID))
|
||||
}
|
||||
|
||||
var extHdr *wire.ExtendedHeader
|
||||
// Parse the extended header, if this is not a Retry packet.
|
||||
if hdr.Type == protocol.PacketTypeRetry {
|
||||
extHdr = &wire.ExtendedHeader{Header: *hdr}
|
||||
} else {
|
||||
var err error
|
||||
extHdr, err = hdr.ParseExtended(bytes.NewReader(data), version)
|
||||
if err != nil {
|
||||
return 0
|
||||
}
|
||||
}
|
||||
b := &bytes.Buffer{}
|
||||
if err := extHdr.Write(b, version); err != nil {
|
||||
// We are able to parse packets with connection IDs longer than 20 bytes,
|
||||
// but in QUIC version 1, we don't write headers with longer connection IDs.
|
||||
if hdr.DestConnectionID.Len() <= protocol.MaxConnIDLen &&
|
||||
hdr.SrcConnectionID.Len() <= protocol.MaxConnIDLen &&
|
||||
hdr.OrigDestConnectionID.Len() <= protocol.MaxConnIDLen {
|
||||
panic(err)
|
||||
}
|
||||
return 0
|
||||
}
|
||||
// GetLength is not implemented for Retry and Version Negotiation.
|
||||
if !isVNP && hdr.Type != protocol.PacketTypeRetry {
|
||||
if expLen := extHdr.GetLength(version); expLen != protocol.ByteCount(b.Len()) {
|
||||
panic(fmt.Sprintf("inconsistent header length: %#v. Expected %d, got %d", extHdr, expLen, b.Len()))
|
||||
}
|
||||
}
|
||||
return 0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue