2019-08-26 01:54:38 -07:00
|
|
|
package querylog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2019-09-27 08:58:57 -07:00
|
|
|
"net/http"
|
2019-08-26 01:54:38 -07:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsfilter"
|
|
|
|
"github.com/miekg/dns"
|
|
|
|
)
|
|
|
|
|
|
|
|
// QueryLog - main interface
|
|
|
|
type QueryLog interface {
|
2020-01-16 04:25:40 -07:00
|
|
|
Start()
|
|
|
|
|
2019-09-04 04:12:00 -07:00
|
|
|
// Close query log object
|
2019-08-26 01:54:38 -07:00
|
|
|
Close()
|
|
|
|
|
2019-09-04 04:12:00 -07:00
|
|
|
// Add a log entry
|
2019-11-21 06:13:19 -07:00
|
|
|
Add(params AddParams)
|
2019-09-04 04:12:00 -07:00
|
|
|
|
2019-09-27 08:58:57 -07:00
|
|
|
// WriteDiskConfig - write configuration
|
2020-05-28 05:29:36 -07:00
|
|
|
WriteDiskConfig(c *Config)
|
2019-08-26 01:54:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Config - configuration object
|
|
|
|
type Config struct {
|
2020-05-28 05:29:36 -07:00
|
|
|
Enabled bool // enable the module
|
|
|
|
FileEnabled bool // write logs to file
|
2020-03-03 10:21:53 -07:00
|
|
|
BaseDir string // directory where log file is stored
|
|
|
|
Interval uint32 // interval to rotate logs (in days)
|
|
|
|
MemSize uint32 // number of entries kept in memory before they are flushed to disk
|
|
|
|
AnonymizeClientIP bool // anonymize clients' IP addresses
|
2019-09-27 08:58:57 -07:00
|
|
|
|
|
|
|
// Called when the configuration is changed by HTTP request
|
|
|
|
ConfigModified func()
|
|
|
|
|
|
|
|
// Register an HTTP handler
|
|
|
|
HTTPRegister func(string, string, func(http.ResponseWriter, *http.Request))
|
2019-08-26 01:54:38 -07:00
|
|
|
}
|
|
|
|
|
2019-11-21 06:13:19 -07:00
|
|
|
// AddParams - parameters for Add()
|
|
|
|
type AddParams struct {
|
|
|
|
Question *dns.Msg
|
|
|
|
Answer *dns.Msg // The response we sent to the client (optional)
|
|
|
|
OrigAnswer *dns.Msg // The response from an upstream server (optional)
|
|
|
|
Result *dnsfilter.Result // Filtering result (optional)
|
|
|
|
Elapsed time.Duration // Time spent for processing the request
|
|
|
|
ClientIP net.IP
|
|
|
|
Upstream string
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:12:00 -07:00
|
|
|
// New - create a new instance of the query log
|
2019-08-26 01:54:38 -07:00
|
|
|
func New(conf Config) QueryLog {
|
|
|
|
return newQueryLog(conf)
|
|
|
|
}
|