Clash.Meta/listener/socks/tcp.go

68 lines
1.2 KiB
Go
Raw Normal View History

2018-06-14 01:00:58 +08:00
package socks
2018-06-10 22:50:03 +08:00
import (
"io"
"io/ioutil"
2018-06-10 22:50:03 +08:00
"net"
2021-06-10 14:05:56 +08:00
"github.com/Dreamacro/clash/adapter/inbound"
2018-12-05 21:13:29 +08:00
C "github.com/Dreamacro/clash/constant"
2021-06-13 17:23:10 +08:00
authStore "github.com/Dreamacro/clash/listener/auth"
2021-05-13 22:18:49 +08:00
"github.com/Dreamacro/clash/transport/socks5"
2018-06-10 22:50:03 +08:00
)
2021-06-13 17:23:10 +08:00
type Listener struct {
listener net.Listener
address string
closed bool
}
2021-06-13 17:23:10 +08:00
func New(addr string, in chan<- C.ConnContext) (*Listener, error) {
2018-07-15 22:23:20 +08:00
l, err := net.Listen("tcp", addr)
2018-06-10 22:50:03 +08:00
if err != nil {
return nil, err
2018-06-10 22:50:03 +08:00
}
2018-07-15 22:23:20 +08:00
2021-06-13 17:23:10 +08:00
sl := &Listener{l, addr, false}
2018-07-15 22:23:20 +08:00
go func() {
for {
c, err := l.Accept()
if err != nil {
if sl.closed {
2018-07-15 22:23:20 +08:00
break
}
continue
}
2021-06-13 17:23:10 +08:00
go HandleSocks(c, in)
2018-07-15 22:23:20 +08:00
}
}()
return sl, nil
}
2021-06-13 17:23:10 +08:00
func (l *Listener) Close() {
l.closed = true
l.listener.Close()
}
2018-07-15 22:23:20 +08:00
2021-06-13 17:23:10 +08:00
func (l *Listener) Address() string {
return l.address
2018-06-10 22:50:03 +08:00
}
2021-06-13 17:23:10 +08:00
func HandleSocks(conn net.Conn, in chan<- C.ConnContext) {
target, command, err := socks5.ServerHandshake(conn, authStore.Authenticator())
2018-06-10 22:50:03 +08:00
if err != nil {
conn.Close()
return
2018-06-10 22:50:03 +08:00
}
if c, ok := conn.(*net.TCPConn); ok {
c.SetKeepAlive(true)
}
2019-04-25 13:48:47 +08:00
if command == socks5.CmdUDPAssociate {
defer conn.Close()
io.Copy(ioutil.Discard, conn)
2019-04-23 23:29:36 +08:00
return
}
2021-06-13 17:23:10 +08:00
in <- inbound.NewSocket(target, conn, C.SOCKS)
2019-04-23 23:29:36 +08:00
}