dns/zscan_rr.go

547 lines
11 KiB
Go
Raw Normal View History

package dns
import (
2011-12-16 04:03:41 +11:00
"fmt"
2011-12-15 01:37:36 +11:00
"net"
"strconv"
"strings"
)
// Parse the rdata of each rrtype.
// All data from the channel c is either _STRING or _BLANK.
// After the rdata there may come 1 _BLANK and then a _NEWLINE
// or immediately a _NEWLINE. If this is not the case we flag
// an *ParseError: garbage after rdata.
func setRR(h RR_Header, c chan lex, o string) (RR, *ParseError) {
var r RR
2011-12-16 21:20:17 +11:00
e := new(ParseError)
2011-12-15 01:37:36 +11:00
switch h.Rrtype {
case TypeA:
r, e = setA(h, c)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-15 01:37:36 +11:00
case TypeAAAA:
r, e = setAAAA(h, c)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-15 01:37:36 +11:00
case TypeNS:
r, e = setNS(h, c, o)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-15 01:37:36 +11:00
case TypeMX:
r, e = setMX(h, c, o)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-15 01:37:36 +11:00
case TypeCNAME:
r, e = setCNAME(h, c, o)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-15 01:37:36 +11:00
case TypeSOA:
r, e = setSOA(h, c, o)
2011-12-18 21:22:40 +11:00
goto Slurp
2011-12-16 21:30:29 +11:00
case TypeSSHFP:
2011-12-16 21:20:17 +11:00
r, e = setSSHFP(h, c)
2011-12-18 21:22:40 +11:00
goto Slurp
case TypeDNSKEY:
2011-12-16 08:44:09 +11:00
// These types have a variable ending either chunks of txt or chunks/base64 or hex.
// They need to search for the end of the RR themselves, hence they look for the ending
// newline. Thus there is no need to slurp the remainder, because there is none.
2011-12-18 21:22:40 +11:00
return setDNSKEY(h, c)
2011-12-15 01:37:36 +11:00
case TypeRRSIG:
return setRRSIG(h, c, o)
2011-12-15 01:37:36 +11:00
case TypeNSEC:
return setNSEC(h, c, o)
2011-12-15 01:37:36 +11:00
case TypeNSEC3:
return setNSEC3(h, c, o)
2011-12-16 21:30:29 +11:00
case TypeDS:
2011-12-18 21:22:40 +11:00
return setDS(h, c)
2011-12-15 01:37:36 +11:00
case TypeTXT:
2011-12-18 21:22:40 +11:00
return setTXT(h, c)
2011-12-15 01:37:36 +11:00
default:
2011-12-16 21:30:29 +11:00
// Don't the have the token the holds the RRtype, but we substitute that in the
// calling function when lex is empty.
2011-12-17 05:34:30 +11:00
return nil, &ParseError{"Unknown RR type", lex{}}
2011-12-15 01:37:36 +11:00
}
2011-12-18 21:22:40 +11:00
Slurp:
if e != nil {
return nil, e
}
if se := slurpRemainder(c); se != nil {
return nil, se
}
2011-12-15 01:37:36 +11:00
return r, e
}
2011-12-17 05:34:30 +11:00
func slurpRemainder(c chan lex) *ParseError {
2011-12-16 08:44:09 +11:00
l := <-c
2011-12-16 20:30:42 +11:00
if _DEBUG {
2011-12-16 20:48:33 +11:00
fmt.Printf("%v\n", l)
2011-12-16 08:44:09 +11:00
}
switch l.value {
case _BLANK:
l = <-c
2011-12-16 20:30:42 +11:00
if _DEBUG {
2011-12-16 20:48:33 +11:00
fmt.Printf("%v\n", l)
2011-12-16 08:44:09 +11:00
}
if l.value != _NEWLINE && l.value != _EOF {
return &ParseError{"garbage after rdata", l}
}
// Ok
case _NEWLINE:
2011-12-16 21:20:17 +11:00
// Ok
2011-12-16 08:44:09 +11:00
case _EOF:
// Ok
default:
2011-12-16 20:48:33 +11:00
return &ParseError{"garbage after directly rdata", l}
2011-12-16 08:44:09 +11:00
}
return nil
}
2011-12-17 05:34:30 +11:00
func setA(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_A)
rr.Hdr = h
2011-12-15 01:37:36 +11:00
l := <-c
rr.A = net.ParseIP(l.token)
if rr.A == nil {
2011-12-16 04:03:41 +11:00
return nil, &ParseError{"bad A", l}
2011-12-15 01:37:36 +11:00
}
return rr, nil
}
2011-12-17 05:34:30 +11:00
func setAAAA(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_AAAA)
rr.Hdr = h
2011-12-15 01:37:36 +11:00
l := <-c
rr.AAAA = net.ParseIP(l.token)
if rr.AAAA == nil {
return nil, &ParseError{"bad AAAA", l}
}
return rr, nil
}
func setNS(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_NS)
rr.Hdr = h
2011-12-15 01:37:36 +11:00
l := <-c
rr.Ns = l.token
if _, ok := IsDomainName(l.token); !ok {
2011-12-16 04:03:41 +11:00
return nil, &ParseError{"bad NS Ns", l}
2011-12-15 01:37:36 +11:00
}
if !IsFqdn(rr.Ns) {
rr.Ns += o
}
2011-12-15 01:37:36 +11:00
return rr, nil
}
func setMX(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_MX)
rr.Hdr = h
2011-12-15 01:37:36 +11:00
l := <-c
if i, e := strconv.Atoi(l.token); e != nil {
2011-12-16 04:03:41 +11:00
return nil, &ParseError{"bad MX Pref", l}
2011-12-15 01:37:36 +11:00
} else {
rr.Pref = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Mx = l.token
if _, ok := IsDomainName(l.token); !ok {
2011-12-16 04:03:41 +11:00
return nil, &ParseError{"bad MX Mx", l}
2011-12-15 01:37:36 +11:00
}
if !IsFqdn(rr.Mx) {
rr.Mx += o
}
2011-12-15 01:37:36 +11:00
return rr, nil
}
func setCNAME(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_CNAME)
rr.Hdr = h
2011-12-15 01:37:36 +11:00
l := <-c
rr.Cname = l.token
if _, ok := IsDomainName(l.token); !ok {
2011-12-15 01:37:36 +11:00
return nil, &ParseError{"bad CNAME", l}
}
if !IsFqdn(rr.Cname) {
rr.Cname += o
}
2011-12-15 01:37:36 +11:00
return rr, nil
2011-12-14 21:56:12 +11:00
}
func setSOA(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_SOA)
rr.Hdr = h
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
l := <-c
rr.Ns = l.token
<-c // _BLANK
if _, ok := IsDomainName(l.token); !ok {
2011-12-15 01:37:36 +11:00
return nil, &ParseError{"bad SOA mname", l}
}
if !IsFqdn(rr.Ns) {
rr.Ns += o
}
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
l = <-c
rr.Mbox = l.token
if _, ok := IsDomainName(l.token); !ok {
2011-12-15 01:37:36 +11:00
return nil, &ParseError{"bad SOA rname", l}
}
if !IsFqdn(rr.Mbox) {
rr.Mbox += o
}
2011-12-15 01:37:36 +11:00
<-c // _BLANK
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
var j int
2011-12-16 21:20:17 +11:00
var e error
2011-12-15 01:37:36 +11:00
for i := 0; i < 5; i++ {
l = <-c
if j, e = strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad SOA zone parameter", l}
}
switch i {
case 0:
rr.Serial = uint32(j)
2011-12-16 21:20:17 +11:00
<-c // _BLANK
2011-12-15 01:37:36 +11:00
case 1:
rr.Refresh = uint32(j)
2011-12-16 21:20:17 +11:00
<-c // _BLANK
2011-12-15 01:37:36 +11:00
case 2:
rr.Retry = uint32(j)
2011-12-16 21:20:17 +11:00
<-c // _BLANK
2011-12-15 01:37:36 +11:00
case 3:
rr.Expire = uint32(j)
2011-12-16 21:20:17 +11:00
<-c // _BLANK
2011-12-15 01:37:36 +11:00
case 4:
rr.Minttl = uint32(j)
}
}
return rr, nil
2011-12-14 21:56:12 +11:00
}
func setRRSIG(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_RRSIG)
rr.Hdr = h
l := <-c
if t, ok := Str_rr[strings.ToUpper(l.token)]; !ok {
return nil, &ParseError{"bad RRSIG", l}
} else {
rr.TypeCovered = t
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{"bad RRSIG", l}
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{"bad RRSIG", l}
} else {
rr.Labels = uint8(i)
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{"bad RRSIG", l}
} else {
rr.OrigTtl = uint32(i)
}
<-c // _BLANK
l = <-c
if i, err := dateToTime(l.token); err != nil {
return nil, &ParseError{"bad RRSIG expiration", l}
2011-12-15 01:37:36 +11:00
} else {
rr.Expiration = i
}
<-c // _BLANK
l = <-c
if i, err := dateToTime(l.token); err != nil {
return nil, &ParseError{"bad RRSIG inception", l}
2011-12-15 01:37:36 +11:00
} else {
rr.Inception = i
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{"bad RRSIG keytag", l}
2011-12-15 01:37:36 +11:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
rr.SignerName = l.token
if _, ok := IsDomainName(l.token); !ok {
return nil, &ParseError{"bad RRSIG signername", l}
2011-12-15 01:37:36 +11:00
}
if !IsFqdn(rr.SignerName) {
rr.SignerName += o
}
2011-12-15 01:37:36 +11:00
// Get the remaining data until we see a NEWLINE
l = <-c
2011-12-17 00:48:30 +11:00
s := ""
2011-12-15 01:37:36 +11:00
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
s += l.token
case _BLANK:
// Ok
default:
return nil, &ParseError{"bad RRSIG signature", l}
2011-12-15 01:37:36 +11:00
}
l = <-c
}
rr.Signature = s
return rr, nil
}
2011-12-14 21:56:12 +11:00
func setNSEC(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_NSEC)
rr.Hdr = h
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
l := <-c
rr.NextDomain = l.token
if _, ok := IsDomainName(l.token); !ok {
return nil, &ParseError{"bad NSEC nextdomain", l}
2011-12-15 01:37:36 +11:00
}
if !IsFqdn(rr.NextDomain) {
rr.NextDomain += o
}
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
rr.TypeBitMap = make([]uint16, 0)
l = <-c
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _BLANK:
// Ok
case _STRING:
if k, ok := Str_rr[strings.ToUpper(l.token)]; !ok {
return nil, &ParseError{"bad NSEC non RR in type bitmap", l}
2011-12-15 01:37:36 +11:00
} else {
rr.TypeBitMap = append(rr.TypeBitMap, k)
}
default:
2011-12-16 08:44:09 +11:00
return nil, &ParseError{"bad NSEC garbage in type bitmap", l}
2011-12-15 01:37:36 +11:00
}
l = <-c
}
return rr, nil
}
2011-12-14 21:56:12 +11:00
func setNSEC3(h RR_Header, c chan lex, o string) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_NSEC3)
rr.Hdr = h
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
l := <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad NSEC3", l}
} else {
rr.Hash = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad NSEC3", l}
} else {
rr.Flags = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad NSEC3", l}
} else {
rr.Iterations = uint16(i)
}
<-c
l = <-c
rr.SaltLength = uint8(len(l.token))
rr.Salt = l.token // CHECK?
2011-12-15 00:02:55 +11:00
2011-12-15 01:37:36 +11:00
<-c
l = <-c
rr.HashLength = uint8(len(l.token))
rr.NextDomain = l.token
if _, ok := IsDomainName(l.token); !ok {
return nil, &ParseError{"bad NSEC nextdomain", l}
}
if !IsFqdn(rr.NextDomain) {
rr.NextDomain += o
}
2011-12-14 21:56:12 +11:00
2011-12-15 01:37:36 +11:00
rr.TypeBitMap = make([]uint16, 0)
l = <-c
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _BLANK:
// Ok
case _STRING:
if k, ok := Str_rr[strings.ToUpper(l.token)]; !ok {
return nil, &ParseError{"bad NSEC3", l}
} else {
rr.TypeBitMap = append(rr.TypeBitMap, k)
}
default:
return nil, &ParseError{"bad NSEC3", l}
}
l = <-c
}
return rr, nil
}
2011-12-14 21:56:12 +11:00
2011-12-16 21:33:30 +11:00
/*
2011-12-17 05:34:30 +11:00
func setNSEC3PARAM(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-16 21:33:30 +11:00
rr := new(RR_NSEC3PARAM)
rr.Hdr = h
l := <-c
if i, e = strconv.Atoi(rdf[0]); e != nil {
return nil, &ParseError{Error: "bad NSEC3PARAM", name: rdf[0], line: l}
} else {
rr.Hash = uint8(i)
}
if i, e = strconv.Atoi(rdf[1]); e != nil {
reutrn nil, &ParseError{Error: "bad NSEC3PARAM", name: rdf[1], line: l}
} else {
rr.Flags = uint8(i)
}
if i, e = strconv.Atoi(rdf[2]); e != nil {
return nil, &ParseError{Error: "bad NSEC3PARAM", name: rdf[2], line: l}
} else {
rr.Iterations = uint16(i)
}
rr.Salt = rdf[3]
rr.SaltLength = uint8(len(rr.Salt))
zp.RR <- rr
}
*/
2011-12-17 05:34:30 +11:00
func setSSHFP(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-16 21:20:17 +11:00
rr := new(RR_SSHFP)
rr.Hdr = h
l := <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad SSHFP", l}
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad SSHFP", l}
} else {
rr.Type = uint8(i)
}
<-c // _BLANK
l = <-c
rr.FingerPrint = l.token
return rr, nil
}
2011-12-17 05:34:30 +11:00
func setDNSKEY(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-16 08:44:09 +11:00
rr := new(RR_DNSKEY)
rr.Hdr = h
2011-12-15 23:15:31 +11:00
2011-12-16 08:44:09 +11:00
l := <-c
if i, e := strconv.Atoi(l.token); e != nil {
2011-12-15 23:15:31 +11:00
return nil, &ParseError{"bad DNSKEY", l}
2011-12-16 08:44:09 +11:00
} else {
rr.Flags = uint16(i)
}
2011-12-15 23:15:31 +11:00
<-c // _BLANK
l = <-c // _STRING
2011-12-16 08:44:09 +11:00
if i, e := strconv.Atoi(l.token); e != nil {
2011-12-15 23:15:31 +11:00
return nil, &ParseError{"bad DNSKEY", l}
2011-12-16 08:44:09 +11:00
} else {
rr.Protocol = uint8(i)
}
2011-12-15 23:15:31 +11:00
<-c // _BLANK
l = <-c // _STRING
2011-12-16 08:44:09 +11:00
if i, e := strconv.Atoi(l.token); e != nil {
2011-12-15 23:15:31 +11:00
return nil, &ParseError{"bad DNSKEY", l}
2011-12-16 08:44:09 +11:00
} else {
rr.Algorithm = uint8(i)
}
l = <-c
var s string
2011-12-15 23:15:31 +11:00
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
s += l.token
case _BLANK:
// Ok
default:
return nil, &ParseError{"bad DNSKEY", l}
}
l = <-c
}
rr.PublicKey = s
return rr, nil
}
2011-12-16 21:33:30 +11:00
// DLV and TA are the same
2011-12-17 05:34:30 +11:00
func setDS(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-16 21:30:29 +11:00
rr := new(RR_DS)
rr.Hdr = h
l := <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad DS", l}
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad DS", l}
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{"bad DS", l}
} else {
rr.DigestType = uint8(i)
}
// There can be spaces here...
l = <-c
2011-12-17 00:48:30 +11:00
s := ""
2011-12-16 21:30:29 +11:00
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
s += l.token
case _BLANK:
// Ok
default:
return nil, &ParseError{"bad DS", l}
}
l = <-c
}
rr.Digest = s
return rr, nil
}
2011-12-17 05:34:30 +11:00
func setTXT(h RR_Header, c chan lex) (RR, *ParseError) {
2011-12-15 01:37:36 +11:00
rr := new(RR_TXT)
rr.Hdr = h
2011-12-15 00:02:55 +11:00
2011-12-15 01:37:36 +11:00
// Get the remaining data until we see a NEWLINE
l := <-c
var s string
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
s += l.token
case _BLANK:
s += l.token
default:
return nil, &ParseError{"bad TXT", l}
}
l = <-c
}
rr.Txt = s
return rr, nil
2011-12-15 00:02:55 +11:00
}