mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix socks packet conn
This commit is contained in:
parent
63ef20617a
commit
82e1dc7058
3 changed files with 37 additions and 5 deletions
|
@ -356,7 +356,7 @@ func (c *LocalClient) NewPacketConnection(conn socks.PacketConn, _ M.Metadata) e
|
||||||
serverConn := c.method.DialPacketConn(udpConn)
|
serverConn := c.method.DialPacketConn(udpConn)
|
||||||
return task.Run(ctx, func() error {
|
return task.Run(ctx, func() error {
|
||||||
var init bool
|
var init bool
|
||||||
return socks.CopyPacketConn(serverConn, conn, func(destination *M.AddrPort, n int) {
|
return socks.CopyPacketConn0(serverConn, conn, func(destination *M.AddrPort, n int) {
|
||||||
if !init {
|
if !init {
|
||||||
init = true
|
init = true
|
||||||
logrus.Info("UDP ", conn.LocalAddr(), " ==> ", destination)
|
logrus.Info("UDP ", conn.LocalAddr(), " ==> ", destination)
|
||||||
|
@ -365,7 +365,7 @@ func (c *LocalClient) NewPacketConnection(conn socks.PacketConn, _ M.Metadata) e
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, func() error {
|
}, func() error {
|
||||||
return socks.CopyPacketConn(conn, serverConn, func(destination *M.AddrPort, n int) {
|
return socks.CopyPacketConn0(conn, serverConn, func(destination *M.AddrPort, n int) {
|
||||||
logrus.Trace("UDP ", conn.LocalAddr(), " <== ", destination)
|
logrus.Trace("UDP ", conn.LocalAddr(), " <== ", destination)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -123,11 +123,11 @@ func (c *localClient) NewPacketConnection(conn socks.PacketConn, _ M.Metadata) e
|
||||||
|
|
||||||
client := uot.NewClientConn(upstream)
|
client := uot.NewClientConn(upstream)
|
||||||
return task.Run(context.Background(), func() error {
|
return task.Run(context.Background(), func() error {
|
||||||
return socks.CopyPacketConn(client, conn, func(destination *M.AddrPort, n int) {
|
return socks.CopyPacketConn0(client, conn, func(destination *M.AddrPort, n int) {
|
||||||
logrus.Trace("UDP ", conn.LocalAddr(), " ==> ", destination)
|
logrus.Trace("UDP ", conn.LocalAddr(), " ==> ", destination)
|
||||||
})
|
})
|
||||||
}, func() error {
|
}, func() error {
|
||||||
return socks.CopyPacketConn(conn, client, func(destination *M.AddrPort, n int) {
|
return socks.CopyPacketConn0(conn, client, func(destination *M.AddrPort, n int) {
|
||||||
logrus.Trace("UDP ", conn.LocalAddr(), " <== ", destination)
|
logrus.Trace("UDP ", conn.LocalAddr(), " <== ", destination)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
package socks
|
package socks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
"github.com/sagernet/sing/common/task"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -43,7 +45,37 @@ func (s *PacketConnStub) SetWriteDeadline(t time.Time) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func CopyPacketConn(dest PacketConn, conn PacketConn, onAction func(destination *M.AddrPort, n int)) error {
|
func CopyPacketConn(ctx context.Context, dest PacketConn, conn PacketConn) error {
|
||||||
|
return task.Run(ctx, func() error {
|
||||||
|
_buffer := buf.StackNew()
|
||||||
|
buffer := common.Dup(_buffer)
|
||||||
|
for {
|
||||||
|
destination, err := conn.ReadPacket(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = dest.WritePacket(buffer, destination)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, func() error {
|
||||||
|
_buffer := buf.StackNew()
|
||||||
|
buffer := common.Dup(_buffer)
|
||||||
|
for {
|
||||||
|
destination, err := dest.ReadPacket(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = conn.WritePacket(buffer, destination)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func CopyPacketConn0(dest PacketConn, conn PacketConn, onAction func(destination *M.AddrPort, n int)) error {
|
||||||
for {
|
for {
|
||||||
buffer := buf.New()
|
buffer := buf.New()
|
||||||
destination, err := conn.ReadPacket(buffer)
|
destination, err := conn.ReadPacket(buffer)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue