2024-11-22 10:57:25 -05:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2024-11-22 11:58:15 -05:00
|
|
|
"math/big"
|
2024-11-22 10:57:25 -05:00
|
|
|
"time"
|
|
|
|
|
2024-11-28 06:38:54 -05:00
|
|
|
"github.com/nezhahq/nezha/pkg/utils"
|
2024-11-22 10:57:25 -05:00
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ uint8 = iota
|
|
|
|
WAFBlockReasonTypeLoginFail
|
|
|
|
WAFBlockReasonTypeBruteForceToken
|
2024-11-22 23:43:02 -05:00
|
|
|
WAFBlockReasonTypeAgentAuthFail
|
2024-11-22 10:57:25 -05:00
|
|
|
)
|
|
|
|
|
2024-12-21 05:34:46 -05:00
|
|
|
const (
|
|
|
|
BlockIDgRPC = -127 + iota
|
|
|
|
BlockIDToken
|
|
|
|
BlockIDUnknownUser
|
|
|
|
)
|
|
|
|
|
2024-11-30 08:33:18 -05:00
|
|
|
type WAFApiMock struct {
|
2024-12-21 05:34:46 -05:00
|
|
|
ID uint64 `json:"id,omitempty"`
|
|
|
|
IP string `json:"ip,omitempty"`
|
|
|
|
BlockReason uint8 `json:"block_reason,omitempty"`
|
|
|
|
BlockTimestamp uint64 `json:"block_timestamp,omitempty"`
|
|
|
|
BlockIdentifier uint64 `json:"block_identifier,omitempty"`
|
2024-11-30 08:33:18 -05:00
|
|
|
}
|
|
|
|
|
2024-11-22 10:57:25 -05:00
|
|
|
type WAF struct {
|
2024-12-21 05:34:46 -05:00
|
|
|
ID uint64 `gorm:"primaryKey" json:"id,omitempty"`
|
|
|
|
IP []byte `gorm:"type:binary(16);index:idx_block_identifier" json:"ip,omitempty"`
|
|
|
|
BlockReason uint8 `json:"block_reason,omitempty"`
|
|
|
|
BlockTimestamp uint64 `json:"block_timestamp,omitempty"`
|
|
|
|
BlockIdentifier int64 `gorm:"index:idx_block_identifier" json:"block_identifier,omitempty"`
|
2024-11-22 10:57:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w *WAF) TableName() string {
|
2024-12-21 05:34:46 -05:00
|
|
|
return "nz_waf"
|
2024-11-22 10:57:25 -05:00
|
|
|
}
|
|
|
|
|
2024-11-22 11:58:15 -05:00
|
|
|
func CheckIP(db *gorm.DB, ip string) error {
|
2024-11-22 21:21:01 -05:00
|
|
|
if ip == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ipBinary, err := utils.IPStringToBinary(ip)
|
2024-11-22 11:58:15 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
|
|
|
|
var blockTimestamp uint64
|
2024-12-21 06:16:28 -05:00
|
|
|
result := db.Model(&WAF{}).Select("block_timestamp").Order("id desc").Where("ip = ?", ipBinary).Limit(1).Find(&blockTimestamp)
|
|
|
|
if result.Error != nil {
|
2024-12-04 07:00:35 -05:00
|
|
|
return result.Error
|
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
|
|
|
|
// 检查是否未找到记录
|
|
|
|
if result.RowsAffected < 1 {
|
2024-12-04 07:00:35 -05:00
|
|
|
return nil
|
2024-11-22 11:58:15 -05:00
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
|
|
|
|
var count int64
|
|
|
|
if err := db.Model(&WAF{}).Where("ip = ?", ipBinary).Count(&count).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-11-22 11:58:15 -05:00
|
|
|
now := time.Now().Unix()
|
2024-12-21 05:34:46 -05:00
|
|
|
if powAdd(uint64(count), 4, blockTimestamp) > uint64(now) {
|
2024-11-22 11:58:15 -05:00
|
|
|
return errors.New("you are blocked by nezha WAF")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-12-21 05:34:46 -05:00
|
|
|
func ClearIP(db *gorm.DB, ip string, uid int64) error {
|
2024-11-22 21:21:01 -05:00
|
|
|
if ip == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ipBinary, err := utils.IPStringToBinary(ip)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
return db.Unscoped().Delete(&WAF{}, "ip = ? and block_identifier = ?", ipBinary, uid).Error
|
2024-11-23 03:22:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func BatchClearIP(db *gorm.DB, ip []string) error {
|
|
|
|
if len(ip) < 1 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ips := make([][]byte, 0, len(ip))
|
|
|
|
for _, s := range ip {
|
|
|
|
ipBinary, err := utils.IPStringToBinary(s)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ips = append(ips, ipBinary)
|
|
|
|
}
|
|
|
|
return db.Unscoped().Delete(&WAF{}, "ip in (?)", ips).Error
|
2024-11-22 21:21:01 -05:00
|
|
|
}
|
|
|
|
|
2024-12-21 05:34:46 -05:00
|
|
|
func BlockIP(db *gorm.DB, ip string, reason uint8, uid int64) error {
|
2024-11-22 10:57:25 -05:00
|
|
|
if ip == "" {
|
2024-11-22 21:21:01 -05:00
|
|
|
return nil
|
2024-11-22 10:57:25 -05:00
|
|
|
}
|
2024-11-22 21:21:01 -05:00
|
|
|
ipBinary, err := utils.IPStringToBinary(ip)
|
2024-11-22 11:58:15 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
w := WAF{
|
|
|
|
IP: ipBinary,
|
|
|
|
BlockReason: reason,
|
|
|
|
BlockTimestamp: uint64(time.Now().Unix()),
|
|
|
|
BlockIdentifier: uid,
|
|
|
|
}
|
2024-11-22 10:57:25 -05:00
|
|
|
return db.Transaction(func(tx *gorm.DB) error {
|
2024-12-21 05:34:46 -05:00
|
|
|
var lastRecord WAF
|
|
|
|
if err := tx.Model(&WAF{}).Order("id desc").Where("ip = ?", ipBinary).First(&lastRecord).Error; err != nil {
|
|
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
return err
|
|
|
|
}
|
2024-11-22 10:57:25 -05:00
|
|
|
}
|
2024-12-21 05:34:46 -05:00
|
|
|
return tx.Create(&w).Error
|
2024-11-22 10:57:25 -05:00
|
|
|
})
|
|
|
|
}
|
2024-11-22 11:58:15 -05:00
|
|
|
|
2024-11-22 21:21:01 -05:00
|
|
|
func powAdd(x, y, z uint64) uint64 {
|
2024-11-22 11:58:15 -05:00
|
|
|
base := big.NewInt(0).SetUint64(x)
|
|
|
|
exp := big.NewInt(0).SetUint64(y)
|
|
|
|
result := big.NewInt(1)
|
|
|
|
result.Exp(base, exp, nil)
|
2024-11-22 21:21:01 -05:00
|
|
|
result.Add(result, big.NewInt(0).SetUint64(z))
|
2024-11-22 11:58:15 -05:00
|
|
|
if !result.IsUint64() {
|
|
|
|
return ^uint64(0) // return max uint64 value on overflow
|
|
|
|
}
|
2024-11-22 21:21:01 -05:00
|
|
|
ret := result.Uint64()
|
|
|
|
return utils.IfOr(ret < z+3, z+3, ret)
|
2024-11-22 11:58:15 -05:00
|
|
|
}
|