2019-10-30 05:11:16 -07:00
|
|
|
package dnsforward
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-03-20 04:41:13 -07:00
|
|
|
"fmt"
|
2019-10-30 05:11:16 -07:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2020-03-20 04:41:13 -07:00
|
|
|
"strings"
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-09-10 07:57:09 -07:00
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
2019-10-30 05:11:16 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2021-08-09 06:03:37 -07:00
|
|
|
"github.com/AdguardTeam/golibs/netutil"
|
2021-07-29 07:40:31 -07:00
|
|
|
"github.com/AdguardTeam/golibs/stringutil"
|
2020-03-20 04:41:13 -07:00
|
|
|
"github.com/AdguardTeam/urlfilter"
|
|
|
|
"github.com/AdguardTeam/urlfilter/filterlist"
|
2019-10-30 05:11:16 -07:00
|
|
|
)
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// accessCtx controls IP and client blocking that takes place before all other
|
|
|
|
// processing. An accessCtx is safe for concurrent use.
|
2019-10-30 05:11:16 -07:00
|
|
|
type accessCtx struct {
|
2021-08-09 06:03:37 -07:00
|
|
|
allowedIPs *netutil.IPMap
|
|
|
|
blockedIPs *netutil.IPMap
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-07-29 07:40:31 -07:00
|
|
|
allowedClientIDs *stringutil.Set
|
|
|
|
blockedClientIDs *stringutil.Set
|
2021-04-20 06:26:19 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
blockedHostsEng *urlfilter.DNSEngine
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// TODO(a.garipov): Create a type for a set of IP networks.
|
2021-08-09 06:03:37 -07:00
|
|
|
// netutil.IPNetSet?
|
2021-06-29 05:53:28 -07:00
|
|
|
allowedNets []*net.IPNet
|
|
|
|
blockedNets []*net.IPNet
|
|
|
|
}
|
|
|
|
|
|
|
|
// unit is a convenient alias for struct{}
|
|
|
|
type unit = struct{}
|
|
|
|
|
|
|
|
// processAccessClients is a helper for processing a list of client strings,
|
|
|
|
// which may be an IP address, a CIDR, or a ClientID.
|
|
|
|
func processAccessClients(
|
|
|
|
clientStrs []string,
|
2021-08-09 06:03:37 -07:00
|
|
|
ips *netutil.IPMap,
|
2021-06-29 05:53:28 -07:00
|
|
|
nets *[]*net.IPNet,
|
2021-07-29 07:40:31 -07:00
|
|
|
clientIDs *stringutil.Set,
|
2021-06-29 05:53:28 -07:00
|
|
|
) (err error) {
|
|
|
|
for i, s := range clientStrs {
|
|
|
|
if ip := net.ParseIP(s); ip != nil {
|
|
|
|
ips.Set(ip, unit{})
|
|
|
|
} else if cidrIP, ipnet, cidrErr := net.ParseCIDR(s); cidrErr == nil {
|
|
|
|
ipnet.IP = cidrIP
|
|
|
|
*nets = append(*nets, ipnet)
|
|
|
|
} else {
|
|
|
|
idErr := ValidateClientID(s)
|
|
|
|
if idErr != nil {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"value %q at index %d: bad ip, cidr, or clientid",
|
|
|
|
s,
|
|
|
|
i,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
clientIDs.Add(s)
|
|
|
|
}
|
|
|
|
}
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
return nil
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// newAccessCtx creates a new accessCtx.
|
|
|
|
func newAccessCtx(allowed, blocked, blockedHosts []string) (a *accessCtx, err error) {
|
2021-04-20 06:26:19 -07:00
|
|
|
a = &accessCtx{
|
2021-08-09 06:03:37 -07:00
|
|
|
allowedIPs: netutil.NewIPMap(0),
|
|
|
|
blockedIPs: netutil.NewIPMap(0),
|
2021-06-29 05:53:28 -07:00
|
|
|
|
2021-07-29 07:40:31 -07:00
|
|
|
allowedClientIDs: stringutil.NewSet(),
|
|
|
|
blockedClientIDs: stringutil.NewSet(),
|
2021-04-20 06:26:19 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
err = processAccessClients(allowed, a.allowedIPs, &a.allowedNets, a.allowedClientIDs)
|
2019-10-30 05:11:16 -07:00
|
|
|
if err != nil {
|
2021-06-29 05:53:28 -07:00
|
|
|
return nil, fmt.Errorf("adding allowed: %w", err)
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
err = processAccessClients(blocked, a.blockedIPs, &a.blockedNets, a.blockedClientIDs)
|
2019-10-30 05:11:16 -07:00
|
|
|
if err != nil {
|
2021-06-29 05:53:28 -07:00
|
|
|
return nil, fmt.Errorf("adding blocked: %w", err)
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-04-07 10:16:06 -07:00
|
|
|
b := &strings.Builder{}
|
2021-06-29 05:53:28 -07:00
|
|
|
for _, h := range blockedHosts {
|
2021-07-29 07:40:31 -07:00
|
|
|
stringutil.WriteToBuilder(b, strings.ToLower(h), "\n")
|
2020-03-20 04:41:13 -07:00
|
|
|
}
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
lists := []filterlist.RuleList{
|
|
|
|
&filterlist.StringRuleList{
|
|
|
|
ID: int(0),
|
|
|
|
RulesText: b.String(),
|
|
|
|
IgnoreCosmetic: true,
|
|
|
|
},
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
2021-06-29 05:53:28 -07:00
|
|
|
|
|
|
|
rulesStrg, err := filterlist.NewRuleStorage(lists)
|
2020-03-20 04:41:13 -07:00
|
|
|
if err != nil {
|
2021-06-29 05:53:28 -07:00
|
|
|
return nil, fmt.Errorf("adding blocked hosts: %w", err)
|
2020-03-20 04:41:13 -07:00
|
|
|
}
|
2021-06-29 05:53:28 -07:00
|
|
|
|
|
|
|
a.blockedHostsEng = urlfilter.NewDNSEngine(rulesStrg)
|
2020-03-20 04:41:13 -07:00
|
|
|
|
2021-04-20 06:26:19 -07:00
|
|
|
return a, nil
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// allowlistMode returns true if this *accessCtx is in the allowlist mode.
|
|
|
|
func (a *accessCtx) allowlistMode() (ok bool) {
|
|
|
|
return a.allowedIPs.Len() != 0 || a.allowedClientIDs.Len() != 0 || len(a.allowedNets) != 0
|
|
|
|
}
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// isBlockedClientID returns true if the ClientID should be blocked.
|
|
|
|
func (a *accessCtx) isBlockedClientID(id string) (ok bool) {
|
|
|
|
allowlistMode := a.allowlistMode()
|
|
|
|
if id == "" {
|
|
|
|
// In allowlist mode, consider requests without client IDs
|
|
|
|
// blocked by default.
|
|
|
|
return allowlistMode
|
|
|
|
}
|
2021-04-20 06:26:19 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
if allowlistMode {
|
|
|
|
return !a.allowedClientIDs.Has(id)
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
return a.blockedClientIDs.Has(id)
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// isBlockedHost returns true if host should be blocked.
|
|
|
|
func (a *accessCtx) isBlockedHost(host string) (ok bool) {
|
|
|
|
_, ok = a.blockedHostsEng.Match(strings.ToLower(host))
|
2021-01-20 07:27:53 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
return ok
|
|
|
|
}
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
// isBlockedIP returns the status of the IP address blocking as well as the rule
|
|
|
|
// that blocked it.
|
|
|
|
func (a *accessCtx) isBlockedIP(ip net.IP) (blocked bool, rule string) {
|
|
|
|
blocked = true
|
|
|
|
ips := a.blockedIPs
|
|
|
|
ipnets := a.blockedNets
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
if a.allowlistMode() {
|
|
|
|
// Enable allowlist mode and use the allowlist sets.
|
|
|
|
blocked = false
|
|
|
|
ips = a.allowedIPs
|
|
|
|
ipnets = a.allowedNets
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
if _, ok := ips.Get(ip); ok {
|
|
|
|
return blocked, ip.String()
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
for _, ipnet := range ipnets {
|
|
|
|
if ipnet.Contains(ip) {
|
|
|
|
return blocked, ipnet.String()
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
return !blocked, ""
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type accessListJSON struct {
|
|
|
|
AllowedClients []string `json:"allowed_clients"`
|
|
|
|
DisallowedClients []string `json:"disallowed_clients"`
|
|
|
|
BlockedHosts []string `json:"blocked_hosts"`
|
|
|
|
}
|
|
|
|
|
2021-05-26 07:55:19 -07:00
|
|
|
func (s *Server) accessListJSON() (j accessListJSON) {
|
|
|
|
s.serverLock.RLock()
|
|
|
|
defer s.serverLock.RUnlock()
|
|
|
|
|
|
|
|
return accessListJSON{
|
2021-07-29 07:40:31 -07:00
|
|
|
AllowedClients: stringutil.CloneSlice(s.conf.AllowedClients),
|
|
|
|
DisallowedClients: stringutil.CloneSlice(s.conf.DisallowedClients),
|
|
|
|
BlockedHosts: stringutil.CloneSlice(s.conf.BlockedHosts),
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
2021-05-26 07:55:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleAccessList(w http.ResponseWriter, r *http.Request) {
|
|
|
|
j := s.accessListJSON()
|
2019-10-30 05:11:16 -07:00
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
err := json.NewEncoder(w).Encode(j)
|
|
|
|
if err != nil {
|
2021-06-29 05:53:28 -07:00
|
|
|
httpError(r, w, http.StatusInternalServerError, "encoding response: %s", err)
|
2019-10-30 05:11:16 -07:00
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
return
|
2019-10-30 05:11:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-10 07:57:09 -07:00
|
|
|
func isUniq(slice []string) (ok bool, uniqueMap map[string]unit) {
|
|
|
|
exists := make(map[string]unit)
|
|
|
|
for _, key := range slice {
|
|
|
|
if _, has := exists[key]; has {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
exists[key] = unit{}
|
|
|
|
}
|
|
|
|
return true, exists
|
|
|
|
}
|
|
|
|
|
|
|
|
func intersect(mapA, mapB map[string]unit) bool {
|
|
|
|
for key := range mapA {
|
|
|
|
if _, has := mapB[key]; has {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateAccessSet checks the internal accessListJSON lists. To search for
|
|
|
|
// duplicates, we cannot compare the new stringutil.Set and []string, because
|
|
|
|
// creating a set for a large array can be an unnecessary algorithmic complexity
|
|
|
|
func validateAccessSet(list accessListJSON) (err error) {
|
|
|
|
const (
|
|
|
|
errAllowedDup errors.Error = "duplicates in allowed clients"
|
|
|
|
errDisallowedDup errors.Error = "duplicates in disallowed clients"
|
|
|
|
errBlockedDup errors.Error = "duplicates in blocked hosts"
|
|
|
|
errIntersect errors.Error = "some items in allowed and " +
|
|
|
|
"disallowed lists at the same time"
|
|
|
|
)
|
|
|
|
|
|
|
|
ok, allowedClients := isUniq(list.AllowedClients)
|
|
|
|
if !ok {
|
|
|
|
return errAllowedDup
|
|
|
|
}
|
|
|
|
|
|
|
|
ok, disallowedClients := isUniq(list.DisallowedClients)
|
|
|
|
if !ok {
|
|
|
|
return errDisallowedDup
|
|
|
|
}
|
|
|
|
|
|
|
|
ok, _ = isUniq(list.BlockedHosts)
|
|
|
|
if !ok {
|
|
|
|
return errBlockedDup
|
|
|
|
}
|
|
|
|
|
|
|
|
if intersect(allowedClients, disallowedClients) {
|
|
|
|
return errIntersect
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-30 05:11:16 -07:00
|
|
|
func (s *Server) handleAccessSet(w http.ResponseWriter, r *http.Request) {
|
2021-06-29 05:53:28 -07:00
|
|
|
list := accessListJSON{}
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&list)
|
2019-10-30 05:11:16 -07:00
|
|
|
if err != nil {
|
2021-06-29 05:53:28 -07:00
|
|
|
httpError(r, w, http.StatusBadRequest, "decoding request: %s", err)
|
2019-10-30 05:11:16 -07:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-10 07:57:09 -07:00
|
|
|
err = validateAccessSet(list)
|
|
|
|
if err != nil {
|
|
|
|
httpError(r, w, http.StatusBadRequest, err.Error())
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-20 06:26:19 -07:00
|
|
|
var a *accessCtx
|
2021-06-29 05:53:28 -07:00
|
|
|
a, err = newAccessCtx(list.AllowedClients, list.DisallowedClients, list.BlockedHosts)
|
2019-10-30 05:11:16 -07:00
|
|
|
if err != nil {
|
2021-04-20 06:26:19 -07:00
|
|
|
httpError(r, w, http.StatusBadRequest, "creating access ctx: %s", err)
|
|
|
|
|
2019-10-30 05:11:16 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
defer log.Debug(
|
|
|
|
"access: updated lists: %d, %d, %d",
|
|
|
|
len(list.AllowedClients),
|
|
|
|
len(list.DisallowedClients),
|
|
|
|
len(list.BlockedHosts),
|
|
|
|
)
|
2021-05-26 07:55:19 -07:00
|
|
|
|
|
|
|
defer s.conf.ConfigModified()
|
|
|
|
|
|
|
|
s.serverLock.Lock()
|
|
|
|
defer s.serverLock.Unlock()
|
|
|
|
|
2021-06-29 05:53:28 -07:00
|
|
|
s.conf.AllowedClients = list.AllowedClients
|
|
|
|
s.conf.DisallowedClients = list.DisallowedClients
|
|
|
|
s.conf.BlockedHosts = list.BlockedHosts
|
2019-10-30 05:11:16 -07:00
|
|
|
s.access = a
|
|
|
|
}
|