2019-05-03 00:05:14 +08:00
|
|
|
package fakeip
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net"
|
2019-05-23 23:27:29 +08:00
|
|
|
"sync"
|
2019-07-26 19:09:13 +08:00
|
|
|
|
|
|
|
"github.com/Dreamacro/clash/common/cache"
|
2020-05-28 12:13:05 +08:00
|
|
|
"github.com/Dreamacro/clash/component/trie"
|
2019-05-03 00:05:14 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Pool is a implementation about fake ip generator without storage
|
|
|
|
type Pool struct {
|
2019-07-26 19:09:13 +08:00
|
|
|
max uint32
|
|
|
|
min uint32
|
|
|
|
gateway uint32
|
|
|
|
offset uint32
|
2019-10-27 21:44:07 +08:00
|
|
|
mux sync.Mutex
|
2020-05-28 12:13:05 +08:00
|
|
|
host *trie.DomainTrie
|
2020-10-17 12:52:43 +08:00
|
|
|
ipnet *net.IPNet
|
2019-07-26 19:09:13 +08:00
|
|
|
cache *cache.LruCache
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup return a fake ip with host
|
|
|
|
func (p *Pool) Lookup(host string) net.IP {
|
|
|
|
p.mux.Lock()
|
|
|
|
defer p.mux.Unlock()
|
2019-10-11 14:01:16 +08:00
|
|
|
if elm, exist := p.cache.Get(host); exist {
|
|
|
|
ip := elm.(net.IP)
|
|
|
|
|
|
|
|
// ensure ip --> host on head of linked list
|
|
|
|
n := ipToUint(ip.To4())
|
|
|
|
offset := n - p.min + 1
|
|
|
|
p.cache.Get(offset)
|
|
|
|
return ip
|
2019-07-26 19:09:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ip := p.get(host)
|
|
|
|
p.cache.Set(host, ip)
|
|
|
|
return ip
|
2019-05-03 00:05:14 +08:00
|
|
|
}
|
|
|
|
|
2019-07-26 19:09:13 +08:00
|
|
|
// LookBack return host with the fake ip
|
|
|
|
func (p *Pool) LookBack(ip net.IP) (string, bool) {
|
2019-05-23 23:27:29 +08:00
|
|
|
p.mux.Lock()
|
|
|
|
defer p.mux.Unlock()
|
2019-07-26 19:09:13 +08:00
|
|
|
|
|
|
|
if ip = ip.To4(); ip == nil {
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
|
|
|
n := ipToUint(ip.To4())
|
|
|
|
offset := n - p.min + 1
|
|
|
|
|
2019-10-11 14:01:16 +08:00
|
|
|
if elm, exist := p.cache.Get(offset); exist {
|
|
|
|
host := elm.(string)
|
|
|
|
|
|
|
|
// ensure host --> ip on head of linked list
|
|
|
|
p.cache.Get(host)
|
|
|
|
return host, true
|
2019-07-26 19:09:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2019-12-28 18:44:01 +08:00
|
|
|
// LookupHost return if domain in host
|
|
|
|
func (p *Pool) LookupHost(domain string) bool {
|
2019-12-28 00:10:06 +08:00
|
|
|
if p.host == nil {
|
|
|
|
return false
|
|
|
|
}
|
2019-12-28 18:44:01 +08:00
|
|
|
return p.host.Search(domain) != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exist returns if given ip exists in fake-ip pool
|
|
|
|
func (p *Pool) Exist(ip net.IP) bool {
|
|
|
|
p.mux.Lock()
|
|
|
|
defer p.mux.Unlock()
|
|
|
|
|
|
|
|
if ip = ip.To4(); ip == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
n := ipToUint(ip.To4())
|
|
|
|
offset := n - p.min + 1
|
|
|
|
return p.cache.Exist(offset)
|
2019-12-28 00:10:06 +08:00
|
|
|
}
|
|
|
|
|
2019-07-26 19:09:13 +08:00
|
|
|
// Gateway return gateway ip
|
|
|
|
func (p *Pool) Gateway() net.IP {
|
|
|
|
return uintToIP(p.gateway)
|
|
|
|
}
|
|
|
|
|
2020-10-17 12:52:43 +08:00
|
|
|
// IPNet return raw ipnet
|
|
|
|
func (p *Pool) IPNet() *net.IPNet {
|
|
|
|
return p.ipnet
|
|
|
|
}
|
|
|
|
|
2020-09-17 10:48:42 +08:00
|
|
|
// PatchFrom clone cache from old pool
|
|
|
|
func (p *Pool) PatchFrom(o *Pool) {
|
|
|
|
o.cache.CloneTo(p.cache)
|
|
|
|
}
|
|
|
|
|
2019-07-26 19:09:13 +08:00
|
|
|
func (p *Pool) get(host string) net.IP {
|
|
|
|
current := p.offset
|
|
|
|
for {
|
|
|
|
p.offset = (p.offset + 1) % (p.max - p.min)
|
|
|
|
// Avoid infinite loops
|
|
|
|
if p.offset == current {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-10-11 14:01:16 +08:00
|
|
|
if !p.cache.Exist(p.offset) {
|
2019-07-26 19:09:13 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ip := uintToIP(p.min + p.offset - 1)
|
|
|
|
p.cache.Set(p.offset, host)
|
2019-05-03 00:05:14 +08:00
|
|
|
return ip
|
|
|
|
}
|
|
|
|
|
|
|
|
func ipToUint(ip net.IP) uint32 {
|
|
|
|
v := uint32(ip[0]) << 24
|
|
|
|
v += uint32(ip[1]) << 16
|
|
|
|
v += uint32(ip[2]) << 8
|
|
|
|
v += uint32(ip[3])
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func uintToIP(v uint32) net.IP {
|
2020-09-21 22:22:07 +08:00
|
|
|
return net.IP{byte(v >> 24), byte(v >> 16), byte(v >> 8), byte(v)}
|
2019-05-03 00:05:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// New return Pool instance
|
2020-05-28 12:13:05 +08:00
|
|
|
func New(ipnet *net.IPNet, size int, host *trie.DomainTrie) (*Pool, error) {
|
2019-07-26 19:09:13 +08:00
|
|
|
min := ipToUint(ipnet.IP) + 2
|
2019-05-03 00:05:14 +08:00
|
|
|
|
|
|
|
ones, bits := ipnet.Mask.Size()
|
|
|
|
total := 1<<uint(bits-ones) - 2
|
|
|
|
|
|
|
|
if total <= 0 {
|
|
|
|
return nil, errors.New("ipnet don't have valid ip")
|
|
|
|
}
|
|
|
|
|
2019-07-26 19:09:13 +08:00
|
|
|
max := min + uint32(total) - 1
|
2019-05-03 00:05:14 +08:00
|
|
|
return &Pool{
|
2019-07-26 19:09:13 +08:00
|
|
|
min: min,
|
|
|
|
max: max,
|
|
|
|
gateway: min - 1,
|
2019-12-28 00:10:06 +08:00
|
|
|
host: host,
|
2020-10-17 12:52:43 +08:00
|
|
|
ipnet: ipnet,
|
2019-07-26 19:09:13 +08:00
|
|
|
cache: cache.NewLRUCache(cache.WithSize(size * 2)),
|
2019-05-03 00:05:14 +08:00
|
|
|
}, nil
|
|
|
|
}
|