-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvalidator_pow_test.go
More file actions
241 lines (198 loc) · 5.55 KB
/
Copy pathvalidator_pow_test.go
File metadata and controls
241 lines (198 loc) · 5.55 KB
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
package berghain
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"net/netip"
"strconv"
"testing"
"time"
)
func solvePOW(tb testing.TB, b []byte) ([]byte, error) {
tb.Helper()
type powChallenge struct {
T int `json:"t"`
R string `json:"r"`
S string `json:"s"`
I string `json:"i"`
}
var p powChallenge
if err := json.NewDecoder(bytes.NewReader(b)).Decode(&p); err != nil {
return nil, err
}
if p.T != 1 {
return nil, fmt.Errorf("invalid challenge type: %d", p.T)
}
h := NewZeroHasher(hashAlgo())
for i := 0; true; i++ {
h.Write([]byte(p.R))
is := strconv.Itoa(i)
h.Write([]byte(is))
if bytes.HasPrefix(h.Sum(nil), []byte{0x00, 0x00}) {
return []byte(p.R + "-" + p.S + "-" + is), nil
}
h.Reset()
}
panic("unreachable")
}
func expectedPOWChallengeLength(supportID []byte) int {
return len(validatorPOWChallengeTemplate) + len(`,"i":""`) + len(supportID)
}
func Test_validatorPOW(t *testing.T) {
bh := NewBerghain(generateSecret(t))
bh.Levels = []*LevelConfig{
{
Duration: time.Minute,
Type: ValidationTypePOW,
},
}
req, resp := AcquireValidatorRequest(), AcquireValidatorResponse()
req.Identifier = &RequestIdentifier{
SrcAddr: netip.MustParseAddr("1.2.3.4"),
Host: []byte("example.com"),
Level: 1,
}
req.Method = http.MethodGet
req.SupportID = []byte("bh@123e4567-e89b-12d3-a456-426614174000")
if err := validatorPOW(bh, req, resp); err != nil {
t.Errorf("validator failed: %v", err)
}
if resp.Body.Len() != expectedPOWChallengeLength(req.SupportID) {
t.Errorf("invalid challenge response length: %d", resp.Body.Len())
}
var challenge struct {
SupportID string `json:"i"`
}
if err := json.Unmarshal(resp.Body.ReadBytes(), &challenge); err != nil {
t.Fatalf("decode challenge: %v", err)
}
if challenge.SupportID != string(req.SupportID) {
t.Fatalf("support ID = %q, want %q", challenge.SupportID, req.SupportID)
}
solution, err := solvePOW(t, resp.Body.ReadBytes())
if err != nil {
t.Errorf("while solving pow: %v", err)
}
// Do another request but this time as POST and with the solution.
req.Method = http.MethodPost
changed := bytes.Clone(solution)
changed[len(validatorPOWRandom)-1] = '1'
req.Body = changed
if err := validatorPOW(bh, req, resp); err != ErrInvalidHMAC {
t.Errorf("changed support ID error = %v, want %v", err, ErrInvalidHMAC)
}
req.Body = solution
if err := validatorPOW(bh, req, resp); err != nil {
t.Errorf("validator failed: %v", err)
}
if resp.Body.Len() != 0 {
t.Errorf("invalid response length: %d != %d", 0, resp.Body.Len())
}
err = bh.IsValidCookie(*req.Identifier, resp.Token.ReadBytes())
if err != nil {
t.Errorf("invalid cookie: %v", err)
}
}
func Test_validatorPOW_unique(t *testing.T) {
bh := NewBerghain(generateSecret(t))
bh.Levels = []*LevelConfig{
{
Duration: time.Minute,
Type: ValidationTypePOW,
},
}
req, resp := AcquireValidatorRequest(), AcquireValidatorResponse()
req.Identifier = &RequestIdentifier{
SrcAddr: netip.MustParseAddr("1.2.3.4"),
Host: []byte("example.com"),
Level: 1,
}
req.Method = http.MethodGet
req.SupportID = []byte("bh@123e4567-e89b-12d3-a456-426614174000")
if err := validatorPOW(bh, req, resp); err != nil {
t.Errorf("validator failed: %v", err)
}
if resp.Body.Len() != expectedPOWChallengeLength(req.SupportID) {
t.Errorf("invalid challenge response length: %d", resp.Body.Len())
}
solution, err := solvePOW(t, resp.Body.ReadBytes())
if err != nil {
t.Errorf("while solving pow: %v", err)
}
// Do another request but this time as POST and with the solution.
req.Method = http.MethodPost
req.Body = solution
req.Identifier.SrcAddr = netip.MustParseAddr("1.2.3.5")
if err := validatorPOW(bh, req, resp); err == nil {
t.Errorf("validator should have failed")
}
}
func Benchmark_validatorPOW_GET(b *testing.B) {
bh := NewBerghain(generateSecret(b))
bh.Levels = []*LevelConfig{
{
Duration: time.Minute,
Type: ValidationTypePOW,
},
}
ri := RequestIdentifier{
SrcAddr: netip.MustParseAddr("1.2.3.4"),
Host: []byte("example.com"),
Level: 1,
}
req := AcquireValidatorRequest()
defer ReleaseValidatorRequest(req)
req.Identifier = &ri
req.Method = http.MethodGet
req.SupportID = []byte("bh@123e4567-e89b-12d3-a456-426614174000")
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
resp := AcquireValidatorResponse()
if err := validatorPOW(bh, req, resp); err != nil {
b.Errorf("validator failed: %v", err)
}
ReleaseValidatorResponse(resp)
}
})
}
func Benchmark_validatorPOW_POST(b *testing.B) {
bh := NewBerghain(generateSecret(b))
bh.Levels = []*LevelConfig{
{
Duration: time.Minute,
Type: ValidationTypePOW,
},
}
ri := RequestIdentifier{
SrcAddr: netip.MustParseAddr("1.2.3.4"),
Host: []byte("example.com"),
Level: 1,
}
req, resp := AcquireValidatorRequest(), AcquireValidatorResponse()
defer ReleaseValidatorRequest(req)
req.Identifier = &ri
req.Method = http.MethodGet
req.SupportID = []byte("bh@123e4567-e89b-12d3-a456-426614174000")
if err := validatorPOW(bh, req, resp); err != nil {
b.Errorf("validator failed: %v", err)
}
solution, err := solvePOW(b, resp.Body.ReadBytes())
if err != nil {
b.Errorf("while solving pow: %v", err)
}
ReleaseValidatorResponse(resp)
req.Method = http.MethodPost
req.Body = solution
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
resp := AcquireValidatorResponse()
if err := validatorPOW(bh, req, resp); err != nil {
b.Errorf("validator failed: %v", err)
}
ReleaseValidatorResponse(resp)
}
})
}