mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 13:05:36 +03:00
698b963e11
Squashed commit of the following:
commit 6ce649c06398cf8a6f8e1a90f560fa8205f6500e
Merge: 1c6327e5d 996c6b3ee
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Jul 25 17:42:01 2023 +0300
Merge branch 'master' into imp-filter-upd
commit 1c6327e5d4c04393abc5d4d3e4b8568d4c6eca23
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Fri Jul 21 17:32:47 2023 +0300
all: imp code; use renameio/v2 consistently
commit 1669288c9b662d1310f83a4e0d3f1f60731188cd
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Fri Jul 21 16:26:17 2023 +0300
all: add renameioutil; imp flt upd
167 lines
3.6 KiB
Go
167 lines
3.6 KiB
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/agh"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/configmgr"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
"github.com/google/renameio/v2/maybe"
|
|
)
|
|
|
|
// signalHandler processes incoming signals and shuts services down.
|
|
type signalHandler struct {
|
|
// confMgrConf contains the configuration parameters for the configuration
|
|
// manager.
|
|
confMgrConf *configmgr.Config
|
|
|
|
// signal is the channel to which OS signals are sent.
|
|
signal chan os.Signal
|
|
|
|
// pidFile is the path to the file where to store the PID, if any.
|
|
pidFile string
|
|
|
|
// services are the services that are shut down before application exiting.
|
|
services []agh.Service
|
|
}
|
|
|
|
// handle processes OS signals.
|
|
func (h *signalHandler) handle() {
|
|
defer log.OnPanic("signalHandler.handle")
|
|
|
|
h.writePID()
|
|
|
|
for sig := range h.signal {
|
|
log.Info("sighdlr: received signal %q", sig)
|
|
|
|
if aghos.IsReconfigureSignal(sig) {
|
|
h.reconfigure()
|
|
} else if aghos.IsShutdownSignal(sig) {
|
|
status := h.shutdown()
|
|
h.removePID()
|
|
|
|
log.Info("sighdlr: exiting with status %d", status)
|
|
|
|
os.Exit(status)
|
|
}
|
|
}
|
|
}
|
|
|
|
// reconfigure rereads the configuration file and updates and restarts services.
|
|
func (h *signalHandler) reconfigure() {
|
|
log.Info("sighdlr: reconfiguring adguard home")
|
|
|
|
status := h.shutdown()
|
|
if status != statusSuccess {
|
|
log.Info("sighdlr: reconfiguring: exiting with status %d", status)
|
|
|
|
os.Exit(status)
|
|
}
|
|
|
|
// TODO(a.garipov): This is a very rough way to do it. Some services can be
|
|
// reconfigured without the full shutdown, and the error handling is
|
|
// currently not the best.
|
|
|
|
confMgr, err := newConfigMgr(h.confMgrConf)
|
|
check(err)
|
|
|
|
web := confMgr.Web()
|
|
err = web.Start()
|
|
check(err)
|
|
|
|
dns := confMgr.DNS()
|
|
err = dns.Start()
|
|
check(err)
|
|
|
|
h.services = []agh.Service{
|
|
dns,
|
|
web,
|
|
}
|
|
|
|
log.Info("sighdlr: successfully reconfigured adguard home")
|
|
}
|
|
|
|
// Exit status constants.
|
|
const (
|
|
statusSuccess = 0
|
|
statusError = 1
|
|
statusArgumentError = 2
|
|
)
|
|
|
|
// shutdown gracefully shuts down all services.
|
|
func (h *signalHandler) shutdown() (status int) {
|
|
ctx, cancel := ctxWithDefaultTimeout()
|
|
defer cancel()
|
|
|
|
status = statusSuccess
|
|
|
|
log.Info("sighdlr: shutting down services")
|
|
for i, service := range h.services {
|
|
err := service.Shutdown(ctx)
|
|
if err != nil {
|
|
log.Error("sighdlr: shutting down service at index %d: %s", i, err)
|
|
status = statusError
|
|
}
|
|
}
|
|
|
|
return status
|
|
}
|
|
|
|
// newSignalHandler returns a new signalHandler that shuts down svcs.
|
|
func newSignalHandler(
|
|
confMgrConf *configmgr.Config,
|
|
pidFile string,
|
|
svcs ...agh.Service,
|
|
) (h *signalHandler) {
|
|
h = &signalHandler{
|
|
confMgrConf: confMgrConf,
|
|
signal: make(chan os.Signal, 1),
|
|
pidFile: pidFile,
|
|
services: svcs,
|
|
}
|
|
|
|
aghos.NotifyShutdownSignal(h.signal)
|
|
aghos.NotifyReconfigureSignal(h.signal)
|
|
|
|
return h
|
|
}
|
|
|
|
// writePID writes the PID to the file, if needed. Any errors are reported to
|
|
// log.
|
|
func (h *signalHandler) writePID() {
|
|
if h.pidFile == "" {
|
|
return
|
|
}
|
|
|
|
// Use 8, since most PIDs will fit.
|
|
data := make([]byte, 0, 8)
|
|
data = strconv.AppendInt(data, int64(os.Getpid()), 10)
|
|
data = append(data, '\n')
|
|
|
|
err := maybe.WriteFile(h.pidFile, data, 0o644)
|
|
if err != nil {
|
|
log.Error("sighdlr: writing pidfile: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
log.Debug("sighdlr: wrote pid to %q", h.pidFile)
|
|
}
|
|
|
|
// removePID removes the PID file, if any.
|
|
func (h *signalHandler) removePID() {
|
|
if h.pidFile == "" {
|
|
return
|
|
}
|
|
|
|
err := os.Remove(h.pidFile)
|
|
if err != nil {
|
|
log.Error("sighdlr: removing pidfile: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
log.Debug("sighdlr: removed pid at %q", h.pidFile)
|
|
}
|