2018-08-30 07:25:33 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-10-12 09:40:43 -07:00
|
|
|
"bufio"
|
2018-08-30 07:25:33 -07:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2018-12-05 05:36:18 -07:00
|
|
|
"os/signal"
|
2018-08-30 07:25:33 -07:00
|
|
|
"path/filepath"
|
|
|
|
"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"
|
2018-10-12 09:40:43 -07:00
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// VersionString will be set through ldflags, contains current version
|
|
|
|
var VersionString = "undefined"
|
|
|
|
|
|
|
|
func main() {
|
2018-10-14 07:49:07 -07:00
|
|
|
log.Printf("AdGuard Home web interface backend, version %s\n", VersionString)
|
2018-08-30 07:25:33 -07:00
|
|
|
box := packr.NewBox("build/static")
|
|
|
|
{
|
|
|
|
executable, err := os.Executable()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2018-10-29 16:17:24 -07:00
|
|
|
executableName := filepath.Base(executable)
|
|
|
|
if executableName == "AdGuardHome" {
|
|
|
|
// Binary build
|
|
|
|
config.ourBinaryDir = filepath.Dir(executable)
|
|
|
|
} else {
|
|
|
|
// Most likely we're debugging -- using current working directory in this case
|
|
|
|
workDir, _ := os.Getwd()
|
|
|
|
config.ourBinaryDir = workDir
|
|
|
|
}
|
|
|
|
log.Printf("Current working directory is %s", config.ourBinaryDir)
|
|
|
|
}
|
2018-10-15 06:13:03 -07:00
|
|
|
|
2018-08-30 07:25:33 -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
|
|
|
|
{
|
|
|
|
var configFilename *string
|
|
|
|
var bindHost *string
|
|
|
|
var bindPort *int
|
|
|
|
var opts = []struct {
|
|
|
|
longName string
|
|
|
|
shortName string
|
|
|
|
description string
|
|
|
|
callback func(value string)
|
|
|
|
}{
|
|
|
|
{"config", "c", "path to config file", func(value string) { configFilename = &value }},
|
|
|
|
{"host", "h", "host address to bind HTTP server on", func(value string) { bindHost = &value }},
|
|
|
|
{"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")
|
|
|
|
}
|
|
|
|
bindPort = &v
|
|
|
|
}},
|
|
|
|
{"help", "h", "print this help", nil},
|
|
|
|
}
|
|
|
|
printHelp := func() {
|
|
|
|
fmt.Printf("Usage:\n\n")
|
|
|
|
fmt.Printf("%s [options]\n\n", os.Args[0])
|
|
|
|
fmt.Printf("Options:\n")
|
|
|
|
for _, opt := range opts {
|
|
|
|
fmt.Printf(" -%s, %-30s %s\n", opt.shortName, "--"+opt.longName, opt.description)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := 1; i < len(os.Args); i++ {
|
|
|
|
v := os.Args[i]
|
|
|
|
// short-circuit for help
|
|
|
|
if v == "--help" || v == "-h" {
|
|
|
|
printHelp()
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
knownParam := false
|
|
|
|
for _, opt := range opts {
|
|
|
|
if v == "--"+opt.longName {
|
|
|
|
if i+1 > len(os.Args) {
|
|
|
|
log.Printf("ERROR: Got %s without argument\n", v)
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
opt.callback(os.Args[i])
|
|
|
|
knownParam = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if v == "-"+opt.shortName {
|
|
|
|
if i+1 > len(os.Args) {
|
|
|
|
log.Printf("ERROR: Got %s without argument\n", v)
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
opt.callback(os.Args[i])
|
|
|
|
knownParam = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !knownParam {
|
|
|
|
log.Printf("ERROR: unknown option %v\n", v)
|
|
|
|
printHelp()
|
|
|
|
os.Exit(64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if configFilename != nil {
|
|
|
|
config.ourConfigFilename = *configFilename
|
|
|
|
}
|
2018-10-12 09:40:43 -07:00
|
|
|
|
|
|
|
err := askUsernamePasswordIfPossible()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-11-27 10:39:59 -07:00
|
|
|
// Do the upgrade if necessary
|
|
|
|
err = upgradeConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-08-30 07:25:33 -07:00
|
|
|
// parse from config file
|
2018-10-12 09:40:43 -07:00
|
|
|
err = parseConfig()
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-10-30 02:24:59 -07:00
|
|
|
|
|
|
|
// override bind host/port from the console
|
2018-08-30 07:25:33 -07:00
|
|
|
if bindHost != nil {
|
|
|
|
config.BindHost = *bindHost
|
|
|
|
}
|
|
|
|
if bindPort != nil {
|
|
|
|
config.BindPort = *bindPort
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
err := filter.load()
|
|
|
|
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{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update filters we've just loaded right away, don't wait for periodic update timer
|
|
|
|
go func() {
|
2018-11-27 11:30:11 -07:00
|
|
|
refreshFiltersIfNeccessary(false)
|
2018-11-27 11:25:03 -07:00
|
|
|
// Save the updated config
|
2018-11-29 04:56:56 -07:00
|
|
|
err := config.write()
|
2018-11-27 11:25:03 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-12-06 07:18:16 -07:00
|
|
|
signalChannel := make(chan os.Signal)
|
|
|
|
signal.Notify(signalChannel, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGQUIT)
|
2018-12-05 05:36:18 -07:00
|
|
|
go func() {
|
2018-12-06 07:18:16 -07:00
|
|
|
<-signalChannel
|
2018-12-05 05:36:18 -07:00
|
|
|
cleanup()
|
|
|
|
os.Exit(0)
|
|
|
|
}()
|
2018-10-11 18:05:21 -07:00
|
|
|
|
2018-10-29 16:17:24 -07:00
|
|
|
// Save the updated config
|
2018-11-29 04:56:56 -07:00
|
|
|
err := config.write()
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
|
|
|
|
2018-11-27 11:30:11 -07:00
|
|
|
go periodicallyRefreshFilters()
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2018-09-18 10:59:41 -07:00
|
|
|
http.Handle("/", optionalAuthHandler(http.FileServer(box)))
|
2018-08-30 07:25:33 -07:00
|
|
|
registerControlHandlers()
|
|
|
|
|
2018-09-05 16:00:57 -07:00
|
|
|
err = startDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-08-30 07:25:33 -07:00
|
|
|
URL := fmt.Sprintf("http://%s", address)
|
|
|
|
log.Println("Go to " + URL)
|
|
|
|
log.Fatal(http.ListenAndServe(address, nil))
|
|
|
|
}
|
2018-10-12 09:40:43 -07:00
|
|
|
|
2018-12-05 05:36:18 -07:00
|
|
|
func cleanup() {
|
|
|
|
err := stopDNSServer()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Couldn't stop DNS server: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-12 09:40:43 -07:00
|
|
|
func getInput() (string, error) {
|
|
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
|
|
scanner.Scan()
|
|
|
|
text := scanner.Text()
|
|
|
|
err := scanner.Err()
|
|
|
|
return text, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func promptAndGet(prompt string) (string, error) {
|
|
|
|
for {
|
2018-11-28 03:37:42 -07:00
|
|
|
fmt.Print(prompt)
|
2018-10-12 09:40:43 -07:00
|
|
|
input, err := getInput()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to get input, aborting: %s", err)
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if len(input) != 0 {
|
|
|
|
return input, nil
|
|
|
|
}
|
|
|
|
// try again
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func promptAndGetPassword(prompt string) (string, error) {
|
|
|
|
for {
|
2018-11-28 03:37:42 -07:00
|
|
|
fmt.Print(prompt)
|
2018-10-12 09:40:43 -07:00
|
|
|
password, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
2018-11-28 03:37:42 -07:00
|
|
|
fmt.Print("\n")
|
2018-10-12 09:40:43 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to get input, aborting: %s", err)
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if len(password) != 0 {
|
|
|
|
return string(password), nil
|
|
|
|
}
|
|
|
|
// try again
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func askUsernamePasswordIfPossible() error {
|
2018-11-26 05:18:56 -07:00
|
|
|
configfile := config.ourConfigFilename
|
|
|
|
if !filepath.IsAbs(configfile) {
|
|
|
|
configfile = filepath.Join(config.ourBinaryDir, config.ourConfigFilename)
|
|
|
|
}
|
2018-10-12 09:40:43 -07:00
|
|
|
_, err := os.Stat(configfile)
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
// do nothing, file exists
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if !terminal.IsTerminal(int(os.Stdin.Fd())) {
|
|
|
|
return nil // do nothing
|
|
|
|
}
|
|
|
|
if !terminal.IsTerminal(int(os.Stdout.Fd())) {
|
|
|
|
return nil // do nothing
|
|
|
|
}
|
|
|
|
fmt.Printf("Would you like to set user/password for the web interface authentication (yes/no)?\n")
|
|
|
|
yesno, err := promptAndGet("Please type 'yes' or 'no': ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if yesno[0] != 'y' && yesno[0] != 'Y' {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
username, err := promptAndGet("Please enter the username: ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
password, err := promptAndGetPassword("Please enter the password: ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
password2, err := promptAndGetPassword("Please enter password again: ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if password2 != password {
|
|
|
|
fmt.Printf("Passwords do not match! Aborting\n")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
config.AuthName = username
|
|
|
|
config.AuthPass = password
|
|
|
|
return nil
|
|
|
|
}
|