mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
103 lines
2.8 KiB
Go
103 lines
2.8 KiB
Go
package bufio
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
type NATPacketConn interface {
|
|
N.NetPacketConn
|
|
UpdateDestination(destinationAddress netip.Addr)
|
|
}
|
|
|
|
func NewUnidirectionalNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
|
return &unidirectionalNATPacketConn{
|
|
NetPacketConn: conn,
|
|
origin: origin,
|
|
destination: destination,
|
|
}
|
|
}
|
|
|
|
func NewNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
|
return &bidirectionalNATPacketConn{
|
|
NetPacketConn: conn,
|
|
origin: origin,
|
|
destination: destination,
|
|
}
|
|
}
|
|
|
|
type unidirectionalNATPacketConn struct {
|
|
N.NetPacketConn
|
|
origin M.Socksaddr
|
|
destination M.Socksaddr
|
|
}
|
|
|
|
func (c *unidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
|
if M.SocksaddrFromNet(addr) == c.destination {
|
|
addr = c.origin.UDPAddr()
|
|
}
|
|
return c.NetPacketConn.WriteTo(p, addr)
|
|
}
|
|
|
|
func (c *unidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
|
if destination == c.destination {
|
|
destination = c.origin
|
|
}
|
|
return c.NetPacketConn.WritePacket(buffer, destination)
|
|
}
|
|
|
|
func (c *unidirectionalNATPacketConn) UpdateDestination(destinationAddress netip.Addr) {
|
|
c.destination = M.SocksaddrFrom(destinationAddress, c.destination.Port)
|
|
}
|
|
|
|
func (c *unidirectionalNATPacketConn) Upstream() any {
|
|
return c.NetPacketConn
|
|
}
|
|
|
|
type bidirectionalNATPacketConn struct {
|
|
N.NetPacketConn
|
|
origin M.Socksaddr
|
|
destination M.Socksaddr
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
|
n, addr, err = c.NetPacketConn.ReadFrom(p)
|
|
if err == nil && M.SocksaddrFromNet(addr) == c.origin {
|
|
addr = c.destination.UDPAddr()
|
|
}
|
|
return
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
|
if M.SocksaddrFromNet(addr) == c.destination {
|
|
addr = c.origin.UDPAddr()
|
|
}
|
|
return c.NetPacketConn.WriteTo(p, addr)
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
|
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
|
if destination == c.origin {
|
|
destination = c.destination
|
|
}
|
|
return
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
|
if destination == c.destination {
|
|
destination = c.origin
|
|
}
|
|
return c.NetPacketConn.WritePacket(buffer, destination)
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) UpdateDestination(destinationAddress netip.Addr) {
|
|
c.destination = M.SocksaddrFrom(destinationAddress, c.destination.Port)
|
|
}
|
|
|
|
func (c *bidirectionalNATPacketConn) Upstream() any {
|
|
return c.NetPacketConn
|
|
}
|