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

160 lines
3.9 KiB
Go
Raw Normal View History

2016-10-12 10:46:02 -04:00
package core
2016-01-22 10:25:01 -05:00
import (
"sync"
"time"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
"v2ray.com/core/common/dice"
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/retry"
"v2ray.com/core/proxy"
proxyregistry "v2ray.com/core/proxy/registry"
2016-01-22 10:25:01 -05:00
)
type InboundDetourHandlerDynamic struct {
sync.RWMutex
space app.Space
2016-10-14 16:21:45 -04:00
config *InboundConnectionConfig
2016-01-22 10:25:01 -05:00
portsInUse map[v2net.Port]bool
2016-06-03 18:38:22 -04:00
ichs []proxy.InboundHandler
2016-06-05 17:39:38 -04:00
ich2Recyle []proxy.InboundHandler
2016-01-22 10:25:01 -05:00
lastRefresh time.Time
}
2016-10-14 16:21:45 -04:00
func NewInboundDetourHandlerDynamic(space app.Space, config *InboundConnectionConfig) (*InboundDetourHandlerDynamic, error) {
2016-01-22 10:25:01 -05:00
handler := &InboundDetourHandlerDynamic{
space: space,
config: config,
portsInUse: make(map[v2net.Port]bool),
}
2016-10-14 16:21:45 -04:00
handler.ichs = make([]proxy.InboundHandler, config.GetAllocationStrategyValue().Concurrency.GetValue())
2016-06-03 18:38:22 -04:00
// To test configuration
2016-10-15 18:46:08 -04:00
ichConfig, err := config.GetTypedSettings()
if err != nil {
return nil, err
}
2016-10-16 08:22:21 -04:00
ich, err := proxyregistry.CreateInboundHandler(config.Settings.Type, space, ichConfig, &proxy.InboundHandlerMeta{
2016-10-17 08:35:13 -04:00
Address: config.GetListenOnValue(),
2016-08-12 17:37:21 -04:00
Port: 0,
Tag: config.Tag,
StreamSettings: config.StreamSettings,
AllowPassiveConnection: config.AllowPassiveConnection,
})
2016-06-03 18:38:22 -04:00
if err != nil {
log.Error("Point: Failed to create inbound connection handler: ", err)
return nil, err
2016-01-22 10:25:01 -05:00
}
2016-06-03 18:38:22 -04:00
ich.Close()
2016-01-23 08:26:49 -05:00
return handler, nil
2016-01-22 10:25:01 -05:00
}
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) pickUnusedPort() v2net.Port {
delta := int(v.config.PortRange.To) - int(v.config.PortRange.From) + 1
2016-01-22 10:25:01 -05:00
for {
r := dice.Roll(delta)
2016-11-27 15:39:09 -05:00
port := v.config.PortRange.FromPort() + v2net.Port(r)
_, used := v.portsInUse[port]
2016-01-22 10:25:01 -05:00
if !used {
return port
}
}
}
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) GetConnectionHandler() (proxy.InboundHandler, int) {
v.RLock()
defer v.RUnlock()
ich := v.ichs[dice.Roll(len(v.ichs))]
until := int(v.config.GetAllocationStrategyValue().Refresh.GetValue()) - int((time.Now().Unix()-v.lastRefresh.Unix())/60/1000)
2016-01-22 10:51:11 -05:00
if until < 0 {
until = 0
}
return ich, int(until)
2016-01-22 10:25:01 -05:00
}
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) Close() {
v.Lock()
defer v.Unlock()
for _, ich := range v.ichs {
ich.Close()
2016-01-22 10:25:01 -05:00
}
}
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) RecyleHandles() {
if v.ich2Recyle != nil {
for _, ich := range v.ich2Recyle {
2016-06-05 17:39:38 -04:00
if ich == nil {
continue
}
port := ich.Port()
ich.Close()
2016-11-27 15:39:09 -05:00
delete(v.portsInUse, port)
2016-06-05 17:39:38 -04:00
}
2016-11-27 15:39:09 -05:00
v.ich2Recyle = nil
2016-06-05 17:39:38 -04:00
}
}
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) refresh() error {
v.lastRefresh = time.Now()
2016-01-23 08:26:49 -05:00
2016-11-27 15:39:09 -05:00
config := v.config
v.ich2Recyle = v.ichs
2016-10-14 16:21:45 -04:00
newIchs := make([]proxy.InboundHandler, config.GetAllocationStrategyValue().Concurrency.GetValue())
2016-02-23 15:50:19 -05:00
2016-07-24 07:44:29 -04:00
for idx := range newIchs {
2016-07-24 04:06:50 -04:00
err := retry.Timed(5, 100).On(func() error {
2016-11-27 15:39:09 -05:00
port := v.pickUnusedPort()
2016-10-17 08:35:13 -04:00
ichConfig, _ := config.GetTypedSettings()
2016-11-27 15:39:09 -05:00
ich, err := proxyregistry.CreateInboundHandler(config.Settings.Type, v.space, ichConfig, &proxy.InboundHandlerMeta{
2016-10-18 04:04:15 -04:00
Address: config.GetListenOnValue(), Port: port, Tag: config.Tag, StreamSettings: config.StreamSettings})
2016-07-24 04:06:50 -04:00
if err != nil {
2016-11-27 15:39:09 -05:00
delete(v.portsInUse, port)
2016-07-24 04:06:50 -04:00
return err
}
err = ich.Start()
if err != nil {
2016-11-27 15:39:09 -05:00
delete(v.portsInUse, port)
2016-07-24 04:06:50 -04:00
return err
}
2016-11-27 15:39:09 -05:00
v.portsInUse[port] = true
2016-07-24 04:06:50 -04:00
newIchs[idx] = ich
return nil
})
2016-01-22 10:25:01 -05:00
if err != nil {
2016-06-03 18:38:22 -04:00
log.Error("Point: Failed to create inbound connection handler: ", err)
return err
2016-01-22 10:25:01 -05:00
}
}
2016-01-23 08:26:49 -05:00
2016-11-27 15:39:09 -05:00
v.Lock()
v.ichs = newIchs
v.Unlock()
2016-03-06 10:36:03 -05:00
2016-01-22 10:25:01 -05:00
return nil
}
2016-01-23 17:19:11 -05:00
2016-11-27 15:39:09 -05:00
func (v *InboundDetourHandlerDynamic) Start() error {
err := v.refresh()
2016-01-23 17:19:11 -05:00
if err != nil {
2016-06-03 18:38:22 -04:00
log.Error("Point: Failed to refresh dynamic allocations: ", err)
2016-01-23 17:19:11 -05:00
return err
}
go func() {
2016-06-03 18:38:22 -04:00
for {
2016-11-27 15:39:09 -05:00
time.Sleep(time.Duration(v.config.GetAllocationStrategyValue().Refresh.GetValue())*time.Minute - 1)
v.RecyleHandles()
err := v.refresh()
2016-06-03 18:38:22 -04:00
if err != nil {
log.Error("Point: Failed to refresh dynamic allocations: ", err)
}
2016-06-05 19:31:25 -04:00
time.Sleep(time.Minute)
2016-01-23 17:19:11 -05:00
}
}()
return nil
}