mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Improve bufio.NATPacketConn
This commit is contained in:
parent
8b68fc4d7a
commit
f9c59e9940
2 changed files with 96 additions and 18 deletions
|
@ -17,16 +17,16 @@ type NATPacketConn interface {
|
||||||
func NewUnidirectionalNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
func NewUnidirectionalNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
||||||
return &unidirectionalNATPacketConn{
|
return &unidirectionalNATPacketConn{
|
||||||
NetPacketConn: conn,
|
NetPacketConn: conn,
|
||||||
origin: origin,
|
origin: socksaddrWithoutPort(origin),
|
||||||
destination: destination,
|
destination: socksaddrWithoutPort(destination),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
func NewNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
||||||
return &bidirectionalNATPacketConn{
|
return &bidirectionalNATPacketConn{
|
||||||
NetPacketConn: conn,
|
NetPacketConn: conn,
|
||||||
origin: origin,
|
origin: socksaddrWithoutPort(origin),
|
||||||
destination: destination,
|
destination: socksaddrWithoutPort(destination),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,15 +37,24 @@ type unidirectionalNATPacketConn struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *unidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
func (c *unidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
if M.SocksaddrFromNet(addr) == c.destination {
|
destination := M.SocksaddrFromNet(addr)
|
||||||
addr = c.origin.UDPAddr()
|
if socksaddrWithoutPort(destination) == c.destination {
|
||||||
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.origin.Addr,
|
||||||
|
Fqdn: c.origin.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
}
|
}
|
||||||
return c.NetPacketConn.WriteTo(p, addr)
|
}
|
||||||
|
return c.NetPacketConn.WriteTo(p, destination.UDPAddr())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *unidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
func (c *unidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
if destination == c.destination {
|
if socksaddrWithoutPort(destination) == c.destination {
|
||||||
destination = c.origin
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.origin.Addr,
|
||||||
|
Fqdn: c.origin.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return c.NetPacketConn.WritePacket(buffer, destination)
|
return c.NetPacketConn.WritePacket(buffer, destination)
|
||||||
}
|
}
|
||||||
|
@ -66,30 +75,55 @@ type bidirectionalNATPacketConn struct {
|
||||||
|
|
||||||
func (c *bidirectionalNATPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
func (c *bidirectionalNATPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
||||||
n, addr, err = c.NetPacketConn.ReadFrom(p)
|
n, addr, err = c.NetPacketConn.ReadFrom(p)
|
||||||
if err == nil && M.SocksaddrFromNet(addr) == c.origin {
|
if err != nil {
|
||||||
addr = c.destination.UDPAddr()
|
return
|
||||||
}
|
}
|
||||||
|
destination := M.SocksaddrFromNet(addr)
|
||||||
|
if socksaddrWithoutPort(destination) == c.origin {
|
||||||
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.destination.Addr,
|
||||||
|
Fqdn: c.destination.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addr = destination.UDPAddr()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *bidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
func (c *bidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
if M.SocksaddrFromNet(addr) == c.destination {
|
destination := M.SocksaddrFromNet(addr)
|
||||||
addr = c.origin.UDPAddr()
|
if socksaddrWithoutPort(destination) == c.destination {
|
||||||
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.origin.Addr,
|
||||||
|
Fqdn: c.origin.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
}
|
}
|
||||||
return c.NetPacketConn.WriteTo(p, addr)
|
}
|
||||||
|
return c.NetPacketConn.WriteTo(p, destination.UDPAddr())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *bidirectionalNATPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
func (c *bidirectionalNATPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
||||||
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
||||||
if destination == c.origin {
|
if err != nil {
|
||||||
destination = c.destination
|
return
|
||||||
|
}
|
||||||
|
if socksaddrWithoutPort(destination) == c.origin {
|
||||||
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.destination.Addr,
|
||||||
|
Fqdn: c.destination.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *bidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
func (c *bidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
if destination == c.destination {
|
if socksaddrWithoutPort(destination) == c.destination {
|
||||||
destination = c.origin
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.origin.Addr,
|
||||||
|
Fqdn: c.origin.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return c.NetPacketConn.WritePacket(buffer, destination)
|
return c.NetPacketConn.WritePacket(buffer, destination)
|
||||||
}
|
}
|
||||||
|
@ -101,3 +135,8 @@ func (c *bidirectionalNATPacketConn) UpdateDestination(destinationAddress netip.
|
||||||
func (c *bidirectionalNATPacketConn) Upstream() any {
|
func (c *bidirectionalNATPacketConn) Upstream() any {
|
||||||
return c.NetPacketConn
|
return c.NetPacketConn
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func socksaddrWithoutPort(destination M.Socksaddr) M.Socksaddr {
|
||||||
|
destination.Port = 0
|
||||||
|
return destination
|
||||||
|
}
|
||||||
|
|
39
common/bufio/nat_wait.go
Normal file
39
common/bufio/nat_wait.go
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
package bufio
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (c *bidirectionalNATPacketConn) CreatePacketReadWaiter() (N.PacketReadWaiter, bool) {
|
||||||
|
waiter, created := CreatePacketReadWaiter(c.NetPacketConn)
|
||||||
|
if !created {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
return &waitBidirectionalNATPacketConn{c, waiter}, true
|
||||||
|
}
|
||||||
|
|
||||||
|
type waitBidirectionalNATPacketConn struct {
|
||||||
|
*bidirectionalNATPacketConn
|
||||||
|
readWaiter N.PacketReadWaiter
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *waitBidirectionalNATPacketConn) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
||||||
|
return c.readWaiter.InitializeReadWaiter(options)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *waitBidirectionalNATPacketConn) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
||||||
|
buffer, destination, err = c.readWaiter.WaitReadPacket()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if socksaddrWithoutPort(destination) == c.origin {
|
||||||
|
destination = M.Socksaddr{
|
||||||
|
Addr: c.destination.Addr,
|
||||||
|
Fqdn: c.destination.Fqdn,
|
||||||
|
Port: destination.Port,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue