clash/listener/redir/tcp.go

74 lines
1.4 KiB
Go
Raw Normal View History

2018-08-11 20:00:34 +00:00
package redir
import (
"net"
2021-06-10 06:05:56 +00:00
"github.com/Dreamacro/clash/adapter/inbound"
2018-12-05 13:13:29 +00:00
C "github.com/Dreamacro/clash/constant"
2018-08-11 20:00:34 +00:00
)
2021-06-13 09:23:10 +00:00
type Listener struct {
2022-12-04 14:08:20 +00:00
listener net.Listener
addr string
closed bool
name string
specialRules string
}
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()
}
2021-06-13 09:23:10 +00:00
func New(addr string, in chan<- C.ConnContext) (*Listener, error) {
return NewWithInfos(addr, "DEFAULT-REDIR", "", in)
2022-12-04 05:37:14 +00:00
}
2022-12-04 14:08:20 +00:00
func NewWithInfos(addr, name, specialRules string, in chan<- C.ConnContext) (*Listener, error) {
2018-08-11 20:00:34 +00:00
l, err := net.Listen("tcp", addr)
if err != nil {
return nil, err
2018-08-11 20:00:34 +00:00
}
rl := &Listener{
2022-12-04 14:08:20 +00:00
listener: l,
addr: addr,
name: name,
specialRules: specialRules,
}
2018-08-11 20:00:34 +00:00
go func() {
for {
c, err := l.Accept()
if err != nil {
if rl.closed {
2018-08-11 20:00:34 +00:00
break
}
continue
}
2022-12-04 14:08:20 +00:00
go handleRedir(rl.name, rl.specialRules, c, in)
2018-08-11 20:00:34 +00:00
}
}()
return rl, nil
}
2022-12-04 14:08:20 +00:00
func handleRedir(name, specialRules string, conn net.Conn, in chan<- C.ConnContext) {
2018-08-11 20:00:34 +00:00
target, err := parserPacket(conn)
if err != nil {
conn.Close()
return
}
conn.(*net.TCPConn).SetKeepAlive(true)
2022-12-04 14:08:20 +00:00
in <- inbound.NewSocketWithInfos(target, conn, C.REDIR, name, specialRules)
2018-08-11 20:00:34 +00:00
}