-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat: implement anytls client and server #1844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
cfdb6a2
feat: implement anytls client
952f286
feat: implement clientFingerprint for anytls client
e4cf7e9
fix: handling padding size boundary conditions
b012a3c
refactor: passing dial in constructor
3a98973
refactor: remove wrapper class
5e7d694
feat: implement anytls server
35ff310
fix: uot request
a6d90d3
fix: Ref & WithDialer
ee32a8e
feat: anytls example config
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
package outbound | ||
|
||
import ( | ||
"context" | ||
"crypto/tls" | ||
"errors" | ||
"net" | ||
"runtime" | ||
"strconv" | ||
"time" | ||
|
||
CN "github.com/metacubex/mihomo/common/net" | ||
"github.com/metacubex/mihomo/component/dialer" | ||
"github.com/metacubex/mihomo/component/proxydialer" | ||
"github.com/metacubex/mihomo/component/resolver" | ||
tlsC "github.com/metacubex/mihomo/component/tls" | ||
C "github.com/metacubex/mihomo/constant" | ||
"github.com/metacubex/mihomo/transport/anytls" | ||
"github.com/sagernet/sing/common" | ||
M "github.com/sagernet/sing/common/metadata" | ||
"github.com/sagernet/sing/common/uot" | ||
) | ||
|
||
type AnyTLS struct { | ||
*Base | ||
client *anytls.Client | ||
dialer proxydialer.SingDialer | ||
option *AnyTLSOption | ||
} | ||
|
||
type AnyTLSOption struct { | ||
BasicOption | ||
Name string `proxy:"name"` | ||
Server string `proxy:"server"` | ||
Port int `proxy:"port"` | ||
Password string `proxy:"password"` | ||
ALPN []string `proxy:"alpn,omitempty"` | ||
SNI string `proxy:"sni,omitempty"` | ||
ClientFingerprint string `proxy:"client-fingerprint,omitempty"` | ||
SkipCertVerify bool `proxy:"skip-cert-verify,omitempty"` | ||
UDP bool `proxy:"udp,omitempty"` | ||
IdleSessionCheckInterval int `proxy:"idle-session-check-interval,omitempty"` | ||
IdleSessionTimeout int `proxy:"idle-session-timeout,omitempty"` | ||
} | ||
|
||
func (t *AnyTLS) DialContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (_ C.Conn, err error) { | ||
options := t.Base.DialOptions(opts...) | ||
t.dialer.SetDialer(dialer.NewDialer(options...)) | ||
c, err := t.client.CreateProxy(ctx, M.ParseSocksaddrHostPort(metadata.String(), metadata.DstPort)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return NewConn(CN.NewRefConn(c, t), t), nil | ||
} | ||
|
||
func (t *AnyTLS) ListenPacketContext(ctx context.Context, metadata *C.Metadata, opts ...dialer.Option) (_ C.PacketConn, err error) { | ||
// create tcp | ||
options := t.Base.DialOptions(opts...) | ||
t.dialer.SetDialer(dialer.NewDialer(options...)) | ||
c, err := t.client.CreateProxy(ctx, uot.RequestDestination(2)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// create uot on tcp | ||
if !metadata.Resolved() { | ||
ip, err := resolver.ResolveIP(ctx, metadata.Host) | ||
if err != nil { | ||
return nil, errors.New("can't resolve ip") | ||
} | ||
metadata.DstIP = ip | ||
} | ||
destination := M.SocksaddrFromNet(metadata.UDPAddr()) | ||
return newPacketConn(CN.NewRefPacketConn(CN.NewThreadSafePacketConn(uot.NewLazyConn(c, uot.Request{Destination: destination})), t), t), nil | ||
} | ||
|
||
// SupportUOT implements C.ProxyAdapter | ||
func (t *AnyTLS) SupportUOT() bool { | ||
return true | ||
} | ||
|
||
// ProxyInfo implements C.ProxyAdapter | ||
func (t *AnyTLS) ProxyInfo() C.ProxyInfo { | ||
info := t.Base.ProxyInfo() | ||
info.DialerProxy = t.option.DialerProxy | ||
return info | ||
} | ||
|
||
func NewAnyTLS(option AnyTLSOption) (*AnyTLS, error) { | ||
addr := net.JoinHostPort(option.Server, strconv.Itoa(option.Port)) | ||
|
||
singDialer := proxydialer.NewByNameSingDialer(option.DialerProxy, dialer.NewDialer()) | ||
|
||
tOption := anytls.ClientConfig{ | ||
Password: option.Password, | ||
Server: M.ParseSocksaddrHostPort(option.Server, uint16(option.Port)), | ||
Dialer: singDialer, | ||
IdleSessionCheckInterval: time.Duration(option.IdleSessionCheckInterval) * time.Second, | ||
IdleSessionTimeout: time.Duration(option.IdleSessionTimeout) * time.Second, | ||
ClientFingerprint: option.ClientFingerprint, | ||
} | ||
tlsConfig := &tls.Config{ | ||
ServerName: option.SNI, | ||
InsecureSkipVerify: option.SkipCertVerify, | ||
NextProtos: option.ALPN, | ||
} | ||
if tlsConfig.ServerName == "" { | ||
tlsConfig.ServerName = "127.0.0.1" | ||
} | ||
tOption.TLSConfig = tlsConfig | ||
|
||
if tlsC.HaveGlobalFingerprint() && len(tOption.ClientFingerprint) == 0 { | ||
tOption.ClientFingerprint = tlsC.GetGlobalFingerprint() | ||
} | ||
|
||
outbound := &AnyTLS{ | ||
Base: &Base{ | ||
name: option.Name, | ||
addr: addr, | ||
tp: C.AnyTLS, | ||
udp: option.UDP, | ||
tfo: option.TFO, | ||
mpTcp: option.MPTCP, | ||
iface: option.Interface, | ||
rmark: option.RoutingMark, | ||
prefer: C.NewDNSPrefer(option.IPVersion), | ||
}, | ||
client: anytls.NewClient(context.TODO(), tOption), | ||
option: &option, | ||
dialer: singDialer, | ||
} | ||
runtime.SetFinalizer(outbound, func(o *AnyTLS) { | ||
common.Close(o.client) | ||
}) | ||
|
||
return outbound, nil | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.