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

176 lines
3.7 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"
2016-01-21 06:52:09 -05:00
"github.com/v2ray/v2ray-core/common/serial"
2015-09-10 18:24:18 -04:00
)
2016-05-16 02:09:28 -04:00
var (
LocalHostIP = IPAddress([]byte{127, 0, 0, 1})
)
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
Equals(Address) bool
2015-09-10 18:24:18 -04:00
}
2016-02-06 05:01:18 -05:00
// ParseAddress parses a string into an Address. The return value will be an IPAddress when
// the string is in the form of IPv4 or IPv6 address, or a DomainAddress otherwise.
2016-01-18 19:21:07 -05:00
func ParseAddress(addr string) Address {
ip := net.ParseIP(addr)
if ip != nil {
return IPAddress(ip)
}
return DomainAddress(addr)
}
2016-02-06 05:01:18 -05:00
// IPAddress creates an Address with given IP.
2015-12-16 17:53:38 -05:00
func IPAddress(ip []byte) Address {
switch len(ip) {
case net.IPv4len:
2016-02-06 05:01:18 -05:00
var addr ipv4Address = [4]byte{ip[0], ip[1], ip[2], ip[3]}
2016-01-15 07:16:07 -05:00
return &addr
case net.IPv6len:
2016-01-21 06:52:09 -05:00
if serial.BytesLiteral(ip[0:10]).All(0) && serial.BytesLiteral(ip[10:12]).All(0xff) {
2015-12-16 17:53:38 -05:00
return IPAddress(ip[12:16])
2015-10-14 02:43:04 -04:00
}
2016-02-06 05:01:18 -05:00
var addr ipv6Address = [16]byte{
2016-01-15 07:16:07 -05:00
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],
}
2016-01-15 07:16:07 -05:00
return &addr
default:
2016-01-18 06:24:33 -05:00
log.Error("Invalid IP format: ", ip)
2015-09-24 06:54:10 -04:00
return nil
}
2015-09-10 18:24:18 -04:00
}
2016-02-06 05:01:18 -05:00
// DomainAddress creates an Address with given domain.
2015-12-16 17:53:38 -05:00
func DomainAddress(domain string) Address {
2016-02-06 05:01:18 -05:00
var addr domainAddress = domainAddress(domain)
2016-01-15 07:16:07 -05:00
return &addr
2015-09-10 18:24:18 -04:00
}
2016-02-06 05:01:18 -05:00
type ipv4Address [4]byte
2015-09-11 08:12:26 -04:00
2016-02-06 05:01:18 -05:00
func (addr *ipv4Address) IP() net.IP {
2016-01-15 07:16:07 -05:00
return net.IP(addr[:])
}
2016-02-06 05:01:18 -05:00
func (addr *ipv4Address) Domain() string {
panic("Calling Domain() on an IPv4Address.")
}
2016-02-06 05:01:18 -05:00
func (addr *ipv4Address) IsIPv4() bool {
return true
}
2016-02-06 05:01:18 -05:00
func (addr *ipv4Address) IsIPv6() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (addr *ipv4Address) IsDomain() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (this *ipv4Address) String() string {
2015-12-16 17:53:38 -05:00
return this.IP().String()
}
2016-02-06 05:01:18 -05:00
func (this *ipv4Address) Equals(another Address) bool {
anotherIPv4, ok := another.(*ipv4Address)
if !ok {
return false
}
return this[0] == anotherIPv4[0] &&
this[1] == anotherIPv4[1] &&
this[2] == anotherIPv4[2] &&
this[3] == anotherIPv4[3]
}
2016-02-06 05:01:18 -05:00
type ipv6Address [16]byte
2016-02-06 05:01:18 -05:00
func (addr *ipv6Address) IP() net.IP {
2016-01-15 07:16:07 -05:00
return net.IP(addr[:])
}
2016-02-06 05:01:18 -05:00
func (addr *ipv6Address) Domain() string {
panic("Calling Domain() on an IPv6Address.")
}
2016-02-06 05:01:18 -05:00
func (addr *ipv6Address) IsIPv4() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (addr *ipv6Address) IsIPv6() bool {
return true
}
2016-02-06 05:01:18 -05:00
func (addr *ipv6Address) IsDomain() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (this *ipv6Address) String() string {
2015-12-16 17:53:38 -05:00
return "[" + this.IP().String() + "]"
}
2016-02-06 05:01:18 -05:00
func (this *ipv6Address) Equals(another Address) bool {
anotherIPv6, ok := another.(*ipv6Address)
if !ok {
return false
}
for idx, v := range *this {
if anotherIPv6[idx] != v {
return false
}
}
return true
}
2016-02-06 05:01:18 -05:00
type domainAddress string
2016-02-06 05:01:18 -05:00
func (addr *domainAddress) IP() net.IP {
panic("Calling IP() on a DomainAddress.")
}
2016-02-06 05:01:18 -05:00
func (addr *domainAddress) Domain() string {
2016-01-15 07:16:07 -05:00
return string(*addr)
}
2016-02-06 05:01:18 -05:00
func (addr *domainAddress) IsIPv4() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (addr *domainAddress) IsIPv6() bool {
return false
}
2016-02-06 05:01:18 -05:00
func (addr *domainAddress) IsDomain() bool {
return true
}
2016-02-06 05:01:18 -05:00
func (this *domainAddress) String() string {
2016-01-15 07:16:07 -05:00
return this.Domain()
2015-09-10 18:24:18 -04:00
}
2016-02-06 05:01:18 -05:00
func (this *domainAddress) Equals(another Address) bool {
anotherDomain, ok := another.(*domainAddress)
if !ok {
return false
}
return this.Domain() == anotherDomain.Domain()
}