v2fly/v2ray.go

208 lines
5.5 KiB
Go
Raw Normal View History

2016-10-12 14:46:02 +00:00
package core
2015-09-05 15:48:38 +00:00
import (
"context"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
2016-10-17 12:35:13 +00:00
"v2ray.com/core/app/dns"
2016-11-10 22:41:28 +00:00
proxydialer "v2ray.com/core/app/proxy"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app/proxyman"
"v2ray.com/core/common"
"v2ray.com/core/common/log"
2016-10-17 12:35:13 +00:00
v2net "v2ray.com/core/common/net"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/proxy"
2015-09-05 15:48:38 +00:00
)
2015-12-04 21:53:31 +00:00
// Point shell of V2Ray.
2015-09-12 20:11:54 +00:00
type Point struct {
2016-10-14 20:21:45 +00:00
inboundHandlers []InboundDetourHandler
taggedInboundHandlers map[string]InboundDetourHandler
outboundHandlers []proxy.OutboundHandler
taggedOutboundHandlers map[string]proxy.OutboundHandler
2016-10-16 14:04:30 +00:00
space app.Space
2015-09-05 15:48:38 +00:00
}
2015-09-12 20:11:54 +00:00
// NewPoint returns a new Point server based on given configuration.
2015-09-07 10:00:46 +00:00
// The server is not started at this point.
2016-01-17 20:43:10 +00:00
func NewPoint(pConfig *Config) (*Point, error) {
2015-09-12 20:11:54 +00:00
var vpoint = new(Point)
2015-09-12 09:51:42 +00:00
2016-10-14 20:21:45 +00:00
if err := pConfig.Transport.Apply(); err != nil {
return nil, err
2016-06-01 23:49:25 +00:00
}
2016-10-14 20:21:45 +00:00
if err := pConfig.Log.Apply(); err != nil {
return nil, err
2015-12-05 20:10:14 +00:00
}
2016-10-16 14:04:30 +00:00
space := app.NewSpace()
ctx := app.ContextWithSpace(context.Background(), space)
2016-10-16 14:04:30 +00:00
vpoint.space = space
2017-01-13 12:41:40 +00:00
vpoint.space.AddApplication(vpoint)
2016-05-18 06:05:52 +00:00
2017-01-06 14:32:36 +00:00
outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
if outboundHandlerManager == nil {
2017-01-13 12:41:40 +00:00
o, err := app.CreateAppFromConfig(ctx, new(proxyman.OutboundConfig))
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
2017-01-13 12:41:40 +00:00
space.AddApplication(o)
outboundHandlerManager = o.(proxyman.OutboundHandlerManager)
2016-12-16 22:02:11 +00:00
}
2017-01-06 14:32:36 +00:00
proxyDialer := proxydialer.OutboundProxyFromSpace(space)
if proxyDialer == nil {
2017-01-13 12:41:40 +00:00
p, err := app.CreateAppFromConfig(ctx, new(proxydialer.Config))
if err != nil {
return nil, err
}
space.AddApplication(p)
proxyDialer = p.(*proxydialer.OutboundProxy)
2017-01-06 14:32:36 +00:00
}
2016-11-10 22:41:28 +00:00
proxyDialer.RegisterDialer()
2017-01-13 12:41:40 +00:00
for _, appSettings := range pConfig.App {
settings, err := appSettings.GetInstance()
2016-10-16 14:04:30 +00:00
if err != nil {
return nil, err
}
2017-01-13 12:41:40 +00:00
application, err := app.CreateAppFromConfig(ctx, settings)
if err != nil {
return nil, err
}
if err := space.AddApplication(application); err != nil {
2016-10-16 14:04:30 +00:00
return nil, err
}
2016-05-18 06:05:52 +00:00
}
2017-01-06 14:32:36 +00:00
dnsServer := dns.FromSpace(space)
if dnsServer == nil {
2016-12-16 15:20:12 +00:00
dnsConfig := &dns.Config{
NameServers: []*v2net.Endpoint{{
Address: v2net.NewIPOrDomain(v2net.LocalHostDomain),
}},
}
2017-01-13 12:41:40 +00:00
d, err := app.CreateAppFromConfig(ctx, dnsConfig)
if err != nil {
2016-12-16 15:20:12 +00:00
return nil, err
}
2017-01-13 12:41:40 +00:00
space.AddApplication(d)
dnsServer = d.(dns.Server)
2016-10-17 12:35:13 +00:00
}
2017-01-06 14:32:36 +00:00
disp := dispatcher.FromSpace(space)
if disp == nil {
2017-01-13 12:41:40 +00:00
d, err := app.CreateAppFromConfig(ctx, new(dispatcher.Config))
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
2017-01-13 12:41:40 +00:00
space.AddApplication(d)
disp = d.(dispatcher.PacketDispatcher)
2016-12-16 14:39:47 +00:00
}
2015-12-05 21:55:45 +00:00
2016-10-17 12:35:13 +00:00
vpoint.inboundHandlers = make([]InboundDetourHandler, 0, 8)
2016-10-14 20:21:45 +00:00
vpoint.taggedInboundHandlers = make(map[string]InboundDetourHandler)
for _, inbound := range pConfig.Inbound {
allocConfig := inbound.GetAllocationStrategyValue()
var inboundHandler InboundDetourHandler
switch allocConfig.Type {
case AllocationStrategy_Always:
dh, err := NewInboundDetourHandlerAlways(ctx, inbound)
2016-10-14 20:21:45 +00:00
if err != nil {
2016-11-20 00:43:08 +00:00
log.Error("V2Ray: Failed to create detour handler: ", err)
2016-08-18 06:21:20 +00:00
return nil, common.ErrBadConfiguration
2015-10-31 23:11:41 +00:00
}
2016-10-14 20:21:45 +00:00
inboundHandler = dh
case AllocationStrategy_Random:
dh, err := NewInboundDetourHandlerDynamic(ctx, inbound)
2016-10-14 20:21:45 +00:00
if err != nil {
2016-11-20 00:43:08 +00:00
log.Error("V2Ray: Failed to create detour handler: ", err)
2016-10-14 20:21:45 +00:00
return nil, common.ErrBadConfiguration
}
2016-10-14 20:21:45 +00:00
inboundHandler = dh
default:
2016-11-20 00:43:08 +00:00
log.Error("V2Ray: Unknown allocation strategy: ", allocConfig.Type)
2016-10-14 20:21:45 +00:00
return nil, common.ErrBadConfiguration
}
vpoint.inboundHandlers = append(vpoint.inboundHandlers, inboundHandler)
if len(inbound.Tag) > 0 {
vpoint.taggedInboundHandlers[inbound.Tag] = inboundHandler
2015-10-31 23:11:41 +00:00
}
}
2016-10-17 12:35:13 +00:00
vpoint.outboundHandlers = make([]proxy.OutboundHandler, 0, 8)
2016-10-14 20:21:45 +00:00
vpoint.taggedOutboundHandlers = make(map[string]proxy.OutboundHandler)
for idx, outbound := range pConfig.Outbound {
2016-10-15 22:46:08 +00:00
outboundSettings, err := outbound.GetTypedSettings()
if err != nil {
return nil, err
}
outboundHandler, err := proxy.CreateOutboundHandler(proxy.ContextWithOutboundMeta(ctx, &proxy.OutboundHandlerMeta{
Tag: outbound.Tag,
Address: outbound.GetSendThroughValue(),
StreamSettings: outbound.StreamSettings,
ProxySettings: outbound.ProxySettings,
}), outboundSettings)
2016-10-14 20:21:45 +00:00
if err != nil {
2016-11-20 00:43:08 +00:00
log.Error("V2Ray: Failed to create detour outbound connection handler: ", err)
2016-10-14 20:21:45 +00:00
return nil, err
}
if idx == 0 {
outboundHandlerManager.SetDefaultHandler(outboundHandler)
}
if len(outbound.Tag) > 0 {
outboundHandlerManager.SetHandler(outbound.Tag, outboundHandler)
2016-10-17 12:35:13 +00:00
vpoint.taggedOutboundHandlers[outbound.Tag] = outboundHandler
2015-11-22 16:41:52 +00:00
}
2016-10-17 12:35:13 +00:00
vpoint.outboundHandlers = append(vpoint.outboundHandlers, outboundHandler)
2015-11-22 16:41:52 +00:00
}
2016-05-18 15:12:04 +00:00
if err := vpoint.space.Initialize(); err != nil {
return nil, err
}
2015-09-06 20:10:42 +00:00
return vpoint, nil
2015-09-05 15:48:38 +00:00
}
2017-01-13 12:41:40 +00:00
func (Point) Interface() interface{} {
return (*proxyman.InboundHandlerManager)(nil)
}
2016-11-27 20:39:09 +00:00
func (v *Point) Close() {
for _, inbound := range v.inboundHandlers {
2016-10-14 20:21:45 +00:00
inbound.Close()
2016-01-03 23:33:25 +00:00
}
}
2015-09-12 20:11:54 +00:00
// Start starts the Point server, and return any error during the process.
2015-09-07 10:00:46 +00:00
// In the case of any errors, the state of the server is unpredicatable.
2016-11-27 20:39:09 +00:00
func (v *Point) Start() error {
for _, inbound := range v.inboundHandlers {
2016-10-14 20:21:45 +00:00
err := inbound.Start()
2015-10-31 23:11:41 +00:00
if err != nil {
return err
}
}
2016-10-14 20:21:45 +00:00
log.Warning("V2Ray started.")
2015-10-31 23:11:41 +00:00
return nil
2015-09-06 20:10:42 +00:00
}
2015-09-10 22:24:18 +00:00
2016-11-27 20:39:09 +00:00
func (v *Point) GetHandler(tag string) (proxy.InboundHandler, int) {
handler, found := v.taggedInboundHandlers[tag]
2016-01-21 16:22:56 +00:00
if !found {
2016-11-20 00:43:08 +00:00
log.Warning("V2Ray: Unable to find an inbound handler with tag: ", tag)
2016-01-21 16:22:56 +00:00
return nil, 0
}
return handler.GetConnectionHandler()
}
2016-05-18 15:12:04 +00:00
2016-11-27 20:39:09 +00:00
func (v *Point) Release() {
2016-05-18 15:12:04 +00:00
}