2018-08-30 07:25:33 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-02-04 03:54:53 -07:00
|
|
|
stdlog "log"
|
2018-08-30 07:25:33 -07:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"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"
|
2018-12-05 05:36:18 -07:00
|
|
|
"syscall"
|
2018-11-27 11:25:03 -07:00
|
|
|
"time"
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
"github.com/gobuffalo/packr"
|
2019-02-05 04:09:05 -07:00
|
|
|
|
2018-12-29 09:12:22 -07:00
|
|
|
"github.com/hmage/golibs/log"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// VersionString will be set through ldflags, contains current version
|
|
|
|
var VersionString = "undefined"
|
|
|
|
|
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-02-04 03:54:53 -07:00
|
|
|
// main is the entry point
|
2018-08-30 07:25:33 -07:00
|
|
|
func main() {
|
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-04 03:54:53 -07:00
|
|
|
signalChannel := make(chan os.Signal)
|
|
|
|
signal.Notify(signalChannel, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGQUIT)
|
|
|
|
go func() {
|
|
|
|
<-signalChannel
|
|
|
|
cleanup()
|
|
|
|
os.Exit(0)
|
|
|
|
}()
|
|
|
|
|
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-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
|
|
|
|
log.Printf("AdGuard Home, version %s\n", VersionString)
|
2019-02-05 04:09:05 -07:00
|
|
|
log.Printf("Current working directory is %s", config.ourBinaryDir)
|
|
|
|
if args.runningAsService {
|
|
|
|
log.Printf("AdGuard Home is running as a service")
|
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
|
2019-01-29 10:41:57 -07:00
|
|
|
config.firstRun = detectFirstRun()
|
2019-02-04 03:54:53 -07:00
|
|
|
|
|
|
|
// Do the upgrade if necessary
|
2019-01-29 10:41:57 -07:00
|
|
|
err := upgradeConfig()
|
2019-02-04 03:54:53 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse from config file
|
|
|
|
err = parseConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
2018-11-27 11:25:03 -07:00
|
|
|
// Load filters from the disk
|
|
|
|
// And if any filter has zero ID, assign a new one
|
|
|
|
for i := range config.Filters {
|
|
|
|
filter := &config.Filters[i] // otherwise we're operating on a copy
|
|
|
|
if filter.ID == 0 {
|
|
|
|
filter.ID = assignUniqueFilterID()
|
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
err = filter.load()
|
2018-11-27 11:25:03 -07:00
|
|
|
if err != nil {
|
|
|
|
// This is okay for the first start, the filter will be loaded later
|
|
|
|
log.Printf("Couldn't load filter %d contents due to %s", filter.ID, err)
|
|
|
|
// clear LastUpdated so it gets fetched right away
|
|
|
|
}
|
2018-11-28 06:05:24 -07:00
|
|
|
if len(filter.Rules) == 0 {
|
2018-11-27 11:25:03 -07:00
|
|
|
filter.LastUpdated = time.Time{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 16:17:24 -07:00
|
|
|
// Save the updated config
|
2019-02-04 03:54:53 -07:00
|
|
|
err = config.write()
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-02-01 09:25:04 -07:00
|
|
|
if !config.firstRun {
|
|
|
|
err = startDNSServer()
|
|
|
|
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-02-04 03:54:53 -07:00
|
|
|
// Update filters we've just loaded right away, don't wait for periodic update timer
|
|
|
|
go func() {
|
|
|
|
refreshFiltersIfNecessary(false)
|
|
|
|
// Save the updated config
|
|
|
|
err := config.write()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
// Schedule automatic filters updates
|
|
|
|
go periodicallyRefreshFilters()
|
2019-02-05 04:09:05 -07:00
|
|
|
|
|
|
|
// Initialize and run the admin Web interface
|
|
|
|
box := packr.NewBox("build/static")
|
2019-01-29 10:41:57 -07:00
|
|
|
// if not configured, redirect / to /install.html, otherwise redirect /install.html to /
|
|
|
|
http.Handle("/", postInstallHandler(optionalAuthHandler(http.FileServer(box))))
|
|
|
|
http.Handle("/install.html", preInstallHandler(http.FileServer(box)))
|
2019-02-05 04:09:05 -07:00
|
|
|
registerControlHandlers()
|
|
|
|
|
|
|
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
|
|
|
URL := fmt.Sprintf("http://%s", address)
|
|
|
|
log.Println("Go to " + URL)
|
|
|
|
log.Fatal(http.ListenAndServe(address, nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
// initWorkingDir initializes the ourBinaryDir (basically, we use it as a working dir)
|
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-05 10:35:48 -07:00
|
|
|
if args.configFilename != "" {
|
|
|
|
// If there is a custom config file, use it's directory as our working dir
|
|
|
|
config.ourBinaryDir = filepath.Dir(args.configFilename)
|
2019-02-05 04:09:05 -07:00
|
|
|
} else {
|
2019-02-05 10:35:48 -07:00
|
|
|
config.ourBinaryDir = 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
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Verbose = ls.Verbose
|
|
|
|
|
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 {
|
|
|
|
logFilePath := filepath.Join(config.ourBinaryDir, ls.LogFile)
|
|
|
|
file, err := os.OpenFile(logFilePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0755)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("cannot create a log file: %s", err)
|
|
|
|
}
|
|
|
|
stdlog.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-04 03:54:53 -07:00
|
|
|
log.Printf("Stopping AdGuard Home")
|
|
|
|
|
2018-12-05 05:36:18 -07:00
|
|
|
err := stopDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Couldn't stop DNS server: %s", err)
|
|
|
|
}
|
2019-02-04 03:54:53 -07:00
|
|
|
err = stopDHCPServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Couldn't stop DHCP server: %s", err)
|
|
|
|
}
|
2018-12-05 05:36:18 -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
|
|
|
|
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
|
|
|
|
|
|
|
|
// 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-02-04 03:54:53 -07:00
|
|
|
{"config", "c", "path to config file", func(value string) { o.configFilename = value }, nil},
|
2019-02-05 13:29:11 -07:00
|
|
|
{"host", "h", "host address to bind HTTP server on", func(value string) { o.bindHost = value }, nil},
|
2019-01-24 10:11:01 -07:00
|
|
|
{"port", "p", "port to serve HTTP pages on", func(value string) {
|
|
|
|
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},
|
|
|
|
{"service", "s", "service control action: status, install, uninstall, start, stop, restart", func(value string) {
|
|
|
|
o.serviceControlAction = value
|
|
|
|
}, nil},
|
|
|
|
{"logfile", "l", "path to the log file. If empty, writes to stdout, if 'syslog' -- system log", func(value string) {
|
|
|
|
o.logFile = value
|
2019-01-24 10:11:01 -07:00
|
|
|
}, nil},
|
2019-02-04 03:54:53 -07:00
|
|
|
{"verbose", "v", "enable verbose output", nil, func() { o.verbose = true }},
|
2019-02-05 13:29:11 -07:00
|
|
|
{"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-02-05 13:29:11 -07:00
|
|
|
if opt.shortName != "" {
|
|
|
|
fmt.Printf(" -%s, %-30s %s\n", opt.shortName, "--"+opt.longName, opt.description)
|
|
|
|
} else {
|
|
|
|
fmt.Printf(" %-34s %s\n", "--"+opt.longName, opt.description)
|
|
|
|
}
|
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-01-24 10:11:01 -07:00
|
|
|
log.Printf("ERROR: Got %s without argument\n", v)
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
opt.callbackWithValue(os.Args[i])
|
|
|
|
} else if opt.callbackNoValue != nil {
|
|
|
|
opt.callbackNoValue()
|
|
|
|
}
|
|
|
|
knownParam = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !knownParam {
|
|
|
|
log.Printf("ERROR: unknown option %v\n", v)
|
|
|
|
printHelp()
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:54:53 -07:00
|
|
|
return o
|
2019-01-24 10:11:01 -07:00
|
|
|
}
|