| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | package middleware
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"net"
 | 
					
						
							|  |  |  | 	"net/http"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | // This file contains the state nd functions available for use in the templates.
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | // State contains some connection state and is useful in middleware.
 | 
					
						
							|  |  |  | type State struct {
 | 
					
						
							|  |  |  | 	Root http.FileSystem // TODO(miek): needed?
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	Req  *dns.Msg
 | 
					
						
							|  |  |  | 	W    dns.ResponseWriter
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Now returns the current timestamp in the specified format.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Now(format string) string {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	return time.Now().Format(format)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NowDate returns the current date/time that can be used
 | 
					
						
							|  |  |  | // in other time functions.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) NowDate() time.Time {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	return time.Now()
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Header gets the value of a header.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Header() *dns.RR_Header {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	// TODO(miek)
 | 
					
						
							|  |  |  | 	return nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // IP gets the (remote) IP address of the client making the request.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) IP() string {
 | 
					
						
							|  |  |  | 	ip, _, err := net.SplitHostPort(s.W.RemoteAddr().String())
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	if err != nil {
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 		return s.W.RemoteAddr().String()
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	return ip
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Post gets the (remote) Port of the client making the request.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Port() (string, error) {
 | 
					
						
							|  |  |  | 	_, port, err := net.SplitHostPort(s.W.RemoteAddr().String())
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return "0", err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return port, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Proto gets the protocol used as the transport. This
 | 
					
						
							|  |  |  | // will be udp or tcp.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Proto() string {
 | 
					
						
							|  |  |  | 	if _, ok := s.W.RemoteAddr().(*net.UDPAddr); ok {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 		return "udp"
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 	if _, ok := s.W.RemoteAddr().(*net.TCPAddr); ok {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 		return "tcp"
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return "udp"
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Family returns the family of the transport.
 | 
					
						
							|  |  |  | // 1 for IPv4 and 2 for IPv6.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Family() int {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	var a net.IP
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 	ip := s.W.RemoteAddr()
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	if i, ok := ip.(*net.UDPAddr); ok {
 | 
					
						
							|  |  |  | 		a = i.IP
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if i, ok := ip.(*net.TCPAddr); ok {
 | 
					
						
							|  |  |  | 		a = i.IP
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if a.To4() != nil {
 | 
					
						
							|  |  |  | 		return 1
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return 2
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-20 17:44:58 +00:00
										 |  |  | // Do returns if the request has the DO (DNSSEC OK) bit set.
 | 
					
						
							|  |  |  | func (s State) Do() bool {
 | 
					
						
							|  |  |  | 	if o := s.Req.IsEdns0(); o != nil {
 | 
					
						
							|  |  |  | 		return o.Do()
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return false
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // UDPSize returns if UDP buffer size advertised in the requests OPT record.
 | 
					
						
							|  |  |  | // Or when the request was over TCP, we return the maximum allowed size of 64K.
 | 
					
						
							|  |  |  | func (s State) Size() int {
 | 
					
						
							|  |  |  | 	if s.Proto() == "tcp" {
 | 
					
						
							|  |  |  | 		return dns.MaxMsgSize
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	if o := s.Req.IsEdns0(); o != nil {
 | 
					
						
							|  |  |  | 		s := o.UDPSize()
 | 
					
						
							|  |  |  | 		if s < dns.MinMsgSize {
 | 
					
						
							|  |  |  | 			s = dns.MinMsgSize
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		return int(s)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return dns.MinMsgSize
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | // Type returns the type of the question as a string.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Type() string {
 | 
					
						
							|  |  |  | 	return dns.Type(s.Req.Question[0].Qtype).String()
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // QType returns the type of the question as a uint16.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) QType() uint16 {
 | 
					
						
							|  |  |  | 	return s.Req.Question[0].Qtype
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Name returns the name of the question in the request. Note
 | 
					
						
							|  |  |  | // this name will always have a closing dot and will be lower cased.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Name() string {
 | 
					
						
							|  |  |  | 	return strings.ToLower(dns.Name(s.Req.Question[0].Name).String())
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // QName returns the name of the question in the request.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) QName() string {
 | 
					
						
							|  |  |  | 	return dns.Name(s.Req.Question[0].Name).String()
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Class returns the class of the question in the request.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) Class() string {
 | 
					
						
							|  |  |  | 	return dns.Class(s.Req.Question[0].Qclass).String()
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // QClass returns the class of the question in the request.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) QClass() uint16 {
 | 
					
						
							|  |  |  | 	return s.Req.Question[0].Qclass
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrorMessage returns an error message suitable for sending
 | 
					
						
							|  |  |  | // back to the client.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) ErrorMessage(rcode int) *dns.Msg {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	m := new(dns.Msg)
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 	m.SetRcode(s.Req, rcode)
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	return m
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // AnswerMessage returns an error message suitable for sending
 | 
					
						
							|  |  |  | // back to the client.
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | func (s State) AnswerMessage() *dns.Msg {
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	m := new(dns.Msg)
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:18:57 +00:00
										 |  |  | 	m.SetReply(s.Req)
 | 
					
						
							| 
									
										
										
										
											2016-03-18 20:57:35 +00:00
										 |  |  | 	return m
 | 
					
						
							|  |  |  | }
 |