mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
158 lines
3 KiB
Go
158 lines
3 KiB
Go
package adapters
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"net"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/Dreamacro/clash/common/murmur3"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
"golang.org/x/net/publicsuffix"
|
|
)
|
|
|
|
type LoadBalance struct {
|
|
*Base
|
|
proxies []C.Proxy
|
|
maxRetry int
|
|
rawURL string
|
|
interval time.Duration
|
|
done chan struct{}
|
|
}
|
|
|
|
func getKey(metadata *C.Metadata) string {
|
|
if metadata.Host != "" {
|
|
// ip host
|
|
if ip := net.ParseIP(metadata.Host); ip != nil {
|
|
return metadata.Host
|
|
}
|
|
|
|
if etld, err := publicsuffix.EffectiveTLDPlusOne(metadata.Host); err == nil {
|
|
return etld
|
|
}
|
|
}
|
|
|
|
if metadata.DstIP == nil {
|
|
return ""
|
|
}
|
|
|
|
return metadata.DstIP.String()
|
|
}
|
|
|
|
func jumpHash(key uint64, buckets int32) int32 {
|
|
var b, j int64
|
|
|
|
for j < int64(buckets) {
|
|
b = j
|
|
key = key*2862933555777941757 + 1
|
|
j = int64(float64(b+1) * (float64(int64(1)<<31) / float64((key>>33)+1)))
|
|
}
|
|
|
|
return int32(b)
|
|
}
|
|
|
|
func (lb *LoadBalance) Dial(metadata *C.Metadata) (net.Conn, error) {
|
|
key := uint64(murmur3.Sum32([]byte(getKey(metadata))))
|
|
buckets := int32(len(lb.proxies))
|
|
for i := 0; i < lb.maxRetry; i, key = i+1, key+1 {
|
|
idx := jumpHash(key, buckets)
|
|
proxy := lb.proxies[idx]
|
|
if proxy.Alive() {
|
|
return proxy.Dial(metadata)
|
|
}
|
|
}
|
|
|
|
return lb.proxies[0].Dial(metadata)
|
|
}
|
|
|
|
func (lb *LoadBalance) DialUDP(metadata *C.Metadata) (net.PacketConn, net.Addr, error) {
|
|
key := uint64(murmur3.Sum32([]byte(getKey(metadata))))
|
|
buckets := int32(len(lb.proxies))
|
|
for i := 0; i < lb.maxRetry; i, key = i+1, key+1 {
|
|
idx := jumpHash(key, buckets)
|
|
proxy := lb.proxies[idx]
|
|
if proxy.Alive() {
|
|
return proxy.DialUDP(metadata)
|
|
}
|
|
}
|
|
|
|
return lb.proxies[0].DialUDP(metadata)
|
|
}
|
|
|
|
func (lb *LoadBalance) SupportUDP() bool {
|
|
return true
|
|
}
|
|
|
|
func (lb *LoadBalance) Destroy() {
|
|
lb.done <- struct{}{}
|
|
}
|
|
|
|
func (lb *LoadBalance) validTest() {
|
|
wg := sync.WaitGroup{}
|
|
wg.Add(len(lb.proxies))
|
|
|
|
for _, p := range lb.proxies {
|
|
go func(p C.Proxy) {
|
|
p.URLTest(lb.rawURL)
|
|
wg.Done()
|
|
}(p)
|
|
}
|
|
|
|
wg.Wait()
|
|
}
|
|
|
|
func (lb *LoadBalance) loop() {
|
|
tick := time.NewTicker(lb.interval)
|
|
go lb.validTest()
|
|
Loop:
|
|
for {
|
|
select {
|
|
case <-tick.C:
|
|
go lb.validTest()
|
|
case <-lb.done:
|
|
break Loop
|
|
}
|
|
}
|
|
}
|
|
|
|
func (lb *LoadBalance) MarshalJSON() ([]byte, error) {
|
|
var all []string
|
|
for _, proxy := range lb.proxies {
|
|
all = append(all, proxy.Name())
|
|
}
|
|
return json.Marshal(map[string]interface{}{
|
|
"type": lb.Type().String(),
|
|
"all": all,
|
|
})
|
|
}
|
|
|
|
type LoadBalanceOption struct {
|
|
Name string `proxy:"name"`
|
|
Proxies []string `proxy:"proxies"`
|
|
URL string `proxy:"url"`
|
|
Interval int `proxy:"interval"`
|
|
}
|
|
|
|
func NewLoadBalance(option LoadBalanceOption, proxies []C.Proxy) (*LoadBalance, error) {
|
|
if len(proxies) == 0 {
|
|
return nil, errors.New("Provide at least one proxy")
|
|
}
|
|
|
|
interval := time.Duration(option.Interval) * time.Second
|
|
|
|
lb := &LoadBalance{
|
|
Base: &Base{
|
|
name: option.Name,
|
|
tp: C.LoadBalance,
|
|
},
|
|
proxies: proxies,
|
|
maxRetry: 3,
|
|
rawURL: option.URL,
|
|
interval: interval,
|
|
done: make(chan struct{}),
|
|
}
|
|
go lb.loop()
|
|
return lb, nil
|
|
}
|