-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathip_allocator.go
188 lines (160 loc) · 3.91 KB
/
ip_allocator.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
// SPDX-FileCopyrightText: 2022-present Intel Corporation
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"errors"
"net"
"os"
"strconv"
"sync"
"github.com/omec-project/smf/logger"
)
type IPAllocator struct {
ipNetwork *net.IPNet
g *_IDPool
}
func NewIPAllocator(cidr string) (*IPAllocator, error) {
allocator := &IPAllocator{}
if _, ipnet, err := net.ParseCIDR(cidr); err != nil {
return nil, err
} else {
allocator.ipNetwork = ipnet
}
allocator.g = newIDPool(1, 1<<int64(32-maskBits(allocator.ipNetwork.Mask))-2)
return allocator, nil
}
func maskBits(mask net.IPMask) int {
var cnt int
for _, b := range mask {
for ; b != 0; b /= 2 {
if b%2 != 0 {
cnt++
}
}
}
return cnt
}
// IPAddrWithOffset add offset on base ip
func IPAddrWithOffset(ip net.IP, offset int) net.IP {
retIP := make(net.IP, len(ip))
copy(retIP, ip)
var carry int
for i := len(retIP) - 1; i >= 0; i-- {
if offset == 0 {
break
}
val := int(retIP[i]) + carry + offset%256
retIP[i] = byte(val % 256)
carry = val / 256
offset /= 256
}
return retIP
}
// IPAddrOffset calculate the input ip with base ip offset
func IPAddrOffset(in, base net.IP) int {
offset := 0
exp := 1
for i := len(base) - 1; i >= 0; i-- {
offset += int(in[i]-base[i]) * exp
exp *= 256
}
return offset
}
// Allocate will allocate the IP address and returns it
func (a *IPAllocator) Allocate(imsi string) (net.IP, error) {
// check if static IP already reserved for this IMSI
if a.g.staticIps != nil {
staticIps := *a.g.staticIps
if ipStr := staticIps[imsi]; ipStr != "" {
return net.ParseIP(ipStr).To4(), nil
}
}
if offset, err := a.g.allocate(); err != nil {
return nil, errors.New("ip allocation failed" + err.Error())
} else {
smfCountStr := os.Getenv("SMF_COUNT")
if smfCountStr == "" {
smfCountStr = "1"
}
smfCount, err := strconv.Atoi(smfCountStr)
if err != nil {
logger.CtxLog.Errorf("failed to convert SMF_COUNT to int: %v", err)
}
ip := IPAddrWithOffset(a.ipNetwork.IP, int(offset)+(smfCount-1)*5000)
logger.CtxLog.Infof("unique id - ip %v", ip)
logger.CtxLog.Infof("unique id - offset %v", offset)
logger.CtxLog.Infof("unique id - smfCount %v", smfCount)
return ip, nil
}
}
func (a *IPAllocator) ReserveStaticIps(ips *map[string]string) {
a.g.staticIps = ips
for _, ipStr := range *ips {
if ip := net.ParseIP(ipStr).To4(); ip != nil {
// block static IPs in pool to avoid dynamic allocation
a.BlockIp(ip)
}
}
}
func (a *IPAllocator) BlockIp(ip net.IP) {
offset := IPAddrOffset(ip, a.ipNetwork.IP)
a.g.block(int64(offset))
}
func (a *IPAllocator) Release(imsi string, ip net.IP) {
// Don't release static IPs
if a.g.staticIps != nil {
staticIps := *a.g.staticIps
if ipStr := staticIps[imsi]; ipStr != "" {
return
}
}
offset := IPAddrOffset(ip, a.ipNetwork.IP)
a.g.release(int64(offset))
}
type _IDPool struct {
staticIps *map[string]string // map of [imsi]ip
isUsed map[int64]bool
minValue int64
maxValue int64
index int64
lock sync.Mutex
}
func newIDPool(minValue int64, maxValue int64) (idPool *_IDPool) {
idPool = new(_IDPool)
idPool.minValue = minValue
idPool.maxValue = maxValue
idPool.isUsed = make(map[int64]bool)
idPool.index = 1
return
}
func (i *_IDPool) allocate() (id int64, err error) {
i.lock.Lock()
defer i.lock.Unlock()
for id = i.index; id <= i.maxValue; id++ {
if _, exist := i.isUsed[id]; !exist {
i.isUsed[id] = true
i.index = (id % i.maxValue) + 1
return id, nil
}
}
for id = 1; id < i.index; id++ {
if _, exist := i.isUsed[id]; !exist {
i.isUsed[id] = true
i.index = id + 1
return id, nil
}
}
return 0, errors.New("no available value range to allocate id")
}
func (i *_IDPool) block(id int64) {
i.lock.Lock()
defer i.lock.Unlock()
i.isUsed[id] = true
}
func (i *_IDPool) release(id int64) {
i.lock.Lock()
defer i.lock.Unlock()
delete(i.isUsed, id)
}