优化ip分配

This commit is contained in:
bjdgyc 2024-10-23 17:34:03 +08:00
parent c0c15815f9
commit a0569b09f2
2 changed files with 96 additions and 50 deletions

View File

@ -13,11 +13,9 @@ import (
var ( var (
IpPool = &ipPoolConfig{} IpPool = &ipPoolConfig{}
ipActive = map[string]bool{} ipActive = map[string]bool{}
// ipKeep and ipLease ipAddr => type // ipKeep and ipLease ipAddr => macAddr
// ipLease = map[string]bool{} // ipKeep = map[string]string{}
ipPoolMux sync.Mutex ipPoolMux sync.Mutex
// 记录循环点
loopCurIp uint32
) )
type ipPoolConfig struct { type ipPoolConfig struct {
@ -73,17 +71,16 @@ func initIpPool() {
// func getIpLease() { // func getIpLease() {
// xdb := dbdata.GetXdb() // xdb := dbdata.GetXdb()
// keepIpMaps := []dbdata.IpMap{} // keepIpMaps := []dbdata.IpMap{}
// sNow := time.Now().Add(-1 * time.Duration(base.Cfg.IpLease) * time.Second) // // sNow := time.Now().Add(-1 * time.Duration(base.Cfg.IpLease) * time.Second)
// err := xdb.Cols("ip_addr").Where("keep=?", true). // err := xdb.Cols("ip_addr", "mac_addr").Where("keep=?", true).Find(&keepIpMaps)
// Or("unique_mac=? and last_login>?", true, sNow).Find(&keepIpMaps)
// if err != nil { // if err != nil {
// base.Error(err) // base.Error(err)
// } // }
// // fmt.Println(keepIpMaps) // log.Println(keepIpMaps)
// ipPoolMux.Lock() // ipPoolMux.Lock()
// ipLease = map[string]bool{} // ipKeep = map[string]string{}
// for _, v := range keepIpMaps { // for _, v := range keepIpMaps {
// ipLease[v.IpAddr] = true // ipKeep[v.IpAddr] = v.MacAddr
// } // }
// ipPoolMux.Unlock() // ipPoolMux.Unlock()
// } // }
@ -95,6 +92,7 @@ func AcquireIp(username, macAddr string, uniqueMac bool) (newIp net.IP) {
defer func() { defer func() {
ipPoolMux.Unlock() ipPoolMux.Unlock()
base.Trace("AcquireIp end:", username, macAddr, uniqueMac, newIp) base.Trace("AcquireIp end:", username, macAddr, uniqueMac, newIp)
base.Info("AcquireIp ip:", username, macAddr, uniqueMac, newIp)
}() }()
var ( var (
@ -102,6 +100,7 @@ func AcquireIp(username, macAddr string, uniqueMac bool) (newIp net.IP) {
tNow = time.Now() tNow = time.Now()
) )
// 获取到客户端 macAddr 的情况
if uniqueMac { if uniqueMac {
// 判断是否已经分配过 // 判断是否已经分配过
mi := &dbdata.IpMap{} mi := &dbdata.IpMap{}
@ -124,8 +123,9 @@ func AcquireIp(username, macAddr string, uniqueMac bool) (newIp net.IP) {
_, ok := ipActive[ipStr] _, ok := ipActive[ipStr]
// 检测原有ip是否在新的ip池内 // 检测原有ip是否在新的ip池内
// IpPool.Ipv4IPNet.Contains(ip) && // IpPool.Ipv4IPNet.Contains(ip) &&
if !ok && // ip符合规范
utils.Ip2long(ip) >= IpPool.IpLongMin && // 检测原有ip是否在新的ip池内
if !ok && utils.Ip2long(ip) >= IpPool.IpLongMin &&
utils.Ip2long(ip) <= IpPool.IpLongMax { utils.Ip2long(ip) <= IpPool.IpLongMax {
mi.Username = username mi.Username = username
mi.LastLogin = tNow mi.LastLogin = tNow
@ -135,61 +135,84 @@ func AcquireIp(username, macAddr string, uniqueMac bool) (newIp net.IP) {
ipActive[ipStr] = true ipActive[ipStr] = true
return ip return ip
} }
// 删除当前macAddr
mi = &dbdata.IpMap{MacAddr: macAddr}
_ = dbdata.Del(mi)
} else { // ip保留
// 没有获取到mac的情况 if mi.Keep {
ipMaps := []dbdata.IpMap{} base.Error(username, macAddr, ipStr, "保留ip不匹配CIDR")
err = dbdata.FindWhere(&ipMaps, 50, 1, "username=? and unique_mac=?", username, false)
if err != nil {
// 没有查询到数据
if dbdata.CheckErrNotFound(err) {
return loopIp(username, macAddr, uniqueMac)
}
// 查询报错
base.Error(err)
return nil return nil
} }
// 遍历mac记录 // 删除当前macAddr
for _, mi := range ipMaps { mi = &dbdata.IpMap{MacAddr: macAddr}
ipStr := mi.IpAddr _ = dbdata.Del(mi)
ip := net.ParseIP(ipStr) return loopIp(username, macAddr, uniqueMac)
}
// 跳过活跃连接 // 没有获取到mac的情况
if _, ok := ipActive[ipStr]; ok { ipMaps := []dbdata.IpMap{}
continue err = dbdata.FindWhere(&ipMaps, 50, 1, "username=?", username)
} if err != nil {
// 跳过保留ip // 没有查询到数据
if mi.Keep { if dbdata.CheckErrNotFound(err) {
continue return loopIp(username, macAddr, uniqueMac)
} }
// 没有mac的 不需要验证租期 // 查询报错
// mi.LastLogin.Before(leaseTime) && base.Error(err)
if utils.Ip2long(ip) >= IpPool.IpLongMin && return nil
utils.Ip2long(ip) <= IpPool.IpLongMax { }
mi.LastLogin = tNow
mi.MacAddr = macAddr // 遍历mac记录
mi.UniqueMac = uniqueMac for _, mi := range ipMaps {
// 回写db数据 ipStr := mi.IpAddr
_ = dbdata.Set(mi) ip := net.ParseIP(ipStr)
ipActive[ipStr] = true
return ip // 跳过活跃连接
} if _, ok := ipActive[ipStr]; ok {
continue
}
// 跳过保留ip
if mi.Keep {
continue
}
if mi.UniqueMac {
continue
}
// 没有mac的 不需要验证租期
// mi.LastLogin.Before(leaseTime) &&
if utils.Ip2long(ip) >= IpPool.IpLongMin &&
utils.Ip2long(ip) <= IpPool.IpLongMax {
mi.Username = username
mi.LastLogin = tNow
mi.MacAddr = macAddr
mi.UniqueMac = uniqueMac
// 回写db数据
_ = dbdata.Set(mi)
ipActive[ipStr] = true
return ip
} }
} }
return loopIp(username, macAddr, uniqueMac) return loopIp(username, macAddr, uniqueMac)
} }
var (
// 记录循环点
loopCurIp uint32
loopFarIp = &dbdata.IpMap{LastLogin: time.Now()}
loopFarI = uint32(0)
)
func loopIp(username, macAddr string, uniqueMac bool) net.IP { func loopIp(username, macAddr string, uniqueMac bool) net.IP {
var ( var (
i uint32 i uint32
ip net.IP ip net.IP
) )
// 重新赋值
loopFarIp = &dbdata.IpMap{LastLogin: time.Now()}
loopFarI = uint32(0)
i, ip = loopLong(loopCurIp, IpPool.IpLongMax, username, macAddr, uniqueMac) i, ip = loopLong(loopCurIp, IpPool.IpLongMax, username, macAddr, uniqueMac)
if ip != nil { if ip != nil {
loopCurIp = i loopCurIp = i
@ -202,6 +225,22 @@ func loopIp(username, macAddr string, uniqueMac bool) net.IP {
return ip return ip
} }
// ip分配完,从头开始
loopCurIp = IpPool.IpLongMin
if loopFarIp.Id > 0 {
// 使用最早登陆的 ip
ipStr := loopFarIp.IpAddr
ip = net.ParseIP(ipStr)
mi := &dbdata.IpMap{IpAddr: ipStr, MacAddr: macAddr, UniqueMac: uniqueMac, Username: username, LastLogin: time.Now()}
// 回写db数据
_ = dbdata.Set(mi)
ipActive[ipStr] = true
return ip
}
// 全都在线,没有数据可用
base.Warn("no ip available, please see ip_map table row", username, macAddr) base.Warn("no ip available, please see ip_map table row", username, macAddr)
return nil return nil
} }
@ -247,6 +286,7 @@ func loopLong(start, end uint32, username, macAddr string, uniqueMac bool) (uint
// 判断租期 // 判断租期
if mi.LastLogin.Before(leaseTime) { if mi.LastLogin.Before(leaseTime) {
// 存在记录,说明已经超过租期,可以直接使用 // 存在记录,说明已经超过租期,可以直接使用
mi.Username = username
mi.LastLogin = tNow mi.LastLogin = tNow
mi.MacAddr = macAddr mi.MacAddr = macAddr
mi.UniqueMac = uniqueMac mi.UniqueMac = uniqueMac
@ -255,6 +295,11 @@ func loopLong(start, end uint32, username, macAddr string, uniqueMac bool) (uint
ipActive[ipStr] = true ipActive[ipStr] = true
return i, ip return i, ip
} }
// 其他情况判断最早登陆
if mi.LastLogin.Before(loopFarIp.LastLogin) {
loopFarIp = mi
loopFarI = i
}
} }
return 0, nil return 0, nil

View File

@ -48,6 +48,7 @@
label="唯一MAC"> label="唯一MAC">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag v-if="scope.row.unique_mac" type="success"></el-tag> <el-tag v-if="scope.row.unique_mac" type="success"></el-tag>
<el-tag v-else type="info"></el-tag>
</template> </template>
</el-table-column> </el-table-column>