-
Notifications
You must be signed in to change notification settings - Fork 97
/
crproxy_control.go
80 lines (72 loc) · 1.9 KB
/
crproxy_control.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
package crproxy
import (
"net/http"
"strconv"
"time"
"github.com/docker/distribution/registry/api/errcode"
"github.com/wzshiming/geario"
)
func (c *CRProxy) isPrivileged(r *http.Request, info *ImageInfo) bool {
if c.privilegedFunc == nil {
return false
}
return c.privilegedFunc(r, info)
}
func (c *CRProxy) checkLimit(rw http.ResponseWriter, r *http.Request, info *PathInfo) bool {
if c.ipsSpeedLimit != nil && info.Blobs != "" {
bps, _ := c.speedLimitRecord.LoadOrStore(r.RemoteAddr, geario.NewBPSAver(c.ipsSpeedLimitDuration))
aver := bps.Aver()
if aver > *c.ipsSpeedLimit {
if c.logger != nil {
c.logger.Println("exceed limit", r.RemoteAddr, aver, *c.ipsSpeedLimit)
}
if c.limitDelay {
for bps.Aver() > *c.ipsSpeedLimit {
wait := time.Second
n := bps.Next()
if !n.IsZero() {
wait = bps.Next().Sub(time.Now())
if wait < time.Second {
wait = time.Second
}
}
select {
case <-r.Context().Done():
return false
case <-time.After(wait):
}
}
} else {
err := errcode.ErrorCodeTooManyRequests
rw.Header().Set("X-Retry-After", strconv.FormatInt(bps.Next().Unix(), 10))
errcode.ServeJSON(rw, err)
return false
}
}
}
return true
}
func (c *CRProxy) waitForLimit(r *http.Request, info *PathInfo, size int64) bool {
if c.blobsSpeedLimit != nil && info.Blobs != "" {
dur := GetSleepDuration(geario.B(size), *c.blobsSpeedLimit, c.blobsSpeedLimitDuration)
if dur > 0 {
if c.logger != nil {
c.logger.Println("delay request", r.RemoteAddr, geario.B(size), dur)
}
select {
case <-r.Context().Done():
return false
case <-time.After(dur):
}
}
}
return true
}
func (c *CRProxy) accumulativeLimit(r *http.Request, info *PathInfo, size int64) {
if c.ipsSpeedLimit != nil && info.Blobs != "" {
bps, ok := c.speedLimitRecord.Load(r.RemoteAddr)
if ok {
bps.Add(geario.B(size))
}
}
}