feat: add dns.ipset_file setting

This commit is contained in:
hellodword 2022-09-09 19:51:10 +08:00
parent c8ace868d4
commit d4afd60b08
3 changed files with 30 additions and 1 deletions

View File

@ -31,6 +31,12 @@ and this project adheres to
See also the [v0.107.13 GitHub milestone][ms-v0.107.13]. See also the [v0.107.13 GitHub milestone][ms-v0.107.13].
[ms-v0.107.13]: https://github.com/AdguardTeam/AdGuardHome/milestone/49?closed=1 [ms-v0.107.13]: https://github.com/AdguardTeam/AdGuardHome/milestone/49?closed=1
### Added
- The `dns.ipset_file` property in the configuration file now allows you to
load the ipset list from a separate file instead of setting all upstreams
in AdGuard Home settings. ([#4686]).
--> -->

View File

@ -131,6 +131,10 @@ type FilteringConfig struct {
// DOMAIN[,DOMAIN].../IPSET_NAME // DOMAIN[,DOMAIN].../IPSET_NAME
// //
IpsetList []string `yaml:"ipset"` IpsetList []string `yaml:"ipset"`
// IpsetListFileName, if set, points to the file with ipset configuration.
// The format is the same as in IpsetList.
IpsetListFileName string `yaml:"ipset_file"`
} }
// TLSConfig is the TLS configuration for HTTPS, DNS-over-HTTPS, and DNS-over-TLS // TLSConfig is the TLS configuration for HTTPS, DNS-over-HTTPS, and DNS-over-TLS
@ -501,3 +505,22 @@ func (s *Server) onGetCertificate(ch *tls.ClientHelloInfo) (*tls.Certificate, er
} }
return &s.conf.cert, nil return &s.conf.cert, nil
} }
// prepareIpsetListSettings - prepares ipset list settings
func (s *Server) prepareIpsetListSettings() error {
var ipsets []string
if s.conf.IpsetListFileName != "" {
data, err := os.ReadFile(s.conf.IpsetListFileName)
if err != nil {
return err
}
ipsets = stringutil.SplitTrimmed(string(data), "\n")
log.Debug("dns: using %d ipset list from file %s", len(ipsets), s.conf.IpsetListFileName)
} else {
ipsets = s.conf.IpsetList
}
return s.ipset.init(ipsets)
}

View File

@ -446,7 +446,7 @@ func (s *Server) Prepare(conf *ServerConfig) (err error) {
s.initDefaultSettings() s.initDefaultSettings()
err = s.ipset.init(s.conf.IpsetList) err = s.prepareIpsetListSettings()
if err != nil { if err != nil {
// Don't wrap the error, because it's informative enough as is. // Don't wrap the error, because it's informative enough as is.
return err return err