1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/app/proxyman/inbound/dynamic.go

171 lines
4.2 KiB
Go
Raw Normal View History

package inbound
import (
"context"
"sync"
"time"
2018-02-08 14:39:46 +00:00
"v2ray.com/core"
"v2ray.com/core/app/proxyman"
2017-04-02 12:06:20 +00:00
"v2ray.com/core/app/proxyman/mux"
"v2ray.com/core/common/dice"
"v2ray.com/core/common/net"
2018-02-08 14:39:46 +00:00
"v2ray.com/core/common/signal"
"v2ray.com/core/proxy"
)
type DynamicInboundHandler struct {
tag string
2018-02-08 14:39:46 +00:00
v *core.Instance
proxyConfig interface{}
receiverConfig *proxyman.ReceiverConfig
2017-01-30 20:35:34 +00:00
portMutex sync.Mutex
portsInUse map[net.Port]bool
2017-01-30 20:35:34 +00:00
workerMutex sync.RWMutex
worker []worker
lastRefresh time.Time
2017-04-02 12:06:20 +00:00
mux *mux.Server
2018-02-08 14:39:46 +00:00
task *signal.PeriodicTask
}
func NewDynamicInboundHandler(ctx context.Context, tag string, receiverConfig *proxyman.ReceiverConfig, proxyConfig interface{}) (*DynamicInboundHandler, error) {
2018-02-21 16:05:29 +00:00
v := core.MustFromContext(ctx)
h := &DynamicInboundHandler{
tag: tag,
proxyConfig: proxyConfig,
receiverConfig: receiverConfig,
portsInUse: make(map[net.Port]bool),
2017-04-02 12:06:20 +00:00
mux: mux.NewServer(ctx),
2018-02-08 14:39:46 +00:00
v: v,
}
h.task = &signal.PeriodicTask{
Interval: time.Minute * time.Duration(h.receiverConfig.AllocationStrategy.GetRefreshValue()),
Execute: h.refresh,
}
return h, nil
}
func (h *DynamicInboundHandler) allocatePort() net.Port {
from := int(h.receiverConfig.PortRange.From)
delta := int(h.receiverConfig.PortRange.To) - from + 1
2017-01-30 20:35:34 +00:00
h.portMutex.Lock()
defer h.portMutex.Unlock()
for {
r := dice.Roll(delta)
port := net.Port(from + r)
_, used := h.portsInUse[port]
if !used {
h.portsInUse[port] = true
return port
}
}
}
2018-02-08 14:39:46 +00:00
func (h *DynamicInboundHandler) closeWorkers(workers []worker) {
ports2Del := make([]net.Port, len(workers))
2017-01-30 20:35:34 +00:00
for idx, worker := range workers {
ports2Del[idx] = worker.Port()
worker.Close()
}
2017-01-30 20:35:34 +00:00
h.portMutex.Lock()
for _, port := range ports2Del {
delete(h.portsInUse, port)
}
2017-01-30 20:35:34 +00:00
h.portMutex.Unlock()
}
func (h *DynamicInboundHandler) refresh() error {
h.lastRefresh = time.Now()
2017-01-30 20:37:50 +00:00
timeout := time.Minute * time.Duration(h.receiverConfig.AllocationStrategy.GetRefreshValue()) * 2
concurrency := h.receiverConfig.AllocationStrategy.GetConcurrencyValue()
workers := make([]worker, 0, concurrency)
2017-01-27 22:52:29 +00:00
address := h.receiverConfig.Listen.AsAddress()
if address == nil {
address = net.AnyIP
2017-01-27 22:52:29 +00:00
}
2017-01-30 20:37:50 +00:00
for i := uint32(0); i < concurrency; i++ {
port := h.allocatePort()
2018-02-08 14:39:46 +00:00
rawProxy, err := h.v.CreateObject(h.proxyConfig)
if err != nil {
2017-12-19 20:28:12 +00:00
newError("failed to create proxy instance").Base(err).AtWarning().WriteToLog()
continue
}
2018-02-08 14:39:46 +00:00
p := rawProxy.(proxy.Inbound)
nl := p.Network()
if nl.HasNetwork(net.Network_TCP) {
worker := &tcpWorker{
tag: h.tag,
address: address,
port: port,
proxy: p,
stream: h.receiverConfig.StreamSettings,
recvOrigDest: h.receiverConfig.ReceiveOriginalDestination,
dispatcher: h.mux,
sniffers: h.receiverConfig.DomainOverride,
}
if err := worker.Start(); err != nil {
2017-12-19 20:28:12 +00:00
newError("failed to create TCP worker").Base(err).AtWarning().WriteToLog()
2017-01-30 20:35:34 +00:00
continue
}
2017-01-30 20:35:34 +00:00
workers = append(workers, worker)
}
if nl.HasNetwork(net.Network_UDP) {
worker := &udpWorker{
tag: h.tag,
proxy: p,
2017-01-27 22:52:29 +00:00
address: address,
port: port,
recvOrigDest: h.receiverConfig.ReceiveOriginalDestination,
2017-02-03 21:50:01 +00:00
dispatcher: h.mux,
}
if err := worker.Start(); err != nil {
2017-12-19 20:28:12 +00:00
newError("failed to create UDP worker").Base(err).AtWarning().WriteToLog()
2017-01-30 20:35:34 +00:00
continue
}
2017-01-30 20:35:34 +00:00
workers = append(workers, worker)
}
}
2017-01-30 20:35:34 +00:00
h.workerMutex.Lock()
h.worker = workers
h.workerMutex.Unlock()
2018-02-08 14:39:46 +00:00
time.AfterFunc(timeout, func() {
h.closeWorkers(workers)
})
2017-01-30 20:35:34 +00:00
return nil
}
func (h *DynamicInboundHandler) Start() error {
2018-02-08 14:39:46 +00:00
return h.task.Start()
}
2018-02-08 14:39:46 +00:00
func (h *DynamicInboundHandler) Close() error {
return h.task.Close()
}
func (h *DynamicInboundHandler) GetRandomInboundProxy() (interface{}, net.Port, int) {
2017-01-30 20:35:34 +00:00
h.workerMutex.RLock()
defer h.workerMutex.RUnlock()
if len(h.worker) == 0 {
return nil, 0, 0
}
w := h.worker[dice.Roll(len(h.worker))]
expire := h.receiverConfig.AllocationStrategy.GetRefreshValue() - uint32(time.Since(h.lastRefresh)/time.Minute)
2017-01-30 20:35:34 +00:00
return w.Proxy(), w.Port(), int(expire)
}
func (h *DynamicInboundHandler) Tag() string {
return h.tag
}