1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 07:16:29 -04:00
v2fly/v2ray.go

152 lines
4.3 KiB
Go
Raw Normal View History

2016-10-12 10:46:02 -04:00
package core
2015-09-05 11:48:38 -04:00
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
dispatchers "v2ray.com/core/app/dispatcher/impl"
"v2ray.com/core/app/dns"
"v2ray.com/core/app/proxyman"
"v2ray.com/core/app/router"
"v2ray.com/core/common"
"v2ray.com/core/common/log"
"v2ray.com/core/proxy"
proxyregistry "v2ray.com/core/proxy/registry"
2015-09-05 11:48:38 -04:00
)
2015-12-04 16:53:31 -05:00
// Point shell of V2Ray.
2015-09-12 16:11:54 -04:00
type Point struct {
2016-10-14 16:21:45 -04:00
inboundHandlers []InboundDetourHandler
taggedInboundHandlers map[string]InboundDetourHandler
outboundHandlers []proxy.OutboundHandler
taggedOutboundHandlers map[string]proxy.OutboundHandler
router *router.Router
space app.Space
2015-09-05 11:48:38 -04:00
}
2015-09-12 16:11:54 -04:00
// NewPoint returns a new Point server based on given configuration.
2015-09-07 06:00:46 -04:00
// The server is not started at this point.
2016-01-17 15:43:10 -05:00
func NewPoint(pConfig *Config) (*Point, error) {
2015-09-12 16:11:54 -04:00
var vpoint = new(Point)
2015-09-12 05:51:42 -04:00
2016-10-14 16:21:45 -04:00
if err := pConfig.Transport.Apply(); err != nil {
return nil, err
2016-06-01 19:49:25 -04:00
}
2016-10-14 16:21:45 -04:00
if err := pConfig.Log.Apply(); err != nil {
return nil, err
2015-12-05 15:10:14 -05:00
}
2016-05-18 02:05:52 -04:00
vpoint.space = app.NewSpace()
vpoint.space.BindApp(proxyman.APP_ID_INBOUND_MANAGER, vpoint)
2016-05-18 11:12:04 -04:00
outboundHandlerManager := proxyman.NewDefaultOutboundHandlerManager()
2016-05-18 02:05:52 -04:00
vpoint.space.BindApp(proxyman.APP_ID_OUTBOUND_MANAGER, outboundHandlerManager)
2016-10-14 16:21:45 -04:00
dnsConfig := pConfig.Dns
2016-05-18 02:05:52 -04:00
if dnsConfig != nil {
dnsServer := dns.NewCacheServer(vpoint.space, dnsConfig)
vpoint.space.BindApp(dns.APP_ID, dnsServer)
}
2016-10-14 16:21:45 -04:00
routerConfig := pConfig.Router
2016-05-18 02:05:52 -04:00
if routerConfig != nil {
2016-10-12 10:11:13 -04:00
r := router.NewRouter(routerConfig, vpoint.space)
2016-05-18 02:05:52 -04:00
vpoint.space.BindApp(router.APP_ID, r)
vpoint.router = r
}
vpoint.space.BindApp(dispatcher.APP_ID, dispatchers.NewDefaultDispatcher(vpoint.space))
2015-12-05 16:55:45 -05:00
2016-10-14 16:21:45 -04:00
vpoint.inboundHandlers = make([]InboundDetourHandler, 8)
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 {
log.Error("Point: Failed to create detour handler: ", err)
2016-08-18 02:21:20 -04:00
return nil, common.ErrBadConfiguration
2015-10-31 19:11:41 -04:00
}
2016-10-14 16:21:45 -04:00
inboundHandler = dh
case AllocationStrategy_Random:
dh, err := NewInboundDetourHandlerDynamic(vpoint.space, inbound)
if err != nil {
log.Error("Point: Failed to create detour handler: ", err)
return nil, common.ErrBadConfiguration
}
2016-10-14 16:21:45 -04:00
inboundHandler = dh
default:
log.Error("Point: Unknown allocation strategy: ", allocConfig.Type)
return nil, common.ErrBadConfiguration
}
vpoint.inboundHandlers = append(vpoint.inboundHandlers, inboundHandler)
if len(inbound.Tag) > 0 {
vpoint.taggedInboundHandlers[inbound.Tag] = inboundHandler
2015-10-31 19:11:41 -04:00
}
}
2016-10-14 16:21:45 -04:00
vpoint.outboundHandlers = make([]proxy.OutboundHandler, 8)
vpoint.taggedOutboundHandlers = make(map[string]proxy.OutboundHandler)
for idx, outbound := range pConfig.Outbound {
outboundHandler, err := proxyregistry.CreateOutboundHandler(
outbound.Protocol, vpoint.space, outbound.Settings, &proxy.OutboundHandlerMeta{
Tag: outbound.Tag,
Address: outbound.SendThrough.AsAddress(),
StreamSettings: outbound.StreamSettings,
})
if err != nil {
log.Error("Point: Failed to create detour outbound connection handler: ", err)
return nil, err
}
if idx == 0 {
outboundHandlerManager.SetDefaultHandler(outboundHandler)
}
if len(outbound.Tag) > 0 {
outboundHandlerManager.SetHandler(outbound.Tag, outboundHandler)
2015-11-22 11:41:52 -05:00
}
}
2016-05-18 11:12:04 -04:00
if err := vpoint.space.Initialize(); err != nil {
return nil, err
}
2015-09-06 16:10:42 -04:00
return vpoint, nil
2015-09-05 11:48:38 -04:00
}
2016-01-03 18:33:25 -05:00
func (this *Point) Close() {
2016-10-14 16:21:45 -04:00
for _, inbound := range this.inboundHandlers {
inbound.Close()
2016-01-03 18:33:25 -05:00
}
}
2015-09-12 16:11:54 -04:00
// Start starts the Point server, and return any error during the process.
2015-09-07 06:00:46 -04:00
// In the case of any errors, the state of the server is unpredicatable.
2015-11-27 06:29:20 -05:00
func (this *Point) Start() error {
2016-10-14 16:21:45 -04:00
for _, inbound := range this.inboundHandlers {
err := inbound.Start()
2015-10-31 19:11:41 -04:00
if err != nil {
return err
}
}
2016-10-14 16:21:45 -04:00
log.Warning("V2Ray started.")
2015-10-31 19:11:41 -04:00
return nil
2015-09-06 16:10:42 -04:00
}
2015-09-10 18:24:18 -04:00
2016-05-18 02:05:52 -04:00
func (this *Point) GetHandler(tag string) (proxy.InboundHandler, int) {
2016-10-14 16:21:45 -04:00
handler, found := this.taggedInboundHandlers[tag]
2016-01-21 11:22:56 -05:00
if !found {
2016-01-30 05:45:33 -05:00
log.Warning("Point: Unable to find an inbound handler with tag: ", tag)
2016-01-21 11:22:56 -05:00
return nil, 0
}
return handler.GetConnectionHandler()
}
2016-05-18 11:12:04 -04:00
func (this *Point) Release() {
}