maddy/signal.go
fox.cpp ea40a8fbc5
Implement global callbacks for "shutdown" and "reload"
This allows modules (and any other code) to implement arbitrary actions
on server shutdown and "reload". Later will be used to address issues
like #160. There are no plans to implement complete configuration
reloading, however, since it adds a lot of problems to the modules
framework and it is believed to be "not worth it" at the moment.

Closes #130.
2020-01-02 12:26:32 +03:00

43 lines
1.1 KiB
Go

//+build darwin dragonfly freebsd linux netbsd openbsd solaris
package maddy
import (
"os"
"os/signal"
"syscall"
"github.com/foxcpp/maddy/internal/hooks"
"github.com/foxcpp/maddy/internal/log"
)
// handleSignals function creates and listens on OS signals channel.
//
// OS-specific signals that correspond to the program termination
// (SIGTERM, SIGHUP, SIGINT) will cause this function to return.
//
// SIGUSR1 will call reinitLogging without returning.
func handleSignals() os.Signal {
sig := make(chan os.Signal, 5)
signal.Notify(sig, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGINT, syscall.SIGUSR1, syscall.SIGUSR2)
for {
switch s := <-sig; s {
case syscall.SIGUSR1:
log.Printf("signal received (%s), rotating logs", s.String())
hooks.RunHooks(hooks.EventLogRotate)
case syscall.SIGUSR2:
log.Printf("signal received (%s), reloading state", s.String())
hooks.RunHooks(hooks.EventReload)
default:
go func() {
s := handleSignals()
log.Printf("forced shutdown due to signal (%v)!", s)
os.Exit(1)
}()
log.Printf("signal received (%v), next signal will force immediate shutdown.", s)
return s
}
}
}