2018-02-12 20:10:44 +01:00
|
|
|
package main
|
2017-07-11 18:48:29 +02:00
|
|
|
|
2017-07-12 23:11:49 +02:00
|
|
|
/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
|
|
|
|
|
2018-02-11 23:01:55 +01:00
|
|
|
/* This file contains a port of the rate-limiter from the linux kernel version */
|
2017-07-11 18:48:29 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-02-11 23:01:55 +01:00
|
|
|
packetsPerSecond = 20
|
|
|
|
packetsBurstable = 5
|
|
|
|
garbageCollectTime = time.Second
|
|
|
|
packetCost = 1000000000 / packetsPerSecond
|
|
|
|
maxTokens = packetCost * packetsBurstable
|
2017-07-11 18:48:29 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type RatelimiterEntry struct {
|
|
|
|
mutex sync.Mutex
|
|
|
|
lastTime time.Time
|
|
|
|
tokens int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Ratelimiter struct {
|
2018-02-11 22:53:39 +01:00
|
|
|
mutex sync.RWMutex
|
|
|
|
stop chan struct{}
|
|
|
|
tableIPv4 map[[net.IPv4len]byte]*RatelimiterEntry
|
|
|
|
tableIPv6 map[[net.IPv6len]byte]*RatelimiterEntry
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rate *Ratelimiter) Close() {
|
|
|
|
rate.mutex.Lock()
|
|
|
|
defer rate.mutex.Unlock()
|
|
|
|
|
|
|
|
if rate.stop != nil {
|
|
|
|
close(rate.stop)
|
|
|
|
}
|
2017-07-11 18:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rate *Ratelimiter) Init() {
|
|
|
|
rate.mutex.Lock()
|
|
|
|
defer rate.mutex.Unlock()
|
2018-02-11 22:53:39 +01:00
|
|
|
|
2018-02-11 23:01:55 +01:00
|
|
|
// stop any ongoing garbage collection routine
|
|
|
|
|
2018-02-11 22:53:39 +01:00
|
|
|
if rate.stop != nil {
|
|
|
|
close(rate.stop)
|
|
|
|
}
|
|
|
|
|
|
|
|
rate.stop = make(chan struct{})
|
2017-07-11 18:48:29 +02:00
|
|
|
rate.tableIPv4 = make(map[[net.IPv4len]byte]*RatelimiterEntry)
|
|
|
|
rate.tableIPv6 = make(map[[net.IPv6len]byte]*RatelimiterEntry)
|
2018-02-11 22:53:39 +01:00
|
|
|
|
2018-02-11 23:01:55 +01:00
|
|
|
// start garbage collection routine
|
|
|
|
|
2018-02-11 22:53:39 +01:00
|
|
|
go func() {
|
|
|
|
timer := time.NewTimer(time.Second)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-rate.stop:
|
|
|
|
return
|
|
|
|
case <-timer.C:
|
2018-02-11 23:01:55 +01:00
|
|
|
func() {
|
|
|
|
rate.mutex.Lock()
|
|
|
|
defer rate.mutex.Unlock()
|
|
|
|
|
|
|
|
for key, entry := range rate.tableIPv4 {
|
|
|
|
entry.mutex.Lock()
|
|
|
|
if time.Now().Sub(entry.lastTime) > garbageCollectTime {
|
|
|
|
delete(rate.tableIPv4, key)
|
|
|
|
}
|
|
|
|
entry.mutex.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
for key, entry := range rate.tableIPv6 {
|
|
|
|
entry.mutex.Lock()
|
|
|
|
if time.Now().Sub(entry.lastTime) > garbageCollectTime {
|
|
|
|
delete(rate.tableIPv6, key)
|
|
|
|
}
|
|
|
|
entry.mutex.Unlock()
|
|
|
|
}
|
|
|
|
}()
|
2018-02-11 22:53:39 +01:00
|
|
|
timer.Reset(time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2017-07-11 18:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rate *Ratelimiter) Allow(ip net.IP) bool {
|
|
|
|
var entry *RatelimiterEntry
|
|
|
|
var KeyIPv4 [net.IPv4len]byte
|
|
|
|
var KeyIPv6 [net.IPv6len]byte
|
|
|
|
|
|
|
|
// lookup entry
|
|
|
|
|
|
|
|
IPv4 := ip.To4()
|
|
|
|
IPv6 := ip.To16()
|
|
|
|
|
|
|
|
rate.mutex.RLock()
|
|
|
|
|
|
|
|
if IPv4 != nil {
|
|
|
|
copy(KeyIPv4[:], IPv4)
|
|
|
|
entry = rate.tableIPv4[KeyIPv4]
|
|
|
|
} else {
|
|
|
|
copy(KeyIPv6[:], IPv6)
|
|
|
|
entry = rate.tableIPv6[KeyIPv6]
|
|
|
|
}
|
|
|
|
|
|
|
|
rate.mutex.RUnlock()
|
|
|
|
|
|
|
|
// make new entry if not found
|
|
|
|
|
|
|
|
if entry == nil {
|
|
|
|
rate.mutex.Lock()
|
|
|
|
entry = new(RatelimiterEntry)
|
2018-02-11 23:01:55 +01:00
|
|
|
entry.tokens = maxTokens - packetCost
|
2017-07-11 18:48:29 +02:00
|
|
|
entry.lastTime = time.Now()
|
|
|
|
if IPv4 != nil {
|
|
|
|
rate.tableIPv4[KeyIPv4] = entry
|
|
|
|
} else {
|
|
|
|
rate.tableIPv6[KeyIPv6] = entry
|
|
|
|
}
|
|
|
|
rate.mutex.Unlock()
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// add tokens to entry
|
|
|
|
|
|
|
|
entry.mutex.Lock()
|
|
|
|
now := time.Now()
|
|
|
|
entry.tokens += now.Sub(entry.lastTime).Nanoseconds()
|
|
|
|
entry.lastTime = now
|
2018-02-11 23:01:55 +01:00
|
|
|
if entry.tokens > maxTokens {
|
|
|
|
entry.tokens = maxTokens
|
2017-07-11 18:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// subtract cost of packet
|
|
|
|
|
2018-02-11 23:01:55 +01:00
|
|
|
if entry.tokens > packetCost {
|
|
|
|
entry.tokens -= packetCost
|
2017-07-11 18:48:29 +02:00
|
|
|
entry.mutex.Unlock()
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
entry.mutex.Unlock()
|
|
|
|
return false
|
|
|
|
}
|