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"
|
|
|
|
)
|
|
|
|
|
2019-09-27 08:58:57 -07:00
|
|
|
// DiskConfig - configuration settings that are stored on disk
|
|
|
|
type DiskConfig struct {
|
|
|
|
Enabled bool
|
|
|
|
Interval uint32
|
2019-11-08 02:31:50 -07:00
|
|
|
MemSize uint32
|
2019-09-27 08:58:57 -07:00
|
|
|
}
|
|
|
|
|
2019-08-26 01:54:38 -07:00
|
|
|
// QueryLog - main interface
|
|
|
|
type QueryLog interface {
|
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
|
|
|
|
WriteDiskConfig(dc *DiskConfig)
|
2019-08-26 01:54:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Config - configuration object
|
|
|
|
type Config struct {
|
2019-09-27 08:58:57 -07:00
|
|
|
Enabled bool
|
2019-08-26 01:54:38 -07:00
|
|
|
BaseDir string // directory where log file is stored
|
2019-09-27 08:58:57 -07:00
|
|
|
Interval uint32 // interval to rotate logs (in days)
|
2019-11-08 02:31:50 -07:00
|
|
|
MemSize uint32 // number of entries kept in memory before they are flushed to disk
|
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)
|
|
|
|
}
|