2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2018-12-05 09:17:17 -07:00
|
|
|
"net"
|
2018-08-30 07:25:33 -07:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2018-12-05 04:21:25 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsforward"
|
2018-12-29 07:23:42 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/upstream"
|
2019-02-27 08:28:09 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2019-03-20 04:24:33 -07:00
|
|
|
"github.com/AdguardTeam/golibs/utils"
|
2019-04-15 06:21:12 -07:00
|
|
|
"github.com/NYTimes/gziphandler"
|
2018-12-05 09:17:17 -07:00
|
|
|
"github.com/miekg/dns"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
2019-08-13 00:30:28 -07:00
|
|
|
const updatePeriod = time.Hour * 24
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2019-03-07 06:32:52 -07:00
|
|
|
var protocols = []string{"tls://", "https://", "tcp://", "sdns://"}
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
// ----------------
|
|
|
|
// helper functions
|
|
|
|
// ----------------
|
|
|
|
|
|
|
|
func returnOK(w http.ResponseWriter) {
|
|
|
|
_, err := fmt.Fprintf(w, "OK\n")
|
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func httpError(w http.ResponseWriter, code int, format string, args ...interface{}) {
|
|
|
|
text := fmt.Sprintf(format, args...)
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info(text)
|
2019-02-10 10:47:43 -07:00
|
|
|
http.Error(w, text, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------
|
2018-12-05 10:29:00 -07:00
|
|
|
// dns run control
|
2019-02-10 10:47:43 -07:00
|
|
|
// ---------------
|
2018-12-05 10:29:00 -07:00
|
|
|
func writeAllConfigsAndReloadDNS() error {
|
2018-08-30 07:25:33 -07:00
|
|
|
err := writeAllConfigs()
|
|
|
|
if err != nil {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Error("Couldn't write all configs: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return err
|
|
|
|
}
|
2019-01-24 10:11:01 -07:00
|
|
|
return reconfigureDNSServer()
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
2018-10-10 10:13:03 -07:00
|
|
|
func httpUpdateConfigReloadDNSReturnOK(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
err := writeAllConfigsAndReloadDNS()
|
2018-10-10 10:13:03 -07:00
|
|
|
if err != nil {
|
2019-02-15 07:06:55 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Couldn't write config file: %s", err)
|
2018-10-10 10:13:03 -07:00
|
|
|
return
|
|
|
|
}
|
2019-01-24 10:11:01 -07:00
|
|
|
returnOK(w)
|
2018-10-10 10:13:03 -07:00
|
|
|
}
|
|
|
|
|
2019-07-02 02:19:36 -07:00
|
|
|
func addDNSAddress(dnsAddresses *[]string, addr string) {
|
|
|
|
if config.DNS.Port != 53 {
|
|
|
|
addr = fmt.Sprintf("%s:%d", addr, config.DNS.Port)
|
|
|
|
}
|
|
|
|
*dnsAddresses = append(*dnsAddresses, addr)
|
|
|
|
}
|
2019-03-19 04:14:58 -07:00
|
|
|
|
2019-07-02 02:19:36 -07:00
|
|
|
// Get the list of DNS addresses the server is listening on
|
|
|
|
func getDNSAddresses() []string {
|
2019-03-19 04:14:58 -07:00
|
|
|
dnsAddresses := []string{}
|
2019-07-02 02:19:36 -07:00
|
|
|
|
2019-03-19 04:14:58 -07:00
|
|
|
if config.DNS.BindHost == "0.0.0.0" {
|
2019-07-02 02:19:36 -07:00
|
|
|
|
2019-03-19 04:14:58 -07:00
|
|
|
ifaces, e := getValidNetInterfacesForWeb()
|
|
|
|
if e != nil {
|
|
|
|
log.Error("Couldn't get network interfaces: %v", e)
|
2019-07-02 02:19:36 -07:00
|
|
|
return []string{}
|
2019-03-19 04:14:58 -07:00
|
|
|
}
|
2019-07-02 02:19:36 -07:00
|
|
|
|
2019-03-19 04:14:58 -07:00
|
|
|
for _, iface := range ifaces {
|
|
|
|
for _, addr := range iface.Addresses {
|
2019-07-02 02:19:36 -07:00
|
|
|
addDNSAddress(&dnsAddresses, addr)
|
2019-03-19 04:14:58 -07:00
|
|
|
}
|
|
|
|
}
|
2019-07-02 02:19:36 -07:00
|
|
|
|
|
|
|
} else {
|
|
|
|
addDNSAddress(&dnsAddresses, config.DNS.BindHost)
|
2019-03-19 04:14:58 -07:00
|
|
|
}
|
2019-07-02 02:19:36 -07:00
|
|
|
|
2019-07-02 02:27:10 -07:00
|
|
|
if config.TLS.Enabled && len(config.TLS.ServerName) != 0 {
|
|
|
|
|
|
|
|
if config.TLS.PortHTTPS != 0 {
|
|
|
|
addr := config.TLS.ServerName
|
|
|
|
if config.TLS.PortHTTPS != 443 {
|
|
|
|
addr = fmt.Sprintf("%s:%d", addr, config.TLS.PortHTTPS)
|
|
|
|
}
|
|
|
|
addr = fmt.Sprintf("https://%s/dns-query", addr)
|
|
|
|
dnsAddresses = append(dnsAddresses, addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.TLS.PortDNSOverTLS != 0 {
|
|
|
|
addr := fmt.Sprintf("tls://%s:%d", config.TLS.ServerName, config.TLS.PortDNSOverTLS)
|
|
|
|
dnsAddresses = append(dnsAddresses, addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 02:19:36 -07:00
|
|
|
return dnsAddresses
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleStatus(w http.ResponseWriter, r *http.Request) {
|
2018-08-30 07:25:33 -07:00
|
|
|
data := map[string]interface{}{
|
2019-07-02 02:19:36 -07:00
|
|
|
"dns_addresses": getDNSAddresses(),
|
2019-02-20 02:24:56 -07:00
|
|
|
"http_port": config.BindPort,
|
2018-12-05 10:29:00 -07:00
|
|
|
"dns_port": config.DNS.Port,
|
|
|
|
"protection_enabled": config.DNS.ProtectionEnabled,
|
|
|
|
"querylog_enabled": config.DNS.QueryLogEnabled,
|
2018-10-10 10:13:03 -07:00
|
|
|
"running": isRunning(),
|
2018-12-05 10:29:00 -07:00
|
|
|
"bootstrap_dns": config.DNS.BootstrapDNS,
|
|
|
|
"upstream_dns": config.DNS.UpstreamDNS,
|
2019-02-26 08:19:05 -07:00
|
|
|
"all_servers": config.DNS.AllServers,
|
2019-06-20 04:36:26 -07:00
|
|
|
"version": versionString,
|
2018-11-21 10:42:55 -07:00
|
|
|
"language": config.Language,
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(data)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 10:13:03 -07:00
|
|
|
func handleProtectionEnable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.ProtectionEnabled = true
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleProtectionDisable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.ProtectionEnabled = false
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
|
|
|
}
|
|
|
|
|
2018-08-30 07:25:33 -07:00
|
|
|
// -----
|
|
|
|
// stats
|
|
|
|
// -----
|
|
|
|
func handleQueryLogEnable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.QueryLogEnabled = true
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleQueryLogDisable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.QueryLogEnabled = false
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
func handleQueryLog(w http.ResponseWriter, r *http.Request) {
|
2019-07-09 09:00:11 -07:00
|
|
|
data := config.dnsServer.GetQueryLog()
|
2019-02-10 10:47:43 -07:00
|
|
|
|
|
|
|
jsonVal, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Couldn't marshal data into json: %s", err)
|
2019-02-10 10:47:43 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
_, err = w.Write(jsonVal)
|
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------
|
|
|
|
// upstreams configuration
|
|
|
|
// -----------------------
|
|
|
|
|
2019-02-28 03:01:41 -07:00
|
|
|
// TODO this struct will become unnecessary after config file rework
|
|
|
|
type upstreamConfig struct {
|
2019-03-06 05:35:22 -07:00
|
|
|
Upstreams []string `json:"upstream_dns"` // Upstreams
|
|
|
|
BootstrapDNS []string `json:"bootstrap_dns"` // Bootstrap DNS
|
|
|
|
AllServers bool `json:"all_servers"` // --all-servers param for dnsproxy
|
2019-02-28 01:10:43 -07:00
|
|
|
}
|
|
|
|
|
2019-02-28 03:01:41 -07:00
|
|
|
func handleSetUpstreamConfig(w http.ResponseWriter, r *http.Request) {
|
|
|
|
newconfig := upstreamConfig{}
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&newconfig)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-28 03:01:41 -07:00
|
|
|
httpError(w, http.StatusBadRequest, "Failed to parse new upstreams config json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
2018-11-05 14:47:59 -07:00
|
|
|
|
2019-03-20 04:24:33 -07:00
|
|
|
err = validateUpstreams(newconfig.Upstreams)
|
|
|
|
if err != nil {
|
|
|
|
httpError(w, http.StatusBadRequest, "wrong upstreams specification: %s", err)
|
|
|
|
return
|
2019-03-06 08:24:14 -07:00
|
|
|
}
|
|
|
|
|
2019-02-28 05:06:30 -07:00
|
|
|
config.DNS.UpstreamDNS = defaultDNS
|
2019-03-06 05:35:22 -07:00
|
|
|
if len(newconfig.Upstreams) > 0 {
|
|
|
|
config.DNS.UpstreamDNS = newconfig.Upstreams
|
2019-02-28 05:06:30 -07:00
|
|
|
}
|
2019-02-28 03:01:41 -07:00
|
|
|
|
2019-03-06 08:24:14 -07:00
|
|
|
// bootstrap servers are plain DNS only.
|
2019-03-06 05:35:22 -07:00
|
|
|
for _, host := range newconfig.BootstrapDNS {
|
2019-03-06 08:24:14 -07:00
|
|
|
if err := checkPlainDNS(host); err != nil {
|
2019-03-06 06:17:15 -07:00
|
|
|
httpError(w, http.StatusBadRequest, "%s can not be used as bootstrap dns cause: %s", host, err)
|
|
|
|
return
|
2019-02-27 02:58:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 05:06:30 -07:00
|
|
|
config.DNS.BootstrapDNS = defaultBootstrap
|
2019-03-06 06:17:15 -07:00
|
|
|
if len(newconfig.BootstrapDNS) > 0 {
|
|
|
|
config.DNS.BootstrapDNS = newconfig.BootstrapDNS
|
2019-02-27 02:58:42 -07:00
|
|
|
}
|
|
|
|
|
2019-03-06 05:35:22 -07:00
|
|
|
config.DNS.AllServers = newconfig.AllServers
|
2019-02-28 05:06:30 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2019-02-26 08:19:05 -07:00
|
|
|
}
|
|
|
|
|
2019-03-20 04:24:33 -07:00
|
|
|
// validateUpstreams validates each upstream and returns an error if any upstream is invalid or if there are no default upstreams specified
|
|
|
|
func validateUpstreams(upstreams []string) error {
|
|
|
|
var defaultUpstreamFound bool
|
|
|
|
for _, u := range upstreams {
|
|
|
|
d, err := validateUpstream(u)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check this flag until default upstream will not be found
|
|
|
|
if !defaultUpstreamFound {
|
|
|
|
defaultUpstreamFound = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return error if there are no default upstreams
|
|
|
|
if !defaultUpstreamFound {
|
|
|
|
return fmt.Errorf("no default upstreams specified")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-20 05:19:34 -07:00
|
|
|
func validateUpstream(u string) (bool, error) {
|
2019-03-20 04:24:33 -07:00
|
|
|
// Check if user tries to specify upstream for domain
|
2019-03-20 05:19:34 -07:00
|
|
|
u, defaultUpstream, err := separateUpstream(u)
|
2019-03-20 04:24:33 -07:00
|
|
|
if err != nil {
|
2019-03-20 05:19:34 -07:00
|
|
|
return defaultUpstream, err
|
2019-03-20 04:24:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// The special server address '#' means "use the default servers"
|
|
|
|
if u == "#" && !defaultUpstream {
|
2019-03-20 05:19:34 -07:00
|
|
|
return defaultUpstream, nil
|
2019-03-20 04:24:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the upstream has a valid protocol prefix
|
2019-03-07 06:32:52 -07:00
|
|
|
for _, proto := range protocols {
|
2019-03-20 04:24:33 -07:00
|
|
|
if strings.HasPrefix(u, proto) {
|
2019-03-20 05:19:34 -07:00
|
|
|
return defaultUpstream, nil
|
2019-03-07 06:32:52 -07:00
|
|
|
}
|
2019-03-06 08:24:14 -07:00
|
|
|
}
|
|
|
|
|
2019-03-20 04:24:33 -07:00
|
|
|
// Return error if the upstream contains '://' without any valid protocol
|
|
|
|
if strings.Contains(u, "://") {
|
|
|
|
return defaultUpstream, fmt.Errorf("wrong protocol")
|
2019-03-06 08:24:14 -07:00
|
|
|
}
|
|
|
|
|
2019-03-20 04:24:33 -07:00
|
|
|
// Check if upstream is valid plain DNS
|
|
|
|
return defaultUpstream, checkPlainDNS(u)
|
|
|
|
}
|
|
|
|
|
|
|
|
// separateUpstream returns upstream without specified domains and a bool flag that indicates if no domains were specified
|
|
|
|
// error will be returned if upstream per domain specification is invalid
|
|
|
|
func separateUpstream(upstream string) (string, bool, error) {
|
|
|
|
defaultUpstream := true
|
|
|
|
if strings.HasPrefix(upstream, "[/") {
|
|
|
|
defaultUpstream = false
|
|
|
|
// split domains and upstream string
|
|
|
|
domainsAndUpstream := strings.Split(strings.TrimPrefix(upstream, "[/"), "/]")
|
|
|
|
if len(domainsAndUpstream) != 2 {
|
|
|
|
return "", defaultUpstream, fmt.Errorf("wrong DNS upstream per domain specification: %s", upstream)
|
|
|
|
}
|
|
|
|
|
|
|
|
// split domains list and validate each one
|
|
|
|
for _, host := range strings.Split(domainsAndUpstream[0], "/") {
|
|
|
|
if host != "" {
|
|
|
|
if err := utils.IsValidHostname(host); err != nil {
|
|
|
|
return "", defaultUpstream, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
upstream = domainsAndUpstream[1]
|
|
|
|
}
|
|
|
|
return upstream, defaultUpstream, nil
|
2019-03-06 08:24:14 -07:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:06:26 -07:00
|
|
|
// checkPlainDNS checks if host is plain DNS
|
2019-03-06 08:24:14 -07:00
|
|
|
func checkPlainDNS(upstream string) error {
|
2019-02-27 02:58:42 -07:00
|
|
|
// Check if host is ip without port
|
2019-03-06 08:24:14 -07:00
|
|
|
if net.ParseIP(upstream) != nil {
|
2019-02-27 02:58:42 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if host is ip with port
|
2019-03-06 08:24:14 -07:00
|
|
|
ip, port, err := net.SplitHostPort(upstream)
|
2019-03-06 08:06:26 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if net.ParseIP(ip) == nil {
|
2019-03-06 08:24:14 -07:00
|
|
|
return fmt.Errorf("%s is not a valid IP", ip)
|
2019-03-06 08:06:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
_, err = strconv.ParseInt(port, 0, 64)
|
|
|
|
if err != nil {
|
2019-03-06 08:24:14 -07:00
|
|
|
return fmt.Errorf("%s is not a valid port: %s", port, err)
|
2019-03-06 08:06:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-02-27 02:58:42 -07:00
|
|
|
}
|
|
|
|
|
2018-09-19 09:12:09 -07:00
|
|
|
func handleTestUpstreamDNS(w http.ResponseWriter, r *http.Request) {
|
2019-03-06 06:17:15 -07:00
|
|
|
upstreamConfig := upstreamConfig{}
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&upstreamConfig)
|
2018-09-19 09:12:09 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusBadRequest, "Failed to read request body: %s", err)
|
2018-09-19 09:12:09 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-06 06:17:15 -07:00
|
|
|
if len(upstreamConfig.Upstreams) == 0 {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusBadRequest, "No servers specified")
|
2018-09-19 09:12:09 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
result := map[string]string{}
|
|
|
|
|
2019-03-06 06:17:15 -07:00
|
|
|
for _, host := range upstreamConfig.Upstreams {
|
|
|
|
err = checkDNS(host, upstreamConfig.BootstrapDNS)
|
2018-09-19 09:12:09 -07:00
|
|
|
if err != nil {
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Info("%v", err)
|
2018-09-19 09:12:09 -07:00
|
|
|
result[host] = err.Error()
|
|
|
|
} else {
|
|
|
|
result[host] = "OK"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(result)
|
2018-09-19 09:12:09 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-09-19 09:12:09 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-09-19 09:12:09 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
2018-09-19 09:12:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 06:17:15 -07:00
|
|
|
func checkDNS(input string, bootstrap []string) error {
|
2019-03-20 04:24:33 -07:00
|
|
|
// separate upstream from domains list
|
|
|
|
input, defaultUpstream, err := separateUpstream(input)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("wrong upstream format: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// No need to check this entrance
|
|
|
|
if input == "#" && !defaultUpstream {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := validateUpstream(input); err != nil {
|
2019-03-06 08:36:31 -07:00
|
|
|
return fmt.Errorf("wrong upstream format: %s", err)
|
|
|
|
}
|
|
|
|
|
2019-03-06 06:17:15 -07:00
|
|
|
if len(bootstrap) == 0 {
|
|
|
|
bootstrap = defaultBootstrap
|
|
|
|
}
|
|
|
|
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Debug("Checking if DNS %s works...", input)
|
2019-03-06 06:17:15 -07:00
|
|
|
u, err := upstream.AddressToUpstream(input, upstream.Options{Bootstrap: bootstrap, Timeout: dnsforward.DefaultTimeout})
|
2018-09-26 07:47:23 -07:00
|
|
|
if err != nil {
|
2019-01-24 10:11:01 -07:00
|
|
|
return fmt.Errorf("failed to choose upstream for %s: %s", input, err)
|
2018-09-19 09:12:09 -07:00
|
|
|
}
|
2018-09-26 07:47:23 -07:00
|
|
|
|
2018-12-05 09:17:17 -07:00
|
|
|
req := dns.Msg{}
|
|
|
|
req.Id = dns.Id()
|
|
|
|
req.RecursionDesired = true
|
|
|
|
req.Question = []dns.Question{
|
|
|
|
{Name: "google-public-dns-a.google.com.", Qtype: dns.TypeA, Qclass: dns.ClassINET},
|
|
|
|
}
|
|
|
|
reply, err := u.Exchange(&req)
|
2018-09-19 09:12:09 -07:00
|
|
|
if err != nil {
|
2018-10-30 02:24:59 -07:00
|
|
|
return fmt.Errorf("couldn't communicate with DNS server %s: %s", input, err)
|
2018-09-19 09:12:09 -07:00
|
|
|
}
|
2018-12-05 09:17:17 -07:00
|
|
|
if len(reply.Answer) != 1 {
|
|
|
|
return fmt.Errorf("DNS server %s returned wrong answer", input)
|
|
|
|
}
|
|
|
|
if t, ok := reply.Answer[0].(*dns.A); ok {
|
|
|
|
if !net.IPv4(8, 8, 8, 8).Equal(t.A) {
|
|
|
|
return fmt.Errorf("DNS server %s returned wrong answer: %v", input, t.A)
|
|
|
|
}
|
2018-09-26 07:47:23 -07:00
|
|
|
}
|
|
|
|
|
2019-02-25 06:44:22 -07:00
|
|
|
log.Debug("DNS %s works OK", input)
|
2018-11-05 14:47:59 -07:00
|
|
|
return nil
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------
|
|
|
|
// safebrowsing
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
func handleSafeBrowsingEnable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.SafeBrowsingEnabled = true
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleSafeBrowsingDisable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.SafeBrowsingEnabled = false
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleSafeBrowsingStatus(w http.ResponseWriter, r *http.Request) {
|
|
|
|
data := map[string]interface{}{
|
2018-12-05 10:29:00 -07:00
|
|
|
"enabled": config.DNS.SafeBrowsingEnabled,
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(data)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------
|
|
|
|
// parental
|
|
|
|
// --------
|
|
|
|
func handleParentalEnable(w http.ResponseWriter, r *http.Request) {
|
|
|
|
parameters, err := parseParametersFromBody(r.Body)
|
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusBadRequest, "failed to parse parameters from body: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sensitivity, ok := parameters["sensitivity"]
|
|
|
|
if !ok {
|
2019-05-27 13:51:51 -07:00
|
|
|
http.Error(w, "Sensitivity parameter was not specified", 400)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch sensitivity {
|
|
|
|
case "3":
|
|
|
|
break
|
|
|
|
case "EARLY_CHILDHOOD":
|
|
|
|
sensitivity = "3"
|
|
|
|
case "10":
|
|
|
|
break
|
|
|
|
case "YOUNG":
|
|
|
|
sensitivity = "10"
|
|
|
|
case "13":
|
|
|
|
break
|
|
|
|
case "TEEN":
|
|
|
|
sensitivity = "13"
|
|
|
|
case "17":
|
|
|
|
break
|
|
|
|
case "MATURE":
|
|
|
|
sensitivity = "17"
|
|
|
|
default:
|
|
|
|
http.Error(w, "Sensitivity must be set to valid value", 400)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i, err := strconv.Atoi(sensitivity)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "Sensitivity must be set to valid value", 400)
|
|
|
|
return
|
|
|
|
}
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.ParentalSensitivity = i
|
|
|
|
config.DNS.ParentalEnabled = true
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleParentalDisable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.ParentalEnabled = false
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleParentalStatus(w http.ResponseWriter, r *http.Request) {
|
|
|
|
data := map[string]interface{}{
|
2018-12-05 10:29:00 -07:00
|
|
|
"enabled": config.DNS.ParentalEnabled,
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2018-12-05 10:29:00 -07:00
|
|
|
if config.DNS.ParentalEnabled {
|
|
|
|
data["sensitivity"] = config.DNS.ParentalSensitivity
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(data)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------
|
|
|
|
// safebrowsing
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
func handleSafeSearchEnable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.SafeSearchEnabled = true
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleSafeSearchDisable(w http.ResponseWriter, r *http.Request) {
|
2018-12-05 10:29:00 -07:00
|
|
|
config.DNS.SafeSearchEnabled = false
|
2018-10-10 10:13:03 -07:00
|
|
|
httpUpdateConfigReloadDNSReturnOK(w, r)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleSafeSearchStatus(w http.ResponseWriter, r *http.Request) {
|
|
|
|
data := map[string]interface{}{
|
2018-12-05 10:29:00 -07:00
|
|
|
"enabled": config.DNS.SafeSearchEnabled,
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2018-10-20 09:58:39 -07:00
|
|
|
jsonVal, err := json.Marshal(data)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to marshal status json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2018-10-20 09:58:39 -07:00
|
|
|
_, err = w.Write(jsonVal)
|
2018-08-30 07:25:33 -07:00
|
|
|
if err != nil {
|
2019-02-27 07:28:10 -07:00
|
|
|
httpError(w, http.StatusInternalServerError, "Unable to write response json: %s", err)
|
2018-08-30 07:25:33 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 05:52:12 -07:00
|
|
|
// --------------
|
|
|
|
// DNS-over-HTTPS
|
|
|
|
// --------------
|
|
|
|
func handleDOH(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.TLS == nil {
|
|
|
|
httpError(w, http.StatusNotFound, "Not Found")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isRunning() {
|
|
|
|
httpError(w, http.StatusInternalServerError, "DNS server is not running")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-09 09:00:11 -07:00
|
|
|
config.dnsServer.ServeHTTP(w, r)
|
2019-02-22 05:52:12 -07:00
|
|
|
}
|
|
|
|
|
2019-02-12 10:02:52 -07:00
|
|
|
// ------------------------
|
|
|
|
// registration of handlers
|
|
|
|
// ------------------------
|
2018-08-30 07:25:33 -07:00
|
|
|
func registerControlHandlers() {
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodGet, "/control/status", handleStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/enable_protection", handleProtectionEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/disable_protection", handleProtectionDisable)
|
|
|
|
httpRegister(http.MethodGet, "/control/querylog", handleQueryLog)
|
|
|
|
httpRegister(http.MethodPost, "/control/querylog_enable", handleQueryLogEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/querylog_disable", handleQueryLogDisable)
|
|
|
|
httpRegister(http.MethodPost, "/control/set_upstreams_config", handleSetUpstreamConfig)
|
|
|
|
httpRegister(http.MethodPost, "/control/test_upstream_dns", handleTestUpstreamDNS)
|
|
|
|
httpRegister(http.MethodPost, "/control/i18n/change_language", handleI18nChangeLanguage)
|
|
|
|
httpRegister(http.MethodGet, "/control/i18n/current_language", handleI18nCurrentLanguage)
|
2019-01-29 10:41:57 -07:00
|
|
|
http.HandleFunc("/control/version.json", postInstall(optionalAuth(handleGetVersionJSON)))
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodPost, "/control/update", handleUpdate)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/enable", handleFilteringEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/disable", handleFilteringDisable)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/add_url", handleFilteringAddURL)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/remove_url", handleFilteringRemoveURL)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/enable_url", handleFilteringEnableURL)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/disable_url", handleFilteringDisableURL)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/refresh", handleFilteringRefresh)
|
|
|
|
httpRegister(http.MethodGet, "/control/filtering/status", handleFilteringStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/filtering/set_rules", handleFilteringSetRules)
|
|
|
|
httpRegister(http.MethodPost, "/control/safebrowsing/enable", handleSafeBrowsingEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/safebrowsing/disable", handleSafeBrowsingDisable)
|
|
|
|
httpRegister(http.MethodGet, "/control/safebrowsing/status", handleSafeBrowsingStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/parental/enable", handleParentalEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/parental/disable", handleParentalDisable)
|
|
|
|
httpRegister(http.MethodGet, "/control/parental/status", handleParentalStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/safesearch/enable", handleSafeSearchEnable)
|
|
|
|
httpRegister(http.MethodPost, "/control/safesearch/disable", handleSafeSearchDisable)
|
|
|
|
httpRegister(http.MethodGet, "/control/safesearch/status", handleSafeSearchStatus)
|
|
|
|
httpRegister(http.MethodGet, "/control/dhcp/status", handleDHCPStatus)
|
|
|
|
httpRegister(http.MethodGet, "/control/dhcp/interfaces", handleDHCPInterfaces)
|
|
|
|
httpRegister(http.MethodPost, "/control/dhcp/set_config", handleDHCPSetConfig)
|
|
|
|
httpRegister(http.MethodPost, "/control/dhcp/find_active_dhcp", handleDHCPFindActiveServer)
|
|
|
|
httpRegister(http.MethodPost, "/control/dhcp/add_static_lease", handleDHCPAddStaticLease)
|
|
|
|
httpRegister(http.MethodPost, "/control/dhcp/remove_static_lease", handleDHCPRemoveStaticLease)
|
|
|
|
|
|
|
|
httpRegister(http.MethodGet, "/control/access/list", handleAccessList)
|
|
|
|
httpRegister(http.MethodPost, "/control/access/set", handleAccessSet)
|
2019-05-24 07:15:19 -07:00
|
|
|
|
2019-02-27 08:53:16 -07:00
|
|
|
RegisterTLSHandlers()
|
2019-03-19 08:47:22 -07:00
|
|
|
RegisterClientsHandlers()
|
2019-07-19 05:14:19 -07:00
|
|
|
registerRewritesHandlers()
|
2019-07-23 02:16:36 -07:00
|
|
|
RegisterBlockedServicesHandlers()
|
2019-08-08 02:56:02 -07:00
|
|
|
RegisterStatsHandlers()
|
2019-02-22 05:52:12 -07:00
|
|
|
|
|
|
|
http.HandleFunc("/dns-query", postInstall(handleDOH))
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2019-08-21 04:39:37 -07:00
|
|
|
|
|
|
|
type httpHandlerType func(http.ResponseWriter, *http.Request)
|
|
|
|
|
|
|
|
func httpRegister(method string, url string, handler httpHandlerType) {
|
|
|
|
http.Handle(url, postInstallHandler(optionalAuthHandler(gziphandler.GzipHandler(ensureHandler(method, handler)))))
|
|
|
|
}
|