mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-06 18:10:26 +08:00
83 lines
1.5 KiB
Go
83 lines
1.5 KiB
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package waf
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils/expires"
|
||
|
|
"sync"
|
||
|
|
"sync/atomic"
|
||
|
|
)
|
||
|
|
|
||
|
|
var SharedIPWhiteList = NewIPList()
|
||
|
|
var SharedIPBlackLIst = NewIPList()
|
||
|
|
|
||
|
|
const IPTypeAll = "*"
|
||
|
|
|
||
|
|
// IPList IP列表管理
|
||
|
|
type IPList struct {
|
||
|
|
expireList *expires.List
|
||
|
|
ipMap map[string]int64 // ip => id
|
||
|
|
idMap map[int64]string // id => ip
|
||
|
|
|
||
|
|
id int64
|
||
|
|
locker sync.RWMutex
|
||
|
|
}
|
||
|
|
|
||
|
|
// NewIPList 获取新对象
|
||
|
|
func NewIPList() *IPList {
|
||
|
|
var list = &IPList{
|
||
|
|
ipMap: map[string]int64{},
|
||
|
|
idMap: map[int64]string{},
|
||
|
|
}
|
||
|
|
|
||
|
|
e := expires.NewList()
|
||
|
|
list.expireList = e
|
||
|
|
|
||
|
|
go func() {
|
||
|
|
e.StartGC(func(itemId int64) {
|
||
|
|
list.remove(itemId)
|
||
|
|
})
|
||
|
|
}()
|
||
|
|
|
||
|
|
return list
|
||
|
|
}
|
||
|
|
|
||
|
|
// Add 添加IP
|
||
|
|
func (this *IPList) Add(ipType string, ip string, expiresAt int64) {
|
||
|
|
ip = ip + "@" + ipType
|
||
|
|
|
||
|
|
var id = this.nextId()
|
||
|
|
this.expireList.Add(id, expiresAt)
|
||
|
|
this.locker.Lock()
|
||
|
|
this.ipMap[ip] = id
|
||
|
|
this.idMap[id] = ip
|
||
|
|
this.locker.Unlock()
|
||
|
|
}
|
||
|
|
|
||
|
|
// Contains 判断是否有某个IP
|
||
|
|
func (this *IPList) Contains(ipType string, ip string) bool {
|
||
|
|
ip = ip + "@" + ipType
|
||
|
|
|
||
|
|
this.locker.RLock()
|
||
|
|
defer this.locker.RUnlock()
|
||
|
|
_, ok := this.ipMap[ip]
|
||
|
|
return ok
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *IPList) remove(id int64) {
|
||
|
|
this.locker.Lock()
|
||
|
|
ip, ok := this.idMap[id]
|
||
|
|
if ok {
|
||
|
|
ipId, ok := this.ipMap[ip]
|
||
|
|
if ok && ipId == id {
|
||
|
|
delete(this.ipMap, ip)
|
||
|
|
}
|
||
|
|
delete(this.idMap, id)
|
||
|
|
}
|
||
|
|
this.locker.Unlock()
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *IPList) nextId() int64 {
|
||
|
|
return atomic.AddInt64(&this.id, 1)
|
||
|
|
}
|