2013-10-04 22:25:15 -04:00
|
|
|
package proxy
|
2013-06-11 18:46:23 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"net"
|
2014-02-14 18:25:25 -05:00
|
|
|
"strings"
|
2013-06-11 18:46:23 -04:00
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
2014-10-27 13:45:38 -04:00
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2013-06-11 18:46:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
UDPConnTrackTimeout = 90 * time.Second
|
2014-10-31 14:41:46 -04:00
|
|
|
UDPBufSize = 65507
|
2013-06-11 18:46:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// A net.Addr where the IP is split into two fields so you can use it as a key
|
|
|
|
// in a map:
|
|
|
|
type connTrackKey struct {
|
|
|
|
IPHigh uint64
|
|
|
|
IPLow uint64
|
|
|
|
Port int
|
|
|
|
}
|
|
|
|
|
|
|
|
func newConnTrackKey(addr *net.UDPAddr) *connTrackKey {
|
|
|
|
if len(addr.IP) == net.IPv4len {
|
|
|
|
return &connTrackKey{
|
|
|
|
IPHigh: 0,
|
|
|
|
IPLow: uint64(binary.BigEndian.Uint32(addr.IP)),
|
|
|
|
Port: addr.Port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &connTrackKey{
|
|
|
|
IPHigh: binary.BigEndian.Uint64(addr.IP[:8]),
|
|
|
|
IPLow: binary.BigEndian.Uint64(addr.IP[8:]),
|
|
|
|
Port: addr.Port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type connTrackMap map[connTrackKey]*net.UDPConn
|
|
|
|
|
|
|
|
type UDPProxy struct {
|
|
|
|
listener *net.UDPConn
|
|
|
|
frontendAddr *net.UDPAddr
|
|
|
|
backendAddr *net.UDPAddr
|
|
|
|
connTrackTable connTrackMap
|
|
|
|
connTrackLock sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUDPProxy(frontendAddr, backendAddr *net.UDPAddr) (*UDPProxy, error) {
|
|
|
|
listener, err := net.ListenUDP("udp", frontendAddr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &UDPProxy{
|
|
|
|
listener: listener,
|
|
|
|
frontendAddr: listener.LocalAddr().(*net.UDPAddr),
|
|
|
|
backendAddr: backendAddr,
|
|
|
|
connTrackTable: make(connTrackMap),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (proxy *UDPProxy) replyLoop(proxyConn *net.UDPConn, clientAddr *net.UDPAddr, clientKey *connTrackKey) {
|
|
|
|
defer func() {
|
|
|
|
proxy.connTrackLock.Lock()
|
|
|
|
delete(proxy.connTrackTable, *clientKey)
|
|
|
|
proxy.connTrackLock.Unlock()
|
|
|
|
proxyConn.Close()
|
|
|
|
}()
|
|
|
|
|
|
|
|
readBuf := make([]byte, UDPBufSize)
|
|
|
|
for {
|
|
|
|
proxyConn.SetReadDeadline(time.Now().Add(UDPConnTrackTimeout))
|
|
|
|
again:
|
|
|
|
read, err := proxyConn.Read(readBuf)
|
|
|
|
if err != nil {
|
|
|
|
if err, ok := err.(*net.OpError); ok && err.Err == syscall.ECONNREFUSED {
|
|
|
|
// This will happen if the last write failed
|
|
|
|
// (e.g: nothing is actually listening on the
|
|
|
|
// proxied port on the container), ignore it
|
|
|
|
// and continue until UDPConnTrackTimeout
|
|
|
|
// expires:
|
|
|
|
goto again
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for i := 0; i != read; {
|
|
|
|
written, err := proxy.listener.WriteToUDP(readBuf[i:read], clientAddr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i += written
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (proxy *UDPProxy) Run() {
|
|
|
|
readBuf := make([]byte, UDPBufSize)
|
|
|
|
for {
|
|
|
|
read, from, err := proxy.listener.ReadFromUDP(readBuf)
|
|
|
|
if err != nil {
|
|
|
|
// NOTE: Apparently ReadFrom doesn't return
|
|
|
|
// ECONNREFUSED like Read do (see comment in
|
|
|
|
// UDPProxy.replyLoop)
|
2014-02-17 16:31:13 -05:00
|
|
|
if !isClosedError(err) {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Printf("Stopping proxy on udp/%v for udp/%v (%s)", proxy.frontendAddr, proxy.backendAddr, err)
|
2013-10-16 16:40:52 -04:00
|
|
|
}
|
2013-06-11 18:46:23 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
fromKey := newConnTrackKey(from)
|
|
|
|
proxy.connTrackLock.Lock()
|
|
|
|
proxyConn, hit := proxy.connTrackTable[*fromKey]
|
|
|
|
if !hit {
|
|
|
|
proxyConn, err = net.DialUDP("udp", nil, proxy.backendAddr)
|
|
|
|
if err != nil {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Printf("Can't proxy a datagram to udp/%s: %s\n", proxy.backendAddr, err)
|
2014-08-13 09:18:37 -04:00
|
|
|
proxy.connTrackLock.Unlock()
|
2013-06-11 18:46:23 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
proxy.connTrackTable[*fromKey] = proxyConn
|
|
|
|
go proxy.replyLoop(proxyConn, from, fromKey)
|
|
|
|
}
|
|
|
|
proxy.connTrackLock.Unlock()
|
|
|
|
for i := 0; i != read; {
|
|
|
|
written, err := proxyConn.Write(readBuf[i:read])
|
|
|
|
if err != nil {
|
2015-03-26 18:22:04 -04:00
|
|
|
logrus.Printf("Can't proxy a datagram to udp/%s: %s\n", proxy.backendAddr, err)
|
2013-06-11 18:46:23 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
i += written
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (proxy *UDPProxy) Close() {
|
|
|
|
proxy.listener.Close()
|
|
|
|
proxy.connTrackLock.Lock()
|
|
|
|
defer proxy.connTrackLock.Unlock()
|
|
|
|
for _, conn := range proxy.connTrackTable {
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (proxy *UDPProxy) FrontendAddr() net.Addr { return proxy.frontendAddr }
|
|
|
|
func (proxy *UDPProxy) BackendAddr() net.Addr { return proxy.backendAddr }
|
2014-02-14 18:25:25 -05:00
|
|
|
|
|
|
|
func isClosedError(err error) bool {
|
|
|
|
/* This comparison is ugly, but unfortunately, net.go doesn't export errClosing.
|
|
|
|
* See:
|
|
|
|
* http://golang.org/src/pkg/net/net.go
|
|
|
|
* https://code.google.com/p/go/issues/detail?id=4337
|
|
|
|
* https://groups.google.com/forum/#!msg/golang-nuts/0_aaCvBmOcM/SptmDyX1XJMJ
|
|
|
|
*/
|
|
|
|
return strings.HasSuffix(err.Error(), "use of closed network connection")
|
|
|
|
}
|