clash/listener/socks/tcp.go

109 lines
2.1 KiB
Go
Raw Normal View History

2018-06-13 17:00:58 +00:00
package socks
2018-06-10 14:50:03 +00:00
import (
2022-07-22 07:16:09 +00:00
"context"
"github.com/database64128/tfo-go"
"io"
2018-06-10 14:50:03 +00:00
"net"
2021-06-10 06:05:56 +00:00
"github.com/Dreamacro/clash/adapter/inbound"
N "github.com/Dreamacro/clash/common/net"
2018-12-05 13:13:29 +00:00
C "github.com/Dreamacro/clash/constant"
2021-06-13 09:23:10 +00:00
authStore "github.com/Dreamacro/clash/listener/auth"
"github.com/Dreamacro/clash/transport/socks4"
2021-05-13 14:18:49 +00:00
"github.com/Dreamacro/clash/transport/socks5"
2018-06-10 14:50:03 +00:00
)
2021-06-13 09:23:10 +00:00
type Listener struct {
listener net.Listener
2021-07-31 16:35:37 +00:00
addr string
closed bool
}
2021-07-31 16:35:37 +00:00
// RawAddress implements C.Listener
func (l *Listener) RawAddress() string {
return l.addr
}
// Address implements C.Listener
func (l *Listener) Address() string {
return l.listener.Addr().String()
}
// Close implements C.Listener
func (l *Listener) Close() error {
l.closed = true
return l.listener.Close()
}
2022-07-22 07:16:09 +00:00
func New(addr string, inboundTfo bool, in chan<- C.ConnContext) (*Listener, error) {
lc := tfo.ListenConfig{
DisableTFO: !inboundTfo,
}
l, err := lc.Listen(context.Background(), "tcp", addr)
2018-06-10 14:50:03 +00:00
if err != nil {
return nil, err
2018-06-10 14:50:03 +00:00
}
2018-07-15 14:23:20 +00:00
sl := &Listener{
listener: l,
2021-07-31 16:35:37 +00:00
addr: addr,
}
2018-07-15 14:23:20 +00:00
go func() {
for {
c, err := l.Accept()
if err != nil {
if sl.closed {
2018-07-15 14:23:20 +00:00
break
}
continue
}
go handleSocks(c, in)
2018-07-15 14:23:20 +00:00
}
}()
return sl, nil
}
func handleSocks(conn net.Conn, in chan<- C.ConnContext) {
conn.(*net.TCPConn).SetKeepAlive(true)
bufConn := N.NewBufferedConn(conn)
head, err := bufConn.Peek(1)
if err != nil {
conn.Close()
return
}
switch head[0] {
case socks4.Version:
HandleSocks4(bufConn, in)
case socks5.Version:
HandleSocks5(bufConn, in)
default:
conn.Close()
}
}
func HandleSocks4(conn net.Conn, in chan<- C.ConnContext) {
addr, _, err := socks4.ServerHandshake(conn, authStore.Authenticator())
if err != nil {
conn.Close()
return
}
in <- inbound.NewSocket(socks5.ParseAddr(addr), conn, C.SOCKS4)
}
func HandleSocks5(conn net.Conn, in chan<- C.ConnContext) {
target, command, err := socks5.ServerHandshake(conn, authStore.Authenticator())
2018-06-10 14:50:03 +00:00
if err != nil {
conn.Close()
return
2018-06-10 14:50:03 +00:00
}
2019-04-25 05:48:47 +00:00
if command == socks5.CmdUDPAssociate {
defer conn.Close()
2021-10-09 12:35:06 +00:00
io.Copy(io.Discard, conn)
2019-04-23 15:29:36 +00:00
return
}
in <- inbound.NewSocket(target, conn, C.SOCKS5)
2019-04-23 15:29:36 +00:00
}