2016-06-14 16:54:08 -04:00
|
|
|
package udp
|
2016-02-01 10:36:33 -05:00
|
|
|
|
|
|
|
import (
|
2017-01-26 14:46:44 -05:00
|
|
|
"context"
|
2016-02-01 10:36:33 -05:00
|
|
|
"sync"
|
2017-11-14 18:36:14 -05:00
|
|
|
"time"
|
2016-02-01 10:36:33 -05:00
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
"v2ray.com/core/common"
|
2017-02-03 16:35:09 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-08-29 06:56:57 -04:00
|
|
|
"v2ray.com/core/common/net"
|
2018-06-24 19:09:02 -04:00
|
|
|
"v2ray.com/core/common/session"
|
2017-11-14 18:36:14 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2018-10-11 14:43:37 -04:00
|
|
|
"v2ray.com/core/features/routing"
|
2018-11-03 07:36:29 -04:00
|
|
|
"v2ray.com/core/transport"
|
2016-02-01 10:36:33 -05:00
|
|
|
)
|
|
|
|
|
2018-07-03 15:38:02 -04:00
|
|
|
type ResponseCallback func(ctx context.Context, payload *buf.Buffer)
|
2016-02-01 10:36:33 -05:00
|
|
|
|
2017-11-14 18:36:14 -05:00
|
|
|
type connEntry struct {
|
2018-11-03 07:36:29 -04:00
|
|
|
link *transport.Link
|
2018-04-16 18:31:10 -04:00
|
|
|
timer signal.ActivityUpdater
|
|
|
|
cancel context.CancelFunc
|
2017-11-14 18:36:14 -05:00
|
|
|
}
|
|
|
|
|
2017-01-27 08:45:16 -05:00
|
|
|
type Dispatcher struct {
|
2016-02-01 10:36:33 -05:00
|
|
|
sync.RWMutex
|
2017-11-14 18:36:14 -05:00
|
|
|
conns map[net.Destination]*connEntry
|
2018-10-11 14:43:37 -04:00
|
|
|
dispatcher routing.Dispatcher
|
2018-07-03 15:38:02 -04:00
|
|
|
callback ResponseCallback
|
2016-02-01 10:36:33 -05:00
|
|
|
}
|
|
|
|
|
2018-10-11 14:43:37 -04:00
|
|
|
func NewDispatcher(dispatcher routing.Dispatcher, callback ResponseCallback) *Dispatcher {
|
2017-01-27 08:45:16 -05:00
|
|
|
return &Dispatcher{
|
2017-11-14 18:36:14 -05:00
|
|
|
conns: make(map[net.Destination]*connEntry),
|
2017-02-03 16:35:09 -05:00
|
|
|
dispatcher: dispatcher,
|
2018-07-03 15:38:02 -04:00
|
|
|
callback: callback,
|
2016-02-01 10:36:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 06:56:57 -04:00
|
|
|
func (v *Dispatcher) RemoveRay(dest net.Destination) {
|
2016-11-27 15:39:09 -05:00
|
|
|
v.Lock()
|
|
|
|
defer v.Unlock()
|
2017-02-04 15:55:59 -05:00
|
|
|
if conn, found := v.conns[dest]; found {
|
2018-04-16 18:31:10 -04:00
|
|
|
common.Close(conn.link.Reader)
|
|
|
|
common.Close(conn.link.Writer)
|
2017-02-04 15:55:59 -05:00
|
|
|
delete(v.conns, dest)
|
2016-02-01 10:36:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-03 15:38:02 -04:00
|
|
|
func (v *Dispatcher) getInboundRay(ctx context.Context, dest net.Destination) *connEntry {
|
2017-01-06 05:40:59 -05:00
|
|
|
v.Lock()
|
|
|
|
defer v.Unlock()
|
|
|
|
|
2017-02-04 15:55:59 -05:00
|
|
|
if entry, found := v.conns[dest]; found {
|
2017-11-14 18:36:14 -05:00
|
|
|
return entry
|
2017-01-06 05:40:59 -05:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("establishing new connection for ", dest).WriteToLog()
|
2017-11-14 18:36:14 -05:00
|
|
|
|
2018-07-03 15:38:02 -04:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
2017-11-14 18:36:14 -05:00
|
|
|
removeRay := func() {
|
|
|
|
cancel()
|
|
|
|
v.RemoveRay(dest)
|
|
|
|
}
|
|
|
|
timer := signal.CancelAfterInactivity(ctx, removeRay, time.Second*4)
|
2018-04-16 18:31:10 -04:00
|
|
|
link, _ := v.dispatcher.Dispatch(ctx, dest)
|
2017-11-14 18:36:14 -05:00
|
|
|
entry := &connEntry{
|
2018-04-16 18:31:10 -04:00
|
|
|
link: link,
|
|
|
|
timer: timer,
|
|
|
|
cancel: removeRay,
|
2017-11-14 18:36:14 -05:00
|
|
|
}
|
|
|
|
v.conns[dest] = entry
|
2018-07-03 15:38:02 -04:00
|
|
|
go handleInput(ctx, entry, v.callback)
|
2017-11-14 18:36:14 -05:00
|
|
|
return entry
|
2017-01-06 05:40:59 -05:00
|
|
|
}
|
|
|
|
|
2018-07-03 15:38:02 -04:00
|
|
|
func (v *Dispatcher) Dispatch(ctx context.Context, destination net.Destination, payload *buf.Buffer) {
|
2016-08-14 11:08:01 -04:00
|
|
|
// TODO: Add user to destString
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("dispatch request to: ", destination).AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2018-07-03 15:38:02 -04:00
|
|
|
conn := v.getInboundRay(ctx, destination)
|
2018-04-16 18:31:10 -04:00
|
|
|
outputStream := conn.link.Writer
|
2016-05-12 20:20:07 -04:00
|
|
|
if outputStream != nil {
|
2018-11-16 05:08:12 -05:00
|
|
|
if err := outputStream.WriteMultiBuffer(buf.MultiBuffer{payload}); err != nil {
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("failed to write first UDP payload").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2017-11-14 18:36:14 -05:00
|
|
|
conn.cancel()
|
|
|
|
return
|
2017-01-26 14:46:44 -05:00
|
|
|
}
|
2016-05-12 20:20:07 -04:00
|
|
|
}
|
2016-02-01 10:36:33 -05:00
|
|
|
}
|
|
|
|
|
2017-11-14 18:36:14 -05:00
|
|
|
func handleInput(ctx context.Context, conn *connEntry, callback ResponseCallback) {
|
2018-07-03 15:38:02 -04:00
|
|
|
defer conn.cancel()
|
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
input := conn.link.Reader
|
2017-11-14 18:36:14 -05:00
|
|
|
timer := conn.timer
|
|
|
|
|
2016-04-18 12:44:10 -04:00
|
|
|
for {
|
2017-11-14 18:36:14 -05:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
mb, err := input.ReadMultiBuffer()
|
2016-04-18 12:44:10 -04:00
|
|
|
if err != nil {
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("failed to handle UDP input").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2017-11-14 18:36:14 -05:00
|
|
|
return
|
2016-04-18 12:44:10 -04:00
|
|
|
}
|
2017-11-14 18:36:14 -05:00
|
|
|
timer.Update()
|
2017-04-15 15:07:23 -04:00
|
|
|
for _, b := range mb {
|
2018-07-03 15:38:02 -04:00
|
|
|
callback(ctx, b)
|
2017-04-15 15:07:23 -04:00
|
|
|
}
|
2016-02-01 10:36:33 -05:00
|
|
|
}
|
|
|
|
}
|