mirror of
https://github.com/octoleo/restic.git
synced 2024-11-16 10:05:25 +00:00
e4c469c149
By default (i.e., without profile.NoShutdownHook), profile.Start listens for SIGINT and will stop the profile and call os.Exit(0). restic already listens for SIGINT and runs its own cleanup handlers before calling os.Exit(0). As is, these handlers are racing when an interrupt occurs, and in my experience, restic tends to win the race, resulting in an unusable profile. Eliminate the race and properly stop profiles on interrupt by disabling package profile's signal handler and instead stop the profile in a restic cleanup handler.
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
// +build debug
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
_ "net/http/pprof"
|
|
"os"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
"github.com/restic/restic/internal/repository"
|
|
|
|
"github.com/pkg/profile"
|
|
)
|
|
|
|
var (
|
|
listenMemoryProfile string
|
|
memProfilePath string
|
|
cpuProfilePath string
|
|
insecure bool
|
|
)
|
|
|
|
func init() {
|
|
f := cmdRoot.PersistentFlags()
|
|
f.StringVar(&listenMemoryProfile, "listen-profile", "", "listen on this `address:port` for memory profiling")
|
|
f.StringVar(&memProfilePath, "mem-profile", "", "write memory profile to `dir`")
|
|
f.StringVar(&cpuProfilePath, "cpu-profile", "", "write cpu profile to `dir`")
|
|
f.BoolVar(&insecure, "insecure-kdf", false, "use insecure KDF settings")
|
|
}
|
|
|
|
type fakeTestingTB struct{}
|
|
|
|
func (fakeTestingTB) Logf(msg string, args ...interface{}) {
|
|
fmt.Fprintf(os.Stderr, msg, args...)
|
|
}
|
|
|
|
func runDebug() error {
|
|
if listenMemoryProfile != "" {
|
|
fmt.Fprintf(os.Stderr, "running memory profile HTTP server on %v\n", listenMemoryProfile)
|
|
go func() {
|
|
err := http.ListenAndServe(listenMemoryProfile, nil)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "memory profile listen failed: %v\n", err)
|
|
}
|
|
}()
|
|
}
|
|
|
|
if memProfilePath != "" && cpuProfilePath != "" {
|
|
return errors.Fatal("only one profile (memory or CPU) may be activated at the same time")
|
|
}
|
|
|
|
var prof interface {
|
|
Stop()
|
|
}
|
|
|
|
if memProfilePath != "" {
|
|
prof = profile.Start(profile.Quiet, profile.NoShutdownHook, profile.MemProfile, profile.ProfilePath(memProfilePath))
|
|
} else if cpuProfilePath != "" {
|
|
prof = profile.Start(profile.Quiet, profile.NoShutdownHook, profile.CPUProfile, profile.ProfilePath(cpuProfilePath))
|
|
}
|
|
|
|
if prof != nil {
|
|
AddCleanupHandler(func() error {
|
|
prof.Stop()
|
|
return nil
|
|
})
|
|
}
|
|
|
|
if insecure {
|
|
repository.TestUseLowSecurityKDFParameters(fakeTestingTB{})
|
|
}
|
|
|
|
return nil
|
|
}
|