add sessionCache, use it to store sessions.

This commit is contained in:
onyx-and-iris 2024-10-23 16:44:35 +01:00
parent 8cb5bc03c5
commit 82ca15f70e
2 changed files with 55 additions and 22 deletions

View File

@ -0,0 +1,41 @@
package udpproxy
import "sync"
// sessionCache tracks connection sessions
type sessionCache struct {
mu sync.RWMutex
data map[string]*session
}
// newSessionCache creates a usable sessionCache.
func newSessionCache() sessionCache {
return sessionCache{
data: make(map[string]*session),
}
}
// Read returns the associated session for an addr
func (sc *sessionCache) Read(addr string) (*session, bool) {
sc.mu.RLock()
defer sc.mu.RUnlock()
v, ok := sc.data[addr]
return v, ok
}
// Upsert overrides the session for a given addr.
func (sc *sessionCache) Upsert(addr string, session *session) {
sc.mu.Lock()
defer sc.mu.Unlock()
sc.data[addr] = session
}
// Delete removes the session for the given addr.
func (sc *sessionCache) Delete(addr string) {
sc.mu.Lock()
defer sc.mu.Unlock()
delete(sc.data, addr)
}

View File

@ -2,7 +2,6 @@ package udpproxy
import ( import (
"net" "net"
"sync"
"time" "time"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
@ -11,15 +10,15 @@ import (
// Option is a functional option type that allows us to configure the Client. // Option is a functional option type that allows us to configure the Client.
type Option func(*Client) type Option func(*Client)
// WithStaleTimeout is a functional option to set the stale session timeout // WithSessionTimeout is a functional option to set the session timeout
func WithStaleTimeout(timeout time.Duration) Option { func WithSessionTimeout(timeout time.Duration) Option {
return func(c *Client) { return func(c *Client) {
if timeout < time.Minute { if timeout < time.Minute {
log.Warnf("cannot set stale session timeout to less than 1 minute.. defaulting to 5 minutes") log.Warnf("cannot set stale session timeout to less than 1 minute.. defaulting to 5 minutes")
return return
} }
c.timeout = timeout c.sessionTimeout = timeout
} }
} }
@ -29,10 +28,8 @@ type Client struct {
proxyConn *net.UDPConn proxyConn *net.UDPConn
mutex sync.RWMutex sessionCache sessionCache
sessions map[string]*session sessionTimeout time.Duration
timeout time.Duration
} }
func New(port, target string, options ...Option) (*Client, error) { func New(port, target string, options ...Option) (*Client, error) {
@ -49,9 +46,8 @@ func New(port, target string, options ...Option) (*Client, error) {
c := &Client{ c := &Client{
laddr: laddr, laddr: laddr,
raddr: raddr, raddr: raddr,
mutex: sync.RWMutex{}, sessionCache: newSessionCache(),
sessions: map[string]*session{}, sessionTimeout: 5 * time.Minute,
timeout: 5 * time.Minute,
} }
for _, o := range options { for _, o := range options {
@ -77,7 +73,7 @@ func (c *Client) ListenAndServe() error {
log.Error(err) log.Error(err)
} }
session, ok := c.sessions[caddr.String()] session, ok := c.sessionCache.Read(caddr.String())
if !ok { if !ok {
session, err = newSession(caddr, c.raddr, c.proxyConn) session, err = newSession(caddr, c.raddr, c.proxyConn)
if err != nil { if err != nil {
@ -85,7 +81,7 @@ func (c *Client) ListenAndServe() error {
continue continue
} }
c.sessions[caddr.String()] = session c.sessionCache.Upsert(caddr.String(), session)
} }
go session.proxyTo(buf[:n]) go session.proxyTo(buf[:n])
@ -95,16 +91,12 @@ func (c *Client) ListenAndServe() error {
func (c *Client) pruneSessions() { func (c *Client) pruneSessions() {
ticker := time.NewTicker(1 * time.Minute) ticker := time.NewTicker(1 * time.Minute)
// the locks here could be abusive and i dont even know if this is a real
// problem but we definitely need to clean up stale sessions
for range ticker.C { for range ticker.C {
for _, session := range c.sessions { for _, session := range c.sessionCache.data {
c.mutex.RLock() if time.Since(session.updateTime) > c.sessionTimeout {
if time.Since(session.updateTime) > c.timeout { c.sessionCache.Delete(session.caddr.String())
delete(c.sessions, session.caddr.String())
log.Tracef("session for %s deleted", session.caddr) log.Tracef("session for %s deleted", session.caddr)
} }
c.mutex.RUnlock()
} }
} }
} }