v2fly/app/proxyman/inbound/worker.go

406 lines
8.5 KiB
Go
Raw Normal View History

package inbound
import (
"context"
"io"
"sync"
"sync/atomic"
"time"
"v2ray.com/core"
"v2ray.com/core/app/proxyman"
2018-02-08 14:39:46 +00:00
"v2ray.com/core/common"
"v2ray.com/core/common/buf"
"v2ray.com/core/common/net"
2018-05-31 09:55:11 +00:00
"v2ray.com/core/common/serial"
2018-04-11 22:10:14 +00:00
"v2ray.com/core/common/session"
2018-05-27 12:42:53 +00:00
"v2ray.com/core/common/signal/done"
2018-05-31 09:55:11 +00:00
"v2ray.com/core/common/task"
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/tcp"
"v2ray.com/core/transport/internet/udp"
)
type worker interface {
Start() error
2018-02-08 14:39:46 +00:00
Close() error
Port() net.Port
2017-01-26 19:57:18 +00:00
Proxy() proxy.Inbound
}
type tcpWorker struct {
2018-04-11 22:10:14 +00:00
address net.Address
port net.Port
proxy proxy.Inbound
stream *internet.StreamConfig
recvOrigDest bool
tag string
dispatcher core.Dispatcher
2018-07-16 11:47:00 +00:00
sniffingConfig *proxyman.SniffingConfig
2018-04-11 22:10:14 +00:00
uplinkCounter core.StatCounter
downlinkCounter core.StatCounter
2018-02-08 14:39:46 +00:00
hub internet.Listener
}
func (w *tcpWorker) callback(conn internet.Connection) {
2018-02-08 14:39:46 +00:00
ctx, cancel := context.WithCancel(context.Background())
2018-02-22 14:26:00 +00:00
sid := session.NewID()
ctx = session.ContextWithID(ctx, sid)
if w.recvOrigDest {
2017-04-18 10:35:54 +00:00
dest, err := tcp.GetOriginalDestination(conn)
if err != nil {
newError("failed to get original destination").Base(err).WriteToLog(session.ExportIDToError(ctx))
2017-04-18 10:35:54 +00:00
}
if dest.IsValid() {
2017-02-09 21:49:38 +00:00
ctx = proxy.ContextWithOriginalTarget(ctx, dest)
}
}
if len(w.tag) > 0 {
ctx = proxy.ContextWithInboundTag(ctx, w.tag)
}
ctx = proxy.ContextWithInboundEntryPoint(ctx, net.TCPDestination(w.address, w.port))
ctx = proxy.ContextWithSource(ctx, net.DestinationFromAddr(conn.RemoteAddr()))
2018-07-16 11:47:00 +00:00
if w.sniffingConfig != nil {
ctx = proxyman.ContextWithSniffingConfig(ctx, w.sniffingConfig)
}
2018-04-11 22:10:14 +00:00
if w.uplinkCounter != nil || w.downlinkCounter != nil {
conn = &internet.StatCouterConnection{
Connection: conn,
Uplink: w.uplinkCounter,
Downlink: w.downlinkCounter,
}
}
if err := w.proxy.Process(ctx, net.Network_TCP, conn, w.dispatcher); err != nil {
newError("connection ends").Base(err).WriteToLog(session.ExportIDToError(ctx))
}
cancel()
2018-02-12 20:35:10 +00:00
if err := conn.Close(); err != nil {
newError("failed to close connection").Base(err).WriteToLog(session.ExportIDToError(ctx))
2018-02-12 20:35:10 +00:00
}
}
2017-01-26 19:57:18 +00:00
func (w *tcpWorker) Proxy() proxy.Inbound {
return w.proxy
}
func (w *tcpWorker) Start() error {
2018-02-08 14:39:46 +00:00
ctx := internet.ContextWithStreamSettings(context.Background(), w.stream)
hub, err := internet.ListenTCP(ctx, w.address, w.port, func(conn internet.Connection) {
go w.callback(conn)
})
if err != nil {
2017-12-27 21:25:12 +00:00
return newError("failed to listen TCP on ", w.port).AtWarning().Base(err)
}
w.hub = hub
return nil
}
2018-02-08 14:39:46 +00:00
func (w *tcpWorker) Close() error {
2018-05-31 09:55:11 +00:00
var errors []interface{}
2017-02-05 07:44:08 +00:00
if w.hub != nil {
2018-05-31 09:55:11 +00:00
if err := common.Close(w.hub); err != nil {
errors = append(errors, err)
}
if err := common.Close(w.proxy); err != nil {
errors = append(errors, err)
}
}
if len(errors) > 0 {
return newError("failed to close all resources").Base(newError(serial.Concat(errors...)))
2017-02-05 07:44:08 +00:00
}
2018-02-08 14:39:46 +00:00
return nil
}
func (w *tcpWorker) Port() net.Port {
return w.port
}
type udpConn struct {
lastActivityTime int64 // in seconds
2017-01-28 15:27:46 +00:00
input chan *buf.Buffer
output func([]byte) (int, error)
remote net.Addr
local net.Addr
2018-05-27 12:42:53 +00:00
done *done.Instance
2018-04-11 22:10:14 +00:00
uplink core.StatCounter
downlink core.StatCounter
}
func (c *udpConn) updateActivity() {
atomic.StoreInt64(&c.lastActivityTime, time.Now().Unix())
}
2018-05-26 23:19:05 +00:00
// ReadMultiBuffer implements buf.Reader
func (c *udpConn) ReadMultiBuffer() (buf.MultiBuffer, error) {
var payload buf.MultiBuffer
select {
case in := <-c.input:
payload.Append(in)
2018-05-27 11:23:41 +00:00
default:
select {
case in := <-c.input:
payload.Append(in)
case <-c.done.Wait():
return nil, io.EOF
}
2018-05-26 23:19:05 +00:00
}
L:
for {
select {
case in := <-c.input:
payload.Append(in)
default:
break L
}
}
2018-09-01 19:19:01 +00:00
c.updateActivity()
if c.uplink != nil {
c.uplink.Add(int64(payload.Len()))
}
2018-05-26 23:19:05 +00:00
return payload, nil
}
func (c *udpConn) Read(buf []byte) (int, error) {
2018-02-02 21:35:18 +00:00
select {
case in := <-c.input:
defer in.Release()
c.updateActivity()
2018-04-11 22:10:14 +00:00
nBytes := copy(buf, in.Bytes())
if c.uplink != nil {
c.uplink.Add(int64(nBytes))
}
return nBytes, nil
2018-04-15 18:40:47 +00:00
case <-c.done.Wait():
return 0, io.EOF
}
}
2017-04-21 13:36:05 +00:00
// Write implements io.Writer.
func (c *udpConn) Write(buf []byte) (int, error) {
n, err := c.output(buf)
2018-04-11 22:10:14 +00:00
if c.downlink != nil {
c.downlink.Add(int64(n))
}
if err == nil {
c.updateActivity()
}
return n, err
}
func (c *udpConn) Close() error {
2018-02-12 20:35:10 +00:00
common.Must(c.done.Close())
return nil
}
func (c *udpConn) RemoteAddr() net.Addr {
return c.remote
}
func (c *udpConn) LocalAddr() net.Addr {
return c.remote
}
func (*udpConn) SetDeadline(time.Time) error {
return nil
}
func (*udpConn) SetReadDeadline(time.Time) error {
return nil
}
func (*udpConn) SetWriteDeadline(time.Time) error {
return nil
}
2018-02-08 21:09:55 +00:00
type connID struct {
2017-10-27 15:13:43 +00:00
src net.Destination
dest net.Destination
}
type udpWorker struct {
sync.RWMutex
2018-04-11 22:10:14 +00:00
proxy proxy.Inbound
hub *udp.Hub
address net.Address
port net.Port
recvOrigDest bool
tag string
dispatcher core.Dispatcher
uplinkCounter core.StatCounter
downlinkCounter core.StatCounter
2018-05-31 09:55:11 +00:00
checker *task.Periodic
2018-02-08 21:09:55 +00:00
activeConn map[connID]*udpConn
}
2018-02-08 21:09:55 +00:00
func (w *udpWorker) getConnection(id connID) (*udpConn, bool) {
w.Lock()
defer w.Unlock()
2018-05-26 23:19:05 +00:00
if conn, found := w.activeConn[id]; found && !conn.done.Done() {
return conn, true
}
conn := &udpConn{
2017-01-28 15:27:46 +00:00
input: make(chan *buf.Buffer, 32),
output: func(b []byte) (int, error) {
2017-10-27 15:13:43 +00:00
return w.hub.WriteTo(b, id.src)
},
remote: &net.UDPAddr{
2017-10-27 15:13:43 +00:00
IP: id.src.Address.IP(),
Port: int(id.src.Port),
},
local: &net.UDPAddr{
IP: w.address.IP(),
Port: int(w.port),
},
2018-05-27 12:42:53 +00:00
done: done.New(),
2018-04-11 22:10:14 +00:00
uplink: w.uplinkCounter,
downlink: w.downlinkCounter,
}
2017-10-27 15:13:43 +00:00
w.activeConn[id] = conn
conn.updateActivity()
return conn, false
}
func (w *udpWorker) callback(b *buf.Buffer, source net.Destination, originalDest net.Destination) {
2018-02-08 21:09:55 +00:00
id := connID{
2018-03-01 13:58:13 +00:00
src: source,
}
if originalDest.IsValid() {
id.dest = originalDest
2017-10-27 15:13:43 +00:00
}
conn, existing := w.getConnection(id)
2017-01-28 15:27:46 +00:00
select {
case conn.input <- b:
2018-04-15 18:40:47 +00:00
case <-conn.done.Wait():
2018-02-08 14:39:46 +00:00
b.Release()
2017-01-28 15:27:46 +00:00
default:
b.Release()
}
if !existing {
common.Must(w.checker.Start())
go func() {
2018-02-08 14:39:46 +00:00
ctx := context.Background()
2018-02-22 14:26:00 +00:00
sid := session.NewID()
ctx = session.ContextWithID(ctx, sid)
if originalDest.IsValid() {
2017-02-09 21:49:38 +00:00
ctx = proxy.ContextWithOriginalTarget(ctx, originalDest)
}
if len(w.tag) > 0 {
ctx = proxy.ContextWithInboundTag(ctx, w.tag)
}
ctx = proxy.ContextWithSource(ctx, source)
ctx = proxy.ContextWithInboundEntryPoint(ctx, net.UDPDestination(w.address, w.port))
if err := w.proxy.Process(ctx, net.Network_UDP, conn, w.dispatcher); err != nil {
2017-12-19 20:28:12 +00:00
newError("connection ends").Base(err).WriteToLog()
}
2018-05-31 09:55:11 +00:00
conn.Close() // nolint: errcheck
2017-10-27 15:13:43 +00:00
w.removeConn(id)
}()
}
}
2018-02-08 21:09:55 +00:00
func (w *udpWorker) removeConn(id connID) {
w.Lock()
2017-10-27 15:13:43 +00:00
delete(w.activeConn, id)
w.Unlock()
}
2018-08-11 20:35:01 +00:00
func (w *udpWorker) handlePackets() {
receive := w.hub.Receive()
for payload := range receive {
w.callback(payload.Content, payload.Source, payload.OriginalDestination)
}
}
func (w *udpWorker) clean() error {
nowSec := time.Now().Unix()
w.Lock()
defer w.Unlock()
if len(w.activeConn) == 0 {
return newError("no more connections. stopping...")
}
for addr, conn := range w.activeConn {
if nowSec-atomic.LoadInt64(&conn.lastActivityTime) > 8 {
delete(w.activeConn, addr)
conn.Close() // nolint: errcheck
}
}
if len(w.activeConn) == 0 {
w.activeConn = make(map[connID]*udpConn, 16)
}
return nil
}
func (w *udpWorker) Start() error {
2018-02-08 21:09:55 +00:00
w.activeConn = make(map[connID]*udpConn, 16)
2018-08-11 20:35:01 +00:00
h, err := udp.ListenUDP(w.address, w.port, udp.HubReceiveOriginalDestination(w.recvOrigDest), udp.HubCapacity(256))
if err != nil {
return err
}
2018-05-31 09:55:11 +00:00
w.checker = &task.Periodic{
Interval: time.Second * 16,
Execute: w.clean,
2018-05-31 09:55:11 +00:00
}
w.hub = h
2018-08-11 20:35:01 +00:00
go w.handlePackets()
return nil
}
2018-02-08 14:39:46 +00:00
func (w *udpWorker) Close() error {
2018-02-12 20:35:10 +00:00
w.Lock()
defer w.Unlock()
2018-05-31 09:55:11 +00:00
var errors []interface{}
2017-02-05 07:38:25 +00:00
if w.hub != nil {
2018-05-31 09:55:11 +00:00
if err := w.hub.Close(); err != nil {
errors = append(errors, err)
}
2017-02-05 07:38:25 +00:00
}
2018-02-12 20:35:10 +00:00
2018-05-31 09:55:11 +00:00
if w.checker != nil {
if err := w.checker.Close(); err != nil {
errors = append(errors, err)
}
2018-02-14 12:41:21 +00:00
}
2018-05-31 09:55:11 +00:00
if err := common.Close(w.proxy); err != nil {
errors = append(errors, err)
}
2017-05-08 22:01:15 +00:00
2018-05-31 09:55:11 +00:00
if len(errors) > 0 {
return newError("failed to close all resources").Base(newError(serial.Concat(errors...)))
}
2018-05-31 09:55:11 +00:00
return nil
}
func (w *udpWorker) Port() net.Port {
return w.port
}
2017-01-26 19:57:18 +00:00
func (w *udpWorker) Proxy() proxy.Inbound {
return w.proxy
}