mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
Merge pull request #2702 from lucas-clemente/oss-fuzz
update fuzzing code for oss-fuzz
This commit is contained in:
commit
d7c2169c55
5 changed files with 32 additions and 15 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@ fuzzing/*/crashers
|
||||||
fuzzing/*/sonarprofile
|
fuzzing/*/sonarprofile
|
||||||
fuzzing/*/suppressions
|
fuzzing/*/suppressions
|
||||||
fuzzing/*/corpus/
|
fuzzing/*/corpus/
|
||||||
|
fuzzing/*-fuzz.zip
|
||||||
!fuzzing/frames/single-frame*
|
!fuzzing/frames/single-frame*
|
||||||
!fuzzing/frames/multiple-frame*
|
!fuzzing/frames/multiple-frame*
|
||||||
!fuzzing/header/header*
|
!fuzzing/header/header*
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
// +build !gofuzz
|
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
|
@ -1,5 +1,3 @@
|
||||||
// +build gofuzz
|
|
||||||
|
|
||||||
package frames
|
package frames
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -10,9 +8,10 @@ import (
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
//go:generate go run ./cmd/corpus.go
|
||||||
|
func Fuzz(data []byte) int {
|
||||||
const version = protocol.VersionTLS
|
const version = protocol.VersionTLS
|
||||||
|
|
||||||
func Fuzz(data []byte) int {
|
|
||||||
if len(data) < 1 {
|
if len(data) < 1 {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
// +build !gofuzz
|
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
|
@ -1,5 +1,3 @@
|
||||||
// +build gofuzz
|
|
||||||
|
|
||||||
package header
|
package header
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -12,6 +10,7 @@ import (
|
||||||
|
|
||||||
const version = protocol.VersionTLS
|
const version = protocol.VersionTLS
|
||||||
|
|
||||||
|
//go:generate go run ./cmd/corpus.go
|
||||||
func Fuzz(data []byte) int {
|
func Fuzz(data []byte) int {
|
||||||
if len(data) < 1 {
|
if len(data) < 1 {
|
||||||
return 0
|
return 0
|
||||||
|
@ -19,7 +18,9 @@ func Fuzz(data []byte) int {
|
||||||
connIDLen := int(data[0] % 21)
|
connIDLen := int(data[0] % 21)
|
||||||
data = data[1:]
|
data = data[1:]
|
||||||
|
|
||||||
isVNP := wire.IsVersionNegotiationPacket(data)
|
if wire.IsVersionNegotiationPacket(data) {
|
||||||
|
return fuzzVNP(data)
|
||||||
|
}
|
||||||
connID, err := wire.ParseConnectionID(data, connIDLen)
|
connID, err := wire.ParseConnectionID(data, connIDLen)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0
|
return 0
|
||||||
|
@ -48,17 +49,37 @@ func Fuzz(data []byte) int {
|
||||||
// We are able to parse packets with connection IDs longer than 20 bytes,
|
// 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.
|
// but in QUIC version 1, we don't write headers with longer connection IDs.
|
||||||
if hdr.DestConnectionID.Len() <= protocol.MaxConnIDLen &&
|
if hdr.DestConnectionID.Len() <= protocol.MaxConnIDLen &&
|
||||||
hdr.SrcConnectionID.Len() <= protocol.MaxConnIDLen &&
|
hdr.SrcConnectionID.Len() <= protocol.MaxConnIDLen {
|
||||||
hdr.OrigDestConnectionID.Len() <= protocol.MaxConnIDLen {
|
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
// GetLength is not implemented for Retry and Version Negotiation.
|
// GetLength is not implemented for Retry packets
|
||||||
if !isVNP && hdr.Type != protocol.PacketTypeRetry {
|
if hdr.Type != protocol.PacketTypeRetry {
|
||||||
if expLen := extHdr.GetLength(version); expLen != protocol.ByteCount(b.Len()) {
|
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()))
|
panic(fmt.Sprintf("inconsistent header length: %#v. Expected %d, got %d", extHdr, expLen, b.Len()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func fuzzVNP(data []byte) int {
|
||||||
|
connID, err := wire.ParseConnectionID(data, 0)
|
||||||
|
if err != nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
hdr, versions, err := wire.ParseVersionNegotiationPacket(bytes.NewReader(data))
|
||||||
|
if err != nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
if !hdr.DestConnectionID.Equal(connID) {
|
||||||
|
panic("connection IDs don't match")
|
||||||
|
}
|
||||||
|
if len(versions) == 0 {
|
||||||
|
panic("no versions")
|
||||||
|
}
|
||||||
|
if _, err := wire.ComposeVersionNegotiation(hdr.SrcConnectionID, hdr.DestConnectionID, versions); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue