mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
9bd7294fad
Merge in DNS/adguard-home from mv-netutil to master Squashed commit of the following: commit 5698fceed656dca7f8644e7dbd7e1a7fc57a68ce Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Aug 9 15:44:17 2021 +0300 dnsforward: add todos commit 122fb6e3de658b296931e0f608cf24ef85547666 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Aug 9 14:27:46 2021 +0300 all: mv some utilities to netutil
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
package aghnet
|
|
|
|
import (
|
|
"net"
|
|
"strconv"
|
|
)
|
|
|
|
// The maximum lengths of generated hostnames for different IP versions.
|
|
const (
|
|
ipv4HostnameMaxLen = len("192-168-100-100")
|
|
ipv6HostnameMaxLen = len("ff80-f076-0000-0000-0000-0000-0000-0010")
|
|
)
|
|
|
|
// generateIPv4Hostname generates the hostname for specific IP version.
|
|
func generateIPv4Hostname(ipv4 net.IP) (hostname string) {
|
|
hnData := make([]byte, 0, ipv4HostnameMaxLen)
|
|
for i, part := range ipv4 {
|
|
if i > 0 {
|
|
hnData = append(hnData, '-')
|
|
}
|
|
hnData = strconv.AppendUint(hnData, uint64(part), 10)
|
|
}
|
|
|
|
return string(hnData)
|
|
}
|
|
|
|
// generateIPv6Hostname generates the hostname for specific IP version.
|
|
func generateIPv6Hostname(ipv6 net.IP) (hostname string) {
|
|
hnData := make([]byte, 0, ipv6HostnameMaxLen)
|
|
for i, partsNum := 0, net.IPv6len/2; i < partsNum; i++ {
|
|
if i > 0 {
|
|
hnData = append(hnData, '-')
|
|
}
|
|
for _, val := range ipv6[i*2 : i*2+2] {
|
|
if val < 10 {
|
|
hnData = append(hnData, '0')
|
|
}
|
|
hnData = strconv.AppendUint(hnData, uint64(val), 16)
|
|
}
|
|
}
|
|
|
|
return string(hnData)
|
|
}
|
|
|
|
// GenerateHostname generates the hostname from ip. In case of using IPv4 the
|
|
// result should be like:
|
|
//
|
|
// 192-168-10-1
|
|
//
|
|
// In case of using IPv6, the result is like:
|
|
//
|
|
// ff80-f076-0000-0000-0000-0000-0000-0010
|
|
//
|
|
func GenerateHostname(ip net.IP) (hostname string) {
|
|
if ipv4 := ip.To4(); ipv4 != nil {
|
|
return generateIPv4Hostname(ipv4)
|
|
} else if ipv6 := ip.To16(); ipv6 != nil {
|
|
return generateIPv6Hostname(ipv6)
|
|
}
|
|
|
|
return ""
|
|
}
|