1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
v2fly/transport/internet/kcp/listener.go

156 lines
3.4 KiB
Go
Raw Normal View History

2016-06-17 14:51:41 +00:00
package kcp
import (
"encoding/binary"
"net"
"sync"
"time"
"github.com/v2ray/v2ray-core/common/alloc"
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/transport/internet"
"github.com/v2ray/v2ray-core/transport/internet/udp"
)
// Listener defines a server listening for connections
type Listener struct {
sync.Mutex
running bool
block Authenticator
2016-06-18 14:34:04 +00:00
sessions map[string]*Connection
awaitingConns chan *Connection
2016-06-17 14:51:41 +00:00
hub *udp.UDPHub
localAddr *net.UDPAddr
}
func NewListener(address v2net.Address, port v2net.Port) (*Listener, error) {
l := &Listener{
block: NewSimpleAuthenticator(),
2016-06-18 14:34:04 +00:00
sessions: make(map[string]*Connection),
awaitingConns: make(chan *Connection, 64),
2016-06-17 14:51:41 +00:00
localAddr: &net.UDPAddr{
IP: address.IP(),
Port: int(port),
},
running: true,
}
hub, err := udp.ListenUDP(address, port, l.OnReceive)
if err != nil {
return nil, err
}
l.hub = hub
2016-06-17 15:38:42 +00:00
log.Info("KCP|Listener: listening on ", address, ":", port)
2016-06-17 14:51:41 +00:00
return l, nil
}
func (this *Listener) OnReceive(payload *alloc.Buffer, src v2net.Destination) {
defer payload.Release()
if valid := this.block.Open(payload); !valid {
2016-06-17 15:38:42 +00:00
log.Info("KCP|Listener: discarding invalid payload from ", src)
2016-06-17 14:51:41 +00:00
return
}
if !this.running {
return
}
this.Lock()
defer this.Unlock()
if !this.running {
return
}
srcAddrStr := src.NetAddr()
conn, found := this.sessions[srcAddrStr]
if !found {
conv := binary.LittleEndian.Uint32(payload.Value[2:6])
writer := &Writer{
hub: this.hub,
dest: src,
listener: this,
}
srcAddr := &net.UDPAddr{
IP: src.Address().IP(),
Port: int(src.Port()),
}
2016-06-18 14:34:04 +00:00
conn = NewConnection(conv, writer, this.localAddr, srcAddr, this.block)
2016-06-17 14:51:41 +00:00
select {
case this.awaitingConns <- conn:
case <-time.After(time.Second * 5):
conn.Close()
return
}
this.sessions[srcAddrStr] = conn
}
conn.kcpInput(payload.Value)
}
func (this *Listener) Remove(dest string) {
if !this.running {
return
}
this.Lock()
defer this.Unlock()
if !this.running {
return
}
delete(this.sessions, dest)
}
// Accept implements the Accept method in the Listener interface; it waits for the next call and returns a generic Conn.
func (this *Listener) Accept() (internet.Connection, error) {
for {
if !this.running {
return nil, errClosedListener
}
select {
case conn := <-this.awaitingConns:
return conn, nil
case <-time.After(time.Second):
}
}
}
// Close stops listening on the UDP address. Already Accepted connections are not closed.
func (this *Listener) Close() error {
if !this.running {
return errClosedListener
}
this.Lock()
defer this.Unlock()
this.running = false
close(this.awaitingConns)
this.hub.Close()
return nil
}
// Addr returns the listener's network address, The Addr returned is shared by all invocations of Addr, so do not modify it.
func (this *Listener) Addr() net.Addr {
return this.localAddr
}
type Writer struct {
dest v2net.Destination
hub *udp.UDPHub
listener *Listener
}
func (this *Writer) Write(payload []byte) (int, error) {
return this.hub.WriteTo(payload, this.dest)
}
func (this *Writer) Close() error {
this.listener.Remove(this.dest.NetAddr())
return nil
}
func ListenKCP(address v2net.Address, port v2net.Port) (internet.Listener, error) {
return NewListener(address, port)
}
func init() {
internet.KCPListenFunc = ListenKCP
}