2020-03-21 15:46:49 +00:00
|
|
|
package outboundgroup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
|
2021-06-10 06:05:56 +00:00
|
|
|
"github.com/Dreamacro/clash/adapter/outbound"
|
2020-03-21 15:46:49 +00:00
|
|
|
"github.com/Dreamacro/clash/common/singledo"
|
|
|
|
"github.com/Dreamacro/clash/component/dialer"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2021-07-04 12:32:59 +00:00
|
|
|
"github.com/Dreamacro/clash/constant/provider"
|
2020-03-21 15:46:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Relay struct {
|
|
|
|
*outbound.Base
|
|
|
|
single *singledo.Single
|
|
|
|
providers []provider.ProxyProvider
|
2022-01-05 04:19:49 +00:00
|
|
|
filter string
|
2020-03-21 15:46:49 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// DialContext implements C.ProxyAdapter
|
2021-11-07 08:48:51 +00:00
|
|
|
func (r *Relay) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.Conn, error) {
|
2021-09-06 13:39:28 +00:00
|
|
|
var proxies []C.Proxy
|
|
|
|
for _, proxy := range r.proxies(metadata, true) {
|
2022-01-18 13:09:36 +00:00
|
|
|
if proxy.Type() != C.Direct && proxy.Type() != C.Compatible {
|
2021-09-06 13:39:28 +00:00
|
|
|
proxies = append(proxies, proxy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch len(proxies) {
|
|
|
|
case 0:
|
2021-11-07 08:48:51 +00:00
|
|
|
return outbound.NewDirect().DialContext(ctx, metadata, r.Base.DialOptions(opts...)...)
|
2021-09-06 13:39:28 +00:00
|
|
|
case 1:
|
2021-11-07 08:48:51 +00:00
|
|
|
return proxies[0].DialContext(ctx, metadata, r.Base.DialOptions(opts...)...)
|
2020-03-21 15:46:49 +00:00
|
|
|
}
|
2021-09-06 13:39:28 +00:00
|
|
|
|
2020-03-21 15:46:49 +00:00
|
|
|
first := proxies[0]
|
|
|
|
last := proxies[len(proxies)-1]
|
|
|
|
|
2021-11-07 08:48:51 +00:00
|
|
|
c, err := dialer.DialContext(ctx, "tcp", first.Addr(), r.Base.DialOptions(opts...)...)
|
2020-03-21 15:46:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s connect error: %w", first.Addr(), err)
|
|
|
|
}
|
|
|
|
tcpKeepAlive(c)
|
|
|
|
|
|
|
|
var currentMeta *C.Metadata
|
|
|
|
for _, proxy := range proxies[1:] {
|
|
|
|
currentMeta, err = addrToMetadata(proxy.Addr())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err = first.StreamConn(c, currentMeta)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s connect error: %w", first.Addr(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
first = proxy
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err = last.StreamConn(c, metadata)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s connect error: %w", last.Addr(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return outbound.NewConn(c, r), nil
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// MarshalJSON implements C.ProxyAdapter
|
2020-03-21 15:46:49 +00:00
|
|
|
func (r *Relay) MarshalJSON() ([]byte, error) {
|
2022-03-23 05:48:21 +00:00
|
|
|
all := []string{}
|
2020-11-18 16:53:22 +00:00
|
|
|
for _, proxy := range r.rawProxies(false) {
|
2020-03-21 15:46:49 +00:00
|
|
|
all = append(all, proxy.Name())
|
|
|
|
}
|
2022-03-16 04:10:13 +00:00
|
|
|
return json.Marshal(map[string]any{
|
2020-03-21 15:46:49 +00:00
|
|
|
"type": r.Type().String(),
|
|
|
|
"all": all,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-18 16:53:22 +00:00
|
|
|
func (r *Relay) rawProxies(touch bool) []C.Proxy {
|
2022-03-16 04:10:13 +00:00
|
|
|
elm, _, _ := r.single.Do(func() (any, error) {
|
2022-01-05 04:19:49 +00:00
|
|
|
return getProvidersProxies(r.providers, touch, r.filter), nil
|
2020-03-21 15:46:49 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return elm.([]C.Proxy)
|
|
|
|
}
|
|
|
|
|
2020-11-18 16:53:22 +00:00
|
|
|
func (r *Relay) proxies(metadata *C.Metadata, touch bool) []C.Proxy {
|
|
|
|
proxies := r.rawProxies(touch)
|
2020-05-07 13:42:52 +00:00
|
|
|
|
|
|
|
for n, proxy := range proxies {
|
|
|
|
subproxy := proxy.Unwrap(metadata)
|
|
|
|
for subproxy != nil {
|
|
|
|
proxies[n] = subproxy
|
|
|
|
subproxy = subproxy.Unwrap(metadata)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return proxies
|
|
|
|
}
|
|
|
|
|
2021-11-07 08:48:51 +00:00
|
|
|
func NewRelay(option *GroupCommonOption, providers []provider.ProxyProvider) *Relay {
|
2020-03-21 15:46:49 +00:00
|
|
|
return &Relay{
|
2021-11-07 08:48:51 +00:00
|
|
|
Base: outbound.NewBase(outbound.BaseOption{
|
2021-11-08 08:59:48 +00:00
|
|
|
Name: option.Name,
|
|
|
|
Type: C.Relay,
|
|
|
|
Interface: option.Interface,
|
|
|
|
RoutingMark: option.RoutingMark,
|
2021-11-07 08:48:51 +00:00
|
|
|
}),
|
2020-03-21 15:46:49 +00:00
|
|
|
single: singledo.NewSingle(defaultGetProxiesDuration),
|
|
|
|
providers: providers,
|
2022-01-05 04:19:49 +00:00
|
|
|
filter: option.Filter,
|
2020-03-21 15:46:49 +00:00
|
|
|
}
|
|
|
|
}
|