2021-10-02 06:13:05 -04:00
|
|
|
package headscale
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-10-09 06:22:13 -04:00
|
|
|
"strings"
|
2021-10-02 06:13:05 -04:00
|
|
|
|
2021-10-09 06:22:13 -04:00
|
|
|
"inet.af/netaddr"
|
2021-10-02 06:13:05 -04:00
|
|
|
"tailscale.com/util/dnsname"
|
|
|
|
)
|
|
|
|
|
2021-10-09 06:22:13 -04:00
|
|
|
func generateMagicDNSRootDomains(ipPrefix netaddr.IPPrefix, baseDomain string) (*[]dnsname.FQDN, error) {
|
|
|
|
base, err := dnsname.ToFQDN(baseDomain)
|
2021-10-02 06:13:05 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-10-04 15:47:09 -04:00
|
|
|
// TODO(juanfont): we are not handing out IPv6 addresses yet
|
2021-10-05 13:00:40 -04:00
|
|
|
// and in fact this is Tailscale.com's range (note the fd7a:115c:a1e0: range in the fc00::/7 network)
|
2021-10-02 06:13:05 -04:00
|
|
|
ipv6base := dnsname.FQDN("0.e.1.a.c.5.1.1.a.7.d.f.ip6.arpa.")
|
|
|
|
fqdns := []dnsname.FQDN{base, ipv6base}
|
|
|
|
|
2021-10-09 06:22:13 -04:00
|
|
|
netRange := ipPrefix.IPNet()
|
|
|
|
maskBits, _ := netRange.Mask.Size()
|
|
|
|
|
|
|
|
lastByte := maskBits / 8
|
|
|
|
unmaskedBits := 8 - maskBits%8
|
|
|
|
min := uint(netRange.IP[lastByte])
|
|
|
|
max := uint((min + 1<<uint(unmaskedBits)) - 1)
|
|
|
|
|
|
|
|
rdnsSlice := []string{}
|
|
|
|
for i := lastByte - 1; i >= 0; i-- {
|
|
|
|
rdnsSlice = append(rdnsSlice, fmt.Sprintf("%d", netRange.IP[i]))
|
|
|
|
}
|
|
|
|
rdnsSlice = append(rdnsSlice, "in-addr.arpa.")
|
|
|
|
rdnsBase := strings.Join(rdnsSlice, ".")
|
|
|
|
|
|
|
|
for i := min; i <= max; i++ {
|
|
|
|
fqdn, err := dnsname.ToFQDN(fmt.Sprintf("%d.%s", i, rdnsBase))
|
2021-10-02 06:13:05 -04:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fqdns = append(fqdns, fqdn)
|
|
|
|
}
|
|
|
|
return &fqdns, nil
|
|
|
|
}
|