mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-23 07:03:01 +08:00
210 lines
7.4 KiB
Go
210 lines
7.4 KiB
Go
package models
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
/* .target is kind of a mess.
|
|
If an rType has more than one field, one field goes in .target and the remaining are stored in bespoke fields.
|
|
Not the best design, but we're stuck with it until we re-do RecordConfig, possibly using generics.
|
|
*/
|
|
|
|
// GetTargetIP returns the net.IP stored in .target.
|
|
func (rc *RecordConfig) GetTargetIP() net.IP {
|
|
if rc.Type == "A" {
|
|
x := rc.AsA().A
|
|
return net.IPv4(x[0], x[1], x[2], x[3])
|
|
}
|
|
if rc.Type != "A" && rc.Type != "AAAA" {
|
|
panic(fmt.Errorf("GetTargetIP called on an inappropriate rtype (%s)", rc.Type))
|
|
}
|
|
return net.ParseIP(rc.target)
|
|
}
|
|
|
|
// GetTargetCombinedFunc returns all the rdata fields of a RecordConfig as one
|
|
// string. How TXT records are encoded is defined by encodeFn. If encodeFn is
|
|
// nil the TXT data is returned unaltered.
|
|
func (rc *RecordConfig) GetTargetCombinedFunc(encodeFn func(s string) string) string {
|
|
if rc.Type == "TXT" {
|
|
if encodeFn == nil {
|
|
return rc.target
|
|
}
|
|
return encodeFn(rc.target)
|
|
}
|
|
return rc.GetTargetCombined()
|
|
}
|
|
|
|
// GetTargetCombined returns a string with the various fields combined.
|
|
// For example, an MX record might output `10 mx10.example.tld`.
|
|
// WARNING: How TXT records are handled is buggy but we can't change it because
|
|
// code depends on the bugs. Use Get GetTargetCombinedFunc() instead.
|
|
func (rc *RecordConfig) GetTargetCombined() string {
|
|
if IsTypeUpgraded(rc.Type) {
|
|
return rc.Display
|
|
}
|
|
|
|
// Pseudo records:
|
|
if _, ok := dns.StringToType[rc.Type]; !ok {
|
|
switch rc.Type { // #rtype_variations
|
|
case "R53_ALIAS":
|
|
// Differentiate between multiple R53_ALIASs on the same label.
|
|
return fmt.Sprintf("%s atype=%s zone_id=%s evaluate_target_health=%s", rc.target, rc.R53Alias["type"], rc.R53Alias["zone_id"], rc.R53Alias["evaluate_target_health"])
|
|
case "AZURE_ALIAS":
|
|
// Differentiate between multiple AZURE_ALIASs on the same label.
|
|
return fmt.Sprintf("%s atype=%s", rc.target, rc.AzureAlias["type"])
|
|
default:
|
|
// Just return the target.
|
|
return rc.target
|
|
}
|
|
}
|
|
|
|
// Everything else
|
|
switch rc.Type {
|
|
case "UNKNOWN":
|
|
return fmt.Sprintf("rtype=%s rdata=%s", rc.UnknownTypeName, rc.target)
|
|
case "TXT":
|
|
return rc.zoneFileQuoted()
|
|
case "SOA":
|
|
return fmt.Sprintf("%s %v %d %d %d %d %d", rc.target, rc.SoaMbox, rc.SoaSerial, rc.SoaRefresh, rc.SoaRetry, rc.SoaExpire, rc.SoaMinttl)
|
|
}
|
|
|
|
return rc.zoneFileQuoted()
|
|
}
|
|
|
|
// zoneFileQuoted returns the rData as would be quoted in a zonefile.
|
|
func (rc *RecordConfig) zoneFileQuoted() string {
|
|
// We cheat by converting to a dns.RR and use the String() function.
|
|
// This combines all the data for us, and even does proper quoting.
|
|
// Sadly String() always includes a header, which we must strip out.
|
|
// TODO(tlim): Request the dns project add a function that returns
|
|
// the string without the header.
|
|
if rc.Type == "NAPTR" && rc.GetTargetField() == "" {
|
|
rc.MustSetTarget(".")
|
|
}
|
|
rr := rc.ToRR()
|
|
header := rr.Header().String()
|
|
full := rr.String()
|
|
if !strings.HasPrefix(full, header) {
|
|
panic("assertion failed. dns.Hdr.String() behavior has changed in an incompatible way")
|
|
}
|
|
return full[len(header):]
|
|
}
|
|
|
|
// GetTargetRFC1035Quoted returns the target as it would be in an
|
|
// RFC1035-style zonefile.
|
|
// Do not use this function if RecordConfig might be a pseudo-rtype
|
|
// such as R53_ALIAS. Use GetTargetCombined() instead.
|
|
func (rc *RecordConfig) GetTargetRFC1035Quoted() string {
|
|
return rc.zoneFileQuoted()
|
|
}
|
|
|
|
// GetTargetDebug returns a string with the various fields spelled out.
|
|
func (rc *RecordConfig) GetTargetDebug() string {
|
|
target := rc.target
|
|
if rc.Type == "TXT" {
|
|
target = fmt.Sprintf("%q", target)
|
|
}
|
|
content := fmt.Sprintf("%s %s %s %d", rc.Type, rc.NameFQDN, target, rc.TTL)
|
|
switch rc.Type { // #rtype_variations
|
|
case "A", "AAAA", "AKAMAICDN", "CNAME", "DHCID", "NS", "PTR", "TXT":
|
|
// Nothing special.
|
|
case "AZURE_ALIAS":
|
|
content += " type=" + rc.AzureAlias["type"]
|
|
case "CAA":
|
|
content += fmt.Sprintf(" caatag=%s caaflag=%d", rc.CaaTag, rc.CaaFlag)
|
|
case "DS":
|
|
content += fmt.Sprintf(" ds_algorithm=%d ds_keytag=%d ds_digesttype=%d ds_digest=%s", rc.DsAlgorithm, rc.DsKeyTag, rc.DsDigestType, rc.DsDigest)
|
|
case "DNSKEY":
|
|
content += fmt.Sprintf(" dnskey_flags=%d dnskey_protocol=%d dnskey_algorithm=%d dnskey_publickey=%s", rc.DnskeyFlags, rc.DnskeyProtocol, rc.DnskeyAlgorithm, rc.DnskeyPublicKey)
|
|
case "MX":
|
|
content += fmt.Sprintf(" pref=%d", rc.MxPreference)
|
|
case "NAPTR":
|
|
content += fmt.Sprintf(" naptrorder=%d naptrpreference=%d naptrflags=%s naptrservice=%s naptrregexp=%s", rc.NaptrOrder, rc.NaptrPreference, rc.NaptrFlags, rc.NaptrService, rc.NaptrRegexp)
|
|
case "R53_ALIAS":
|
|
content += fmt.Sprintf(" type=%s zone_id=%s evaluate_target_health=%s", rc.R53Alias["type"], rc.R53Alias["zone_id"], rc.R53Alias["evaluate_target_health"])
|
|
case "SOA":
|
|
content = fmt.Sprintf("%s ns=%v mbox=%v serial=%v refresh=%v retry=%v expire=%v minttl=%v", rc.Type, rc.target, rc.SoaMbox, rc.SoaSerial, rc.SoaRefresh, rc.SoaRetry, rc.SoaExpire, rc.SoaMinttl)
|
|
case "SRV":
|
|
content += fmt.Sprintf(" srvpriority=%d srvweight=%d srvport=%d", rc.SrvPriority, rc.SrvWeight, rc.SrvPort)
|
|
case "SSHFP":
|
|
content += fmt.Sprintf(" sshfpalgorithm=%d sshfpfingerprint=%d", rc.SshfpAlgorithm, rc.SshfpFingerprint)
|
|
case "SVCB", "HTTPS":
|
|
// HTTPS is only a special subform of the SVCB Record
|
|
content += fmt.Sprintf(" priority=%d params=%v", rc.SvcPriority, rc.SvcParams)
|
|
case "TLSA":
|
|
content += fmt.Sprintf(" tlsausage=%d tlsaselector=%d tlsamatchingtype=%d", rc.TlsaUsage, rc.TlsaSelector, rc.TlsaMatchingType)
|
|
default:
|
|
panic(fmt.Errorf("rc.String rtype %v unimplemented", rc.Type))
|
|
// We panic so that we quickly find any switch statements
|
|
// that have not been updated for a new RR type.
|
|
}
|
|
for k, v := range rc.Metadata {
|
|
content += fmt.Sprintf(" %s=%s", k, v)
|
|
}
|
|
return content
|
|
}
|
|
|
|
// SetTarget sets the target, assuming that the rtype is appropriate.
|
|
func (rc *RecordConfig) SetTarget(s string) error {
|
|
// Legacy
|
|
rc.target = s
|
|
|
|
return rc.ImportFromLegacy("")
|
|
|
|
// switch rc.Type { // #rtype_variations
|
|
// case "A":
|
|
// return rc.SetTargetA(s)
|
|
// case "MX":
|
|
// if rc.Fields == nil {
|
|
// return rc.SetTargetMX(rc.MxPreference, s)
|
|
// }
|
|
// f := rc.AsMX()
|
|
// return rc.SetTargetMX(f.Preference, s)
|
|
// case "CNAME":
|
|
// return rc.SetTargetCNAME(s)
|
|
// case "SRV":
|
|
// if rc.Fields == nil {
|
|
// return rc.SetTargetSRV(rc.SrvPriority, rc.SrvWeight, rc.SrvPort, s)
|
|
// }
|
|
// f := rc.AsSRV()
|
|
// return rc.SetTargetSRV(f.Priority, f.Weight, f.Port, s)
|
|
// }
|
|
// return nil
|
|
}
|
|
|
|
// MustSetTarget is like SetTarget, but panics if an error occurs.
|
|
// It should only be used in _test.go files and in the init() function.
|
|
func (rc *RecordConfig) MustSetTarget(s string) {
|
|
err := rc.SetTarget(s)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// SetTargetIP sets the target to an IP, verifying this is an appropriate rtype.
|
|
func (rc *RecordConfig) SetTargetIP(ip net.IP) error {
|
|
// TODO(tlim): Verify the rtype is appropriate for an IP.
|
|
return rc.SetTarget(ip.String())
|
|
}
|
|
|
|
// SetTargetA sets the target to an A record.
|
|
func (rc *RecordConfig) SetTargetA(s string) error {
|
|
rdata, err := ParseA([]string{s}, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return RecordUpdateFields(rc, rdata, nil)
|
|
}
|
|
|
|
// SetTargetCNAME sets the target to an A record.
|
|
func (rc *RecordConfig) SetTargetCNAME(s string) error {
|
|
rdata, err := ParseCNAME([]string{s}, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return RecordUpdateFields(rc, rdata, nil)
|
|
}
|