mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/issues/6051#issuecomment-4364008008 Fixes https://github.com/XTLS/Xray-core/issues/6052 --------- Co-authored-by: Meo597 <197331664+Meo597@users.noreply.github.com> Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
64 lines
1.8 KiB
Go
64 lines
1.8 KiB
Go
// Package blackhole is an outbound handler that blocks all connections.
|
|
package blackhole
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/common/buf"
|
|
"github.com/xtls/xray-core/common/dice"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/common/session"
|
|
"github.com/xtls/xray-core/common/signal"
|
|
"github.com/xtls/xray-core/transport"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
// Handler is an outbound connection that silently swallow the entire payload.
|
|
type Handler struct {
|
|
response ResponseConfig
|
|
}
|
|
|
|
// New creates a new blackhole handler.
|
|
func New(ctx context.Context, config *Config) (*Handler, error) {
|
|
response, err := config.GetInternalResponse()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Handler{
|
|
response: response,
|
|
}, nil
|
|
}
|
|
|
|
// Process implements OutboundHandler.Dispatch().
|
|
func (h *Handler) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
|
|
outbounds := session.OutboundsFromContext(ctx)
|
|
ob := outbounds[len(outbounds)-1]
|
|
ob.Name = "blackhole"
|
|
|
|
nBytes := h.response.WriteTo(link.Writer)
|
|
if nBytes > 0 {
|
|
// Sleep a little here to make sure the response is sent to client.
|
|
time.Sleep(time.Second)
|
|
}
|
|
defer common.Interrupt(link.Writer)
|
|
defer common.Interrupt(link.Reader)
|
|
// wait to drain all the possible incoming UDP data
|
|
if ob.Target.Network == net.Network_UDP {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
timer := signal.CancelAfterInactivity(ctx, func() {
|
|
cancel()
|
|
}, time.Duration(30+dice.Roll(61))*time.Second)
|
|
go buf.Copy(link.Reader, buf.Discard, buf.UpdateActivity(timer))
|
|
<-ctx.Done()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return New(ctx, config.(*Config))
|
|
}))
|
|
}
|