Add missing test file and fix notify
We should not check the port of the request, we *should* actually normalize it to port 53 - as that will probably be the address of the server. Still need to double check if this will work if the axfr should actually be done from a different port. That will come later, this is good enough for now.
This commit is contained in:
parent
e4c72719bf
commit
09207867e4
3 changed files with 56 additions and 3 deletions
|
@ -19,7 +19,7 @@ func (z *Zone) isNotify(state middleware.State) bool {
|
|||
if len(z.TransferFrom) == 0 {
|
||||
return false
|
||||
}
|
||||
remote := state.RemoteAddr()
|
||||
remote := middleware.Addr(state.IP()).Normalize()
|
||||
for _, from := range z.TransferFrom {
|
||||
if from == remote {
|
||||
return true
|
||||
|
|
|
@ -138,11 +138,11 @@ func TestIsNotify(t *testing.T) {
|
|||
// need to set opcode
|
||||
state.Req.Opcode = dns.OpcodeNotify
|
||||
|
||||
z.TransferFrom = []string{"10.240.0.1:40212"} // IP from from testing/responseWriter
|
||||
z.TransferFrom = []string{"10.240.0.1:53"} // IP from from testing/responseWriter
|
||||
if !z.isNotify(state) {
|
||||
t.Fatal("should have been valid notify")
|
||||
}
|
||||
z.TransferFrom = []string{"10.240.0.2:40212"}
|
||||
z.TransferFrom = []string{"10.240.0.2:53"}
|
||||
if z.isNotify(state) {
|
||||
t.Fatal("should have been invalid notify")
|
||||
}
|
||||
|
|
53
middleware/testing/server.go
Normal file
53
middleware/testing/server.go
Normal file
|
@ -0,0 +1,53 @@
|
|||
package testing
|
||||
|
||||
import (
|
||||
"net"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/miekg/dns"
|
||||
)
|
||||
|
||||
func TCPServer(laddr string) (*dns.Server, string, error) {
|
||||
l, err := net.Listen("tcp", laddr)
|
||||
if err != nil {
|
||||
return nil, "", err
|
||||
}
|
||||
|
||||
server := &dns.Server{Listener: l, ReadTimeout: time.Hour, WriteTimeout: time.Hour}
|
||||
|
||||
waitLock := sync.Mutex{}
|
||||
waitLock.Lock()
|
||||
server.NotifyStartedFunc = waitLock.Unlock
|
||||
|
||||
go func() {
|
||||
server.ActivateAndServe()
|
||||
l.Close()
|
||||
}()
|
||||
|
||||
waitLock.Lock()
|
||||
return server, l.Addr().String(), nil
|
||||
}
|
||||
|
||||
func UDPServer(laddr string) (*dns.Server, string, chan bool, error) {
|
||||
pc, err := net.ListenPacket("udp", laddr)
|
||||
if err != nil {
|
||||
return nil, "", nil, err
|
||||
}
|
||||
server := &dns.Server{PacketConn: pc, ReadTimeout: time.Hour, WriteTimeout: time.Hour}
|
||||
|
||||
waitLock := sync.Mutex{}
|
||||
waitLock.Lock()
|
||||
server.NotifyStartedFunc = waitLock.Unlock
|
||||
|
||||
stop := make(chan bool)
|
||||
|
||||
go func() {
|
||||
server.ActivateAndServe()
|
||||
close(stop)
|
||||
pc.Close()
|
||||
}()
|
||||
|
||||
waitLock.Lock()
|
||||
return server, pc.LocalAddr().String(), stop, nil
|
||||
}
|
Loading…
Add table
Reference in a new issue