mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Fix socks5 packet conn
This commit is contained in:
parent
8fb1634c9a
commit
284cb5ce98
5 changed files with 59 additions and 71 deletions
|
@ -63,6 +63,10 @@ func (c *unidirectionalNATPacketConn) UpdateDestination(destinationAddress netip
|
||||||
c.destination = M.SocksaddrFrom(destinationAddress, c.destination.Port)
|
c.destination = M.SocksaddrFrom(destinationAddress, c.destination.Port)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *unidirectionalNATPacketConn) RemoteAddr() net.Addr {
|
||||||
|
return c.destination.UDPAddr()
|
||||||
|
}
|
||||||
|
|
||||||
func (c *unidirectionalNATPacketConn) Upstream() any {
|
func (c *unidirectionalNATPacketConn) Upstream() any {
|
||||||
return c.NetPacketConn
|
return c.NetPacketConn
|
||||||
}
|
}
|
||||||
|
@ -136,6 +140,10 @@ func (c *bidirectionalNATPacketConn) Upstream() any {
|
||||||
return c.NetPacketConn
|
return c.NetPacketConn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *bidirectionalNATPacketConn) RemoteAddr() net.Addr {
|
||||||
|
return c.destination.UDPAddr()
|
||||||
|
}
|
||||||
|
|
||||||
func socksaddrWithoutPort(destination M.Socksaddr) M.Socksaddr {
|
func socksaddrWithoutPort(destination M.Socksaddr) M.Socksaddr {
|
||||||
destination.Port = 0
|
destination.Port = 0
|
||||||
return destination
|
return destination
|
||||||
|
|
|
@ -7,7 +7,6 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common/bufio"
|
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
M "github.com/sagernet/sing/common/metadata"
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
N "github.com/sagernet/sing/common/network"
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
@ -148,7 +147,7 @@ func (c *Client) DialContext(ctx context.Context, network string, address M.Sock
|
||||||
tcpConn.Close()
|
tcpConn.Close()
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return NewAssociatePacketConn(bufio.NewUnbindPacketConn(udpConn), address, tcpConn), nil
|
return NewAssociatePacketConn(udpConn, address, tcpConn), nil
|
||||||
}
|
}
|
||||||
return nil, os.ErrInvalid
|
return nil, os.ErrInvalid
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,54 +21,41 @@ import (
|
||||||
var ErrInvalidPacket = E.New("socks5: invalid packet")
|
var ErrInvalidPacket = E.New("socks5: invalid packet")
|
||||||
|
|
||||||
type AssociatePacketConn struct {
|
type AssociatePacketConn struct {
|
||||||
N.NetPacketConn
|
N.AbstractConn
|
||||||
|
conn N.ExtendedConn
|
||||||
remoteAddr M.Socksaddr
|
remoteAddr M.Socksaddr
|
||||||
underlying net.Conn
|
underlying net.Conn
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewAssociatePacketConn(conn net.PacketConn, remoteAddr M.Socksaddr, underlying net.Conn) *AssociatePacketConn {
|
func NewAssociatePacketConn(conn net.Conn, remoteAddr M.Socksaddr, underlying net.Conn) *AssociatePacketConn {
|
||||||
return &AssociatePacketConn{
|
return &AssociatePacketConn{
|
||||||
NetPacketConn: bufio.NewPacketConn(conn),
|
AbstractConn: conn,
|
||||||
|
conn: bufio.NewExtendedConn(conn),
|
||||||
remoteAddr: remoteAddr,
|
remoteAddr: remoteAddr,
|
||||||
underlying: underlying,
|
underlying: underlying,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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),
|
|
||||||
remoteAddr: remoteAddr,
|
|
||||||
underlying: underlying,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *AssociatePacketConn) RemoteAddr() net.Addr {
|
|
||||||
return c.remoteAddr.UDPAddr()
|
|
||||||
}
|
|
||||||
|
|
||||||
//warn:unsafe
|
|
||||||
func (c *AssociatePacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
func (c *AssociatePacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
||||||
n, addr, err = c.NetPacketConn.ReadFrom(p)
|
n, err = c.conn.Read(p)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if n < 3 {
|
if n < 3 {
|
||||||
return 0, nil, ErrInvalidPacket
|
return 0, nil, ErrInvalidPacket
|
||||||
}
|
}
|
||||||
c.remoteAddr = M.SocksaddrFromNet(addr)
|
|
||||||
reader := bytes.NewReader(p[3:n])
|
reader := bytes.NewReader(p[3:n])
|
||||||
destination, err := M.SocksaddrSerializer.ReadAddrPort(reader)
|
destination, err := M.SocksaddrSerializer.ReadAddrPort(reader)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
c.remoteAddr = destination
|
||||||
addr = destination.UDPAddr()
|
addr = destination.UDPAddr()
|
||||||
index := 3 + int(reader.Size()) - reader.Len()
|
index := 3 + int(reader.Size()) - reader.Len()
|
||||||
n = copy(p, p[index:n])
|
n = copy(p, p[index:n])
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//warn:unsafe
|
|
||||||
func (c *AssociatePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
func (c *AssociatePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
destination := M.SocksaddrFromNet(addr)
|
destination := M.SocksaddrFromNet(addr)
|
||||||
buffer := buf.NewSize(3 + M.SocksaddrSerializer.AddrPortLen(destination) + len(p))
|
buffer := buf.NewSize(3 + M.SocksaddrSerializer.AddrPortLen(destination) + len(p))
|
||||||
|
@ -82,7 +69,34 @@ func (c *AssociatePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return bufio.WritePacketBuffer(c.NetPacketConn, buffer, c.remoteAddr)
|
return c.conn.Write(buffer.Bytes())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
||||||
|
err = c.conn.ReadBuffer(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if buffer.Len() < 3 {
|
||||||
|
return M.Socksaddr{}, ErrInvalidPacket
|
||||||
|
}
|
||||||
|
buffer.Advance(3)
|
||||||
|
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.remoteAddr = destination
|
||||||
|
return destination.Unwrap(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *AssociatePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
|
header := buf.With(buffer.ExtendHeader(3 + M.SocksaddrSerializer.AddrPortLen(destination)))
|
||||||
|
common.Must(header.WriteZeroN(3))
|
||||||
|
err := M.SocksaddrSerializer.WriteAddrPort(header, destination)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return c.conn.WriteBuffer(buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) Read(b []byte) (n int, err error) {
|
func (c *AssociatePacketConn) Read(b []byte) (n int, err error) {
|
||||||
|
@ -94,35 +108,12 @@ func (c *AssociatePacketConn) Write(b []byte) (n int, err error) {
|
||||||
return c.WriteTo(b, c.remoteAddr)
|
return c.WriteTo(b, c.remoteAddr)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
func (c *AssociatePacketConn) RemoteAddr() net.Addr {
|
||||||
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
return c.remoteAddr.UDPAddr()
|
||||||
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)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
return destination.Unwrap(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *AssociatePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
|
||||||
header := buf.With(buffer.ExtendHeader(3 + M.SocksaddrSerializer.AddrPortLen(destination)))
|
|
||||||
common.Must(header.WriteZeroN(3))
|
|
||||||
err := M.SocksaddrSerializer.WriteAddrPort(header, destination)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return common.Error(bufio.WritePacketBuffer(c.NetPacketConn, buffer, c.remoteAddr))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) Upstream() any {
|
func (c *AssociatePacketConn) Upstream() any {
|
||||||
return c.NetPacketConn
|
return c.conn
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AssociatePacketConn) FrontHeadroom() int {
|
func (c *AssociatePacketConn) FrontHeadroom() int {
|
||||||
|
@ -131,7 +122,7 @@ func (c *AssociatePacketConn) FrontHeadroom() int {
|
||||||
|
|
||||||
func (c *AssociatePacketConn) Close() error {
|
func (c *AssociatePacketConn) Close() error {
|
||||||
return common.Close(
|
return common.Close(
|
||||||
c.NetPacketConn,
|
c.conn,
|
||||||
c.underlying,
|
c.underlying,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,21 +17,11 @@ type VectorisedAssociatePacketConn struct {
|
||||||
N.VectorisedPacketWriter
|
N.VectorisedPacketWriter
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewVectorisedAssociatePacketConn(conn net.PacketConn, writer N.VectorisedPacketWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
|
||||||
return &VectorisedAssociatePacketConn{
|
|
||||||
AssociatePacketConn{
|
|
||||||
NetPacketConn: bufio.NewPacketConn(conn),
|
|
||||||
remoteAddr: remoteAddr,
|
|
||||||
underlying: underlying,
|
|
||||||
},
|
|
||||||
writer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewVectorisedAssociateConn(conn net.Conn, writer N.VectorisedWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
func NewVectorisedAssociateConn(conn net.Conn, writer N.VectorisedWriter, remoteAddr M.Socksaddr, underlying net.Conn) *VectorisedAssociatePacketConn {
|
||||||
return &VectorisedAssociatePacketConn{
|
return &VectorisedAssociatePacketConn{
|
||||||
AssociatePacketConn{
|
AssociatePacketConn{
|
||||||
NetPacketConn: bufio.NewUnbindPacketConn(conn),
|
AbstractConn: conn,
|
||||||
|
conn: bufio.NewExtendedConn(conn),
|
||||||
remoteAddr: remoteAddr,
|
remoteAddr: remoteAddr,
|
||||||
underlying: underlying,
|
underlying: underlying,
|
||||||
},
|
},
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
var _ N.PacketReadWaitCreator = (*AssociatePacketConn)(nil)
|
var _ N.PacketReadWaitCreator = (*AssociatePacketConn)(nil)
|
||||||
|
|
||||||
func (c *AssociatePacketConn) CreateReadWaiter() (N.PacketReadWaiter, bool) {
|
func (c *AssociatePacketConn) CreateReadWaiter() (N.PacketReadWaiter, bool) {
|
||||||
readWaiter, isReadWaiter := bufio.CreatePacketReadWaiter(c.NetPacketConn)
|
readWaiter, isReadWaiter := bufio.CreateReadWaiter(c.conn)
|
||||||
if !isReadWaiter {
|
if !isReadWaiter {
|
||||||
return nil, false
|
return nil, false
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ var _ N.PacketReadWaiter = (*AssociatePacketReadWaiter)(nil)
|
||||||
|
|
||||||
type AssociatePacketReadWaiter struct {
|
type AssociatePacketReadWaiter struct {
|
||||||
conn *AssociatePacketConn
|
conn *AssociatePacketConn
|
||||||
readWaiter N.PacketReadWaiter
|
readWaiter N.ReadWaiter
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *AssociatePacketReadWaiter) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
func (w *AssociatePacketReadWaiter) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
||||||
|
@ -29,7 +29,7 @@ func (w *AssociatePacketReadWaiter) InitializeReadWaiter(options N.ReadWaitOptio
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *AssociatePacketReadWaiter) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
func (w *AssociatePacketReadWaiter) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
||||||
buffer, destination, err = w.readWaiter.WaitReadPacket()
|
buffer, err = w.readWaiter.WaitReadBuffer()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -37,12 +37,12 @@ func (w *AssociatePacketReadWaiter) WaitReadPacket() (buffer *buf.Buffer, destin
|
||||||
buffer.Release()
|
buffer.Release()
|
||||||
return nil, M.Socksaddr{}, ErrInvalidPacket
|
return nil, M.Socksaddr{}, ErrInvalidPacket
|
||||||
}
|
}
|
||||||
w.conn.remoteAddr = destination
|
|
||||||
buffer.Advance(3)
|
buffer.Advance(3)
|
||||||
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
destination, err = M.SocksaddrSerializer.ReadAddrPort(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Release()
|
buffer.Release()
|
||||||
return nil, M.Socksaddr{}, err
|
return
|
||||||
}
|
}
|
||||||
|
w.conn.remoteAddr = destination
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue