sing-box/protocol/http/outbound.go

66 lines
2.1 KiB
Go
Raw Normal View History

2024-11-01 16:39:02 +00:00
package http
import (
"context"
"net"
"os"
"github.com/sagernet/sing-box/adapter"
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing-box/adapter/outbound"
2022-07-07 13:47:21 +00:00
"github.com/sagernet/sing-box/common/dialer"
2022-09-09 10:45:10 +00:00
"github.com/sagernet/sing-box/common/tls"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-18 12:40:14 +00:00
"github.com/sagernet/sing/common"
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing/common/logger"
2022-07-08 15:03:57 +00:00
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
2023-04-12 07:14:55 +00:00
sHTTP "github.com/sagernet/sing/protocol/http"
)
2024-11-01 16:39:02 +00:00
func RegisterOutbound(registry *outbound.Registry) {
outbound.Register[option.HTTPOutboundOptions](registry, C.TypeHTTP, NewOutbound)
}
2024-11-01 16:39:02 +00:00
type Outbound struct {
outbound.Adapter
logger logger.ContextLogger
2023-04-12 07:14:55 +00:00
client *sHTTP.Client
}
2024-11-01 16:39:02 +00:00
func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.HTTPOutboundOptions) (adapter.Outbound, error) {
outboundDialer, err := dialer.New(ctx, options.DialerOptions)
2023-08-08 08:14:03 +00:00
if err != nil {
return nil, err
}
2023-08-29 05:43:42 +00:00
detour, err := tls.NewDialerFromOptions(ctx, router, outboundDialer, options.Server, common.PtrValueOrDefault(options.TLS))
2022-07-18 12:40:14 +00:00
if err != nil {
return nil, err
}
2024-11-01 16:39:02 +00:00
return &Outbound{
Adapter: outbound.NewAdapterWithDialerOptions(C.TypeHTTP, []string{N.NetworkTCP}, tag, options.DialerOptions),
logger: logger,
client: sHTTP.NewClient(sHTTP.Options{
2023-04-12 07:14:55 +00:00
Dialer: detour,
Server: options.ServerOptions.Build(),
Username: options.Username,
Password: options.Password,
2023-04-14 13:18:28 +00:00
Path: options.Path,
2023-10-21 04:00:00 +00:00
Headers: options.Headers.Build(),
2023-04-12 07:14:55 +00:00
}),
2022-07-18 12:40:14 +00:00
}, nil
}
2024-11-01 16:39:02 +00:00
func (h *Outbound) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2024-10-26 23:45:15 +00:00
ctx, metadata := adapter.ExtendContext(ctx)
2024-11-01 16:39:02 +00:00
metadata.Outbound = h.Tag()
2022-07-07 15:36:32 +00:00
metadata.Destination = destination
2022-07-12 07:17:29 +00:00
h.logger.InfoContext(ctx, "outbound connection to ", destination)
return h.client.DialContext(ctx, network, destination)
}
2024-11-01 16:39:02 +00:00
func (h *Outbound) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
return nil, os.ErrInvalid
}