dns/dns.go

98 lines
2.3 KiB
Go
Raw Normal View History

package dns
import "strconv"
2011-02-28 20:42:03 +11:00
const (
year68 = 1 << 31 // For RFC1982 (Serial Arithmetic) calculations in 32 bits.
defaultTtl = 3600 // Default internal TTL.
// DefaultMsgSize is the standard default for messages larger than 512 bytes.
DefaultMsgSize = 4096
// MinMsgSize is the minimal size of a DNS packet.
MinMsgSize = 512
// MaxMsgSize is the largest possible DNS packet.
MaxMsgSize = 65535
2011-02-28 20:42:03 +11:00
)
// Error represents a DNS error.
2013-06-20 16:25:29 +10:00
type Error struct{ err string }
2011-11-03 09:06:54 +11:00
func (e *Error) Error() string {
if e == nil {
2012-04-18 22:06:10 +10:00
return "dns: <nil>"
}
2013-06-20 16:25:29 +10:00
return "dns: " + e.err
}
2012-02-16 09:34:41 +11:00
// An RR represents a resource record.
type RR interface {
2012-02-20 04:36:59 +11:00
// Header returns the header of an resource record. The header contains
// everything up to the rdata.
2010-12-31 06:50:31 +11:00
Header() *RR_Header
2012-02-20 04:36:59 +11:00
// String returns the text representation of the resource record.
2010-12-31 06:50:31 +11:00
String() string
// copy returns a copy of the RR
copy() RR
// len returns the length (in octets) of the uncompressed RR in wire format.
len() int
// pack packs an RR into wire format.
pack([]byte, int, map[string]int, bool) (int, error)
}
2015-08-23 17:03:13 +10:00
// RR_Header is the header all DNS resource records share.
type RR_Header struct {
Name string `dns:"cdomain-name"`
2010-12-31 06:50:31 +11:00
Rrtype uint16
Class uint16
Ttl uint32
Rdlength uint16 // Length of data after header.
}
// Header returns itself. This is here to make RR_Header implements the RR interface.
2012-11-30 23:25:01 +11:00
func (h *RR_Header) Header() *RR_Header { return h }
2016-06-04 17:11:36 +10:00
// Just to implement the RR interface.
func (h *RR_Header) copy() RR { return nil }
func (h *RR_Header) String() string {
2010-12-31 06:50:31 +11:00
var s string
2010-12-31 06:50:31 +11:00
if h.Rrtype == TypeOPT {
s = ";"
// and maybe other things
}
s += sprintName(h.Name) + "\t"
2013-06-08 23:24:20 +10:00
s += strconv.FormatInt(int64(h.Ttl), 10) + "\t"
s += Class(h.Class).String() + "\t"
s += Type(h.Rrtype).String() + "\t"
2010-12-31 06:50:31 +11:00
return s
}
2011-07-31 17:53:54 +10:00
func (h *RR_Header) len() int {
l := len(h.Name) + 1
2012-01-13 09:17:34 +11:00
l += 10 // rrtype(2) + class(2) + ttl(4) + rdlength(2)
return l
}
// ToRFC3597 converts a known RR to the unknown RR representation from RFC 3597.
2013-01-31 19:52:34 +11:00
func (rr *RFC3597) ToRFC3597(r RR) error {
buf := make([]byte, r.len()*2)
off, err := PackRR(r, buf, 0, nil, false)
if err != nil {
2013-01-31 19:52:34 +11:00
return err
}
buf = buf[:off]
if int(r.Header().Rdlength) > off {
return ErrBuf
}
rfc3597, _, err := unpackRFC3597(*r.Header(), buf, off-int(r.Header().Rdlength))
if err != nil {
2013-01-31 19:52:34 +11:00
return err
}
*rr = *rfc3597.(*RFC3597)
2013-01-31 19:52:34 +11:00
return nil
}