2018-08-12 04:00:34 +08:00
|
|
|
package redir
|
|
|
|
|
|
|
|
import (
|
|
|
|
"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"
|
2018-08-12 04:00:34 +08:00
|
|
|
)
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
type Listener struct {
|
2018-11-22 11:54:01 +08:00
|
|
|
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-08-12 04:00:34 +08:00
|
|
|
l, err := net.Listen("tcp", addr)
|
|
|
|
if err != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
return nil, err
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
2021-06-13 17:23:10 +08:00
|
|
|
rl := &Listener{l, addr, false}
|
2018-08-12 04:00:34 +08:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
c, err := l.Accept()
|
|
|
|
if err != nil {
|
2018-11-22 11:54:01 +08:00
|
|
|
if rl.closed {
|
2018-08-12 04:00:34 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2021-06-13 17:23:10 +08:00
|
|
|
go handleRedir(c, in)
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-11-22 11:54:01 +08:00
|
|
|
return rl, nil
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
func (l *Listener) Close() {
|
2018-11-22 11:54:01 +08:00
|
|
|
l.closed = true
|
|
|
|
l.Listener.Close()
|
|
|
|
}
|
2018-08-12 04:00:34 +08:00
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
func (l *Listener) Address() string {
|
2018-11-22 11:54:01 +08:00
|
|
|
return l.address
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
func handleRedir(conn net.Conn, in chan<- C.ConnContext) {
|
2018-08-12 04:00:34 +08:00
|
|
|
target, err := parserPacket(conn)
|
|
|
|
if err != nil {
|
|
|
|
conn.Close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn.(*net.TCPConn).SetKeepAlive(true)
|
2021-06-13 17:23:10 +08:00
|
|
|
in <- inbound.NewSocket(target, conn, C.REDIR)
|
2018-08-12 04:00:34 +08:00
|
|
|
}
|