2016-10-12 16:46:02 +02:00
|
|
|
package core
|
2015-09-05 17:48:38 +02:00
|
|
|
|
|
|
|
import (
|
2016-08-20 20:55:45 +02:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/app/dispatcher"
|
2016-10-17 14:35:13 +02:00
|
|
|
"v2ray.com/core/app/dns"
|
2016-11-10 23:41:28 +01:00
|
|
|
proxydialer "v2ray.com/core/app/proxy"
|
2016-08-20 20:55:45 +02:00
|
|
|
"v2ray.com/core/app/proxyman"
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/log"
|
2016-10-17 14:35:13 +02:00
|
|
|
v2net "v2ray.com/core/common/net"
|
2016-12-16 15:39:47 +01:00
|
|
|
"v2ray.com/core/common/serial"
|
2016-08-20 20:55:45 +02:00
|
|
|
"v2ray.com/core/proxy"
|
2015-09-05 17:48:38 +02:00
|
|
|
)
|
|
|
|
|
2015-12-04 22:53:31 +01:00
|
|
|
// Point shell of V2Ray.
|
2015-09-12 22:11:54 +02:00
|
|
|
type Point struct {
|
2016-10-14 22:21:45 +02:00
|
|
|
inboundHandlers []InboundDetourHandler
|
|
|
|
taggedInboundHandlers map[string]InboundDetourHandler
|
|
|
|
|
|
|
|
outboundHandlers []proxy.OutboundHandler
|
|
|
|
taggedOutboundHandlers map[string]proxy.OutboundHandler
|
|
|
|
|
2016-10-16 16:04:30 +02:00
|
|
|
space app.Space
|
2015-09-05 17:48:38 +02:00
|
|
|
}
|
|
|
|
|
2015-09-12 22:11:54 +02:00
|
|
|
// NewPoint returns a new Point server based on given configuration.
|
2015-09-07 12:00:46 +02:00
|
|
|
// The server is not started at this point.
|
2016-01-17 21:43:10 +01:00
|
|
|
func NewPoint(pConfig *Config) (*Point, error) {
|
2015-09-12 22:11:54 +02:00
|
|
|
var vpoint = new(Point)
|
2015-09-12 11:51:42 +02:00
|
|
|
|
2016-10-14 22:21:45 +02:00
|
|
|
if err := pConfig.Transport.Apply(); err != nil {
|
|
|
|
return nil, err
|
2016-06-02 01:49:25 +02:00
|
|
|
}
|
|
|
|
|
2016-10-14 22:21:45 +02:00
|
|
|
if err := pConfig.Log.Apply(); err != nil {
|
|
|
|
return nil, err
|
2015-12-05 21:10:14 +01:00
|
|
|
}
|
|
|
|
|
2016-10-16 16:04:30 +02:00
|
|
|
space := app.NewSpace()
|
|
|
|
vpoint.space = space
|
2016-05-17 23:05:52 -07:00
|
|
|
vpoint.space.BindApp(proxyman.APP_ID_INBOUND_MANAGER, vpoint)
|
|
|
|
|
2016-05-18 08:12:04 -07:00
|
|
|
outboundHandlerManager := proxyman.NewDefaultOutboundHandlerManager()
|
2016-05-17 23:05:52 -07:00
|
|
|
vpoint.space.BindApp(proxyman.APP_ID_OUTBOUND_MANAGER, outboundHandlerManager)
|
|
|
|
|
2016-11-10 23:41:28 +01:00
|
|
|
proxyDialer := proxydialer.NewOutboundProxy(space)
|
|
|
|
proxyDialer.RegisterDialer()
|
|
|
|
space.BindApp(proxydialer.APP_ID, proxyDialer)
|
|
|
|
|
2016-10-16 16:04:30 +02:00
|
|
|
for _, app := range pConfig.App {
|
|
|
|
settings, err := app.GetInstance()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := space.BindFromConfig(app.Type, settings); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-05-17 23:05:52 -07:00
|
|
|
}
|
|
|
|
|
2016-10-17 14:35:13 +02:00
|
|
|
if !space.HasApp(dns.APP_ID) {
|
2016-12-16 16:20:12 +01:00
|
|
|
dnsConfig := &dns.Config{
|
|
|
|
NameServers: []*v2net.Endpoint{{
|
|
|
|
Address: v2net.NewIPOrDomain(v2net.LocalHostDomain),
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
if err := space.BindFromConfig(serial.GetMessageType(dnsConfig), dnsConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-10-17 14:35:13 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 15:39:47 +01:00
|
|
|
dispatcherConfig := new(dispatcher.Config)
|
|
|
|
if err := vpoint.space.BindFromConfig(serial.GetMessageType(dispatcherConfig), dispatcherConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-12-05 22:55:45 +01:00
|
|
|
|
2016-10-17 14:35:13 +02:00
|
|
|
vpoint.inboundHandlers = make([]InboundDetourHandler, 0, 8)
|
2016-10-14 22:21:45 +02: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(vpoint.space, inbound)
|
|
|
|
if err != nil {
|
2016-11-20 01:43:08 +01:00
|
|
|
log.Error("V2Ray: Failed to create detour handler: ", err)
|
2016-08-18 08:21:20 +02:00
|
|
|
return nil, common.ErrBadConfiguration
|
2015-11-01 00:11:41 +01:00
|
|
|
}
|
2016-10-14 22:21:45 +02:00
|
|
|
inboundHandler = dh
|
|
|
|
case AllocationStrategy_Random:
|
|
|
|
dh, err := NewInboundDetourHandlerDynamic(vpoint.space, inbound)
|
|
|
|
if err != nil {
|
2016-11-20 01:43:08 +01:00
|
|
|
log.Error("V2Ray: Failed to create detour handler: ", err)
|
2016-10-14 22:21:45 +02:00
|
|
|
return nil, common.ErrBadConfiguration
|
2016-01-21 01:40:52 +01:00
|
|
|
}
|
2016-10-14 22:21:45 +02:00
|
|
|
inboundHandler = dh
|
|
|
|
default:
|
2016-11-20 01:43:08 +01:00
|
|
|
log.Error("V2Ray: Unknown allocation strategy: ", allocConfig.Type)
|
2016-10-14 22:21:45 +02:00
|
|
|
return nil, common.ErrBadConfiguration
|
|
|
|
}
|
|
|
|
vpoint.inboundHandlers = append(vpoint.inboundHandlers, inboundHandler)
|
|
|
|
if len(inbound.Tag) > 0 {
|
|
|
|
vpoint.taggedInboundHandlers[inbound.Tag] = inboundHandler
|
2015-11-01 00:11:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-17 14:35:13 +02:00
|
|
|
vpoint.outboundHandlers = make([]proxy.OutboundHandler, 0, 8)
|
2016-10-14 22:21:45 +02:00
|
|
|
vpoint.taggedOutboundHandlers = make(map[string]proxy.OutboundHandler)
|
|
|
|
for idx, outbound := range pConfig.Outbound {
|
2016-10-16 00:46:08 +02:00
|
|
|
outboundSettings, err := outbound.GetTypedSettings()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2016-12-15 15:46:20 +01:00
|
|
|
outboundHandler, err := proxy.CreateOutboundHandler(
|
2016-10-16 14:22:21 +02:00
|
|
|
outbound.Settings.Type, vpoint.space, outboundSettings, &proxy.OutboundHandlerMeta{
|
2016-10-14 22:21:45 +02:00
|
|
|
Tag: outbound.Tag,
|
2016-10-18 00:02:41 +02:00
|
|
|
Address: outbound.GetSendThroughValue(),
|
2016-10-14 22:21:45 +02:00
|
|
|
StreamSettings: outbound.StreamSettings,
|
2016-11-10 23:41:28 +01:00
|
|
|
ProxySettings: outbound.ProxySettings,
|
2016-10-14 22:21:45 +02:00
|
|
|
})
|
|
|
|
if err != nil {
|
2016-11-20 01:43:08 +01:00
|
|
|
log.Error("V2Ray: Failed to create detour outbound connection handler: ", err)
|
2016-10-14 22:21:45 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if idx == 0 {
|
|
|
|
outboundHandlerManager.SetDefaultHandler(outboundHandler)
|
|
|
|
}
|
|
|
|
if len(outbound.Tag) > 0 {
|
|
|
|
outboundHandlerManager.SetHandler(outbound.Tag, outboundHandler)
|
2016-10-17 14:35:13 +02:00
|
|
|
vpoint.taggedOutboundHandlers[outbound.Tag] = outboundHandler
|
2015-11-22 17:41:52 +01:00
|
|
|
}
|
2016-10-17 14:35:13 +02:00
|
|
|
|
|
|
|
vpoint.outboundHandlers = append(vpoint.outboundHandlers, outboundHandler)
|
2015-11-22 17:41:52 +01:00
|
|
|
}
|
|
|
|
|
2016-05-18 08:12:04 -07:00
|
|
|
if err := vpoint.space.Initialize(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-06 22:10:42 +02:00
|
|
|
return vpoint, nil
|
2015-09-05 17:48:38 +02:00
|
|
|
}
|
|
|
|
|
2016-11-27 21:39:09 +01:00
|
|
|
func (v *Point) Close() {
|
|
|
|
for _, inbound := range v.inboundHandlers {
|
2016-10-14 22:21:45 +02:00
|
|
|
inbound.Close()
|
2016-01-04 00:33:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-12 22:11:54 +02:00
|
|
|
// Start starts the Point server, and return any error during the process.
|
2015-09-07 12:00:46 +02:00
|
|
|
// In the case of any errors, the state of the server is unpredicatable.
|
2016-11-27 21:39:09 +01:00
|
|
|
func (v *Point) Start() error {
|
|
|
|
for _, inbound := range v.inboundHandlers {
|
2016-10-14 22:21:45 +02:00
|
|
|
err := inbound.Start()
|
2015-11-01 00:11:41 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2016-10-14 22:21:45 +02:00
|
|
|
log.Warning("V2Ray started.")
|
2015-11-01 00:11:41 +01:00
|
|
|
|
|
|
|
return nil
|
2015-09-06 22:10:42 +02:00
|
|
|
}
|
2015-09-11 00:24:18 +02:00
|
|
|
|
2016-11-27 21:39:09 +01: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 01:43:08 +01: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-01-21 01:40:52 +01:00
|
|
|
}
|
2016-05-18 08:12:04 -07:00
|
|
|
|
2016-11-27 21:39:09 +01:00
|
|
|
func (v *Point) Release() {
|
2016-05-18 08:12:04 -07:00
|
|
|
|
|
|
|
}
|