mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-12-26 12:15:44 +08:00
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package mitm
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"net"
|
|
"net/http"
|
|
|
|
"github.com/Dreamacro/clash/adapter/inbound"
|
|
N "github.com/Dreamacro/clash/common/net"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
|
)
|
|
|
|
func getServerConn(serverConn *N.BufferedConn, request *http.Request, srcAddr net.Addr, in chan<- C.ConnContext) (*N.BufferedConn, error) {
|
|
if serverConn != nil {
|
|
return serverConn, nil
|
|
}
|
|
|
|
address := request.URL.Host
|
|
if _, _, err := net.SplitHostPort(address); err != nil {
|
|
port := "80"
|
|
if request.TLS != nil {
|
|
port = "443"
|
|
}
|
|
address = net.JoinHostPort(address, port)
|
|
}
|
|
|
|
dstAddr := socks5.ParseAddr(address)
|
|
if dstAddr == nil {
|
|
return nil, socks5.ErrAddressNotSupported
|
|
}
|
|
|
|
left, right := net.Pipe()
|
|
|
|
in <- inbound.NewMitm(dstAddr, srcAddr, request.Header.Get("User-Agent"), right)
|
|
|
|
if request.TLS != nil {
|
|
tlsConn := tls.Client(left, &tls.Config{
|
|
ServerName: request.TLS.ServerName,
|
|
})
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), C.DefaultTLSTimeout)
|
|
defer cancel()
|
|
if err := tlsConn.HandshakeContext(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
serverConn = N.NewBufferedConn(tlsConn)
|
|
} else {
|
|
serverConn = N.NewBufferedConn(left)
|
|
}
|
|
|
|
return serverConn, nil
|
|
}
|