feat: refactor dns implementation in measurexlite (#857)
* refactor: remove query-based mapping and introducing resolver wrapper * refactor dnsping to adapt to measurexlite * dnsping: extra comments * Apply suggestions from code review * Update internal/measurexlite/dns_test.go See https://github.com/ooni/probe/issues/2208 Co-authored-by: decfox <decfox@github.com> Co-authored-by: Simone Basso <bassosimone@gmail.com>
This commit is contained in:
parent
576b52b1e3
commit
fc51590a67
5 changed files with 172 additions and 220 deletions
|
|
@ -7,7 +7,6 @@ package measurexlite
|
|||
import (
|
||||
"time"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
"github.com/ooni/probe-cli/v3/internal/model"
|
||||
"github.com/ooni/probe-cli/v3/internal/netxlite"
|
||||
)
|
||||
|
|
@ -39,9 +38,13 @@ type Trace struct {
|
|||
// this channel manually, ensure it has some buffer.
|
||||
NetworkEvent chan *model.ArchivalNetworkEvent
|
||||
|
||||
// NewParallelResolverFn is OPTIONAL and can be used to overide
|
||||
// calls to the netxlite.NewParallelResolver factory.
|
||||
NewParallelResolverFn func() model.Resolver
|
||||
// NewParallelUDPResolverFn is OPTIONAL and can be used to overide
|
||||
// calls to the netxlite.NewParallelUDPResolver factory.
|
||||
NewParallelUDPResolverFn func(logger model.Logger, dialer model.Dialer, address string) model.Resolver
|
||||
|
||||
// NewParallelDNSOverHTTPSResolverFn is OPTIONAL and can be used to overide
|
||||
// calls to the netxlite.NewParallelDNSOverHTTPSUDPResolver factory.
|
||||
NewParallelDNSOverHTTPSResolverFn func(logger model.Logger, URL string) model.Resolver
|
||||
|
||||
// NewDialerWithoutResolverFn is OPTIONAL and can be used to override
|
||||
// calls to the netxlite.NewDialerWithoutResolver factory.
|
||||
|
|
@ -51,13 +54,9 @@ type Trace struct {
|
|||
// calls to the netxlite.NewTLSHandshakerStdlib factory.
|
||||
NewTLSHandshakerStdlibFn func(dl model.DebugLogger) model.TLSHandshaker
|
||||
|
||||
// DNSLookup is MANDATORY and buffers DNSLookup results based on the
|
||||
// query type. When we create this map using NewTrace, we will create
|
||||
// an entry for each dns.Type in DNSQueryTypes. If you create this channel
|
||||
// manually, you probably want to to the same (and most likely you also
|
||||
// want to create buffered channels). Note that the code will print a
|
||||
// warning and otherwise ignore all the query types not included in this map.
|
||||
DNSLookup map[uint16]chan *model.ArchivalDNSLookupResult
|
||||
// DNSLookup is MANDATORY and buffers DNS Lookup observations. If you create
|
||||
// this channel manually, ensure it has some buffer.
|
||||
DNSLookup chan *model.ArchivalDNSLookupResult
|
||||
|
||||
// TCPConnect is MANDATORY and buffers TCP connect observations. If you create
|
||||
// this channel manually, ensure it has some buffer.
|
||||
|
|
@ -93,25 +92,6 @@ const (
|
|||
TLSHandshakeBufferSize = 8
|
||||
)
|
||||
|
||||
// DNSQueryTypes contains the list of DNS query types for which
|
||||
// NewTrace create entries in Trace.DNSLookup.
|
||||
var DNSQueryTypes = []uint16{
|
||||
dns.TypeANY,
|
||||
dns.TypeA,
|
||||
dns.TypeAAAA,
|
||||
dns.TypeCNAME,
|
||||
dns.TypeNS,
|
||||
}
|
||||
|
||||
// newDefaultDNSLookupMap is a convenience factory for creating Trace.DNSLookup
|
||||
func newDefaultDNSLookupMap() map[uint16]chan *model.ArchivalDNSLookupResult {
|
||||
out := make(map[uint16]chan *model.ArchivalDNSLookupResult)
|
||||
for _, qtype := range DNSQueryTypes {
|
||||
out[qtype] = make(chan *model.ArchivalDNSLookupResult, DNSLookupBufferSize)
|
||||
}
|
||||
return out
|
||||
}
|
||||
|
||||
// NewTrace creates a new instance of Trace using default settings.
|
||||
//
|
||||
// We create buffered channels using as buffer sizes the constants that
|
||||
|
|
@ -132,7 +112,10 @@ func NewTrace(index int64, zeroTime time.Time) *Trace {
|
|||
),
|
||||
NewDialerWithoutResolverFn: nil, // use default
|
||||
NewTLSHandshakerStdlibFn: nil, // use default
|
||||
DNSLookup: newDefaultDNSLookupMap(),
|
||||
DNSLookup: make(
|
||||
chan *model.ArchivalDNSLookupResult,
|
||||
DNSLookupBufferSize,
|
||||
),
|
||||
TCPConnect: make(
|
||||
chan *model.ArchivalTCPConnectResult,
|
||||
TCPConnectBufferSize,
|
||||
|
|
@ -146,6 +129,24 @@ func NewTrace(index int64, zeroTime time.Time) *Trace {
|
|||
}
|
||||
}
|
||||
|
||||
// newParallelUDPResolver indirectly calls the passed netxlite.NewParallerUDPResolver
|
||||
// thus allowing us to mock this function for testing
|
||||
func (tx *Trace) newParallelUDPResolver(logger model.Logger, dialer model.Dialer, address string) model.Resolver {
|
||||
if tx.NewParallelUDPResolverFn != nil {
|
||||
return tx.NewParallelUDPResolverFn(logger, dialer, address)
|
||||
}
|
||||
return netxlite.NewParallelUDPResolver(logger, dialer, address)
|
||||
}
|
||||
|
||||
// newParallelDNSOverHTTPSResolver indirectly calls the passed netxlite.NewParallerDNSOverHTTPSResolver
|
||||
// thus allowing us to mock this function for testing
|
||||
func (tx *Trace) newParallelDNSOverHTTPSResolver(logger model.Logger, URL string) model.Resolver {
|
||||
if tx.NewParallelDNSOverHTTPSResolverFn != nil {
|
||||
return tx.NewParallelDNSOverHTTPSResolverFn(logger, URL)
|
||||
}
|
||||
return netxlite.NewParallelDNSOverHTTPSResolver(logger, URL)
|
||||
}
|
||||
|
||||
// newDialerWithoutResolver indirectly calls netxlite.NewDialerWithoutResolver
|
||||
// thus allowing us to mock this func for testing.
|
||||
func (tx *Trace) newDialerWithoutResolver(dl model.DebugLogger) model.Dialer {
|
||||
|
|
@ -155,15 +156,6 @@ func (tx *Trace) newDialerWithoutResolver(dl model.DebugLogger) model.Dialer {
|
|||
return netxlite.NewDialerWithoutResolver(dl)
|
||||
}
|
||||
|
||||
// newParallelResolver indirectly calls the passed netxlite.NewParallerResolver
|
||||
// thus allowing us to mock this function for testing
|
||||
func (tx *Trace) newParallelResolver(newResolver func() model.Resolver) model.Resolver {
|
||||
if tx.NewParallelResolverFn != nil {
|
||||
return tx.NewParallelResolverFn()
|
||||
}
|
||||
return newResolver()
|
||||
}
|
||||
|
||||
// newTLSHandshakerStdlib indirectly calls netxlite.NewTLSHandshakerStdlib
|
||||
// thus allowing us to mock this func for testing.
|
||||
func (tx *Trace) newTLSHandshakerStdlib(dl model.DebugLogger) model.TLSHandshaker {
|
||||
|
|
|
|||
Loading…
Reference in a new issue