2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
import (
|
2019-04-25 04:57:03 -07:00
|
|
|
"context"
|
2019-02-12 11:14:02 -07:00
|
|
|
"crypto/tls"
|
2020-03-04 05:11:17 -07:00
|
|
|
"crypto/x509"
|
2018-08-30 07:25:33 -07:00
|
|
|
"fmt"
|
2019-04-05 02:19:28 -07:00
|
|
|
"io/ioutil"
|
2018-08-30 07:25:33 -07:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2020-03-12 05:11:08 -07:00
|
|
|
"net/url"
|
2018-08-30 07:25:33 -07:00
|
|
|
"os"
|
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-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
|
|
|
|
2020-06-02 09:20:31 -07:00
|
|
|
"gopkg.in/natefinch/lumberjack.v2"
|
|
|
|
|
2020-07-22 04:20:14 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/update"
|
2020-02-13 08:42:07 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/util"
|
|
|
|
|
|
|
|
"github.com/joomcode/errorx"
|
|
|
|
|
2019-12-23 04:57:10 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/isdelve"
|
|
|
|
|
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"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
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 (
|
2020-04-15 05:17:57 -07:00
|
|
|
versionString = "dev"
|
|
|
|
updateChannel = "none"
|
|
|
|
versionCheckURL = ""
|
|
|
|
ARMVersion = ""
|
2019-06-20 04:36:26 -07:00
|
|
|
)
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
// Global context
|
|
|
|
type homeContext struct {
|
2020-02-13 08:42:07 -07:00
|
|
|
// Modules
|
|
|
|
// --
|
|
|
|
|
2020-02-19 05:24:55 -07:00
|
|
|
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
|
|
|
|
auth *Auth // HTTP authentication module
|
2020-02-19 05:28:06 -07:00
|
|
|
filters Filtering // DNS filtering module
|
|
|
|
web *Web // Web (HTTP, HTTPS) module
|
|
|
|
tls *TLSMod // TLS module
|
2020-03-20 05:05:43 -07:00
|
|
|
autoHosts util.AutoHosts // IP-hostname pairs taken from system configuration (e.g. /etc/hosts) files
|
2020-07-22 04:20:14 -07:00
|
|
|
updater *update.Updater
|
2020-02-13 08:42:07 -07:00
|
|
|
|
|
|
|
// Runtime properties
|
|
|
|
// --
|
|
|
|
|
|
|
|
configFilename string // Config filename (can be overridden via the command line arguments)
|
|
|
|
workDir string // Location of our directory, used to protect against CWD being somewhere else
|
|
|
|
firstRun bool // if set to true, don't run any services except HTTP web inteface, and serve only first-run html
|
|
|
|
pidFileName string // PID file name. Empty if no PID file was created.
|
|
|
|
disableUpdate bool // If set, don't check for updates
|
|
|
|
controlLock sync.Mutex
|
2020-03-04 05:11:17 -07:00
|
|
|
tlsRoots *x509.CertPool // list of root CAs for TLSv1.2
|
2020-03-23 00:23:34 -07:00
|
|
|
tlsCiphers []uint16 // list of TLS ciphers to use
|
2020-02-13 08:42:07 -07:00
|
|
|
transport *http.Transport
|
|
|
|
client *http.Client
|
|
|
|
appSignalChannel chan os.Signal // Channel for receiving OS signals by the console app
|
|
|
|
// runningAsService flag is set to true when options are passed from the service runner
|
|
|
|
runningAsService bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// getDataDir returns path to the directory where we store databases and filters
|
|
|
|
func (c *homeContext) getDataDir() string {
|
|
|
|
return filepath.Join(c.workDir, dataDir)
|
2019-12-11 02:38:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Context - a global context object
|
|
|
|
var Context homeContext
|
|
|
|
|
2019-07-09 08:52:18 -07:00
|
|
|
// Main is the entry point
|
2020-01-15 08:58:12 -07:00
|
|
|
func Main(version string, channel string, armVer string) {
|
2019-06-20 04:36:26 -07:00
|
|
|
// Init update-related global variables
|
|
|
|
versionString = version
|
|
|
|
updateChannel = channel
|
2020-01-15 08:58:12 -07:00
|
|
|
ARMVersion = armVer
|
2019-06-20 04:36:26 -07:00
|
|
|
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
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.appSignalChannel = make(chan os.Signal)
|
|
|
|
signal.Notify(Context.appSignalChannel, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGQUIT)
|
|
|
|
go func() {
|
2020-02-18 04:49:50 -07:00
|
|
|
for {
|
|
|
|
sig := <-Context.appSignalChannel
|
|
|
|
log.Info("Received signal '%s'", sig)
|
|
|
|
switch sig {
|
|
|
|
case syscall.SIGHUP:
|
|
|
|
Context.clients.Reload()
|
2020-02-19 05:28:06 -07:00
|
|
|
Context.tls.Reload()
|
2020-02-18 04:49:50 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
cleanup()
|
|
|
|
cleanupAlways()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
}
|
2020-02-13 08:42:07 -07:00
|
|
|
}()
|
|
|
|
|
2020-06-11 00:24:43 -07:00
|
|
|
if args.serviceControlAction != "" {
|
|
|
|
handleServiceControlAction(args.serviceControlAction)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-05 04:09:05 -07:00
|
|
|
// run the protection
|
|
|
|
run(args)
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
2020-07-09 09:54:53 -07:00
|
|
|
// version - returns the current version string
|
|
|
|
func version() string {
|
|
|
|
msg := "AdGuard Home, version %s, channel %s, arch %s %s"
|
|
|
|
if ARMVersion != "" {
|
|
|
|
msg = msg + " v" + ARMVersion
|
|
|
|
}
|
|
|
|
return fmt.Sprintf(msg, versionString, updateChannel, runtime.GOOS, runtime.GOARCH)
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
// run initializes configuration and runs the AdGuard Home
|
2020-02-13 08:42:07 -07:00
|
|
|
// run is a blocking method!
|
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 != "" {
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.configFilename = args.configFilename
|
|
|
|
} else {
|
|
|
|
// Default config file name
|
|
|
|
Context.configFilename = "AdGuardHome.yaml"
|
|
|
|
}
|
|
|
|
|
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
|
2020-07-09 09:54:53 -07:00
|
|
|
log.Println(version())
|
2020-02-13 08:42:07 -07:00
|
|
|
log.Debug("Current working directory is %s", Context.workDir)
|
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
|
|
|
}
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.runningAsService = args.runningAsService
|
|
|
|
Context.disableUpdate = args.disableUpdate
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.firstRun = detectFirstRun()
|
|
|
|
if Context.firstRun {
|
2020-04-15 05:17:57 -07:00
|
|
|
log.Info("This is the first time AdGuard Home is launched")
|
2020-06-23 08:02:28 -07:00
|
|
|
checkPermissions()
|
2019-04-01 02:22:54 -07:00
|
|
|
}
|
|
|
|
|
2019-07-09 08:37:24 -07:00
|
|
|
initConfig()
|
2019-05-31 06:39:18 -07:00
|
|
|
|
2020-03-04 05:11:17 -07:00
|
|
|
Context.tlsRoots = util.LoadSystemRootCAs()
|
2020-03-23 00:23:34 -07:00
|
|
|
Context.tlsCiphers = util.InitTLSCiphers()
|
2020-03-04 05:11:17 -07:00
|
|
|
Context.transport = &http.Transport{
|
|
|
|
DialContext: customDialContext,
|
|
|
|
Proxy: getHTTPProxy,
|
|
|
|
TLSClientConfig: &tls.Config{
|
|
|
|
RootCAs: Context.tlsRoots,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
Context.client = &http.Client{
|
|
|
|
Timeout: time.Minute * 5,
|
|
|
|
Transport: Context.transport,
|
|
|
|
}
|
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
if !Context.firstRun {
|
2019-04-30 04:38:24 -07:00
|
|
|
// Do the upgrade if necessary
|
|
|
|
err := upgradeConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = parseConfig()
|
|
|
|
if err != nil {
|
2020-04-15 05:17:57 -07:00
|
|
|
log.Error("Failed to parse configuration, exiting")
|
2019-04-30 04:38:24 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-04-27 03:21:16 -07:00
|
|
|
// 'clients' module uses 'dnsfilter' module's static data (dnsfilter.BlockedSvcKnown()),
|
|
|
|
// so we have to initialize dnsfilter's static data first,
|
|
|
|
// but also avoid relying on automatic Go init() function
|
|
|
|
dnsfilter.InitModule()
|
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
config.DHCP.WorkDir = Context.workDir
|
2019-10-11 09:56:18 -07:00
|
|
|
config.DHCP.HTTPRegister = httpRegister
|
|
|
|
config.DHCP.ConfigModified = onConfigModified
|
2020-07-03 08:20:01 -07:00
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
Context.dhcpServer = dhcpd.Create(config.DHCP)
|
2020-08-04 04:18:35 -07:00
|
|
|
if Context.dhcpServer == nil {
|
|
|
|
log.Fatalf("Can't initialize DHCP module")
|
|
|
|
}
|
2020-03-13 07:30:09 -07:00
|
|
|
}
|
2020-03-20 05:05:43 -07:00
|
|
|
Context.autoHosts.Init("")
|
2020-07-22 04:20:14 -07:00
|
|
|
|
2020-07-22 10:27:20 -07:00
|
|
|
Context.updater = update.NewUpdater(update.Config{
|
|
|
|
Client: Context.client,
|
|
|
|
WorkDir: Context.workDir,
|
|
|
|
VersionURL: versionCheckURL,
|
|
|
|
VersionString: versionString,
|
|
|
|
OS: runtime.GOOS,
|
|
|
|
Arch: runtime.GOARCH,
|
|
|
|
ARMVersion: ARMVersion,
|
|
|
|
ConfigName: config.getConfigFilename(),
|
|
|
|
})
|
2020-07-22 04:20:14 -07:00
|
|
|
|
2020-03-20 05:05:43 -07:00
|
|
|
Context.clients.Init(config.Clients, Context.dhcpServer, &Context.autoHosts)
|
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 {
|
2020-02-13 08:42:07 -07:00
|
|
|
util.SetRlimit(config.RlimitNoFile)
|
2019-03-27 07:09:48 -07:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
if len(args.pidFile) != 0 && writePIDFile(args.pidFile) {
|
|
|
|
Context.pidFileName = args.pidFile
|
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
if !Context.firstRun {
|
2019-04-30 04:38:24 -07:00
|
|
|
// Save the updated config
|
|
|
|
err := config.write()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2020-04-22 06:00:26 -07:00
|
|
|
|
|
|
|
if config.DebugPProf {
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
util.PProfRegisterWebHandlers(mux)
|
|
|
|
go func() {
|
|
|
|
log.Info("pprof: listening on localhost:6060")
|
|
|
|
err := http.ListenAndServe("localhost:6060", mux)
|
|
|
|
log.Error("Error while running the pprof server: %s", err)
|
|
|
|
}()
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
err := os.MkdirAll(Context.getDataDir(), 0755)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Cannot create DNS data dir at %s: %s", Context.getDataDir(), err)
|
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2020-02-19 05:24:55 -07:00
|
|
|
sessFilename := filepath.Join(Context.getDataDir(), "sessions.db")
|
2020-07-03 10:34:08 -07:00
|
|
|
GLMode = args.glinetMode
|
2020-02-19 05:24:55 -07:00
|
|
|
Context.auth = InitAuth(sessFilename, config.Users, config.WebSessionTTLHours*60*60)
|
|
|
|
if Context.auth == nil {
|
|
|
|
log.Fatalf("Couldn't initialize Auth module")
|
|
|
|
}
|
|
|
|
config.Users = nil
|
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
Context.tls = tlsCreate(config.TLS)
|
|
|
|
if Context.tls == nil {
|
|
|
|
log.Fatalf("Can't initialize TLS module")
|
|
|
|
}
|
|
|
|
|
2020-02-19 05:24:55 -07:00
|
|
|
webConf := WebConfig{
|
|
|
|
firstRun: Context.firstRun,
|
|
|
|
BindHost: config.BindHost,
|
|
|
|
BindPort: config.BindPort,
|
|
|
|
}
|
|
|
|
Context.web = CreateWeb(&webConf)
|
|
|
|
if Context.web == nil {
|
|
|
|
log.Fatalf("Can't initialize Web module")
|
2020-02-18 09:27:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if !Context.firstRun {
|
|
|
|
err := initDNSServer()
|
2019-12-11 02:38:58 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("%s", err)
|
|
|
|
}
|
2020-02-19 05:28:06 -07:00
|
|
|
Context.tls.Start()
|
2020-03-20 05:05:43 -07:00
|
|
|
Context.autoHosts.Start()
|
2020-02-19 05:28:06 -07:00
|
|
|
|
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
|
|
|
|
2020-07-03 08:20:01 -07:00
|
|
|
if Context.dhcpServer != nil {
|
|
|
|
_ = Context.dhcpServer.Start()
|
2019-02-01 09:25:04 -07:00
|
|
|
}
|
2018-12-28 11:01:16 -07:00
|
|
|
}
|
|
|
|
|
2020-02-19 05:24:55 -07:00
|
|
|
Context.web.Start()
|
2020-02-18 09:27:09 -07:00
|
|
|
|
|
|
|
// wait indefinitely for other go-routines to complete their job
|
|
|
|
select {}
|
|
|
|
}
|
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
// StartMods - initialize and start DNS after installation
|
|
|
|
func StartMods() error {
|
|
|
|
err := initDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
Context.tls.Start()
|
|
|
|
|
|
|
|
err = startDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
closeDNSServer()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-23 08:04:26 -07:00
|
|
|
// Check if the current user permissions are enough to run AdGuard Home
|
2020-06-23 08:02:28 -07:00
|
|
|
func checkPermissions() {
|
|
|
|
log.Info("Checking if AdGuard Home has necessary permissions")
|
2019-04-01 02:22:54 -07:00
|
|
|
|
|
|
|
if runtime.GOOS == "windows" {
|
2020-06-23 08:02:28 -07:00
|
|
|
// On Windows we need to have admin rights to run properly
|
|
|
|
|
|
|
|
admin, _ := util.HaveAdminRights()
|
|
|
|
if //noinspection ALL
|
|
|
|
admin || isdelve.Enabled {
|
|
|
|
// Don't forget that for this to work you need to add "delve" tag explicitly
|
|
|
|
// https://stackoverflow.com/questions/47879070/how-can-i-see-if-the-goland-debugger-is-running-in-the-program
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-01 02:22:54 -07:00
|
|
|
log.Fatal("This is the first launch of AdGuard Home. You must run it as Administrator.")
|
2020-06-23 08:02:28 -07:00
|
|
|
}
|
2019-04-01 02:22:54 -07:00
|
|
|
|
2020-06-23 08:02:28 -07:00
|
|
|
// We should check if AdGuard Home is able to bind to port 53
|
|
|
|
ok, err := util.CanBindPort(53)
|
2019-04-01 02:22:54 -07:00
|
|
|
|
2020-06-23 08:02:28 -07:00
|
|
|
if ok {
|
|
|
|
log.Info("AdGuard Home can bind to port 53")
|
|
|
|
return
|
|
|
|
}
|
2019-04-01 02:22:54 -07:00
|
|
|
|
2020-06-23 08:02:28 -07:00
|
|
|
if opErr, ok := err.(*net.OpError); ok {
|
|
|
|
if sysErr, ok := opErr.Err.(*os.SyscallError); ok {
|
|
|
|
if errno, ok := sysErr.Err.(syscall.Errno); ok && errno == syscall.EACCES {
|
|
|
|
msg := `Permission check failed.
|
|
|
|
|
|
|
|
AdGuard Home is not allowed to bind to privileged ports (for instance, port 53).
|
|
|
|
Please note, that this is crucial for a server to be able to use privileged ports.
|
|
|
|
|
|
|
|
You have two options:
|
|
|
|
1. Run AdGuard Home with root privileges
|
|
|
|
2. On Linux you can grant the CAP_NET_BIND_SERVICE capability:
|
|
|
|
https://github.com/AdguardTeam/AdGuardHome/wiki/Getting-Started#running-without-superuser`
|
|
|
|
|
|
|
|
log.Fatal(msg)
|
|
|
|
}
|
|
|
|
}
|
2019-04-01 02:22:54 -07:00
|
|
|
}
|
2020-06-23 08:02:28 -07:00
|
|
|
|
|
|
|
msg := fmt.Sprintf(`AdGuard failed to bind to port 53 due to %v
|
|
|
|
|
|
|
|
Please note, that this is crucial for a DNS server to be able to use that port.`, err)
|
|
|
|
|
|
|
|
log.Info(msg)
|
2019-04-01 02:22:54 -07:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
// initWorkingDir initializes the workDir
|
2019-02-10 10:47:43 -07:00
|
|
|
// 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) {
|
2020-02-11 02:59:21 -07:00
|
|
|
execPath, err := os.Executable()
|
2019-02-05 04:09:05 -07:00
|
|
|
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
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.workDir = args.workDir
|
2019-02-05 04:09:05 -07:00
|
|
|
} else {
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.workDir = filepath.Dir(execPath)
|
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
|
2020-06-02 04:20:12 -07:00
|
|
|
if args.verbose || config.Verbose {
|
2019-02-04 03:54:53 -07:00
|
|
|
ls.Verbose = true
|
|
|
|
}
|
|
|
|
if args.logFile != "" {
|
|
|
|
ls.LogFile = args.logFile
|
2020-06-02 04:20:12 -07:00
|
|
|
} else if config.LogFile != "" {
|
|
|
|
ls.LogFile = config.LogFile
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
|
|
|
|
2020-06-02 04:20:12 -07:00
|
|
|
// Handle default log settings overrides
|
|
|
|
ls.LogCompress = config.LogCompress
|
|
|
|
ls.LogLocalTime = config.LogLocalTime
|
|
|
|
ls.LogMaxBackups = config.LogMaxBackups
|
|
|
|
ls.LogMaxSize = config.LogMaxSize
|
|
|
|
ls.LogMaxAge = config.LogMaxAge
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-06-02 04:20:12 -07:00
|
|
|
// logs are written to stdout (default)
|
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
|
2020-02-13 08:42:07 -07:00
|
|
|
err := util.ConfigureSyslog(serviceName)
|
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 {
|
2020-02-13 08:42:07 -07:00
|
|
|
logFilePath := filepath.Join(Context.workDir, ls.LogFile)
|
2019-03-14 08:06:53 -07:00
|
|
|
if filepath.IsAbs(ls.LogFile) {
|
|
|
|
logFilePath = ls.LogFile
|
|
|
|
}
|
|
|
|
|
2020-06-02 04:20:12 -07:00
|
|
|
_, 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)
|
|
|
|
}
|
2020-06-02 04:20:12 -07:00
|
|
|
|
|
|
|
log.SetOutput(&lumberjack.Logger{
|
|
|
|
Filename: logFilePath,
|
|
|
|
Compress: ls.LogCompress, // disabled by default
|
|
|
|
LocalTime: ls.LogLocalTime,
|
|
|
|
MaxBackups: ls.LogMaxBackups,
|
|
|
|
MaxSize: ls.LogMaxSize, // megabytes
|
|
|
|
MaxAge: ls.LogMaxAge, //days
|
|
|
|
})
|
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
|
|
|
|
2020-02-19 05:24:55 -07:00
|
|
|
if Context.web != nil {
|
|
|
|
Context.web.Close()
|
|
|
|
Context.web = nil
|
|
|
|
}
|
|
|
|
if Context.auth != nil {
|
|
|
|
Context.auth.Close()
|
|
|
|
Context.auth = nil
|
|
|
|
}
|
2020-02-18 09:27:09 -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
|
|
|
}
|
2020-07-03 08:20:01 -07:00
|
|
|
|
|
|
|
if Context.dhcpServer != nil {
|
|
|
|
Context.dhcpServer.Stop()
|
2019-02-04 03:54:53 -07:00
|
|
|
}
|
2020-02-19 05:28:06 -07:00
|
|
|
|
2020-03-20 05:05:43 -07:00
|
|
|
Context.autoHosts.Close()
|
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
if Context.tls != nil {
|
|
|
|
Context.tls.Close()
|
|
|
|
Context.tls = nil
|
|
|
|
}
|
2018-12-05 05:36:18 -07:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:19:28 -07:00
|
|
|
// This function is called before application exits
|
|
|
|
func cleanupAlways() {
|
2020-02-13 08:42:07 -07:00
|
|
|
if len(Context.pidFileName) != 0 {
|
|
|
|
_ = os.Remove(Context.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
|
|
|
}
|
|
|
|
|
2020-09-07 01:10:56 -07:00
|
|
|
func exitWithError() {
|
|
|
|
os.Exit(64)
|
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 {
|
2020-09-07 01:10:56 -07:00
|
|
|
o, f, err := parse(os.Args[0], os.Args[1:])
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
_ = printHelp(os.Args[0])
|
|
|
|
exitWithError()
|
|
|
|
} else if f != nil {
|
|
|
|
err = f()
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
exitWithError()
|
|
|
|
} else {
|
2020-01-16 00:42:03 -07:00
|
|
|
os.Exit(0)
|
2019-01-24 10:11:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
tlsConf := tlsConfigSettings{}
|
2020-04-07 09:24:29 -07:00
|
|
|
if Context.tls != nil {
|
|
|
|
Context.tls.WriteDiskConfig(&tlsConf)
|
|
|
|
}
|
2020-05-15 16:02:50 -07:00
|
|
|
|
|
|
|
port := strconv.Itoa(config.BindPort)
|
|
|
|
if proto == "https" {
|
|
|
|
port = strconv.Itoa(tlsConf.PortHTTPS)
|
|
|
|
}
|
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
if proto == "https" && tlsConf.ServerName != "" {
|
|
|
|
if tlsConf.PortHTTPS == 443 {
|
|
|
|
log.Printf("Go to https://%s", tlsConf.ServerName)
|
2019-02-22 08:47:54 -07:00
|
|
|
} else {
|
2020-05-15 16:02:50 -07:00
|
|
|
log.Printf("Go to https://%s:%s", tlsConf.ServerName, port)
|
2019-02-22 08:47:54 -07:00
|
|
|
}
|
|
|
|
} 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:")
|
2020-02-13 08:42:07 -07:00
|
|
|
ifaces, err := util.GetValidNetInterfacesForWeb()
|
2019-02-22 07:59:42 -07:00
|
|
|
if err != nil {
|
|
|
|
// That's weird, but we'll ignore it
|
2020-05-15 16:02:50 -07:00
|
|
|
address = net.JoinHostPort(config.BindHost, port)
|
2019-02-22 07:59:42 -07:00
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
2020-07-02 04:42:39 -07:00
|
|
|
for _, addr := range iface.Addresses {
|
|
|
|
address = net.JoinHostPort(addr, strconv.Itoa(config.BindPort))
|
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
}
|
2019-02-22 07:59:42 -07:00
|
|
|
}
|
|
|
|
} else {
|
2020-05-15 16:02:50 -07:00
|
|
|
address = net.JoinHostPort(config.BindHost, port)
|
2019-02-22 07:59:42 -07:00
|
|
|
log.Printf("Go to %s://%s", proto, address)
|
|
|
|
}
|
|
|
|
}
|
2020-02-13 08:42:07 -07:00
|
|
|
|
|
|
|
// -------------------
|
|
|
|
// first run / install
|
|
|
|
// -------------------
|
|
|
|
func detectFirstRun() bool {
|
|
|
|
configfile := Context.configFilename
|
|
|
|
if !filepath.IsAbs(configfile) {
|
|
|
|
configfile = filepath.Join(Context.workDir, Context.configFilename)
|
|
|
|
}
|
|
|
|
_, err := os.Stat(configfile)
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
// do nothing, file exists
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to a remote server resolving hostname using our own DNS server
|
|
|
|
func customDialContext(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
|
|
log.Tracef("network:%v addr:%v", network, addr)
|
|
|
|
|
|
|
|
host, port, err := net.SplitHostPort(addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
dialer := &net.Dialer{
|
|
|
|
Timeout: time.Minute * 5,
|
|
|
|
}
|
|
|
|
|
|
|
|
if net.ParseIP(host) != nil || config.DNS.Port == 0 {
|
|
|
|
con, err := dialer.DialContext(ctx, network, addr)
|
|
|
|
return con, err
|
|
|
|
}
|
|
|
|
|
|
|
|
addrs, e := Context.dnsServer.Resolve(host)
|
|
|
|
log.Debug("dnsServer.Resolve: %s: %v", host, addrs)
|
|
|
|
if e != nil {
|
|
|
|
return nil, e
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(addrs) == 0 {
|
|
|
|
return nil, fmt.Errorf("couldn't lookup host: %s", host)
|
|
|
|
}
|
|
|
|
|
|
|
|
var dialErrs []error
|
|
|
|
for _, a := range addrs {
|
|
|
|
addr = net.JoinHostPort(a.String(), port)
|
|
|
|
con, err := dialer.DialContext(ctx, network, addr)
|
|
|
|
if err != nil {
|
|
|
|
dialErrs = append(dialErrs, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return con, err
|
|
|
|
}
|
|
|
|
return nil, errorx.DecorateMany(fmt.Sprintf("couldn't dial to %s", addr), dialErrs...)
|
|
|
|
}
|
2020-03-12 05:11:08 -07:00
|
|
|
|
|
|
|
func getHTTPProxy(req *http.Request) (*url.URL, error) {
|
|
|
|
if len(config.ProxyURL) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return url.Parse(config.ProxyURL)
|
|
|
|
}
|