mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 08:31:30 +00:00
Fix override packet conn
This commit is contained in:
parent
cfaf15f429
commit
53f19a6ead
|
@ -12,6 +12,8 @@ import (
|
||||||
"github.com/sagernet/sing-box/log"
|
"github.com/sagernet/sing-box/log"
|
||||||
"github.com/sagernet/sing-box/option"
|
"github.com/sagernet/sing-box/option"
|
||||||
"github.com/sagernet/sing-dns"
|
"github.com/sagernet/sing-dns"
|
||||||
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
"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"
|
||||||
|
@ -160,8 +162,30 @@ func (h *Direct) ListenPacket(ctx context.Context, destination M.Socksaddr) (net
|
||||||
ctx, metadata := adapter.AppendContext(ctx)
|
ctx, metadata := adapter.AppendContext(ctx)
|
||||||
metadata.Outbound = h.tag
|
metadata.Outbound = h.tag
|
||||||
metadata.Destination = destination
|
metadata.Destination = destination
|
||||||
h.logger.InfoContext(ctx, "outbound packet connection")
|
switch h.overrideOption {
|
||||||
return h.dialer.ListenPacket(ctx, destination)
|
case 1:
|
||||||
|
destination = h.overrideDestination
|
||||||
|
case 2:
|
||||||
|
newDestination := h.overrideDestination
|
||||||
|
newDestination.Port = destination.Port
|
||||||
|
destination = newDestination
|
||||||
|
case 3:
|
||||||
|
destination.Port = h.overrideDestination.Port
|
||||||
|
}
|
||||||
|
if h.overrideOption == 0 {
|
||||||
|
h.logger.InfoContext(ctx, "outbound packet connection")
|
||||||
|
} else {
|
||||||
|
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
|
||||||
|
}
|
||||||
|
conn, err := h.dialer.ListenPacket(ctx, destination)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if h.overrideOption == 0 {
|
||||||
|
return conn, nil
|
||||||
|
} else {
|
||||||
|
return &overridePacketConn{bufio.NewPacketConn(conn), destination}, nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *Direct) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
|
func (h *Direct) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
|
||||||
|
@ -171,3 +195,20 @@ func (h *Direct) NewConnection(ctx context.Context, conn net.Conn, metadata adap
|
||||||
func (h *Direct) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
|
func (h *Direct) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
|
||||||
return NewPacketConnection(ctx, h, conn, metadata)
|
return NewPacketConnection(ctx, h, conn, metadata)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type overridePacketConn struct {
|
||||||
|
N.NetPacketConn
|
||||||
|
overrideDestination M.Socksaddr
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *overridePacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
|
return c.NetPacketConn.WritePacket(buffer, c.overrideDestination)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *overridePacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
|
return c.NetPacketConn.WriteTo(p, c.overrideDestination.UDPAddr())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *overridePacketConn) Upstream() any {
|
||||||
|
return c.NetPacketConn
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue