2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
import (
|
2019-04-01 02:22:54 -07:00
|
|
|
"bufio"
|
2019-04-25 04:57:03 -07:00
|
|
|
"context"
|
2019-02-12 11:14:02 -07:00
|
|
|
"crypto/tls"
|
2018-08-30 07:25:33 -07:00
|
|
|
"fmt"
|
2019-04-01 02:22:54 -07:00
|
|
|
"io"
|
2019-04-05 02:19:28 -07:00
|
|
|
"io/ioutil"
|
2018-08-30 07:25:33 -07:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2019-04-01 02:22:54 -07:00
|
|
|
"os/exec"
|
2018-12-05 05:36:18 -07:00
|
|
|
"os/signal"
|
2018-08-30 07:25:33 -07:00
|
|
|
"path/filepath"
|
2019-02-05 04:09:05 -07:00
|
|
|
"runtime"
|
2018-08-30 07:25:33 -07:00
|
|
|
"strconv"
|
2019-04-01 02:22:54 -07:00
|
|
|
"strings"
|
2019-02-12 11:14:02 -07:00
|
|
|
"sync"
|
2018-12-05 05:36:18 -07:00
|
|
|
"syscall"
|
2019-06-05 17:00:15 -07:00
|
|
|
"time"
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2019-11-22 04:21:08 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dhcpd"
|
2019-12-11 02:38:58 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsfilter"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsforward"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/querylog"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/stats"
|
2019-02-25 06:44:22 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2019-04-04 05:32:00 -07:00
|
|
|
"github.com/NYTimes/gziphandler"
|
2018-08-30 07:25:33 -07:00
|
|
|
"github.com/gobuffalo/packr"
|
|
|
|
)
|
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
const (
|
|
|
|
// Used in config to indicate that syslog or eventlog (win) should be used for logger output
|
|
|
|
configSyslog = "syslog"
|
|
|
|
)
|
|
|
|
|
2019-06-20 04:36:26 -07:00
|
|
|
// Update-related variables
|
|
|
|
var (
|
|
|
|
versionString string
|
|
|
|
updateChannel string
|
|
|
|
versionCheckURL string
|
|
|
|
)
|
|
|
|
|
|
|
|
const versionCheckPeriod = time.Hour * 8
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
// Global context
|
|
|
|
type homeContext struct {
|
|
|
|
clients clientsContainer // per-client-settings module
|
|
|
|
stats stats.Stats // statistics module
|
|
|
|
queryLog querylog.QueryLog // query log module
|
|
|
|
dnsServer *dnsforward.Server // DNS module
|
|
|
|
rdns *RDNS // rDNS module
|
|
|
|
whois *Whois // WHOIS module
|
|
|
|
dnsFilter *dnsfilter.Dnsfilter // DNS filtering module
|
|
|
|
dhcpServer *dhcpd.Server // DHCP module
|
|
|
|
httpServer *http.Server // HTTP module
|
|
|
|
httpsServer HTTPSServer // HTTPS module
|
|
|
|
}
|
|
|
|
|
|
|
|
// Context - a global context object
|
|
|
|
var Context homeContext
|
|
|
|
|
2019-07-09 08:52:18 -07:00
|
|
|
// Main is the entry point
|
2019-06-20 04:36:26 -07:00
|
|
|
func Main(version string, channel string) {
|
|
|
|
// Init update-related global variables
|
|
|
|
versionString = version
|
|
|
|
updateChannel = channel
|
|
|
|
versionCheckURL = "https://static.adguard.com/adguardhome/" + updateChannel + "/version.json"
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
// config can be specified, which reads options from there, but other command line flags have to override config values
|
|
|
|
// therefore, we must do it manually instead of using a lib
|
|
|
|
args := loadOptions()
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
if args.serviceControlAction != "" {
|
|
|
|
handleServiceControlAction(args.serviceControlAction)
|
|
|
|
return
|
2018-10-29 16:17:24 -07:00
|
|
|
}
|
2018-10-15 06:13:03 -07:00
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
// run the protection
|
|
|
|
run(args)
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// run initializes configuration and runs the AdGuard Home
|
2019-02-05 04:09:05 -07:00
|
|
|
// run is a blocking method and it won't exit until the service is stopped!
|
2019-08-19 14:55:32 -07:00
|
|
|
// nolint
|
2019-02-04 03:54:53 -07:00
|
|
|
func run(args options) {
|
2019-02-05 04:09:05 -07:00
|
|
|
// config file path can be overridden by command-line arguments:
|
2019-02-04 03:54:53 -07:00
|
|
|
if args.configFilename != "" {
|
|
|
|
config.ourConfigFilename = args.configFilename
|
|
|
|
}
|
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
// configure working dir and config path
|
2019-02-05 10:35:48 -07:00
|
|
|
initWorkingDir(args)
|
2019-02-05 04:09:05 -07:00
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
// configure log level and output
|
|
|
|
configureLogger(args)
|
|
|
|
|
|
|
|
// print the first message after logger is configured
|
2019-06-20 04:36:26 -07:00
|
|
|
log.Printf("AdGuard Home, version %s, channel %s\n", versionString, updateChannel)
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Debug("Current working directory is %s", config.ourWorkingDir)
|
2019-02-05 04:09:05 -07:00
|
|
|
if args.runningAsService {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info("AdGuard Home is running as a service")
|
2019-02-05 04:09:05 -07:00
|
|
|
}
|
2019-05-17 04:22:59 -07:00
|
|
|
config.runningAsService = args.runningAsService
|
2019-05-27 08:48:33 -07:00
|
|
|
config.disableUpdate = args.disableUpdate
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2019-01-29 10:41:57 -07:00
|
|
|
config.firstRun = detectFirstRun()
|
2019-04-01 02:22:54 -07:00
|
|
|
if config.firstRun {
|
|
|
|
requireAdminRights()
|
|
|
|
}
|
|
|
|
|
2019-07-02 02:56:23 -07:00
|
|
|
config.appSignalChannel = make(chan os.Signal)
|
|
|
|
signal.Notify(config.appSignalChannel, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGQUIT)
|
2019-04-01 02:22:54 -07:00
|
|
|
go func() {
|
2019-07-02 02:56:23 -07:00
|
|
|
<-config.appSignalChannel
|
2019-04-01 02:22:54 -07:00
|
|
|
cleanup()
|
|
|
|
cleanupAlways()
|
|
|
|
os.Exit(0)
|
|
|
|
}()
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2019-07-09 08:37:24 -07:00
|
|
|
initConfig()
|
2019-07-23 02:21:37 -07:00
|
|
|
initServices()
|
2019-05-31 06:39:18 -07:00
|
|
|
|
2019-04-30 04:38:24 -07:00
|
|
|
if !config.firstRun {
|
|
|
|
// Do the upgrade if necessary
|
|
|
|
err := upgradeConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = parseConfig()
|
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2019-04-30 05:26:57 -07:00
|
|
|
|
|
|
|
if args.checkConfig {
|
|
|
|
log.Info("Configuration file is OK")
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
2019-10-11 09:56:18 -07:00
|
|
|
config.DHCP.WorkDir = config.ourWorkingDir
|
|
|
|
config.DHCP.HTTPRegister = httpRegister
|
|
|
|
config.DHCP.ConfigModified = onConfigModified
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.dhcpServer = dhcpd.Create(config.DHCP)
|
|
|
|
Context.clients.Init(config.Clients, Context.dhcpServer)
|
2019-09-26 06:40:52 -07:00
|
|
|
config.Clients = nil
|
|
|
|
|
2019-03-27 07:09:48 -07:00
|
|
|
if (runtime.GOOS == "linux" || runtime.GOOS == "darwin") &&
|
|
|
|
config.RlimitNoFile != 0 {
|
|
|
|
setRlimit(config.RlimitNoFile)
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
// override bind host/port from the console
|
|
|
|
if args.bindHost != "" {
|
|
|
|
config.BindHost = args.bindHost
|
|
|
|
}
|
|
|
|
if args.bindPort != 0 {
|
|
|
|
config.BindPort = args.bindPort
|
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2019-04-30 04:38:24 -07:00
|
|
|
if !config.firstRun {
|
|
|
|
// Save the updated config
|
|
|
|
err := config.write()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
err = initDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("%s", err)
|
|
|
|
}
|
2019-10-09 09:51:26 -07:00
|
|
|
go func() {
|
2019-12-11 07:54:34 -07:00
|
|
|
err := startDNSServer()
|
2019-10-09 09:51:26 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}()
|
2018-09-05 16:00:57 -07:00
|
|
|
|
2019-02-01 09:25:04 -07:00
|
|
|
err = startDHCPServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-12-28 11:01:16 -07:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:19:28 -07:00
|
|
|
if len(args.pidFile) != 0 && writePIDFile(args.pidFile) {
|
2019-07-09 08:49:31 -07:00
|
|
|
config.pidFileName = args.pidFile
|
2019-04-05 02:19:28 -07:00
|
|
|
}
|
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
// Initialize and run the admin Web interface
|
2019-06-10 01:33:19 -07:00
|
|
|
box := packr.NewBox("../build/static")
|
2019-04-04 05:32:00 -07:00
|
|
|
|
2019-01-29 10:41:57 -07:00
|
|
|
// if not configured, redirect / to /install.html, otherwise redirect /install.html to /
|
2019-04-04 05:32:00 -07:00
|
|
|
http.Handle("/", postInstallHandler(optionalAuthHandler(gziphandler.GzipHandler(http.FileServer(box)))))
|
2019-02-05 04:09:05 -07:00
|
|
|
registerControlHandlers()
|
|
|
|
|
2019-02-06 06:48:04 -07:00
|
|
|
// add handlers for /install paths, we only need them when we're not configured yet
|
|
|
|
if config.firstRun {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info("This is the first launch of AdGuard Home, redirecting everything to /install.html ")
|
2019-02-06 06:48:04 -07:00
|
|
|
http.Handle("/install.html", preInstallHandler(http.FileServer(box)))
|
|
|
|
registerInstallHandlers()
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpsServer.cond = sync.NewCond(&Context.httpsServer.Mutex)
|
2019-02-12 11:14:02 -07:00
|
|
|
|
|
|
|
// for https, we have a separate goroutine loop
|
2019-04-23 01:36:23 -07:00
|
|
|
go httpServerLoop()
|
2019-02-12 11:14:02 -07:00
|
|
|
|
2019-02-06 06:47:17 -07:00
|
|
|
// this loop is used as an ability to change listening host and/or port
|
2019-12-11 02:38:58 -07:00
|
|
|
for !Context.httpsServer.shutdown {
|
2019-02-22 07:59:42 -07:00
|
|
|
printHTTPAddresses("http")
|
|
|
|
|
2019-02-06 06:47:17 -07:00
|
|
|
// we need to have new instance, because after Shutdown() the Server is not usable
|
2019-02-22 07:59:42 -07:00
|
|
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpServer = &http.Server{
|
2019-02-06 06:47:17 -07:00
|
|
|
Addr: address,
|
|
|
|
}
|
2019-12-11 02:38:58 -07:00
|
|
|
err := Context.httpServer.ListenAndServe()
|
2019-02-06 06:47:17 -07:00
|
|
|
if err != http.ErrServerClosed {
|
2019-04-05 02:19:28 -07:00
|
|
|
cleanupAlways()
|
2019-02-06 06:47:17 -07:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
// We use ErrServerClosed as a sign that we need to rebind on new address, so go back to the start of the loop
|
|
|
|
}
|
2019-04-25 04:57:03 -07:00
|
|
|
|
|
|
|
// wait indefinitely for other go-routines to complete their job
|
|
|
|
select {}
|
2019-02-05 04:09:05 -07:00
|
|
|
}
|
|
|
|
|
2019-04-23 01:36:23 -07:00
|
|
|
func httpServerLoop() {
|
2019-12-11 02:38:58 -07:00
|
|
|
for !Context.httpsServer.shutdown {
|
|
|
|
Context.httpsServer.cond.L.Lock()
|
2019-04-23 01:36:23 -07:00
|
|
|
// this mechanism doesn't let us through until all conditions are met
|
|
|
|
for config.TLS.Enabled == false ||
|
|
|
|
config.TLS.PortHTTPS == 0 ||
|
2019-08-13 02:32:52 -07:00
|
|
|
len(config.TLS.PrivateKeyData) == 0 ||
|
|
|
|
len(config.TLS.CertificateChainData) == 0 { // sleep until necessary data is supplied
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpsServer.cond.Wait()
|
2019-04-23 01:36:23 -07:00
|
|
|
}
|
|
|
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.TLS.PortHTTPS))
|
|
|
|
// validate current TLS config and update warnings (it could have been loaded from file)
|
2019-08-13 02:32:52 -07:00
|
|
|
data := validateCertificates(string(config.TLS.CertificateChainData), string(config.TLS.PrivateKeyData), config.TLS.ServerName)
|
2019-04-23 01:36:23 -07:00
|
|
|
if !data.ValidPair {
|
|
|
|
cleanupAlways()
|
|
|
|
log.Fatal(data.WarningValidation)
|
|
|
|
}
|
|
|
|
config.Lock()
|
|
|
|
config.TLS.tlsConfigStatus = data // update warnings
|
|
|
|
config.Unlock()
|
|
|
|
|
|
|
|
// prepare certs for HTTPS server
|
|
|
|
// important -- they have to be copies, otherwise changing the contents in config.TLS will break encryption for in-flight requests
|
2019-08-13 02:32:52 -07:00
|
|
|
certchain := make([]byte, len(config.TLS.CertificateChainData))
|
|
|
|
copy(certchain, config.TLS.CertificateChainData)
|
|
|
|
privatekey := make([]byte, len(config.TLS.PrivateKeyData))
|
|
|
|
copy(privatekey, config.TLS.PrivateKeyData)
|
2019-04-23 01:36:23 -07:00
|
|
|
cert, err := tls.X509KeyPair(certchain, privatekey)
|
|
|
|
if err != nil {
|
|
|
|
cleanupAlways()
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpsServer.cond.L.Unlock()
|
2019-04-23 01:36:23 -07:00
|
|
|
|
|
|
|
// prepare HTTPS server
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpsServer.server = &http.Server{
|
2019-04-23 01:36:23 -07:00
|
|
|
Addr: address,
|
|
|
|
TLSConfig: &tls.Config{
|
|
|
|
Certificates: []tls.Certificate{cert},
|
|
|
|
MinVersion: tls.VersionTLS12,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
printHTTPAddresses("https")
|
2019-12-11 02:38:58 -07:00
|
|
|
err = Context.httpsServer.server.ListenAndServeTLS("", "")
|
2019-04-23 01:36:23 -07:00
|
|
|
if err != http.ErrServerClosed {
|
|
|
|
cleanupAlways()
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 02:22:54 -07:00
|
|
|
// Check if the current user has root (administrator) rights
|
|
|
|
// and if not, ask and try to run as root
|
|
|
|
func requireAdminRights() {
|
|
|
|
admin, _ := haveAdminRights()
|
|
|
|
if admin {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
log.Fatal("This is the first launch of AdGuard Home. You must run it as Administrator.")
|
|
|
|
|
|
|
|
} else {
|
|
|
|
log.Error("This is the first launch of AdGuard Home. You must run it as root.")
|
|
|
|
|
|
|
|
_, _ = io.WriteString(os.Stdout, "Do you want to start AdGuard Home as root user? [y/n] ")
|
|
|
|
stdin := bufio.NewReader(os.Stdin)
|
|
|
|
buf, _ := stdin.ReadString('\n')
|
|
|
|
buf = strings.TrimSpace(buf)
|
|
|
|
if buf != "y" {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command("sudo", os.Args...)
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
_ = cmd.Run()
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 02:19:28 -07:00
|
|
|
// Write PID to a file
|
|
|
|
func writePIDFile(fn string) bool {
|
|
|
|
data := fmt.Sprintf("%d", os.Getpid())
|
|
|
|
err := ioutil.WriteFile(fn, []byte(data), 0644)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Couldn't write PID to file %s: %v", fn, err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
// initWorkingDir initializes the ourWorkingDir
|
|
|
|
// if no command-line arguments specified, we use the directory where our binary file is located
|
2019-02-05 10:35:48 -07:00
|
|
|
func initWorkingDir(args options) {
|
2019-02-05 04:09:05 -07:00
|
|
|
exec, err := os.Executable()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
if args.workDir != "" {
|
2019-02-05 10:35:48 -07:00
|
|
|
// If there is a custom config file, use it's directory as our working dir
|
2019-02-10 10:47:43 -07:00
|
|
|
config.ourWorkingDir = args.workDir
|
2019-02-05 04:09:05 -07:00
|
|
|
} else {
|
2019-02-10 10:47:43 -07:00
|
|
|
config.ourWorkingDir = filepath.Dir(exec)
|
2019-02-05 04:09:05 -07:00
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// configureLogger configures logger level and output
|
|
|
|
func configureLogger(args options) {
|
|
|
|
ls := getLogSettings()
|
|
|
|
|
|
|
|
// command-line arguments can override config settings
|
|
|
|
if args.verbose {
|
|
|
|
ls.Verbose = true
|
|
|
|
}
|
|
|
|
if args.logFile != "" {
|
|
|
|
ls.LogFile = args.logFile
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
// log.SetLevel(log.INFO) - default
|
2019-02-25 06:44:22 -07:00
|
|
|
if ls.Verbose {
|
2019-12-11 02:38:58 -07:00
|
|
|
log.SetLevel(log.DEBUG)
|
2019-02-25 06:44:22 -07:00
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
if args.runningAsService && ls.LogFile == "" && runtime.GOOS == "windows" {
|
|
|
|
// When running as a Windows service, use eventlog by default if nothing else is configured
|
|
|
|
// Otherwise, we'll simply loose the log output
|
|
|
|
ls.LogFile = configSyslog
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
if ls.LogFile == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
if ls.LogFile == configSyslog {
|
|
|
|
// Use syslog where it is possible and eventlog on Windows
|
|
|
|
err := configureSyslog()
|
2019-02-04 03:54:53 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("cannot initialize syslog: %s", err)
|
|
|
|
}
|
2019-02-05 04:09:05 -07:00
|
|
|
} else {
|
2019-02-10 10:47:43 -07:00
|
|
|
logFilePath := filepath.Join(config.ourWorkingDir, ls.LogFile)
|
2019-03-14 08:06:53 -07:00
|
|
|
if filepath.IsAbs(ls.LogFile) {
|
|
|
|
logFilePath = ls.LogFile
|
|
|
|
}
|
|
|
|
|
|
|
|
file, err := os.OpenFile(logFilePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
|
2019-02-05 04:09:05 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("cannot create a log file: %s", err)
|
|
|
|
}
|
2019-02-25 06:44:22 -07:00
|
|
|
log.SetOutput(file)
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2018-10-12 09:40:43 -07:00
|
|
|
|
2018-12-05 05:36:18 -07:00
|
|
|
func cleanup() {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info("Stopping AdGuard Home")
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2018-12-05 05:36:18 -07:00
|
|
|
err := stopDNSServer()
|
|
|
|
if err != nil {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Error("Couldn't stop DNS server: %s", err)
|
2018-12-05 05:36:18 -07:00
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
err = stopDHCPServer()
|
|
|
|
if err != nil {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Error("Couldn't stop DHCP server: %s", err)
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
2018-12-05 05:36:18 -07:00
|
|
|
}
|
|
|
|
|
2019-04-25 04:57:03 -07:00
|
|
|
// Stop HTTP server, possibly waiting for all active connections to be closed
|
|
|
|
func stopHTTPServer() {
|
2019-11-20 08:25:27 -07:00
|
|
|
log.Info("Stopping HTTP server...")
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpsServer.shutdown = true
|
|
|
|
if Context.httpsServer.server != nil {
|
|
|
|
Context.httpsServer.server.Shutdown(context.TODO())
|
2019-04-25 04:57:03 -07:00
|
|
|
}
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.httpServer.Shutdown(context.TODO())
|
2019-11-20 08:25:27 -07:00
|
|
|
log.Info("Stopped HTTP server")
|
2019-04-25 04:57:03 -07:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:19:28 -07:00
|
|
|
// This function is called before application exits
|
|
|
|
func cleanupAlways() {
|
2019-07-09 08:49:31 -07:00
|
|
|
if len(config.pidFileName) != 0 {
|
|
|
|
os.Remove(config.pidFileName)
|
2019-04-05 02:19:28 -07:00
|
|
|
}
|
2019-05-08 00:43:47 -07:00
|
|
|
log.Info("Stopped")
|
2019-04-05 02:19:28 -07:00
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
// command-line arguments
|
|
|
|
type options struct {
|
|
|
|
verbose bool // is verbose logging enabled
|
|
|
|
configFilename string // path to the config file
|
2019-02-10 10:47:43 -07:00
|
|
|
workDir string // path to the working directory where we will store the filters data and the querylog
|
2019-02-04 03:54:53 -07:00
|
|
|
bindHost string // host address to bind HTTP server on
|
|
|
|
bindPort int // port to serve HTTP pages on
|
|
|
|
logFile string // Path to the log file. If empty, write to stdout. If "syslog", writes to syslog
|
2019-04-05 02:19:28 -07:00
|
|
|
pidFile string // File name to save PID to
|
2019-04-30 05:26:57 -07:00
|
|
|
checkConfig bool // Check configuration and exit
|
2019-05-27 08:48:33 -07:00
|
|
|
disableUpdate bool // If set, don't check for updates
|
2019-02-04 03:54:53 -07:00
|
|
|
|
|
|
|
// service control action (see service.ControlAction array + "status" command)
|
|
|
|
serviceControlAction string
|
2019-02-05 04:09:05 -07:00
|
|
|
|
|
|
|
// runningAsService flag is set to true when options are passed from the service runner
|
|
|
|
runningAsService bool
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
2019-01-24 10:11:01 -07:00
|
|
|
// loadOptions reads command line arguments and initializes configuration
|
2019-02-04 03:54:53 -07:00
|
|
|
func loadOptions() options {
|
|
|
|
o := options{}
|
|
|
|
|
2019-01-24 10:11:01 -07:00
|
|
|
var printHelp func()
|
|
|
|
var opts = []struct {
|
|
|
|
longName string
|
|
|
|
shortName string
|
|
|
|
description string
|
|
|
|
callbackWithValue func(value string)
|
|
|
|
callbackNoValue func()
|
|
|
|
}{
|
2019-04-30 05:49:00 -07:00
|
|
|
{"config", "c", "Path to the config file", func(value string) { o.configFilename = value }, nil},
|
|
|
|
{"work-dir", "w", "Path to the working directory", func(value string) { o.workDir = value }, nil},
|
|
|
|
{"host", "h", "Host address to bind HTTP server on", func(value string) { o.bindHost = value }, nil},
|
|
|
|
{"port", "p", "Port to serve HTTP pages on", func(value string) {
|
2019-01-24 10:11:01 -07:00
|
|
|
v, err := strconv.Atoi(value)
|
|
|
|
if err != nil {
|
|
|
|
panic("Got port that is not a number")
|
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
o.bindPort = v
|
|
|
|
}, nil},
|
2019-04-30 05:49:00 -07:00
|
|
|
{"service", "s", "Service control action: status, install, uninstall, start, stop, restart", func(value string) {
|
2019-02-04 03:54:53 -07:00
|
|
|
o.serviceControlAction = value
|
|
|
|
}, nil},
|
2019-04-30 05:49:00 -07:00
|
|
|
{"logfile", "l", "Path to log file. If empty: write to stdout; if 'syslog': write to system log", func(value string) {
|
2019-02-04 03:54:53 -07:00
|
|
|
o.logFile = value
|
2019-01-24 10:11:01 -07:00
|
|
|
}, nil},
|
2019-04-30 05:49:00 -07:00
|
|
|
{"pidfile", "", "Path to a file where PID is stored", func(value string) { o.pidFile = value }, nil},
|
2019-04-30 05:26:57 -07:00
|
|
|
{"check-config", "", "Check configuration and exit", nil, func() { o.checkConfig = true }},
|
2019-05-27 08:48:33 -07:00
|
|
|
{"no-check-update", "", "Don't check for updates", nil, func() { o.disableUpdate = true }},
|
2019-04-30 05:49:00 -07:00
|
|
|
{"verbose", "v", "Enable verbose output", nil, func() { o.verbose = true }},
|
|
|
|
{"help", "", "Print this help", nil, func() {
|
2019-02-04 03:54:53 -07:00
|
|
|
printHelp()
|
|
|
|
os.Exit(64)
|
|
|
|
}},
|
2019-01-24 10:11:01 -07:00
|
|
|
}
|
|
|
|
printHelp = func() {
|
|
|
|
fmt.Printf("Usage:\n\n")
|
|
|
|
fmt.Printf("%s [options]\n\n", os.Args[0])
|
|
|
|
fmt.Printf("Options:\n")
|
|
|
|
for _, opt := range opts {
|
2019-04-30 05:49:00 -07:00
|
|
|
val := ""
|
|
|
|
if opt.callbackWithValue != nil {
|
|
|
|
val = " VALUE"
|
|
|
|
}
|
2019-02-05 13:29:11 -07:00
|
|
|
if opt.shortName != "" {
|
2019-04-30 05:49:00 -07:00
|
|
|
fmt.Printf(" -%s, %-30s %s\n", opt.shortName, "--"+opt.longName+val, opt.description)
|
2019-02-05 13:29:11 -07:00
|
|
|
} else {
|
2019-04-30 05:49:00 -07:00
|
|
|
fmt.Printf(" %-34s %s\n", "--"+opt.longName+val, opt.description)
|
2019-02-05 13:29:11 -07:00
|
|
|
}
|
2019-01-24 10:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := 1; i < len(os.Args); i++ {
|
|
|
|
v := os.Args[i]
|
|
|
|
knownParam := false
|
|
|
|
for _, opt := range opts {
|
2019-02-05 13:29:11 -07:00
|
|
|
if v == "--"+opt.longName || (opt.shortName != "" && v == "-"+opt.shortName) {
|
2019-01-24 10:11:01 -07:00
|
|
|
if opt.callbackWithValue != nil {
|
2019-02-04 03:54:53 -07:00
|
|
|
if i+1 >= len(os.Args) {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Error("Got %s without argument\n", v)
|
2019-01-24 10:11:01 -07:00
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
opt.callbackWithValue(os.Args[i])
|
|
|
|
} else if opt.callbackNoValue != nil {
|
|
|
|
opt.callbackNoValue()
|
|
|
|
}
|
|
|
|
knownParam = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !knownParam {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Error("unknown option %v\n", v)
|
2019-01-24 10:11:01 -07:00
|
|
|
printHelp()
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
return o
|
2019-01-24 10:11:01 -07:00
|
|
|
}
|
2019-02-22 07:59:42 -07:00
|
|
|
|
|
|
|
// prints IP addresses which user can use to open the admin interface
|
|
|
|
// proto is either "http" or "https"
|
|
|
|
func printHTTPAddresses(proto string) {
|
|
|
|
var address string
|
2019-02-22 08:47:54 -07:00
|
|
|
|
|
|
|
if proto == "https" && config.TLS.ServerName != "" {
|
|
|
|
if config.TLS.PortHTTPS == 443 {
|
|
|
|
log.Printf("Go to https://%s", config.TLS.ServerName)
|
|
|
|
} else {
|
|
|
|
log.Printf("Go to https://%s:%d", config.TLS.ServerName, config.TLS.PortHTTPS)
|
|
|
|
}
|
|
|
|
} else if config.BindHost == "0.0.0.0" {
|
2019-02-22 07:59:42 -07:00
|
|
|
log.Println("AdGuard Home is available on the following addresses:")
|
|
|
|
ifaces, err := getValidNetInterfacesForWeb()
|
|
|
|
if err != nil {
|
|
|
|
// That's weird, but we'll ignore it
|
|
|
|
address = net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
|
|
|
address = net.JoinHostPort(iface.Addresses[0], strconv.Itoa(config.BindPort))
|
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
address = net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
}
|
|
|
|
}
|