mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Implementation read waiter for socks5 UDP and UoT
This commit is contained in:
parent
ae8098ad39
commit
aa34723225
4 changed files with 97 additions and 1 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"github.com/sagernet/sing/common"
|
||||
"github.com/sagernet/sing/common/buf"
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
N "github.com/sagernet/sing/common/network"
|
||||
)
|
||||
|
@ -17,6 +18,8 @@ import (
|
|||
// | 2 | 1 | 1 | Variable | 2 | Variable |
|
||||
// +----+------+------+----------+----------+----------+
|
||||
|
||||
var ErrInvalidPacket = E.New("socks5: invalid packet")
|
||||
|
||||
type AssociatePacketConn struct {
|
||||
N.NetPacketConn
|
||||
remoteAddr M.Socksaddr
|
||||
|
@ -31,6 +34,7 @@ func NewAssociatePacketConn(conn net.PacketConn, remoteAddr M.Socksaddr, underly
|
|||
}
|
||||
}
|
||||
|
||||
// Deprecated: NewAssociatePacketConn(bufio.NewUnbindPacketConn(conn), remoteAddr, underlying) instead.
|
||||
func NewAssociateConn(conn net.Conn, remoteAddr M.Socksaddr, underlying net.Conn) *AssociatePacketConn {
|
||||
return &AssociatePacketConn{
|
||||
NetPacketConn: bufio.NewUnbindPacketConn(conn),
|
||||
|
@ -49,6 +53,9 @@ func (c *AssociatePacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err erro
|
|||
if err != nil {
|
||||
return
|
||||
}
|
||||
if n < 3 {
|
||||
return 0, nil, ErrInvalidPacket
|
||||
}
|
||||
c.remoteAddr = M.SocksaddrFromNet(addr)
|
||||
reader := bytes.NewReader(p[3:n])
|
||||
destination, err := M.SocksaddrSerializer.ReadAddrPort(reader)
|
||||
|
@ -92,6 +99,9 @@ func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Sock
|
|||
if err != nil {
|
||||
return M.Socksaddr{}, err
|
||||
}
|
||||
if buffer.Len() < 3 {
|
||||
return M.Socksaddr{}, ErrInvalidPacket
|
||||
}
|
||||
c.remoteAddr = destination
|
||||
buffer.Advance(3)
|
||||
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue