dns/dns.go

205 lines
5.4 KiB
Go
Raw Normal View History

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2012-02-12 21:17:52 +11:00
// Extended and bugfixes by Miek Gieben. Copyright 2010-2012.
2011-09-12 04:47:25 +10:00
// DOMAIN NAME SYSTEM
//
// Package dns implements a full featured interface to the Domain Name System.
2012-05-02 16:04:33 +10:00
// Server- and client-side programming is supported.
2012-02-12 21:17:52 +11:00
// The package allows complete control over what is send out to the DNS. The package
2012-02-20 08:38:13 +11:00
// API follows the less-is-more principle, by presenting a small, clean interface.
2012-05-02 16:00:07 +10:00
//
2012-05-02 15:57:35 +10:00
// The package dns supports (async) querying/replying, incoming/outgoing Axfr/Ixfr,
// TSIG, EDNS0, dynamic updates, notifies and DNSSEC validation/signing.
// Note that domain names MUST be full qualified, before sending them.
2011-01-27 19:29:11 +11:00
//
2011-03-24 19:16:33 +11:00
// Resource records are native types. They are not stored in wire format.
// Basic usage pattern for creating a new resource record:
//
2012-05-08 22:17:17 +10:00
// r := new(dns.RR_TXT)
// r.Hdr = dns.RR_Header{Name: "miek.nl.", Rrtype: dns.TypeMX, Class: dns.ClassINET, Ttl: 3600}
2012-02-12 21:17:52 +11:00
// r.Pref = 10
// r.Mx = "mx.miek.nl."
//
// Or directly from a string:
//
2012-05-08 22:17:17 +10:00
// mx, err := dns.NewRR("miek.nl. 3600 IN MX 10 mx.miek.nl.")
2012-02-15 23:10:02 +11:00
//
2012-02-12 21:17:52 +11:00
// Or when the default TTL (3600) and class (IN) suit you:
//
2012-05-08 22:17:17 +10:00
// mx, err := dns.NewRR("miek.nl. MX 10 mx.miek.nl.")
2012-02-15 23:10:02 +11:00
//
// Or even:
//
2012-05-08 22:17:17 +10:00
// mx, err := dns.NewRR("$ORIGIN nl.\nmiek 1H IN MX 10 mx.miek")
2011-01-27 19:29:11 +11:00
//
2011-03-24 05:37:07 +11:00
//
2012-05-08 21:39:57 +10:00
// In the DNS messages are exchanged, these messages contain resource
// records (sets). Use pattern for creating a message:
//
2012-05-08 22:17:17 +10:00
// m := dns.new(Msg)
// m.SetQuestion("miek.nl.", dns.TypeMX)
//
// The message m is now a message with the question section set to ask
2011-09-12 04:47:25 +10:00
// the MX records for the miek.nl. zone.
//
// The following is slightly more verbose, but more flexible:
//
2012-05-08 22:17:17 +10:00
// m1 := new(dns.Msg)
// m1.MsgHdr.Id = Id()
// m1.MsgHdr.RecursionDesired = false
// m1.Question = make([]Question, 1)
2012-05-08 22:17:17 +10:00
// m1.Question[0] = dns.Question{"miek.nl.", dns.TypeMX, dns.ClassINET}
//
// After creating a message it can be send.
2012-03-04 04:07:36 +11:00
// Basic use pattern for synchronous querying the DNS at a
// server configured on 127.0.0.1 and port 53:
//
2012-05-08 22:17:17 +10:00
// c := dns.NewClient()
2012-05-08 21:39:57 +10:00
// in, err := c.Exchange(m1, "127.0.0.1:53")
2011-03-24 05:37:07 +11:00
//
2012-01-09 01:33:15 +11:00
// An asynchronous query is also possible, setting up is more elaborate then
// a synchronous query. The Basic use pattern is:
//
2012-05-08 22:17:17 +10:00
// dns.HandleQuery(".", handler)
// dns.ListenAndQuery(nil, nil)
2012-01-09 01:33:15 +11:00
// c.Do(m1, "127.0.0.1:53")
// // Do something else
// r := <- DefaultReplyChan
2012-05-06 04:47:23 +10:00
// // r is of type Exchange:
// // * r.Reply is the answer
// // * r.Request is the original request
// // * r.Rtt is the round trip time
// // * r.RemoteAddr is the net.Addr were the request was sent to
// // * r.Error is the error (if any)
package dns
2010-12-31 06:50:31 +11:00
import (
"net"
2010-12-31 06:50:31 +11:00
"strconv"
2012-05-05 17:56:45 +10:00
"time"
2010-12-31 06:50:31 +11:00
)
2011-02-28 20:42:03 +11:00
const (
Year68 = 1 << 32 // For RFC1982 (Serial Arithmetic) calculations in 32 bits.
DefaultMsgSize = 4096 // Standard default for larger than 512 packets.
UDPMsgSize = 512 // Default buffer size for servers receiving UDP packets.
MaxMsgSize = 65536 // Largest possible DNS packet.
DefaultTtl = 3600 // Default TTL.
2011-02-28 20:42:03 +11:00
)
2011-01-18 07:10:48 +11:00
// Error represents a DNS error
type Error struct {
2011-11-03 09:06:54 +11:00
Err string
Name string
Server net.Addr
Timeout bool
}
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>"
}
2012-01-22 20:52:06 +11:00
if e.Name == "" {
return e.Err
}
return e.Name + ": " + 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
2012-02-20 04:36:59 +11:00
// Len returns the length (in octects) of the uncompressed RR in wire format.
Len() int
}
2012-05-08 21:39:57 +10:00
// Exchange is used in (asynchronous) communication with the resolver.
type Exchange struct {
2012-05-06 01:37:33 +10:00
Request *Msg // the question sent
Reply *Msg // the answer to the question that was sent
2012-05-06 04:47:23 +10:00
Rtt time.Duration // round trip time
2012-05-08 21:39:57 +10:00
RemoteAddr net.Addr // address of the server
2012-05-06 01:37:33 +10:00
Error error // if something went wrong, this contains the error
}
// DNS resource records.
// There are many types of messages,
// but they all share the same header.
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
}
func (h *RR_Header) Header() *RR_Header {
2010-12-31 06:50:31 +11:00
return h
}
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
}
2010-12-31 06:50:31 +11:00
if len(h.Name) == 0 {
s += ".\t"
} else {
s += h.Name + "\t"
}
2012-02-20 04:36:59 +11:00
s = s + strconv.FormatInt(int64(h.Ttl), 10) + "\t"
2011-02-22 01:44:42 +11:00
2011-02-25 02:22:14 +11:00
if _, ok := Class_str[h.Class]; ok {
s += Class_str[h.Class] + "\t"
} else {
s += "CLASS" + strconv.Itoa(int(h.Class)) + "\t"
}
if _, ok := Rr_str[h.Rrtype]; ok {
s += Rr_str[h.Rrtype] + "\t"
} else {
s += "TYPE" + strconv.Itoa(int(h.Rrtype)) + "\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 {
2012-01-13 09:17:34 +11:00
l := len(h.Name) + 1
l += 10 // rrtype(2) + class(2) + ttl(4) + rdlength(2)
return l
}
2011-07-31 17:53:54 +10:00
func zoneMatch(pattern, zone string) (ok bool) {
if len(pattern) == 0 {
return
}
if len(zone) == 0 {
zone = "."
}
pattern = Fqdn(pattern)
zone = Fqdn(zone)
2011-07-31 17:53:54 +10:00
i := 0
for {
ok = pattern[len(pattern)-1-i] == zone[len(zone)-1-i]
i++
if !ok {
break
}
if len(pattern)-1-i < 0 || len(zone)-1-i < 0 {
break
}
}
return
}