Files
kubernetes/test/images/agnhost/dns/dns_windows.go
Valerii Ponomarov c55b6cdbb4 agnhost image: use actual DNS domain instead of hardcoded cluster.local
'agnhost' image uses hardcoded 'cluster.local' value for DNS domain.
It leads to failure of a bunch of HPA tests when test cluster is
configured to use custom DNS domain and there is no alias for
default 'cluster.local' one.
So, fix it by reusing it's own function for reading DNS domain suffixes.

Signed-off-by: Valerii Ponomarov <kiparis.kh@gmail.com>
2020-09-24 14:24:16 +03:00

150 lines
3.9 KiB
Go

// +build windows
/*
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 dns
import (
"fmt"
"strings"
"syscall"
"unsafe"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
)
const (
etcHostsFile = "C:/Windows/System32/drivers/etc/hosts"
netRegistry = `System\CurrentControlSet\Services\TCPIP\Parameters`
netIfacesRegistry = `System\CurrentControlSet\Services\TCPIP\Parameters\Interfaces`
maxHostnameLen = 128
maxDomainNameLen = 128
maxScopeIDLen = 256
)
// FixedInfo information: https://docs.microsoft.com/en-us/windows/win32/api/iptypes/ns-iptypes-fixed_info_w2ksp1
type FixedInfo struct {
HostName [maxHostnameLen + 4]byte
DomainName [maxDomainNameLen + 4]byte
CurrentDNSServer *syscall.IpAddrString
DNSServerList syscall.IpAddrString
NodeType uint32
ScopeID [maxScopeIDLen + 4]byte
EnableRouting uint32
EnableProxy uint32
EnableDNS uint32
}
var (
// GetNetworkParams can be found in iphlpapi.dll
// see: https://docs.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getnetworkparams?redirectedfrom=MSDN
iphlpapidll = windows.MustLoadDLL("iphlpapi.dll")
procGetNetworkParams = iphlpapidll.MustFindProc("GetNetworkParams")
)
func elemInList(elem string, list []string) bool {
for _, e := range list {
if e == elem {
return true
}
}
return false
}
func getRegistryValue(reg, key string) string {
regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, reg, registry.QUERY_VALUE)
if err != nil {
return ""
}
defer regKey.Close()
regValue, _, err := regKey.GetStringValue(key)
if err != nil {
return ""
}
return regValue
}
// GetDNSSuffixList reads DNS config file and returns the list of configured DNS suffixes
func GetDNSSuffixList() []string {
// We start with the general suffix list that apply to all network connections.
allSuffixes := []string{}
suffixes := getRegistryValue(netRegistry, "SearchList")
if suffixes != "" {
allSuffixes = strings.Split(suffixes, ",")
}
// Then we append the network-specific DNS suffix lists.
regKey, err := registry.OpenKey(registry.LOCAL_MACHINE, netIfacesRegistry, registry.ENUMERATE_SUB_KEYS)
if err != nil {
panic(err)
}
defer regKey.Close()
ifaces, err := regKey.ReadSubKeyNames(0)
if err != nil {
panic(err)
}
for _, iface := range ifaces {
suffixes := getRegistryValue(fmt.Sprintf("%s\\%s", netIfacesRegistry, iface), "SearchList")
if suffixes == "" {
continue
}
for _, suffix := range strings.Split(suffixes, ",") {
if !elemInList(suffix, allSuffixes) {
allSuffixes = append(allSuffixes, suffix)
}
}
}
return allSuffixes
}
func getNetworkParams() *FixedInfo {
// We don't know how big we should make the byte buffer, but the call will tell us by
// setting the size afterwards.
var size int
buffer := make([]byte, 1)
procGetNetworkParams.Call(
uintptr(unsafe.Pointer(&buffer[0])),
uintptr(unsafe.Pointer(&size)),
)
buffer = make([]byte, size)
procGetNetworkParams.Call(
uintptr(unsafe.Pointer(&buffer[0])),
uintptr(unsafe.Pointer(&size)),
)
info := (*FixedInfo)(unsafe.Pointer(&buffer[0]))
return info
}
func getDNSServerList() []string {
dnsServerList := []string{}
fixedInfo := getNetworkParams()
list := &(fixedInfo.DNSServerList)
for list != nil {
dnsServer := strings.TrimRight(string(list.IpAddress.String[:]), "\x00")
dnsServerList = append(dnsServerList, dnsServer)
list = list.Next
}
return dnsServerList
}