mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 11:11:30 -04:00
This is meant to reduce overall allocations. See past discussion at https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40260#note_2885524 ff.
168 lines
5.4 KiB
Go
168 lines
5.4 KiB
Go
package turbotunnel
|
|
|
|
import (
|
|
"net"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
)
|
|
|
|
// taggedPacket is a combination of a []byte and a net.Addr, encapsulating the
|
|
// return type of PacketConn.ReadFrom.
|
|
type taggedPacket struct {
|
|
P []byte
|
|
Addr net.Addr
|
|
}
|
|
|
|
// QueuePacketConn implements net.PacketConn by storing queues of packets. There
|
|
// is one incoming queue (where packets are additionally tagged by the source
|
|
// address of the client that sent them). There are many outgoing queues, one
|
|
// for each client address that has been recently seen. The QueueIncoming method
|
|
// inserts a packet into the incoming queue, to eventually be returned by
|
|
// ReadFrom. WriteTo inserts a packet into an address-specific outgoing queue,
|
|
// which can later by accessed through the OutgoingQueue method.
|
|
type QueuePacketConn struct {
|
|
clients *ClientMap
|
|
localAddr net.Addr
|
|
recvQueue chan taggedPacket
|
|
closeOnce sync.Once
|
|
closed chan struct{}
|
|
mtu int
|
|
// Pool of reusable mtu-sized buffers.
|
|
bufPool sync.Pool
|
|
// What error to return when the QueuePacketConn is closed.
|
|
err atomic.Value
|
|
}
|
|
|
|
// NewQueuePacketConn makes a new QueuePacketConn, set to track recent clients
|
|
// for at least a duration of timeout. The maximum packet size is mtu.
|
|
func NewQueuePacketConn(localAddr net.Addr, timeout time.Duration, mtu int) *QueuePacketConn {
|
|
return &QueuePacketConn{
|
|
clients: NewClientMap(timeout),
|
|
localAddr: localAddr,
|
|
recvQueue: make(chan taggedPacket, queueSize),
|
|
closed: make(chan struct{}),
|
|
mtu: mtu,
|
|
bufPool: sync.Pool{New: func() interface{} { return make([]byte, mtu) }},
|
|
}
|
|
}
|
|
|
|
// QueueIncoming queues an incoming packet and its source address, to be
|
|
// returned in a future call to ReadFrom. If p is longer than the MTU, only its
|
|
// first MTU bytes will be used.
|
|
func (c *QueuePacketConn) QueueIncoming(p []byte, addr net.Addr) {
|
|
select {
|
|
case <-c.closed:
|
|
// If we're closed, silently drop it.
|
|
return
|
|
default:
|
|
}
|
|
// Copy the slice so that the caller may reuse it.
|
|
buf := c.bufPool.Get().([]byte)
|
|
if len(p) < cap(buf) {
|
|
buf = buf[:len(p)]
|
|
} else {
|
|
buf = buf[:cap(buf)]
|
|
}
|
|
copy(buf, p)
|
|
select {
|
|
case c.recvQueue <- taggedPacket{buf, addr}:
|
|
default:
|
|
// Drop the incoming packet if the receive queue is full.
|
|
c.Restore(buf)
|
|
}
|
|
}
|
|
|
|
// OutgoingQueue returns the queue of outgoing packets corresponding to addr,
|
|
// creating it if necessary. The contents of the queue will be packets that are
|
|
// written to the address in question using WriteTo.
|
|
func (c *QueuePacketConn) OutgoingQueue(addr net.Addr) <-chan []byte {
|
|
return c.clients.SendQueue(addr)
|
|
}
|
|
|
|
// Restore adds a slice to the internal pool of packet buffers. Typically you
|
|
// will call this with a slice from the OutgoingQueue channel once you are done
|
|
// using it. (It is not an error to fail to do so, it will just result in more
|
|
// allocations.)
|
|
func (c *QueuePacketConn) Restore(p []byte) {
|
|
if cap(p) >= c.mtu {
|
|
c.bufPool.Put(p)
|
|
}
|
|
}
|
|
|
|
// ReadFrom returns a packet and address previously stored by QueueIncoming.
|
|
func (c *QueuePacketConn) ReadFrom(p []byte) (int, net.Addr, error) {
|
|
select {
|
|
case <-c.closed:
|
|
return 0, nil, &net.OpError{Op: "read", Net: c.LocalAddr().Network(), Addr: c.LocalAddr(), Err: c.err.Load().(error)}
|
|
default:
|
|
}
|
|
select {
|
|
case <-c.closed:
|
|
return 0, nil, &net.OpError{Op: "read", Net: c.LocalAddr().Network(), Addr: c.LocalAddr(), Err: c.err.Load().(error)}
|
|
case packet := <-c.recvQueue:
|
|
n := copy(p, packet.P)
|
|
c.Restore(packet.P)
|
|
return n, packet.Addr, nil
|
|
}
|
|
}
|
|
|
|
// WriteTo queues an outgoing packet for the given address. The queue can later
|
|
// be retrieved using the OutgoingQueue method. If p is longer than the MTU,
|
|
// only its first MTU bytes will be used.
|
|
func (c *QueuePacketConn) WriteTo(p []byte, addr net.Addr) (int, error) {
|
|
select {
|
|
case <-c.closed:
|
|
return 0, &net.OpError{Op: "write", Net: c.LocalAddr().Network(), Addr: c.LocalAddr(), Err: c.err.Load().(error)}
|
|
default:
|
|
}
|
|
// Copy the slice so that the caller may reuse it.
|
|
buf := c.bufPool.Get().([]byte)
|
|
if len(p) < cap(buf) {
|
|
buf = buf[:len(p)]
|
|
} else {
|
|
buf = buf[:cap(buf)]
|
|
}
|
|
copy(buf, p)
|
|
select {
|
|
case c.clients.SendQueue(addr) <- buf:
|
|
return len(buf), nil
|
|
default:
|
|
// Drop the outgoing packet if the send queue is full.
|
|
c.Restore(buf)
|
|
return len(p), nil
|
|
}
|
|
}
|
|
|
|
// closeWithError unblocks pending operations and makes future operations fail
|
|
// with the given error. If err is nil, it becomes errClosedPacketConn.
|
|
func (c *QueuePacketConn) closeWithError(err error) error {
|
|
var newlyClosed bool
|
|
c.closeOnce.Do(func() {
|
|
newlyClosed = true
|
|
// Store the error to be returned by future PacketConn
|
|
// operations.
|
|
if err == nil {
|
|
err = errClosedPacketConn
|
|
}
|
|
c.err.Store(err)
|
|
close(c.closed)
|
|
})
|
|
if !newlyClosed {
|
|
return &net.OpError{Op: "close", Net: c.LocalAddr().Network(), Addr: c.LocalAddr(), Err: c.err.Load().(error)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Close unblocks pending operations and makes future operations fail with a
|
|
// "closed connection" error.
|
|
func (c *QueuePacketConn) Close() error {
|
|
return c.closeWithError(nil)
|
|
}
|
|
|
|
// LocalAddr returns the localAddr value that was passed to NewQueuePacketConn.
|
|
func (c *QueuePacketConn) LocalAddr() net.Addr { return c.localAddr }
|
|
|
|
func (c *QueuePacketConn) SetDeadline(t time.Time) error { return errNotImplemented }
|
|
func (c *QueuePacketConn) SetReadDeadline(t time.Time) error { return errNotImplemented }
|
|
func (c *QueuePacketConn) SetWriteDeadline(t time.Time) error { return errNotImplemented }
|