2017-01-14 18:48:37 -05:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
"v2ray.com/core"
|
2017-01-14 18:48:37 -05:00
|
|
|
"v2ray.com/core/app/proxyman"
|
2017-04-02 15:30:21 -04:00
|
|
|
"v2ray.com/core/app/proxyman/mux"
|
2018-02-09 17:07:38 -05:00
|
|
|
"v2ray.com/core/common"
|
2017-08-29 06:56:57 -04:00
|
|
|
"v2ray.com/core/common/net"
|
2017-01-14 18:48:37 -05:00
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/internet"
|
2017-01-26 14:46:44 -05:00
|
|
|
"v2ray.com/core/transport/ray"
|
2017-01-14 18:48:37 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type Handler struct {
|
2018-01-10 06:22:37 -05:00
|
|
|
config *core.OutboundHandlerConfig
|
2017-01-26 14:46:44 -05:00
|
|
|
senderSettings *proxyman.SenderConfig
|
2017-01-26 14:57:18 -05:00
|
|
|
proxy proxy.Outbound
|
2018-01-10 06:22:37 -05:00
|
|
|
outboundManager core.OutboundHandlerManager
|
2017-04-02 15:30:21 -04:00
|
|
|
mux *mux.ClientManager
|
2017-01-14 18:48:37 -05:00
|
|
|
}
|
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
func NewHandler(ctx context.Context, config *core.OutboundHandlerConfig) (*Handler, error) {
|
2018-02-21 11:05:29 -05:00
|
|
|
v := core.MustFromContext(ctx)
|
2018-01-10 06:22:37 -05:00
|
|
|
h := &Handler{
|
|
|
|
config: config,
|
|
|
|
outboundManager: v.OutboundHandlerManager(),
|
2017-01-26 14:46:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.SenderSettings != nil {
|
|
|
|
senderSettings, err := config.SenderSettings.GetInstance()
|
2017-01-14 18:48:37 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
switch s := senderSettings.(type) {
|
|
|
|
case *proxyman.SenderConfig:
|
|
|
|
h.senderSettings = s
|
2017-01-14 18:48:37 -05:00
|
|
|
default:
|
2017-04-08 19:43:25 -04:00
|
|
|
return nil, newError("settings is not SenderConfig")
|
2017-01-14 18:48:37 -05:00
|
|
|
}
|
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
proxyConfig, err := config.ProxySettings.GetInstance()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:07:38 -05:00
|
|
|
rawProxyHandler, err := common.CreateObject(ctx, proxyConfig)
|
2017-01-14 18:48:37 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:07:38 -05:00
|
|
|
proxyHandler, ok := rawProxyHandler.(proxy.Outbound)
|
|
|
|
if !ok {
|
|
|
|
return nil, newError("not an outbound handler")
|
|
|
|
}
|
|
|
|
|
2017-04-02 19:07:18 -04:00
|
|
|
if h.senderSettings != nil && h.senderSettings.MultiplexSettings != nil && h.senderSettings.MultiplexSettings.Enabled {
|
2017-04-12 04:40:21 -04:00
|
|
|
config := h.senderSettings.MultiplexSettings
|
|
|
|
if config.Concurrency < 1 || config.Concurrency > 1024 {
|
2017-12-27 16:25:12 -05:00
|
|
|
return nil, newError("invalid mux concurrency: ", config.Concurrency).AtWarning()
|
2017-04-12 04:40:21 -04:00
|
|
|
}
|
|
|
|
h.mux = mux.NewClientManager(proxyHandler, h, config)
|
2017-04-02 19:07:18 -04:00
|
|
|
}
|
|
|
|
|
2017-01-14 18:48:37 -05:00
|
|
|
h.proxy = proxyHandler
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
2018-02-07 06:38:12 -05:00
|
|
|
// Tag implements core.OutboundHandler.
|
2018-01-10 06:22:37 -05:00
|
|
|
func (h *Handler) Tag() string {
|
|
|
|
return h.config.Tag
|
|
|
|
}
|
|
|
|
|
2017-04-12 04:40:21 -04:00
|
|
|
// Dispatch implements proxy.Outbound.Dispatch.
|
2017-01-26 14:46:44 -05:00
|
|
|
func (h *Handler) Dispatch(ctx context.Context, outboundRay ray.OutboundRay) {
|
2017-04-02 15:30:21 -04:00
|
|
|
if h.mux != nil {
|
|
|
|
err := h.mux.Dispatch(ctx, outboundRay)
|
|
|
|
if err != nil {
|
2018-02-22 09:26:00 -05:00
|
|
|
newError("failed to process outbound traffic").Base(err).WithContext(ctx).WriteToLog()
|
2017-10-24 11:33:28 -04:00
|
|
|
outboundRay.OutboundOutput().CloseError()
|
2017-02-21 17:14:07 -05:00
|
|
|
}
|
2017-02-10 06:01:52 -05:00
|
|
|
} else {
|
2017-04-02 15:30:21 -04:00
|
|
|
err := h.proxy.Process(ctx, outboundRay, h)
|
|
|
|
// Ensure outbound ray is properly closed.
|
2018-02-19 11:51:10 -05:00
|
|
|
if err != nil {
|
2018-02-22 09:26:00 -05:00
|
|
|
newError("failed to process outbound traffic").Base(err).WithContext(ctx).WriteToLog()
|
2017-04-02 15:30:21 -04:00
|
|
|
outboundRay.OutboundOutput().CloseError()
|
|
|
|
} else {
|
|
|
|
outboundRay.OutboundOutput().Close()
|
|
|
|
}
|
|
|
|
outboundRay.OutboundInput().CloseError()
|
2017-01-28 15:24:46 -05:00
|
|
|
}
|
2017-01-14 18:48:37 -05:00
|
|
|
}
|
|
|
|
|
2017-02-15 16:51:01 -05:00
|
|
|
// Dial implements proxy.Dialer.Dial().
|
2017-08-29 06:56:57 -04:00
|
|
|
func (h *Handler) Dial(ctx context.Context, dest net.Destination) (internet.Connection, error) {
|
2017-01-26 14:46:44 -05:00
|
|
|
if h.senderSettings != nil {
|
|
|
|
if h.senderSettings.ProxySettings.HasTag() {
|
|
|
|
tag := h.senderSettings.ProxySettings.Tag
|
|
|
|
handler := h.outboundManager.GetHandler(tag)
|
|
|
|
if handler != nil {
|
2018-02-22 09:26:00 -05:00
|
|
|
newError("proxying to ", tag, " for dest ", dest).AtDebug().WithContext(ctx).WriteToLog()
|
2017-02-09 16:49:38 -05:00
|
|
|
ctx = proxy.ContextWithTarget(ctx, dest)
|
2017-01-26 14:46:44 -05:00
|
|
|
stream := ray.NewRay(ctx)
|
|
|
|
go handler.Dispatch(ctx, stream)
|
2018-02-05 17:38:24 -05:00
|
|
|
return ray.NewConnection(stream.InboundOutput(), stream.InboundInput()), nil
|
2017-01-26 14:46:44 -05:00
|
|
|
}
|
|
|
|
|
2018-02-22 09:26:00 -05:00
|
|
|
newError("failed to get outbound handler with tag: ", tag).AtWarning().WithContext(ctx).WriteToLog()
|
2017-01-26 14:46:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if h.senderSettings.Via != nil {
|
|
|
|
ctx = internet.ContextWithDialerSource(ctx, h.senderSettings.Via.AsAddress())
|
|
|
|
}
|
2017-02-03 18:27:16 -05:00
|
|
|
|
|
|
|
if h.senderSettings.StreamSettings != nil {
|
2017-01-26 14:46:44 -05:00
|
|
|
ctx = internet.ContextWithStreamSettings(ctx, h.senderSettings.StreamSettings)
|
|
|
|
}
|
2017-01-14 18:48:37 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
|
|
|
return internet.Dial(ctx, dest)
|
|
|
|
}
|
2018-02-05 17:38:24 -05:00
|
|
|
|
2018-02-08 11:46:50 -05:00
|
|
|
// GetOutbound implements proxy.GetOutbound.
|
2018-02-05 17:38:24 -05:00
|
|
|
func (h *Handler) GetOutbound() proxy.Outbound {
|
|
|
|
return h.proxy
|
|
|
|
}
|
2018-02-08 09:45:50 -05:00
|
|
|
|
2018-02-08 11:46:50 -05:00
|
|
|
// Start implements common.Runnable.
|
2018-02-08 09:45:50 -05:00
|
|
|
func (h *Handler) Start() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-08 11:46:50 -05:00
|
|
|
// Close implements common.Runnable.
|
2018-02-08 09:45:50 -05:00
|
|
|
func (h *Handler) Close() error {
|
2018-02-09 17:07:38 -05:00
|
|
|
common.Close(h.mux)
|
2018-02-08 09:45:50 -05:00
|
|
|
return nil
|
|
|
|
}
|