Files
cloudpods/pkg/dns/reverse.go
2023-08-29 15:44:20 +08:00

70 lines
2.1 KiB
Go

// Copyright 2019 Yunion
//
// 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 dns
import (
"strings"
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/etcd/msg"
"github.com/coredns/coredns/plugin/pkg/dnsutil"
"github.com/coredns/coredns/request"
"yunion.io/x/pkg/gotypes"
"yunion.io/x/onecloud/pkg/compute/models"
)
// Reverse implements the ServiceBackend interface
func (r *SRegionDNS) Reverse(state request.Request, exact bool, opt plugin.Options) (services []msg.Service, err error) {
ip := dnsutil.ExtractAddressFromReverse(state.Name())
if ip == "" {
_, e := r.Records(state, exact)
return nil, e
}
records, err := r.getNameForIp(ip, state)
return records, err
}
func (r *SRegionDNS) getNameForIp(ip string, state request.Request) ([]msg.Service, error) {
req, e := parseRequest(state)
if e != nil {
return nil, e
}
// 1. try local dns records table
rec, _ := models.DnsRecordManager.QueryDns(req.ProjectId(), req.Name(), req.Type())
if !gotypes.IsNil(rec) {
return []msg.Service{{Host: rec.DnsValue, TTL: uint32(rec.TTL)}}, nil
}
// 2. try hosts table
host := models.HostnetworkManager.GetHostByAddress(ip)
if host != nil {
return []msg.Service{{Host: r.joinDomain(host.Name), TTL: defaultTTL}}, nil
}
// 3. try guests table
guest := models.GuestnetworkManager.GetGuestByAddress(ip)
if guest != nil {
return []msg.Service{{Host: r.joinDomain(guest.Name), TTL: defaultTTL}}, nil
}
return nil, errNotFound
}
func (r *SRegionDNS) joinDomain(name string) string {
return strings.Join([]string{name, r.PrimaryZone}, ".")
}