-
Notifications
You must be signed in to change notification settings - Fork 10
/
http.go
462 lines (424 loc) · 12.1 KB
/
http.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
package iprepd
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"time"
"github.com/go-redis/redis/v8"
"github.com/gorilla/mux"
log "github.com/sirupsen/logrus"
)
// ViolationRequest represents the structure used to apply a violation to a given
// object. This structure is used as the basis for unmarshaling requests to
// violation handlers in the API.
type ViolationRequest struct {
// The violation name to be applied
Violation string `json:"violation,omitempty"`
// The object the violation should be applied to.
Object string `json:"object,omitempty"`
// The type of object (e.g., ip).
Type string `json:"type,omitempty"`
// An optional recovery suppression value in seconds. If set, it indicates the
// number of seconds which must pass before the reputation for the object will
// begin to recover.
SuppressRecovery int `json:"suppress_recovery,omitempty"`
// The IP field supports reverse compatibility with older clients. It is essentially
// the same thing as passing an IP address in the object field, with a type set to
// ip.
IP string `json:"ip,omitempty"`
}
const (
// TypeIP is the object type for IP addresses
TypeIP = "ip"
// TypeEmail is the object type for email addresses
TypeEmail = "email"
)
// Fixup is used to convert legacy format violations
func (v *ViolationRequest) Fixup(typestr string) {
// Only apply fixup to ip type requests
if typestr != TypeIP {
return
}
// If the type field is not set, set it to the type specified in the request
// path
if v.Type == "" {
v.Type = typestr
}
// If object is not set but the IP field is set, use that as the object
if v.Object == "" && v.IP != "" {
v.Object = v.IP
}
}
// Validate performs validation of a ViolationRequest type
func (v *ViolationRequest) Validate() error {
if v.Violation == "" {
return fmt.Errorf("violation request missing required field violation")
}
if v.Object == "" {
return fmt.Errorf("violation request missing required field object")
}
if v.Type == "" {
return fmt.Errorf("violation request missing required field type")
}
if v.SuppressRecovery > 1209600 {
return fmt.Errorf("invalid suppress recovery value %v", v.SuppressRecovery)
}
return nil
}
func mwHandler(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
s := time.Now()
defer func() {
sruntime.statsd.Timing("http.timing", time.Since(s))
}()
w.Header().Add("X-Frame-Options", "DENY")
w.Header().Add("X-Content-Type-Options", "nosniff")
w.Header().Add("Content-Security-Policy",
"default-src 'none'; frame-ancestors 'none'; report-uri /__cspreport__")
w.Header().Add("Strict-Transport-Security", "max-age=31536000")
h.ServeHTTP(w, r)
})
}
func newRouter() *mux.Router {
r := mux.NewRouter().StrictSlash(true)
// Unauthenticated endpoints
r.HandleFunc("/__lbheartbeat__", httpHeartbeat).Methods("GET")
r.HandleFunc("/__heartbeat__", httpHeartbeat).Methods("GET")
r.HandleFunc("/__version__", httpVersion).Methods("GET")
r.HandleFunc("/violations", auth(httpGetViolations, false)).Methods("GET")
r.HandleFunc("/dump", auth(httpGetAllReputation, true)).Methods("GET")
r.HandleFunc("/type/{type:[a-z]{1,12}}/{value}", auth(httpGetReputation, false)).Methods("GET")
r.HandleFunc("/type/{type:[a-z]{1,12}}/{value}", auth(httpPutReputation, true)).Methods("PUT")
r.HandleFunc("/type/{type:[a-z]{1,12}}/{value}", auth(httpDeleteReputation, true)).Methods("DELETE")
r.HandleFunc("/violations/type/{type:[a-z]{1,12}}/{value}", auth(httpPutViolation, true)).Methods("PUT")
r.HandleFunc("/violations/type/{type:[a-z]{1,12}}", auth(httpPutViolations, true)).Methods("PUT")
// Legacy IP reputation endpoint for get ip
//
// To maintain compatibility with previous API versions, wrap legacy API
// calls to add the type field and route to the correct handler
r.HandleFunc("/{value:(?:[0-9]{1,3}\\.){3}[0-9]{1,3}}",
auth(wrapLegacyIPRequest(httpGetReputation), false)).Methods("GET")
r.NotFoundHandler = http.HandlerFunc(defaultHandler)
return r
}
func startAPI() error {
return http.ListenAndServe(sruntime.cfg.Listen, mwHandler(newRouter()))
}
func wrapLegacyIPRequest(rf func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
m := mux.Vars(r)
m["type"] = TypeIP
mux.SetURLVars(r, m)
rf(w, r)
}
}
func hasValidType(r *http.Request) error {
t := mux.Vars(r)["type"]
_, ok := validators[t]
if !ok {
return fmt.Errorf("type %v is invalid", t)
}
return nil
}
func verifyTypeAndValue(r *http.Request) (t string, v string, err error) {
err = hasValidType(r)
if err != nil {
return t, v, err
}
t = mux.Vars(r)["type"]
if t == "" {
return t, v, fmt.Errorf("type was not set")
}
v = mux.Vars(r)["value"]
if v == "" {
return t, v, fmt.Errorf("value was not set")
}
return t, v, validateType(t, v)
}
func httpVersion(w http.ResponseWriter, r *http.Request) {
w.Write(sruntime.versionResponse)
}
func httpHeartbeat(w http.ResponseWriter, r *http.Request) {
_, err := sruntime.redis.ping().Result()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
}
func defaultHandler(w http.ResponseWriter, r *http.Request) {
err := sruntime.statsd.InvalidUrl()
if err != nil {
log.Warnf(err.Error())
}
w.WriteHeader(http.StatusNotFound)
return
}
func httpGetViolations(w http.ResponseWriter, r *http.Request) {
buf, err := json.Marshal(sruntime.cfg.Violations)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(buf)
}
func httpGetAllReputation(w http.ResponseWriter, r *http.Request) {
allRep, err := RepDump()
if err != nil {
if err == redis.Nil {
w.WriteHeader(http.StatusNotFound)
return
}
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
buf, err := json.Marshal(allRep)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(buf)
}
func httpGetReputation(w http.ResponseWriter, r *http.Request) {
s := time.Now()
defer func() {
sruntime.statsd.Timing("http.get_reputation.timing", time.Since(s))
}()
typestr, valstr, err := verifyTypeAndValue(r)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
// If the request is for an IP type object, consult the exception list. Currently
// exceptions only apply to IP objects.
if typestr == TypeIP {
exc, err := isException(valstr)
if err != nil {
log.Errorf("Error looking up exception: %s", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
if exc {
w.WriteHeader(http.StatusNotFound)
return
}
}
rep, err := repGet(typestr, valstr)
if err != nil {
if err == redis.Nil {
w.WriteHeader(http.StatusNotFound)
return
}
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
buf, err := json.Marshal(rep)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(buf)
}
func httpPutReputation(w http.ResponseWriter, r *http.Request) {
typestr, valstr, err := verifyTypeAndValue(r)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
buf, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
var rep Reputation
err = json.Unmarshal(buf, &rep)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
// Force object field and type to match value specified in request path
rep.Object = valstr
rep.Type = typestr
err = rep.Validate()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
err = rep.set()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
exc := false
if rep.Type == TypeIP {
exc, err = isException(rep.Object)
if err != nil {
log.Errorf("Error looking up exception: %s", err)
}
}
log.WithFields(log.Fields{
"object": rep.Object,
"type": rep.Type,
"reputation": rep.Reputation,
"exception": exc,
}).Info("reputation set")
}
func httpDeleteReputation(w http.ResponseWriter, r *http.Request) {
typestr, valstr, err := verifyTypeAndValue(r)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
err = repDelete(typestr, valstr)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
}
func httpPutViolation(w http.ResponseWriter, r *http.Request) {
typestr, valstr, err := verifyTypeAndValue(r)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
buf, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
var v ViolationRequest
err = json.Unmarshal(buf, &v)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
// Force object field and type to match value specified in request path
v.Object = valstr
v.Type = typestr
httpPutViolationsInner(w, r, typestr, []ViolationRequest{v})
}
func httpPutViolations(w http.ResponseWriter, r *http.Request) {
// We only have a type to verify here
err := hasValidType(r)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
typestr := mux.Vars(r)["type"]
buf, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
var vs []ViolationRequest
err = json.Unmarshal(buf, &vs)
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
httpPutViolationsInner(w, r, typestr, vs)
}
func httpPutViolationsInner(w http.ResponseWriter, r *http.Request, typestr string, vs []ViolationRequest) {
for _, v := range vs {
v.Fixup(typestr)
// Force type field to match value specified in request path
v.Type = typestr
err := v.Validate()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
if err = validateType(v.Type, v.Object); err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusBadRequest)
return
}
rep, err := repGet(typestr, v.Object)
if err == redis.Nil {
rep = Reputation{
Object: v.Object,
Type: typestr,
Reputation: 100,
}
} else if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
err = rep.Validate()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
// If recovery suppression was specified add the correct timestamp to the reputation
// entry. Is suppression is already indicated, only update it if it results in a new
// timestamp that is beyond what the existing value is.
if v.SuppressRecovery > 0 {
nd := time.Now().UTC().Add(time.Second *
time.Duration(v.SuppressRecovery))
if rep.DecayAfter.IsZero() || rep.DecayAfter.Before(nd) {
rep.DecayAfter = nd
}
}
origRep := rep.Reputation
found, err := rep.applyViolation(v.Violation)
if err != nil {
if !found {
// Don't treat submitting an unknown violation as an error, instead
// just log it
log.WithFields(log.Fields{
"violation": v.Violation,
"object": v.Object,
"type": v.Type,
}).Warn("ignoring unknown violation")
continue
}
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
err = rep.set()
if err != nil {
log.Warnf(err.Error())
w.WriteHeader(http.StatusInternalServerError)
return
}
exc := false
if rep.Type == TypeIP {
exc, err = isException(rep.Object)
if err != nil {
log.Errorf("Error looking up exception: %s", err)
}
}
log.WithFields(log.Fields{
"violation": v.Violation,
"object": rep.Object,
"type": rep.Type,
"reputation": rep.Reputation,
"decay_after": rep.DecayAfter,
"original_reputation": origRep,
"exception": exc,
}).Info("violation applied")
}
}