2019-06-10 11:33:19 +03:00
|
|
|
package home
|
2018-08-30 17:25:33 +03:00
|
|
|
|
|
|
|
import (
|
2022-08-08 15:50:54 +03:00
|
|
|
"bytes"
|
2021-12-28 17:00:52 +03:00
|
|
|
"fmt"
|
2021-01-20 17:27:53 +03:00
|
|
|
"net"
|
2018-08-30 17:25:33 +03:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sync"
|
2018-10-30 17:16:20 +03:00
|
|
|
|
2022-01-19 20:45:50 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghalg"
|
2020-10-30 13:32:02 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dhcpd"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2021-05-21 16:15:47 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
2020-10-30 13:32:02 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/querylog"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/stats"
|
2021-08-27 20:16:07 +03:00
|
|
|
"github.com/AdguardTeam/dnsproxy/fastip"
|
2021-05-24 17:28:11 +03:00
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
2019-02-25 16:44:22 +03:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2021-09-30 21:17:54 +03:00
|
|
|
"github.com/AdguardTeam/golibs/timeutil"
|
2021-04-06 20:48:36 +03:00
|
|
|
"github.com/google/renameio/maybe"
|
2022-08-08 15:50:54 +03:00
|
|
|
yaml "gopkg.in/yaml.v3"
|
2018-08-30 17:25:33 +03:00
|
|
|
)
|
|
|
|
|
2022-09-23 13:23:35 +03:00
|
|
|
// dataDir is the name of a directory under the working one to store some
|
|
|
|
// persistent data.
|
|
|
|
const dataDir = "data"
|
2018-10-30 17:16:20 +03:00
|
|
|
|
2022-08-08 15:50:54 +03:00
|
|
|
// logSettings are the logging settings part of the configuration file.
|
|
|
|
//
|
|
|
|
// TODO(a.garipov): Put them into a separate object.
|
2019-02-04 13:54:53 +03:00
|
|
|
type logSettings struct {
|
2022-08-08 15:50:54 +03:00
|
|
|
// File is the path to the log file. If empty, logs are written to stdout.
|
|
|
|
// If "syslog", logs are written to syslog.
|
|
|
|
File string `yaml:"log_file"`
|
|
|
|
|
|
|
|
// MaxBackups is the maximum number of old log files to retain.
|
|
|
|
//
|
|
|
|
// NOTE: MaxAge may still cause them to get deleted.
|
|
|
|
MaxBackups int `yaml:"log_max_backups"`
|
|
|
|
|
|
|
|
// MaxSize is the maximum size of the log file before it gets rotated, in
|
|
|
|
// megabytes. The default value is 100 MB.
|
|
|
|
MaxSize int `yaml:"log_max_size"`
|
|
|
|
|
|
|
|
// MaxAge is the maximum duration for retaining old log files, in days.
|
|
|
|
MaxAge int `yaml:"log_max_age"`
|
|
|
|
|
|
|
|
// Compress determines, if the rotated log files should be compressed using
|
|
|
|
// gzip.
|
|
|
|
Compress bool `yaml:"log_compress"`
|
|
|
|
|
|
|
|
// LocalTime determines, if the time used for formatting the timestamps in
|
|
|
|
// is the computer's local time.
|
|
|
|
LocalTime bool `yaml:"log_localtime"`
|
|
|
|
|
|
|
|
// Verbose determines, if verbose (aka debug) logging is enabled.
|
|
|
|
Verbose bool `yaml:"verbose"`
|
2019-02-04 13:54:53 +03:00
|
|
|
}
|
|
|
|
|
2021-06-04 16:35:34 +03:00
|
|
|
// osConfig contains OS-related configuration.
|
|
|
|
type osConfig struct {
|
|
|
|
// Group is the name of the group which AdGuard Home must switch to on
|
|
|
|
// startup. Empty string means no switching.
|
|
|
|
Group string `yaml:"group"`
|
|
|
|
// User is the name of the user which AdGuard Home must switch to on
|
|
|
|
// startup. Empty string means no switching.
|
|
|
|
User string `yaml:"user"`
|
|
|
|
// RlimitNoFile is the maximum number of opened fd's per process. Zero
|
|
|
|
// means use the default value.
|
|
|
|
RlimitNoFile uint64 `yaml:"rlimit_nofile"`
|
|
|
|
}
|
|
|
|
|
2022-04-26 13:04:16 +03:00
|
|
|
type clientsConfig struct {
|
|
|
|
// Sources defines the set of sources to fetch the runtime clients from.
|
|
|
|
Sources *clientSourcesConf `yaml:"runtime_sources"`
|
|
|
|
// Persistent are the configured clients.
|
|
|
|
Persistent []*clientObject `yaml:"persistent"`
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
// configuration is loaded from YAML
|
2018-11-27 20:51:12 +03:00
|
|
|
// field ordering is important -- yaml fields will mirror ordering from here
|
2018-08-30 17:25:33 +03:00
|
|
|
type configuration struct {
|
2019-04-30 14:38:24 +03:00
|
|
|
// Raw file data to avoid re-reading of configuration file
|
|
|
|
// It's reset after config is parsed
|
|
|
|
fileData []byte
|
|
|
|
|
2022-09-29 19:04:26 +03:00
|
|
|
BindHost net.IP `yaml:"bind_host"` // BindHost is the IP address of the HTTP server to bind to
|
|
|
|
BindPort int `yaml:"bind_port"` // BindPort is the port the HTTP server
|
|
|
|
BetaBindPort int `yaml:"beta_bind_port"` // BetaBindPort is the port for new client
|
|
|
|
Users []webUser `yaml:"users"` // Users that can access HTTP server
|
2021-04-27 18:56:32 +03:00
|
|
|
// AuthAttempts is the maximum number of failed login attempts a user
|
|
|
|
// can do before being blocked.
|
|
|
|
AuthAttempts uint `yaml:"auth_attempts"`
|
|
|
|
// AuthBlockMin is the duration, in minutes, of the block of new login
|
|
|
|
// attempts after AuthAttempts unsuccessful login attempts.
|
|
|
|
AuthBlockMin uint `yaml:"block_auth_min"`
|
2021-06-04 16:35:34 +03:00
|
|
|
ProxyURL string `yaml:"http_proxy"` // Proxy address for our HTTP client
|
|
|
|
Language string `yaml:"language"` // two-letter ISO 639-1 language code
|
|
|
|
DebugPProf bool `yaml:"debug_pprof"` // Enable pprof HTTP server on port 6060
|
2019-03-27 17:09:48 +03:00
|
|
|
|
2019-11-12 14:23:00 +03:00
|
|
|
// TTL for a web session (in hours)
|
|
|
|
// An active session is automatically refreshed once a day.
|
|
|
|
WebSessionTTLHours uint32 `yaml:"web_session_ttl"`
|
|
|
|
|
2020-02-19 15:28:06 +03:00
|
|
|
DNS dnsConfig `yaml:"dns"`
|
|
|
|
TLS tlsConfigSettings `yaml:"tls"`
|
2020-02-26 19:58:25 +03:00
|
|
|
|
2022-09-23 13:23:35 +03:00
|
|
|
// Filters reflects the filters from [filtering.Config]. It's cloned to the
|
|
|
|
// config used in the filtering module at the startup. Afterwards it's
|
|
|
|
// cloned from the filtering module back here.
|
|
|
|
//
|
|
|
|
// TODO(e.burkov): Move all the filtering configuration fields into the
|
|
|
|
// only configuration subsection covering the changes with a single
|
|
|
|
// migration.
|
|
|
|
Filters []filtering.FilterYAML `yaml:"filters"`
|
|
|
|
WhitelistFilters []filtering.FilterYAML `yaml:"whitelist_filters"`
|
|
|
|
UserRules []string `yaml:"user_rules"`
|
2020-02-26 19:58:25 +03:00
|
|
|
|
2022-01-25 19:47:02 +03:00
|
|
|
DHCP *dhcpd.ServerConfig `yaml:"dhcp"`
|
2018-08-30 17:25:33 +03:00
|
|
|
|
2021-12-13 15:24:35 +03:00
|
|
|
// Clients contains the YAML representations of the persistent clients.
|
|
|
|
// This field is only used for reading and writing persistent client data.
|
|
|
|
// Keep this field sorted to ensure consistent ordering.
|
2022-04-26 13:04:16 +03:00
|
|
|
Clients *clientsConfig `yaml:"clients"`
|
2019-04-26 16:04:22 +03:00
|
|
|
|
2019-02-04 13:54:53 +03:00
|
|
|
logSettings `yaml:",inline"`
|
|
|
|
|
2021-06-04 16:35:34 +03:00
|
|
|
OSConfig *osConfig `yaml:"os"`
|
|
|
|
|
2018-10-07 00:58:59 +03:00
|
|
|
sync.RWMutex `yaml:"-"`
|
2018-11-27 20:51:12 +03:00
|
|
|
|
|
|
|
SchemaVersion int `yaml:"schema_version"` // keeping last so that users will be less tempted to change it -- used when upgrading between versions
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|
|
|
|
|
2018-11-27 20:51:12 +03:00
|
|
|
// field ordering is important -- yaml fields will mirror ordering from here
|
2018-12-05 20:29:00 +03:00
|
|
|
type dnsConfig struct {
|
2021-03-23 12:32:07 +03:00
|
|
|
BindHosts []net.IP `yaml:"bind_hosts"`
|
|
|
|
Port int `yaml:"port"`
|
2018-11-28 18:24:04 +03:00
|
|
|
|
2019-08-08 12:41:00 +03:00
|
|
|
// time interval for statistics (in days)
|
2019-09-10 17:59:10 +03:00
|
|
|
StatsInterval uint32 `yaml:"statistics_interval"`
|
2019-08-08 12:41:00 +03:00
|
|
|
|
2021-07-01 18:50:28 +03:00
|
|
|
QueryLogEnabled bool `yaml:"querylog_enabled"` // if true, query log is enabled
|
|
|
|
QueryLogFileEnabled bool `yaml:"querylog_file_enabled"` // if true, query log will be written to a file
|
|
|
|
// QueryLogInterval is the interval for query log's files rotation.
|
2021-09-30 21:17:54 +03:00
|
|
|
QueryLogInterval timeutil.Duration `yaml:"querylog_interval"`
|
|
|
|
QueryLogMemSize uint32 `yaml:"querylog_size_memory"` // number of entries kept in memory before they are flushed to disk
|
|
|
|
AnonymizeClientIP bool `yaml:"anonymize_client_ip"` // anonymize clients' IP addresses in logs and stats
|
2019-10-30 11:52:58 +03:00
|
|
|
|
2018-11-28 18:24:04 +03:00
|
|
|
dnsforward.FilteringConfig `yaml:",inline"`
|
|
|
|
|
2022-09-23 13:23:35 +03:00
|
|
|
DnsfilterConf *filtering.Config `yaml:",inline"`
|
2021-03-25 16:00:27 +03:00
|
|
|
|
2021-06-15 17:36:49 +03:00
|
|
|
// UpstreamTimeout is the timeout for querying upstream servers.
|
2021-09-30 21:17:54 +03:00
|
|
|
UpstreamTimeout timeutil.Duration `yaml:"upstream_timeout"`
|
2021-06-15 17:36:49 +03:00
|
|
|
|
2022-03-18 13:37:27 +03:00
|
|
|
// PrivateNets is the set of IP networks for which the private reverse DNS
|
|
|
|
// resolver should be used.
|
|
|
|
PrivateNets []string `yaml:"private_networks"`
|
|
|
|
|
2021-05-26 17:55:19 +03:00
|
|
|
// UsePrivateRDNS defines if the PTR requests for unknown addresses from
|
|
|
|
// locally-served networks should be resolved via private PTR resolvers.
|
|
|
|
UsePrivateRDNS bool `yaml:"use_private_ptr_resolvers"`
|
|
|
|
|
2021-04-07 20:16:06 +03:00
|
|
|
// LocalPTRResolvers is the slice of addresses to be used as upstreams
|
|
|
|
// for PTR queries for locally-served networks.
|
|
|
|
LocalPTRResolvers []string `yaml:"local_ptr_upstreams"`
|
2022-10-03 18:08:05 +03:00
|
|
|
|
|
|
|
// ServeHTTP3 defines if HTTP/3 is be allowed for incoming requests.
|
|
|
|
//
|
|
|
|
// TODO(a.garipov): Add to the UI when HTTP/3 support is no longer
|
|
|
|
// experimental.
|
|
|
|
ServeHTTP3 bool `yaml:"serve_http3"`
|
|
|
|
|
|
|
|
// UseHTTP3Upstreams defines if HTTP/3 is be allowed for DNS-over-HTTPS
|
|
|
|
// upstreams.
|
|
|
|
//
|
|
|
|
// TODO(a.garipov): Add to the UI when HTTP/3 support is no longer
|
|
|
|
// experimental.
|
|
|
|
UseHTTP3Upstreams bool `yaml:"use_http3_upstreams"`
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|
|
|
|
|
2019-02-13 11:08:07 +03:00
|
|
|
type tlsConfigSettings struct {
|
2021-06-18 18:13:36 +03:00
|
|
|
Enabled bool `yaml:"enabled" json:"enabled"` // Enabled is the encryption (DoT/DoH/HTTPS) status
|
2020-08-27 15:03:07 +03:00
|
|
|
ServerName string `yaml:"server_name" json:"server_name,omitempty"` // ServerName is the hostname of your HTTPS/TLS server
|
2021-12-13 13:48:08 +03:00
|
|
|
ForceHTTPS bool `yaml:"force_https" json:"force_https"` // ForceHTTPS: if true, forces HTTP->HTTPS redirect
|
2020-08-27 15:03:07 +03:00
|
|
|
PortHTTPS int `yaml:"port_https" json:"port_https,omitempty"` // HTTPS port. If 0, HTTPS will be disabled
|
2021-06-18 18:13:36 +03:00
|
|
|
PortDNSOverTLS int `yaml:"port_dns_over_tls" json:"port_dns_over_tls,omitempty"` // DNS-over-TLS port. If 0, DoT will be disabled
|
2021-03-23 12:32:07 +03:00
|
|
|
PortDNSOverQUIC int `yaml:"port_dns_over_quic" json:"port_dns_over_quic,omitempty"` // DNS-over-QUIC port. If 0, DoQ will be disabled
|
2019-02-12 17:23:38 +03:00
|
|
|
|
2020-12-07 17:58:33 +03:00
|
|
|
// PortDNSCrypt is the port for DNSCrypt requests. If it's zero,
|
|
|
|
// DNSCrypt is disabled.
|
|
|
|
PortDNSCrypt int `yaml:"port_dnscrypt" json:"port_dnscrypt"`
|
|
|
|
// DNSCryptConfigFile is the path to the DNSCrypt config file. Must be
|
|
|
|
// set if PortDNSCrypt is not zero.
|
|
|
|
//
|
|
|
|
// See https://github.com/AdguardTeam/dnsproxy and
|
|
|
|
// https://github.com/ameshkov/dnscrypt.
|
|
|
|
DNSCryptConfigFile string `yaml:"dnscrypt_config_file" json:"dnscrypt_config_file"`
|
|
|
|
|
2021-06-18 18:13:36 +03:00
|
|
|
// Allow DoH queries via unencrypted HTTP (e.g. for reverse proxying)
|
|
|
|
AllowUnencryptedDoH bool `yaml:"allow_unencrypted_doh" json:"allow_unencrypted_doh"`
|
2019-12-13 15:59:36 +03:00
|
|
|
|
2019-02-12 17:23:38 +03:00
|
|
|
dnsforward.TLSConfig `yaml:",inline" json:",inline"`
|
2019-02-13 11:08:07 +03:00
|
|
|
}
|
|
|
|
|
2021-09-13 16:00:36 +03:00
|
|
|
// config is the global configuration structure.
|
|
|
|
//
|
2021-12-27 19:40:39 +03:00
|
|
|
// TODO(a.garipov, e.burkov): This global is awful and must be removed.
|
2021-09-13 16:00:36 +03:00
|
|
|
var config = &configuration{
|
2022-09-23 13:23:35 +03:00
|
|
|
BindPort: 3000,
|
|
|
|
BetaBindPort: 0,
|
|
|
|
BindHost: net.IP{0, 0, 0, 0},
|
|
|
|
AuthAttempts: 5,
|
|
|
|
AuthBlockMin: 15,
|
|
|
|
WebSessionTTLHours: 30 * 24,
|
2018-12-05 20:29:00 +03:00
|
|
|
DNS: dnsConfig{
|
2022-09-23 13:23:35 +03:00
|
|
|
BindHosts: []net.IP{{0, 0, 0, 0}},
|
|
|
|
Port: defaultPortDNS,
|
|
|
|
StatsInterval: 1,
|
|
|
|
QueryLogEnabled: true,
|
|
|
|
QueryLogFileEnabled: true,
|
|
|
|
QueryLogInterval: timeutil.Duration{Duration: 90 * timeutil.Day},
|
|
|
|
QueryLogMemSize: 1000,
|
2018-11-28 18:24:04 +03:00
|
|
|
FilteringConfig: dnsforward.FilteringConfig{
|
2022-09-06 17:09:54 +03:00
|
|
|
ProtectionEnabled: true, // whether or not use any of filtering features
|
|
|
|
BlockingMode: dnsforward.BlockingModeDefault,
|
|
|
|
BlockedResponseTTL: 10, // in seconds
|
2019-10-30 11:52:58 +03:00
|
|
|
Ratelimit: 20,
|
|
|
|
RefuseAny: true,
|
|
|
|
AllServers: false,
|
2022-04-27 11:39:48 +03:00
|
|
|
HandleDDR: true,
|
2021-09-30 21:17:54 +03:00
|
|
|
FastestTimeout: timeutil.Duration{
|
2021-08-27 20:16:07 +03:00
|
|
|
Duration: fastip.DefaultPingWaitTimeout,
|
|
|
|
},
|
2020-11-05 13:26:13 +03:00
|
|
|
|
2021-07-26 19:30:35 +03:00
|
|
|
TrustedProxies: []string{"127.0.0.0/8", "::1/128"},
|
2022-10-11 19:49:35 +03:00
|
|
|
CacheSize: 4 * 1024 * 1024,
|
2021-07-26 19:30:35 +03:00
|
|
|
|
2020-11-05 13:26:13 +03:00
|
|
|
// set default maximum concurrent queries to 300
|
|
|
|
// we introduced a default limit due to this:
|
|
|
|
// https://github.com/AdguardTeam/AdGuardHome/issues/2015#issuecomment-674041912
|
|
|
|
// was later increased to 300 due to https://github.com/AdguardTeam/AdGuardHome/issues/2257
|
|
|
|
MaxGoroutines: 300,
|
2018-11-28 18:24:04 +03:00
|
|
|
},
|
2022-09-23 13:23:35 +03:00
|
|
|
DnsfilterConf: &filtering.Config{
|
|
|
|
SafeBrowsingCacheSize: 1 * 1024 * 1024,
|
|
|
|
SafeSearchCacheSize: 1 * 1024 * 1024,
|
|
|
|
ParentalCacheSize: 1 * 1024 * 1024,
|
|
|
|
CacheTime: 30,
|
|
|
|
FilteringEnabled: true,
|
|
|
|
FiltersUpdateIntervalHours: 24,
|
|
|
|
},
|
|
|
|
UpstreamTimeout: timeutil.Duration{Duration: dnsforward.DefaultTimeout},
|
|
|
|
UsePrivateRDNS: true,
|
2018-08-30 17:25:33 +03:00
|
|
|
},
|
2020-02-19 15:28:06 +03:00
|
|
|
TLS: tlsConfigSettings{
|
2021-09-17 18:31:07 +03:00
|
|
|
PortHTTPS: defaultPortHTTPS,
|
|
|
|
PortDNSOverTLS: defaultPortTLS, // needs to be passed through to dnsproxy
|
|
|
|
PortDNSOverQUIC: defaultPortQUIC,
|
2019-02-11 21:52:39 +03:00
|
|
|
},
|
2022-09-23 13:23:35 +03:00
|
|
|
Filters: []filtering.FilterYAML{{
|
|
|
|
Filter: filtering.Filter{ID: 1},
|
|
|
|
Enabled: true,
|
|
|
|
URL: "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt",
|
|
|
|
Name: "AdGuard DNS filter",
|
|
|
|
}, {
|
|
|
|
Filter: filtering.Filter{ID: 2},
|
|
|
|
Enabled: false,
|
|
|
|
URL: "https://adaway.org/hosts.txt",
|
|
|
|
Name: "AdAway Default Blocklist",
|
|
|
|
}},
|
2022-01-25 19:47:02 +03:00
|
|
|
DHCP: &dhcpd.ServerConfig{
|
|
|
|
LocalDomainName: "lan",
|
2022-09-23 13:23:35 +03:00
|
|
|
Conf4: dhcpd.V4ServerConf{
|
|
|
|
LeaseDuration: dhcpd.DefaultDHCPLeaseTTL,
|
|
|
|
ICMPTimeout: dhcpd.DefaultDHCPTimeoutICMP,
|
|
|
|
},
|
|
|
|
Conf6: dhcpd.V6ServerConf{
|
|
|
|
LeaseDuration: dhcpd.DefaultDHCPLeaseTTL,
|
|
|
|
},
|
2022-01-25 19:47:02 +03:00
|
|
|
},
|
2022-04-26 13:04:16 +03:00
|
|
|
Clients: &clientsConfig{
|
|
|
|
Sources: &clientSourcesConf{
|
|
|
|
WHOIS: true,
|
|
|
|
ARP: true,
|
|
|
|
RDNS: true,
|
|
|
|
DHCP: true,
|
|
|
|
HostsFile: true,
|
|
|
|
},
|
|
|
|
},
|
2020-06-02 14:20:12 +03:00
|
|
|
logSettings: logSettings{
|
2022-08-08 15:50:54 +03:00
|
|
|
Compress: false,
|
|
|
|
LocalTime: false,
|
|
|
|
MaxBackups: 0,
|
|
|
|
MaxSize: 100,
|
|
|
|
MaxAge: 3,
|
2020-06-02 14:20:12 +03:00
|
|
|
},
|
2021-06-04 16:35:34 +03:00
|
|
|
OSConfig: &osConfig{},
|
2018-12-06 00:29:38 +03:00
|
|
|
SchemaVersion: currentSchemaVersion,
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|
|
|
|
|
2019-02-05 20:35:48 +03:00
|
|
|
// getConfigFilename returns path to the current config file
|
|
|
|
func (c *configuration) getConfigFilename() string {
|
2020-02-13 18:42:07 +03:00
|
|
|
configFile, err := filepath.EvalSymlinks(Context.configFilename)
|
2019-03-14 18:06:53 +03:00
|
|
|
if err != nil {
|
2021-01-27 18:32:13 +03:00
|
|
|
if !errors.Is(err, os.ErrNotExist) {
|
2019-03-14 18:06:53 +03:00
|
|
|
log.Error("unexpected error while config file path evaluation: %s", err)
|
|
|
|
}
|
2020-02-13 18:42:07 +03:00
|
|
|
configFile = Context.configFilename
|
2019-03-14 18:06:53 +03:00
|
|
|
}
|
2019-02-05 20:35:48 +03:00
|
|
|
if !filepath.IsAbs(configFile) {
|
2020-02-13 18:42:07 +03:00
|
|
|
configFile = filepath.Join(Context.workDir, configFile)
|
2019-02-05 20:35:48 +03:00
|
|
|
}
|
|
|
|
return configFile
|
|
|
|
}
|
|
|
|
|
2019-02-04 13:54:53 +03:00
|
|
|
// getLogSettings reads logging settings from the config file.
|
|
|
|
// we do it in a separate method in order to configure logger before the actual configuration is parsed and applied.
|
|
|
|
func getLogSettings() logSettings {
|
|
|
|
l := logSettings{}
|
|
|
|
yamlFile, err := readConfigFile()
|
2019-04-30 14:38:24 +03:00
|
|
|
if err != nil {
|
2019-02-04 13:54:53 +03:00
|
|
|
return l
|
|
|
|
}
|
|
|
|
err = yaml.Unmarshal(yamlFile, &l)
|
|
|
|
if err != nil {
|
2019-02-25 16:44:22 +03:00
|
|
|
log.Error("Couldn't get logging settings from the configuration: %s", err)
|
2019-02-04 13:54:53 +03:00
|
|
|
}
|
|
|
|
return l
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseConfig loads configuration from the YAML file
|
2021-12-16 20:54:59 +03:00
|
|
|
func parseConfig() (err error) {
|
|
|
|
var fileData []byte
|
|
|
|
fileData, err = readConfigFile()
|
2018-08-30 17:25:33 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-16 20:54:59 +03:00
|
|
|
|
2019-04-30 14:38:24 +03:00
|
|
|
config.fileData = nil
|
2021-12-16 20:54:59 +03:00
|
|
|
err = yaml.Unmarshal(fileData, &config)
|
2018-08-30 17:25:33 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-08-03 14:36:18 +03:00
|
|
|
tcpPorts := aghalg.UniqChecker[tcpPort]{}
|
|
|
|
addPorts(tcpPorts, tcpPort(config.BindPort), tcpPort(config.BetaBindPort))
|
|
|
|
|
|
|
|
udpPorts := aghalg.UniqChecker[udpPort]{}
|
|
|
|
addPorts(udpPorts, udpPort(config.DNS.Port))
|
2021-12-28 17:00:52 +03:00
|
|
|
|
2021-12-16 20:54:59 +03:00
|
|
|
if config.TLS.Enabled {
|
2021-12-28 17:00:52 +03:00
|
|
|
addPorts(
|
2022-08-03 14:36:18 +03:00
|
|
|
tcpPorts,
|
2022-03-23 16:00:32 +03:00
|
|
|
tcpPort(config.TLS.PortHTTPS),
|
|
|
|
tcpPort(config.TLS.PortDNSOverTLS),
|
|
|
|
tcpPort(config.TLS.PortDNSCrypt),
|
2021-12-16 20:54:59 +03:00
|
|
|
)
|
2022-08-03 14:36:18 +03:00
|
|
|
|
|
|
|
// TODO(e.burkov): Consider adding a udpPort with the same value when
|
|
|
|
// we add support for HTTP/3 for web admin interface.
|
|
|
|
addPorts(udpPorts, udpPort(config.TLS.PortDNSOverQUIC))
|
2021-12-16 20:54:59 +03:00
|
|
|
}
|
2022-08-03 14:36:18 +03:00
|
|
|
if err = tcpPorts.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("validating tcp ports: %w", err)
|
|
|
|
} else if err = udpPorts.Validate(); err != nil {
|
|
|
|
return fmt.Errorf("validating udp ports: %w", err)
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|
|
|
|
|
2022-09-23 13:23:35 +03:00
|
|
|
if !filtering.ValidateUpdateIvl(config.DNS.DnsfilterConf.FiltersUpdateIntervalHours) {
|
|
|
|
config.DNS.DnsfilterConf.FiltersUpdateIntervalHours = 24
|
2019-09-04 14:12:00 +03:00
|
|
|
}
|
2019-08-08 12:41:00 +03:00
|
|
|
|
2021-06-15 17:36:49 +03:00
|
|
|
if config.DNS.UpstreamTimeout.Duration == 0 {
|
2021-09-30 21:17:54 +03:00
|
|
|
config.DNS.UpstreamTimeout = timeutil.Duration{Duration: dnsforward.DefaultTimeout}
|
2021-06-15 17:36:49 +03:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-23 16:00:32 +03:00
|
|
|
// udpPort is the port number for UDP protocol.
|
|
|
|
type udpPort int
|
|
|
|
|
|
|
|
// tcpPort is the port number for TCP protocol.
|
|
|
|
type tcpPort int
|
|
|
|
|
2022-08-03 14:36:18 +03:00
|
|
|
// addPorts is a helper for ports validation that skips zero ports.
|
|
|
|
func addPorts[T tcpPort | udpPort](uc aghalg.UniqChecker[T], ports ...T) {
|
2021-12-28 17:00:52 +03:00
|
|
|
for _, p := range ports {
|
2022-08-03 14:36:18 +03:00
|
|
|
if p != 0 {
|
|
|
|
uc.Add(p)
|
2021-12-28 17:00:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-16 20:54:59 +03:00
|
|
|
// readConfigFile reads configuration file contents.
|
|
|
|
func readConfigFile() (fileData []byte, err error) {
|
|
|
|
if len(config.fileData) > 0 {
|
2019-04-30 14:38:24 +03:00
|
|
|
return config.fileData, nil
|
|
|
|
}
|
|
|
|
|
2021-12-16 20:54:59 +03:00
|
|
|
name := config.getConfigFilename()
|
|
|
|
log.Debug("reading config file: %s", name)
|
|
|
|
|
|
|
|
// Do not wrap the error because it's informative enough as is.
|
|
|
|
return os.ReadFile(name)
|
2019-02-04 13:54:53 +03:00
|
|
|
}
|
|
|
|
|
2018-10-30 12:24:59 +03:00
|
|
|
// Saves configuration to the YAML file and also saves the user filter contents to a file
|
2022-08-08 15:50:54 +03:00
|
|
|
func (c *configuration) write() (err error) {
|
2018-11-29 13:31:50 +03:00
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
2019-04-26 16:04:22 +03:00
|
|
|
|
2020-02-13 18:42:07 +03:00
|
|
|
if Context.auth != nil {
|
|
|
|
config.Users = Context.auth.GetUsers()
|
2019-08-29 12:34:07 +03:00
|
|
|
}
|
2022-08-08 15:50:54 +03:00
|
|
|
|
2020-02-19 15:28:06 +03:00
|
|
|
if Context.tls != nil {
|
|
|
|
tlsConf := tlsConfigSettings{}
|
|
|
|
Context.tls.WriteDiskConfig(&tlsConf)
|
|
|
|
config.TLS = tlsConf
|
|
|
|
}
|
2019-08-29 12:34:07 +03:00
|
|
|
|
2019-12-11 12:38:58 +03:00
|
|
|
if Context.stats != nil {
|
2019-09-25 15:36:09 +03:00
|
|
|
sdc := stats.DiskConfig{}
|
2019-12-11 12:38:58 +03:00
|
|
|
Context.stats.WriteDiskConfig(&sdc)
|
2019-09-25 15:36:09 +03:00
|
|
|
config.DNS.StatsInterval = sdc.Interval
|
|
|
|
}
|
|
|
|
|
2019-12-11 12:38:58 +03:00
|
|
|
if Context.queryLog != nil {
|
2020-05-28 15:29:36 +03:00
|
|
|
dc := querylog.Config{}
|
2019-12-11 12:38:58 +03:00
|
|
|
Context.queryLog.WriteDiskConfig(&dc)
|
2019-09-27 18:58:57 +03:00
|
|
|
config.DNS.QueryLogEnabled = dc.Enabled
|
2020-05-28 15:29:36 +03:00
|
|
|
config.DNS.QueryLogFileEnabled = dc.FileEnabled
|
2021-09-30 21:17:54 +03:00
|
|
|
config.DNS.QueryLogInterval = timeutil.Duration{Duration: dc.RotationIvl}
|
2019-11-08 12:31:50 +03:00
|
|
|
config.DNS.QueryLogMemSize = dc.MemSize
|
2020-03-03 20:21:53 +03:00
|
|
|
config.DNS.AnonymizeClientIP = dc.AnonymizeClientIP
|
2019-09-27 18:58:57 +03:00
|
|
|
}
|
|
|
|
|
2022-09-23 13:23:35 +03:00
|
|
|
if Context.filters != nil {
|
|
|
|
Context.filters.WriteDiskConfig(config.DNS.DnsfilterConf)
|
|
|
|
config.Filters = config.DNS.DnsfilterConf.Filters
|
|
|
|
config.WhitelistFilters = config.DNS.DnsfilterConf.WhitelistFilters
|
|
|
|
config.UserRules = config.DNS.DnsfilterConf.UserRules
|
2019-10-09 19:51:26 +03:00
|
|
|
}
|
|
|
|
|
2021-04-07 20:16:06 +03:00
|
|
|
if s := Context.dnsServer; s != nil {
|
2019-10-30 11:52:58 +03:00
|
|
|
c := dnsforward.FilteringConfig{}
|
2021-04-07 20:16:06 +03:00
|
|
|
s.WriteDiskConfig(&c)
|
2021-05-26 17:55:19 +03:00
|
|
|
dns := &config.DNS
|
|
|
|
dns.FilteringConfig = c
|
2022-04-26 13:04:16 +03:00
|
|
|
dns.LocalPTRResolvers, config.Clients.Sources.RDNS, dns.UsePrivateRDNS = s.RDNSSettings()
|
2019-10-30 11:52:58 +03:00
|
|
|
}
|
|
|
|
|
2019-12-11 12:38:58 +03:00
|
|
|
if Context.dhcpServer != nil {
|
2022-09-13 23:45:35 +03:00
|
|
|
Context.dhcpServer.WriteDiskConfig(config.DHCP)
|
2019-11-22 14:21:08 +03:00
|
|
|
}
|
|
|
|
|
2022-04-26 13:04:16 +03:00
|
|
|
config.Clients.Persistent = Context.clients.forConfig()
|
2021-12-13 15:18:21 +03:00
|
|
|
|
2019-02-05 20:35:48 +03:00
|
|
|
configFile := config.getConfigFilename()
|
2022-08-08 15:50:54 +03:00
|
|
|
log.Debug("writing config file %q", configFile)
|
2021-04-06 20:48:36 +03:00
|
|
|
|
2022-08-08 15:50:54 +03:00
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
enc := yaml.NewEncoder(buf)
|
|
|
|
enc.SetIndent(2)
|
2021-04-06 20:48:36 +03:00
|
|
|
|
2022-08-08 15:50:54 +03:00
|
|
|
err = enc.Encode(config)
|
2018-08-30 17:25:33 +03:00
|
|
|
if err != nil {
|
2022-08-08 15:50:54 +03:00
|
|
|
return fmt.Errorf("generating config file: %w", err)
|
|
|
|
}
|
2021-04-06 20:48:36 +03:00
|
|
|
|
2022-08-08 15:50:54 +03:00
|
|
|
err = maybe.WriteFile(configFile, buf.Bytes(), 0o644)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("writing config file: %w", err)
|
2018-08-30 17:25:33 +03:00
|
|
|
}
|
2018-10-30 02:17:24 +03:00
|
|
|
|
2018-11-28 20:15:32 +03:00
|
|
|
return nil
|
|
|
|
}
|