2021-06-10 06:05:56 +00:00
|
|
|
package adapter
|
2018-12-22 15:56:42 +00:00
|
|
|
|
|
|
|
import (
|
2019-07-02 11:18:03 +00:00
|
|
|
"context"
|
2018-12-22 15:56:42 +00:00
|
|
|
"encoding/json"
|
2021-06-10 06:05:56 +00:00
|
|
|
"fmt"
|
2019-03-15 16:43:16 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2021-06-10 06:05:56 +00:00
|
|
|
"net/url"
|
2019-03-15 16:43:16 +00:00
|
|
|
"time"
|
2018-12-22 15:56:42 +00:00
|
|
|
|
2019-03-17 06:52:39 +00:00
|
|
|
"github.com/Dreamacro/clash/common/queue"
|
2021-11-07 08:48:51 +00:00
|
|
|
"github.com/Dreamacro/clash/component/dialer"
|
2018-12-22 15:56:42 +00:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2020-10-29 09:51:14 +00:00
|
|
|
|
|
|
|
"go.uber.org/atomic"
|
2018-12-22 15:56:42 +00:00
|
|
|
)
|
|
|
|
|
2019-03-15 16:43:16 +00:00
|
|
|
type Proxy struct {
|
|
|
|
C.ProxyAdapter
|
2019-03-17 06:52:39 +00:00
|
|
|
history *queue.Queue
|
2020-10-29 09:51:14 +00:00
|
|
|
alive *atomic.Bool
|
2019-03-15 16:43:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// Alive implements C.Proxy
|
2019-03-15 16:43:16 +00:00
|
|
|
func (p *Proxy) Alive() bool {
|
2020-10-29 09:51:14 +00:00
|
|
|
return p.alive.Load()
|
2019-03-15 16:43:16 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// Dial implements C.Proxy
|
2019-08-08 17:28:37 +00:00
|
|
|
func (p *Proxy) Dial(metadata *C.Metadata) (C.Conn, error) {
|
2021-06-10 06:05:56 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), C.DefaultTCPTimeout)
|
2019-10-12 15:55:39 +00:00
|
|
|
defer cancel()
|
|
|
|
return p.DialContext(ctx, metadata)
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// DialContext implements C.ProxyAdapter
|
2021-11-07 08:48:51 +00:00
|
|
|
func (p *Proxy) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.Conn, error) {
|
|
|
|
conn, err := p.ProxyAdapter.DialContext(ctx, metadata, opts...)
|
2021-10-15 13:44:53 +00:00
|
|
|
p.alive.Store(err == nil)
|
2019-03-15 16:43:16 +00:00
|
|
|
return conn, err
|
|
|
|
}
|
|
|
|
|
2021-10-15 13:44:53 +00:00
|
|
|
// DialUDP implements C.ProxyAdapter
|
|
|
|
func (p *Proxy) DialUDP(metadata *C.Metadata) (C.PacketConn, error) {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), C.DefaultUDPTimeout)
|
|
|
|
defer cancel()
|
|
|
|
return p.ListenPacketContext(ctx, metadata)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListenPacketContext implements C.ProxyAdapter
|
2021-11-07 08:48:51 +00:00
|
|
|
func (p *Proxy) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (C.PacketConn, error) {
|
|
|
|
pc, err := p.ProxyAdapter.ListenPacketContext(ctx, metadata, opts...)
|
2021-10-15 13:44:53 +00:00
|
|
|
p.alive.Store(err == nil)
|
|
|
|
return pc, err
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// DelayHistory implements C.Proxy
|
2019-03-17 06:52:39 +00:00
|
|
|
func (p *Proxy) DelayHistory() []C.DelayHistory {
|
|
|
|
queue := p.history.Copy()
|
|
|
|
histories := []C.DelayHistory{}
|
|
|
|
for _, item := range queue {
|
|
|
|
histories = append(histories, item.(C.DelayHistory))
|
|
|
|
}
|
|
|
|
return histories
|
|
|
|
}
|
|
|
|
|
2019-09-07 08:23:43 +00:00
|
|
|
// LastDelay return last history record. if proxy is not alive, return the max value of uint16.
|
2021-04-29 03:23:14 +00:00
|
|
|
// implements C.Proxy
|
2019-03-17 06:52:39 +00:00
|
|
|
func (p *Proxy) LastDelay() (delay uint16) {
|
2019-03-23 08:29:27 +00:00
|
|
|
var max uint16 = 0xffff
|
2020-10-29 09:51:14 +00:00
|
|
|
if !p.alive.Load() {
|
2019-03-23 08:29:27 +00:00
|
|
|
return max
|
|
|
|
}
|
|
|
|
|
2019-09-26 02:08:50 +00:00
|
|
|
last := p.history.Last()
|
|
|
|
if last == nil {
|
2019-03-23 08:29:27 +00:00
|
|
|
return max
|
2019-03-17 06:52:39 +00:00
|
|
|
}
|
2019-09-26 02:08:50 +00:00
|
|
|
history := last.(C.DelayHistory)
|
2019-03-17 06:52:39 +00:00
|
|
|
if history.Delay == 0 {
|
2019-03-23 08:29:27 +00:00
|
|
|
return max
|
2019-03-17 06:52:39 +00:00
|
|
|
}
|
|
|
|
return history.Delay
|
|
|
|
}
|
|
|
|
|
2021-04-29 03:23:14 +00:00
|
|
|
// MarshalJSON implements C.ProxyAdapter
|
2019-03-17 06:52:39 +00:00
|
|
|
func (p *Proxy) MarshalJSON() ([]byte, error) {
|
|
|
|
inner, err := p.ProxyAdapter.MarshalJSON()
|
|
|
|
if err != nil {
|
|
|
|
return inner, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mapping := map[string]interface{}{}
|
|
|
|
json.Unmarshal(inner, &mapping)
|
|
|
|
mapping["history"] = p.DelayHistory()
|
2019-12-12 16:29:24 +00:00
|
|
|
mapping["name"] = p.Name()
|
2021-06-10 07:08:33 +00:00
|
|
|
mapping["udp"] = p.SupportUDP()
|
2019-03-17 06:52:39 +00:00
|
|
|
return json.Marshal(mapping)
|
|
|
|
}
|
|
|
|
|
2019-03-15 16:43:16 +00:00
|
|
|
// URLTest get the delay for the specified URL
|
2021-04-29 03:23:14 +00:00
|
|
|
// implements C.Proxy
|
2019-07-02 11:18:03 +00:00
|
|
|
func (p *Proxy) URLTest(ctx context.Context, url string) (t uint16, err error) {
|
2019-03-17 06:52:39 +00:00
|
|
|
defer func() {
|
2020-10-29 09:51:14 +00:00
|
|
|
p.alive.Store(err == nil)
|
2019-03-17 06:52:39 +00:00
|
|
|
record := C.DelayHistory{Time: time.Now()}
|
|
|
|
if err == nil {
|
|
|
|
record.Delay = t
|
|
|
|
}
|
|
|
|
p.history.Put(record)
|
|
|
|
if p.history.Len() > 10 {
|
|
|
|
p.history.Pop()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-03-15 16:43:16 +00:00
|
|
|
addr, err := urlToMetadata(url)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
start := time.Now()
|
2019-10-12 15:55:39 +00:00
|
|
|
instance, err := p.DialContext(ctx, &addr)
|
2019-03-15 16:43:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer instance.Close()
|
2019-07-02 11:18:03 +00:00
|
|
|
|
2019-08-09 07:39:13 +00:00
|
|
|
req, err := http.NewRequest(http.MethodHead, url, nil)
|
2019-07-02 11:18:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req = req.WithContext(ctx)
|
|
|
|
|
2019-03-15 16:43:16 +00:00
|
|
|
transport := &http.Transport{
|
|
|
|
Dial: func(string, string) (net.Conn, error) {
|
|
|
|
return instance, nil
|
|
|
|
},
|
|
|
|
// from http.DefaultTransport
|
|
|
|
MaxIdleConns: 100,
|
|
|
|
IdleConnTimeout: 90 * time.Second,
|
|
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
|
|
}
|
2019-07-02 11:18:03 +00:00
|
|
|
|
2020-02-25 08:08:13 +00:00
|
|
|
client := http.Client{
|
|
|
|
Transport: transport,
|
|
|
|
CheckRedirect: func(req *http.Request, via []*http.Request) error {
|
|
|
|
return http.ErrUseLastResponse
|
|
|
|
},
|
|
|
|
}
|
2021-07-21 09:01:02 +00:00
|
|
|
defer client.CloseIdleConnections()
|
|
|
|
|
2019-07-02 11:18:03 +00:00
|
|
|
resp, err := client.Do(req)
|
2019-03-15 16:43:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
resp.Body.Close()
|
2019-03-17 06:52:39 +00:00
|
|
|
t = uint16(time.Since(start) / time.Millisecond)
|
2019-03-15 16:43:16 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewProxy(adapter C.ProxyAdapter) *Proxy {
|
2020-10-29 09:51:14 +00:00
|
|
|
return &Proxy{adapter, queue.New(10), atomic.NewBool(true)}
|
2019-03-15 16:43:16 +00:00
|
|
|
}
|
2021-06-10 06:05:56 +00:00
|
|
|
|
|
|
|
func urlToMetadata(rawURL string) (addr C.Metadata, err error) {
|
|
|
|
u, err := url.Parse(rawURL)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
port := u.Port()
|
|
|
|
if port == "" {
|
|
|
|
switch u.Scheme {
|
|
|
|
case "https":
|
|
|
|
port = "443"
|
|
|
|
case "http":
|
|
|
|
port = "80"
|
|
|
|
default:
|
|
|
|
err = fmt.Errorf("%s scheme not Support", rawURL)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = C.Metadata{
|
|
|
|
AddrType: C.AtypDomainName,
|
|
|
|
Host: u.Hostname(),
|
|
|
|
DstIP: nil,
|
|
|
|
DstPort: port,
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|