2022-07-01 11:34:02 +00:00
|
|
|
package outbound
|
2022-06-30 13:27:56 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
|
2022-07-06 07:01:09 +00:00
|
|
|
"github.com/sagernet/sing/common/bufio"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
|
2022-06-30 13:27:56 +00:00
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
2022-07-02 06:07:50 +00:00
|
|
|
"github.com/sagernet/sing-box/option"
|
2022-07-03 12:59:25 +00:00
|
|
|
"github.com/sagernet/sing-box/outbound/dialer"
|
2022-06-30 13:27:56 +00:00
|
|
|
)
|
|
|
|
|
2022-07-01 11:34:02 +00:00
|
|
|
var _ adapter.Outbound = (*Direct)(nil)
|
2022-06-30 13:27:56 +00:00
|
|
|
|
2022-07-01 11:34:02 +00:00
|
|
|
type Direct struct {
|
|
|
|
myOutboundAdapter
|
2022-07-03 15:23:18 +00:00
|
|
|
dialer N.Dialer
|
2022-06-30 13:27:56 +00:00
|
|
|
overrideOption int
|
|
|
|
overrideDestination M.Socksaddr
|
|
|
|
}
|
|
|
|
|
2022-07-02 14:55:10 +00:00
|
|
|
func NewDirect(router adapter.Router, logger log.Logger, tag string, options option.DirectOutboundOptions) *Direct {
|
2022-07-01 11:34:02 +00:00
|
|
|
outbound := &Direct{
|
|
|
|
myOutboundAdapter: myOutboundAdapter{
|
|
|
|
protocol: C.TypeDirect,
|
|
|
|
logger: logger,
|
|
|
|
tag: tag,
|
2022-07-03 15:23:18 +00:00
|
|
|
network: []string{C.NetworkTCP, C.NetworkUDP},
|
2022-07-01 11:34:02 +00:00
|
|
|
},
|
2022-07-03 15:23:18 +00:00
|
|
|
dialer: dialer.New(router, options.DialerOptions),
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
if options.OverrideAddress != "" && options.OverridePort != 0 {
|
|
|
|
outbound.overrideOption = 1
|
|
|
|
outbound.overrideDestination = M.ParseSocksaddrHostPort(options.OverrideAddress, options.OverridePort)
|
|
|
|
} else if options.OverrideAddress != "" {
|
|
|
|
outbound.overrideOption = 2
|
|
|
|
outbound.overrideDestination = M.ParseSocksaddrHostPort(options.OverrideAddress, options.OverridePort)
|
|
|
|
} else if options.OverridePort != 0 {
|
|
|
|
outbound.overrideOption = 3
|
|
|
|
outbound.overrideDestination = M.Socksaddr{Port: options.OverridePort}
|
|
|
|
}
|
2022-07-01 11:34:02 +00:00
|
|
|
return outbound
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 11:34:02 +00:00
|
|
|
func (d *Direct) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
2022-06-30 13:27:56 +00:00
|
|
|
switch d.overrideOption {
|
|
|
|
case 1:
|
2022-07-02 06:07:50 +00:00
|
|
|
destination = d.overrideDestination
|
|
|
|
case 2:
|
2022-06-30 13:27:56 +00:00
|
|
|
newDestination := d.overrideDestination
|
|
|
|
newDestination.Port = destination.Port
|
|
|
|
destination = newDestination
|
2022-07-02 06:07:50 +00:00
|
|
|
case 3:
|
2022-06-30 13:27:56 +00:00
|
|
|
destination.Port = d.overrideDestination.Port
|
|
|
|
}
|
|
|
|
switch network {
|
|
|
|
case C.NetworkTCP:
|
2022-07-02 06:07:50 +00:00
|
|
|
d.logger.WithContext(ctx).Info("outbound connection to ", destination)
|
2022-06-30 13:27:56 +00:00
|
|
|
case C.NetworkUDP:
|
2022-07-02 06:07:50 +00:00
|
|
|
d.logger.WithContext(ctx).Info("outbound packet connection to ", destination)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
return d.dialer.DialContext(ctx, network, destination)
|
|
|
|
}
|
|
|
|
|
2022-07-03 05:14:49 +00:00
|
|
|
func (d *Direct) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
2022-07-02 06:07:50 +00:00
|
|
|
d.logger.WithContext(ctx).Info("outbound packet connection")
|
2022-07-03 05:14:49 +00:00
|
|
|
return d.dialer.ListenPacket(ctx, destination)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 11:34:02 +00:00
|
|
|
func (d *Direct) NewConnection(ctx context.Context, conn net.Conn, destination M.Socksaddr) error {
|
2022-07-03 12:59:25 +00:00
|
|
|
outConn, err := d.DialContext(ctx, C.NetworkTCP, destination)
|
2022-06-30 13:27:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return bufio.CopyConn(ctx, conn, outConn)
|
|
|
|
}
|
|
|
|
|
2022-07-01 11:34:02 +00:00
|
|
|
func (d *Direct) NewPacketConnection(ctx context.Context, conn N.PacketConn, destination M.Socksaddr) error {
|
2022-07-03 05:14:49 +00:00
|
|
|
outConn, err := d.ListenPacket(ctx, destination)
|
2022-06-30 13:27:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return bufio.CopyPacketConn(ctx, conn, bufio.NewPacketConn(outConn))
|
|
|
|
}
|