1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/inbound_detour_dynamic.go

159 lines
3.8 KiB
Go
Raw Normal View History

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