mirror of https://github.com/minio/minio.git
104 lines
2.4 KiB
Go
104 lines
2.4 KiB
Go
/*
|
|
* Minimalist Object Storage, (C) 2015 Minio, Inc.
|
|
*
|
|
* 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 quota
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"log"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
// map[minute][address] = current quota
|
|
type quotaMap struct {
|
|
sync.RWMutex
|
|
data map[int64]map[uint32]uint64
|
|
limit uint64
|
|
duration int64
|
|
}
|
|
|
|
func (q *quotaMap) Add(ip uint32, size uint64) bool {
|
|
currentMinute := time.Now().Unix() / q.duration
|
|
expiredQuotas := (time.Now().Unix() / q.duration) - 5
|
|
for time := range q.data {
|
|
if time < expiredQuotas {
|
|
delete(q.data, time)
|
|
}
|
|
}
|
|
log.Println(currentMinute)
|
|
if _, ok := q.data[currentMinute]; !ok {
|
|
q.data[currentMinute] = make(map[uint32]uint64)
|
|
}
|
|
currentData, _ := q.data[currentMinute][ip]
|
|
q.data[currentMinute][ip] = currentData + size
|
|
return false
|
|
}
|
|
|
|
// HttpQuotaHandler
|
|
type httpQuotaHandler struct {
|
|
handler http.Handler
|
|
quotas *quotaMap
|
|
}
|
|
|
|
type longIP struct {
|
|
net.IP
|
|
}
|
|
|
|
// []byte to uint32 representation
|
|
func (p longIP) IptoUint32() uint32 {
|
|
ip := p.To4()
|
|
if ip == nil {
|
|
return 0
|
|
}
|
|
// golang net.IP is BigEndian
|
|
return binary.BigEndian.Uint32([]byte(ip))
|
|
}
|
|
|
|
// any uint32 back to IP representation
|
|
func uint32ToIP(ip uint32) net.IP {
|
|
addr := net.IP{0, 0, 0, 0}
|
|
binary.BigEndian.PutUint32(addr, ip)
|
|
return addr
|
|
}
|
|
|
|
// ServeHTTP is an http.Handler ServeHTTP method
|
|
func (h *httpQuotaHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
host, _, _ := net.SplitHostPort(req.RemoteAddr)
|
|
log.Println(host)
|
|
|
|
longIP := longIP{net.ParseIP(host)}
|
|
h.quotas.Add(longIP.IptoUint32(), uint64(req.ContentLength))
|
|
|
|
log.Println("quota called")
|
|
log.Println(h.quotas)
|
|
h.handler.ServeHTTP(w, req)
|
|
}
|
|
|
|
// Handler implements quotas
|
|
func Handler(h http.Handler, limit int64) http.Handler {
|
|
return &httpQuotaHandler{
|
|
handler: h,
|
|
quotas: "aMap{
|
|
data: make(map[int64]map[uint32]uint64),
|
|
limit: uint64(limit),
|
|
duration: int64(60),
|
|
},
|
|
}
|
|
}
|