dns/tsig.go

185 lines
4.5 KiB
Go
Raw Normal View History

package dns
2011-01-18 07:10:48 +11:00
// Implementation of TSIG: generation and validation
2011-01-27 01:13:06 +11:00
// RFC 2845 and RFC 4635
2011-01-09 08:39:15 +11:00
import (
2011-01-18 07:10:48 +11:00
"io"
"strconv"
2011-01-10 01:54:23 +11:00
"strings"
2011-01-18 07:10:48 +11:00
"crypto/hmac"
2011-01-10 01:54:23 +11:00
"encoding/hex"
2011-01-09 08:39:15 +11:00
)
2011-01-27 19:29:11 +11:00
// HMAC hashing codes. These are transmitted as domain names.
2011-01-09 08:39:15 +11:00
const (
HmacMD5 = "hmac-md5.sig-alg.reg.int."
HmacSHA1 = "hmac-sha1."
HmacSHA256 = "hmac-sha256."
2011-01-09 08:39:15 +11:00
)
type RR_TSIG struct {
Hdr RR_Header
2011-01-10 01:54:23 +11:00
Algorithm string "domain-name"
TimeSigned uint64
Fudge uint16
MACSize uint16
2011-02-04 06:39:43 +11:00
MAC string "size-hex"
2011-01-18 07:10:48 +11:00
OrigId uint16
Error uint16
OtherLen uint16
2011-02-04 06:39:43 +11:00
OtherData string "size-hex"
}
func (rr *RR_TSIG) Header() *RR_Header {
return &rr.Hdr
}
2011-03-14 04:18:00 +11:00
func (rr *RR_TSIG) SetDefaults() {
2011-03-15 07:16:45 +11:00
rr.Header().Ttl = 0
rr.Header().Class = ClassANY
rr.Header().Rrtype = TypeTSIG
rr.Fudge = 300
rr.Algorithm = HmacMD5
2011-03-14 04:16:35 +11:00
}
2011-01-27 19:29:11 +11:00
// TSIG has no official presentation format, but this will suffice.
func (rr *RR_TSIG) String() string {
return rr.Hdr.String() +
" " + rr.Algorithm +
2011-01-10 01:54:23 +11:00
" " + tsigTimeToDate(rr.TimeSigned) +
" " + strconv.Itoa(int(rr.Fudge)) +
" " + strconv.Itoa(int(rr.MACSize)) +
2011-03-15 07:16:45 +11:00
" " + strings.ToUpper(rr.MAC) +
" " + strconv.Itoa(int(rr.OrigId)) +
" " + strconv.Itoa(int(rr.Error)) +
" " + strconv.Itoa(int(rr.OtherLen)) +
" " + rr.OtherData
}
2011-01-18 07:10:48 +11:00
// The following values must be put in wireformat, so that the MAC can be calculated.
// RFC 2845, section 3.4.2. TSIG Variables.
type tsigWireFmt struct {
// From RR_HEADER
Name string "domain-name"
Class uint16
Ttl uint32
// Rdata of the TSIG
2011-01-10 01:54:23 +11:00
Algorithm string "domain-name"
TimeSigned uint64
Fudge uint16
// MACSize, MAC and OrigId excluded
Error uint16
OtherLen uint16
2011-02-04 06:39:43 +11:00
OtherData string "size-hex"
}
// If we have the MAC use this type to convert it to wiredata
type macWireFmt struct {
2011-03-15 07:16:45 +11:00
MACSize uint16
MAC string "size-hex"
}
2011-01-27 19:29:11 +11:00
// Generate the HMAC for message. The TSIG RR is modified
// to include the MAC and MACSize. Note the the msg Id must
2011-01-27 19:29:11 +11:00
// already be set, otherwise the MAC will not be correct when
// the message is send.
// The string 'secret' must be encoded in base64.
2011-01-27 02:04:51 +11:00
func (t *RR_TSIG) Generate(m *Msg, secret string) bool {
rawsecret, err := packBase64([]byte(secret))
2011-03-15 07:16:45 +11:00
if err != nil {
return false
}
t.OrigId = m.MsgHdr.Id
2011-03-14 23:08:54 +11:00
buf, ok := tsigToBuf(t, m, "")
h := hmac.NewMD5([]byte(rawsecret))
io.WriteString(h, string(buf))
2011-03-15 07:16:45 +11:00
t.MAC = hex.EncodeToString(h.Sum())
t.MACSize = uint16(len(h.Sum())) // Needs to be "on-the-wire" size.
if !ok {
2011-01-27 02:04:51 +11:00
return false
}
2011-01-27 02:04:51 +11:00
return true
}
2011-01-27 19:29:11 +11:00
// Verify a TSIG. The message should be the complete with
// the TSIG record still attached (as the last rr in the Additional
2011-01-27 19:29:11 +11:00
// section). Return true on success.
// The secret is a base64 encoded string with the secret.
2011-03-14 23:08:54 +11:00
func (t *RR_TSIG) Verify(m *Msg, secret, reqmac string) bool {
2011-01-27 01:13:06 +11:00
rawsecret, err := packBase64([]byte(secret))
2011-03-15 07:16:45 +11:00
if err != nil {
return false
}
msg2 := m // Deep copy TODO(mg)
if len(msg2.Extra) < 1 {
// nothing in additional
return false
2011-01-26 08:29:48 +11:00
}
2011-03-15 07:16:45 +11:00
if t.Header().Rrtype != TypeTSIG {
return false
}
println(msg2.String())
msg2.MsgHdr.Id = t.OrigId
2011-03-15 08:05:57 +11:00
println(msg2.String())
2011-03-15 07:16:45 +11:00
msg2.Extra = msg2.Extra[:len(msg2.Extra)-1] // Strip off the TSIG
buf, ok := tsigToBuf(t, msg2, reqmac)
if !ok {
return false
}
2011-03-15 07:16:45 +11:00
h := hmac.NewMD5([]byte(rawsecret))
io.WriteString(h, string(buf))
println("t.MAC", strings.ToUpper(t.MAC))
println("our MAC", strings.ToUpper(hex.EncodeToString(h.Sum())))
println("req mac", reqmac)
2011-03-15 08:05:57 +11:00
return strings.ToUpper(hex.EncodeToString(h.Sum())) == strings.ToUpper(reqmac)
2011-01-26 08:29:48 +11:00
}
2011-03-14 23:08:54 +11:00
func tsigToBuf(rr *RR_TSIG, msg *Msg, reqmac string) ([]byte, bool) {
2011-03-15 07:16:45 +11:00
var mb []byte
var buf []byte
2011-03-15 08:05:57 +11:00
if reqmac != "" {
m := new(macWireFmt)
m.MACSize = uint16(len(reqmac) / 2)
m.MAC = reqmac
mb = make([]byte, len(reqmac)) // reqmac should be twice as long
n, ok := packStruct(m, mb, 0)
if !ok {
return nil, false
}
mb = mb[:n]
}
2011-03-15 07:16:45 +11:00
tsigvar := make([]byte, DefaultMsgSize)
2011-01-26 08:29:48 +11:00
tsig := new(tsigWireFmt)
2011-03-15 08:05:57 +11:00
tsig.Name = strings.ToLower(rr.Header().Name)
2011-01-26 08:29:48 +11:00
tsig.Class = rr.Header().Class
tsig.Ttl = rr.Header().Ttl
2011-03-15 08:05:57 +11:00
tsig.Algorithm = strings.ToLower(rr.Algorithm)
2011-01-26 08:29:48 +11:00
tsig.TimeSigned = rr.TimeSigned
tsig.Fudge = rr.Fudge
tsig.Error = rr.Error
tsig.OtherLen = rr.OtherLen
tsig.OtherData = rr.OtherData
2011-03-15 07:16:45 +11:00
n, ok1 := packStruct(tsig, tsigvar, 0)
2011-01-26 08:29:48 +11:00
if !ok1 {
return nil, false
}
2011-03-15 07:16:45 +11:00
tsigvar = tsigvar[:n]
2011-01-26 08:29:48 +11:00
msgbuf, ok := msg.Pack()
if !ok {
return nil, false
}
2011-03-15 07:16:45 +11:00
if reqmac != "" {
x := append(mb, msgbuf...)
buf = append(x, tsigvar...)
2011-03-15 08:05:57 +11:00
} else {
buf = append(msgbuf, tsigvar...)
}
2011-01-26 08:29:48 +11:00
return buf, true
}