2019-07-25 17:47:39 +08:00
|
|
|
package socks
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
|
2021-06-10 14:05:56 +08:00
|
|
|
"github.com/Dreamacro/clash/adapter/inbound"
|
2019-07-25 17:47:39 +08:00
|
|
|
"github.com/Dreamacro/clash/common/pool"
|
2020-04-11 21:45:56 +08:00
|
|
|
"github.com/Dreamacro/clash/common/sockopt"
|
2019-07-25 17:47:39 +08:00
|
|
|
C "github.com/Dreamacro/clash/constant"
|
2020-06-15 10:34:15 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2021-05-13 22:18:49 +08:00
|
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
2019-07-25 17:47:39 +08:00
|
|
|
)
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
type UDPListener struct {
|
2022-12-04 22:08:20 +08:00
|
|
|
packetConn net.PacketConn
|
|
|
|
addr string
|
|
|
|
closed bool
|
|
|
|
name string
|
|
|
|
specialRules string
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
|
|
|
|
2021-08-01 00:35:37 +08:00
|
|
|
// RawAddress implements C.Listener
|
|
|
|
func (l *UDPListener) RawAddress() string {
|
|
|
|
return l.addr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Address implements C.Listener
|
|
|
|
func (l *UDPListener) Address() string {
|
|
|
|
return l.packetConn.LocalAddr().String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close implements C.Listener
|
|
|
|
func (l *UDPListener) Close() error {
|
|
|
|
l.closed = true
|
|
|
|
return l.packetConn.Close()
|
|
|
|
}
|
|
|
|
|
2022-12-04 14:37:52 +08:00
|
|
|
func NewUDP(addr string, in chan<- C.PacketAdapter) (*UDPListener, error) {
|
|
|
|
return NewUDPWithInfos(addr, "DEFAULT-SOCKS", "", in)
|
2022-12-04 13:37:14 +08:00
|
|
|
}
|
|
|
|
|
2022-12-04 22:08:20 +08:00
|
|
|
func NewUDPWithInfos(addr, name, specialRules string, in chan<- C.PacketAdapter) (*UDPListener, error) {
|
2019-07-25 17:47:39 +08:00
|
|
|
l, err := net.ListenPacket("udp", addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:23:10 +08:00
|
|
|
if err := sockopt.UDPReuseaddr(l.(*net.UDPConn)); err != nil {
|
2020-06-15 10:34:15 +08:00
|
|
|
log.Warnln("Failed to Reuse UDP Address: %s", err)
|
2020-04-11 21:45:56 +08:00
|
|
|
}
|
|
|
|
|
2021-07-19 14:07:51 +08:00
|
|
|
sl := &UDPListener{
|
2022-12-04 22:08:20 +08:00
|
|
|
packetConn: l,
|
|
|
|
addr: addr,
|
|
|
|
specialRules: specialRules,
|
|
|
|
name: name,
|
2021-07-19 14:07:51 +08:00
|
|
|
}
|
2019-07-25 17:47:39 +08:00
|
|
|
go func() {
|
|
|
|
for {
|
2021-11-03 22:26:51 +08:00
|
|
|
buf := pool.Get(pool.UDPBufferSize)
|
2019-07-25 17:47:39 +08:00
|
|
|
n, remoteAddr, err := l.ReadFrom(buf)
|
|
|
|
if err != nil {
|
2020-04-25 00:30:40 +08:00
|
|
|
pool.Put(buf)
|
2019-07-25 17:47:39 +08:00
|
|
|
if sl.closed {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2022-12-04 22:08:20 +08:00
|
|
|
handleSocksUDP(sl.name, sl.specialRules, l, in, buf[:n], remoteAddr)
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return sl, nil
|
|
|
|
}
|
|
|
|
|
2022-12-04 22:08:20 +08:00
|
|
|
func handleSocksUDP(name, specialRules string, pc net.PacketConn, in chan<- C.PacketAdapter, buf []byte, addr net.Addr) {
|
2019-10-11 20:11:18 +08:00
|
|
|
target, payload, err := socks5.DecodeUDPPacket(buf)
|
2019-07-25 17:47:39 +08:00
|
|
|
if err != nil {
|
2019-10-11 20:11:18 +08:00
|
|
|
// Unresolved UDP packet, return buffer to the pool
|
2020-04-25 00:30:40 +08:00
|
|
|
pool.Put(buf)
|
2019-07-25 17:47:39 +08:00
|
|
|
return
|
|
|
|
}
|
2020-04-16 18:19:36 +08:00
|
|
|
packet := &packet{
|
|
|
|
pc: pc,
|
|
|
|
rAddr: addr,
|
|
|
|
payload: payload,
|
|
|
|
bufRef: buf,
|
2019-10-11 20:11:18 +08:00
|
|
|
}
|
2021-06-13 17:23:10 +08:00
|
|
|
select {
|
2022-12-04 22:08:20 +08:00
|
|
|
case in <- inbound.NewPacketWithInfos(target, packet, C.SOCKS5, name, specialRules):
|
2021-06-13 17:23:10 +08:00
|
|
|
default:
|
|
|
|
}
|
2019-07-25 17:47:39 +08:00
|
|
|
}
|