2017-10-07 00:16:47 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2012-03-27 23:13:14 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
import (
|
2017-10-07 00:16:47 +00:00
|
|
|
"context"
|
2018-12-28 15:30:48 +00:00
|
|
|
"sync"
|
2014-09-21 17:33:12 +00:00
|
|
|
)
|
|
|
|
|
2017-10-07 00:16:47 +00:00
|
|
|
// BUG(rsc,mikio): On DragonFly BSD and OpenBSD, listening on the
|
|
|
|
// "tcp" and "udp" networks does not listen for both IPv4 and IPv6
|
|
|
|
// connections. This is due to the fact that IPv4 traffic will not be
|
|
|
|
// routed to an IPv6 socket - two separate sockets are required if
|
|
|
|
// both address families are to be supported.
|
|
|
|
// See inet6(4) for details.
|
|
|
|
|
2018-12-28 15:30:48 +00:00
|
|
|
type ipStackCapabilities struct {
|
|
|
|
sync.Once // guards following
|
|
|
|
ipv4Enabled bool
|
|
|
|
ipv6Enabled bool
|
|
|
|
ipv4MappedIPv6Enabled bool
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
|
2018-12-28 15:30:48 +00:00
|
|
|
var ipStackCaps ipStackCapabilities
|
2014-09-21 17:33:12 +00:00
|
|
|
|
2018-12-28 15:30:48 +00:00
|
|
|
// supportsIPv4 reports whether the platform supports IPv4 networking
|
|
|
|
// functionality.
|
|
|
|
func supportsIPv4() bool {
|
|
|
|
ipStackCaps.Once.Do(ipStackCaps.probe)
|
|
|
|
return ipStackCaps.ipv4Enabled
|
|
|
|
}
|
|
|
|
|
|
|
|
// supportsIPv6 reports whether the platform supports IPv6 networking
|
|
|
|
// functionality.
|
|
|
|
func supportsIPv6() bool {
|
|
|
|
ipStackCaps.Once.Do(ipStackCaps.probe)
|
|
|
|
return ipStackCaps.ipv6Enabled
|
|
|
|
}
|
|
|
|
|
|
|
|
// supportsIPv4map reports whether the platform supports mapping an
|
|
|
|
// IPv4 address inside an IPv6 address at transport layer
|
|
|
|
// protocols. See RFC 4291, RFC 4038 and RFC 3493.
|
|
|
|
func supportsIPv4map() bool {
|
|
|
|
ipStackCaps.Once.Do(ipStackCaps.probe)
|
|
|
|
return ipStackCaps.ipv4MappedIPv6Enabled
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// An addrList represents a list of network endpoint addresses.
|
|
|
|
type addrList []Addr
|
2014-09-21 17:33:12 +00:00
|
|
|
|
2018-12-28 15:30:48 +00:00
|
|
|
// isIPv4 reports whether addr contains an IPv4 address.
|
2017-04-10 11:32:00 +00:00
|
|
|
func isIPv4(addr Addr) bool {
|
|
|
|
switch addr := addr.(type) {
|
|
|
|
case *TCPAddr:
|
|
|
|
return addr.IP.To4() != nil
|
|
|
|
case *UDPAddr:
|
|
|
|
return addr.IP.To4() != nil
|
|
|
|
case *IPAddr:
|
|
|
|
return addr.IP.To4() != nil
|
|
|
|
}
|
|
|
|
return false
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
|
2018-12-28 15:30:48 +00:00
|
|
|
// isNotIPv4 reports whether addr does not contain an IPv4 address.
|
|
|
|
func isNotIPv4(addr Addr) bool { return !isIPv4(addr) }
|
|
|
|
|
|
|
|
// forResolve returns the most appropriate address in address for
|
|
|
|
// a call to ResolveTCPAddr, ResolveUDPAddr, or ResolveIPAddr.
|
|
|
|
// IPv4 is preferred, unless addr contains an IPv6 literal.
|
|
|
|
func (addrs addrList) forResolve(network, addr string) Addr {
|
|
|
|
var want6 bool
|
|
|
|
switch network {
|
|
|
|
case "ip":
|
|
|
|
// IPv6 literal (addr does NOT contain a port)
|
|
|
|
want6 = count(addr, ':') > 0
|
|
|
|
case "tcp", "udp":
|
|
|
|
// IPv6 literal. (addr contains a port, so look for '[')
|
|
|
|
want6 = count(addr, '[') > 0
|
|
|
|
}
|
|
|
|
if want6 {
|
|
|
|
return addrs.first(isNotIPv4)
|
|
|
|
}
|
|
|
|
return addrs.first(isIPv4)
|
|
|
|
}
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// first returns the first address which satisfies strategy, or if
|
|
|
|
// none do, then the first address of any kind.
|
|
|
|
func (addrs addrList) first(strategy func(Addr) bool) Addr {
|
|
|
|
for _, addr := range addrs {
|
|
|
|
if strategy(addr) {
|
|
|
|
return addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return addrs[0]
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// partition divides an address list into two categories, using a
|
|
|
|
// strategy function to assign a boolean label to each address.
|
|
|
|
// The first address, and any with a matching label, are returned as
|
|
|
|
// primaries, while addresses with the opposite label are returned
|
|
|
|
// as fallbacks. For non-empty inputs, primaries is guaranteed to be
|
|
|
|
// non-empty.
|
|
|
|
func (addrs addrList) partition(strategy func(Addr) bool) (primaries, fallbacks addrList) {
|
|
|
|
var primaryLabel bool
|
|
|
|
for i, addr := range addrs {
|
|
|
|
label := strategy(addr)
|
|
|
|
if i == 0 || label == primaryLabel {
|
|
|
|
primaryLabel = label
|
|
|
|
primaries = append(primaries, addr)
|
|
|
|
} else {
|
|
|
|
fallbacks = append(fallbacks, addr)
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
return
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// filterAddrList applies a filter to a list of IP addresses,
|
|
|
|
// yielding a list of Addr objects. Known filters are nil, ipv4only,
|
|
|
|
// and ipv6only. It returns every address when the filter is nil.
|
|
|
|
// The result contains at least one address when error is nil.
|
2017-10-07 00:16:47 +00:00
|
|
|
func filterAddrList(filter func(IPAddr) bool, ips []IPAddr, inetaddr func(IPAddr) Addr, originalAddr string) (addrList, error) {
|
2017-04-10 11:32:00 +00:00
|
|
|
var addrs addrList
|
2014-09-21 17:33:12 +00:00
|
|
|
for _, ip := range ips {
|
2017-04-10 11:32:00 +00:00
|
|
|
if filter == nil || filter(ip) {
|
|
|
|
addrs = append(addrs, inetaddr(ip))
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
if len(addrs) == 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return nil, &AddrError{Err: errNoSuitableAddress.Error(), Addr: originalAddr}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
return addrs, nil
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 00:16:47 +00:00
|
|
|
// ipv4only reports whether addr is an IPv4 address.
|
2017-04-10 11:32:00 +00:00
|
|
|
func ipv4only(addr IPAddr) bool {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addr.IP.To4() != nil
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 00:16:47 +00:00
|
|
|
// ipv6only reports whether addr is an IPv6 address except IPv4-mapped IPv6 address.
|
2017-04-10 11:32:00 +00:00
|
|
|
func ipv6only(addr IPAddr) bool {
|
2017-10-07 00:16:47 +00:00
|
|
|
return len(addr.IP) == IPv6len && addr.IP.To4() == nil
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// SplitHostPort splits a network address of the form "host:port",
|
2018-12-28 15:30:48 +00:00
|
|
|
// "host%zone:port", "[host]:port" or "[host%zone]:port" into host or
|
|
|
|
// host%zone and port.
|
|
|
|
//
|
|
|
|
// A literal IPv6 address in hostport must be enclosed in square
|
|
|
|
// brackets, as in "[::1]:80", "[::1%lo0]:80".
|
|
|
|
//
|
|
|
|
// See func Dial for a description of the hostport parameter, and host
|
|
|
|
// and port results.
|
2012-03-27 23:13:14 +00:00
|
|
|
func SplitHostPort(hostport string) (host, port string, err error) {
|
2017-10-07 00:16:47 +00:00
|
|
|
const (
|
|
|
|
missingPort = "missing port in address"
|
|
|
|
tooManyColons = "too many colons in address"
|
|
|
|
)
|
|
|
|
addrErr := func(addr, why string) (host, port string, err error) {
|
|
|
|
return "", "", &AddrError{Err: why, Addr: addr}
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
j, k := 0, 0
|
|
|
|
|
2012-03-27 23:13:14 +00:00
|
|
|
// The port starts after the last colon.
|
|
|
|
i := last(hostport, ':')
|
|
|
|
if i < 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, missingPort)
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
if hostport[0] == '[' {
|
|
|
|
// Expect the first ']' just before the last ':'.
|
|
|
|
end := byteIndex(hostport, ']')
|
|
|
|
if end < 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, "missing ']' in address")
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
switch end + 1 {
|
|
|
|
case len(hostport):
|
|
|
|
// There can't be a ':' behind the ']' now.
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, missingPort)
|
2014-09-21 17:33:12 +00:00
|
|
|
case i:
|
|
|
|
// The expected result.
|
|
|
|
default:
|
|
|
|
// Either ']' isn't followed by a colon, or it is
|
|
|
|
// followed by a colon that is not the last one.
|
|
|
|
if hostport[end+1] == ':' {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, tooManyColons)
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, missingPort)
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
host = hostport[1:end]
|
|
|
|
j, k = 1, end+1 // there can't be a '[' resp. ']' before these positions
|
2012-03-27 23:13:14 +00:00
|
|
|
} else {
|
2014-09-21 17:33:12 +00:00
|
|
|
host = hostport[:i]
|
2012-03-27 23:13:14 +00:00
|
|
|
if byteIndex(host, ':') >= 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, tooManyColons)
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
if byteIndex(hostport[j:], '[') >= 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, "unexpected '[' in address")
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
if byteIndex(hostport[k:], ']') >= 0 {
|
2017-10-07 00:16:47 +00:00
|
|
|
return addrErr(hostport, "unexpected ']' in address")
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
port = hostport[i+1:]
|
2017-10-07 00:16:47 +00:00
|
|
|
return host, port, nil
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func splitHostZone(s string) (host, zone string) {
|
2015-08-28 15:33:40 +00:00
|
|
|
// The IPv6 scoped addressing zone identifier starts after the
|
2014-09-21 17:33:12 +00:00
|
|
|
// last percent sign.
|
|
|
|
if i := last(s, '%'); i > 0 {
|
|
|
|
host, zone = s[:i], s[i+1:]
|
|
|
|
} else {
|
|
|
|
host = s
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// JoinHostPort combines host and port into a network address of the
|
2018-12-28 15:30:48 +00:00
|
|
|
// form "host:port". If host contains a colon, as found in literal
|
|
|
|
// IPv6 addresses, then JoinHostPort returns "[host]:port".
|
|
|
|
//
|
|
|
|
// See func Dial for a description of the host and port parameters.
|
2012-03-27 23:13:14 +00:00
|
|
|
func JoinHostPort(host, port string) string {
|
2018-12-28 15:30:48 +00:00
|
|
|
// We assume that host is a literal IPv6 address if host has
|
|
|
|
// colons.
|
|
|
|
if byteIndex(host, ':') >= 0 {
|
2012-03-27 23:13:14 +00:00
|
|
|
return "[" + host + "]:" + port
|
|
|
|
}
|
|
|
|
return host + ":" + port
|
|
|
|
}
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// internetAddrList resolves addr, which may be a literal IP
|
|
|
|
// address or a DNS name, and returns a list of internet protocol
|
|
|
|
// family addresses. The result contains at least one address when
|
|
|
|
// error is nil.
|
2017-10-07 00:16:47 +00:00
|
|
|
func (r *Resolver) internetAddrList(ctx context.Context, net, addr string) (addrList, error) {
|
2014-09-21 17:33:12 +00:00
|
|
|
var (
|
2017-04-10 11:32:00 +00:00
|
|
|
err error
|
|
|
|
host, port string
|
|
|
|
portnum int
|
2014-09-21 17:33:12 +00:00
|
|
|
)
|
|
|
|
switch net {
|
|
|
|
case "tcp", "tcp4", "tcp6", "udp", "udp4", "udp6":
|
|
|
|
if addr != "" {
|
|
|
|
if host, port, err = SplitHostPort(addr); err != nil {
|
|
|
|
return nil, err
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
if portnum, err = r.LookupPort(ctx, net, port); err != nil {
|
2014-09-21 17:33:12 +00:00
|
|
|
return nil, err
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
case "ip", "ip4", "ip6":
|
|
|
|
if addr != "" {
|
|
|
|
host = addr
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, UnknownNetworkError(net)
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
inetaddr := func(ip IPAddr) Addr {
|
2014-09-21 17:33:12 +00:00
|
|
|
switch net {
|
|
|
|
case "tcp", "tcp4", "tcp6":
|
2017-04-10 11:32:00 +00:00
|
|
|
return &TCPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
|
2014-09-21 17:33:12 +00:00
|
|
|
case "udp", "udp4", "udp6":
|
2017-04-10 11:32:00 +00:00
|
|
|
return &UDPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
|
2014-09-21 17:33:12 +00:00
|
|
|
case "ip", "ip4", "ip6":
|
2017-04-10 11:32:00 +00:00
|
|
|
return &IPAddr{IP: ip.IP, Zone: ip.Zone}
|
2014-09-21 17:33:12 +00:00
|
|
|
default:
|
|
|
|
panic("unexpected network: " + net)
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
if host == "" {
|
2017-04-10 11:32:00 +00:00
|
|
|
return addrList{inetaddr(IPAddr{})}, nil
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
|
|
|
|
// Try as a literal IP address, then as a DNS name.
|
|
|
|
var ips []IPAddr
|
|
|
|
if ip := parseIPv4(host); ip != nil {
|
|
|
|
ips = []IPAddr{{IP: ip}}
|
|
|
|
} else if ip, zone := parseIPv6(host, true); ip != nil {
|
|
|
|
ips = []IPAddr{{IP: ip, Zone: zone}}
|
2018-12-28 15:30:48 +00:00
|
|
|
// Issue 18806: if the machine has halfway configured
|
|
|
|
// IPv6 such that it can bind on "::" (IPv6unspecified)
|
|
|
|
// but not connect back to that same address, fall
|
|
|
|
// back to dialing 0.0.0.0.
|
|
|
|
if ip.Equal(IPv6unspecified) {
|
|
|
|
ips = append(ips, IPAddr{IP: IPv4zero})
|
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
} else {
|
|
|
|
// Try as a DNS name.
|
|
|
|
ips, err = r.LookupIPAddr(ctx, host)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
var filter func(IPAddr) bool
|
2014-09-21 17:33:12 +00:00
|
|
|
if net != "" && net[len(net)-1] == '4' {
|
|
|
|
filter = ipv4only
|
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
if net != "" && net[len(net)-1] == '6' {
|
2014-09-21 17:33:12 +00:00
|
|
|
filter = ipv6only
|
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
return filterAddrList(filter, ips, inetaddr, host)
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
|
2017-10-07 00:16:47 +00:00
|
|
|
func loopbackIP(net string) IP {
|
|
|
|
if net != "" && net[len(net)-1] == '6' {
|
|
|
|
return IPv6loopback
|
2014-09-21 17:33:12 +00:00
|
|
|
}
|
2017-10-07 00:16:47 +00:00
|
|
|
return IP{127, 0, 0, 1}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|