dns/zscan_rr.go

2261 lines
47 KiB
Go
Raw Normal View History

package dns
import (
2012-02-23 18:37:08 +00:00
"encoding/base64"
2011-12-14 14:37:36 +00:00
"net"
"strconv"
"strings"
)
2012-02-12 11:28:08 +00:00
// Parse the rdata of each rrtype.
// All data from the channel c is either _STRING or _BLANK.
2013-01-17 10:16:22 +00:00
// After the rdata there may come a _BLANK and then a _NEWLINE
// or immediately a _NEWLINE. If this is not the case we flag
// an *ParseError: garbage after rdata.
2013-03-04 10:24:08 +00:00
func setRR(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
var r RR
2011-12-16 10:20:17 +00:00
e := new(ParseError)
2011-12-14 14:37:36 +00:00
switch h.Rrtype {
case TypeA:
r, e = setA(h, c, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2011-12-14 14:37:36 +00:00
case TypeAAAA:
r, e = setAAAA(h, c, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2012-05-06 19:17:37 +00:00
case TypeHINFO:
r, e = setHINFO(h, c, f)
goto Slurp
2013-06-05 21:16:55 +00:00
case TypeMINFO:
r, e = setMINFO(h, c, o, f)
goto Slurp
2011-12-14 14:37:36 +00:00
case TypeNS:
r, e = setNS(h, c, o, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2012-02-11 16:03:09 +00:00
case TypePTR:
r, e = setPTR(h, c, o, f)
goto Slurp
2012-06-01 11:25:54 +00:00
case TypeMF:
r, e = setMF(h, c, o, f)
goto Slurp
case TypeMD:
r, e = setMD(h, c, o, f)
goto Slurp
2012-08-10 07:25:35 +00:00
case TypeMG:
r, e = setMG(h, c, o, f)
goto Slurp
case TypeRT:
r, e = setRT(h, c, o, f)
goto Slurp
2012-06-01 11:34:14 +00:00
case TypeAFSDB:
r, e = setAFSDB(h, c, o, f)
goto Slurp
2012-11-20 13:07:16 +00:00
case TypeX25:
2012-11-21 22:20:56 +00:00
r, e = setX25(h, c, f)
2012-11-20 13:07:16 +00:00
goto Slurp
2011-12-14 14:37:36 +00:00
case TypeMX:
r, e = setMX(h, c, o, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2011-12-14 14:37:36 +00:00
case TypeCNAME:
r, e = setCNAME(h, c, o, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2012-02-11 21:40:49 +00:00
case TypeDNAME:
r, e = setDNAME(h, c, o, f)
goto Slurp
2011-12-14 14:37:36 +00:00
case TypeSOA:
r, e = setSOA(h, c, o, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2012-02-11 16:43:05 +00:00
case TypeSSHFP:
r, e = setSSHFP(h, c, f)
2011-12-18 10:22:40 +00:00
goto Slurp
2012-02-11 16:03:09 +00:00
case TypeSRV:
r, e = setSRV(h, c, o, f)
goto Slurp
case TypeNAPTR:
r, e = setNAPTR(h, c, o, f)
goto Slurp
2012-02-23 18:37:08 +00:00
case TypeTALINK:
2012-02-19 15:20:48 +00:00
r, e = setTALINK(h, c, o, f)
goto Slurp
2012-05-01 20:57:22 +00:00
case TypeRP:
r, e = setRP(h, c, o, f)
goto Slurp
2012-05-06 19:11:54 +00:00
case TypeMR:
r, e = setMR(h, c, o, f)
goto Slurp
2012-05-06 19:17:37 +00:00
case TypeMB:
r, e = setMB(h, c, o, f)
goto Slurp
2012-05-06 19:02:46 +00:00
case TypeKX:
r, e = setKX(h, c, o, f)
goto Slurp
case TypeNID:
r, e = setNID(h, c, f)
2012-11-30 13:05:08 +00:00
goto Slurp
2012-11-17 21:01:45 +00:00
case TypeL32:
2012-11-17 21:02:22 +00:00
r, e = setL32(h, c, f)
2012-11-30 13:05:08 +00:00
goto Slurp
case TypeL64:
r, e = setL64(h, c, f)
2012-11-30 13:05:08 +00:00
goto Slurp
case TypeLP:
r, e = setLP(h, c, o, f)
2012-11-30 13:05:08 +00:00
goto Slurp
2013-03-04 14:26:58 +00:00
case TypeNSEC3PARAM:
r, e = setNSEC3PARAM(h, c, f)
goto Slurp
case TypeEUI48:
r, e = setEUI48(h, c, f)
goto Slurp
case TypeEUI64:
r, e = setEUI64(h, c, f)
goto Slurp
2013-04-30 14:42:04 +00:00
case TypeUID:
r, e = setUID(h, c, f)
goto Slurp
case TypeGID:
r, e = setGID(h, c, f)
goto Slurp
case TypeLOC:
r, e = setLOC(h, c, f)
goto Slurp
2013-10-13 11:25:08 +00:00
case TypeNSAPPTR:
r, e = setNSAPPTR(h, c, o, f)
goto Slurp
2013-10-13 12:01:33 +00:00
case TypeGPOS:
r, e = setGPOS(h, c, f)
goto Slurp
2013-10-13 12:23:02 +00:00
case TypePX:
r, e = setPX(h, c, o, f)
goto Slurp
// These types have a variable ending: either chunks of txt or chunks/base64 or hex.
2012-02-11 16:43:05 +00:00
// 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.
2013-10-19 20:31:12 +00:00
case TypeEID:
return setEID(h, c, f)
case TypeNIMLOC:
return setNIMLOC(h, c, f)
2013-10-13 11:25:08 +00:00
case TypeNSAP:
return setNSAP(h, c, f)
2011-12-18 10:22:40 +00:00
case TypeDNSKEY:
return setDNSKEY(h, c, f)
2012-11-20 15:48:28 +00:00
case TypeRKEY:
return setRKEY(h, c, f)
2011-12-14 14:37:36 +00:00
case TypeRRSIG:
return setRRSIG(h, c, o, f)
2011-12-14 14:37:36 +00:00
case TypeNSEC:
return setNSEC(h, c, o, f)
2011-12-14 14:37:36 +00:00
case TypeNSEC3:
return setNSEC3(h, c, o, f)
2012-06-02 15:33:49 +00:00
case TypeWKS:
return setWKS(h, c, f)
2011-12-16 10:30:29 +00:00
case TypeDS:
return setDS(h, c, f)
2012-11-20 15:52:18 +00:00
case TypeCDS:
return setCDS(h, c, f)
2012-02-18 20:19:56 +00:00
case TypeDLV:
return setDLV(h, c, f)
2012-02-18 20:22:58 +00:00
case TypeTA:
return setTA(h, c, f)
2012-02-18 20:04:31 +00:00
case TypeTLSA:
return setTLSA(h, c, f)
2011-12-14 14:37:36 +00:00
case TypeTXT:
return setTXT(h, c, f)
2013-01-20 14:43:40 +00:00
case TypeURI:
return setURI(h, c, f)
2012-11-20 15:42:16 +00:00
case TypeNINFO:
return setNINFO(h, c, f)
2012-02-18 20:04:31 +00:00
case TypeHIP:
return setHIP(h, c, o, f)
2012-02-18 17:59:19 +00:00
case TypeSPF:
return setSPF(h, c, f)
2012-02-18 20:37:03 +00:00
case TypeDHCID:
return setDHCID(h, c, f)
2012-02-18 20:04:31 +00:00
case TypeIPSECKEY:
return setIPSECKEY(h, c, o, f)
2013-04-30 14:42:04 +00:00
case TypeUINFO:
return setUINFO(h, c, f)
case TypeCERT:
return setCERT(h, c, f)
2014-08-14 08:18:08 +00:00
case TypeOPENPGPKEY:
return setOPENPGPKEY(h, c, f)
2011-12-14 14:37:36 +00:00
default:
// RFC3957 RR (Unknown RR handling)
return setRFC3597(h, c, f)
2011-12-14 14:37:36 +00:00
}
2011-12-18 10:22:40 +00:00
Slurp:
if e != nil {
2013-03-04 10:24:08 +00:00
return nil, e, ""
2011-12-18 10:22:40 +00:00
}
se, com := slurpRemainder(c, f)
if se != nil {
return nil, se, ""
2011-12-18 10:22:40 +00:00
}
return r, e, com
}
// A remainder of the rdata with embedded spaces, return the parsed string (sans the spaces)
// or an error
2013-03-04 10:24:08 +00:00
func endingToString(c chan lex, errstr, f string) (string, *ParseError, string) {
s := ""
l := <-c // _STRING
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
s += l.token
2013-03-04 10:24:08 +00:00
case _BLANK: // Ok
default:
2013-03-04 10:24:08 +00:00
return "", &ParseError{f, errstr, l}, ""
}
l = <-c
}
2013-03-04 10:24:08 +00:00
return s, nil, l.comment
}
// A remainder of the rdata with embedded spaces, return the parsed string slice (sans the spaces)
// or an error
func endingToTxtSlice(c chan lex, errstr, f string) ([]string, *ParseError, string) {
// Get the remaining data until we see a NEWLINE
quote := false
l := <-c
var s []string
switch l.value == _QUOTE {
case true: // A number of quoted string
s = make([]string, 0)
empty := true
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
empty = false
s = append(s, l.token)
case _BLANK:
if quote {
// _BLANK can only be seen in between txt parts.
return nil, &ParseError{f, errstr, l}, ""
}
case _QUOTE:
if empty && quote {
s = append(s, "")
}
quote = !quote
empty = true
default:
return nil, &ParseError{f, errstr, l}, ""
}
l = <-c
}
if quote {
return nil, &ParseError{f, errstr, l}, ""
}
case false: // Unquoted text record
s = make([]string, 1)
for l.value != _NEWLINE && l.value != _EOF {
s[0] += l.token
l = <-c
}
}
return s, nil, l.comment
}
func setA(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(A)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 14:37:36 +00:00
l := <-c
2014-08-29 09:42:43 +00:00
if l.length == 0 { // Dynamic updates.
return rr, nil
}
2011-12-14 14:37:36 +00:00
rr.A = net.ParseIP(l.token)
if rr.A == nil {
2012-02-11 16:28:36 +00:00
return nil, &ParseError{f, "bad A A", l}
2011-12-14 14:37:36 +00:00
}
return rr, nil
}
func setAAAA(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(AAAA)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 14:37:36 +00:00
l := <-c
2014-08-29 09:42:43 +00:00
if l.length == 0 {
return rr, nil
}
2011-12-14 14:37:36 +00:00
rr.AAAA = net.ParseIP(l.token)
if rr.AAAA == nil {
2012-02-11 16:28:36 +00:00
return nil, &ParseError{f, "bad AAAA AAAA", l}
2011-12-14 14:37:36 +00:00
}
return rr, nil
}
func setNS(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(NS)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 14:37:36 +00:00
l := <-c
rr.Ns = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Ns = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-02-05 10:20:04 +00:00
if !ok {
return nil, &ParseError{f, "bad NS Ns", l}
2011-12-14 14:37:36 +00:00
}
2013-09-10 13:13:10 +00:00
if rr.Ns[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Ns = appendOrigin(rr.Ns, o)
2012-01-12 21:49:26 +00:00
}
2011-12-14 14:37:36 +00:00
return rr, nil
}
2012-02-11 16:03:09 +00:00
func setPTR(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(PTR)
2012-02-11 16:03:09 +00:00
rr.Hdr = h
l := <-c
rr.Ptr = l.token
2014-08-29 09:42:43 +00:00
if l.length == 0 { // dynamic update rr.
return rr, nil
}
if l.token == "@" {
rr.Ptr = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-02-11 16:03:09 +00:00
if !ok {
return nil, &ParseError{f, "bad PTR Ptr", l}
}
2013-09-10 13:13:10 +00:00
if rr.Ptr[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Ptr = appendOrigin(rr.Ptr, o)
2012-02-11 16:03:09 +00:00
}
return rr, nil
}
2013-10-13 11:25:08 +00:00
func setNSAPPTR(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(NSAPPTR)
rr.Hdr = h
l := <-c
rr.Ptr = l.token
if l.length == 0 {
return rr, nil
}
2013-10-13 11:25:08 +00:00
if l.token == "@" {
rr.Ptr = o
return rr, nil
}
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad NSAP-PTR Ptr", l}
}
if rr.Ptr[l.length-1] != '.' {
rr.Ptr = appendOrigin(rr.Ptr, o)
}
return rr, nil
}
2012-05-01 20:57:22 +00:00
func setRP(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(RP)
2012-05-01 20:57:22 +00:00
rr.Hdr = h
l := <-c
rr.Mbox = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Mbox = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad RP Mbox", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mbox[l.length-1] != '.' {
rr.Mbox = appendOrigin(rr.Mbox, o)
}
2012-05-01 20:57:22 +00:00
}
<-c // _BLANK
l = <-c
rr.Txt = l.token
if l.token == "@" {
rr.Txt = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-05-01 20:57:22 +00:00
if !ok {
return nil, &ParseError{f, "bad RP Txt", l}
}
2013-09-10 13:13:10 +00:00
if rr.Txt[l.length-1] != '.' {
2012-05-01 20:57:22 +00:00
rr.Txt = appendOrigin(rr.Txt, o)
}
return rr, nil
}
2012-05-06 19:17:37 +00:00
func setMR(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MR)
2012-05-06 19:11:54 +00:00
rr.Hdr = h
l := <-c
rr.Mr = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Mr = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-05-06 19:11:54 +00:00
if !ok {
return nil, &ParseError{f, "bad MR Mr", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mr[l.length-1] != '.' {
2012-05-06 19:11:54 +00:00
rr.Mr = appendOrigin(rr.Mr, o)
}
return rr, nil
}
2012-05-06 19:17:37 +00:00
func setMB(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MB)
2012-05-06 19:17:37 +00:00
rr.Hdr = h
l := <-c
rr.Mb = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Mb = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-05-06 19:17:37 +00:00
if !ok {
return nil, &ParseError{f, "bad MB Mb", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mb[l.length-1] != '.' {
2012-05-06 19:17:37 +00:00
rr.Mb = appendOrigin(rr.Mb, o)
}
return rr, nil
}
func setMG(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MG)
2012-05-06 19:17:37 +00:00
rr.Hdr = h
l := <-c
2012-05-06 19:17:56 +00:00
rr.Mg = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Mg = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-05-06 19:17:37 +00:00
if !ok {
return nil, &ParseError{f, "bad MG Mg", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mg[l.length-1] != '.' {
2012-05-06 19:17:37 +00:00
rr.Mg = appendOrigin(rr.Mg, o)
}
return rr, nil
}
func setHINFO(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(HINFO)
2012-05-06 19:17:37 +00:00
rr.Hdr = h
l := <-c
rr.Cpu = l.token
<-c // _BLANK
l = <-c // _STRING
rr.Os = l.token
return rr, nil
}
2012-05-06 19:28:29 +00:00
func setMINFO(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MINFO)
2012-05-06 19:28:29 +00:00
rr.Hdr = h
l := <-c
rr.Rmail = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Rmail = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad MINFO Rmail", l}
}
2013-09-10 13:13:10 +00:00
if rr.Rmail[l.length-1] != '.' {
rr.Rmail = appendOrigin(rr.Rmail, o)
}
2012-05-06 19:28:29 +00:00
}
2013-06-14 18:42:55 +00:00
<-c // _BLANK
2012-05-06 19:28:29 +00:00
l = <-c
rr.Email = l.token
if l.token == "@" {
rr.Email = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-05-06 19:28:29 +00:00
if !ok {
2012-05-06 19:28:53 +00:00
return nil, &ParseError{f, "bad MINFO Email", l}
2012-05-06 19:28:29 +00:00
}
2013-09-10 13:13:10 +00:00
if rr.Email[l.length-1] != '.' {
2012-05-06 19:28:29 +00:00
rr.Email = appendOrigin(rr.Email, o)
}
return rr, nil
}
2012-05-06 19:11:54 +00:00
2012-06-01 11:25:54 +00:00
func setMF(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MF)
2012-06-01 11:25:54 +00:00
rr.Hdr = h
l := <-c
rr.Mf = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Mf = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-06-01 11:25:54 +00:00
if !ok {
return nil, &ParseError{f, "bad MF Mf", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mf[l.length-1] != '.' {
2012-06-01 11:25:54 +00:00
rr.Mf = appendOrigin(rr.Mf, o)
}
return rr, nil
}
func setMD(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MD)
2012-06-01 11:25:54 +00:00
rr.Hdr = h
l := <-c
rr.Md = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Md = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-06-01 11:25:54 +00:00
if !ok {
return nil, &ParseError{f, "bad MD Md", l}
}
2013-09-10 13:13:10 +00:00
if rr.Md[l.length-1] != '.' {
2012-06-01 11:25:54 +00:00
rr.Md = appendOrigin(rr.Md, o)
}
return rr, nil
}
func setMX(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(MX)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 14:37:36 +00:00
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2011-12-14 14:37:36 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad MX Pref", l}
2011-12-14 14:37:36 +00:00
} else {
rr.Preference = uint16(i)
2011-12-14 14:37:36 +00:00
}
<-c // _BLANK
l = <-c // _STRING
rr.Mx = l.token
if l.token == "@" {
rr.Mx = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad MX Mx", l}
2011-12-14 14:37:36 +00:00
}
2013-09-10 13:13:10 +00:00
if rr.Mx[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Mx = appendOrigin(rr.Mx, o)
2012-01-12 21:49:26 +00:00
}
2011-12-14 14:37:36 +00:00
return rr, nil
}
2012-08-10 07:25:35 +00:00
func setRT(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(RT)
2012-08-10 07:25:35 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-08-10 07:25:35 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad RT Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Host = l.token
if l.token == "@" {
rr.Host = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-08-10 07:25:35 +00:00
return nil, &ParseError{f, "bad RT Host", l}
}
2013-09-10 13:13:10 +00:00
if rr.Host[l.length-1] != '.' {
2012-08-17 06:29:45 +00:00
rr.Host = appendOrigin(rr.Host, o)
2012-08-10 07:25:35 +00:00
}
return rr, nil
}
2012-06-01 11:34:14 +00:00
func setAFSDB(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(AFSDB)
2012-06-01 11:34:14 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-06-01 11:34:14 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad AFSDB Subtype", l}
} else {
rr.Subtype = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Hostname = l.token
if l.token == "@" {
rr.Hostname = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-06-01 11:34:14 +00:00
return nil, &ParseError{f, "bad AFSDB Hostname", l}
}
2013-09-10 13:13:10 +00:00
if rr.Hostname[l.length-1] != '.' {
2012-06-01 11:34:14 +00:00
rr.Hostname = appendOrigin(rr.Hostname, o)
}
return rr, nil
}
2012-11-20 13:07:16 +00:00
func setX25(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(X25)
2012-11-20 13:07:16 +00:00
rr.Hdr = h
l := <-c
rr.PSDNAddress = l.token
return rr, nil
}
2012-05-06 19:02:46 +00:00
func setKX(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(KX)
2012-05-06 19:02:46 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-05-06 19:02:46 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad KX Pref", l}
} else {
rr.Preference = uint16(i)
2012-05-06 19:02:46 +00:00
}
<-c // _BLANK
l = <-c // _STRING
rr.Exchanger = l.token
if l.token == "@" {
rr.Exchanger = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-05-06 19:02:46 +00:00
return nil, &ParseError{f, "bad KX Exchanger", l}
}
2013-09-10 13:13:10 +00:00
if rr.Exchanger[l.length-1] != '.' {
2012-05-06 19:02:46 +00:00
rr.Exchanger = appendOrigin(rr.Exchanger, o)
}
return rr, nil
}
func setCNAME(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(CNAME)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 14:37:36 +00:00
l := <-c
rr.Target = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Target = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad CNAME Target", l}
2011-12-14 14:37:36 +00:00
}
2013-09-10 13:13:10 +00:00
if rr.Target[l.length-1] != '.' {
rr.Target = appendOrigin(rr.Target, o)
2012-01-12 21:49:26 +00:00
}
2011-12-14 14:37:36 +00:00
return rr, nil
2011-12-14 10:56:12 +00:00
}
2012-02-11 21:40:49 +00:00
func setDNAME(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(DNAME)
2012-02-11 21:40:49 +00:00
rr.Hdr = h
l := <-c
rr.Target = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Target = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2012-02-11 21:40:49 +00:00
if !ok {
return nil, &ParseError{f, "bad CNAME Target", l}
}
2013-09-10 13:13:10 +00:00
if rr.Target[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Target = appendOrigin(rr.Target, o)
2012-02-11 21:40:49 +00:00
}
return rr, nil
}
func setSOA(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(SOA)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
l := <-c
rr.Ns = l.token
if l.length == 0 {
return rr, nil
}
2011-12-14 14:37:36 +00:00
<-c // _BLANK
if l.token == "@" {
rr.Ns = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad SOA Ns", l}
}
2013-09-10 13:13:10 +00:00
if rr.Ns[l.length-1] != '.' {
rr.Ns = appendOrigin(rr.Ns, o)
}
2012-01-12 21:49:26 +00:00
}
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
l = <-c
rr.Mbox = l.token
if l.token == "@" {
rr.Mbox = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad SOA Mbox", l}
}
2013-09-10 13:13:10 +00:00
if rr.Mbox[l.length-1] != '.' {
rr.Mbox = appendOrigin(rr.Mbox, o)
}
2012-01-12 21:49:26 +00:00
}
2011-12-14 14:37:36 +00:00
<-c // _BLANK
2011-12-14 10:56:12 +00:00
2012-11-09 09:45:11 +00:00
var (
v uint32
ok bool
)
2011-12-14 14:37:36 +00:00
for i := 0; i < 5; i++ {
l = <-c
2012-02-15 08:04:09 +00:00
if j, e := strconv.Atoi(l.token); e != nil {
if i == 0 {
// Serial should be a number
return nil, &ParseError{f, "bad SOA zone parameter", l}
}
2012-04-30 14:54:02 +00:00
if v, ok = stringToTtl(l.token); !ok {
2012-02-15 08:04:09 +00:00
return nil, &ParseError{f, "bad SOA zone parameter", l}
}
} else {
v = uint32(j)
2011-12-14 14:37:36 +00:00
}
switch i {
case 0:
2012-02-15 08:04:09 +00:00
rr.Serial = v
2011-12-16 10:20:17 +00:00
<-c // _BLANK
2011-12-14 14:37:36 +00:00
case 1:
2012-02-15 08:04:09 +00:00
rr.Refresh = v
2011-12-16 10:20:17 +00:00
<-c // _BLANK
2011-12-14 14:37:36 +00:00
case 2:
2012-02-15 08:04:09 +00:00
rr.Retry = v
2011-12-16 10:20:17 +00:00
<-c // _BLANK
2011-12-14 14:37:36 +00:00
case 3:
2012-02-15 08:04:09 +00:00
rr.Expire = v
2011-12-16 10:20:17 +00:00
<-c // _BLANK
2011-12-14 14:37:36 +00:00
case 4:
2012-02-15 08:04:09 +00:00
rr.Minttl = v
2011-12-14 14:37:36 +00:00
}
}
return rr, nil
2011-12-14 10:56:12 +00:00
}
2012-02-11 16:03:09 +00:00
func setSRV(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(SRV)
2012-02-11 16:03:09 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-02-11 16:03:09 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad SRV Priority", l}
} else {
rr.Priority = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad SRV Weight", l}
} else {
rr.Weight = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad SRV Port", l}
} else {
rr.Port = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
2012-02-11 16:43:05 +00:00
rr.Target = l.token
if l.token == "@" {
rr.Target = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-02-11 16:03:09 +00:00
return nil, &ParseError{f, "bad SRV Target", l}
}
2013-09-10 13:13:10 +00:00
if rr.Target[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Target = appendOrigin(rr.Target, o)
2012-02-11 16:03:09 +00:00
}
return rr, nil
}
2012-02-11 21:32:45 +00:00
func setNAPTR(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(NAPTR)
2012-02-11 21:32:45 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-02-11 21:32:45 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NAPTR Order", l}
} else {
rr.Order = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NAPTR Preference", l}
} else {
rr.Preference = uint16(i)
2012-02-11 21:32:45 +00:00
}
// Flags
2012-02-11 21:32:45 +00:00
<-c // _BLANK
2012-02-12 22:00:26 +00:00
l = <-c // _QUOTE
if l.value != _QUOTE {
2012-02-12 22:00:26 +00:00
return nil, &ParseError{f, "bad NAPTR Flags", l}
}
l = <-c // Either String or Quote
if l.value == _STRING {
rr.Flags = l.token
l = <-c // _QUOTE
if l.value != _QUOTE {
return nil, &ParseError{f, "bad NAPTR Flags", l}
}
} else if l.value == _QUOTE {
rr.Flags = ""
} else {
return nil, &ParseError{f, "bad NAPTR Flags", l}
}
// Service
2012-02-11 21:32:45 +00:00
<-c // _BLANK
2012-02-12 22:00:26 +00:00
l = <-c // _QUOTE
if l.value != _QUOTE {
2012-02-12 22:00:26 +00:00
return nil, &ParseError{f, "bad NAPTR Service", l}
}
l = <-c // Either String or Quote
if l.value == _STRING {
rr.Service = l.token
l = <-c // _QUOTE
if l.value != _QUOTE {
return nil, &ParseError{f, "bad NAPTR Service", l}
}
} else if l.value == _QUOTE {
rr.Service = ""
} else {
return nil, &ParseError{f, "bad NAPTR Service", l}
}
// Regexp
2012-02-11 21:32:45 +00:00
<-c // _BLANK
2012-02-12 22:00:26 +00:00
l = <-c // _QUOTE
if l.value != _QUOTE {
return nil, &ParseError{f, "bad NAPTR Regexp", l}
}
l = <-c // Either String or Quote
if l.value == _STRING {
rr.Regexp = l.token
l = <-c // _QUOTE
if l.value != _QUOTE {
return nil, &ParseError{f, "bad NAPTR Regexp", l}
}
} else if l.value == _QUOTE {
rr.Regexp = ""
} else {
2012-02-12 22:00:26 +00:00
return nil, &ParseError{f, "bad NAPTR Regexp", l}
}
// After quote no space??
2012-02-11 21:32:45 +00:00
<-c // _BLANK
l = <-c // _STRING
rr.Replacement = l.token
if l.token == "@" {
rr.Replacement = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-02-11 21:32:45 +00:00
return nil, &ParseError{f, "bad NAPTR Replacement", l}
}
2013-09-10 13:13:10 +00:00
if rr.Replacement[l.length-1] != '.' {
2012-02-15 08:04:09 +00:00
rr.Replacement = appendOrigin(rr.Replacement, o)
2012-02-11 21:32:45 +00:00
}
return rr, nil
}
2012-02-19 15:20:48 +00:00
func setTALINK(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(TALINK)
2012-02-19 15:20:48 +00:00
rr.Hdr = h
l := <-c
rr.PreviousName = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.PreviousName = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad TALINK PreviousName", l}
}
2013-09-10 13:13:10 +00:00
if rr.PreviousName[l.length-1] != '.' {
rr.PreviousName = appendOrigin(rr.PreviousName, o)
}
2012-02-19 15:20:48 +00:00
}
2012-02-23 18:37:08 +00:00
<-c // _BLANK
2012-02-19 15:23:43 +00:00
l = <-c
2012-02-19 15:20:48 +00:00
rr.NextName = l.token
2012-11-09 09:45:11 +00:00
if l.token == "@" {
rr.NextName = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2012-02-19 15:20:48 +00:00
return nil, &ParseError{f, "bad TALINK NextName", l}
}
2013-09-10 13:13:10 +00:00
if rr.NextName[l.length-1] != '.' {
2012-02-19 15:20:48 +00:00
rr.NextName = appendOrigin(rr.NextName, o)
}
return rr, nil
}
func setLOC(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(LOC)
rr.Hdr = h
2012-05-01 20:21:44 +00:00
// Non zero defaults for LOC record, see RFC 1876, Section 3.
2012-05-05 15:37:48 +00:00
rr.HorizPre = 165 // 10000
rr.VertPre = 162 // 10
rr.Size = 18 // 1
ok := false
// North
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad LOC Latitude", l}
} else {
2012-05-01 20:21:44 +00:00
rr.Latitude = 1000 * 60 * 60 * uint32(i)
}
<-c // _BLANK
// Either number, 'N' or 'S'
l = <-c
if rr.Latitude, ok = locCheckNorth(l.token, rr.Latitude); ok {
goto East
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad LOC Latitude minutes", l}
} else {
rr.Latitude += 1000 * 60 * uint32(i)
}
<-c // _BLANK
l = <-c
2012-04-30 19:57:42 +00:00
if i, e := strconv.ParseFloat(l.token, 32); e != nil {
return nil, &ParseError{f, "bad LOC Latitude seconds", l}
} else {
2012-05-01 20:21:44 +00:00
rr.Latitude += uint32(1000 * i)
}
<-c // _BLANK
// Either number, 'N' or 'S'
l = <-c
if rr.Latitude, ok = locCheckNorth(l.token, rr.Latitude); ok {
goto East
}
// If still alive, flag an error
return nil, &ParseError{f, "bad LOC Latitude North/South", l}
East:
// East
2012-04-30 19:57:42 +00:00
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad LOC Longitude", l}
} else {
2012-05-01 20:21:44 +00:00
rr.Longitude = 1000 * 60 * 60 * uint32(i)
}
<-c // _BLANK
// Either number, 'E' or 'W'
l = <-c
if rr.Longitude, ok = locCheckEast(l.token, rr.Longitude); ok {
goto Altitude
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad LOC Longitude minutes", l}
} else {
rr.Longitude += 1000 * 60 * uint32(i)
}
<-c // _BLANK
l = <-c
2012-04-30 19:57:42 +00:00
if i, e := strconv.ParseFloat(l.token, 32); e != nil {
return nil, &ParseError{f, "bad LOC Longitude seconds", l}
} else {
2012-05-01 20:21:44 +00:00
rr.Longitude += uint32(1000 * i)
}
<-c // _BLANK
// Either number, 'E' or 'W'
l = <-c
if rr.Longitude, ok = locCheckEast(l.token, rr.Longitude); ok {
goto Altitude
}
// If still alive, flag an error
return nil, &ParseError{f, "bad LOC Longitude East/West", l}
Altitude:
<-c // _BLANK
l = <-c
if l.token[len(l.token)-1] == 'M' || l.token[len(l.token)-1] == 'm' {
l.token = l.token[0 : len(l.token)-1]
}
2012-04-30 19:57:42 +00:00
if i, e := strconv.ParseFloat(l.token, 32); e != nil {
return nil, &ParseError{f, "bad LOC Altitude", l}
} else {
2012-04-30 19:57:42 +00:00
rr.Altitude = uint32(i*100.0 + 10000000.0 + 0.5)
}
2012-04-30 19:42:58 +00:00
// And now optionally the other values
l = <-c
count := 0
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
switch count {
case 0: // Size
if e, m, ok := stringToCm(l.token); !ok {
return nil, &ParseError{f, "bad LOC Size", l}
} else {
rr.Size = (e & 0x0f) | (m << 4 & 0xf0)
}
case 1: // HorizPre
if e, m, ok := stringToCm(l.token); !ok {
return nil, &ParseError{f, "bad LOC HorizPre", l}
} else {
rr.HorizPre = (e & 0x0f) | (m << 4 & 0xf0)
}
case 2: // VertPre
if e, m, ok := stringToCm(l.token); !ok {
return nil, &ParseError{f, "bad LOC VertPre", l}
} else {
rr.VertPre = (e & 0x0f) | (m << 4 & 0xf0)
}
}
count++
case _BLANK:
// Ok
default:
return nil, &ParseError{f, "bad LOC Size, HorizPre or VertPre", l}
}
l = <-c
}
2012-04-30 19:42:58 +00:00
return rr, nil
}
func setHIP(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
rr := new(HIP)
2012-02-18 20:04:31 +00:00
rr.Hdr = h
// HitLength is not represented
2012-02-18 20:04:31 +00:00
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-18 20:04:31 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad HIP PublicKeyAlgorithm", l}, ""
2012-02-18 20:04:31 +00:00
} else {
rr.PublicKeyAlgorithm = uint8(i)
}
<-c // _BLANK
l = <-c // _STRING
2012-02-19 10:27:16 +00:00
rr.Hit = l.token // This can not contain spaces, see RFC 5205 Section 6.
2012-02-23 18:37:08 +00:00
rr.HitLength = uint8(len(rr.Hit)) / 2
2012-02-18 20:04:31 +00:00
<-c // _BLANK
l = <-c // _STRING
rr.PublicKey = l.token // This cannot contain spaces
2012-02-23 18:37:08 +00:00
rr.PublicKeyLength = uint16(base64.StdEncoding.DecodedLen(len(rr.PublicKey)))
2012-02-18 20:04:31 +00:00
// RendezvousServers (if any)
l = <-c
xs := make([]string, 0)
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _STRING:
if l.token == "@" {
xs = append(xs, o)
continue
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad HIP RendezvousServers", l}, ""
2012-02-18 20:04:31 +00:00
}
2013-09-10 13:13:10 +00:00
if l.token[l.length-1] != '.' {
2012-02-18 20:04:31 +00:00
l.token = appendOrigin(l.token, o)
}
xs = append(xs, l.token)
case _BLANK:
// Ok
default:
return nil, &ParseError{f, "bad HIP RendezvousServers", l}, ""
2012-02-18 20:04:31 +00:00
}
l = <-c
}
rr.RendezvousServers = xs
return rr, nil, l.comment
2012-02-18 20:04:31 +00:00
}
func setCERT(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(CERT)
2012-02-11 21:38:17 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-11 21:38:17 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad CERT Type", l}, ""
2012-02-11 21:38:17 +00:00
} else {
rr.Type = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad CERT KeyTag", l}, ""
2012-02-11 21:38:17 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad CERT Algorithm", l}, ""
2012-02-11 21:38:17 +00:00
} else {
rr.Algorithm = uint8(i)
}
s, e, c1 := endingToString(c, "bad CERT Certificate", f)
if e != nil {
return nil, e, c1
2012-02-11 21:38:17 +00:00
}
rr.Certificate = s
return rr, nil, c1
2012-02-11 21:38:17 +00:00
}
2014-08-14 08:18:08 +00:00
func setOPENPGPKEY(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(OPENPGPKEY)
rr.Hdr = h
s, e, c1 := endingToString(c, "bad OPENPGPKEY PublicKey", f)
if e != nil {
return nil, e, c1
}
rr.PublicKey = s
return rr, nil, c1
}
func setRRSIG(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
rr := new(RRSIG)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2014-08-28 12:33:06 +00:00
if t, ok := StringToType[l.tokenUpper]; !ok {
if strings.HasPrefix(l.tokenUpper, "TYPE") {
if t, ok = typeToInt(l.tokenUpper); !ok {
return nil, &ParseError{f, "bad RRSIG Typecovered", l}, ""
} else {
rr.TypeCovered = t
}
} else {
return nil, &ParseError{f, "bad RRSIG Typecovered", l}, ""
}
2011-12-14 14:37:36 +00:00
} else {
rr.TypeCovered = t
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{f, "bad RRSIG Algorithm", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{f, "bad RRSIG Labels", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.Labels = uint8(i)
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{f, "bad RRSIG OrigTtl", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.OrigTtl = uint32(i)
}
<-c // _BLANK
l = <-c
2012-09-11 19:45:21 +00:00
if i, err := StringToTime(l.token); err != nil {
// Try to see if all numeric and use it as epoch
if i, err := strconv.ParseInt(l.token, 10, 64); err == nil {
// TODO(miek): error out on > MAX_UINT32, same below
rr.Expiration = uint32(i)
} else {
return nil, &ParseError{f, "bad RRSIG Expiration", l}, ""
}
2011-12-14 14:37:36 +00:00
} else {
rr.Expiration = i
}
<-c // _BLANK
l = <-c
2012-09-11 19:45:21 +00:00
if i, err := StringToTime(l.token); err != nil {
if i, err := strconv.ParseInt(l.token, 10, 64); err == nil {
rr.Inception = uint32(i)
} else {
return nil, &ParseError{f, "bad RRSIG Inception", l}, ""
}
2011-12-14 14:37:36 +00:00
} else {
rr.Inception = i
}
<-c // _BLANK
l = <-c
if i, err := strconv.Atoi(l.token); err != nil {
return nil, &ParseError{f, "bad RRSIG KeyTag", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
rr.SignerName = l.token
if l.token == "@" {
rr.SignerName = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad RRSIG SignerName", l}, ""
}
2013-09-10 13:13:10 +00:00
if rr.SignerName[l.length-1] != '.' {
rr.SignerName = appendOrigin(rr.SignerName, o)
}
2012-01-12 21:49:26 +00:00
}
s, e, c1 := endingToString(c, "bad RRSIG Signature", f)
if e != nil {
return nil, e, c1
2011-12-14 14:37:36 +00:00
}
rr.Signature = s
return rr, nil, c1
2011-12-14 14:37:36 +00:00
}
2011-12-14 10:56:12 +00:00
func setNSEC(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
rr := new(NSEC)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
l := <-c
rr.NextDomain = l.token
if l.length == 0 {
return rr, nil, l.comment
}
if l.token == "@" {
rr.NextDomain = o
} else {
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad NSEC NextDomain", l}, ""
}
2013-09-10 13:13:10 +00:00
if rr.NextDomain[l.length-1] != '.' {
rr.NextDomain = appendOrigin(rr.NextDomain, o)
}
2012-01-12 21:49:26 +00:00
}
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
rr.TypeBitMap = make([]uint16, 0)
2012-11-09 09:45:11 +00:00
var (
k uint16
2012-11-09 09:45:11 +00:00
ok bool
)
2011-12-14 14:37:36 +00:00
l = <-c
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _BLANK:
// Ok
case _STRING:
if k, ok = StringToType[l.tokenUpper]; !ok {
if k, ok = typeToInt(l.tokenUpper); !ok {
return nil, &ParseError{f, "bad NSEC TypeBitMap", l}, ""
2012-02-28 19:20:07 +00:00
}
2011-12-14 14:37:36 +00:00
}
2012-02-28 19:20:07 +00:00
rr.TypeBitMap = append(rr.TypeBitMap, k)
2011-12-14 14:37:36 +00:00
default:
return nil, &ParseError{f, "bad NSEC TypeBitMap", l}, ""
2011-12-14 14:37:36 +00:00
}
l = <-c
}
2013-03-04 14:26:58 +00:00
return rr, nil, l.comment
2011-12-14 14:37:36 +00:00
}
2011-12-14 10:56:12 +00:00
func setNSEC3(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
rr := new(NSEC3)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2011-12-14 14:37:36 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NSEC3 Hash", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.Hash = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NSEC3 Flags", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.Flags = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NSEC3 Iterations", l}, ""
2011-12-14 14:37:36 +00:00
} else {
rr.Iterations = uint16(i)
}
<-c
l = <-c
2012-02-25 20:49:57 +00:00
if len(l.token) == 0 {
return nil, &ParseError{f, "bad NSEC3 Salt", l}, ""
2012-02-25 20:49:57 +00:00
}
rr.SaltLength = uint8(len(l.token)) / 2
rr.Salt = l.token
2011-12-14 13:02:55 +00:00
2011-12-14 14:37:36 +00:00
<-c
l = <-c
2012-02-25 20:49:57 +00:00
rr.HashLength = 20 // Fix for NSEC3 (sha1 160 bits)
2011-12-14 14:37:36 +00:00
rr.NextDomain = l.token
2011-12-14 10:56:12 +00:00
2011-12-14 14:37:36 +00:00
rr.TypeBitMap = make([]uint16, 0)
2012-02-28 19:20:07 +00:00
var (
k uint16
2012-02-28 19:20:07 +00:00
ok bool
)
2011-12-14 14:37:36 +00:00
l = <-c
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _BLANK:
// Ok
case _STRING:
if k, ok = StringToType[l.tokenUpper]; !ok {
if k, ok = typeToInt(l.tokenUpper); !ok {
return nil, &ParseError{f, "bad NSEC3 TypeBitMap", l}, ""
2012-02-28 19:20:07 +00:00
}
2011-12-14 14:37:36 +00:00
}
2012-02-28 19:20:07 +00:00
rr.TypeBitMap = append(rr.TypeBitMap, k)
2011-12-14 14:37:36 +00:00
default:
return nil, &ParseError{f, "bad NSEC3 TypeBitMap", l}, ""
2011-12-14 14:37:36 +00:00
}
l = <-c
}
2013-03-04 14:26:58 +00:00
return rr, nil, l.comment
2011-12-14 14:37:36 +00:00
}
2011-12-14 10:56:12 +00:00
2013-03-04 14:26:58 +00:00
func setNSEC3PARAM(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(NSEC3PARAM)
2012-02-11 21:47:22 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-02-11 21:47:22 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
2013-03-04 14:26:58 +00:00
return nil, &ParseError{f, "bad NSEC3PARAM Hash", l}
2012-02-11 21:47:22 +00:00
} else {
rr.Hash = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
2013-03-04 14:26:58 +00:00
return nil, &ParseError{f, "bad NSEC3PARAM Flags", l}
2012-02-11 21:47:22 +00:00
} else {
rr.Flags = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
2013-03-04 14:26:58 +00:00
return nil, &ParseError{f, "bad NSEC3PARAM Iterations", l}
2012-02-11 21:47:22 +00:00
} else {
rr.Iterations = uint16(i)
}
<-c
l = <-c
rr.SaltLength = uint8(len(l.token))
2012-02-12 11:28:08 +00:00
rr.Salt = l.token
2013-03-04 14:26:58 +00:00
return rr, nil
2011-12-16 10:33:30 +00:00
}
func setEUI48(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(EUI48)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if l.length != 17 {
return nil, &ParseError{f, "bad EUI48 Address", l}
}
2013-04-15 17:32:45 +00:00
addr := make([]byte, 12)
dash := 0
2013-04-15 17:42:07 +00:00
for i := 0; i < 10; i += 2 {
2013-04-15 17:32:45 +00:00
addr[i] = l.token[i+dash]
addr[i+1] = l.token[i+1+dash]
dash++
if l.token[i+1+dash] != '-' {
return nil, &ParseError{f, "bad EUI48 Address", l}
}
}
2013-04-15 17:42:07 +00:00
addr[10] = l.token[15]
addr[11] = l.token[16]
2013-04-15 17:32:45 +00:00
if i, e := strconv.ParseUint(string(addr), 16, 48); e != nil {
return nil, &ParseError{f, "bad EUI48 Address", l}
} else {
2013-04-15 17:32:45 +00:00
rr.Address = i
}
2013-04-15 17:32:45 +00:00
return rr, nil
}
func setEUI64(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(EUI64)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if l.length != 23 {
return nil, &ParseError{f, "bad EUI64 Address", l}
}
2013-04-15 17:32:45 +00:00
addr := make([]byte, 16)
dash := 0
2013-04-15 17:42:07 +00:00
for i := 0; i < 14; i += 2 {
2013-04-15 17:32:45 +00:00
addr[i] = l.token[i+dash]
addr[i+1] = l.token[i+1+dash]
dash++
if l.token[i+1+dash] != '-' {
return nil, &ParseError{f, "bad EUI64 Address", l}
}
}
2013-04-15 17:42:07 +00:00
addr[14] = l.token[21]
addr[15] = l.token[22]
2013-04-15 17:32:45 +00:00
if i, e := strconv.ParseUint(string(addr), 16, 64); e != nil {
return nil, &ParseError{f, "bad EUI68 Address", l}
} else {
rr.Address = uint64(i)
}
2013-04-15 17:32:45 +00:00
return rr, nil
}
func setWKS(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(WKS)
2012-06-02 15:33:49 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-06-02 15:33:49 +00:00
rr.Address = net.ParseIP(l.token)
if rr.Address == nil {
return nil, &ParseError{f, "bad WKS Address", l}, ""
2012-06-02 15:33:49 +00:00
}
<-c // _BLANK
l = <-c
proto := "tcp"
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad WKS Protocol", l}, ""
2012-06-02 15:33:49 +00:00
} else {
rr.Protocol = uint8(i)
switch rr.Protocol {
case 17:
proto = "udp"
case 6:
proto = "tcp"
default:
return nil, &ParseError{f, "bad WKS Protocol", l}, ""
2012-06-02 15:33:49 +00:00
}
}
<-c
l = <-c
rr.BitMap = make([]uint16, 0)
var (
2012-06-20 18:16:36 +00:00
k int
2012-06-02 15:33:49 +00:00
err error
)
for l.value != _NEWLINE && l.value != _EOF {
switch l.value {
case _BLANK:
// Ok
case _STRING:
if k, err = net.LookupPort(proto, l.token); err != nil {
2012-06-20 18:16:36 +00:00
if i, e := strconv.Atoi(l.token); e != nil { // If a number use that
2012-06-02 15:33:49 +00:00
rr.BitMap = append(rr.BitMap, uint16(i))
} else {
return nil, &ParseError{f, "bad WKS BitMap", l}, ""
2012-06-02 15:33:49 +00:00
}
}
rr.BitMap = append(rr.BitMap, uint16(k))
default:
return nil, &ParseError{f, "bad WKS BitMap", l}, ""
2012-06-02 15:33:49 +00:00
}
l = <-c
}
return rr, nil, l.comment
2012-06-02 15:33:49 +00:00
}
func setSSHFP(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(SSHFP)
2011-12-16 10:20:17 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2011-12-16 10:20:17 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
2012-02-11 16:28:36 +00:00
return nil, &ParseError{f, "bad SSHFP Algorithm", l}
2011-12-16 10:20:17 +00:00
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
2012-02-11 16:28:36 +00:00
return nil, &ParseError{f, "bad SSHFP Type", l}
2011-12-16 10:20:17 +00:00
} else {
rr.Type = uint8(i)
}
<-c // _BLANK
l = <-c
rr.FingerPrint = l.token
return rr, nil
}
func setDNSKEY(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(DNSKEY)
2011-12-15 21:44:09 +00:00
rr.Hdr = h
2011-12-15 12:15:31 +00:00
2011-12-15 21:44:09 +00:00
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2011-12-15 21:44:09 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DNSKEY Flags", l}, ""
2011-12-15 21:44:09 +00:00
} else {
rr.Flags = uint16(i)
}
2011-12-15 12:15:31 +00:00
<-c // _BLANK
l = <-c // _STRING
2011-12-15 21:44:09 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DNSKEY Protocol", l}, ""
2011-12-15 21:44:09 +00:00
} else {
rr.Protocol = uint8(i)
}
2011-12-15 12:15:31 +00:00
<-c // _BLANK
l = <-c // _STRING
2011-12-15 21:44:09 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DNSKEY Algorithm", l}, ""
2011-12-15 21:44:09 +00:00
} else {
rr.Algorithm = uint8(i)
}
s, e, c1 := endingToString(c, "bad DNSKEY PublicKey", f)
if e != nil {
return nil, e, c1
2011-12-15 12:15:31 +00:00
}
rr.PublicKey = s
return rr, nil, c1
2012-11-20 15:48:28 +00:00
}
func setRKEY(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(RKEY)
2012-11-20 15:48:28 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-11-20 15:48:28 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad RKEY Flags", l}, ""
2012-11-20 15:48:28 +00:00
} else {
rr.Flags = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad RKEY Protocol", l}, ""
2012-11-20 15:48:28 +00:00
} else {
rr.Protocol = uint8(i)
}
<-c // _BLANK
l = <-c // _STRING
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad RKEY Algorithm", l}, ""
2012-11-20 15:48:28 +00:00
} else {
rr.Algorithm = uint8(i)
}
s, e, c1 := endingToString(c, "bad RKEY PublicKey", f)
if e != nil {
return nil, e, c1
2012-11-20 15:48:28 +00:00
}
rr.PublicKey = s
return rr, nil, c1
2011-12-15 12:15:31 +00:00
}
func setDS(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(DS)
2011-12-16 10:30:29 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2011-12-16 10:30:29 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DS KeyTag", l}, ""
2011-12-16 10:30:29 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
if i, ok := StringToAlgorithm[l.tokenUpper]; !ok {
return nil, &ParseError{f, "bad DS Algorithm", l}, ""
} else {
rr.Algorithm = i
}
2011-12-16 10:30:29 +00:00
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DS DigestType", l}, ""
2011-12-16 10:30:29 +00:00
} else {
rr.DigestType = uint8(i)
}
s, e, c1 := endingToString(c, "bad DS Digest", f)
if e != nil {
return nil, e, c1
2011-12-16 10:30:29 +00:00
}
rr.Digest = s
return rr, nil, c1
2011-12-16 10:30:29 +00:00
}
2013-10-19 20:31:12 +00:00
func setEID(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(EID)
rr.Hdr = h
s, e, c1 := endingToString(c, "bad EID Endpoint", f)
if e != nil {
return nil, e, c1
}
rr.Endpoint = s
return rr, nil, c1
}
func setNIMLOC(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(NIMLOC)
rr.Hdr = h
s, e, c1 := endingToString(c, "bad NIMLOC Locator", f)
if e != nil {
return nil, e, c1
}
rr.Locator = s
return rr, nil, c1
}
2013-10-13 11:25:08 +00:00
func setNSAP(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(NSAP)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2013-10-13 11:25:08 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NSAP Length", l}, ""
} else {
rr.Length = uint8(i)
}
<-c // _BLANK
s, e, c1 := endingToString(c, "bad NSAP Nsap", f)
if e != nil {
return nil, e, c1
}
rr.Nsap = s
return rr, nil, c1
}
2013-10-13 12:01:33 +00:00
func setGPOS(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(GPOS)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2013-10-13 12:01:33 +00:00
if _, e := strconv.ParseFloat(l.token, 64); e != nil {
return nil, &ParseError{f, "bad GPOS Longitude", l}
} else {
rr.Longitude = l.token
}
<-c // _BLANK
l = <-c
if _, e := strconv.ParseFloat(l.token, 64); e != nil {
return nil, &ParseError{f, "bad GPOS Latitude", l}
} else {
rr.Latitude = l.token
}
<-c // _BLANK
l = <-c
if _, e := strconv.ParseFloat(l.token, 64); e != nil {
return nil, &ParseError{f, "bad GPOS Altitude", l}
} else {
rr.Altitude = l.token
}
return rr, nil
}
func setCDS(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(CDS)
2012-11-20 15:52:18 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-11-20 15:52:18 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad CDS KeyTag", l}, ""
2012-11-20 15:52:18 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
if i, ok := StringToAlgorithm[l.tokenUpper]; !ok {
return nil, &ParseError{f, "bad CDS Algorithm", l}, ""
2012-11-20 15:52:18 +00:00
} else {
rr.Algorithm = i
}
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad CDS DigestType", l}, ""
2012-11-20 15:52:18 +00:00
} else {
rr.DigestType = uint8(i)
}
s, e, c1 := endingToString(c, "bad CDS Digest", f)
if e != nil {
return nil, e, c1
2012-11-20 15:52:18 +00:00
}
rr.Digest = s
return rr, nil, c1
2012-11-20 15:52:18 +00:00
}
func setDLV(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(DLV)
2012-02-18 20:19:56 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-18 20:19:56 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DLV KeyTag", l}, ""
2012-02-18 20:19:56 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
if i, ok := StringToAlgorithm[l.tokenUpper]; !ok {
return nil, &ParseError{f, "bad DLV Algorithm", l}, ""
} else {
rr.Algorithm = i
}
2012-02-18 20:19:56 +00:00
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad DLV DigestType", l}, ""
2012-02-18 20:19:56 +00:00
} else {
rr.DigestType = uint8(i)
}
s, e, c1 := endingToString(c, "bad DLV Digest", f)
if e != nil {
return nil, e, c1
2012-02-18 20:19:56 +00:00
}
rr.Digest = s
return rr, nil, c1
2012-02-18 20:19:56 +00:00
}
func setTA(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(TA)
2012-02-18 20:22:58 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-18 20:22:58 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad TA KeyTag", l}, ""
2012-02-18 20:22:58 +00:00
} else {
rr.KeyTag = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
if i, ok := StringToAlgorithm[l.tokenUpper]; !ok {
return nil, &ParseError{f, "bad TA Algorithm", l}, ""
} else {
rr.Algorithm = i
}
2012-02-18 20:22:58 +00:00
} else {
rr.Algorithm = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad TA DigestType", l}, ""
2012-02-18 20:22:58 +00:00
} else {
rr.DigestType = uint8(i)
}
s, e, c1 := endingToString(c, "bad TA Digest", f)
if e != nil {
return nil, e, c1
2012-02-18 20:22:58 +00:00
}
rr.Digest = s
return rr, nil, c1
2012-02-18 20:22:58 +00:00
}
func setTLSA(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(TLSA)
2012-02-18 18:08:39 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-18 18:08:39 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad TLSA Usage", l}, ""
2012-02-18 18:08:39 +00:00
} else {
2012-02-18 18:26:11 +00:00
rr.Usage = uint8(i)
2012-02-18 18:08:39 +00:00
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad TLSA Selector", l}, ""
2012-02-18 18:08:39 +00:00
} else {
rr.Selector = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad TLSA MatchingType", l}, ""
2012-02-18 18:08:39 +00:00
} else {
2012-02-18 18:26:11 +00:00
rr.MatchingType = uint8(i)
2012-02-18 18:08:39 +00:00
}
s, e, c1 := endingToString(c, "bad TLSA Certificate", f)
if e != nil {
return nil, e, c1
2012-02-18 18:08:39 +00:00
}
rr.Certificate = s
return rr, nil, c1
2012-02-18 18:08:39 +00:00
}
func setRFC3597(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(RFC3597)
rr.Hdr = h
l := <-c
if l.token != "\\#" {
return nil, &ParseError{f, "bad RFC3597 Rdata", l}, ""
}
<-c // _BLANK
l = <-c
rdlength, e := strconv.Atoi(l.token)
if e != nil {
return nil, &ParseError{f, "bad RFC3597 Rdata ", l}, ""
}
s, e1, c1 := endingToString(c, "bad RFC3597 Rdata", f)
if e1 != nil {
return nil, e1, c1
}
if rdlength*2 != len(s) {
return nil, &ParseError{f, "bad RFC3597 Rdata", l}, ""
}
rr.Rdata = s
return rr, nil, c1
}
func setSPF(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(SPF)
2012-02-18 17:59:19 +00:00
rr.Hdr = h
s, e, c1 := endingToTxtSlice(c, "bad SPF Txt", f)
if e != nil {
return nil, e, ""
2012-02-18 17:59:19 +00:00
}
rr.Txt = s
return rr, nil, c1
2012-02-18 17:59:19 +00:00
}
func setTXT(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(TXT)
2011-12-14 14:37:36 +00:00
rr.Hdr = h
2011-12-14 13:02:55 +00:00
2013-01-20 17:26:10 +00:00
// No _BLANK reading here, because this is all rdata is TXT
s, e, c1 := endingToTxtSlice(c, "bad TXT Txt", f)
if e != nil {
return nil, e, ""
2011-12-14 14:37:36 +00:00
}
rr.Txt = s
return rr, nil, c1
2011-12-14 13:02:55 +00:00
}
2012-11-20 15:42:16 +00:00
// identical to setTXT
func setNINFO(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(NINFO)
2012-11-20 15:42:16 +00:00
rr.Hdr = h
s, e, c1 := endingToTxtSlice(c, "bad NINFO ZSData", f)
if e != nil {
return nil, e, ""
2012-11-20 15:42:16 +00:00
}
rr.ZSData = s
return rr, nil, c1
2012-11-20 15:42:16 +00:00
}
func setURI(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(URI)
2012-02-18 20:49:02 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
2012-02-18 20:49:02 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad URI Priority", l}, ""
2012-02-18 20:49:02 +00:00
} else {
rr.Priority = uint16(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad URI Weight", l}, ""
2012-02-18 20:49:02 +00:00
} else {
rr.Weight = uint16(i)
}
2013-01-20 17:26:10 +00:00
<-c // _BLANK
s, e, c1 := endingToTxtSlice(c, "bad URI Target", f)
2013-01-20 14:43:40 +00:00
if e != nil {
return nil, e, ""
2012-02-18 20:49:02 +00:00
}
rr.Target = s
return rr, nil, c1
2012-02-18 20:49:02 +00:00
}
func setIPSECKEY(h RR_Header, c chan lex, o, f string) (RR, *ParseError, string) {
rr := new(IPSECKEY)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil, l.comment
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad IPSECKEY Precedence", l}, ""
} else {
rr.Precedence = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad IPSECKEY GatewayType", l}, ""
} else {
rr.GatewayType = uint8(i)
}
<-c // _BLANK
l = <-c
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad IPSECKEY Algorithm", l}, ""
} else {
rr.Algorithm = uint8(i)
}
<-c
l = <-c
rr.Gateway = l.token
s, e, c1 := endingToString(c, "bad IPSECKEY PublicKey", f)
if e != nil {
return nil, e, c1
}
rr.PublicKey = s
return rr, nil, c1
}
2012-02-18 20:37:03 +00:00
func setDHCID(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
2012-02-18 20:49:02 +00:00
// awesome record to parse!
rr := new(DHCID)
2012-02-18 20:37:03 +00:00
rr.Hdr = h
s, e, c1 := endingToString(c, "bad DHCID Digest", f)
if e != nil {
return nil, e, c1
2012-02-18 20:37:03 +00:00
}
rr.Digest = s
return rr, nil, c1
2012-02-18 20:37:03 +00:00
}
2012-11-17 21:01:45 +00:00
func setNID(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(NID)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad NID Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
u, err := stringToNodeID(l)
if err != nil {
return nil, err
}
rr.NodeID = u
return rr, nil
2012-11-17 21:01:45 +00:00
}
func setL32(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(L32)
2012-11-17 21:01:45 +00:00
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2012-11-17 21:01:45 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad L32 Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Locator32 = net.ParseIP(l.token)
if rr.Locator32 == nil {
return nil, &ParseError{f, "bad L32 Locator", l}
}
return rr, nil
}
func setLP(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(LP)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad LP Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Fqdn = l.token
if l.length == 0 {
return rr, nil
}
if l.token == "@" {
rr.Fqdn = o
return rr, nil
}
2013-09-10 13:13:10 +00:00
_, ok := IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
return nil, &ParseError{f, "bad LP Fqdn", l}
}
2013-09-10 13:13:10 +00:00
if rr.Fqdn[l.length-1] != '.' {
rr.Fqdn = appendOrigin(rr.Fqdn, o)
}
return rr, nil
}
func setL64(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(L64)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad L64 Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
u, err := stringToNodeID(l)
if err != nil {
return nil, err
}
rr.Locator64 = u
return rr, nil
}
2013-04-30 14:42:04 +00:00
func setUID(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(UID)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2013-04-30 14:42:04 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad UID Uid", l}
} else {
rr.Uid = uint32(i)
}
return rr, nil
}
func setGID(h RR_Header, c chan lex, f string) (RR, *ParseError) {
rr := new(GID)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2013-04-30 14:42:04 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad GID Gid", l}
} else {
rr.Gid = uint32(i)
}
return rr, nil
}
func setUINFO(h RR_Header, c chan lex, f string) (RR, *ParseError, string) {
rr := new(UINFO)
rr.Hdr = h
s, e, c1 := endingToTxtSlice(c, "bad UINFO Uinfo", f)
if e != nil {
return nil, e, ""
}
rr.Uinfo = s[0] // silently discard anything above
return rr, nil, c1
}
2013-10-13 12:23:02 +00:00
func setPX(h RR_Header, c chan lex, o, f string) (RR, *ParseError) {
rr := new(PX)
rr.Hdr = h
l := <-c
2014-08-30 07:44:16 +00:00
if l.length == 0 {
return rr, nil
}
2013-10-13 12:23:02 +00:00
if i, e := strconv.Atoi(l.token); e != nil {
return nil, &ParseError{f, "bad PX Preference", l}
} else {
rr.Preference = uint16(i)
}
<-c // _BLANK
l = <-c // _STRING
rr.Map822 = l.token
if l.length == 0 {
return rr, nil
}
2013-10-13 12:23:02 +00:00
if l.token == "@" {
rr.Map822 = o
return rr, nil
}
_, ok := IsDomainName(l.token)
if !ok {
return nil, &ParseError{f, "bad PX Map822", l}
}
if rr.Map822[l.length-1] != '.' {
rr.Map822 = appendOrigin(rr.Map822, o)
}
<-c // _BLANK
l = <-c // _STRING
rr.Mapx400 = l.token
if l.token == "@" {
rr.Mapx400 = o
return rr, nil
}
_, ok = IsDomainName(l.token)
2014-08-30 07:44:16 +00:00
if !ok || l.length == 0 {
2013-10-13 12:23:02 +00:00
return nil, &ParseError{f, "bad PX Mapx400", l}
}
if rr.Mapx400[l.length-1] != '.' {
rr.Mapx400 = appendOrigin(rr.Mapx400, o)
}
return rr, nil
}