mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package utils
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/quic-go/quic-go"
|
|
"github.com/quic-go/quic-go/internal/utils"
|
|
"github.com/quic-go/quic-go/logging"
|
|
"github.com/quic-go/quic-go/qlog"
|
|
)
|
|
|
|
// 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
|
|
}
|
|
|
|
// NewQLOGConnectionTracer create a qlog file in QLOGDIR
|
|
func NewQLOGConnectionTracer(_ context.Context, p logging.Perspective, connID quic.ConnectionID) logging.ConnectionTracer {
|
|
qlogDir := os.Getenv("QLOGDIR")
|
|
if len(qlogDir) == 0 {
|
|
return nil
|
|
}
|
|
if _, err := os.Stat(qlogDir); os.IsNotExist(err) {
|
|
if err := os.MkdirAll(qlogDir, 0o666); err != nil {
|
|
log.Fatalf("failed to create qlog dir %s: %v", qlogDir, err)
|
|
}
|
|
}
|
|
path := fmt.Sprintf("%s/%x.qlog", strings.TrimRight(qlogDir, "/"), connID)
|
|
f, err := os.Create(path)
|
|
if err != nil {
|
|
log.Printf("Failed to create qlog file %s: %s", path, err.Error())
|
|
return nil
|
|
}
|
|
log.Printf("Created qlog file: %s\n", path)
|
|
return qlog.NewConnectionTracer(utils.NewBufferedWriteCloser(bufio.NewWriter(f), f), p, connID)
|
|
}
|