Adguardhome/internal/querylog/http.go
Fedor Setrakov 9d1110d289 Pull request 2645: AGDNS-3951-querylog-search-criterion
Squashed commit of the following:

commit 8606668738add53456063aa8f68ded3812170df3
Merge: 9aff68363 b60af4bf3
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Wed May 13 11:45:39 2026 +0300

    Merge branch 'master' into AGDNS-3951-querylog-search-criterion

commit 9aff6836320a8313900101311adaa28ac826c53e
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Fri May 8 17:40:09 2026 +0300

    querylog: rm unicode check

commit b093974b08cf02ea42baf492690ad64c93879fa5
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Fri May 8 16:12:41 2026 +0300

    all: imp code

commit 2b2c35708ba009e2e93fdd46674311b976c1a123
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Thu May 7 16:39:20 2026 +0300

    all: imp docs, tests

commit c1d1fd8294972f66e4333c44309ca65e1a4495d7
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Wed May 6 15:16:30 2026 +0300

    all: imp docs, quick match

commit 2cb80fd6b7a7bb2e6eae359b3596f24299c4c817
Merge: 17fac082d e5c79502f
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Tue May 5 12:56:41 2026 +0300

    Merge branch 'master' into AGDNS-3951-querylog-search-criterion

commit 17fac082d98b31a3b31e915496a75b4be85102a0
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Tue May 5 12:50:51 2026 +0300

    all: imp code

commit 3d093cc9886f0ec5c1ac74fa3e7069edb925963f
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Mon May 4 17:51:45 2026 +0300

    all: add tests

commit 2a33db2182811dbeb24311a72734d9be46d155c6
Author: f.setrakov <f.setrakov@adguard.com>
Date:   Wed Apr 29 19:10:02 2026 +0300

    all: add reason criterion
2026-05-13 09:49:12 +00:00

508 lines
13 KiB
Go

package querylog
import (
"context"
"encoding/json"
"fmt"
"math"
"net"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/AdguardTeam/AdGuardHome/internal/aghalg"
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
"github.com/AdguardTeam/AdGuardHome/internal/aghnet"
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
"github.com/AdguardTeam/golibs/errors"
"github.com/AdguardTeam/golibs/logutil/slogutil"
"github.com/AdguardTeam/golibs/timeutil"
"golang.org/x/net/idna"
)
// configJSON is the JSON structure for the querylog configuration.
type configJSON struct {
// Interval is the querylog rotation interval. Use float64 here to support
// fractional numbers and not mess the API users by changing the units.
Interval float64 `json:"interval"`
// Enabled shows if the querylog is enabled. It is an aghalg.NullBool to
// be able to tell when it's set without using pointers.
Enabled aghalg.NullBool `json:"enabled"`
// AnonymizeClientIP shows if the clients' IP addresses must be anonymized.
// It is an [aghalg.NullBool] to be able to tell when it's set without using
// pointers.
AnonymizeClientIP aghalg.NullBool `json:"anonymize_client_ip"`
}
// getConfigResp is the JSON structure for the querylog configuration.
type getConfigResp struct {
// Ignored is the list of host names, which should not be written to log.
Ignored []string `json:"ignored"`
// Interval is the querylog rotation interval in milliseconds.
Interval float64 `json:"interval"`
// Enabled shows if the querylog is enabled. It is an aghalg.NullBool to
// be able to tell when it's set without using pointers.
Enabled aghalg.NullBool `json:"enabled"`
IgnoredEnabled aghalg.NullBool `json:"ignored_enabled"`
// AnonymizeClientIP shows if the clients' IP addresses must be anonymized.
// It is an aghalg.NullBool to be able to tell when it's set without using
// pointers.
//
// TODO(a.garipov): Consider using separate setting for statistics.
AnonymizeClientIP aghalg.NullBool `json:"anonymize_client_ip"`
}
// Register web handlers
func (l *queryLog) initWeb() {
l.conf.HTTPReg.Register(http.MethodGet, "/control/querylog", l.handleQueryLog)
l.conf.HTTPReg.Register(http.MethodPost, "/control/querylog_clear", l.handleQueryLogClear)
l.conf.HTTPReg.Register(http.MethodGet, "/control/querylog/config", l.handleGetQueryLogConfig)
l.conf.HTTPReg.Register(
http.MethodPut,
"/control/querylog/config/update",
l.handlePutQueryLogConfig,
)
// Deprecated handlers.
l.conf.HTTPReg.Register(http.MethodGet, "/control/querylog_info", l.handleQueryLogInfo)
l.conf.HTTPReg.Register(http.MethodPost, "/control/querylog_config", l.handleQueryLogConfig)
}
// handleQueryLog is the handler for the GET /control/querylog HTTP API.
func (l *queryLog) handleQueryLog(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
params, err := l.parseSearchParams(ctx, r)
if err != nil {
aghhttp.ErrorAndLog(ctx, l.logger, r, w, http.StatusBadRequest, "parsing params: %s", err)
return
}
var entries []*logEntry
var oldest time.Time
func() {
l.confMu.RLock()
defer l.confMu.RUnlock()
entries, oldest = l.search(ctx, params)
}()
resp := l.entriesToJSON(ctx, entries, oldest, l.anonymizer.Load())
aghhttp.WriteJSONResponseOK(ctx, l.logger, w, r, resp)
}
// handleQueryLogClear is the handler for the POST /control/querylog/clear HTTP
// API.
func (l *queryLog) handleQueryLogClear(_ http.ResponseWriter, r *http.Request) {
l.clear(r.Context())
}
// handleQueryLogInfo is the handler for the GET /control/querylog_info HTTP
// API.
//
// Deprecated: Remove it when migration to the new API is over.
func (l *queryLog) handleQueryLogInfo(w http.ResponseWriter, r *http.Request) {
l.confMu.RLock()
defer l.confMu.RUnlock()
ivl := l.conf.RotationIvl
if !checkInterval(ivl) {
// NOTE: If interval is custom we set it to 90 days for compatibility
// with old API.
ivl = timeutil.Day * 90
}
aghhttp.WriteJSONResponseOK(r.Context(), l.logger, w, r, configJSON{
Enabled: aghalg.BoolToNullBool(l.conf.Enabled),
Interval: ivl.Hours() / 24,
AnonymizeClientIP: aghalg.BoolToNullBool(l.conf.AnonymizeClientIP),
})
}
// handleGetQueryLogConfig is the handler for the GET /control/querylog/config
// HTTP API.
func (l *queryLog) handleGetQueryLogConfig(w http.ResponseWriter, r *http.Request) {
var resp *getConfigResp
func() {
l.confMu.RLock()
defer l.confMu.RUnlock()
resp = &getConfigResp{
Interval: float64(l.conf.RotationIvl.Milliseconds()),
Enabled: aghalg.BoolToNullBool(l.conf.Enabled),
AnonymizeClientIP: aghalg.BoolToNullBool(l.conf.AnonymizeClientIP),
Ignored: l.conf.Ignored.Values(),
IgnoredEnabled: aghalg.BoolToNullBool(l.conf.Ignored.IsEnabled()),
}
}()
aghhttp.WriteJSONResponseOK(r.Context(), l.logger, w, r, resp)
}
// AnonymizeIP masks ip to anonymize the client if the ip is a valid one.
func AnonymizeIP(ip net.IP) {
// zeroes is a slice of zero bytes from which the IP address tail is copied.
// Using constant string as source of copying is more efficient than byte
// slice, see https://github.com/golang/go/issues/49997.
const zeroes = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
if ip4 := ip.To4(); ip4 != nil {
copy(ip4[net.IPv4len-2:net.IPv4len], zeroes)
} else if len(ip) == net.IPv6len {
copy(ip[net.IPv6len-10:net.IPv6len], zeroes)
}
}
// handleQueryLogConfig is the handler for the POST /control/querylog_config
// HTTP API.
//
// Deprecated: Remove it when migration to the new API is over.
func (l *queryLog) handleQueryLogConfig(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
// Set NaN as initial value to be able to know if it changed later by
// comparing it to NaN.
newConf := &configJSON{
Interval: math.NaN(),
}
err := json.NewDecoder(r.Body).Decode(newConf)
if err != nil {
aghhttp.ErrorAndLog(ctx, l.logger, r, w, http.StatusBadRequest, "%s", err)
return
}
ivl := time.Duration(float64(timeutil.Day) * newConf.Interval)
hasIvl := !math.IsNaN(newConf.Interval)
if hasIvl && !checkInterval(ivl) {
aghhttp.ErrorAndLog(ctx, l.logger, r, w, http.StatusBadRequest, "unsupported interval")
return
}
defer l.conf.ConfigModifier.Apply(ctx)
l.confMu.Lock()
defer l.confMu.Unlock()
conf := *l.conf
if newConf.Enabled != aghalg.NBNull {
conf.Enabled = newConf.Enabled == aghalg.NBTrue
}
if hasIvl {
conf.RotationIvl = ivl
}
if newConf.AnonymizeClientIP != aghalg.NBNull {
conf.AnonymizeClientIP = newConf.AnonymizeClientIP == aghalg.NBTrue
if conf.AnonymizeClientIP {
l.anonymizer.Store(AnonymizeIP)
} else {
l.anonymizer.Store(nil)
}
}
l.conf = &conf
}
// handlePutQueryLogConfig is the handler for the PUT
// /control/querylog/config/update HTTP API.
func (l *queryLog) handlePutQueryLogConfig(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
newConf, err := readConfigResp(r)
if err != nil {
code := http.StatusBadRequest
if errors.Is(err, ErrNullConfEnabled) || errors.Is(err, ErrNullAnonymizeIP) {
code = http.StatusUnprocessableEntity
}
aghhttp.ErrorAndLog(ctx, l.logger, r, w, code, "%s", err)
return
}
var ignoredEnabled bool
if newConf.IgnoredEnabled == aghalg.NBNull {
ignoredEnabled = len(newConf.Ignored) > 0
} else {
ignoredEnabled = newConf.IgnoredEnabled == aghalg.NBTrue
}
engine, err := aghnet.NewIgnoreEngine(newConf.Ignored, ignoredEnabled)
if err != nil {
aghhttp.ErrorAndLog(
ctx,
l.logger,
r,
w,
http.StatusUnprocessableEntity,
"ignored: %s",
err,
)
return
}
ivl := time.Duration(newConf.Interval) * time.Millisecond
err = validateIvl(ivl)
if err != nil {
aghhttp.ErrorAndLog(
ctx,
l.logger,
r,
w,
http.StatusUnprocessableEntity,
"unsupported interval: %s",
err,
)
return
}
l.applyQueryLogConfig(ctx, engine, ivl, newConf)
}
const (
// ErrNullConfEnabled is returned when [getConfigResp.Enabled] is not set.
ErrNullConfEnabled errors.Error = "enabled is null"
// ErrNullAnonymizeIP is returned when [getConfigResp.AnonymizeClientIP] is
// not set.
ErrNullAnonymizeIP errors.Error = "anonymize_client_ip is null"
)
// readConfigResp decodes and minimally validates the request body. r must not
// be nil.
func readConfigResp(r *http.Request) (conf *getConfigResp, err error) {
conf = &getConfigResp{}
err = json.NewDecoder(r.Body).Decode(conf)
if err != nil {
// Don't wrap the error, because it's informative enough as is.
return nil, err
}
if conf.Enabled == aghalg.NBNull {
return nil, ErrNullConfEnabled
}
if conf.AnonymizeClientIP == aghalg.NBNull {
return nil, ErrNullAnonymizeIP
}
return conf, nil
}
// applyQueryLogConfig applies the validated config to queryLog. engine must
// not be nil. ivl must pass [validateIvl], and newConf must be produced by
// [readConfigResp].
func (l *queryLog) applyQueryLogConfig(
ctx context.Context,
engine *aghnet.IgnoreEngine,
ivl time.Duration,
newConf *getConfigResp,
) {
defer l.conf.ConfigModifier.Apply(ctx)
l.confMu.Lock()
defer l.confMu.Unlock()
conf := *l.conf
conf.Ignored = engine
conf.RotationIvl = ivl
conf.Enabled = newConf.Enabled == aghalg.NBTrue
conf.AnonymizeClientIP = newConf.AnonymizeClientIP == aghalg.NBTrue
if conf.AnonymizeClientIP {
l.anonymizer.Store(AnonymizeIP)
} else {
l.anonymizer.Store(nil)
}
l.conf = &conf
}
// "value" -> value, return TRUE
func getDoubleQuotesEnclosedValue(s *string) bool {
t := *s
if len(t) >= 2 && t[0] == '"' && t[len(t)-1] == '"' {
*s = t[1 : len(t)-1]
return true
}
return false
}
// parseSearchCriterion parses a search criterion from the query parameter.
func (l *queryLog) parseSearchCriterion(
ctx context.Context,
q url.Values,
name string,
ct criterionType,
) (ok bool, sc searchCriterion, err error) {
val := q.Get(name)
if val == "" {
return false, sc, nil
}
strict := getDoubleQuotesEnclosedValue(&val)
var asciiVal string
var values []string
switch ct {
case ctTerm:
// Decode lowercased value from punycode to make EqualFold and
// friends work properly with IDNAs.
//
// TODO(e.burkov): Make it work with parts of IDNAs somehow.
loweredVal := strings.ToLower(val)
if asciiVal, err = idna.ToASCII(loweredVal); err != nil {
l.logger.DebugContext(ctx, "converting to ascii", "value", val, slogutil.KeyError, err)
} else if asciiVal == loweredVal {
// Purge asciiVal to prevent checking the same value
// twice.
asciiVal = ""
}
case ctFilteringStatus:
if !filteringStatusValues.Has(val) {
return false, sc, fmt.Errorf("invalid value %s", val)
}
case ctReason:
values, err = parseReason(q, name)
if err != nil {
// Don't wrap the error, because it's informative enough as is.
return false, sc, err
}
default:
return false, sc, fmt.Errorf(
"invalid criterion type %v: should be one of %v",
ct,
[]criterionType{ctTerm, ctFilteringStatus, ctReason},
)
}
sc = searchCriterion{
values: values,
criterionType: ct,
value: val,
asciiVal: asciiVal,
strict: strict,
}
return true, sc, nil
}
// parseReason parses reason search criterion from URL parameters.
func parseReason(q url.Values, name string) (values []string, err error) {
var errs []error
for _, val := range q[name] {
_, ok := filtering.ReasonByName[val]
if !ok {
errs = append(errs, fmt.Errorf("reason: %w: %q", errors.ErrBadEnumValue, val))
continue
}
values = append(values, val)
}
if len(errs) > 0 {
return nil, errors.Join(errs...)
}
return values, nil
}
// parseSearchParams parses search parameters from the HTTP request's query
// string. r must not be nil.
func (l *queryLog) parseSearchParams(
ctx context.Context,
r *http.Request,
) (p *searchParams, err error) {
p = newSearchParams()
q := r.URL.Query()
if q.Has("reason") && q.Has("response_status") {
return nil,
errors.Error(`"reason" and "response_status" criteria cannot be used together`)
}
olderThan := q.Get("older_than")
if len(olderThan) != 0 {
p.olderThan, err = time.Parse(time.RFC3339Nano, olderThan)
if err != nil {
return nil, err
}
}
var limit64 int64
if limit64, err = strconv.ParseInt(q.Get("limit"), 10, 64); err == nil {
p.limit = int(limit64)
}
var offset64 int64
if offset64, err = strconv.ParseInt(q.Get("offset"), 10, 64); err == nil {
p.offset = int(offset64)
// If we don't use "olderThan" and use offset/limit instead, we should change the default behavior
// and scan all log records until we found enough log entries
p.maxFileScanEntries = 0
}
err = l.parseSearchCriterions(ctx, q, p)
if err != nil {
// Don't wrap the error, because it's informative enough as is.
return nil, err
}
return p, nil
}
// parseSearchCriterions parses search criterions from the URL query parameter
// values. p must not be nil.
func (l *queryLog) parseSearchCriterions(
ctx context.Context,
q url.Values,
p *searchParams,
) (err error) {
for _, v := range []struct {
urlField string
ct criterionType
}{{
urlField: "search",
ct: ctTerm,
}, {
urlField: "response_status",
ct: ctFilteringStatus,
}, {
urlField: "reason",
ct: ctReason,
}} {
var ok bool
var c searchCriterion
ok, c, err = l.parseSearchCriterion(ctx, q, v.urlField, v.ct)
if err != nil {
// Don't wrap the error, because it's informative enough as is.
return err
}
if ok {
p.searchCriteria = append(p.searchCriteria, c)
}
}
return nil
}