1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 08:16:00 -04:00
v2fly/app/dispatcher/impl/default.go

140 lines
3.3 KiB
Go
Raw Normal View History

2016-05-18 02:05:52 -04:00
package impl
import (
2017-01-04 06:34:01 -05:00
"time"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app"
2016-12-16 09:39:47 -05:00
"v2ray.com/core/app/dispatcher"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/app/proxyman"
"v2ray.com/core/app/router"
2016-12-09 05:35:27 -05:00
"v2ray.com/core/common/buf"
2016-12-04 03:10:47 -05:00
"v2ray.com/core/common/errors"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
2016-12-16 09:39:47 -05:00
"v2ray.com/core/common/serial"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/ray"
2016-05-18 02:05:52 -04:00
)
type DefaultDispatcher struct {
ohm proxyman.OutboundHandlerManager
2016-10-12 10:11:13 -04:00
router *router.Router
2016-05-18 02:05:52 -04:00
}
func NewDefaultDispatcher(space app.Space) *DefaultDispatcher {
2016-05-18 11:12:04 -04:00
d := &DefaultDispatcher{}
space.InitializeApplication(func() error {
return d.Initialize(space)
})
return d
}
2017-01-01 17:08:39 -05:00
// Initialize initializes the dispatcher.
2016-08-24 05:17:42 -04:00
// Private: Used by app.Space only.
2016-11-27 15:39:09 -05:00
func (v *DefaultDispatcher) Initialize(space app.Space) error {
2016-05-18 02:05:52 -04:00
if !space.HasApp(proxyman.APP_ID_OUTBOUND_MANAGER) {
2016-11-21 15:13:01 -05:00
return errors.New("DefaultDispatcher: OutboundHandlerManager is not found in the space.")
2016-05-18 02:05:52 -04:00
}
2016-11-27 15:39:09 -05:00
v.ohm = space.GetApp(proxyman.APP_ID_OUTBOUND_MANAGER).(proxyman.OutboundHandlerManager)
2016-05-18 11:12:04 -04:00
2016-05-18 02:05:52 -04:00
if space.HasApp(router.APP_ID) {
2016-11-27 15:39:09 -05:00
v.router = space.GetApp(router.APP_ID).(*router.Router)
2016-05-18 02:05:52 -04:00
}
2016-05-18 11:12:04 -04:00
return nil
}
2016-11-27 15:39:09 -05:00
func (v *DefaultDispatcher) DispatchToOutbound(session *proxy.SessionInfo) ray.InboundRay {
dispatcher := v.ohm.GetDefaultHandler()
2016-08-14 11:08:01 -04:00
destination := session.Destination
2016-05-18 02:05:52 -04:00
2016-11-27 15:39:09 -05:00
if v.router != nil {
if tag, err := v.router.TakeDetour(session); err == nil {
if handler := v.ohm.GetHandler(tag); handler != nil {
2016-05-18 02:05:52 -04:00
log.Info("DefaultDispatcher: Taking detour [", tag, "] for [", destination, "].")
dispatcher = handler
} else {
log.Warning("DefaultDispatcher: Nonexisting tag: ", tag)
}
} else {
log.Info("DefaultDispatcher: Default route for ", destination)
}
}
2017-01-04 06:34:01 -05:00
direct := ray.NewRay()
var waitFunc func() error
2016-11-13 08:33:00 -05:00
if session.Inbound != nil && session.Inbound.AllowPassiveConnection {
2017-01-04 06:34:01 -05:00
waitFunc = noOpWait()
2016-08-12 17:37:21 -04:00
} else {
2017-01-04 06:34:01 -05:00
wdi := &waitDataInspector{
hasData: make(chan bool, 1),
}
direct.AddInspector(wdi)
waitFunc = waitForData(wdi)
2016-08-12 17:37:21 -04:00
}
2016-05-18 02:05:52 -04:00
2017-01-04 06:34:01 -05:00
go v.waitAndDispatch(waitFunc, destination, direct, dispatcher)
2016-05-18 02:05:52 -04:00
return direct
}
2017-01-04 06:34:01 -05:00
func (v *DefaultDispatcher) waitAndDispatch(wait func() error, destination v2net.Destination, link ray.OutboundRay, dispatcher proxy.OutboundHandler) {
if err := wait(); err != nil {
log.Info("DefaultDispatcher: Failed precondition: ", err)
link.OutboundInput().ForceClose()
link.OutboundOutput().Close()
2016-05-18 02:05:52 -04:00
return
}
2017-01-04 06:34:01 -05:00
dispatcher.Dispatch(destination, link)
2016-05-18 02:05:52 -04:00
}
2016-12-16 09:39:47 -05:00
type DefaultDispatcherFactory struct{}
func (v DefaultDispatcherFactory) Create(space app.Space, config interface{}) (app.Application, error) {
return NewDefaultDispatcher(space), nil
}
func (v DefaultDispatcherFactory) AppId() app.ID {
return dispatcher.APP_ID
}
func init() {
app.RegisterApplicationFactory(serial.GetMessageType(new(dispatcher.Config)), DefaultDispatcherFactory{})
}
2017-01-04 06:34:01 -05:00
type waitDataInspector struct {
hasData chan bool
}
func (wdi *waitDataInspector) Input(*buf.Buffer) {
select {
case wdi.hasData <- true:
default:
}
}
func (wdi *waitDataInspector) WaitForData() bool {
select {
case <-wdi.hasData:
return true
case <-time.After(time.Minute):
return false
}
}
func waitForData(wdi *waitDataInspector) func() error {
return func() error {
if wdi.WaitForData() {
return nil
}
return errors.New("DefaultDispatcher: No data.")
}
}
func noOpWait() func() error {
return func() error {
return nil
}
}