mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
29 lines
905 B
Go
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...))
|
|
}
|