/* Copyright 2019 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package cloudup import ( "context" "fmt" "net" "os" "strings" "k8s.io/klog" "k8s.io/kops/dns-controller/pkg/dns" "k8s.io/kops/dnsprovider/pkg/dnsprovider" "k8s.io/kops/dnsprovider/pkg/dnsprovider/rrstype" "k8s.io/kops/pkg/apis/kops" kopsdns "k8s.io/kops/pkg/dns" "k8s.io/kops/pkg/featureflag" "k8s.io/kops/pkg/model" "k8s.io/kops/upup/pkg/fi" ) const ( // This IP is from TEST-NET-3 // https://en.wikipedia.org/wiki/Reserved_IP_addresses PlaceholderIP = "203.0.113.123" PlaceholderTTL = 10 // DigitalOcean's DNS servers require a certain minimum TTL (it's 30), keeping 60 here. PlaceholderTTLDigitialOcean = 60 ) func findZone(cluster *kops.Cluster, cloud fi.Cloud) (dnsprovider.Zone, error) { dns, err := cloud.DNS() if err != nil { return nil, fmt.Errorf("error building DNS provider: %v", err) } zonesProvider, ok := dns.Zones() if !ok { return nil, fmt.Errorf("error getting DNS zones provider") } zones, err := zonesProvider.List() if err != nil { return nil, fmt.Errorf("error listing DNS zones: %v", err) } var matches []dnsprovider.Zone findName := strings.TrimSuffix(cluster.Spec.DNSZone, ".") for _, zone := range zones { id := zone.ID() name := strings.TrimSuffix(zone.Name(), ".") if id == cluster.Spec.DNSZone || name == findName { matches = append(matches, zone) } } if len(matches) == 0 { return nil, fmt.Errorf("cannot find DNS Zone %q. Please pre-create the zone and set up NS records so that it resolves", cluster.Spec.DNSZone) } if len(matches) > 1 { klog.Infof("Found multiple DNS Zones matching %q, please specify --dns-zone= to indicate the one you want", cluster.Spec.DNSZone) for _, zone := range zones { id := zone.ID() klog.Infof("\t--dns-zone=%s", id) } return nil, fmt.Errorf("found multiple DNS Zones matching %q", cluster.Spec.DNSZone) } zone := matches[0] return zone, nil } func validateDNS(cluster *kops.Cluster, cloud fi.Cloud) error { kopsModelContext := &model.KopsModelContext{ Cluster: cluster, // We are not initializing a lot of the fields here; revisit once UsePrivateDNS is "real" } if kopsModelContext.UsePrivateDNS() { klog.Infof("Private DNS: skipping DNS validation") return nil } zone, err := findZone(cluster, cloud) if err != nil { return err } dnsName := strings.TrimSuffix(zone.Name(), ".") klog.V(2).Infof("Doing DNS lookup to verify NS records for %q", dnsName) ns, err := net.LookupNS(dnsName) if err != nil { return fmt.Errorf("error doing DNS lookup for NS records for %q: %v", dnsName, err) } if len(ns) == 0 { if os.Getenv("DNS_IGNORE_NS_CHECK") == "" { return fmt.Errorf("NS records not found for %q - please make sure they are correctly configured", dnsName) } else { klog.Warningf("Ignoring failed NS record check because DNS_IGNORE_NS_CHECK is set") } } else { var hosts []string for _, n := range ns { hosts = append(hosts, n.Host) } klog.V(2).Infof("Found NS records for %q: %v", dnsName, hosts) } return nil } func precreateDNS(ctx context.Context, cluster *kops.Cluster, cloud fi.Cloud) error { // TODO: Move to update if !featureflag.DNSPreCreate.Enabled() { klog.V(4).Infof("Skipping DNS record pre-creation because feature flag not enabled") return nil } // We precreate some DNS names (where they don't exist), with a dummy IP address // This avoids hitting negative TTL on DNS lookups, which tend to be very long // If we get the names wrong here, it doesn't really matter (extra DNS name, slower boot) dnsHostnames := buildPrecreateDNSHostnames(cluster) { var filtered []string for _, name := range dnsHostnames { if !kopsdns.IsGossipHostname(name) { filtered = append(filtered, name) } } dnsHostnames = filtered } if len(dnsHostnames) == 0 { klog.Infof("No DNS records to pre-create") return nil } klog.Infof("Pre-creating DNS records") zone, err := findZone(cluster, cloud) if err != nil { return err } rrs, ok := zone.ResourceRecordSets() if !ok { return fmt.Errorf("error getting DNS resource records for %q", zone.Name()) } recordsMap := make(map[string]dnsprovider.ResourceRecordSet) // TODO: We should change the filter to be a suffix match instead //records, err := rrs.List("", "") records, err := rrs.List() if err != nil { return fmt.Errorf("error listing DNS resource records for %q: %v", zone.Name(), err) } for _, record := range records { name := dns.EnsureDotSuffix(record.Name()) key := string(record.Type()) + "::" + name recordsMap[key] = record } changeset := rrs.StartChangeset() // TODO: Add ChangeSet.IsEmpty() method var created []string for _, dnsHostname := range dnsHostnames { dnsHostname = dns.EnsureDotSuffix(dnsHostname) found := false dnsRecord := recordsMap["A::"+dnsHostname] if dnsRecord != nil { rrdatas := dnsRecord.Rrdatas() if len(rrdatas) > 0 { klog.V(4).Infof("Found DNS record %s => %s; won't create", dnsHostname, rrdatas) found = true } else { // This is probably an alias target; leave it alone... klog.V(4).Infof("Found DNS record %s, but no records", dnsHostname) found = true } } if found { continue } klog.V(2).Infof("Pre-creating DNS record %s => %s", dnsHostname, PlaceholderIP) if cloud.ProviderID() == kops.CloudProviderDO { changeset.Add(rrs.New(dnsHostname, []string{PlaceholderIP}, PlaceholderTTLDigitialOcean, rrstype.A)) } else { changeset.Add(rrs.New(dnsHostname, []string{PlaceholderIP}, PlaceholderTTL, rrstype.A)) } created = append(created, dnsHostname) } if len(created) != 0 { err := changeset.Apply(ctx) if err != nil { return fmt.Errorf("error pre-creating DNS records: %v", err) } klog.V(2).Infof("Pre-created DNS names: %v", created) } return nil } // buildPrecreateDNSHostnames returns the hostnames we should precreate func buildPrecreateDNSHostnames(cluster *kops.Cluster) []string { dnsInternalSuffix := ".internal." + cluster.ObjectMeta.Name var dnsHostnames []string if cluster.Spec.MasterPublicName != "" { dnsHostnames = append(dnsHostnames, cluster.Spec.MasterPublicName) } else { klog.Warningf("cannot pre-create MasterPublicName - not set") } if cluster.Spec.MasterInternalName != "" { dnsHostnames = append(dnsHostnames, cluster.Spec.MasterInternalName) } else { klog.Warningf("cannot pre-create MasterInternalName - not set") } for _, etcdCluster := range cluster.Spec.EtcdClusters { if etcdCluster.Provider == kops.EtcdProviderTypeManager { continue } etcClusterName := "etcd-" + etcdCluster.Name if etcdCluster.Name == "main" { // Special case etcClusterName = "etcd" } for _, etcdClusterMember := range etcdCluster.Members { name := etcClusterName + "-" + etcdClusterMember.Name + dnsInternalSuffix dnsHostnames = append(dnsHostnames, name) } } return dnsHostnames }