1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/common/net/address.go

149 lines
2.8 KiB
Go
Raw Normal View History

2015-09-13 14:01:50 -04:00
package net
2015-09-10 18:24:18 -04:00
import (
"net"
"github.com/v2ray/v2ray-core/common/log"
2015-09-10 18:24:18 -04:00
)
2015-09-21 06:15:25 -04:00
// Address represents a network address to be communicated with. It may be an IP address or domain
// address, not both. This interface doesn't resolve IP address for a given domain.
type Address interface {
2015-12-02 06:47:54 -05:00
IP() net.IP // IP of this Address
Domain() string // Domain of this Address
2015-09-21 06:15:25 -04:00
IsIPv4() bool // True if this Address is an IPv4 address
IsIPv6() bool // True if this Address is an IPv6 address
2015-09-21 05:51:18 -04:00
IsDomain() bool // True if this Address is an domain address
2015-09-21 05:51:18 -04:00
String() string // String representation of this Address
2015-09-10 18:24:18 -04:00
}
2015-10-14 02:43:04 -04:00
func allZeros(data []byte) bool {
for _, v := range data {
if v != 0 {
return false
}
}
return true
}
2015-09-21 05:51:18 -04:00
// IPAddress creates an Address with given IP and port.
2015-12-16 17:53:38 -05:00
func IPAddress(ip []byte) Address {
switch len(ip) {
case net.IPv4len:
2015-12-02 06:47:54 -05:00
return &IPv4Address{
2015-12-16 17:53:38 -05:00
ip: [4]byte{ip[0], ip[1], ip[2], ip[3]},
}
case net.IPv6len:
2015-10-14 02:43:04 -04:00
if allZeros(ip[0:10]) && ip[10] == 0xff && ip[11] == 0xff {
2015-12-16 17:53:38 -05:00
return IPAddress(ip[12:16])
2015-10-14 02:43:04 -04:00
}
2015-12-02 06:47:54 -05:00
return &IPv6Address{
2015-09-21 06:15:25 -04:00
ip: [16]byte{
ip[0], ip[1], ip[2], ip[3],
ip[4], ip[5], ip[6], ip[7],
ip[8], ip[9], ip[10], ip[11],
ip[12], ip[13], ip[14], ip[15],
},
}
default:
2015-10-13 07:55:06 -04:00
log.Error("Invalid IP format: %v", ip)
2015-09-24 06:54:10 -04:00
return nil
}
2015-09-10 18:24:18 -04:00
}
2015-09-21 05:51:18 -04:00
// DomainAddress creates an Address with given domain and port.
2015-12-16 17:53:38 -05:00
func DomainAddress(domain string) Address {
2015-12-02 06:47:54 -05:00
return &DomainAddressImpl{
domain: domain,
}
2015-09-10 18:24:18 -04:00
}
2015-12-16 17:53:38 -05:00
type address struct {
}
type IPv4Address struct {
2015-12-16 17:53:38 -05:00
ip [4]byte
}
2015-09-11 08:12:26 -04:00
2015-12-02 06:47:54 -05:00
func (addr *IPv4Address) IP() net.IP {
return net.IP(addr.ip[:])
}
2015-12-02 06:47:54 -05:00
func (addr *IPv4Address) Domain() string {
panic("Calling Domain() on an IPv4Address.")
}
2015-12-02 06:47:54 -05:00
func (addr *IPv4Address) IsIPv4() bool {
return true
}
2015-12-02 06:47:54 -05:00
func (addr *IPv4Address) IsIPv6() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (addr *IPv4Address) IsDomain() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (this *IPv4Address) String() string {
2015-12-16 17:53:38 -05:00
return this.IP().String()
}
type IPv6Address struct {
2015-12-16 17:53:38 -05:00
ip [16]byte
}
2015-12-02 06:47:54 -05:00
func (addr *IPv6Address) IP() net.IP {
return net.IP(addr.ip[:])
}
2015-12-02 06:47:54 -05:00
func (addr *IPv6Address) Domain() string {
panic("Calling Domain() on an IPv6Address.")
}
2015-12-02 06:47:54 -05:00
func (addr *IPv6Address) IsIPv4() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (addr *IPv6Address) IsIPv6() bool {
return true
}
2015-12-02 06:47:54 -05:00
func (addr *IPv6Address) IsDomain() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (this *IPv6Address) String() string {
2015-12-16 17:53:38 -05:00
return "[" + this.IP().String() + "]"
}
type DomainAddressImpl struct {
domain string
}
2015-12-02 06:47:54 -05:00
func (addr *DomainAddressImpl) IP() net.IP {
panic("Calling IP() on a DomainAddress.")
}
2015-12-02 06:47:54 -05:00
func (addr *DomainAddressImpl) Domain() string {
return addr.domain
}
2015-12-02 06:47:54 -05:00
func (addr *DomainAddressImpl) IsIPv4() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (addr *DomainAddressImpl) IsIPv6() bool {
return false
}
2015-12-02 06:47:54 -05:00
func (addr *DomainAddressImpl) IsDomain() bool {
return true
}
2015-12-02 06:47:54 -05:00
func (this *DomainAddressImpl) String() string {
2015-12-16 17:53:38 -05:00
return this.domain
2015-09-10 18:24:18 -04:00
}