summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/fuzz.go
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv6/fuzz.go')
-rw-r--r--dhcpv6/fuzz.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/dhcpv6/fuzz.go b/dhcpv6/fuzz.go
new file mode 100644
index 0000000..3f5afef
--- /dev/null
+++ b/dhcpv6/fuzz.go
@@ -0,0 +1,33 @@
+// +build gofuzz
+
+package dhcpv6
+
+import (
+ "bytes"
+ "fmt"
+)
+
+// Fuzz is an entrypoint for go-fuzz (github.com/dvyukov/go-fuzz)
+func Fuzz(data []byte) int {
+ msg, err := FromBytes(data)
+ if err != nil {
+ return 0
+ }
+
+ serialized := msg.ToBytes()
+ if !bytes.Equal(data, serialized) {
+ rtMsg, err := FromBytes(serialized)
+ fmt.Printf("Input: %x\n", data)
+ fmt.Printf("Round-trip: %x\n", serialized)
+ fmt.Println("Message: ", msg.Summary())
+ fmt.Printf("Go repr: %#v\n", msg)
+ fmt.Println("round-trip reserialized: ", rtMsg.Summary())
+ fmt.Printf("Go repr: %#v\n", rtMsg)
+ if err != nil {
+ fmt.Printf("failed to parse after deserialize-serialize: %v\n", err)
+ }
+ panic("round-trip different")
+ }
+
+ return 1
+}