123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- package outboundgroup
- import (
- "context"
- "encoding/json"
- "errors"
- "fmt"
- "sync"
- "time"
- "github.com/metacubex/mihomo/adapter/outbound"
- "github.com/metacubex/mihomo/common/callback"
- N "github.com/metacubex/mihomo/common/net"
- "github.com/metacubex/mihomo/common/singledo"
- "github.com/metacubex/mihomo/common/utils"
- "github.com/metacubex/mihomo/component/dialer"
- C "github.com/metacubex/mihomo/constant"
- "github.com/metacubex/mihomo/constant/provider"
- )
- type urlTestOption func(*URLTest)
- func urlTestWithTolerance(tolerance uint16) urlTestOption {
- return func(u *URLTest) {
- u.tolerance = tolerance
- }
- }
- type URLTest struct {
- *GroupBase
- selected string
- testUrl string
- expectedStatus string
- tolerance uint16
- disableUDP bool
- Hidden bool
- Icon string
- fastNode C.Proxy
- fastSingle *singledo.Single[C.Proxy]
- }
- func (u *URLTest) Now() string {
- return u.fast(false).Name()
- }
- func (u *URLTest) Set(name string) error {
- var p C.Proxy
- for _, proxy := range u.GetProxies(false) {
- if proxy.Name() == name {
- p = proxy
- break
- }
- }
- if p == nil {
- return errors.New("proxy not exist")
- }
- u.selected = name
- u.fast(false)
- return nil
- }
- func (u *URLTest) ForceSet(name string) {
- u.selected = name
- }
- // DialContext implements C.ProxyAdapter
- func (u *URLTest) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (c C.Conn, err error) {
- proxy := u.fast(true)
- c, err = proxy.DialContext(ctx, metadata, u.Base.DialOptions(opts...)...)
- if err == nil {
- c.AppendToChains(u)
- } else {
- u.onDialFailed(proxy.Type(), err)
- }
- if N.NeedHandshake(c) {
- c = callback.NewFirstWriteCallBackConn(c, func(err error) {
- if err == nil {
- u.onDialSuccess()
- } else {
- u.onDialFailed(proxy.Type(), err)
- }
- })
- }
- return c, err
- }
- // ListenPacketContext implements C.ProxyAdapter
- func (u *URLTest) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.PacketConn, error) {
- proxy := u.fast(true)
- pc, err := proxy.ListenPacketContext(ctx, metadata, u.Base.DialOptions(opts...)...)
- if err == nil {
- pc.AppendToChains(u)
- }
- return pc, err
- }
- // Unwrap implements C.ProxyAdapter
- func (u *URLTest) Unwrap(metadata *C.Metadata, touch bool) C.Proxy {
- return u.fast(touch)
- }
- func (u *URLTest) fast(touch bool) C.Proxy {
- proxies := u.GetProxies(touch)
- if u.selected != "" {
- for _, proxy := range proxies {
- if !proxy.AliveForTestUrl(u.testUrl) {
- continue
- }
- if proxy.Name() == u.selected {
- u.fastNode = proxy
- return proxy
- }
- }
- }
- elm, _, shared := u.fastSingle.Do(func() (C.Proxy, error) {
- fast := proxies[0]
- minDelay := fast.LastDelayForTestUrl(u.testUrl)
- fastNotExist := true
- for _, proxy := range proxies[1:] {
- if u.fastNode != nil && proxy.Name() == u.fastNode.Name() {
- fastNotExist = false
- }
- if !proxy.AliveForTestUrl(u.testUrl) {
- continue
- }
- delay := proxy.LastDelayForTestUrl(u.testUrl)
- if delay < minDelay {
- fast = proxy
- minDelay = delay
- }
- }
- // tolerance
- if u.fastNode == nil || fastNotExist || !u.fastNode.AliveForTestUrl(u.testUrl) || u.fastNode.LastDelayForTestUrl(u.testUrl) > fast.LastDelayForTestUrl(u.testUrl)+u.tolerance {
- u.fastNode = fast
- }
- return u.fastNode, nil
- })
- if shared && touch { // a shared fastSingle.Do() may cause providers untouched, so we touch them again
- u.Touch()
- }
- return elm
- }
- // SupportUDP implements C.ProxyAdapter
- func (u *URLTest) SupportUDP() bool {
- if u.disableUDP {
- return false
- }
- return u.fast(false).SupportUDP()
- }
- // IsL3Protocol implements C.ProxyAdapter
- func (u *URLTest) IsL3Protocol(metadata *C.Metadata) bool {
- return u.fast(false).IsL3Protocol(metadata)
- }
- // MarshalJSON implements C.ProxyAdapter
- func (u *URLTest) MarshalJSON() ([]byte, error) {
- all := []string{}
- for _, proxy := range u.GetProxies(false) {
- all = append(all, proxy.Name())
- }
- return json.Marshal(map[string]any{
- "type": u.Type().String(),
- "now": u.Now(),
- "all": all,
- "testUrl": u.testUrl,
- "expectedStatus": u.expectedStatus,
- "fixed": u.selected,
- "hidden": u.Hidden,
- "icon": u.Icon,
- })
- }
- func (u *URLTest) URLTest(ctx context.Context, url string, expectedStatus utils.IntRanges[uint16]) (map[string]uint16, error) {
- var wg sync.WaitGroup
- var lock sync.Mutex
- mp := map[string]uint16{}
- proxies := u.GetProxies(false)
- for _, proxy := range proxies {
- proxy := proxy
- wg.Add(1)
- go func() {
- delay, err := proxy.URLTest(ctx, u.testUrl, expectedStatus)
- if err == nil {
- lock.Lock()
- mp[proxy.Name()] = delay
- lock.Unlock()
- }
- wg.Done()
- }()
- }
- wg.Wait()
- if len(mp) == 0 {
- return mp, fmt.Errorf("get delay: all proxies timeout")
- } else {
- return mp, nil
- }
- }
- func parseURLTestOption(config map[string]any) []urlTestOption {
- opts := []urlTestOption{}
- // tolerance
- if elm, ok := config["tolerance"]; ok {
- if tolerance, ok := elm.(int); ok {
- opts = append(opts, urlTestWithTolerance(uint16(tolerance)))
- }
- }
- return opts
- }
- func NewURLTest(option *GroupCommonOption, providers []provider.ProxyProvider, options ...urlTestOption) *URLTest {
- urlTest := &URLTest{
- GroupBase: NewGroupBase(GroupBaseOption{
- outbound.BaseOption{
- Name: option.Name,
- Type: C.URLTest,
- Interface: option.Interface,
- RoutingMark: option.RoutingMark,
- },
- option.Filter,
- option.ExcludeFilter,
- option.ExcludeType,
- option.TestTimeout,
- option.MaxFailedTimes,
- providers,
- }),
- fastSingle: singledo.NewSingle[C.Proxy](time.Second * 10),
- disableUDP: option.DisableUDP,
- testUrl: option.URL,
- expectedStatus: option.ExpectedStatus,
- Hidden: option.Hidden,
- Icon: option.Icon,
- }
- for _, option := range options {
- option(urlTest)
- }
- return urlTest
- }
|