v2ray-core/shell/point/inbound_detour.go

64 lines
1.7 KiB
Go
Raw Normal View History

2015-10-31 23:11:41 +00:00
package point
import (
2015-12-05 21:55:45 +00:00
"github.com/v2ray/v2ray-core/app"
2015-10-31 23:11:41 +00:00
"github.com/v2ray/v2ray-core/common/log"
2015-12-02 11:47:54 +00:00
v2net "github.com/v2ray/v2ray-core/common/net"
2015-10-31 23:11:41 +00:00
"github.com/v2ray/v2ray-core/common/retry"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
)
type InboundConnectionHandlerWithPort struct {
2015-12-02 11:47:54 +00:00
port v2net.Port
2015-10-31 23:11:41 +00:00
handler connhandler.InboundConnectionHandler
}
2015-12-03 14:12:47 +00:00
// Handler for inbound detour connections.
2015-10-31 23:11:41 +00:00
type InboundDetourHandler struct {
space app.Space
2015-12-06 15:41:41 +00:00
config InboundDetourConfig
2015-10-31 23:11:41 +00:00
ich []*InboundConnectionHandlerWithPort
}
func (this *InboundDetourHandler) Initialize() error {
ichFactory := connhandler.GetInboundConnectionHandlerFactory(this.config.Protocol())
if ichFactory == nil {
log.Error("Unknown inbound connection handler factory %s", this.config.Protocol())
2015-12-06 15:41:41 +00:00
return BadConfiguration
2015-10-31 23:11:41 +00:00
}
ports := this.config.PortRange()
2015-12-03 19:57:33 +00:00
this.ich = make([]*InboundConnectionHandlerWithPort, 0, ports.To()-ports.From()+1)
2015-10-31 23:11:41 +00:00
for i := ports.From(); i <= ports.To(); i++ {
ichConfig := this.config.Settings()
2015-12-05 21:55:45 +00:00
ich, err := ichFactory.Create(this.space, ichConfig)
2015-10-31 23:11:41 +00:00
if err != nil {
log.Error("Failed to create inbound connection handler: %v", err)
return err
}
this.ich = append(this.ich, &InboundConnectionHandlerWithPort{
port: i,
handler: ich,
})
}
return nil
}
2015-12-03 14:12:47 +00:00
// Starts the inbound connection handler.
2015-10-31 23:11:41 +00:00
func (this *InboundDetourHandler) Start() error {
for _, ich := range this.ich {
2015-12-04 15:49:10 +00:00
err := retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
2015-12-02 20:44:01 +00:00
err := ich.handler.Listen(ich.port)
2015-10-31 23:11:41 +00:00
if err != nil {
2015-12-04 14:30:41 +00:00
log.Error("Failed to start inbound detour on port %d: %v", ich.port, err)
2015-10-31 23:11:41 +00:00
return err
}
return nil
})
2015-12-04 15:49:10 +00:00
if err != nil {
2015-12-04 15:49:45 +00:00
return err
2015-12-04 15:49:10 +00:00
}
2015-10-31 23:11:41 +00:00
}
return nil
}