mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Compare commits
39 commits
v0.6.0-alp
...
dev
Author | SHA1 | Date | |
---|---|---|---|
|
159e489fc3 | ||
|
d39c2c2fdd | ||
|
ea82ac275f | ||
|
ea0ac932ae | ||
|
2b41455f5a | ||
|
23b0180a1b | ||
|
ce1b4851a4 | ||
|
2238a05966 | ||
|
b55d1c78b3 | ||
|
d54716612c | ||
|
9eafc7fc62 | ||
|
d8153df67f | ||
|
d9f6eb136d | ||
|
4dabb9be97 | ||
|
be9840c70f | ||
|
aa7d2543a3 | ||
|
33beacc053 | ||
|
442cceb9fa | ||
|
3374a45475 | ||
|
73776cf797 | ||
|
957166799e | ||
|
809d8eca13 | ||
|
9f69e7f9f7 | ||
|
478265cd45 | ||
|
3f30aaf25e | ||
|
39040e06dc | ||
|
6edd2ce0ea | ||
|
0a2e2a3eaf | ||
|
4ba1eb123c | ||
|
c44912a861 | ||
|
a8f5bf4eb0 | ||
|
30e9d91b57 | ||
|
7fd3517e4d | ||
|
a8285e06a5 | ||
|
3613ead480 | ||
|
c8f251c668 | ||
|
fa5355e99e | ||
|
30fbafd954 | ||
|
fdca9b3f8e |
44 changed files with 2220 additions and 451 deletions
|
@ -2,11 +2,10 @@ package baderror
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Contains(err error, msgList ...string) bool {
|
func Contains(err error, msgList ...string) bool {
|
||||||
|
@ -22,8 +21,7 @@ func WrapH2(err error) error {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
err = E.Unwrap(err)
|
if errors.Is(err, io.ErrUnexpectedEOF) {
|
||||||
if err == io.ErrUnexpectedEOF {
|
|
||||||
return io.EOF
|
return io.EOF
|
||||||
}
|
}
|
||||||
if Contains(err, "client disconnected", "body closed by handler", "response body closed", "; CANCEL") {
|
if Contains(err, "client disconnected", "body closed by handler", "response body closed", "; CANCEL") {
|
||||||
|
|
|
@ -29,28 +29,36 @@ func Copy(destination io.Writer, source io.Reader) (n int64, err error) {
|
||||||
if cachedSrc, isCached := source.(N.CachedReader); isCached {
|
if cachedSrc, isCached := source.(N.CachedReader); isCached {
|
||||||
cachedBuffer := cachedSrc.ReadCached()
|
cachedBuffer := cachedSrc.ReadCached()
|
||||||
if cachedBuffer != nil {
|
if cachedBuffer != nil {
|
||||||
if !cachedBuffer.IsEmpty() {
|
dataLen := cachedBuffer.Len()
|
||||||
_, err = destination.Write(cachedBuffer.Bytes())
|
_, err = destination.Write(cachedBuffer.Bytes())
|
||||||
if err != nil {
|
|
||||||
cachedBuffer.Release()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
cachedBuffer.Release()
|
cachedBuffer.Release()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, counter := range readCounters {
|
||||||
|
counter(int64(dataLen))
|
||||||
|
}
|
||||||
|
for _, counter := range writeCounters {
|
||||||
|
counter(int64(dataLen))
|
||||||
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
srcSyscallConn, srcIsSyscall := source.(syscall.Conn)
|
|
||||||
dstSyscallConn, dstIsSyscall := destination.(syscall.Conn)
|
|
||||||
if srcIsSyscall && dstIsSyscall {
|
|
||||||
var handled bool
|
|
||||||
handled, n, err = copyDirect(srcSyscallConn, dstSyscallConn, readCounters, writeCounters)
|
|
||||||
if handled {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
return CopyWithCounters(destination, source, originSource, readCounters, writeCounters)
|
||||||
|
}
|
||||||
|
|
||||||
|
func CopyWithCounters(destination io.Writer, source io.Reader, originSource io.Reader, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
||||||
|
srcSyscallConn, srcIsSyscall := source.(syscall.Conn)
|
||||||
|
dstSyscallConn, dstIsSyscall := destination.(syscall.Conn)
|
||||||
|
if srcIsSyscall && dstIsSyscall {
|
||||||
|
var handled bool
|
||||||
|
handled, n, err = copyDirect(srcSyscallConn, dstSyscallConn, readCounters, writeCounters)
|
||||||
|
if handled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
return CopyExtended(originSource, NewExtendedWriter(destination), NewExtendedReader(source), readCounters, writeCounters)
|
return CopyExtended(originSource, NewExtendedWriter(destination), NewExtendedReader(source), readCounters, writeCounters)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,6 +83,7 @@ func CopyExtended(originSource io.Reader, destination N.ExtendedWriter, source N
|
||||||
return CopyExtendedWithPool(originSource, destination, source, readCounters, writeCounters)
|
return CopyExtendedWithPool(originSource, destination, source, readCounters, writeCounters)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Deprecated: not used
|
||||||
func CopyExtendedBuffer(originSource io.Writer, destination N.ExtendedWriter, source N.ExtendedReader, buffer *buf.Buffer, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
func CopyExtendedBuffer(originSource io.Writer, destination N.ExtendedWriter, source N.ExtendedReader, buffer *buf.Buffer, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
||||||
buffer.IncRef()
|
buffer.IncRef()
|
||||||
defer buffer.DecRef()
|
defer buffer.DecRef()
|
||||||
|
@ -113,19 +122,10 @@ func CopyExtendedBuffer(originSource io.Writer, destination N.ExtendedWriter, so
|
||||||
}
|
}
|
||||||
|
|
||||||
func CopyExtendedWithPool(originSource io.Reader, destination N.ExtendedWriter, source N.ExtendedReader, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
func CopyExtendedWithPool(originSource io.Reader, destination N.ExtendedWriter, source N.ExtendedReader, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
||||||
frontHeadroom := N.CalculateFrontHeadroom(destination)
|
options := N.NewReadWaitOptions(source, destination)
|
||||||
rearHeadroom := N.CalculateRearHeadroom(destination)
|
|
||||||
bufferSize := N.CalculateMTU(source, destination)
|
|
||||||
if bufferSize > 0 {
|
|
||||||
bufferSize += frontHeadroom + rearHeadroom
|
|
||||||
} else {
|
|
||||||
bufferSize = buf.BufferSize
|
|
||||||
}
|
|
||||||
var notFirstTime bool
|
var notFirstTime bool
|
||||||
for {
|
for {
|
||||||
buffer := buf.NewSize(bufferSize)
|
buffer := options.NewBuffer()
|
||||||
buffer.Resize(frontHeadroom, 0)
|
|
||||||
buffer.Reserve(rearHeadroom)
|
|
||||||
err = source.ReadBuffer(buffer)
|
err = source.ReadBuffer(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Release()
|
buffer.Release()
|
||||||
|
@ -136,7 +136,7 @@ func CopyExtendedWithPool(originSource io.Reader, destination N.ExtendedWriter,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
dataLen := buffer.Len()
|
dataLen := buffer.Len()
|
||||||
buffer.OverCap(rearHeadroom)
|
options.PostReturn(buffer)
|
||||||
err = destination.WriteBuffer(buffer)
|
err = destination.WriteBuffer(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Leak()
|
buffer.Leak()
|
||||||
|
@ -196,18 +196,6 @@ func CopyConn(ctx context.Context, source net.Conn, destination net.Conn) error
|
||||||
return group.Run(ctx)
|
return group.Run(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: not used
|
|
||||||
func CopyConnContextList(contextList []context.Context, source net.Conn, destination net.Conn) error {
|
|
||||||
switch len(contextList) {
|
|
||||||
case 0:
|
|
||||||
return CopyConn(context.Background(), source, destination)
|
|
||||||
case 1:
|
|
||||||
return CopyConn(contextList[0], source, destination)
|
|
||||||
default:
|
|
||||||
panic("invalid context list")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func CopyPacket(destinationConn N.PacketWriter, source N.PacketReader) (n int64, err error) {
|
func CopyPacket(destinationConn N.PacketWriter, source N.PacketReader) (n int64, err error) {
|
||||||
var readCounters, writeCounters []N.CountFunc
|
var readCounters, writeCounters []N.CountFunc
|
||||||
var cachedPackets []*N.PacketBuffer
|
var cachedPackets []*N.PacketBuffer
|
||||||
|
@ -225,24 +213,24 @@ func CopyPacket(destinationConn N.PacketWriter, source N.PacketReader) (n int64,
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if cachedPackets != nil {
|
if cachedPackets != nil {
|
||||||
n, err = WritePacketWithPool(originSource, destinationConn, cachedPackets)
|
n, err = WritePacketWithPool(originSource, destinationConn, cachedPackets, readCounters, writeCounters)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
frontHeadroom := N.CalculateFrontHeadroom(destinationConn)
|
copeN, err := CopyPacketWithCounters(destinationConn, source, originSource, readCounters, writeCounters)
|
||||||
rearHeadroom := N.CalculateRearHeadroom(destinationConn)
|
n += copeN
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func CopyPacketWithCounters(destinationConn N.PacketWriter, source N.PacketReader, originSource N.PacketReader, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
||||||
var (
|
var (
|
||||||
handled bool
|
handled bool
|
||||||
copeN int64
|
copeN int64
|
||||||
)
|
)
|
||||||
readWaiter, isReadWaiter := CreatePacketReadWaiter(source)
|
readWaiter, isReadWaiter := CreatePacketReadWaiter(source)
|
||||||
if isReadWaiter {
|
if isReadWaiter {
|
||||||
needCopy := readWaiter.InitializeReadWaiter(N.ReadWaitOptions{
|
needCopy := readWaiter.InitializeReadWaiter(N.NewReadWaitOptions(source, destinationConn))
|
||||||
FrontHeadroom: frontHeadroom,
|
|
||||||
RearHeadroom: rearHeadroom,
|
|
||||||
MTU: N.CalculateMTU(source, destinationConn),
|
|
||||||
})
|
|
||||||
if !needCopy || common.LowMemory {
|
if !needCopy || common.LowMemory {
|
||||||
handled, copeN, err = copyPacketWaitWithPool(originSource, destinationConn, readWaiter, readCounters, writeCounters, n > 0)
|
handled, copeN, err = copyPacketWaitWithPool(originSource, destinationConn, readWaiter, readCounters, writeCounters, n > 0)
|
||||||
if handled {
|
if handled {
|
||||||
|
@ -256,28 +244,19 @@ func CopyPacket(destinationConn N.PacketWriter, source N.PacketReader) (n int64,
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func CopyPacketWithPool(originSource N.PacketReader, destinationConn N.PacketWriter, source N.PacketReader, readCounters []N.CountFunc, writeCounters []N.CountFunc, notFirstTime bool) (n int64, err error) {
|
func CopyPacketWithPool(originSource N.PacketReader, destination N.PacketWriter, source N.PacketReader, readCounters []N.CountFunc, writeCounters []N.CountFunc, notFirstTime bool) (n int64, err error) {
|
||||||
frontHeadroom := N.CalculateFrontHeadroom(destinationConn)
|
options := N.NewReadWaitOptions(source, destination)
|
||||||
rearHeadroom := N.CalculateRearHeadroom(destinationConn)
|
var destinationAddress M.Socksaddr
|
||||||
bufferSize := N.CalculateMTU(source, destinationConn)
|
|
||||||
if bufferSize > 0 {
|
|
||||||
bufferSize += frontHeadroom + rearHeadroom
|
|
||||||
} else {
|
|
||||||
bufferSize = buf.UDPBufferSize
|
|
||||||
}
|
|
||||||
var destination M.Socksaddr
|
|
||||||
for {
|
for {
|
||||||
buffer := buf.NewSize(bufferSize)
|
buffer := options.NewPacketBuffer()
|
||||||
buffer.Resize(frontHeadroom, 0)
|
destinationAddress, err = source.ReadPacket(buffer)
|
||||||
buffer.Reserve(rearHeadroom)
|
|
||||||
destination, err = source.ReadPacket(buffer)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Release()
|
buffer.Release()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
dataLen := buffer.Len()
|
dataLen := buffer.Len()
|
||||||
buffer.OverCap(rearHeadroom)
|
options.PostReturn(buffer)
|
||||||
err = destinationConn.WritePacket(buffer, destination)
|
err = destination.WritePacket(buffer, destinationAddress)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Leak()
|
buffer.Leak()
|
||||||
if !notFirstTime {
|
if !notFirstTime {
|
||||||
|
@ -285,34 +264,25 @@ func CopyPacketWithPool(originSource N.PacketReader, destinationConn N.PacketWri
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
n += int64(dataLen)
|
|
||||||
for _, counter := range readCounters {
|
for _, counter := range readCounters {
|
||||||
counter(int64(dataLen))
|
counter(int64(dataLen))
|
||||||
}
|
}
|
||||||
for _, counter := range writeCounters {
|
for _, counter := range writeCounters {
|
||||||
counter(int64(dataLen))
|
counter(int64(dataLen))
|
||||||
}
|
}
|
||||||
|
n += int64(dataLen)
|
||||||
notFirstTime = true
|
notFirstTime = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func WritePacketWithPool(originSource N.PacketReader, destinationConn N.PacketWriter, packetBuffers []*N.PacketBuffer) (n int64, err error) {
|
func WritePacketWithPool(originSource N.PacketReader, destination N.PacketWriter, packetBuffers []*N.PacketBuffer, readCounters []N.CountFunc, writeCounters []N.CountFunc) (n int64, err error) {
|
||||||
frontHeadroom := N.CalculateFrontHeadroom(destinationConn)
|
options := N.NewReadWaitOptions(nil, destination)
|
||||||
rearHeadroom := N.CalculateRearHeadroom(destinationConn)
|
|
||||||
var notFirstTime bool
|
var notFirstTime bool
|
||||||
for _, packetBuffer := range packetBuffers {
|
for _, packetBuffer := range packetBuffers {
|
||||||
buffer := buf.NewPacket()
|
buffer := options.Copy(packetBuffer.Buffer)
|
||||||
buffer.Resize(frontHeadroom, 0)
|
|
||||||
buffer.Reserve(rearHeadroom)
|
|
||||||
_, err = buffer.Write(packetBuffer.Buffer.Bytes())
|
|
||||||
packetBuffer.Buffer.Release()
|
|
||||||
if err != nil {
|
|
||||||
buffer.Release()
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
dataLen := buffer.Len()
|
dataLen := buffer.Len()
|
||||||
buffer.OverCap(rearHeadroom)
|
err = destination.WritePacket(buffer, packetBuffer.Destination)
|
||||||
err = destinationConn.WritePacket(buffer, packetBuffer.Destination)
|
N.PutPacketBuffer(packetBuffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
buffer.Leak()
|
buffer.Leak()
|
||||||
if !notFirstTime {
|
if !notFirstTime {
|
||||||
|
@ -320,7 +290,14 @@ func WritePacketWithPool(originSource N.PacketReader, destinationConn N.PacketWr
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
for _, counter := range readCounters {
|
||||||
|
counter(int64(dataLen))
|
||||||
|
}
|
||||||
|
for _, counter := range writeCounters {
|
||||||
|
counter(int64(dataLen))
|
||||||
|
}
|
||||||
n += int64(dataLen)
|
n += int64(dataLen)
|
||||||
|
notFirstTime = true
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -339,15 +316,3 @@ func CopyPacketConn(ctx context.Context, source N.PacketConn, destination N.Pack
|
||||||
group.FastFail()
|
group.FastFail()
|
||||||
return group.Run(ctx)
|
return group.Run(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: not used
|
|
||||||
func CopyPacketConnContextList(contextList []context.Context, source N.PacketConn, destination N.PacketConn) error {
|
|
||||||
switch len(contextList) {
|
|
||||||
case 0:
|
|
||||||
return CopyPacketConn(context.Background(), source, destination)
|
|
||||||
case 1:
|
|
||||||
return CopyPacketConn(contextList[0], source, destination)
|
|
||||||
default:
|
|
||||||
panic("invalid context list")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -120,16 +120,16 @@ func (w *syscallPacketReadWaiter) InitializeReadWaiter(options N.ReadWaitOptions
|
||||||
var readN int
|
var readN int
|
||||||
var from windows.Sockaddr
|
var from windows.Sockaddr
|
||||||
readN, from, w.readErr = windows.Recvfrom(windows.Handle(fd), buffer.FreeBytes(), 0)
|
readN, from, w.readErr = windows.Recvfrom(windows.Handle(fd), buffer.FreeBytes(), 0)
|
||||||
|
//goland:noinspection GoDirectComparisonOfErrors
|
||||||
|
if w.readErr != nil {
|
||||||
|
buffer.Release()
|
||||||
|
return w.readErr != windows.WSAEWOULDBLOCK
|
||||||
|
}
|
||||||
if readN > 0 {
|
if readN > 0 {
|
||||||
buffer.Truncate(readN)
|
buffer.Truncate(readN)
|
||||||
w.options.PostReturn(buffer)
|
|
||||||
w.buffer = buffer
|
|
||||||
} else {
|
|
||||||
buffer.Release()
|
|
||||||
}
|
|
||||||
if w.readErr == windows.WSAEWOULDBLOCK {
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
w.options.PostReturn(buffer)
|
||||||
|
w.buffer = buffer
|
||||||
if from != nil {
|
if from != nil {
|
||||||
switch fromAddr := from.(type) {
|
switch fromAddr := from.(type) {
|
||||||
case *windows.SockaddrInet4:
|
case *windows.SockaddrInet4:
|
||||||
|
|
|
@ -30,6 +30,14 @@ func NewNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.So
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewDestinationNATPacketConn(conn N.NetPacketConn, origin M.Socksaddr, destination M.Socksaddr) NATPacketConn {
|
||||||
|
return &destinationNATPacketConn{
|
||||||
|
NetPacketConn: conn,
|
||||||
|
origin: origin,
|
||||||
|
destination: destination,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type unidirectionalNATPacketConn struct {
|
type unidirectionalNATPacketConn struct {
|
||||||
N.NetPacketConn
|
N.NetPacketConn
|
||||||
origin M.Socksaddr
|
origin M.Socksaddr
|
||||||
|
@ -144,6 +152,60 @@ func (c *bidirectionalNATPacketConn) RemoteAddr() net.Addr {
|
||||||
return c.destination.UDPAddr()
|
return c.destination.UDPAddr()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type destinationNATPacketConn struct {
|
||||||
|
N.NetPacketConn
|
||||||
|
origin M.Socksaddr
|
||||||
|
destination M.Socksaddr
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
||||||
|
n, addr, err = c.NetPacketConn.ReadFrom(p)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if M.SocksaddrFromNet(addr) == c.origin {
|
||||||
|
addr = c.destination.UDPAddr()
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
|
if M.SocksaddrFromNet(addr) == c.destination {
|
||||||
|
addr = c.origin.UDPAddr()
|
||||||
|
}
|
||||||
|
return c.NetPacketConn.WriteTo(p, addr)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksaddr, err error) {
|
||||||
|
destination, err = c.NetPacketConn.ReadPacket(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if destination == c.origin {
|
||||||
|
destination = c.destination
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
|
if destination == c.destination {
|
||||||
|
destination = c.origin
|
||||||
|
}
|
||||||
|
return c.NetPacketConn.WritePacket(buffer, destination)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) UpdateDestination(destinationAddress netip.Addr) {
|
||||||
|
c.destination = M.SocksaddrFrom(destinationAddress, c.destination.Port)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) Upstream() any {
|
||||||
|
return c.NetPacketConn
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *destinationNATPacketConn) RemoteAddr() net.Addr {
|
||||||
|
return c.destination.UDPAddr()
|
||||||
|
}
|
||||||
|
|
||||||
func socksaddrWithoutPort(destination M.Socksaddr) M.Socksaddr {
|
func socksaddrWithoutPort(destination M.Socksaddr) M.Socksaddr {
|
||||||
destination.Port = 0
|
destination.Port = 0
|
||||||
return destination
|
return destination
|
||||||
|
|
|
@ -41,9 +41,9 @@ func (i *Instance) Timeout() time.Duration {
|
||||||
return i.timeout
|
return i.timeout
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *Instance) SetTimeout(timeout time.Duration) {
|
func (i *Instance) SetTimeout(timeout time.Duration) bool {
|
||||||
i.timeout = timeout
|
i.timeout = timeout
|
||||||
i.Update()
|
return i.Update()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *Instance) wait() {
|
func (i *Instance) wait() {
|
||||||
|
|
|
@ -13,7 +13,7 @@ import (
|
||||||
type PacketConn interface {
|
type PacketConn interface {
|
||||||
N.PacketConn
|
N.PacketConn
|
||||||
Timeout() time.Duration
|
Timeout() time.Duration
|
||||||
SetTimeout(timeout time.Duration)
|
SetTimeout(timeout time.Duration) bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type TimerPacketConn struct {
|
type TimerPacketConn struct {
|
||||||
|
@ -24,10 +24,12 @@ type TimerPacketConn struct {
|
||||||
func NewPacketConn(ctx context.Context, conn N.PacketConn, timeout time.Duration) (context.Context, N.PacketConn) {
|
func NewPacketConn(ctx context.Context, conn N.PacketConn, timeout time.Duration) (context.Context, N.PacketConn) {
|
||||||
if timeoutConn, isTimeoutConn := common.Cast[PacketConn](conn); isTimeoutConn {
|
if timeoutConn, isTimeoutConn := common.Cast[PacketConn](conn); isTimeoutConn {
|
||||||
oldTimeout := timeoutConn.Timeout()
|
oldTimeout := timeoutConn.Timeout()
|
||||||
if timeout < oldTimeout {
|
if oldTimeout > 0 && timeout >= oldTimeout {
|
||||||
timeoutConn.SetTimeout(timeout)
|
return ctx, conn
|
||||||
|
}
|
||||||
|
if timeoutConn.SetTimeout(timeout) {
|
||||||
|
return ctx, conn
|
||||||
}
|
}
|
||||||
return ctx, conn
|
|
||||||
}
|
}
|
||||||
err := conn.SetReadDeadline(time.Time{})
|
err := conn.SetReadDeadline(time.Time{})
|
||||||
if err == nil {
|
if err == nil {
|
||||||
|
@ -58,8 +60,8 @@ func (c *TimerPacketConn) Timeout() time.Duration {
|
||||||
return c.instance.Timeout()
|
return c.instance.Timeout()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *TimerPacketConn) SetTimeout(timeout time.Duration) {
|
func (c *TimerPacketConn) SetTimeout(timeout time.Duration) bool {
|
||||||
c.instance.SetTimeout(timeout)
|
return c.instance.SetTimeout(timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *TimerPacketConn) Close() error {
|
func (c *TimerPacketConn) Close() error {
|
||||||
|
|
|
@ -61,9 +61,9 @@ func (c *TimeoutPacketConn) Timeout() time.Duration {
|
||||||
return c.timeout
|
return c.timeout
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *TimeoutPacketConn) SetTimeout(timeout time.Duration) {
|
func (c *TimeoutPacketConn) SetTimeout(timeout time.Duration) bool {
|
||||||
c.timeout = timeout
|
c.timeout = timeout
|
||||||
c.PacketConn.SetReadDeadline(time.Now())
|
return c.PacketConn.SetReadDeadline(time.Now()) == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *TimeoutPacketConn) Close() error {
|
func (c *TimeoutPacketConn) Close() error {
|
||||||
|
|
|
@ -4,19 +4,26 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
|
||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
func DisableUDPFragment() Func {
|
func DisableUDPFragment() Func {
|
||||||
return func(network, address string, conn syscall.RawConn) error {
|
return func(network, address string, conn syscall.RawConn) error {
|
||||||
|
if N.NetworkName(network) != N.NetworkUDP {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return Raw(conn, func(fd uintptr) error {
|
return Raw(conn, func(fd uintptr) error {
|
||||||
switch network {
|
if network == "udp" || network == "udp4" {
|
||||||
case "udp4":
|
err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IP, unix.IP_DONTFRAG, 1)
|
||||||
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IP, unix.IP_DONTFRAG, 1); err != nil {
|
if err != nil {
|
||||||
return os.NewSyscallError("SETSOCKOPT IP_DONTFRAG", err)
|
return os.NewSyscallError("SETSOCKOPT IP_DONTFRAG", err)
|
||||||
}
|
}
|
||||||
case "udp6":
|
}
|
||||||
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_DONTFRAG, 1); err != nil {
|
if network == "udp" || network == "udp6" {
|
||||||
|
err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_DONTFRAG, 1)
|
||||||
|
if err != nil {
|
||||||
return os.NewSyscallError("SETSOCKOPT IPV6_DONTFRAG", err)
|
return os.NewSyscallError("SETSOCKOPT IPV6_DONTFRAG", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,17 +11,19 @@ import (
|
||||||
|
|
||||||
func DisableUDPFragment() Func {
|
func DisableUDPFragment() Func {
|
||||||
return func(network, address string, conn syscall.RawConn) error {
|
return func(network, address string, conn syscall.RawConn) error {
|
||||||
switch N.NetworkName(network) {
|
if N.NetworkName(network) != N.NetworkUDP {
|
||||||
case N.NetworkUDP:
|
|
||||||
default:
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return Raw(conn, func(fd uintptr) error {
|
return Raw(conn, func(fd uintptr) error {
|
||||||
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IP, unix.IP_MTU_DISCOVER, unix.IP_PMTUDISC_DO); err != nil {
|
if network == "udp" || network == "udp4" {
|
||||||
return os.NewSyscallError("SETSOCKOPT IP_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IP, unix.IP_MTU_DISCOVER, unix.IP_PMTUDISC_DO)
|
||||||
|
if err != nil {
|
||||||
|
return os.NewSyscallError("SETSOCKOPT IP_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if network == "udp6" {
|
if network == "udp" || network == "udp6" {
|
||||||
if err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_MTU_DISCOVER, unix.IP_PMTUDISC_DO); err != nil {
|
err := unix.SetsockoptInt(int(fd), unix.IPPROTO_IPV6, unix.IPV6_MTU_DISCOVER, unix.IP_PMTUDISC_DO)
|
||||||
|
if err != nil {
|
||||||
return os.NewSyscallError("SETSOCKOPT IPV6_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
return os.NewSyscallError("SETSOCKOPT IPV6_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,17 +25,19 @@ const (
|
||||||
|
|
||||||
func DisableUDPFragment() Func {
|
func DisableUDPFragment() Func {
|
||||||
return func(network, address string, conn syscall.RawConn) error {
|
return func(network, address string, conn syscall.RawConn) error {
|
||||||
switch N.NetworkName(network) {
|
if N.NetworkName(network) != N.NetworkUDP {
|
||||||
case N.NetworkUDP:
|
|
||||||
default:
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return Raw(conn, func(fd uintptr) error {
|
return Raw(conn, func(fd uintptr) error {
|
||||||
if err := windows.SetsockoptInt(windows.Handle(fd), windows.IPPROTO_IP, IP_MTU_DISCOVER, IP_PMTUDISC_DO); err != nil {
|
if network == "udp" || network == "udp4" {
|
||||||
return os.NewSyscallError("SETSOCKOPT IP_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
err := windows.SetsockoptInt(windows.Handle(fd), windows.IPPROTO_IP, IP_MTU_DISCOVER, IP_PMTUDISC_DO)
|
||||||
|
if err != nil {
|
||||||
|
return os.NewSyscallError("SETSOCKOPT IP_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if network == "udp6" {
|
if network == "udp" || network == "udp6" {
|
||||||
if err := windows.SetsockoptInt(windows.Handle(fd), windows.IPPROTO_IPV6, IPV6_MTU_DISCOVER, IP_PMTUDISC_DO); err != nil {
|
err := windows.SetsockoptInt(windows.Handle(fd), windows.IPPROTO_IPV6, IPV6_MTU_DISCOVER, IP_PMTUDISC_DO)
|
||||||
|
if err != nil {
|
||||||
return os.NewSyscallError("SETSOCKOPT IPV6_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
return os.NewSyscallError("SETSOCKOPT IPV6_MTU_DISCOVER IP_PMTUDISC_DO", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,3 +12,16 @@ func (e *causeError) Error() string {
|
||||||
func (e *causeError) Unwrap() error {
|
func (e *causeError) Unwrap() error {
|
||||||
return e.cause
|
return e.cause
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type causeError1 struct {
|
||||||
|
error
|
||||||
|
cause error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *causeError1) Error() string {
|
||||||
|
return e.error.Error() + ": " + e.cause.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *causeError1) Unwrap() []error {
|
||||||
|
return []error{e.error, e.cause}
|
||||||
|
}
|
||||||
|
|
|
@ -32,6 +32,13 @@ func Cause(cause error, message ...any) error {
|
||||||
return &causeError{F.ToString(message...), cause}
|
return &causeError{F.ToString(message...), cause}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Cause1(err error, cause error) error {
|
||||||
|
if cause == nil {
|
||||||
|
panic("cause on an nil error")
|
||||||
|
}
|
||||||
|
return &causeError1{err, cause}
|
||||||
|
}
|
||||||
|
|
||||||
func Extend(cause error, message ...any) error {
|
func Extend(cause error, message ...any) error {
|
||||||
if cause == nil {
|
if cause == nil {
|
||||||
panic("extend on an nil error")
|
panic("extend on an nil error")
|
||||||
|
@ -40,11 +47,11 @@ func Extend(cause error, message ...any) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func IsClosedOrCanceled(err error) bool {
|
func IsClosedOrCanceled(err error) bool {
|
||||||
return IsMulti(err, io.EOF, net.ErrClosed, io.ErrClosedPipe, os.ErrClosed, syscall.EPIPE, syscall.ECONNRESET, context.Canceled, context.DeadlineExceeded)
|
return IsClosed(err) || IsCanceled(err) || IsTimeout(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func IsClosed(err error) bool {
|
func IsClosed(err error) bool {
|
||||||
return IsMulti(err, io.EOF, net.ErrClosed, io.ErrClosedPipe, os.ErrClosed, syscall.EPIPE, syscall.ECONNRESET)
|
return IsMulti(err, io.EOF, net.ErrClosed, io.ErrClosedPipe, os.ErrClosed, syscall.EPIPE, syscall.ECONNRESET, syscall.ENOTCONN)
|
||||||
}
|
}
|
||||||
|
|
||||||
func IsCanceled(err error) bool {
|
func IsCanceled(err error) bool {
|
||||||
|
|
|
@ -1,24 +1,14 @@
|
||||||
package exceptions
|
package exceptions
|
||||||
|
|
||||||
import "github.com/sagernet/sing/common"
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
type HasInnerError interface {
|
"github.com/sagernet/sing/common"
|
||||||
Unwrap() error
|
)
|
||||||
}
|
|
||||||
|
|
||||||
|
// Deprecated: Use errors.Unwrap instead.
|
||||||
func Unwrap(err error) error {
|
func Unwrap(err error) error {
|
||||||
for {
|
return errors.Unwrap(err)
|
||||||
inner, ok := err.(HasInnerError)
|
|
||||||
if !ok {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
innerErr := inner.Unwrap()
|
|
||||||
if innerErr == nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
err = innerErr
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func Cast[T any](err error) (T, bool) {
|
func Cast[T any](err error) (T, bool) {
|
||||||
|
|
|
@ -63,12 +63,5 @@ func IsMulti(err error, targetList ...error) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = Unwrap(err)
|
return false
|
||||||
multiErr, isMulti := err.(MultiError)
|
|
||||||
if !isMulti {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return common.All(multiErr.Unwrap(), func(it error) bool {
|
|
||||||
return IsMulti(it, targetList...)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func Omitempty[T any](ctx context.Context, value T) (T, error) {
|
func Omitempty[T any](ctx context.Context, value T) (T, error) {
|
||||||
objectContent, err := json.Marshal(value)
|
objectContent, err := json.MarshalContext(ctx, value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return common.DefaultValue[T](), E.Cause(err, "marshal object")
|
return common.DefaultValue[T](), E.Cause(err, "marshal object")
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,11 @@ package badjson
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"reflect"
|
||||||
|
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
"github.com/sagernet/sing/common/json"
|
"github.com/sagernet/sing/common/json"
|
||||||
|
cJSON "github.com/sagernet/sing/common/json/internal/contextjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
func MarshallObjects(objects ...any) ([]byte, error) {
|
func MarshallObjects(objects ...any) ([]byte, error) {
|
||||||
|
@ -31,16 +33,12 @@ func UnmarshallExcluded(inputContent []byte, parentObject any, object any) error
|
||||||
}
|
}
|
||||||
|
|
||||||
func UnmarshallExcludedContext(ctx context.Context, inputContent []byte, parentObject any, object any) error {
|
func UnmarshallExcludedContext(ctx context.Context, inputContent []byte, parentObject any, object any) error {
|
||||||
parentContent, err := newJSONObject(ctx, parentObject)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
var content JSONObject
|
var content JSONObject
|
||||||
err = content.UnmarshalJSONContext(ctx, inputContent)
|
err := content.UnmarshalJSONContext(ctx, inputContent)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
for _, key := range parentContent.Keys() {
|
for _, key := range cJSON.ObjectKeys(reflect.TypeOf(parentObject)) {
|
||||||
content.Remove(key)
|
content.Remove(key)
|
||||||
}
|
}
|
||||||
if object == nil {
|
if object == nil {
|
||||||
|
|
|
@ -9,24 +9,27 @@ import (
|
||||||
|
|
||||||
type Listable[T any] []T
|
type Listable[T any] []T
|
||||||
|
|
||||||
func (l Listable[T]) MarshalJSON() ([]byte, error) {
|
func (l Listable[T]) MarshalJSONContext(ctx context.Context) ([]byte, error) {
|
||||||
arrayList := []T(l)
|
arrayList := []T(l)
|
||||||
if len(arrayList) == 1 {
|
if len(arrayList) == 1 {
|
||||||
return json.Marshal(arrayList[0])
|
return json.Marshal(arrayList[0])
|
||||||
}
|
}
|
||||||
return json.Marshal(arrayList)
|
return json.MarshalContext(ctx, arrayList)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
func (l *Listable[T]) UnmarshalJSONContext(ctx context.Context, content []byte) error {
|
||||||
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, (*[]T)(l))
|
if string(content) == "null" {
|
||||||
if err == nil {
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
var singleItem T
|
var singleItem T
|
||||||
newError := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
|
err := json.UnmarshalContextDisallowUnknownFields(ctx, content, &singleItem)
|
||||||
if newError != nil {
|
if err == nil {
|
||||||
return E.Errors(err, newError)
|
*l = []T{singleItem}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
*l = []T{singleItem}
|
newErr := json.UnmarshalContextDisallowUnknownFields(ctx, content, (*[]T)(l))
|
||||||
return nil
|
if newErr == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return E.Errors(err, newErr)
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,13 @@ func (a *Addr) UnmarshalJSON(content []byte) error {
|
||||||
|
|
||||||
type Prefix netip.Prefix
|
type Prefix netip.Prefix
|
||||||
|
|
||||||
|
func (p *Prefix) Build(defaultPrefix netip.Prefix) netip.Prefix {
|
||||||
|
if p == nil {
|
||||||
|
return defaultPrefix
|
||||||
|
}
|
||||||
|
return netip.Prefix(*p)
|
||||||
|
}
|
||||||
|
|
||||||
func (p *Prefix) MarshalJSON() ([]byte, error) {
|
func (p *Prefix) MarshalJSON() ([]byte, error) {
|
||||||
return json.Marshal(netip.Prefix(*p).String())
|
return json.Marshal(netip.Prefix(*p).String())
|
||||||
}
|
}
|
||||||
|
@ -55,6 +62,13 @@ func (p *Prefix) UnmarshalJSON(content []byte) error {
|
||||||
|
|
||||||
type Prefixable netip.Prefix
|
type Prefixable netip.Prefix
|
||||||
|
|
||||||
|
func (p *Prefixable) Build(defaultPrefix netip.Prefix) netip.Prefix {
|
||||||
|
if p == nil {
|
||||||
|
return defaultPrefix
|
||||||
|
}
|
||||||
|
return netip.Prefix(*p)
|
||||||
|
}
|
||||||
|
|
||||||
func (p *Prefixable) MarshalJSON() ([]byte, error) {
|
func (p *Prefixable) MarshalJSON() ([]byte, error) {
|
||||||
prefix := netip.Prefix(*p)
|
prefix := netip.Prefix(*p)
|
||||||
if prefix.Bits() == prefix.Addr().BitLen() {
|
if prefix.Bits() == prefix.Addr().BitLen() {
|
||||||
|
|
20
common/json/internal/contextjson/keys.go
Normal file
20
common/json/internal/contextjson/keys.go
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
package json
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ObjectKeys(object reflect.Type) []string {
|
||||||
|
switch object.Kind() {
|
||||||
|
case reflect.Pointer:
|
||||||
|
return ObjectKeys(object.Elem())
|
||||||
|
case reflect.Struct:
|
||||||
|
default:
|
||||||
|
panic("invalid non-struct input")
|
||||||
|
}
|
||||||
|
return common.Map(cachedTypeFields(object).list, func(field field) string {
|
||||||
|
return field.name
|
||||||
|
})
|
||||||
|
}
|
26
common/json/internal/contextjson/keys_test.go
Normal file
26
common/json/internal/contextjson/keys_test.go
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
package json_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
json "github.com/sagernet/sing/common/json/internal/contextjson"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MyObject struct {
|
||||||
|
Hello string `json:"hello,omitempty"`
|
||||||
|
MyWorld
|
||||||
|
MyWorld2 string `json:"-"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MyWorld struct {
|
||||||
|
World string `json:"world,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestObjectKeys(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
keys := json.ObjectKeys(reflect.TypeOf(&MyObject{}))
|
||||||
|
require.Equal(t, []string{"hello", "world"}, keys)
|
||||||
|
}
|
|
@ -74,9 +74,10 @@ type ExtendedConn interface {
|
||||||
type CloseHandlerFunc = func(it error)
|
type CloseHandlerFunc = func(it error)
|
||||||
|
|
||||||
func AppendClose(parent CloseHandlerFunc, onClose CloseHandlerFunc) CloseHandlerFunc {
|
func AppendClose(parent CloseHandlerFunc, onClose CloseHandlerFunc) CloseHandlerFunc {
|
||||||
|
if onClose == nil {
|
||||||
|
panic("nil onClose")
|
||||||
|
}
|
||||||
if parent == nil {
|
if parent == nil {
|
||||||
return parent
|
|
||||||
} else if onClose == nil {
|
|
||||||
return onClose
|
return onClose
|
||||||
}
|
}
|
||||||
return func(it error) {
|
return func(it error) {
|
||||||
|
|
|
@ -15,6 +15,14 @@ type ReadWaitOptions struct {
|
||||||
MTU int
|
MTU int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewReadWaitOptions(source any, destination any) ReadWaitOptions {
|
||||||
|
return ReadWaitOptions{
|
||||||
|
FrontHeadroom: CalculateFrontHeadroom(destination),
|
||||||
|
RearHeadroom: CalculateRearHeadroom(destination),
|
||||||
|
MTU: CalculateMTU(source, destination),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (o ReadWaitOptions) NeedHeadroom() bool {
|
func (o ReadWaitOptions) NeedHeadroom() bool {
|
||||||
return o.FrontHeadroom > 0 || o.RearHeadroom > 0
|
return o.FrontHeadroom > 0 || o.RearHeadroom > 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@ func ReportHandshakeFailure(reporter any, err error) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func CloseOnHandshakeFailure(reporter any, onClose CloseHandlerFunc, err error) error {
|
func CloseOnHandshakeFailure(reporter io.Closer, onClose CloseHandlerFunc, err error) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if handshakeConn, isHandshakeConn := common.Cast[HandshakeFailure](reporter); isHandshakeConn {
|
if handshakeConn, isHandshakeConn := common.Cast[HandshakeFailure](reporter); isHandshakeConn {
|
||||||
hErr := handshakeConn.HandshakeFailure(err)
|
hErr := handshakeConn.HandshakeFailure(err)
|
||||||
|
@ -51,12 +51,10 @@ func CloseOnHandshakeFailure(reporter any, onClose CloseHandlerFunc, err error)
|
||||||
}](reporter); isTCPConn {
|
}](reporter); isTCPConn {
|
||||||
tcpConn.SetLinger(0)
|
tcpConn.SetLinger(0)
|
||||||
}
|
}
|
||||||
if closer, isCloser := reporter.(io.Closer); isCloser {
|
|
||||||
err = E.Append(err, closer.Close(), func(err error) error {
|
|
||||||
return E.Cause(err, "close")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
err = E.Append(err, reporter.Close(), func(err error) error {
|
||||||
|
return E.Cause(err, "close")
|
||||||
|
})
|
||||||
}
|
}
|
||||||
if onClose != nil {
|
if onClose != nil {
|
||||||
onClose(err)
|
onClose(err)
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func SetSystemTime(nowTime time.Time) error {
|
func SetSystemTime(nowTime time.Time) error {
|
||||||
|
nowTime = nowTime.UTC()
|
||||||
var systemTime windows.Systemtime
|
var systemTime windows.Systemtime
|
||||||
systemTime.Year = uint16(nowTime.Year())
|
systemTime.Year = uint16(nowTime.Year())
|
||||||
systemTime.Month = uint16(nowTime.Month())
|
systemTime.Month = uint16(nowTime.Month())
|
||||||
|
|
|
@ -3,26 +3,41 @@ package udpnat
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"net/netip"
|
||||||
"os"
|
"os"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common/buf"
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
"github.com/sagernet/sing/common/canceler"
|
||||||
M "github.com/sagernet/sing/common/metadata"
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
N "github.com/sagernet/sing/common/network"
|
N "github.com/sagernet/sing/common/network"
|
||||||
"github.com/sagernet/sing/common/pipe"
|
"github.com/sagernet/sing/common/pipe"
|
||||||
|
"github.com/sagernet/sing/contrab/freelru"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Conn struct {
|
type Conn interface {
|
||||||
|
N.PacketConn
|
||||||
|
SetHandler(handler N.UDPHandlerEx)
|
||||||
|
canceler.PacketConn
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ Conn = (*natConn)(nil)
|
||||||
|
|
||||||
|
type natConn struct {
|
||||||
|
cache freelru.Cache[netip.AddrPort, *natConn]
|
||||||
writer N.PacketWriter
|
writer N.PacketWriter
|
||||||
localAddr M.Socksaddr
|
localAddr M.Socksaddr
|
||||||
|
handlerAccess sync.RWMutex
|
||||||
handler N.UDPHandlerEx
|
handler N.UDPHandlerEx
|
||||||
packetChan chan *N.PacketBuffer
|
packetChan chan *N.PacketBuffer
|
||||||
|
closeOnce sync.Once
|
||||||
doneChan chan struct{}
|
doneChan chan struct{}
|
||||||
readDeadline pipe.Deadline
|
readDeadline pipe.Deadline
|
||||||
readWaitOptions N.ReadWaitOptions
|
readWaitOptions N.ReadWaitOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) ReadPacket(buffer *buf.Buffer) (addr M.Socksaddr, err error) {
|
func (c *natConn) ReadPacket(buffer *buf.Buffer) (addr M.Socksaddr, err error) {
|
||||||
select {
|
select {
|
||||||
case p := <-c.packetChan:
|
case p := <-c.packetChan:
|
||||||
_, err = buffer.ReadOnceFrom(p.Buffer)
|
_, err = buffer.ReadOnceFrom(p.Buffer)
|
||||||
|
@ -37,31 +52,16 @@ func (c *Conn) ReadPacket(buffer *buf.Buffer) (addr M.Socksaddr, err error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
func (c *natConn) WritePacket(buffer *buf.Buffer, destination M.Socksaddr) error {
|
||||||
return c.writer.WritePacket(buffer, destination)
|
return c.writer.WritePacket(buffer, destination)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetHandler(handler N.UDPHandlerEx) {
|
func (c *natConn) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
||||||
c.handler = handler
|
|
||||||
fetch:
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case packet := <-c.packetChan:
|
|
||||||
c.handler.NewPacketEx(packet.Buffer, packet.Destination)
|
|
||||||
N.PutPacketBuffer(packet)
|
|
||||||
continue fetch
|
|
||||||
default:
|
|
||||||
break fetch
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Conn) InitializeReadWaiter(options N.ReadWaitOptions) (needCopy bool) {
|
|
||||||
c.readWaitOptions = options
|
c.readWaitOptions = options
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
func (c *natConn) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, err error) {
|
||||||
select {
|
select {
|
||||||
case packet := <-c.packetChan:
|
case packet := <-c.packetChan:
|
||||||
buffer = c.readWaitOptions.Copy(packet.Buffer)
|
buffer = c.readWaitOptions.Copy(packet.Buffer)
|
||||||
|
@ -75,36 +75,64 @@ func (c *Conn) WaitReadPacket() (buffer *buf.Buffer, destination M.Socksaddr, er
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) Close() error {
|
func (c *natConn) SetHandler(handler N.UDPHandlerEx) {
|
||||||
select {
|
c.handlerAccess.Lock()
|
||||||
case <-c.doneChan:
|
c.handler = handler
|
||||||
default:
|
c.readWaitOptions = N.NewReadWaitOptions(c.writer, handler)
|
||||||
close(c.doneChan)
|
c.handlerAccess.Unlock()
|
||||||
|
fetch:
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case packet := <-c.packetChan:
|
||||||
|
c.handler.NewPacketEx(packet.Buffer, packet.Destination)
|
||||||
|
N.PutPacketBuffer(packet)
|
||||||
|
continue fetch
|
||||||
|
default:
|
||||||
|
break fetch
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *natConn) Timeout() time.Duration {
|
||||||
|
rawConn, lifetime, loaded := c.cache.PeekWithLifetime(c.localAddr.AddrPort())
|
||||||
|
if !loaded || rawConn != c {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return time.Until(lifetime)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *natConn) SetTimeout(timeout time.Duration) bool {
|
||||||
|
return c.cache.UpdateLifetime(c.localAddr.AddrPort(), c, timeout)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *natConn) Close() error {
|
||||||
|
c.closeOnce.Do(func() {
|
||||||
|
close(c.doneChan)
|
||||||
|
})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) LocalAddr() net.Addr {
|
func (c *natConn) LocalAddr() net.Addr {
|
||||||
return c.localAddr
|
return c.localAddr
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) RemoteAddr() net.Addr {
|
func (c *natConn) RemoteAddr() net.Addr {
|
||||||
return M.Socksaddr{}
|
return M.Socksaddr{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetDeadline(t time.Time) error {
|
func (c *natConn) SetDeadline(t time.Time) error {
|
||||||
return os.ErrInvalid
|
return os.ErrInvalid
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetReadDeadline(t time.Time) error {
|
func (c *natConn) SetReadDeadline(t time.Time) error {
|
||||||
c.readDeadline.Set(t)
|
c.readDeadline.Set(t)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
func (c *natConn) SetWriteDeadline(t time.Time) error {
|
||||||
return os.ErrInvalid
|
return os.ErrInvalid
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Conn) Upstream() any {
|
func (c *natConn) Upstream() any {
|
||||||
return c.writer
|
return c.writer
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,31 +14,25 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
cache freelru.Cache[netip.AddrPort, *Conn]
|
cache freelru.Cache[netip.AddrPort, *natConn]
|
||||||
handler N.UDPConnectionHandlerEx
|
handler N.UDPConnectionHandlerEx
|
||||||
prepare PrepareFunc
|
prepare PrepareFunc
|
||||||
metrics Metrics
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type PrepareFunc func(source M.Socksaddr, destination M.Socksaddr, userData any) (bool, context.Context, N.PacketWriter, N.CloseHandlerFunc)
|
type PrepareFunc func(source M.Socksaddr, destination M.Socksaddr, userData any) (bool, context.Context, N.PacketWriter, N.CloseHandlerFunc)
|
||||||
|
|
||||||
type Metrics struct {
|
|
||||||
Creates uint64
|
|
||||||
Rejects uint64
|
|
||||||
Inputs uint64
|
|
||||||
Drops uint64
|
|
||||||
}
|
|
||||||
|
|
||||||
func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Duration, shared bool) *Service {
|
func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Duration, shared bool) *Service {
|
||||||
var cache freelru.Cache[netip.AddrPort, *Conn]
|
if timeout == 0 {
|
||||||
|
panic("invalid timeout")
|
||||||
|
}
|
||||||
|
var cache freelru.Cache[netip.AddrPort, *natConn]
|
||||||
if !shared {
|
if !shared {
|
||||||
cache = common.Must1(freelru.New[netip.AddrPort, *Conn](1024, maphash.NewHasher[netip.AddrPort]().Hash32))
|
cache = common.Must1(freelru.NewSynced[netip.AddrPort, *natConn](1024, maphash.NewHasher[netip.AddrPort]().Hash32))
|
||||||
} else {
|
} else {
|
||||||
cache = common.Must1(freelru.NewSharded[netip.AddrPort, *Conn](1024, maphash.NewHasher[netip.AddrPort]().Hash32))
|
cache = common.Must1(freelru.NewSharded[netip.AddrPort, *natConn](1024, maphash.NewHasher[netip.AddrPort]().Hash32))
|
||||||
}
|
}
|
||||||
cache.SetLifetime(timeout)
|
cache.SetLifetime(timeout)
|
||||||
cache.SetUpdateLifetimeOnGet(true)
|
cache.SetHealthCheck(func(port netip.AddrPort, conn *natConn) bool {
|
||||||
cache.SetHealthCheck(func(port netip.AddrPort, conn *Conn) bool {
|
|
||||||
select {
|
select {
|
||||||
case <-conn.doneChan:
|
case <-conn.doneChan:
|
||||||
return false
|
return false
|
||||||
|
@ -46,7 +40,7 @@ func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Dur
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
cache.SetOnEvict(func(_ netip.AddrPort, conn *Conn) {
|
cache.SetOnEvict(func(_ netip.AddrPort, conn *natConn) {
|
||||||
conn.Close()
|
conn.Close()
|
||||||
})
|
})
|
||||||
return &Service{
|
return &Service{
|
||||||
|
@ -57,30 +51,34 @@ func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Dur
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Service) NewPacket(bufferSlices [][]byte, source M.Socksaddr, destination M.Socksaddr, userData any) {
|
func (s *Service) NewPacket(bufferSlices [][]byte, source M.Socksaddr, destination M.Socksaddr, userData any) {
|
||||||
conn, loaded := s.cache.Get(source.AddrPort())
|
conn, _, ok := s.cache.GetAndRefreshOrAdd(source.AddrPort(), func() (*natConn, bool) {
|
||||||
if !loaded {
|
|
||||||
ok, ctx, writer, onClose := s.prepare(source, destination, userData)
|
ok, ctx, writer, onClose := s.prepare(source, destination, userData)
|
||||||
if !ok {
|
if !ok {
|
||||||
s.metrics.Rejects++
|
return nil, false
|
||||||
return
|
|
||||||
}
|
}
|
||||||
conn = &Conn{
|
newConn := &natConn{
|
||||||
|
cache: s.cache,
|
||||||
writer: writer,
|
writer: writer,
|
||||||
localAddr: source,
|
localAddr: source,
|
||||||
packetChan: make(chan *N.PacketBuffer, 64),
|
packetChan: make(chan *N.PacketBuffer, 64),
|
||||||
doneChan: make(chan struct{}),
|
doneChan: make(chan struct{}),
|
||||||
readDeadline: pipe.MakeDeadline(),
|
readDeadline: pipe.MakeDeadline(),
|
||||||
}
|
}
|
||||||
s.cache.Add(source.AddrPort(), conn)
|
go s.handler.NewPacketConnectionEx(ctx, newConn, source, destination, onClose)
|
||||||
go s.handler.NewPacketConnectionEx(ctx, conn, source, destination, onClose)
|
return newConn, true
|
||||||
s.metrics.Creates++
|
})
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
buffer := conn.readWaitOptions.NewPacketBuffer()
|
buffer := conn.readWaitOptions.NewPacketBuffer()
|
||||||
for _, bufferSlice := range bufferSlices {
|
for _, bufferSlice := range bufferSlices {
|
||||||
buffer.Write(bufferSlice)
|
buffer.Write(bufferSlice)
|
||||||
}
|
}
|
||||||
if conn.handler != nil {
|
conn.handlerAccess.RLock()
|
||||||
conn.handler.NewPacketEx(buffer, destination)
|
handler := conn.handler
|
||||||
|
conn.handlerAccess.RUnlock()
|
||||||
|
if handler != nil {
|
||||||
|
handler.NewPacketEx(buffer, destination)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
packet := N.NewPacketBuffer()
|
packet := N.NewPacketBuffer()
|
||||||
|
@ -90,14 +88,16 @@ func (s *Service) NewPacket(bufferSlices [][]byte, source M.Socksaddr, destinati
|
||||||
}
|
}
|
||||||
select {
|
select {
|
||||||
case conn.packetChan <- packet:
|
case conn.packetChan <- packet:
|
||||||
s.metrics.Inputs++
|
|
||||||
default:
|
default:
|
||||||
packet.Buffer.Release()
|
packet.Buffer.Release()
|
||||||
N.PutPacketBuffer(packet)
|
N.PutPacketBuffer(packet)
|
||||||
s.metrics.Drops++
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Service) Metrics() Metrics {
|
func (s *Service) Purge() {
|
||||||
return s.metrics
|
s.cache.Purge()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) PurgeExpired() {
|
||||||
|
s.cache.PurgeExpired()
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,14 @@
|
||||||
|
//go:build windows
|
||||||
|
|
||||||
package windnsapi
|
package windnsapi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"runtime"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDNSAPI(t *testing.T) {
|
func TestDNSAPI(t *testing.T) {
|
||||||
if runtime.GOOS != "windows" {
|
|
||||||
t.SkipNow()
|
|
||||||
}
|
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
require.NoError(t, FlushResolverCache())
|
require.NoError(t, FlushResolverCache())
|
||||||
}
|
}
|
||||||
|
|
217
common/winiphlpapi/helper.go
Normal file
217
common/winiphlpapi/helper.go
Normal file
|
@ -0,0 +1,217 @@
|
||||||
|
//go:build windows
|
||||||
|
|
||||||
|
package winiphlpapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/binary"
|
||||||
|
"net"
|
||||||
|
"net/netip"
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
)
|
||||||
|
|
||||||
|
func LoadEStats() error {
|
||||||
|
err := modiphlpapi.Load()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetTcpTable.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetTcp6Table.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetPerTcp6ConnectionEStats.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetPerTcp6ConnectionEStats.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procSetPerTcpConnectionEStats.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procSetPerTcp6ConnectionEStats.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func LoadExtendedTable() error {
|
||||||
|
err := modiphlpapi.Load()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetExtendedTcpTable.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = procGetExtendedUdpTable.Find()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func FindPid(network string, source netip.AddrPort) (uint32, error) {
|
||||||
|
switch N.NetworkName(network) {
|
||||||
|
case N.NetworkTCP:
|
||||||
|
if source.Addr().Is4() {
|
||||||
|
tcpTable, err := GetExtendedTcpTable()
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
for _, row := range tcpTable {
|
||||||
|
if source == netip.AddrPortFrom(DwordToAddr(row.DwLocalAddr), DwordToPort(row.DwLocalPort)) {
|
||||||
|
return row.DwOwningPid, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
tcpTable, err := GetExtendedTcp6Table()
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
for _, row := range tcpTable {
|
||||||
|
if source == netip.AddrPortFrom(netip.AddrFrom16(row.UcLocalAddr), DwordToPort(row.DwLocalPort)) {
|
||||||
|
return row.DwOwningPid, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case N.NetworkUDP:
|
||||||
|
if source.Addr().Is4() {
|
||||||
|
udpTable, err := GetExtendedUdpTable()
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
for _, row := range udpTable {
|
||||||
|
if source == netip.AddrPortFrom(DwordToAddr(row.DwLocalAddr), DwordToPort(row.DwLocalPort)) {
|
||||||
|
return row.DwOwningPid, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
udpTable, err := GetExtendedUdp6Table()
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
for _, row := range udpTable {
|
||||||
|
if source == netip.AddrPortFrom(netip.AddrFrom16(row.UcLocalAddr), DwordToPort(row.DwLocalPort)) {
|
||||||
|
return row.DwOwningPid, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, E.New("process not found for ", source)
|
||||||
|
}
|
||||||
|
|
||||||
|
func WriteAndWaitAck(ctx context.Context, conn net.Conn, payload []byte) error {
|
||||||
|
source := M.AddrPortFromNet(conn.LocalAddr())
|
||||||
|
destination := M.AddrPortFromNet(conn.RemoteAddr())
|
||||||
|
if source.Addr().Is4() {
|
||||||
|
tcpTable, err := GetTcpTable()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var tcpRow *MibTcpRow
|
||||||
|
for _, row := range tcpTable {
|
||||||
|
if source == netip.AddrPortFrom(DwordToAddr(row.DwLocalAddr), DwordToPort(row.DwLocalPort)) ||
|
||||||
|
destination == netip.AddrPortFrom(DwordToAddr(row.DwRemoteAddr), DwordToPort(row.DwRemotePort)) {
|
||||||
|
tcpRow = &row
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if tcpRow == nil {
|
||||||
|
return E.New("row not found for: ", source)
|
||||||
|
}
|
||||||
|
err = SetPerTcpConnectionEStatsSendBuffer(tcpRow, &TcpEstatsSendBuffRwV0{
|
||||||
|
EnableCollection: true,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return os.NewSyscallError("SetPerTcpConnectionEStatsSendBufferV0", err)
|
||||||
|
}
|
||||||
|
defer SetPerTcpConnectionEStatsSendBuffer(tcpRow, &TcpEstatsSendBuffRwV0{
|
||||||
|
EnableCollection: false,
|
||||||
|
})
|
||||||
|
_, err = conn.Write(payload)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return ctx.Err()
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
eStstsSendBuffer, err := GetPerTcpConnectionEStatsSendBuffer(tcpRow)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if eStstsSendBuffer.CurRetxQueue == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
time.Sleep(10 * time.Millisecond)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
tcpTable, err := GetTcp6Table()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var tcpRow *MibTcp6Row
|
||||||
|
for _, row := range tcpTable {
|
||||||
|
if source == netip.AddrPortFrom(netip.AddrFrom16(row.LocalAddr), DwordToPort(row.LocalPort)) ||
|
||||||
|
destination == netip.AddrPortFrom(netip.AddrFrom16(row.RemoteAddr), DwordToPort(row.RemotePort)) {
|
||||||
|
tcpRow = &row
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if tcpRow == nil {
|
||||||
|
return E.New("row not found for: ", source)
|
||||||
|
}
|
||||||
|
err = SetPerTcp6ConnectionEStatsSendBuffer(tcpRow, &TcpEstatsSendBuffRwV0{
|
||||||
|
EnableCollection: true,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return os.NewSyscallError("SetPerTcpConnectionEStatsSendBufferV0", err)
|
||||||
|
}
|
||||||
|
defer SetPerTcp6ConnectionEStatsSendBuffer(tcpRow, &TcpEstatsSendBuffRwV0{
|
||||||
|
EnableCollection: false,
|
||||||
|
})
|
||||||
|
_, err = conn.Write(payload)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return ctx.Err()
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
eStstsSendBuffer, err := GetPerTcp6ConnectionEStatsSendBuffer(tcpRow)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if eStstsSendBuffer.CurRetxQueue == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
time.Sleep(10 * time.Millisecond)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func DwordToAddr(addr uint32) netip.Addr {
|
||||||
|
return netip.AddrFrom4(*(*[4]byte)(unsafe.Pointer(&addr)))
|
||||||
|
}
|
||||||
|
|
||||||
|
func DwordToPort(dword uint32) uint16 {
|
||||||
|
return binary.BigEndian.Uint16((*[4]byte)(unsafe.Pointer(&dword))[:])
|
||||||
|
}
|
313
common/winiphlpapi/iphlpapi.go
Normal file
313
common/winiphlpapi/iphlpapi.go
Normal file
|
@ -0,0 +1,313 @@
|
||||||
|
//go:build windows
|
||||||
|
|
||||||
|
package winiphlpapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"os"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
"golang.org/x/sys/windows"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
TcpTableBasicListener uint32 = iota
|
||||||
|
TcpTableBasicConnections
|
||||||
|
TcpTableBasicAll
|
||||||
|
TcpTableOwnerPidListener
|
||||||
|
TcpTableOwnerPidConnections
|
||||||
|
TcpTableOwnerPidAll
|
||||||
|
TcpTableOwnerModuleListener
|
||||||
|
TcpTableOwnerModuleConnections
|
||||||
|
TcpTableOwnerModuleAll
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
UdpTableBasic uint32 = iota
|
||||||
|
UdpTableOwnerPid
|
||||||
|
UdpTableOwnerModule
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
TcpConnectionEstatsSynOpts uint32 = iota
|
||||||
|
TcpConnectionEstatsData
|
||||||
|
TcpConnectionEstatsSndCong
|
||||||
|
TcpConnectionEstatsPath
|
||||||
|
TcpConnectionEstatsSendBuff
|
||||||
|
TcpConnectionEstatsRec
|
||||||
|
TcpConnectionEstatsObsRec
|
||||||
|
TcpConnectionEstatsBandwidth
|
||||||
|
TcpConnectionEstatsFineRtt
|
||||||
|
TcpConnectionEstatsMaximum
|
||||||
|
)
|
||||||
|
|
||||||
|
type MibTcpTable struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibTcpRow
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcpRow struct {
|
||||||
|
DwState uint32
|
||||||
|
DwLocalAddr uint32
|
||||||
|
DwLocalPort uint32
|
||||||
|
DwRemoteAddr uint32
|
||||||
|
DwRemotePort uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcp6Table struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibTcp6Row
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcp6Row struct {
|
||||||
|
State uint32
|
||||||
|
LocalAddr [16]byte
|
||||||
|
LocalScopeId uint32
|
||||||
|
LocalPort uint32
|
||||||
|
RemoteAddr [16]byte
|
||||||
|
RemoteScopeId uint32
|
||||||
|
RemotePort uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcpTableOwnerPid struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibTcpRowOwnerPid
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcpRowOwnerPid struct {
|
||||||
|
DwState uint32
|
||||||
|
DwLocalAddr uint32
|
||||||
|
DwLocalPort uint32
|
||||||
|
DwRemoteAddr uint32
|
||||||
|
DwRemotePort uint32
|
||||||
|
DwOwningPid uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcp6TableOwnerPid struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibTcp6RowOwnerPid
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibTcp6RowOwnerPid struct {
|
||||||
|
UcLocalAddr [16]byte
|
||||||
|
DwLocalScopeId uint32
|
||||||
|
DwLocalPort uint32
|
||||||
|
UcRemoteAddr [16]byte
|
||||||
|
DwRemoteScopeId uint32
|
||||||
|
DwRemotePort uint32
|
||||||
|
DwState uint32
|
||||||
|
DwOwningPid uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibUdpTableOwnerPid struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibUdpRowOwnerPid
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibUdpRowOwnerPid struct {
|
||||||
|
DwLocalAddr uint32
|
||||||
|
DwLocalPort uint32
|
||||||
|
DwOwningPid uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibUdp6TableOwnerPid struct {
|
||||||
|
DwNumEntries uint32
|
||||||
|
Table [1]MibUdp6RowOwnerPid
|
||||||
|
}
|
||||||
|
|
||||||
|
type MibUdp6RowOwnerPid struct {
|
||||||
|
UcLocalAddr [16]byte
|
||||||
|
DwLocalScopeId uint32
|
||||||
|
DwLocalPort uint32
|
||||||
|
DwOwningPid uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type TcpEstatsSendBufferRodV0 struct {
|
||||||
|
CurRetxQueue uint64
|
||||||
|
MaxRetxQueue uint64
|
||||||
|
CurAppWQueue uint64
|
||||||
|
MaxAppWQueue uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
type TcpEstatsSendBuffRwV0 struct {
|
||||||
|
EnableCollection bool
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
offsetOfMibTcpTable = unsafe.Offsetof(MibTcpTable{}.Table)
|
||||||
|
offsetOfMibTcp6Table = unsafe.Offsetof(MibTcp6Table{}.Table)
|
||||||
|
offsetOfMibTcpTableOwnerPid = unsafe.Offsetof(MibTcpTableOwnerPid{}.Table)
|
||||||
|
offsetOfMibTcp6TableOwnerPid = unsafe.Offsetof(MibTcpTableOwnerPid{}.Table)
|
||||||
|
offsetOfMibUdpTableOwnerPid = unsafe.Offsetof(MibUdpTableOwnerPid{}.Table)
|
||||||
|
offsetOfMibUdp6TableOwnerPid = unsafe.Offsetof(MibUdp6TableOwnerPid{}.Table)
|
||||||
|
sizeOfTcpEstatsSendBuffRwV0 = unsafe.Sizeof(TcpEstatsSendBuffRwV0{})
|
||||||
|
sizeOfTcpEstatsSendBufferRodV0 = unsafe.Sizeof(TcpEstatsSendBufferRodV0{})
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetTcpTable() ([]MibTcpRow, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getTcpTable(nil, &size, false)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getTcpTable(&table[0], &size, false)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibTcpRow)(unsafe.Pointer(&table[offsetOfMibTcpTable])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetTcp6Table() ([]MibTcp6Row, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getTcp6Table(nil, &size, false)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getTcp6Table(&table[0], &size, false)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibTcp6Row)(unsafe.Pointer(&table[offsetOfMibTcp6Table])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetExtendedTcpTable() ([]MibTcpRowOwnerPid, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getExtendedTcpTable(nil, &size, false, windows.AF_INET, TcpTableOwnerPidConnections, 0)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, os.NewSyscallError("GetExtendedTcpTable", err)
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getExtendedTcpTable(&table[0], &size, false, windows.AF_INET, TcpTableOwnerPidConnections, 0)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, os.NewSyscallError("GetExtendedTcpTable", err)
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibTcpRowOwnerPid)(unsafe.Pointer(&table[offsetOfMibTcpTableOwnerPid])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetExtendedTcp6Table() ([]MibTcp6RowOwnerPid, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getExtendedTcpTable(nil, &size, false, windows.AF_INET6, TcpTableOwnerPidConnections, 0)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, os.NewSyscallError("GetExtendedTcpTable", err)
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getExtendedTcpTable(&table[0], &size, false, windows.AF_INET6, TcpTableOwnerPidConnections, 0)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, os.NewSyscallError("GetExtendedTcpTable", err)
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibTcp6RowOwnerPid)(unsafe.Pointer(&table[offsetOfMibTcp6TableOwnerPid])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetExtendedUdpTable() ([]MibUdpRowOwnerPid, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getExtendedUdpTable(nil, &size, false, windows.AF_INET, UdpTableOwnerPid, 0)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, os.NewSyscallError("GetExtendedUdpTable", err)
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getExtendedUdpTable(&table[0], &size, false, windows.AF_INET, UdpTableOwnerPid, 0)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, os.NewSyscallError("GetExtendedUdpTable", err)
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibUdpRowOwnerPid)(unsafe.Pointer(&table[offsetOfMibUdpTableOwnerPid])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetExtendedUdp6Table() ([]MibUdp6RowOwnerPid, error) {
|
||||||
|
var size uint32
|
||||||
|
err := getExtendedUdpTable(nil, &size, false, windows.AF_INET6, UdpTableOwnerPid, 0)
|
||||||
|
if !errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
return nil, os.NewSyscallError("GetExtendedUdpTable", err)
|
||||||
|
}
|
||||||
|
for {
|
||||||
|
table := make([]byte, size)
|
||||||
|
err = getExtendedUdpTable(&table[0], &size, false, windows.AF_INET6, UdpTableOwnerPid, 0)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, windows.ERROR_INSUFFICIENT_BUFFER) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, os.NewSyscallError("GetExtendedUdpTable", err)
|
||||||
|
}
|
||||||
|
dwNumEntries := int(*(*uint32)(unsafe.Pointer(&table[0])))
|
||||||
|
return unsafe.Slice((*MibUdp6RowOwnerPid)(unsafe.Pointer(&table[offsetOfMibUdp6TableOwnerPid])), dwNumEntries), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetPerTcpConnectionEStatsSendBuffer(row *MibTcpRow) (*TcpEstatsSendBufferRodV0, error) {
|
||||||
|
var rod TcpEstatsSendBufferRodV0
|
||||||
|
err := getPerTcpConnectionEStats(row,
|
||||||
|
TcpConnectionEstatsSendBuff,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
uintptr(unsafe.Pointer(&rod)),
|
||||||
|
0,
|
||||||
|
uint64(sizeOfTcpEstatsSendBufferRodV0),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &rod, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetPerTcp6ConnectionEStatsSendBuffer(row *MibTcp6Row) (*TcpEstatsSendBufferRodV0, error) {
|
||||||
|
var rod TcpEstatsSendBufferRodV0
|
||||||
|
err := getPerTcp6ConnectionEStats(row,
|
||||||
|
TcpConnectionEstatsSendBuff,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
uintptr(unsafe.Pointer(&rod)),
|
||||||
|
0,
|
||||||
|
uint64(sizeOfTcpEstatsSendBufferRodV0),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &rod, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func SetPerTcpConnectionEStatsSendBuffer(row *MibTcpRow, rw *TcpEstatsSendBuffRwV0) error {
|
||||||
|
return setPerTcpConnectionEStats(row, TcpConnectionEstatsSendBuff, uintptr(unsafe.Pointer(&rw)), 0, uint64(sizeOfTcpEstatsSendBuffRwV0), 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func SetPerTcp6ConnectionEStatsSendBuffer(row *MibTcp6Row, rw *TcpEstatsSendBuffRwV0) error {
|
||||||
|
return setPerTcp6ConnectionEStats(row, TcpConnectionEstatsSendBuff, uintptr(unsafe.Pointer(&rw)), 0, uint64(sizeOfTcpEstatsSendBuffRwV0), 0)
|
||||||
|
}
|
90
common/winiphlpapi/iphlpapi_test.go
Normal file
90
common/winiphlpapi/iphlpapi_test.go
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
//go:build windows
|
||||||
|
|
||||||
|
package winiphlpapi_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net"
|
||||||
|
"syscall"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
"github.com/sagernet/sing/common/winiphlpapi"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestFindPidTcp4(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
listener, err := net.Listen("tcp", "127.0.0.1:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer listener.Close()
|
||||||
|
go listener.Accept()
|
||||||
|
conn, err := net.Dial("tcp", listener.Addr().String())
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
pid, err := winiphlpapi.FindPid(N.NetworkTCP, M.AddrPortFromNet(conn.LocalAddr()))
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, uint32(syscall.Getpid()), pid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFindPidTcp6(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
listener, err := net.Listen("tcp", "[::1]:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer listener.Close()
|
||||||
|
go listener.Accept()
|
||||||
|
conn, err := net.Dial("tcp", listener.Addr().String())
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
pid, err := winiphlpapi.FindPid(N.NetworkTCP, M.AddrPortFromNet(conn.LocalAddr()))
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, uint32(syscall.Getpid()), pid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFindPidUdp4(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
conn, err := net.ListenPacket("udp", "127.0.0.1:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
pid, err := winiphlpapi.FindPid(N.NetworkUDP, M.AddrPortFromNet(conn.LocalAddr()))
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, uint32(syscall.Getpid()), pid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFindPidUdp6(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
conn, err := net.ListenPacket("udp", "[::1]:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
pid, err := winiphlpapi.FindPid(N.NetworkUDP, M.AddrPortFromNet(conn.LocalAddr()))
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, uint32(syscall.Getpid()), pid)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWaitAck4(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
listener, err := net.Listen("tcp", "127.0.0.1:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer listener.Close()
|
||||||
|
go listener.Accept()
|
||||||
|
conn, err := net.Dial("tcp", listener.Addr().String())
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
err = winiphlpapi.WriteAndWaitAck(context.Background(), conn, []byte("hello"))
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWaitAck6(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
listener, err := net.Listen("tcp", "[::1]:0")
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer listener.Close()
|
||||||
|
go listener.Accept()
|
||||||
|
conn, err := net.Dial("tcp", listener.Addr().String())
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer conn.Close()
|
||||||
|
err = winiphlpapi.WriteAndWaitAck(context.Background(), conn, []byte("hello"))
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
27
common/winiphlpapi/syscall_windows.go
Normal file
27
common/winiphlpapi/syscall_windows.go
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
package winiphlpapi
|
||||||
|
|
||||||
|
//go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go syscall_windows.go
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-gettcptable
|
||||||
|
//sys getTcpTable(tcpTable *byte, sizePointer *uint32, order bool) (errcode error) = iphlpapi.GetTcpTable
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-gettcp6table
|
||||||
|
//sys getTcp6Table(tcpTable *byte, sizePointer *uint32, order bool) (errcode error) = iphlpapi.GetTcp6Table
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getpertcpconnectionestats
|
||||||
|
//sys getPerTcpConnectionEStats(row *MibTcpRow, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, ros uintptr, rosVersion uint64, rosSize uint64, rod uintptr, rodVersion uint64, rodSize uint64) (errcode error) = iphlpapi.GetPerTcpConnectionEStats
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getpertcp6connectionestats
|
||||||
|
//sys getPerTcp6ConnectionEStats(row *MibTcp6Row, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, ros uintptr, rosVersion uint64, rosSize uint64, rod uintptr, rodVersion uint64, rodSize uint64) (errcode error) = iphlpapi.GetPerTcp6ConnectionEStats
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-setpertcpconnectionestats
|
||||||
|
//sys setPerTcpConnectionEStats(row *MibTcpRow, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, offset uint64) (errcode error) = iphlpapi.SetPerTcpConnectionEStats
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-setpertcp6connectionestats
|
||||||
|
//sys setPerTcp6ConnectionEStats(row *MibTcp6Row, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, offset uint64) (errcode error) = iphlpapi.SetPerTcp6ConnectionEStats
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getextendedtcptable
|
||||||
|
//sys getExtendedTcpTable(pTcpTable *byte, pdwSize *uint32, bOrder bool, ulAf uint64, tableClass uint32, reserved uint64) = (errcode error) = iphlpapi.GetExtendedTcpTable
|
||||||
|
|
||||||
|
// https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getextendedudptable
|
||||||
|
//sys getExtendedUdpTable(pUdpTable *byte, pdwSize *uint32, bOrder bool, ulAf uint64, tableClass uint32, reserved uint64) = (errcode error) = iphlpapi.GetExtendedUdpTable
|
131
common/winiphlpapi/zsyscall_windows.go
Normal file
131
common/winiphlpapi/zsyscall_windows.go
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
// Code generated by 'go generate'; DO NOT EDIT.
|
||||||
|
|
||||||
|
package winiphlpapi
|
||||||
|
|
||||||
|
import (
|
||||||
|
"syscall"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
"golang.org/x/sys/windows"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ unsafe.Pointer
|
||||||
|
|
||||||
|
// Do the interface allocations only once for common
|
||||||
|
// Errno values.
|
||||||
|
const (
|
||||||
|
errnoERROR_IO_PENDING = 997
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
|
||||||
|
errERROR_EINVAL error = syscall.EINVAL
|
||||||
|
)
|
||||||
|
|
||||||
|
// errnoErr returns common boxed Errno values, to prevent
|
||||||
|
// allocations at runtime.
|
||||||
|
func errnoErr(e syscall.Errno) error {
|
||||||
|
switch e {
|
||||||
|
case 0:
|
||||||
|
return errERROR_EINVAL
|
||||||
|
case errnoERROR_IO_PENDING:
|
||||||
|
return errERROR_IO_PENDING
|
||||||
|
}
|
||||||
|
// TODO: add more here, after collecting data on the common
|
||||||
|
// error values see on Windows. (perhaps when running
|
||||||
|
// all.bat?)
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
modiphlpapi = windows.NewLazySystemDLL("iphlpapi.dll")
|
||||||
|
|
||||||
|
procGetExtendedTcpTable = modiphlpapi.NewProc("GetExtendedTcpTable")
|
||||||
|
procGetExtendedUdpTable = modiphlpapi.NewProc("GetExtendedUdpTable")
|
||||||
|
procGetPerTcp6ConnectionEStats = modiphlpapi.NewProc("GetPerTcp6ConnectionEStats")
|
||||||
|
procGetPerTcpConnectionEStats = modiphlpapi.NewProc("GetPerTcpConnectionEStats")
|
||||||
|
procGetTcp6Table = modiphlpapi.NewProc("GetTcp6Table")
|
||||||
|
procGetTcpTable = modiphlpapi.NewProc("GetTcpTable")
|
||||||
|
procSetPerTcp6ConnectionEStats = modiphlpapi.NewProc("SetPerTcp6ConnectionEStats")
|
||||||
|
procSetPerTcpConnectionEStats = modiphlpapi.NewProc("SetPerTcpConnectionEStats")
|
||||||
|
)
|
||||||
|
|
||||||
|
func getExtendedTcpTable(pTcpTable *byte, pdwSize *uint32, bOrder bool, ulAf uint64, tableClass uint32, reserved uint64) (errcode error) {
|
||||||
|
var _p0 uint32
|
||||||
|
if bOrder {
|
||||||
|
_p0 = 1
|
||||||
|
}
|
||||||
|
r0, _, _ := syscall.Syscall6(procGetExtendedTcpTable.Addr(), 6, uintptr(unsafe.Pointer(pTcpTable)), uintptr(unsafe.Pointer(pdwSize)), uintptr(_p0), uintptr(ulAf), uintptr(tableClass), uintptr(reserved))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getExtendedUdpTable(pUdpTable *byte, pdwSize *uint32, bOrder bool, ulAf uint64, tableClass uint32, reserved uint64) (errcode error) {
|
||||||
|
var _p0 uint32
|
||||||
|
if bOrder {
|
||||||
|
_p0 = 1
|
||||||
|
}
|
||||||
|
r0, _, _ := syscall.Syscall6(procGetExtendedUdpTable.Addr(), 6, uintptr(unsafe.Pointer(pUdpTable)), uintptr(unsafe.Pointer(pdwSize)), uintptr(_p0), uintptr(ulAf), uintptr(tableClass), uintptr(reserved))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getPerTcp6ConnectionEStats(row *MibTcp6Row, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, ros uintptr, rosVersion uint64, rosSize uint64, rod uintptr, rodVersion uint64, rodSize uint64) (errcode error) {
|
||||||
|
r0, _, _ := syscall.Syscall12(procGetPerTcp6ConnectionEStats.Addr(), 11, uintptr(unsafe.Pointer(row)), uintptr(estatsType), uintptr(rw), uintptr(rwVersion), uintptr(rwSize), uintptr(ros), uintptr(rosVersion), uintptr(rosSize), uintptr(rod), uintptr(rodVersion), uintptr(rodSize), 0)
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getPerTcpConnectionEStats(row *MibTcpRow, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, ros uintptr, rosVersion uint64, rosSize uint64, rod uintptr, rodVersion uint64, rodSize uint64) (errcode error) {
|
||||||
|
r0, _, _ := syscall.Syscall12(procGetPerTcpConnectionEStats.Addr(), 11, uintptr(unsafe.Pointer(row)), uintptr(estatsType), uintptr(rw), uintptr(rwVersion), uintptr(rwSize), uintptr(ros), uintptr(rosVersion), uintptr(rosSize), uintptr(rod), uintptr(rodVersion), uintptr(rodSize), 0)
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getTcp6Table(tcpTable *byte, sizePointer *uint32, order bool) (errcode error) {
|
||||||
|
var _p0 uint32
|
||||||
|
if order {
|
||||||
|
_p0 = 1
|
||||||
|
}
|
||||||
|
r0, _, _ := syscall.Syscall(procGetTcp6Table.Addr(), 3, uintptr(unsafe.Pointer(tcpTable)), uintptr(unsafe.Pointer(sizePointer)), uintptr(_p0))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func getTcpTable(tcpTable *byte, sizePointer *uint32, order bool) (errcode error) {
|
||||||
|
var _p0 uint32
|
||||||
|
if order {
|
||||||
|
_p0 = 1
|
||||||
|
}
|
||||||
|
r0, _, _ := syscall.Syscall(procGetTcpTable.Addr(), 3, uintptr(unsafe.Pointer(tcpTable)), uintptr(unsafe.Pointer(sizePointer)), uintptr(_p0))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func setPerTcp6ConnectionEStats(row *MibTcp6Row, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, offset uint64) (errcode error) {
|
||||||
|
r0, _, _ := syscall.Syscall6(procSetPerTcp6ConnectionEStats.Addr(), 6, uintptr(unsafe.Pointer(row)), uintptr(estatsType), uintptr(rw), uintptr(rwVersion), uintptr(rwSize), uintptr(offset))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func setPerTcpConnectionEStats(row *MibTcpRow, estatsType uint32, rw uintptr, rwVersion uint64, rwSize uint64, offset uint64) (errcode error) {
|
||||||
|
r0, _, _ := syscall.Syscall6(procSetPerTcpConnectionEStats.Addr(), 6, uintptr(unsafe.Pointer(row)), uintptr(estatsType), uintptr(rw), uintptr(rwVersion), uintptr(rwSize), uintptr(offset))
|
||||||
|
if r0 != 0 {
|
||||||
|
errcode = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
201
contrab/freelru/LICENSE
Normal file
201
contrab/freelru/LICENSE
Normal file
|
@ -0,0 +1,201 @@
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
2
contrab/freelru/NOTICE
Normal file
2
contrab/freelru/NOTICE
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Go LRU Hashmap
|
||||||
|
Copyright 2022 Elasticsearch B.V.
|
|
@ -1,3 +1,4 @@
|
||||||
# freelru
|
# freelru
|
||||||
|
|
||||||
kanged from github.com/elastic/go-freelru@v0.14.0
|
upstream: github.com/elastic/go-freelru@v0.16.0
|
||||||
|
source: github.com/sagernet/go-freelru@1b34934a560d528d1866415d440625ed2a2560fe
|
||||||
|
|
|
@ -19,19 +19,17 @@ package freelru
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
type Cache[K comparable, V any] interface {
|
type Cache[K comparable, V comparable] interface {
|
||||||
// SetLifetime sets the default lifetime of LRU elements.
|
// SetLifetime sets the default lifetime of LRU elements.
|
||||||
// Lifetime 0 means "forever".
|
// Lifetime 0 means "forever".
|
||||||
SetLifetime(lifetime time.Duration)
|
SetLifetime(lifetime time.Duration)
|
||||||
|
|
||||||
SetUpdateLifetimeOnGet(update bool)
|
|
||||||
|
|
||||||
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
|
|
||||||
|
|
||||||
// SetOnEvict sets the OnEvict callback function.
|
// SetOnEvict sets the OnEvict callback function.
|
||||||
// The onEvict function is called for each evicted lru entry.
|
// The onEvict function is called for each evicted lru entry.
|
||||||
SetOnEvict(onEvict OnEvictCallback[K, V])
|
SetOnEvict(onEvict OnEvictCallback[K, V])
|
||||||
|
|
||||||
|
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
|
||||||
|
|
||||||
// Len returns the number of elements stored in the cache.
|
// Len returns the number of elements stored in the cache.
|
||||||
Len() int
|
Len() int
|
||||||
|
|
||||||
|
@ -49,12 +47,25 @@ type Cache[K comparable, V any] interface {
|
||||||
// and the return value indicates that the key was not found.
|
// and the return value indicates that the key was not found.
|
||||||
Get(key K) (V, bool)
|
Get(key K) (V, bool)
|
||||||
|
|
||||||
GetWithLifetime(key K) (value V, lifetime time.Time, ok bool)
|
GetWithLifetime(key K) (V, time.Time, bool)
|
||||||
|
|
||||||
|
GetWithLifetimeNoExpire(key K) (V, time.Time, bool)
|
||||||
|
|
||||||
|
// GetAndRefresh returns the value associated with the key, setting it as the most
|
||||||
|
// recently used item.
|
||||||
|
// The lifetime of the found cache item is refreshed, even if it was already expired.
|
||||||
|
GetAndRefresh(key K) (V, bool)
|
||||||
|
|
||||||
|
GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (V, bool, bool)
|
||||||
|
|
||||||
// Peek looks up a key's value from the cache, without changing its recent-ness.
|
// Peek looks up a key's value from the cache, without changing its recent-ness.
|
||||||
// If the found entry is already expired, the evict function is called.
|
// If the found entry is already expired, the evict function is called.
|
||||||
Peek(key K) (V, bool)
|
Peek(key K) (V, bool)
|
||||||
|
|
||||||
|
PeekWithLifetime(key K) (V, time.Time, bool)
|
||||||
|
|
||||||
|
UpdateLifetime(key K, value V, lifetime time.Duration) bool
|
||||||
|
|
||||||
// Contains checks for the existence of a key, without changing its recent-ness.
|
// Contains checks for the existence of a key, without changing its recent-ness.
|
||||||
// If the found entry is already expired, the evict function is called.
|
// If the found entry is already expired, the evict function is called.
|
||||||
Contains(key K) bool
|
Contains(key K) bool
|
||||||
|
|
|
@ -26,14 +26,14 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// OnEvictCallback is the type for the eviction function.
|
// OnEvictCallback is the type for the eviction function.
|
||||||
type OnEvictCallback[K comparable, V any] func(K, V)
|
type OnEvictCallback[K comparable, V comparable] func(K, V)
|
||||||
|
|
||||||
// HashKeyCallback is the function that creates a hash from the passed key.
|
// HashKeyCallback is the function that creates a hash from the passed key.
|
||||||
type HashKeyCallback[K comparable] func(K) uint32
|
type HashKeyCallback[K comparable] func(K) uint32
|
||||||
|
|
||||||
type HealthCheckCallback[K comparable, V any] func(K, V) bool
|
type HealthCheckCallback[K comparable, V comparable] func(K, V) bool
|
||||||
|
|
||||||
type element[K comparable, V any] struct {
|
type element[K comparable, V comparable] struct {
|
||||||
key K
|
key K
|
||||||
value V
|
value V
|
||||||
|
|
||||||
|
@ -62,15 +62,14 @@ type element[K comparable, V any] struct {
|
||||||
const emptyBucket = math.MaxUint32
|
const emptyBucket = math.MaxUint32
|
||||||
|
|
||||||
// LRU implements a non-thread safe fixed size LRU cache.
|
// LRU implements a non-thread safe fixed size LRU cache.
|
||||||
type LRU[K comparable, V any] struct {
|
type LRU[K comparable, V comparable] struct {
|
||||||
buckets []uint32 // contains positions of bucket lists or 'emptyBucket'
|
buckets []uint32 // contains positions of bucket lists or 'emptyBucket'
|
||||||
elements []element[K, V]
|
elements []element[K, V]
|
||||||
onEvict OnEvictCallback[K, V]
|
onEvict OnEvictCallback[K, V]
|
||||||
hash HashKeyCallback[K]
|
hash HashKeyCallback[K]
|
||||||
healthCheck HealthCheckCallback[K, V]
|
healthCheck HealthCheckCallback[K, V]
|
||||||
lifetime time.Duration
|
lifetime time.Duration
|
||||||
updateLifetimeOnGet bool
|
metrics Metrics
|
||||||
metrics Metrics
|
|
||||||
|
|
||||||
// used for element clearing after removal or expiration
|
// used for element clearing after removal or expiration
|
||||||
emptyKey K
|
emptyKey K
|
||||||
|
@ -101,10 +100,6 @@ func (lru *LRU[K, V]) SetLifetime(lifetime time.Duration) {
|
||||||
lru.lifetime = lifetime
|
lru.lifetime = lifetime
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) SetUpdateLifetimeOnGet(update bool) {
|
|
||||||
lru.updateLifetimeOnGet = update
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetOnEvict sets the OnEvict callback function.
|
// SetOnEvict sets the OnEvict callback function.
|
||||||
// The onEvict function is called for each evicted lru entry.
|
// The onEvict function is called for each evicted lru entry.
|
||||||
// Eviction happens
|
// Eviction happens
|
||||||
|
@ -122,7 +117,7 @@ func (lru *LRU[K, V]) SetHealthCheck(healthCheck HealthCheckCallback[K, V]) {
|
||||||
|
|
||||||
// New constructs an LRU with the given capacity of elements.
|
// New constructs an LRU with the given capacity of elements.
|
||||||
// The hash function calculates a hash value from the keys.
|
// The hash function calculates a hash value from the keys.
|
||||||
func New[K comparable, V any](capacity uint32, hash HashKeyCallback[K]) (*LRU[K, V], error) {
|
func New[K comparable, V comparable](capacity uint32, hash HashKeyCallback[K]) (*LRU[K, V], error) {
|
||||||
return NewWithSize[K, V](capacity, capacity, hash)
|
return NewWithSize[K, V](capacity, capacity, hash)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,7 +126,7 @@ func New[K comparable, V any](capacity uint32, hash HashKeyCallback[K]) (*LRU[K,
|
||||||
// A size greater than the capacity increases memory consumption and decreases the CPU consumption
|
// A size greater than the capacity increases memory consumption and decreases the CPU consumption
|
||||||
// by reducing the chance of collisions.
|
// by reducing the chance of collisions.
|
||||||
// Size must not be lower than the capacity.
|
// Size must not be lower than the capacity.
|
||||||
func NewWithSize[K comparable, V any](capacity, size uint32, hash HashKeyCallback[K]) (
|
func NewWithSize[K comparable, V comparable](capacity, size uint32, hash HashKeyCallback[K]) (
|
||||||
*LRU[K, V], error,
|
*LRU[K, V], error,
|
||||||
) {
|
) {
|
||||||
if capacity == 0 {
|
if capacity == 0 {
|
||||||
|
@ -156,7 +151,7 @@ func NewWithSize[K comparable, V any](capacity, size uint32, hash HashKeyCallbac
|
||||||
return &lru, nil
|
return &lru, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func initLRU[K comparable, V any](lru *LRU[K, V], capacity, size uint32, hash HashKeyCallback[K],
|
func initLRU[K comparable, V comparable](lru *LRU[K, V], capacity, size uint32, hash HashKeyCallback[K],
|
||||||
buckets []uint32, elements []element[K, V],
|
buckets []uint32, elements []element[K, V],
|
||||||
) {
|
) {
|
||||||
lru.cap = capacity
|
lru.cap = capacity
|
||||||
|
@ -181,7 +176,13 @@ func (lru *LRU[K, V]) hashToBucketPos(hash uint32) uint32 {
|
||||||
if lru.mask != 0 {
|
if lru.mask != 0 {
|
||||||
return hash & lru.mask
|
return hash & lru.mask
|
||||||
}
|
}
|
||||||
return hash % lru.size
|
return fastModulo(hash, lru.size)
|
||||||
|
}
|
||||||
|
|
||||||
|
// fastModulo calculates x % n without using the modulo operator (~4x faster).
|
||||||
|
// Reference: https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/
|
||||||
|
func fastModulo(x, n uint32) uint32 {
|
||||||
|
return uint32((uint64(x) * uint64(n)) >> 32) //nolint:gosec
|
||||||
}
|
}
|
||||||
|
|
||||||
// hashToPos converts a key into a position in the elements array.
|
// hashToPos converts a key into a position in the elements array.
|
||||||
|
@ -308,30 +309,50 @@ func (lru *LRU[K, V]) clearKeyAndValue(pos uint32) {
|
||||||
lru.elements[pos].value = lru.emptyValue
|
lru.elements[pos].value = lru.emptyValue
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) findKey(hash uint32, key K, updateLifetimeOnGet bool) (uint32, int64, bool) {
|
func (lru *LRU[K, V]) findKey(hash uint32, key K) (uint32, bool) {
|
||||||
_, startPos := lru.hashToPos(hash)
|
_, startPos := lru.hashToPos(hash)
|
||||||
if startPos == emptyBucket {
|
if startPos == emptyBucket {
|
||||||
return emptyBucket, 0, false
|
return emptyBucket, false
|
||||||
}
|
}
|
||||||
|
|
||||||
pos := startPos
|
pos := startPos
|
||||||
for {
|
for {
|
||||||
if key == lru.elements[pos].key {
|
if key == lru.elements[pos].key {
|
||||||
elem := lru.elements[pos]
|
if lru.elements[pos].expire != 0 && lru.elements[pos].expire <= now() || (lru.healthCheck != nil && !lru.healthCheck(key, lru.elements[pos].value)) {
|
||||||
if (elem.expire != 0 && elem.expire <= now()) || (lru.healthCheck != nil && !lru.healthCheck(key, elem.value)) {
|
|
||||||
lru.removeAt(pos)
|
lru.removeAt(pos)
|
||||||
return emptyBucket, elem.expire, false
|
return emptyBucket, false
|
||||||
}
|
}
|
||||||
if updateLifetimeOnGet {
|
return pos, true
|
||||||
lru.elements[pos].expire = expire(lru.lifetime)
|
|
||||||
}
|
|
||||||
return pos, elem.expire, true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pos = lru.elements[pos].nextBucket
|
pos = lru.elements[pos].nextBucket
|
||||||
if pos == startPos {
|
if pos == startPos {
|
||||||
// Key not found
|
// Key not found
|
||||||
return emptyBucket, 0, false
|
return emptyBucket, false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) findKeyNoExpire(hash uint32, key K) (uint32, bool) {
|
||||||
|
_, startPos := lru.hashToPos(hash)
|
||||||
|
if startPos == emptyBucket {
|
||||||
|
return emptyBucket, false
|
||||||
|
}
|
||||||
|
|
||||||
|
pos := startPos
|
||||||
|
for {
|
||||||
|
if key == lru.elements[pos].key {
|
||||||
|
if lru.healthCheck != nil && !lru.healthCheck(key, lru.elements[pos].value) {
|
||||||
|
lru.removeAt(pos)
|
||||||
|
return emptyBucket, false
|
||||||
|
}
|
||||||
|
return pos, true
|
||||||
|
}
|
||||||
|
|
||||||
|
pos = lru.elements[pos].nextBucket
|
||||||
|
if pos == startPos {
|
||||||
|
// Key not found
|
||||||
|
return emptyBucket, false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -444,30 +465,108 @@ func (lru *LRU[K, V]) add(hash uint32, key K, value V) (evicted bool) {
|
||||||
// If the found cache item is already expired, the evict function is called
|
// If the found cache item is already expired, the evict function is called
|
||||||
// and the return value indicates that the key was not found.
|
// and the return value indicates that the key was not found.
|
||||||
func (lru *LRU[K, V]) Get(key K) (value V, ok bool) {
|
func (lru *LRU[K, V]) Get(key K) (value V, ok bool) {
|
||||||
value, _, ok = lru.get(lru.hash(key), key)
|
return lru.get(lru.hash(key), key)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) GetWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
func (lru *LRU[K, V]) get(hash uint32, key K) (value V, ok bool) {
|
||||||
value, expireMills, ok := lru.get(lru.hash(key), key)
|
if pos, ok := lru.findKey(hash, key); ok {
|
||||||
lifetime = time.UnixMilli(expireMills)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (lru *LRU[K, V]) get(hash uint32, key K) (value V, expire int64, ok bool) {
|
|
||||||
if pos, expire, ok := lru.findKey(hash, key, lru.updateLifetimeOnGet); ok {
|
|
||||||
if pos != lru.head {
|
if pos != lru.head {
|
||||||
lru.unlinkElement(pos)
|
lru.unlinkElement(pos)
|
||||||
lru.setHead(pos)
|
lru.setHead(pos)
|
||||||
}
|
}
|
||||||
lru.metrics.Hits++
|
lru.metrics.Hits++
|
||||||
return lru.elements[pos].value, expire, ok
|
return lru.elements[pos].value, ok
|
||||||
}
|
}
|
||||||
|
|
||||||
lru.metrics.Misses++
|
lru.metrics.Misses++
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) GetWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
return lru.getWithLifetime(lru.hash(key), key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) getWithLifetime(hash uint32, key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
if pos, ok := lru.findKey(hash, key); ok {
|
||||||
|
if pos != lru.head {
|
||||||
|
lru.unlinkElement(pos)
|
||||||
|
lru.setHead(pos)
|
||||||
|
}
|
||||||
|
lru.metrics.Hits++
|
||||||
|
return lru.elements[pos].value, time.UnixMilli(lru.elements[pos].expire), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
lru.metrics.Misses++
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) GetWithLifetimeNoExpire(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
return lru.getWithLifetimeNoExpire(lru.hash(key), key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) getWithLifetimeNoExpire(hash uint32, key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
if pos, ok := lru.findKeyNoExpire(hash, key); ok {
|
||||||
|
if pos != lru.head {
|
||||||
|
lru.unlinkElement(pos)
|
||||||
|
lru.setHead(pos)
|
||||||
|
}
|
||||||
|
lru.metrics.Hits++
|
||||||
|
return lru.elements[pos].value, time.UnixMilli(lru.elements[pos].expire), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
lru.metrics.Misses++
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAndRefresh returns the value associated with the key, setting it as the most
|
||||||
|
// recently used item.
|
||||||
|
// The lifetime of the found cache item is refreshed, even if it was already expired.
|
||||||
|
func (lru *LRU[K, V]) GetAndRefresh(key K) (V, bool) {
|
||||||
|
return lru.getAndRefresh(lru.hash(key), key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) getAndRefresh(hash uint32, key K) (value V, ok bool) {
|
||||||
|
if pos, ok := lru.findKeyNoExpire(hash, key); ok {
|
||||||
|
if pos != lru.head {
|
||||||
|
lru.unlinkElement(pos)
|
||||||
|
lru.setHead(pos)
|
||||||
|
}
|
||||||
|
lru.metrics.Hits++
|
||||||
|
lru.elements[pos].expire = expire(lru.lifetime)
|
||||||
|
return lru.elements[pos].value, ok
|
||||||
|
}
|
||||||
|
|
||||||
|
lru.metrics.Misses++
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (V, bool, bool) {
|
||||||
|
value, updated, ok := lru.getAndRefreshOrAdd(lru.hash(key), key, constructor)
|
||||||
|
if !updated && ok {
|
||||||
|
lru.PurgeExpired()
|
||||||
|
}
|
||||||
|
return value, updated, ok
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) getAndRefreshOrAdd(hash uint32, key K, constructor func() (V, bool)) (value V, updated bool, ok bool) {
|
||||||
|
if pos, ok := lru.findKeyNoExpire(hash, key); ok {
|
||||||
|
if pos != lru.head {
|
||||||
|
lru.unlinkElement(pos)
|
||||||
|
lru.setHead(pos)
|
||||||
|
}
|
||||||
|
lru.metrics.Hits++
|
||||||
|
lru.elements[pos].expire = expire(lru.lifetime)
|
||||||
|
return lru.elements[pos].value, true, true
|
||||||
|
}
|
||||||
|
lru.metrics.Misses++
|
||||||
|
value, ok = constructor()
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
lru.addWithLifetime(hash, key, value, lru.lifetime)
|
||||||
|
return value, false, true
|
||||||
|
}
|
||||||
|
|
||||||
// Peek looks up a key's value from the cache, without changing its recent-ness.
|
// Peek looks up a key's value from the cache, without changing its recent-ness.
|
||||||
// If the found entry is already expired, the evict function is called.
|
// If the found entry is already expired, the evict function is called.
|
||||||
func (lru *LRU[K, V]) Peek(key K) (value V, ok bool) {
|
func (lru *LRU[K, V]) Peek(key K) (value V, ok bool) {
|
||||||
|
@ -475,13 +574,58 @@ func (lru *LRU[K, V]) Peek(key K) (value V, ok bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) peek(hash uint32, key K) (value V, ok bool) {
|
func (lru *LRU[K, V]) peek(hash uint32, key K) (value V, ok bool) {
|
||||||
if pos, _, ok := lru.findKey(hash, key, false); ok {
|
if pos, ok := lru.findKey(hash, key); ok {
|
||||||
return lru.elements[pos].value, ok
|
return lru.elements[pos].value, ok
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) PeekWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
return lru.peekWithLifetime(lru.hash(key), key)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) peekWithLifetime(hash uint32, key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
if pos, ok := lru.findKey(hash, key); ok {
|
||||||
|
return lru.elements[pos].value, time.UnixMilli(lru.elements[pos].expire), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) UpdateLifetime(key K, value V, lifetime time.Duration) bool {
|
||||||
|
return lru.updateLifetime(lru.hash(key), key, value, lifetime)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *LRU[K, V]) updateLifetime(hash uint32, key K, value V, lifetime time.Duration) bool {
|
||||||
|
_, startPos := lru.hashToPos(hash)
|
||||||
|
if startPos == emptyBucket {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
pos := startPos
|
||||||
|
for {
|
||||||
|
if lru.elements[pos].key == key {
|
||||||
|
if lru.elements[pos].value != value {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
lru.elements[pos].expire = expire(lifetime)
|
||||||
|
|
||||||
|
if pos != lru.head {
|
||||||
|
lru.unlinkElement(pos)
|
||||||
|
lru.setHead(pos)
|
||||||
|
}
|
||||||
|
lru.metrics.Inserts++
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
pos = lru.elements[pos].nextBucket
|
||||||
|
if pos == startPos {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Contains checks for the existence of a key, without changing its recent-ness.
|
// Contains checks for the existence of a key, without changing its recent-ness.
|
||||||
// If the found entry is already expired, the evict function is called.
|
// If the found entry is already expired, the evict function is called.
|
||||||
func (lru *LRU[K, V]) Contains(key K) (ok bool) {
|
func (lru *LRU[K, V]) Contains(key K) (ok bool) {
|
||||||
|
@ -502,7 +646,7 @@ func (lru *LRU[K, V]) Remove(key K) (removed bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) remove(hash uint32, key K) (removed bool) {
|
func (lru *LRU[K, V]) remove(hash uint32, key K) (removed bool) {
|
||||||
if pos, _, ok := lru.findKey(hash, key, false); ok {
|
if pos, ok := lru.findKeyNoExpire(hash, key); ok {
|
||||||
lru.removeAt(pos)
|
lru.removeAt(pos)
|
||||||
return ok
|
return ok
|
||||||
}
|
}
|
||||||
|
@ -552,7 +696,8 @@ func (lru *LRU[K, V]) Keys() []K {
|
||||||
// The evict function is called for each expired item.
|
// The evict function is called for each expired item.
|
||||||
// The LRU metrics are reset.
|
// The LRU metrics are reset.
|
||||||
func (lru *LRU[K, V]) Purge() {
|
func (lru *LRU[K, V]) Purge() {
|
||||||
for i := uint32(0); i < lru.len; i++ {
|
l := lru.len
|
||||||
|
for i := uint32(0); i < l; i++ {
|
||||||
_, _, _ = lru.RemoveOldest()
|
_, _, _ = lru.RemoveOldest()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -562,14 +707,19 @@ func (lru *LRU[K, V]) Purge() {
|
||||||
// PurgeExpired purges all expired items from the LRU.
|
// PurgeExpired purges all expired items from the LRU.
|
||||||
// The evict function is called for each expired item.
|
// The evict function is called for each expired item.
|
||||||
func (lru *LRU[K, V]) PurgeExpired() {
|
func (lru *LRU[K, V]) PurgeExpired() {
|
||||||
for i := uint32(0); i < lru.len; i++ {
|
n := now()
|
||||||
pos := lru.elements[lru.head].next
|
loop:
|
||||||
if lru.elements[pos].expire != 0 {
|
l := lru.len
|
||||||
if lru.elements[pos].expire > now() {
|
if l == 0 {
|
||||||
return // no more expired items
|
return
|
||||||
}
|
}
|
||||||
|
pos := lru.elements[lru.head].next
|
||||||
|
for i := uint32(0); i < l; i++ {
|
||||||
|
if lru.elements[pos].expire != 0 && lru.elements[pos].expire <= n {
|
||||||
lru.removeAt(pos)
|
lru.removeAt(pos)
|
||||||
|
goto loop
|
||||||
}
|
}
|
||||||
|
pos = lru.elements[pos].next
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,34 +1,35 @@
|
||||||
package freelru_test
|
package freelru_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"math/rand"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
|
F "github.com/sagernet/sing/common/format"
|
||||||
"github.com/sagernet/sing/contrab/freelru"
|
"github.com/sagernet/sing/contrab/freelru"
|
||||||
"github.com/sagernet/sing/contrab/maphash"
|
"github.com/sagernet/sing/contrab/maphash"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMyChange0(t *testing.T) {
|
func TestUpdateLifetimeOnGet(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lru.SetUpdateLifetimeOnGet(true)
|
|
||||||
lru.AddWithLifetime("hello", "world", 2*time.Second)
|
lru.AddWithLifetime("hello", "world", 2*time.Second)
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
_, ok := lru.Get("hello")
|
_, ok := lru.GetAndRefresh("hello")
|
||||||
require.True(t, ok)
|
require.True(t, ok)
|
||||||
time.Sleep(time.Second + time.Millisecond*100)
|
time.Sleep(time.Second + time.Millisecond*100)
|
||||||
_, ok = lru.Get("hello")
|
_, ok = lru.Get("hello")
|
||||||
require.True(t, ok)
|
require.True(t, ok)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMyChange1(t *testing.T) {
|
func TestUpdateLifetimeOnGet1(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
lru.SetUpdateLifetimeOnGet(true)
|
|
||||||
lru.AddWithLifetime("hello", "world", 2*time.Second)
|
lru.AddWithLifetime("hello", "world", 2*time.Second)
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
lru.Peek("hello")
|
lru.Peek("hello")
|
||||||
|
@ -36,3 +37,64 @@ func TestMyChange1(t *testing.T) {
|
||||||
_, ok := lru.Get("hello")
|
_, ok := lru.Get("hello")
|
||||||
require.False(t, ok)
|
require.False(t, ok)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUpdateLifetime(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
|
require.NoError(t, err)
|
||||||
|
lru.Add("hello", "world")
|
||||||
|
require.True(t, lru.UpdateLifetime("hello", "world", 2*time.Second))
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
_, ok := lru.Get("hello")
|
||||||
|
require.True(t, ok)
|
||||||
|
time.Sleep(time.Second + time.Millisecond*100)
|
||||||
|
_, ok = lru.Get("hello")
|
||||||
|
require.False(t, ok)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUpdateLifetime1(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
|
require.NoError(t, err)
|
||||||
|
lru.Add("hello", "world")
|
||||||
|
require.False(t, lru.UpdateLifetime("hello", "not world", 2*time.Second))
|
||||||
|
time.Sleep(2*time.Second + time.Millisecond*100)
|
||||||
|
_, ok := lru.Get("hello")
|
||||||
|
require.True(t, ok)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUpdateLifetime2(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
lru, err := freelru.New[string, string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
|
require.NoError(t, err)
|
||||||
|
lru.AddWithLifetime("hello", "world", 2*time.Second)
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
require.True(t, lru.UpdateLifetime("hello", "world", 2*time.Second))
|
||||||
|
time.Sleep(time.Second + time.Millisecond*100)
|
||||||
|
_, ok := lru.Get("hello")
|
||||||
|
require.True(t, ok)
|
||||||
|
time.Sleep(time.Second + time.Millisecond*100)
|
||||||
|
_, ok = lru.Get("hello")
|
||||||
|
require.False(t, ok)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPurgeExpired(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
lru, err := freelru.New[string, *string](1024, maphash.NewHasher[string]().Hash32)
|
||||||
|
require.NoError(t, err)
|
||||||
|
lru.SetLifetime(time.Second)
|
||||||
|
lru.SetOnEvict(func(s string, s2 *string) {
|
||||||
|
if s2 == nil {
|
||||||
|
t.Fail()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
for i := 0; i < 100; i++ {
|
||||||
|
lru.AddWithLifetime("hello_"+F.ToString(i), common.Ptr("world_"+F.ToString(i)), time.Duration(rand.Intn(3000))*time.Millisecond)
|
||||||
|
}
|
||||||
|
for i := 0; i < 5; i++ {
|
||||||
|
time.Sleep(time.Second)
|
||||||
|
lru.GetAndRefreshOrAdd("hellox"+F.ToString(i), func() (*string, bool) {
|
||||||
|
return common.Ptr("worldx"), true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
// ShardedLRU is a thread-safe, sharded, fixed size LRU cache.
|
// ShardedLRU is a thread-safe, sharded, fixed size LRU cache.
|
||||||
// Sharding is used to reduce lock contention on high concurrency.
|
// Sharding is used to reduce lock contention on high concurrency.
|
||||||
// The downside is that exact LRU behavior is not given (as for the LRU and SynchedLRU types).
|
// The downside is that exact LRU behavior is not given (as for the LRU and SynchedLRU types).
|
||||||
type ShardedLRU[K comparable, V any] struct {
|
type ShardedLRU[K comparable, V comparable] struct {
|
||||||
lrus []LRU[K, V]
|
lrus []LRU[K, V]
|
||||||
mus []sync.RWMutex
|
mus []sync.RWMutex
|
||||||
hash HashKeyCallback[K]
|
hash HashKeyCallback[K]
|
||||||
|
@ -32,14 +32,6 @@ func (lru *ShardedLRU[K, V]) SetLifetime(lifetime time.Duration) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *ShardedLRU[K, V]) SetUpdateLifetimeOnGet(update bool) {
|
|
||||||
for shard := range lru.lrus {
|
|
||||||
lru.mus[shard].Lock()
|
|
||||||
lru.lrus[shard].SetUpdateLifetimeOnGet(update)
|
|
||||||
lru.mus[shard].Unlock()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetOnEvict sets the OnEvict callback function.
|
// SetOnEvict sets the OnEvict callback function.
|
||||||
// The onEvict function is called for each evicted lru entry.
|
// The onEvict function is called for each evicted lru entry.
|
||||||
func (lru *ShardedLRU[K, V]) SetOnEvict(onEvict OnEvictCallback[K, V]) {
|
func (lru *ShardedLRU[K, V]) SetOnEvict(onEvict OnEvictCallback[K, V]) {
|
||||||
|
@ -66,7 +58,7 @@ func nextPowerOfTwo(val uint32) uint32 {
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewSharded creates a new thread-safe sharded LRU hashmap with the given capacity.
|
// NewSharded creates a new thread-safe sharded LRU hashmap with the given capacity.
|
||||||
func NewSharded[K comparable, V any](capacity uint32, hash HashKeyCallback[K]) (*ShardedLRU[K, V],
|
func NewSharded[K comparable, V comparable](capacity uint32, hash HashKeyCallback[K]) (*ShardedLRU[K, V],
|
||||||
error,
|
error,
|
||||||
) {
|
) {
|
||||||
size := uint32(float64(capacity) * 1.25) // 25% extra space for fewer collisions
|
size := uint32(float64(capacity) * 1.25) // 25% extra space for fewer collisions
|
||||||
|
@ -74,7 +66,7 @@ func NewSharded[K comparable, V any](capacity uint32, hash HashKeyCallback[K]) (
|
||||||
return NewShardedWithSize[K, V](uint32(runtime.GOMAXPROCS(0)*16), capacity, size, hash)
|
return NewShardedWithSize[K, V](uint32(runtime.GOMAXPROCS(0)*16), capacity, size, hash)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewShardedWithSize[K comparable, V any](shards, capacity, size uint32,
|
func NewShardedWithSize[K comparable, V comparable](shards, capacity, size uint32,
|
||||||
hash HashKeyCallback[K]) (
|
hash HashKeyCallback[K]) (
|
||||||
*ShardedLRU[K, V], error,
|
*ShardedLRU[K, V], error,
|
||||||
) {
|
) {
|
||||||
|
@ -178,7 +170,7 @@ func (lru *ShardedLRU[K, V]) Get(key K) (value V, ok bool) {
|
||||||
shard := (hash >> 16) & lru.mask
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
lru.mus[shard].Lock()
|
lru.mus[shard].Lock()
|
||||||
value, _, ok = lru.lrus[shard].get(hash, key)
|
value, ok = lru.lrus[shard].get(hash, key)
|
||||||
lru.mus[shard].Unlock()
|
lru.mus[shard].Unlock()
|
||||||
|
|
||||||
return
|
return
|
||||||
|
@ -189,9 +181,48 @@ func (lru *ShardedLRU[K, V]) GetWithLifetime(key K) (value V, lifetime time.Time
|
||||||
shard := (hash >> 16) & lru.mask
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
lru.mus[shard].Lock()
|
lru.mus[shard].Lock()
|
||||||
value, expireMills, ok := lru.lrus[shard].get(hash, key)
|
value, lifetime, ok = lru.lrus[shard].getWithLifetime(hash, key)
|
||||||
lru.mus[shard].Unlock()
|
lru.mus[shard].Unlock()
|
||||||
lifetime = time.UnixMilli(expireMills)
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *ShardedLRU[K, V]) GetWithLifetimeNoExpire(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
hash := lru.hash(key)
|
||||||
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
|
lru.mus[shard].RLock()
|
||||||
|
value, lifetime, ok = lru.lrus[shard].getWithLifetimeNoExpire(hash, key)
|
||||||
|
lru.mus[shard].RUnlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAndRefresh returns the value associated with the key, setting it as the most
|
||||||
|
// recently used item.
|
||||||
|
// The lifetime of the found cache item is refreshed, even if it was already expired.
|
||||||
|
func (lru *ShardedLRU[K, V]) GetAndRefresh(key K) (value V, ok bool) {
|
||||||
|
hash := lru.hash(key)
|
||||||
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
|
lru.mus[shard].Lock()
|
||||||
|
value, ok = lru.lrus[shard].getAndRefresh(hash, key)
|
||||||
|
lru.mus[shard].Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *ShardedLRU[K, V]) GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (value V, updated bool, ok bool) {
|
||||||
|
hash := lru.hash(key)
|
||||||
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
|
lru.mus[shard].Lock()
|
||||||
|
value, updated, ok = lru.lrus[shard].getAndRefreshOrAdd(hash, key, constructor)
|
||||||
|
lru.mus[shard].Unlock()
|
||||||
|
|
||||||
|
if !updated && ok {
|
||||||
|
lru.PurgeExpired()
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,6 +239,28 @@ func (lru *ShardedLRU[K, V]) Peek(key K) (value V, ok bool) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (lru *ShardedLRU[K, V]) PeekWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
hash := lru.hash(key)
|
||||||
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
|
lru.mus[shard].Lock()
|
||||||
|
value, lifetime, ok = lru.lrus[shard].peekWithLifetime(hash, key)
|
||||||
|
lru.mus[shard].Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *ShardedLRU[K, V]) UpdateLifetime(key K, value V, lifetime time.Duration) (ok bool) {
|
||||||
|
hash := lru.hash(key)
|
||||||
|
shard := (hash >> 16) & lru.mask
|
||||||
|
|
||||||
|
lru.mus[shard].Lock()
|
||||||
|
ok = lru.lrus[shard].updateLifetime(hash, key, value, lifetime)
|
||||||
|
lru.mus[shard].Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// Contains checks for the existence of a key, without changing its recent-ness.
|
// Contains checks for the existence of a key, without changing its recent-ness.
|
||||||
// If the found entry is already expired, the evict function is called.
|
// If the found entry is already expired, the evict function is called.
|
||||||
func (lru *ShardedLRU[K, V]) Contains(key K) (ok bool) {
|
func (lru *ShardedLRU[K, V]) Contains(key K) (ok bool) {
|
270
contrab/freelru/syncedlru.go
Normal file
270
contrab/freelru/syncedlru.go
Normal file
|
@ -0,0 +1,270 @@
|
||||||
|
package freelru
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type SyncedLRU[K comparable, V comparable] struct {
|
||||||
|
mu sync.RWMutex
|
||||||
|
lru *LRU[K, V]
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ Cache[int, int] = (*SyncedLRU[int, int])(nil)
|
||||||
|
|
||||||
|
// SetLifetime sets the default lifetime of LRU elements.
|
||||||
|
// Lifetime 0 means "forever".
|
||||||
|
func (lru *SyncedLRU[K, V]) SetLifetime(lifetime time.Duration) {
|
||||||
|
lru.mu.Lock()
|
||||||
|
lru.lru.SetLifetime(lifetime)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetOnEvict sets the OnEvict callback function.
|
||||||
|
// The onEvict function is called for each evicted lru entry.
|
||||||
|
func (lru *SyncedLRU[K, V]) SetOnEvict(onEvict OnEvictCallback[K, V]) {
|
||||||
|
lru.mu.Lock()
|
||||||
|
lru.lru.SetOnEvict(onEvict)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) SetHealthCheck(healthCheck HealthCheckCallback[K, V]) {
|
||||||
|
lru.mu.Lock()
|
||||||
|
lru.lru.SetHealthCheck(healthCheck)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewSynced creates a new thread-safe LRU hashmap with the given capacity.
|
||||||
|
func NewSynced[K comparable, V comparable](capacity uint32, hash HashKeyCallback[K]) (*SyncedLRU[K, V],
|
||||||
|
error,
|
||||||
|
) {
|
||||||
|
return NewSyncedWithSize[K, V](capacity, capacity, hash)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewSyncedWithSize[K comparable, V comparable](capacity, size uint32,
|
||||||
|
hash HashKeyCallback[K],
|
||||||
|
) (*SyncedLRU[K, V], error) {
|
||||||
|
lru, err := NewWithSize[K, V](capacity, size, hash)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &SyncedLRU[K, V]{lru: lru}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Len returns the number of elements stored in the cache.
|
||||||
|
func (lru *SyncedLRU[K, V]) Len() (length int) {
|
||||||
|
lru.mu.RLock()
|
||||||
|
length = lru.lru.Len()
|
||||||
|
lru.mu.RUnlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// AddWithLifetime adds a key:value to the cache with a lifetime.
|
||||||
|
// Returns true, true if key was updated and eviction occurred.
|
||||||
|
func (lru *SyncedLRU[K, V]) AddWithLifetime(key K, value V, lifetime time.Duration) (evicted bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
evicted = lru.lru.addWithLifetime(hash, key, value, lifetime)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add adds a key:value to the cache.
|
||||||
|
// Returns true, true if key was updated and eviction occurred.
|
||||||
|
func (lru *SyncedLRU[K, V]) Add(key K, value V) (evicted bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
evicted = lru.lru.add(hash, key, value)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get returns the value associated with the key, setting it as the most
|
||||||
|
// recently used item.
|
||||||
|
// If the found cache item is already expired, the evict function is called
|
||||||
|
// and the return value indicates that the key was not found.
|
||||||
|
func (lru *SyncedLRU[K, V]) Get(key K) (value V, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, ok = lru.lru.get(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) GetWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, lifetime, ok = lru.lru.getWithLifetime(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) GetWithLifetimeNoExpire(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, lifetime, ok = lru.lru.getWithLifetimeNoExpire(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAndRefresh returns the value associated with the key, setting it as the most
|
||||||
|
// recently used item.
|
||||||
|
// The lifetime of the found cache item is refreshed, even if it was already expired.
|
||||||
|
func (lru *SyncedLRU[K, V]) GetAndRefresh(key K) (value V, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, ok = lru.lru.getAndRefresh(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (value V, updated bool, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, updated, ok = lru.lru.getAndRefreshOrAdd(hash, key, constructor)
|
||||||
|
if !updated && ok {
|
||||||
|
lru.lru.PurgeExpired()
|
||||||
|
}
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Peek looks up a key's value from the cache, without changing its recent-ness.
|
||||||
|
// If the found entry is already expired, the evict function is called.
|
||||||
|
func (lru *SyncedLRU[K, V]) Peek(key K) (value V, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, ok = lru.lru.peek(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) PeekWithLifetime(key K) (value V, lifetime time.Time, ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
value, lifetime, ok = lru.lru.peekWithLifetime(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) UpdateLifetime(key K, value V, lifetime time.Duration) (ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
ok = lru.lru.updateLifetime(hash, key, value, lifetime)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Contains checks for the existence of a key, without changing its recent-ness.
|
||||||
|
// If the found entry is already expired, the evict function is called.
|
||||||
|
func (lru *SyncedLRU[K, V]) Contains(key K) (ok bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
ok = lru.lru.contains(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove removes the key from the cache.
|
||||||
|
// The return value indicates whether the key existed or not.
|
||||||
|
// The evict function is being called if the key existed.
|
||||||
|
func (lru *SyncedLRU[K, V]) Remove(key K) (removed bool) {
|
||||||
|
hash := lru.lru.hash(key)
|
||||||
|
|
||||||
|
lru.mu.Lock()
|
||||||
|
removed = lru.lru.remove(hash, key)
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// RemoveOldest removes the oldest entry from the cache.
|
||||||
|
// Key, value and an indicator of whether the entry has been removed is returned.
|
||||||
|
// The evict function is called for the removed entry.
|
||||||
|
func (lru *SyncedLRU[K, V]) RemoveOldest() (key K, value V, removed bool) {
|
||||||
|
lru.mu.Lock()
|
||||||
|
key, value, removed = lru.lru.RemoveOldest()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keys returns a slice of the keys in the cache, from oldest to newest.
|
||||||
|
// Expired entries are not included.
|
||||||
|
// The evict function is called for each expired item.
|
||||||
|
func (lru *SyncedLRU[K, V]) Keys() (keys []K) {
|
||||||
|
lru.mu.Lock()
|
||||||
|
keys = lru.lru.Keys()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Purge purges all data (key and value) from the LRU.
|
||||||
|
// The evict function is called for each expired item.
|
||||||
|
// The LRU metrics are reset.
|
||||||
|
func (lru *SyncedLRU[K, V]) Purge() {
|
||||||
|
lru.mu.Lock()
|
||||||
|
lru.lru.Purge()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// PurgeExpired purges all expired items from the LRU.
|
||||||
|
// The evict function is called for each expired item.
|
||||||
|
func (lru *SyncedLRU[K, V]) PurgeExpired() {
|
||||||
|
lru.mu.Lock()
|
||||||
|
lru.lru.PurgeExpired()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Metrics returns the metrics of the cache.
|
||||||
|
func (lru *SyncedLRU[K, V]) Metrics() Metrics {
|
||||||
|
lru.mu.Lock()
|
||||||
|
metrics := lru.lru.Metrics()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
return metrics
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResetMetrics resets the metrics of the cache and returns the previous state.
|
||||||
|
func (lru *SyncedLRU[K, V]) ResetMetrics() Metrics {
|
||||||
|
lru.mu.Lock()
|
||||||
|
metrics := lru.lru.ResetMetrics()
|
||||||
|
lru.mu.Unlock()
|
||||||
|
return metrics
|
||||||
|
}
|
||||||
|
|
||||||
|
// just used for debugging
|
||||||
|
func (lru *SyncedLRU[K, V]) dump() {
|
||||||
|
lru.mu.RLock()
|
||||||
|
lru.lru.dump()
|
||||||
|
lru.mu.RUnlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (lru *SyncedLRU[K, V]) PrintStats() {
|
||||||
|
lru.mu.RLock()
|
||||||
|
lru.lru.PrintStats()
|
||||||
|
lru.mu.RUnlock()
|
||||||
|
}
|
|
@ -21,17 +21,14 @@ import (
|
||||||
"github.com/sagernet/sing/common/pipe"
|
"github.com/sagernet/sing/common/pipe"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: Use HandleConnectionEx instead.
|
func HandleConnectionEx(
|
||||||
func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Reader, authenticator *auth.Authenticator,
|
ctx context.Context,
|
||||||
//nolint:staticcheck
|
conn net.Conn,
|
||||||
handler N.TCPConnectionHandler, metadata M.Metadata,
|
reader *std_bufio.Reader,
|
||||||
) error {
|
authenticator *auth.Authenticator,
|
||||||
return HandleConnectionEx(ctx, conn, reader, authenticator, handler, nil, metadata.Source, nil)
|
handler N.TCPConnectionHandlerEx,
|
||||||
}
|
source M.Socksaddr,
|
||||||
|
onClose N.CloseHandlerFunc,
|
||||||
func HandleConnectionEx(ctx context.Context, conn net.Conn, reader *std_bufio.Reader, authenticator *auth.Authenticator,
|
|
||||||
//nolint:staticcheck
|
|
||||||
handler N.TCPConnectionHandler, handlerEx N.TCPConnectionHandlerEx, source M.Socksaddr, onClose N.CloseHandlerFunc,
|
|
||||||
) error {
|
) error {
|
||||||
for {
|
for {
|
||||||
request, err := ReadRequest(reader)
|
request, err := ReadRequest(reader)
|
||||||
|
@ -105,13 +102,8 @@ func HandleConnectionEx(ctx context.Context, conn net.Conn, reader *std_bufio.Re
|
||||||
} else {
|
} else {
|
||||||
requestConn = conn
|
requestConn = conn
|
||||||
}
|
}
|
||||||
if handler != nil {
|
handler.NewConnectionEx(ctx, requestConn, source, destination, onClose)
|
||||||
//nolint:staticcheck
|
return nil
|
||||||
return handler.NewConnection(ctx, requestConn, M.Metadata{Protocol: "http", Source: source, Destination: destination})
|
|
||||||
} else {
|
|
||||||
handlerEx.NewConnectionEx(ctx, requestConn, source, destination, onClose)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
} else if strings.ToLower(request.Header.Get("Connection")) == "upgrade" {
|
} else if strings.ToLower(request.Header.Get("Connection")) == "upgrade" {
|
||||||
destination := M.ParseSocksaddrHostPortStr(request.URL.Hostname(), request.URL.Port())
|
destination := M.ParseSocksaddrHostPortStr(request.URL.Hostname(), request.URL.Port())
|
||||||
if destination.Port == 0 {
|
if destination.Port == 0 {
|
||||||
|
@ -124,19 +116,11 @@ func HandleConnectionEx(ctx context.Context, conn net.Conn, reader *std_bufio.Re
|
||||||
}
|
}
|
||||||
serverConn, clientConn := pipe.Pipe()
|
serverConn, clientConn := pipe.Pipe()
|
||||||
go func() {
|
go func() {
|
||||||
if handler != nil {
|
handler.NewConnectionEx(ctx, clientConn, source, destination, func(it error) {
|
||||||
//nolint:staticcheck
|
if it != nil {
|
||||||
err := handler.NewConnection(ctx, clientConn, M.Metadata{Protocol: "http", Source: source, Destination: destination})
|
|
||||||
if err != nil {
|
|
||||||
common.Close(serverConn, clientConn)
|
common.Close(serverConn, clientConn)
|
||||||
}
|
}
|
||||||
} else {
|
})
|
||||||
handlerEx.NewConnectionEx(ctx, clientConn, source, destination, func(it error) {
|
|
||||||
if it != nil {
|
|
||||||
common.Close(serverConn, clientConn)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}()
|
}()
|
||||||
err = request.Write(serverConn)
|
err = request.Write(serverConn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -150,7 +134,7 @@ func HandleConnectionEx(ctx context.Context, conn net.Conn, reader *std_bufio.Re
|
||||||
}
|
}
|
||||||
return bufio.CopyConn(ctx, conn, serverConn)
|
return bufio.CopyConn(ctx, conn, serverConn)
|
||||||
} else {
|
} else {
|
||||||
err = handleHTTPConnection(ctx, handler, handlerEx, conn, request, source)
|
err = handleHTTPConnection(ctx, handler, conn, request, source)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -160,9 +144,7 @@ func HandleConnectionEx(ctx context.Context, conn net.Conn, reader *std_bufio.Re
|
||||||
|
|
||||||
func handleHTTPConnection(
|
func handleHTTPConnection(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
//nolint:staticcheck
|
handler N.TCPConnectionHandlerEx,
|
||||||
handler N.TCPConnectionHandler,
|
|
||||||
handlerEx N.TCPConnectionHandlerEx,
|
|
||||||
conn net.Conn,
|
conn net.Conn,
|
||||||
request *http.Request, source M.Socksaddr,
|
request *http.Request, source M.Socksaddr,
|
||||||
) error {
|
) error {
|
||||||
|
@ -188,21 +170,10 @@ func handleHTTPConnection(
|
||||||
DisableCompression: true,
|
DisableCompression: true,
|
||||||
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
DialContext: func(ctx context.Context, network, address string) (net.Conn, error) {
|
||||||
input, output := pipe.Pipe()
|
input, output := pipe.Pipe()
|
||||||
if handler != nil {
|
go handler.NewConnectionEx(ctx, output, source, M.ParseSocksaddr(address), func(it error) {
|
||||||
go func() {
|
innerErr.Store(it)
|
||||||
//nolint:staticcheck
|
common.Close(input, output)
|
||||||
hErr := handler.NewConnection(ctx, output, M.Metadata{Protocol: "http", Source: source, Destination: M.ParseSocksaddr(address)})
|
})
|
||||||
if hErr != nil {
|
|
||||||
innerErr.Store(hErr)
|
|
||||||
common.Close(input, output)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
} else {
|
|
||||||
go handlerEx.NewConnectionEx(ctx, output, source, M.ParseSocksaddr(address), func(it error) {
|
|
||||||
innerErr.Store(it)
|
|
||||||
common.Close(input, output)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
return input, nil
|
return input, nil
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -10,6 +10,7 @@ import (
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
"github.com/sagernet/sing/common/auth"
|
"github.com/sagernet/sing/common/auth"
|
||||||
|
"github.com/sagernet/sing/common/buf"
|
||||||
"github.com/sagernet/sing/common/bufio"
|
"github.com/sagernet/sing/common/bufio"
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
M "github.com/sagernet/sing/common/metadata"
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
@ -19,19 +20,15 @@ import (
|
||||||
"github.com/sagernet/sing/protocol/socks/socks5"
|
"github.com/sagernet/sing/protocol/socks/socks5"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: Use HandlerEx instead.
|
|
||||||
//
|
|
||||||
//nolint:staticcheck
|
|
||||||
type Handler interface {
|
|
||||||
N.TCPConnectionHandler
|
|
||||||
N.UDPConnectionHandler
|
|
||||||
}
|
|
||||||
|
|
||||||
type HandlerEx interface {
|
type HandlerEx interface {
|
||||||
N.TCPConnectionHandlerEx
|
N.TCPConnectionHandlerEx
|
||||||
N.UDPConnectionHandlerEx
|
N.UDPConnectionHandlerEx
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type PacketListener interface {
|
||||||
|
ListenPacket(listenConfig net.ListenConfig, ctx context.Context, network string, address string) (net.PacketConn, error)
|
||||||
|
}
|
||||||
|
|
||||||
func ClientHandshake4(conn io.ReadWriter, command byte, destination M.Socksaddr, username string) (socks4.Response, error) {
|
func ClientHandshake4(conn io.ReadWriter, command byte, destination M.Socksaddr, username string) (socks4.Response, error) {
|
||||||
err := socks4.WriteRequest(conn, socks4.Request{
|
err := socks4.WriteRequest(conn, socks4.Request{
|
||||||
Command: command,
|
Command: command,
|
||||||
|
@ -87,6 +84,26 @@ func ClientHandshake5(conn io.ReadWriter, command byte, destination M.Socksaddr,
|
||||||
} else if authResponse.Method != socks5.AuthTypeNotRequired {
|
} else if authResponse.Method != socks5.AuthTypeNotRequired {
|
||||||
return socks5.Response{}, E.New("socks5: unsupported auth method: ", authResponse.Method)
|
return socks5.Response{}, E.New("socks5: unsupported auth method: ", authResponse.Method)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if command == socks5.CommandUDPAssociate {
|
||||||
|
if destination.Addr.IsPrivate() {
|
||||||
|
if destination.Addr.Is6() {
|
||||||
|
destination.Addr = netip.AddrFrom4([4]byte{127, 0, 0, 1})
|
||||||
|
} else {
|
||||||
|
destination.Addr = netip.IPv6Loopback()
|
||||||
|
}
|
||||||
|
} else if destination.Addr.IsGlobalUnicast() {
|
||||||
|
if destination.Addr.Is6() {
|
||||||
|
destination.Addr = netip.IPv6Unspecified()
|
||||||
|
} else {
|
||||||
|
destination.Addr = netip.IPv4Unspecified()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
destination.Addr = netip.IPv6Unspecified()
|
||||||
|
}
|
||||||
|
destination.Port = 0
|
||||||
|
}
|
||||||
|
|
||||||
err = socks5.WriteRequest(conn, socks5.Request{
|
err = socks5.WriteRequest(conn, socks5.Request{
|
||||||
Command: command,
|
Command: command,
|
||||||
Destination: destination,
|
Destination: destination,
|
||||||
|
@ -104,23 +121,13 @@ func ClientHandshake5(conn io.ReadWriter, command byte, destination M.Socksaddr,
|
||||||
return response, err
|
return response, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: use HandleConnectionEx instead.
|
|
||||||
func HandleConnection(ctx context.Context, conn net.Conn, authenticator *auth.Authenticator, handler Handler, metadata M.Metadata) error {
|
|
||||||
return HandleConnection0(ctx, conn, std_bufio.NewReader(conn), authenticator, handler, metadata)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use HandleConnectionEx instead.
|
|
||||||
func HandleConnection0(ctx context.Context, conn net.Conn, reader *std_bufio.Reader, authenticator *auth.Authenticator, handler Handler, metadata M.Metadata) error {
|
|
||||||
return HandleConnectionEx(ctx, conn, reader, authenticator, handler, nil, metadata.Source, metadata.Destination, nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
func HandleConnectionEx(
|
func HandleConnectionEx(
|
||||||
ctx context.Context, conn net.Conn, reader *std_bufio.Reader,
|
ctx context.Context, conn net.Conn, reader *std_bufio.Reader,
|
||||||
authenticator *auth.Authenticator,
|
authenticator *auth.Authenticator,
|
||||||
//nolint:staticcheck
|
handler HandlerEx,
|
||||||
handler Handler,
|
packetListener PacketListener,
|
||||||
handlerEx HandlerEx,
|
// resolver TorResolver,
|
||||||
source M.Socksaddr, destination M.Socksaddr,
|
source M.Socksaddr,
|
||||||
onClose N.CloseHandlerFunc,
|
onClose N.CloseHandlerFunc,
|
||||||
) error {
|
) error {
|
||||||
version, err := reader.ReadByte()
|
version, err := reader.ReadByte()
|
||||||
|
@ -145,21 +152,13 @@ func HandleConnectionEx(
|
||||||
}
|
}
|
||||||
return E.New("socks4: authentication failed, username=", request.Username)
|
return E.New("socks4: authentication failed, username=", request.Username)
|
||||||
}
|
}
|
||||||
destination = request.Destination
|
handler.NewConnectionEx(auth.ContextWithUser(ctx, request.Username), NewLazyConn(conn, version), source, request.Destination, onClose)
|
||||||
if handlerEx != nil {
|
|
||||||
handlerEx.NewConnectionEx(auth.ContextWithUser(ctx, request.Username), NewLazyConn(conn, version), source, destination, onClose)
|
|
||||||
} else {
|
|
||||||
err = socks4.WriteResponse(conn, socks4.Response{
|
|
||||||
ReplyCode: socks4.ReplyCodeGranted,
|
|
||||||
Destination: M.SocksaddrFromNet(conn.LocalAddr()),
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
//nolint:staticcheck
|
|
||||||
return handler.NewConnection(auth.ContextWithUser(ctx, request.Username), conn, M.Metadata{Protocol: "socks4", Source: source, Destination: destination})
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
|
/*case CommandTorResolve, CommandTorResolvePTR:
|
||||||
|
if resolver == nil {
|
||||||
|
return E.New("socks4: torsocks: commands not implemented")
|
||||||
|
}
|
||||||
|
return handleTorSocks4(ctx, conn, request, resolver)*/
|
||||||
default:
|
default:
|
||||||
err = socks4.WriteResponse(conn, socks4.Response{
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
ReplyCode: socks4.ReplyCodeRejectedOrFailed,
|
ReplyCode: socks4.ReplyCodeRejectedOrFailed,
|
||||||
|
@ -223,53 +222,43 @@ func HandleConnectionEx(
|
||||||
}
|
}
|
||||||
switch request.Command {
|
switch request.Command {
|
||||||
case socks5.CommandConnect:
|
case socks5.CommandConnect:
|
||||||
destination = request.Destination
|
handler.NewConnectionEx(ctx, NewLazyConn(conn, version), source, request.Destination, onClose)
|
||||||
if handlerEx != nil {
|
return nil
|
||||||
handlerEx.NewConnectionEx(ctx, NewLazyConn(conn, version), source, destination, onClose)
|
|
||||||
return nil
|
|
||||||
} else {
|
|
||||||
err = socks5.WriteResponse(conn, socks5.Response{
|
|
||||||
ReplyCode: socks5.ReplyCodeSuccess,
|
|
||||||
Bind: M.SocksaddrFromNet(conn.LocalAddr()),
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
//nolint:staticcheck
|
|
||||||
return handler.NewConnection(ctx, conn, M.Metadata{Protocol: "socks5", Source: source, Destination: destination})
|
|
||||||
}
|
|
||||||
case socks5.CommandUDPAssociate:
|
case socks5.CommandUDPAssociate:
|
||||||
var udpConn *net.UDPConn
|
var (
|
||||||
udpConn, err = net.ListenUDP(M.NetworkFromNetAddr("udp", M.AddrFromNet(conn.LocalAddr())), net.UDPAddrFromAddrPort(netip.AddrPortFrom(M.AddrFromNet(conn.LocalAddr()), 0)))
|
listenConfig net.ListenConfig
|
||||||
if err != nil {
|
udpConn net.PacketConn
|
||||||
return err
|
)
|
||||||
}
|
if packetListener != nil {
|
||||||
if handlerEx == nil {
|
udpConn, err = packetListener.ListenPacket(listenConfig, ctx, M.NetworkFromNetAddr("udp", M.AddrFromNet(conn.LocalAddr())), M.SocksaddrFrom(M.AddrFromNet(conn.LocalAddr()), 0).String())
|
||||||
defer udpConn.Close()
|
|
||||||
err = socks5.WriteResponse(conn, socks5.Response{
|
|
||||||
ReplyCode: socks5.ReplyCodeSuccess,
|
|
||||||
Bind: M.SocksaddrFromNet(udpConn.LocalAddr()),
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
destination = request.Destination
|
|
||||||
associatePacketConn := NewAssociatePacketConn(bufio.NewServerPacketConn(udpConn), destination, conn)
|
|
||||||
var innerError error
|
|
||||||
done := make(chan struct{})
|
|
||||||
go func() {
|
|
||||||
//nolint:staticcheck
|
|
||||||
innerError = handler.NewPacketConnection(ctx, associatePacketConn, M.Metadata{Protocol: "socks5", Source: source, Destination: destination})
|
|
||||||
close(done)
|
|
||||||
}()
|
|
||||||
err = common.Error(io.Copy(io.Discard, conn))
|
|
||||||
associatePacketConn.Close()
|
|
||||||
<-done
|
|
||||||
return E.Errors(innerError, err)
|
|
||||||
} else {
|
} else {
|
||||||
handlerEx.NewPacketConnectionEx(ctx, NewLazyAssociatePacketConn(bufio.NewServerPacketConn(udpConn), destination, conn), source, destination, onClose)
|
udpConn, err = listenConfig.ListenPacket(ctx, M.NetworkFromNetAddr("udp", M.AddrFromNet(conn.LocalAddr())), M.SocksaddrFrom(M.AddrFromNet(conn.LocalAddr()), 0).String())
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks5: listen udp")
|
||||||
|
}
|
||||||
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
|
ReplyCode: socks5.ReplyCodeSuccess,
|
||||||
|
Bind: M.SocksaddrFromNet(udpConn.LocalAddr()),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks5: write response")
|
||||||
|
}
|
||||||
|
var socksPacketConn N.PacketConn = NewAssociatePacketConn(bufio.NewServerPacketConn(udpConn), M.Socksaddr{}, conn)
|
||||||
|
firstPacket := buf.NewPacket()
|
||||||
|
var destination M.Socksaddr
|
||||||
|
destination, err = socksPacketConn.ReadPacket(firstPacket)
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks5: read first packet")
|
||||||
|
}
|
||||||
|
socksPacketConn = bufio.NewCachedPacketConn(socksPacketConn, firstPacket, destination)
|
||||||
|
handler.NewPacketConnectionEx(ctx, socksPacketConn, source, destination, onClose)
|
||||||
|
return nil
|
||||||
|
/*case CommandTorResolve, CommandTorResolvePTR:
|
||||||
|
if resolver == nil {
|
||||||
|
return E.New("socks4: torsocks: commands not implemented")
|
||||||
|
}
|
||||||
|
return handleTorSocks5(ctx, conn, request, resolver)*/
|
||||||
default:
|
default:
|
||||||
err = socks5.WriteResponse(conn, socks5.Response{
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
ReplyCode: socks5.ReplyCodeUnsupported,
|
ReplyCode: socks5.ReplyCodeUnsupported,
|
||||||
|
|
146
protocol/socks/handshake_tor.go
Normal file
146
protocol/socks/handshake_tor.go
Normal file
|
@ -0,0 +1,146 @@
|
||||||
|
package socks
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net"
|
||||||
|
"net/netip"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
"github.com/sagernet/sing/protocol/socks/socks4"
|
||||||
|
"github.com/sagernet/sing/protocol/socks/socks5"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
CommandTorResolve byte = 0xF0
|
||||||
|
CommandTorResolvePTR byte = 0xF1
|
||||||
|
)
|
||||||
|
|
||||||
|
type TorResolver interface {
|
||||||
|
LookupIP(ctx context.Context, host string) (netip.Addr, error)
|
||||||
|
LookupPTR(ctx context.Context, addr netip.Addr) (string, error)
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleTorSocks4(ctx context.Context, conn net.Conn, request socks4.Request, resolver TorResolver) error {
|
||||||
|
switch request.Command {
|
||||||
|
case CommandTorResolve:
|
||||||
|
if !request.Destination.IsFqdn() {
|
||||||
|
return E.New("socks4: torsocks: invalid destination")
|
||||||
|
}
|
||||||
|
ipAddr, err := resolver.LookupIP(ctx, request.Destination.Fqdn)
|
||||||
|
if err != nil {
|
||||||
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
|
ReplyCode: socks4.ReplyCodeRejectedOrFailed,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return E.Cause(err, "socks4: torsocks: lookup failed for domain: ", request.Destination.Fqdn)
|
||||||
|
}
|
||||||
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
|
ReplyCode: socks4.ReplyCodeGranted,
|
||||||
|
Destination: M.SocksaddrFrom(ipAddr, 0),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks4: torsocks: write response")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
case CommandTorResolvePTR:
|
||||||
|
var ipAddr netip.Addr
|
||||||
|
if request.Destination.IsIP() {
|
||||||
|
ipAddr = request.Destination.Addr
|
||||||
|
} else if strings.HasSuffix(request.Destination.Fqdn, ".in-addr.arpa") {
|
||||||
|
ipAddr, _ = netip.ParseAddr(request.Destination.Fqdn[:len(request.Destination.Fqdn)-len(".in-addr.arpa")])
|
||||||
|
} else if strings.HasSuffix(request.Destination.Fqdn, ".ip6.arpa") {
|
||||||
|
ipAddr, _ = netip.ParseAddr(strings.ReplaceAll(request.Destination.Fqdn[:len(request.Destination.Fqdn)-len(".ip6.arpa")], ".", ":"))
|
||||||
|
}
|
||||||
|
if !ipAddr.IsValid() {
|
||||||
|
return E.New("socks4: torsocks: invalid destination")
|
||||||
|
}
|
||||||
|
host, err := resolver.LookupPTR(ctx, ipAddr)
|
||||||
|
if err != nil {
|
||||||
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
|
ReplyCode: socks4.ReplyCodeRejectedOrFailed,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return E.Cause(err, "socks4: torsocks: lookup PTR failed for ip: ", ipAddr)
|
||||||
|
}
|
||||||
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
|
ReplyCode: socks4.ReplyCodeGranted,
|
||||||
|
Destination: M.Socksaddr{
|
||||||
|
Fqdn: host,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks4: torsocks: write response")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
default:
|
||||||
|
return os.ErrInvalid
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func handleTorSocks5(ctx context.Context, conn net.Conn, request socks5.Request, resolver TorResolver) error {
|
||||||
|
switch request.Command {
|
||||||
|
case CommandTorResolve:
|
||||||
|
if !request.Destination.IsFqdn() {
|
||||||
|
return E.New("socks5: torsocks: invalid destination")
|
||||||
|
}
|
||||||
|
ipAddr, err := resolver.LookupIP(ctx, request.Destination.Fqdn)
|
||||||
|
if err != nil {
|
||||||
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
|
ReplyCode: socks5.ReplyCodeFailure,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return E.Cause(err, "socks5: torsocks: lookup failed for domain: ", request.Destination.Fqdn)
|
||||||
|
}
|
||||||
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
|
ReplyCode: socks5.ReplyCodeSuccess,
|
||||||
|
Bind: M.SocksaddrFrom(ipAddr, 0),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks5: torsocks: write response")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
case CommandTorResolvePTR:
|
||||||
|
var ipAddr netip.Addr
|
||||||
|
if request.Destination.IsIP() {
|
||||||
|
ipAddr = request.Destination.Addr
|
||||||
|
} else if strings.HasSuffix(request.Destination.Fqdn, ".in-addr.arpa") {
|
||||||
|
ipAddr, _ = netip.ParseAddr(request.Destination.Fqdn[:len(request.Destination.Fqdn)-len(".in-addr.arpa")])
|
||||||
|
} else if strings.HasSuffix(request.Destination.Fqdn, ".ip6.arpa") {
|
||||||
|
ipAddr, _ = netip.ParseAddr(strings.ReplaceAll(request.Destination.Fqdn[:len(request.Destination.Fqdn)-len(".ip6.arpa")], ".", ":"))
|
||||||
|
}
|
||||||
|
if !ipAddr.IsValid() {
|
||||||
|
return E.New("socks5: torsocks: invalid destination")
|
||||||
|
}
|
||||||
|
host, err := resolver.LookupPTR(ctx, ipAddr)
|
||||||
|
if err != nil {
|
||||||
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
|
ReplyCode: socks5.ReplyCodeFailure,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return E.Cause(err, "socks5: torsocks: lookup PTR failed for ip: ", ipAddr)
|
||||||
|
}
|
||||||
|
err = socks5.WriteResponse(conn, socks5.Response{
|
||||||
|
ReplyCode: socks5.ReplyCodeSuccess,
|
||||||
|
Bind: M.Socksaddr{
|
||||||
|
Fqdn: host,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "socks5: torsocks: write response")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
default:
|
||||||
|
return os.ErrInvalid
|
||||||
|
}
|
||||||
|
}
|
|
@ -105,12 +105,11 @@ type LazyAssociatePacketConn struct {
|
||||||
responseWritten bool
|
responseWritten bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewLazyAssociatePacketConn(conn net.Conn, remoteAddr M.Socksaddr, underlying net.Conn) *LazyAssociatePacketConn {
|
func NewLazyAssociatePacketConn(conn net.Conn, underlying net.Conn) *LazyAssociatePacketConn {
|
||||||
return &LazyAssociatePacketConn{
|
return &LazyAssociatePacketConn{
|
||||||
AssociatePacketConn: AssociatePacketConn{
|
AssociatePacketConn: AssociatePacketConn{
|
||||||
AbstractConn: conn,
|
AbstractConn: conn,
|
||||||
conn: bufio.NewExtendedConn(conn),
|
conn: bufio.NewExtendedConn(conn),
|
||||||
remoteAddr: remoteAddr,
|
|
||||||
underlying: underlying,
|
underlying: underlying,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue