v2ray-core/proxy/blackhole/blackhole.go

56 lines
1.6 KiB
Go
Raw Normal View History

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
import (
2017-01-10 15:10:12 +01:00
"time"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/app"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/proxy"
"v2ray.com/core/transport/ray"
2015-10-28 17:41:14 +01:00
)
2016-12-21 21:43:00 +01:00
// Handler is an outbound connection that sliently swallow the entire payload.
type Handler struct {
2016-06-10 22:26:39 +02:00
meta *proxy.OutboundHandlerMeta
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.
func New(space app.Space, config *Config, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, 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-06-10 22:26:39 +02:00
meta: meta,
2016-09-22 12:01:36 +02:00
response: response,
}, nil
2015-10-28 17:41:14 +01:00
}
2016-12-21 21:43:00 +01:00
// Dispatch implements OutboundHandler.Dispatch().
2017-01-04 12:34:01 +01:00
func (v *Handler) Dispatch(destination v2net.Destination, ray ray.OutboundRay) {
2016-11-27 21:39:09 +01:00
v.response.WriteTo(ray.OutboundOutput())
2016-04-18 18:44:10 +02:00
ray.OutboundOutput().Close()
2017-01-10 15:10:12 +01:00
// CloseError() will immediately close the connection.
// Sleep a little here to make sure the response is sent to client.
time.Sleep(time.Millisecond * 500)
2017-01-10 14:22:42 +01:00
ray.OutboundInput().CloseError()
2015-10-28 17:41:14 +01:00
}
2016-12-21 21:43:00 +01:00
// Factory is an utility for creating blackhole handlers.
2016-06-14 22:54:08 +02:00
type Factory struct{}
2016-12-21 21:43:00 +01:00
// StreamCapability implements OutboundHandlerFactory.StreamCapability().
2016-11-27 21:39:09 +01:00
func (v *Factory) StreamCapability() v2net.NetworkList {
2016-10-02 23:43:58 +02:00
return v2net.NetworkList{
2017-01-03 14:53:59 +01:00
Network: []v2net.Network{v2net.Network_TCP},
2016-10-02 23:43:58 +02:00
}
2016-06-14 22:54:08 +02:00
}
2016-12-21 21:43:00 +01:00
// Create implements OutboundHandlerFactory.Create().
2016-11-27 21:39:09 +01:00
func (v *Factory) Create(space app.Space, config interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
2016-12-21 21:43:00 +01:00
return New(space, config.(*Config), meta)
2016-06-14 22:54:08 +02:00
}