2016-12-22 13:33:28 +01:00
|
|
|
// Package blackhole is an outbound handler that blocks all connections.
|
2015-10-28 17:41:14 +01:00
|
|
|
package blackhole
|
|
|
|
|
2021-02-17 04:31:50 +08:00
|
|
|
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
|
2017-04-09 01:43:25 +02:00
|
|
|
|
2015-10-28 17:41:14 +01:00
|
|
|
import (
|
2017-01-13 00:56:21 +01:00
|
|
|
"context"
|
2017-01-10 15:10:12 +01:00
|
|
|
"time"
|
|
|
|
|
2021-02-17 04:31:50 +08:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
2015-10-28 17:41:14 +01:00
|
|
|
)
|
|
|
|
|
2017-02-10 16:50:45 +01:00
|
|
|
// Handler is an outbound connection that silently swallow the entire payload.
|
2016-12-21 21:43:00 +01:00
|
|
|
type Handler struct {
|
2016-09-22 12:01:36 +02:00
|
|
|
response ResponseConfig
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
2016-12-21 21:43:00 +01:00
|
|
|
// New creates a new blackhole handler.
|
2017-01-13 00:56:21 +01:00
|
|
|
func New(ctx context.Context, config *Config) (*Handler, error) {
|
2016-10-16 14:22:21 +02:00
|
|
|
response, err := config.GetInternalResponse()
|
2016-09-22 12:01:36 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-21 21:43:00 +01:00
|
|
|
return &Handler{
|
2016-09-22 12:01:36 +02:00
|
|
|
response: response,
|
|
|
|
}, nil
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
2017-02-11 00:41:14 +01:00
|
|
|
// Process implements OutboundHandler.Dispatch().
|
2018-11-03 12:36:29 +01:00
|
|
|
func (h *Handler) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
|
2018-04-17 23:35:53 +02:00
|
|
|
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)
|
|
|
|
}
|
2018-12-31 21:25:10 +01:00
|
|
|
common.Interrupt(link.Writer)
|
2017-02-10 11:41:50 +01:00
|
|
|
return nil
|
2015-10-28 17:41:14 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 00:56:21 +01:00
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return New(ctx, config.(*Config))
|
|
|
|
}))
|
2021-09-05 23:32:11 +08:00
|
|
|
|
|
|
|
common.Must(common.RegisterConfig((*SimplifiedConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
simplifiedServer := config.(*SimplifiedConfig)
|
|
|
|
_ = simplifiedServer
|
|
|
|
fullConfig := &Config{}
|
|
|
|
return common.CreateObject(ctx, fullConfig)
|
|
|
|
}))
|
2016-06-14 22:54:08 +02:00
|
|
|
}
|