clash/listener/socks/tcp.go

110 lines
2.3 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 (
"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
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()
}
func New(addr string, in chan<- C.ConnContext, additions ...inbound.Addition) (*Listener, error) {
if len(additions) == 0 {
additions = []inbound.Addition{
inbound.WithInName("DEFAULT-SOCKS"),
inbound.WithSpecialRules(""),
}
}
2022-11-16 02:43:16 +00:00
l, err := inbound.Listen("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,
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, additions...)
2018-07-15 14:23:20 +00:00
}
}()
return sl, nil
}
func handleSocks(conn net.Conn, in chan<- C.ConnContext, additions ...inbound.Addition) {
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, additions...)
case socks5.Version:
HandleSocks5(bufConn, in, additions...)
default:
conn.Close()
}
}
func HandleSocks4(conn net.Conn, in chan<- C.ConnContext, additions ...inbound.Addition) {
addr, _, err := socks4.ServerHandshake(conn, authStore.Authenticator())
if err != nil {
conn.Close()
return
}
in <- inbound.NewSocket(socks5.ParseAddr(addr), conn, C.SOCKS4, additions...)
}
func HandleSocks5(conn net.Conn, in chan<- C.ConnContext, additions ...inbound.Addition) {
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, additions...)
2019-04-23 15:29:36 +00:00
}