-
Notifications
You must be signed in to change notification settings - Fork 2
/
ratelimit.go
133 lines (111 loc) · 3.47 KB
/
ratelimit.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright 2021 Matthew Holt
// 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.
package caddyrl
import (
"fmt"
"net"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
"github.com/oschwald/geoip2-golang"
)
type Rule struct {
// true means allow and false means deny
Action bool `json:"action"`
CidrFilter []string `json:"cidr,omitempty"`
// Country and City are ISO 3166-1
City []string `json:"city,omitempty"`
Country []string `json:"country,omitempty"`
cidr []*net.IPNet
}
// RateLimit describes an HTTP rate limit zone.
type RateLimit struct {
// Request matchers, which defines the class of requests that are in the RL zone.
MatcherSetsRaw caddyhttp.RawMatcherSets `json:"match,omitempty" caddy:"namespace=http.matchers"`
// The key which uniquely differentiates rate limits within this zone. It could
// be a static string (no placeholders), resulting in one and only one rate limiter
// for the whole zone. Or, placeholders could be used to dynamically allocate
// rate limiters. For example, a key of "foo" will create exactly one rate limiter
// for all clients. But a key of "{http.request.remote.host}" will create one rate
// limiter for each different client IP address.
// Key string `json:"key,omitempty"`
// Number of events allowed within the window.
MaxEvents int `json:"max_events,omitempty"`
// Duration of the sliding window.
Window caddy.Duration `json:"window,omitempty"`
BanDuration caddy.Duration `json:"ban_duration,omitempty"`
matcherSets caddyhttp.MatcherSets
zoneName string
}
func (rl *RateLimit) provision(ctx caddy.Context, name string) error {
if rl.Window <= 0 {
return fmt.Errorf("window must be greater than zero")
}
if rl.MaxEvents < 0 {
return fmt.Errorf("max_events must be at least zero")
}
if rl.BanDuration < 0 {
return fmt.Errorf("ban_duration must be non-negative")
}
if len(rl.MatcherSetsRaw) > 0 {
matcherSets, err := ctx.LoadModule(rl, "MatcherSetsRaw")
if err != nil {
return err
}
err = rl.matcherSets.FromInterface(matcherSets)
if err != nil {
return err
}
}
return nil
}
func (rl *RateLimit) permissiveness() float64 {
return float64(rl.MaxEvents) / float64(rl.Window)
}
func (r *Rule) provision() error {
for _, cidr_str := range r.CidrFilter {
_, cidr, err := net.ParseCIDR(cidr_str)
if err != nil {
return err
}
r.cidr = append(r.cidr, cidr)
}
return nil
}
func (r *Rule) match(ip net.IP, geoip *geoip2.Reader) bool {
for _, cidr := range r.cidr {
if cidr.Contains(ip) {
return true
}
}
if geoip == nil {
return false
}
if len(r.City) != 0 || len(r.Country) != 0 {
city, err := geoip.City(ip)
if err != nil {
if len(r.Country) != 0 && Contains(r.Country, city.Country.IsoCode) {
return true
}
if len(r.City) != 0 && Contains(r.City, city.City.Names["zh-CN"]) {
return true
}
}
}
return false
}
func Contains[T comparable](s []T, e T) bool {
for _, v := range s {
if v == e {
return true
}
}
return false
}