uquic/fuzzing/internal/helper/export.go
Marten Seemann 9a8e39327b implement a function to export a corpus file
The file name of that file is calculated to be the SHA1 sum of the contents.
2020-08-25 15:06:00 +07:00

29 lines
905 B
Go

package helper
import (
"crypto/sha1"
"encoding/hex"
"io/ioutil"
"os"
"path/filepath"
)
// WriteCorpusFile writes data to a corpus file in directory path.
// The filename is calculated from the SHA1 sum of the file contents.
func WriteCorpusFile(path string, data []byte) error {
// create the directory, if it doesn't exist yet
if _, err := os.Stat(path); os.IsNotExist(err) {
if err := os.MkdirAll(path, os.ModePerm); err != nil {
return err
}
}
hash := sha1.Sum(data)
return ioutil.WriteFile(filepath.Join(path, hex.EncodeToString(hash[:])), data, 0644)
}
// WriteCorpusFileWithPrefix writes data to a corpus file in directory path.
// In many fuzzers, the first n bytes are used to control.
// This function prepends n zero-bytes to the data.
func WriteCorpusFileWithPrefix(path string, data []byte, n int) error {
return WriteCorpusFile(path, append(make([]byte, n), data...))
}