| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package inbound
- import (
- "context"
- "net"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/common/redir"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing-box/option"
- M "github.com/sagernet/sing/common/metadata"
- N "github.com/sagernet/sing/common/network"
- )
- type Redirect struct {
- myInboundAdapter
- }
- func NewRedirect(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.RedirectInboundOptions) *Redirect {
- redirect := &Redirect{
- myInboundAdapter{
- protocol: C.TypeRedirect,
- network: []string{N.NetworkTCP},
- ctx: ctx,
- router: router,
- logger: logger,
- tag: tag,
- listenOptions: options.ListenOptions,
- },
- }
- redirect.connHandler = redirect
- return redirect
- }
- func (r *Redirect) NewConnectionEx(ctx context.Context, conn net.Conn, metadata adapter.InboundContext, onClose N.CloseHandlerFunc) {
- destination, err := redir.GetOriginalDestination(conn)
- if err != nil {
- conn.Close()
- r.logger.ErrorContext(ctx, "process connection from ", conn.RemoteAddr(), ": get redirect destination: ", err)
- return
- }
- metadata.Destination = M.SocksaddrFromNetIP(destination)
- r.newConnectionEx(ctx, conn, metadata, onClose)
- }
|