-
Notifications
You must be signed in to change notification settings - Fork 2
/
tlslimit_test.go
281 lines (256 loc) · 6.17 KB
/
tlslimit_test.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package tlslimit
import (
"crypto/tls"
"fmt"
"net"
"net/http"
"testing"
"time"
"github.com/shaj13/libcache"
"github.com/stretchr/testify/require"
)
func TestZeroLimiter(t *testing.T) {
lim := new(Limiter)
for i := 0; i < 100; i++ {
err := lim.limit(new(tls.ClientHelloInfo))
require.Error(t, err)
}
}
func TestOption(t *testing.T) {
table := []struct {
opt Option
assert func(r *require.Assertions, l *Limiter)
}{
{
opt: WithGetCertificate(func(chi *tls.ClientHelloInfo) (*tls.Certificate, error) { return nil, nil }),
assert: func(r *require.Assertions, l *Limiter) {
r.NotNil(l.getCertificate)
},
},
{
opt: WithGetConfigForClient(func(chi *tls.ClientHelloInfo) (*tls.Config, error) { return nil, nil }),
assert: func(r *require.Assertions, l *Limiter) {
r.NotNil(l.getConfigForClient)
},
},
{
opt: WithLimit(time.Second),
assert: func(r *require.Assertions, l *Limiter) {
r.Equal(l.r, time.Second)
},
},
{
opt: WithBursts(100),
assert: func(r *require.Assertions, l *Limiter) {
r.Equal(l.b, 100)
},
},
{
opt: WithTLSHostname(),
assert: func(r *require.Assertions, l *Limiter) {
r.NotNil(l.keyFn)
},
},
{
opt: WithTLSClientIP(),
assert: func(r *require.Assertions, l *Limiter) {
r.NotNil(l.keyFn)
},
},
{
opt: WithCacheMaxSize(100),
assert: func(r *require.Assertions, l *Limiter) {
r.NotNil(l.cache)
r.Equal(l.cache.Cap(), 100)
},
},
}
for _, tt := range table {
lim := NewLimiter(tt.opt)
r := require.New(t)
tt.assert(r, lim)
}
}
func TestLimiterGet(t *testing.T) {
tests := []struct {
getCertificate func(*tls.ClientHelloInfo) (*tls.Certificate, error)
getConfigForClient func(*tls.ClientHelloInfo) (*tls.Config, error)
runGetCertificate bool
expectErr bool
}{
{
runGetCertificate: true,
},
{
runGetCertificate: true,
expectErr: true,
getCertificate: func(chi *tls.ClientHelloInfo) (*tls.Certificate, error) {
return nil, fmt.Errorf("")
},
},
{
runGetCertificate: true,
getCertificate: func(chi *tls.ClientHelloInfo) (*tls.Certificate, error) {
return nil, nil
},
},
{
runGetCertificate: false,
},
{
expectErr: true,
getConfigForClient: func(chi *tls.ClientHelloInfo) (*tls.Config, error) {
return nil, fmt.Errorf("")
},
},
{
getConfigForClient: func(chi *tls.ClientHelloInfo) (*tls.Config, error) {
return nil, nil
},
},
}
for _, tt := range tests {
lim := NewLimiter(
WithLimit(1),
WithBursts(1),
WithGetCertificate(tt.getCertificate),
WithGetConfigForClient(tt.getConfigForClient),
)
var err error
ci := new(tls.ClientHelloInfo)
if tt.runGetCertificate {
_, err = lim.GetCertificate(ci)
} else {
_, err = lim.GetConfigForClient(ci)
}
require.Equal(t, tt.expectErr, err != nil)
}
}
func TestLimiterLimit(t *testing.T) {
tests := []struct {
lim *Limiter
expectErr bool
}{
{
lim: new(Limiter),
expectErr: true,
},
{
lim: &Limiter{
cache: libcache.LRU.New(0),
},
expectErr: true,
},
{
lim: &Limiter{
cache: libcache.LRU.New(0),
r: time.Second,
},
expectErr: true,
},
{
lim: &Limiter{
cache: libcache.LRU.New(0),
keyFn: func(chi *tls.ClientHelloInfo) string { return "" },
r: time.Second,
b: 1,
},
},
}
for _, tt := range tests {
ci := new(tls.ClientHelloInfo)
err := tt.lim.limit(ci)
require.Equal(t, tt.expectErr, err != nil)
}
}
var ecdsaCertPEM = `-----BEGIN CERTIFICATE-----
MIIB/jCCAWICCQDscdUxw16XFDAJBgcqhkjOPQQBMEUxCzAJBgNVBAYTAkFVMRMw
EQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0
eSBMdGQwHhcNMTIxMTE0MTI0MDQ4WhcNMTUxMTE0MTI0MDQ4WjBFMQswCQYDVQQG
EwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lk
Z2l0cyBQdHkgTHRkMIGbMBAGByqGSM49AgEGBSuBBAAjA4GGAAQBY9+my9OoeSUR
lDQdV/x8LsOuLilthhiS1Tz4aGDHIPwC1mlvnf7fg5lecYpMCrLLhauAc1UJXcgl
01xoLuzgtAEAgv2P/jgytzRSpUYvgLBt1UA0leLYBy6mQQbrNEuqT3INapKIcUv8
XxYP0xMEUksLPq6Ca+CRSqTtrd/23uTnapkwCQYHKoZIzj0EAQOBigAwgYYCQXJo
A7Sl2nLVf+4Iu/tAX/IF4MavARKC4PPHK3zfuGfPR3oCCcsAoz3kAzOeijvd0iXb
H5jBImIxPL4WxQNiBTexAkF8D1EtpYuWdlVQ80/h/f4pBcGiXPqX5h2PQSQY7hP1
+jwM1FGS4fREIOvlBYr/SzzQRtwrvrzGYxDEDbsC0ZGRnA==
-----END CERTIFICATE-----
`
var ecdsaKeyPEM = `-----BEGIN EC PARAMETERS-----
BgUrgQQAIw==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MIHcAgEBBEIBrsoKp0oqcv6/JovJJDoDVSGWdirrkgCWxrprGlzB9o0X8fV675X0
NwuBenXFfeZvVcwluO7/Q9wkYoPd/t3jGImgBwYFK4EEACOhgYkDgYYABAFj36bL
06h5JRGUNB1X/Hwuw64uKW2GGJLVPPhoYMcg/ALWaW+d/t+DmV5xikwKssuFq4Bz
VQldyCXTXGgu7OC0AQCC/Y/+ODK3NFKlRi+AsG3VQDSV4tgHLqZBBus0S6pPcg1q
kohxS/xfFg/TEwRSSws+roJr4JFKpO2t3/be5OdqmQ==
-----END EC PRIVATE KEY-----
`
func TestEverything(t *testing.T) {
lim := NewLimiter(
WithLimit(time.Second),
WithBursts(10),
WithGetCertificate(func(chi *tls.ClientHelloInfo) (*tls.Certificate, error) {
cert, err := tls.X509KeyPair([]byte(ecdsaCertPEM), []byte(ecdsaKeyPEM))
if err != nil {
return nil, err
}
return &cert, nil
}),
WithTLSClientIP(),
)
srv := &http.Server{
Addr: "127.0.0.1:8080",
TLSConfig: &tls.Config{
GetCertificate: lim.GetCertificate,
},
}
defer srv.Close()
url := "https://" + srv.Addr
go func() {
err := srv.ListenAndServeTLS("", "")
if err != http.ErrServerClosed {
require.NoError(t, err)
}
}()
newClient := func() *http.Client {
return &http.Client{
Transport: &http.Transport{
ForceAttemptHTTP2: true,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
},
}
}
advance := func(c *http.Client, max int) {
ok := c != nil
for i := 0; i < max; i++ {
if !ok {
c = newClient()
}
_, err := c.Get(url)
require.NoError(t, err, i)
}
}
// Wait for server to be up and live.
for i := 0; i < 10; i++ {
conn, err := net.DialTimeout("tcp", srv.Addr, time.Second)
if err == nil {
conn.Close()
break
}
time.Sleep(time.Millisecond * 500)
}
// Round #1 TLS handshakes limit exceeded.
advance(nil, 10)
c := newClient()
_, err := c.Get(url)
require.Error(t, err)
// Round #2 TLS session resumption is used the rate limiting will not be applied.
lim.cache.Purge()
c = newClient()
advance(c, 100)
}