mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package utils
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// GetSSLKeyLog creates a file for the TLS key log
|
|
func GetSSLKeyLog() (io.WriteCloser, error) {
|
|
filename := os.Getenv("SSLKEYLOGFILE")
|
|
if len(filename) == 0 {
|
|
return nil, nil
|
|
}
|
|
f, err := os.Create(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
// GetQLOGWriter creates the QLOGDIR and returns the GetLogWriter callback
|
|
func GetQLOGWriter() (func(connID []byte) io.WriteCloser, error) {
|
|
qlogDir := os.Getenv("QLOGDIR")
|
|
if len(qlogDir) == 0 {
|
|
return nil, nil
|
|
}
|
|
if _, err := os.Stat(qlogDir); os.IsNotExist(err) {
|
|
if err := os.MkdirAll(qlogDir, 0666); err != nil {
|
|
return nil, fmt.Errorf("failed to create qlog dir %s: %s", qlogDir, err.Error())
|
|
}
|
|
}
|
|
return func(connID []byte) io.WriteCloser {
|
|
path := fmt.Sprintf("%s/%x.qlog", strings.TrimRight(qlogDir, "/"), connID)
|
|
f, err := os.Create(path)
|
|
if err != nil {
|
|
log.Fatalf("Failed to create qlog file %s: %s", path, err.Error())
|
|
}
|
|
return struct {
|
|
io.Writer
|
|
io.Closer
|
|
}{
|
|
bufio.NewWriter(f),
|
|
f,
|
|
}
|
|
}, nil
|
|
}
|