dnssec.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. package dns
  2. import (
  3. "bytes"
  4. "crypto"
  5. "crypto/dsa"
  6. "crypto/ecdsa"
  7. "crypto/elliptic"
  8. _ "crypto/md5"
  9. "crypto/rand"
  10. "crypto/rsa"
  11. _ "crypto/sha1"
  12. _ "crypto/sha256"
  13. _ "crypto/sha512"
  14. "encoding/asn1"
  15. "encoding/binary"
  16. "encoding/hex"
  17. "math/big"
  18. "sort"
  19. "strings"
  20. "time"
  21. "golang.org/x/crypto/ed25519"
  22. )
  23. // DNSSEC encryption algorithm codes.
  24. const (
  25. _ uint8 = iota
  26. RSAMD5
  27. DH
  28. DSA
  29. _ // Skip 4, RFC 6725, section 2.1
  30. RSASHA1
  31. DSANSEC3SHA1
  32. RSASHA1NSEC3SHA1
  33. RSASHA256
  34. _ // Skip 9, RFC 6725, section 2.1
  35. RSASHA512
  36. _ // Skip 11, RFC 6725, section 2.1
  37. ECCGOST
  38. ECDSAP256SHA256
  39. ECDSAP384SHA384
  40. ED25519
  41. ED448
  42. INDIRECT uint8 = 252
  43. PRIVATEDNS uint8 = 253 // Private (experimental keys)
  44. PRIVATEOID uint8 = 254
  45. )
  46. // AlgorithmToString is a map of algorithm IDs to algorithm names.
  47. var AlgorithmToString = map[uint8]string{
  48. RSAMD5: "RSAMD5",
  49. DH: "DH",
  50. DSA: "DSA",
  51. RSASHA1: "RSASHA1",
  52. DSANSEC3SHA1: "DSA-NSEC3-SHA1",
  53. RSASHA1NSEC3SHA1: "RSASHA1-NSEC3-SHA1",
  54. RSASHA256: "RSASHA256",
  55. RSASHA512: "RSASHA512",
  56. ECCGOST: "ECC-GOST",
  57. ECDSAP256SHA256: "ECDSAP256SHA256",
  58. ECDSAP384SHA384: "ECDSAP384SHA384",
  59. ED25519: "ED25519",
  60. ED448: "ED448",
  61. INDIRECT: "INDIRECT",
  62. PRIVATEDNS: "PRIVATEDNS",
  63. PRIVATEOID: "PRIVATEOID",
  64. }
  65. // StringToAlgorithm is the reverse of AlgorithmToString.
  66. var StringToAlgorithm = reverseInt8(AlgorithmToString)
  67. // AlgorithmToHash is a map of algorithm crypto hash IDs to crypto.Hash's.
  68. var AlgorithmToHash = map[uint8]crypto.Hash{
  69. RSAMD5: crypto.MD5, // Deprecated in RFC 6725
  70. DSA: crypto.SHA1,
  71. RSASHA1: crypto.SHA1,
  72. RSASHA1NSEC3SHA1: crypto.SHA1,
  73. RSASHA256: crypto.SHA256,
  74. ECDSAP256SHA256: crypto.SHA256,
  75. ECDSAP384SHA384: crypto.SHA384,
  76. RSASHA512: crypto.SHA512,
  77. ED25519: crypto.Hash(0),
  78. }
  79. // DNSSEC hashing algorithm codes.
  80. const (
  81. _ uint8 = iota
  82. SHA1 // RFC 4034
  83. SHA256 // RFC 4509
  84. GOST94 // RFC 5933
  85. SHA384 // Experimental
  86. SHA512 // Experimental
  87. )
  88. // HashToString is a map of hash IDs to names.
  89. var HashToString = map[uint8]string{
  90. SHA1: "SHA1",
  91. SHA256: "SHA256",
  92. GOST94: "GOST94",
  93. SHA384: "SHA384",
  94. SHA512: "SHA512",
  95. }
  96. // StringToHash is a map of names to hash IDs.
  97. var StringToHash = reverseInt8(HashToString)
  98. // DNSKEY flag values.
  99. const (
  100. SEP = 1
  101. REVOKE = 1 << 7
  102. ZONE = 1 << 8
  103. )
  104. // The RRSIG needs to be converted to wireformat with some of the rdata (the signature) missing.
  105. type rrsigWireFmt struct {
  106. TypeCovered uint16
  107. Algorithm uint8
  108. Labels uint8
  109. OrigTtl uint32
  110. Expiration uint32
  111. Inception uint32
  112. KeyTag uint16
  113. SignerName string `dns:"domain-name"`
  114. /* No Signature */
  115. }
  116. // Used for converting DNSKEY's rdata to wirefmt.
  117. type dnskeyWireFmt struct {
  118. Flags uint16
  119. Protocol uint8
  120. Algorithm uint8
  121. PublicKey string `dns:"base64"`
  122. /* Nothing is left out */
  123. }
  124. func divRoundUp(a, b int) int {
  125. return (a + b - 1) / b
  126. }
  127. // KeyTag calculates the keytag (or key-id) of the DNSKEY.
  128. func (k *DNSKEY) KeyTag() uint16 {
  129. if k == nil {
  130. return 0
  131. }
  132. var keytag int
  133. switch k.Algorithm {
  134. case RSAMD5:
  135. // Look at the bottom two bytes of the modules, which the last
  136. // item in the pubkey. We could do this faster by looking directly
  137. // at the base64 values. But I'm lazy.
  138. modulus, _ := fromBase64([]byte(k.PublicKey))
  139. if len(modulus) > 1 {
  140. x := binary.BigEndian.Uint16(modulus[len(modulus)-2:])
  141. keytag = int(x)
  142. }
  143. default:
  144. keywire := new(dnskeyWireFmt)
  145. keywire.Flags = k.Flags
  146. keywire.Protocol = k.Protocol
  147. keywire.Algorithm = k.Algorithm
  148. keywire.PublicKey = k.PublicKey
  149. wire := make([]byte, DefaultMsgSize)
  150. n, err := packKeyWire(keywire, wire)
  151. if err != nil {
  152. return 0
  153. }
  154. wire = wire[:n]
  155. for i, v := range wire {
  156. if i&1 != 0 {
  157. keytag += int(v) // must be larger than uint32
  158. } else {
  159. keytag += int(v) << 8
  160. }
  161. }
  162. keytag += (keytag >> 16) & 0xFFFF
  163. keytag &= 0xFFFF
  164. }
  165. return uint16(keytag)
  166. }
  167. // ToDS converts a DNSKEY record to a DS record.
  168. func (k *DNSKEY) ToDS(h uint8) *DS {
  169. if k == nil {
  170. return nil
  171. }
  172. ds := new(DS)
  173. ds.Hdr.Name = k.Hdr.Name
  174. ds.Hdr.Class = k.Hdr.Class
  175. ds.Hdr.Rrtype = TypeDS
  176. ds.Hdr.Ttl = k.Hdr.Ttl
  177. ds.Algorithm = k.Algorithm
  178. ds.DigestType = h
  179. ds.KeyTag = k.KeyTag()
  180. keywire := new(dnskeyWireFmt)
  181. keywire.Flags = k.Flags
  182. keywire.Protocol = k.Protocol
  183. keywire.Algorithm = k.Algorithm
  184. keywire.PublicKey = k.PublicKey
  185. wire := make([]byte, DefaultMsgSize)
  186. n, err := packKeyWire(keywire, wire)
  187. if err != nil {
  188. return nil
  189. }
  190. wire = wire[:n]
  191. owner := make([]byte, 255)
  192. off, err1 := PackDomainName(strings.ToLower(k.Hdr.Name), owner, 0, nil, false)
  193. if err1 != nil {
  194. return nil
  195. }
  196. owner = owner[:off]
  197. // RFC4034:
  198. // digest = digest_algorithm( DNSKEY owner name | DNSKEY RDATA);
  199. // "|" denotes concatenation
  200. // DNSKEY RDATA = Flags | Protocol | Algorithm | Public Key.
  201. var hash crypto.Hash
  202. switch h {
  203. case SHA1:
  204. hash = crypto.SHA1
  205. case SHA256:
  206. hash = crypto.SHA256
  207. case SHA384:
  208. hash = crypto.SHA384
  209. case SHA512:
  210. hash = crypto.SHA512
  211. default:
  212. return nil
  213. }
  214. s := hash.New()
  215. s.Write(owner)
  216. s.Write(wire)
  217. ds.Digest = hex.EncodeToString(s.Sum(nil))
  218. return ds
  219. }
  220. // ToCDNSKEY converts a DNSKEY record to a CDNSKEY record.
  221. func (k *DNSKEY) ToCDNSKEY() *CDNSKEY {
  222. c := &CDNSKEY{DNSKEY: *k}
  223. c.Hdr = k.Hdr
  224. c.Hdr.Rrtype = TypeCDNSKEY
  225. return c
  226. }
  227. // ToCDS converts a DS record to a CDS record.
  228. func (d *DS) ToCDS() *CDS {
  229. c := &CDS{DS: *d}
  230. c.Hdr = d.Hdr
  231. c.Hdr.Rrtype = TypeCDS
  232. return c
  233. }
  234. // Sign signs an RRSet. The signature needs to be filled in with the values:
  235. // Inception, Expiration, KeyTag, SignerName and Algorithm. The rest is copied
  236. // from the RRset. Sign returns a non-nill error when the signing went OK.
  237. // There is no check if RRSet is a proper (RFC 2181) RRSet. If OrigTTL is non
  238. // zero, it is used as-is, otherwise the TTL of the RRset is used as the
  239. // OrigTTL.
  240. func (rr *RRSIG) Sign(k crypto.Signer, rrset []RR) error {
  241. if k == nil {
  242. return ErrPrivKey
  243. }
  244. // s.Inception and s.Expiration may be 0 (rollover etc.), the rest must be set
  245. if rr.KeyTag == 0 || len(rr.SignerName) == 0 || rr.Algorithm == 0 {
  246. return ErrKey
  247. }
  248. rr.Hdr.Rrtype = TypeRRSIG
  249. rr.Hdr.Name = rrset[0].Header().Name
  250. rr.Hdr.Class = rrset[0].Header().Class
  251. if rr.OrigTtl == 0 { // If set don't override
  252. rr.OrigTtl = rrset[0].Header().Ttl
  253. }
  254. rr.TypeCovered = rrset[0].Header().Rrtype
  255. rr.Labels = uint8(CountLabel(rrset[0].Header().Name))
  256. if strings.HasPrefix(rrset[0].Header().Name, "*") {
  257. rr.Labels-- // wildcard, remove from label count
  258. }
  259. sigwire := new(rrsigWireFmt)
  260. sigwire.TypeCovered = rr.TypeCovered
  261. sigwire.Algorithm = rr.Algorithm
  262. sigwire.Labels = rr.Labels
  263. sigwire.OrigTtl = rr.OrigTtl
  264. sigwire.Expiration = rr.Expiration
  265. sigwire.Inception = rr.Inception
  266. sigwire.KeyTag = rr.KeyTag
  267. // For signing, lowercase this name
  268. sigwire.SignerName = strings.ToLower(rr.SignerName)
  269. // Create the desired binary blob
  270. signdata := make([]byte, DefaultMsgSize)
  271. n, err := packSigWire(sigwire, signdata)
  272. if err != nil {
  273. return err
  274. }
  275. signdata = signdata[:n]
  276. wire, err := rawSignatureData(rrset, rr)
  277. if err != nil {
  278. return err
  279. }
  280. hash, ok := AlgorithmToHash[rr.Algorithm]
  281. if !ok {
  282. return ErrAlg
  283. }
  284. switch rr.Algorithm {
  285. case ED25519:
  286. // ed25519 signs the raw message and performs hashing internally.
  287. // All other supported signature schemes operate over the pre-hashed
  288. // message, and thus ed25519 must be handled separately here.
  289. //
  290. // The raw message is passed directly into sign and crypto.Hash(0) is
  291. // used to signal to the crypto.Signer that the data has not been hashed.
  292. signature, err := sign(k, append(signdata, wire...), crypto.Hash(0), rr.Algorithm)
  293. if err != nil {
  294. return err
  295. }
  296. rr.Signature = toBase64(signature)
  297. default:
  298. h := hash.New()
  299. h.Write(signdata)
  300. h.Write(wire)
  301. signature, err := sign(k, h.Sum(nil), hash, rr.Algorithm)
  302. if err != nil {
  303. return err
  304. }
  305. rr.Signature = toBase64(signature)
  306. }
  307. return nil
  308. }
  309. func sign(k crypto.Signer, hashed []byte, hash crypto.Hash, alg uint8) ([]byte, error) {
  310. signature, err := k.Sign(rand.Reader, hashed, hash)
  311. if err != nil {
  312. return nil, err
  313. }
  314. switch alg {
  315. case RSASHA1, RSASHA1NSEC3SHA1, RSASHA256, RSASHA512:
  316. return signature, nil
  317. case ECDSAP256SHA256, ECDSAP384SHA384:
  318. ecdsaSignature := &struct {
  319. R, S *big.Int
  320. }{}
  321. if _, err := asn1.Unmarshal(signature, ecdsaSignature); err != nil {
  322. return nil, err
  323. }
  324. var intlen int
  325. switch alg {
  326. case ECDSAP256SHA256:
  327. intlen = 32
  328. case ECDSAP384SHA384:
  329. intlen = 48
  330. }
  331. signature := intToBytes(ecdsaSignature.R, intlen)
  332. signature = append(signature, intToBytes(ecdsaSignature.S, intlen)...)
  333. return signature, nil
  334. // There is no defined interface for what a DSA backed crypto.Signer returns
  335. case DSA, DSANSEC3SHA1:
  336. // t := divRoundUp(divRoundUp(p.PublicKey.Y.BitLen(), 8)-64, 8)
  337. // signature := []byte{byte(t)}
  338. // signature = append(signature, intToBytes(r1, 20)...)
  339. // signature = append(signature, intToBytes(s1, 20)...)
  340. // rr.Signature = signature
  341. case ED25519:
  342. return signature, nil
  343. }
  344. return nil, ErrAlg
  345. }
  346. // Verify validates an RRSet with the signature and key. This is only the
  347. // cryptographic test, the signature validity period must be checked separately.
  348. // This function copies the rdata of some RRs (to lowercase domain names) for the validation to work.
  349. func (rr *RRSIG) Verify(k *DNSKEY, rrset []RR) error {
  350. // First the easy checks
  351. if !IsRRset(rrset) {
  352. return ErrRRset
  353. }
  354. if rr.KeyTag != k.KeyTag() {
  355. return ErrKey
  356. }
  357. if rr.Hdr.Class != k.Hdr.Class {
  358. return ErrKey
  359. }
  360. if rr.Algorithm != k.Algorithm {
  361. return ErrKey
  362. }
  363. if strings.ToLower(rr.SignerName) != strings.ToLower(k.Hdr.Name) {
  364. return ErrKey
  365. }
  366. if k.Protocol != 3 {
  367. return ErrKey
  368. }
  369. // IsRRset checked that we have at least one RR and that the RRs in
  370. // the set have consistent type, class, and name. Also check that type and
  371. // class matches the RRSIG record.
  372. if rrset[0].Header().Class != rr.Hdr.Class {
  373. return ErrRRset
  374. }
  375. if rrset[0].Header().Rrtype != rr.TypeCovered {
  376. return ErrRRset
  377. }
  378. // RFC 4035 5.3.2. Reconstructing the Signed Data
  379. // Copy the sig, except the rrsig data
  380. sigwire := new(rrsigWireFmt)
  381. sigwire.TypeCovered = rr.TypeCovered
  382. sigwire.Algorithm = rr.Algorithm
  383. sigwire.Labels = rr.Labels
  384. sigwire.OrigTtl = rr.OrigTtl
  385. sigwire.Expiration = rr.Expiration
  386. sigwire.Inception = rr.Inception
  387. sigwire.KeyTag = rr.KeyTag
  388. sigwire.SignerName = strings.ToLower(rr.SignerName)
  389. // Create the desired binary blob
  390. signeddata := make([]byte, DefaultMsgSize)
  391. n, err := packSigWire(sigwire, signeddata)
  392. if err != nil {
  393. return err
  394. }
  395. signeddata = signeddata[:n]
  396. wire, err := rawSignatureData(rrset, rr)
  397. if err != nil {
  398. return err
  399. }
  400. sigbuf := rr.sigBuf() // Get the binary signature data
  401. if rr.Algorithm == PRIVATEDNS { // PRIVATEOID
  402. // TODO(miek)
  403. // remove the domain name and assume its ours?
  404. }
  405. hash, ok := AlgorithmToHash[rr.Algorithm]
  406. if !ok {
  407. return ErrAlg
  408. }
  409. switch rr.Algorithm {
  410. case RSASHA1, RSASHA1NSEC3SHA1, RSASHA256, RSASHA512, RSAMD5:
  411. // TODO(mg): this can be done quicker, ie. cache the pubkey data somewhere??
  412. pubkey := k.publicKeyRSA() // Get the key
  413. if pubkey == nil {
  414. return ErrKey
  415. }
  416. h := hash.New()
  417. h.Write(signeddata)
  418. h.Write(wire)
  419. return rsa.VerifyPKCS1v15(pubkey, hash, h.Sum(nil), sigbuf)
  420. case ECDSAP256SHA256, ECDSAP384SHA384:
  421. pubkey := k.publicKeyECDSA()
  422. if pubkey == nil {
  423. return ErrKey
  424. }
  425. // Split sigbuf into the r and s coordinates
  426. r := new(big.Int).SetBytes(sigbuf[:len(sigbuf)/2])
  427. s := new(big.Int).SetBytes(sigbuf[len(sigbuf)/2:])
  428. h := hash.New()
  429. h.Write(signeddata)
  430. h.Write(wire)
  431. if ecdsa.Verify(pubkey, h.Sum(nil), r, s) {
  432. return nil
  433. }
  434. return ErrSig
  435. case ED25519:
  436. pubkey := k.publicKeyED25519()
  437. if pubkey == nil {
  438. return ErrKey
  439. }
  440. if ed25519.Verify(pubkey, append(signeddata, wire...), sigbuf) {
  441. return nil
  442. }
  443. return ErrSig
  444. default:
  445. return ErrAlg
  446. }
  447. }
  448. // ValidityPeriod uses RFC1982 serial arithmetic to calculate
  449. // if a signature period is valid. If t is the zero time, the
  450. // current time is taken other t is. Returns true if the signature
  451. // is valid at the given time, otherwise returns false.
  452. func (rr *RRSIG) ValidityPeriod(t time.Time) bool {
  453. var utc int64
  454. if t.IsZero() {
  455. utc = time.Now().UTC().Unix()
  456. } else {
  457. utc = t.UTC().Unix()
  458. }
  459. modi := (int64(rr.Inception) - utc) / year68
  460. mode := (int64(rr.Expiration) - utc) / year68
  461. ti := int64(rr.Inception) + (modi * year68)
  462. te := int64(rr.Expiration) + (mode * year68)
  463. return ti <= utc && utc <= te
  464. }
  465. // Return the signatures base64 encodedig sigdata as a byte slice.
  466. func (rr *RRSIG) sigBuf() []byte {
  467. sigbuf, err := fromBase64([]byte(rr.Signature))
  468. if err != nil {
  469. return nil
  470. }
  471. return sigbuf
  472. }
  473. // publicKeyRSA returns the RSA public key from a DNSKEY record.
  474. func (k *DNSKEY) publicKeyRSA() *rsa.PublicKey {
  475. keybuf, err := fromBase64([]byte(k.PublicKey))
  476. if err != nil {
  477. return nil
  478. }
  479. // RFC 2537/3110, section 2. RSA Public KEY Resource Records
  480. // Length is in the 0th byte, unless its zero, then it
  481. // it in bytes 1 and 2 and its a 16 bit number
  482. explen := uint16(keybuf[0])
  483. keyoff := 1
  484. if explen == 0 {
  485. explen = uint16(keybuf[1])<<8 | uint16(keybuf[2])
  486. keyoff = 3
  487. }
  488. pubkey := new(rsa.PublicKey)
  489. pubkey.N = big.NewInt(0)
  490. shift := uint64((explen - 1) * 8)
  491. expo := uint64(0)
  492. for i := int(explen - 1); i > 0; i-- {
  493. expo += uint64(keybuf[keyoff+i]) << shift
  494. shift -= 8
  495. }
  496. // Remainder
  497. expo += uint64(keybuf[keyoff])
  498. if expo > (2<<31)+1 {
  499. // Larger expo than supported.
  500. // println("dns: F5 primes (or larger) are not supported")
  501. return nil
  502. }
  503. pubkey.E = int(expo)
  504. pubkey.N.SetBytes(keybuf[keyoff+int(explen):])
  505. return pubkey
  506. }
  507. // publicKeyECDSA returns the Curve public key from the DNSKEY record.
  508. func (k *DNSKEY) publicKeyECDSA() *ecdsa.PublicKey {
  509. keybuf, err := fromBase64([]byte(k.PublicKey))
  510. if err != nil {
  511. return nil
  512. }
  513. pubkey := new(ecdsa.PublicKey)
  514. switch k.Algorithm {
  515. case ECDSAP256SHA256:
  516. pubkey.Curve = elliptic.P256()
  517. if len(keybuf) != 64 {
  518. // wrongly encoded key
  519. return nil
  520. }
  521. case ECDSAP384SHA384:
  522. pubkey.Curve = elliptic.P384()
  523. if len(keybuf) != 96 {
  524. // Wrongly encoded key
  525. return nil
  526. }
  527. }
  528. pubkey.X = big.NewInt(0)
  529. pubkey.X.SetBytes(keybuf[:len(keybuf)/2])
  530. pubkey.Y = big.NewInt(0)
  531. pubkey.Y.SetBytes(keybuf[len(keybuf)/2:])
  532. return pubkey
  533. }
  534. func (k *DNSKEY) publicKeyDSA() *dsa.PublicKey {
  535. keybuf, err := fromBase64([]byte(k.PublicKey))
  536. if err != nil {
  537. return nil
  538. }
  539. if len(keybuf) < 22 {
  540. return nil
  541. }
  542. t, keybuf := int(keybuf[0]), keybuf[1:]
  543. size := 64 + t*8
  544. q, keybuf := keybuf[:20], keybuf[20:]
  545. if len(keybuf) != 3*size {
  546. return nil
  547. }
  548. p, keybuf := keybuf[:size], keybuf[size:]
  549. g, y := keybuf[:size], keybuf[size:]
  550. pubkey := new(dsa.PublicKey)
  551. pubkey.Parameters.Q = big.NewInt(0).SetBytes(q)
  552. pubkey.Parameters.P = big.NewInt(0).SetBytes(p)
  553. pubkey.Parameters.G = big.NewInt(0).SetBytes(g)
  554. pubkey.Y = big.NewInt(0).SetBytes(y)
  555. return pubkey
  556. }
  557. func (k *DNSKEY) publicKeyED25519() ed25519.PublicKey {
  558. keybuf, err := fromBase64([]byte(k.PublicKey))
  559. if err != nil {
  560. return nil
  561. }
  562. if len(keybuf) != ed25519.PublicKeySize {
  563. return nil
  564. }
  565. return keybuf
  566. }
  567. type wireSlice [][]byte
  568. func (p wireSlice) Len() int { return len(p) }
  569. func (p wireSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
  570. func (p wireSlice) Less(i, j int) bool {
  571. _, ioff, _ := UnpackDomainName(p[i], 0)
  572. _, joff, _ := UnpackDomainName(p[j], 0)
  573. return bytes.Compare(p[i][ioff+10:], p[j][joff+10:]) < 0
  574. }
  575. // Return the raw signature data.
  576. func rawSignatureData(rrset []RR, s *RRSIG) (buf []byte, err error) {
  577. wires := make(wireSlice, len(rrset))
  578. for i, r := range rrset {
  579. r1 := r.copy()
  580. r1.Header().Ttl = s.OrigTtl
  581. labels := SplitDomainName(r1.Header().Name)
  582. // 6.2. Canonical RR Form. (4) - wildcards
  583. if len(labels) > int(s.Labels) {
  584. // Wildcard
  585. r1.Header().Name = "*." + strings.Join(labels[len(labels)-int(s.Labels):], ".") + "."
  586. }
  587. // RFC 4034: 6.2. Canonical RR Form. (2) - domain name to lowercase
  588. r1.Header().Name = strings.ToLower(r1.Header().Name)
  589. // 6.2. Canonical RR Form. (3) - domain rdata to lowercase.
  590. // NS, MD, MF, CNAME, SOA, MB, MG, MR, PTR,
  591. // HINFO, MINFO, MX, RP, AFSDB, RT, SIG, PX, NXT, NAPTR, KX,
  592. // SRV, DNAME, A6
  593. //
  594. // RFC 6840 - Clarifications and Implementation Notes for DNS Security (DNSSEC):
  595. // Section 6.2 of [RFC4034] also erroneously lists HINFO as a record
  596. // that needs conversion to lowercase, and twice at that. Since HINFO
  597. // records contain no domain names, they are not subject to case
  598. // conversion.
  599. switch x := r1.(type) {
  600. case *NS:
  601. x.Ns = strings.ToLower(x.Ns)
  602. case *MD:
  603. x.Md = strings.ToLower(x.Md)
  604. case *MF:
  605. x.Mf = strings.ToLower(x.Mf)
  606. case *CNAME:
  607. x.Target = strings.ToLower(x.Target)
  608. case *SOA:
  609. x.Ns = strings.ToLower(x.Ns)
  610. x.Mbox = strings.ToLower(x.Mbox)
  611. case *MB:
  612. x.Mb = strings.ToLower(x.Mb)
  613. case *MG:
  614. x.Mg = strings.ToLower(x.Mg)
  615. case *MR:
  616. x.Mr = strings.ToLower(x.Mr)
  617. case *PTR:
  618. x.Ptr = strings.ToLower(x.Ptr)
  619. case *MINFO:
  620. x.Rmail = strings.ToLower(x.Rmail)
  621. x.Email = strings.ToLower(x.Email)
  622. case *MX:
  623. x.Mx = strings.ToLower(x.Mx)
  624. case *RP:
  625. x.Mbox = strings.ToLower(x.Mbox)
  626. x.Txt = strings.ToLower(x.Txt)
  627. case *AFSDB:
  628. x.Hostname = strings.ToLower(x.Hostname)
  629. case *RT:
  630. x.Host = strings.ToLower(x.Host)
  631. case *SIG:
  632. x.SignerName = strings.ToLower(x.SignerName)
  633. case *PX:
  634. x.Map822 = strings.ToLower(x.Map822)
  635. x.Mapx400 = strings.ToLower(x.Mapx400)
  636. case *NAPTR:
  637. x.Replacement = strings.ToLower(x.Replacement)
  638. case *KX:
  639. x.Exchanger = strings.ToLower(x.Exchanger)
  640. case *SRV:
  641. x.Target = strings.ToLower(x.Target)
  642. case *DNAME:
  643. x.Target = strings.ToLower(x.Target)
  644. }
  645. // 6.2. Canonical RR Form. (5) - origTTL
  646. wire := make([]byte, r1.len()+1) // +1 to be safe(r)
  647. off, err1 := PackRR(r1, wire, 0, nil, false)
  648. if err1 != nil {
  649. return nil, err1
  650. }
  651. wire = wire[:off]
  652. wires[i] = wire
  653. }
  654. sort.Sort(wires)
  655. for i, wire := range wires {
  656. if i > 0 && bytes.Equal(wire, wires[i-1]) {
  657. continue
  658. }
  659. buf = append(buf, wire...)
  660. }
  661. return buf, nil
  662. }
  663. func packSigWire(sw *rrsigWireFmt, msg []byte) (int, error) {
  664. // copied from zmsg.go RRSIG packing
  665. off, err := packUint16(sw.TypeCovered, msg, 0)
  666. if err != nil {
  667. return off, err
  668. }
  669. off, err = packUint8(sw.Algorithm, msg, off)
  670. if err != nil {
  671. return off, err
  672. }
  673. off, err = packUint8(sw.Labels, msg, off)
  674. if err != nil {
  675. return off, err
  676. }
  677. off, err = packUint32(sw.OrigTtl, msg, off)
  678. if err != nil {
  679. return off, err
  680. }
  681. off, err = packUint32(sw.Expiration, msg, off)
  682. if err != nil {
  683. return off, err
  684. }
  685. off, err = packUint32(sw.Inception, msg, off)
  686. if err != nil {
  687. return off, err
  688. }
  689. off, err = packUint16(sw.KeyTag, msg, off)
  690. if err != nil {
  691. return off, err
  692. }
  693. off, err = PackDomainName(sw.SignerName, msg, off, nil, false)
  694. if err != nil {
  695. return off, err
  696. }
  697. return off, nil
  698. }
  699. func packKeyWire(dw *dnskeyWireFmt, msg []byte) (int, error) {
  700. // copied from zmsg.go DNSKEY packing
  701. off, err := packUint16(dw.Flags, msg, 0)
  702. if err != nil {
  703. return off, err
  704. }
  705. off, err = packUint8(dw.Protocol, msg, off)
  706. if err != nil {
  707. return off, err
  708. }
  709. off, err = packUint8(dw.Algorithm, msg, off)
  710. if err != nil {
  711. return off, err
  712. }
  713. off, err = packStringBase64(dw.PublicKey, msg, off)
  714. if err != nil {
  715. return off, err
  716. }
  717. return off, nil
  718. }