2019-12-08 12:17:24 +08:00
|
|
|
package outboundgroup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2021-12-03 14:35:21 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
|
|
|
"go.uber.org/atomic"
|
|
|
|
"time"
|
2019-12-08 12:17:24 +08:00
|
|
|
|
2021-06-10 14:05:56 +08:00
|
|
|
"github.com/Dreamacro/clash/adapter/outbound"
|
2019-12-10 15:04:22 +08:00
|
|
|
"github.com/Dreamacro/clash/common/singledo"
|
2021-11-07 16:48:51 +08:00
|
|
|
"github.com/Dreamacro/clash/component/dialer"
|
2019-12-08 12:17:24 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-07-04 20:32:59 +08:00
|
|
|
"github.com/Dreamacro/clash/constant/provider"
|
2019-12-08 12:17:24 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type Fallback struct {
|
|
|
|
*outbound.Base
|
2021-12-03 14:35:21 +08:00
|
|
|
disableUDP bool
|
|
|
|
single *singledo.Single
|
|
|
|
providers []provider.ProxyProvider
|
|
|
|
failedTimes *atomic.Int32
|
|
|
|
failedTime *atomic.Int64
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Fallback) Now() string {
|
2020-11-19 00:53:22 +08:00
|
|
|
proxy := f.findAliveProxy(false)
|
2019-12-08 12:17:24 +08:00
|
|
|
return proxy.Name()
|
|
|
|
}
|
|
|
|
|
2021-04-29 11:23:14 +08:00
|
|
|
// DialContext implements C.ProxyAdapter
|
2021-11-07 16:48:51 +08:00
|
|
|
func (f *Fallback) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.Conn, error) {
|
2020-11-19 00:53:22 +08:00
|
|
|
proxy := f.findAliveProxy(true)
|
2021-11-07 16:48:51 +08:00
|
|
|
c, err := proxy.DialContext(ctx, metadata, f.Base.DialOptions(opts...)...)
|
2019-12-08 12:17:24 +08:00
|
|
|
if err == nil {
|
|
|
|
c.AppendToChains(f)
|
2021-12-04 00:16:39 +08:00
|
|
|
f.failedTimes.Store(-1)
|
|
|
|
f.failedTime.Store(-1)
|
2021-12-03 14:35:21 +08:00
|
|
|
} else {
|
|
|
|
f.onDialFailed()
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2021-12-04 00:16:39 +08:00
|
|
|
|
2019-12-08 12:17:24 +08:00
|
|
|
return c, err
|
|
|
|
}
|
|
|
|
|
2021-10-15 21:44:53 +08:00
|
|
|
// ListenPacketContext implements C.ProxyAdapter
|
2021-11-07 16:48:51 +08:00
|
|
|
func (f *Fallback) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.PacketConn, error) {
|
2020-11-19 00:53:22 +08:00
|
|
|
proxy := f.findAliveProxy(true)
|
2021-11-07 16:48:51 +08:00
|
|
|
pc, err := proxy.ListenPacketContext(ctx, metadata, f.Base.DialOptions(opts...)...)
|
2019-12-08 12:17:24 +08:00
|
|
|
if err == nil {
|
|
|
|
pc.AppendToChains(f)
|
2021-12-04 00:16:39 +08:00
|
|
|
f.failedTimes.Store(-1)
|
|
|
|
f.failedTime.Store(-1)
|
2021-12-03 14:35:21 +08:00
|
|
|
} else {
|
|
|
|
f.onDialFailed()
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
2021-12-04 00:16:39 +08:00
|
|
|
|
2020-01-31 14:43:54 +08:00
|
|
|
return pc, err
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2021-12-03 14:35:21 +08:00
|
|
|
func (f *Fallback) onDialFailed() {
|
|
|
|
if f.failedTime.Load() == -1 {
|
|
|
|
log.Warnln("%s first failed", f.Name())
|
|
|
|
now := time.Now().UnixMilli()
|
|
|
|
f.failedTime.Store(now)
|
|
|
|
f.failedTimes.Store(1)
|
|
|
|
} else {
|
|
|
|
if f.failedTime.Load()-time.Now().UnixMilli() > 5*1000 {
|
|
|
|
f.failedTimes.Store(-1)
|
|
|
|
f.failedTime.Store(-1)
|
|
|
|
} else {
|
|
|
|
f.failedTimes.Inc()
|
|
|
|
failedCount := f.failedTimes.Load()
|
|
|
|
log.Warnln("%s failed count: %d", f.Name(), failedCount)
|
|
|
|
if failedCount > 5 {
|
|
|
|
log.Debugln("%s failed multiple times.", f.Name())
|
|
|
|
for _, proxyProvider := range f.providers {
|
|
|
|
go proxyProvider.HealthCheck()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-29 11:23:14 +08:00
|
|
|
// SupportUDP implements C.ProxyAdapter
|
2019-12-08 12:17:24 +08:00
|
|
|
func (f *Fallback) SupportUDP() bool {
|
2020-11-13 21:48:52 +08:00
|
|
|
if f.disableUDP {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
proxy := f.findAliveProxy(false)
|
2019-12-08 12:17:24 +08:00
|
|
|
return proxy.SupportUDP()
|
|
|
|
}
|
|
|
|
|
2021-04-29 11:23:14 +08:00
|
|
|
// MarshalJSON implements C.ProxyAdapter
|
2019-12-08 12:17:24 +08:00
|
|
|
func (f *Fallback) MarshalJSON() ([]byte, error) {
|
|
|
|
var all []string
|
2020-11-19 00:53:22 +08:00
|
|
|
for _, proxy := range f.proxies(false) {
|
2019-12-08 12:17:24 +08:00
|
|
|
all = append(all, proxy.Name())
|
|
|
|
}
|
|
|
|
return json.Marshal(map[string]interface{}{
|
|
|
|
"type": f.Type().String(),
|
|
|
|
"now": f.Now(),
|
|
|
|
"all": all,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-04-29 11:23:14 +08:00
|
|
|
// Unwrap implements C.ProxyAdapter
|
2020-05-07 21:42:52 +08:00
|
|
|
func (f *Fallback) Unwrap(metadata *C.Metadata) C.Proxy {
|
2020-11-19 00:53:22 +08:00
|
|
|
proxy := f.findAliveProxy(true)
|
2020-05-07 21:42:52 +08:00
|
|
|
return proxy
|
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
func (f *Fallback) proxies(touch bool) []C.Proxy {
|
2019-12-10 15:04:22 +08:00
|
|
|
elm, _, _ := f.single.Do(func() (interface{}, error) {
|
2020-11-19 00:53:22 +08:00
|
|
|
return getProvidersProxies(f.providers, touch), nil
|
2019-12-10 15:04:22 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
return elm.([]C.Proxy)
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
func (f *Fallback) findAliveProxy(touch bool) C.Proxy {
|
|
|
|
proxies := f.proxies(touch)
|
2019-12-10 15:04:22 +08:00
|
|
|
for _, proxy := range proxies {
|
|
|
|
if proxy.Alive() {
|
|
|
|
return proxy
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 00:53:22 +08:00
|
|
|
return proxies[0]
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
|
2021-11-07 16:48:51 +08:00
|
|
|
func NewFallback(option *GroupCommonOption, providers []provider.ProxyProvider) *Fallback {
|
2019-12-08 12:17:24 +08:00
|
|
|
return &Fallback{
|
2021-11-07 16:48:51 +08:00
|
|
|
Base: outbound.NewBase(outbound.BaseOption{
|
2021-11-08 16:59:48 +08:00
|
|
|
Name: option.Name,
|
|
|
|
Type: C.Fallback,
|
|
|
|
Interface: option.Interface,
|
|
|
|
RoutingMark: option.RoutingMark,
|
2021-11-07 16:48:51 +08:00
|
|
|
}),
|
2021-12-04 00:16:39 +08:00
|
|
|
single: singledo.NewSingle(defaultGetProxiesDuration),
|
|
|
|
providers: providers,
|
|
|
|
disableUDP: option.DisableUDP,
|
|
|
|
failedTimes: atomic.NewInt32(-1),
|
|
|
|
failedTime: atomic.NewInt64(-1),
|
2019-12-08 12:17:24 +08:00
|
|
|
}
|
|
|
|
}
|