forked from loxilb-io/loxilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipalloc.go
348 lines (283 loc) · 7.47 KB
/
ipalloc.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
// SPDX-License-Identifier: Apache 2.0
// Copyright (c) 2023 NetLOX Inc
package loxilib
import (
"errors"
"net"
)
// Constants
const (
IPClusterDefault = "default"
IP4Len = 4
IP6Len = 16
)
// IPRange - Defines an IPRange
type IPRange struct {
ipNet net.IPNet
freeID *Counter
fOK bool
first uint64
ident map[uint32]struct{}
}
// IPClusterPool - Holds IP ranges for a cluster
type IPClusterPool struct {
name string
pool map[string]*IPRange
}
// IPAllocator - Main IP allocator context
type IPAllocator struct {
ipBlocks map[string]*IPClusterPool
}
func addIPIndex(ip net.IP, index uint64) net.IP {
retIP := ip
v := index
c := uint64(0)
arrIndex := len(ip) - 1
for i := 0; i < IP6Len && arrIndex >= 0 && v > 0; i++ {
c = v / 255
retIP[arrIndex] += uint8((v + c) % 255)
arrIndex--
v >>= 8
}
return retIP
}
func diffIPIndex(baseIP net.IP, IP net.IP) uint64 {
var index uint64
iplen := 0
if IsNetIPv4(baseIP.String()) {
iplen = IP4Len
} else {
iplen = IP6Len
}
arrIndex := len(baseIP) - iplen
arrIndex1 := len(IP) - iplen
for i := 0; i < IP6Len && arrIndex < iplen; i++ {
basev := uint8(baseIP[arrIndex])
ipv := uint8(IP[arrIndex1])
if basev > ipv {
return 0
}
index = uint64(ipv - basev)
arrIndex++
arrIndex1++
index |= index << (8 * (iplen - i - 1))
}
return index
}
// ReserveIP - Don't allocate this IP address/ID pair from the given cluster and CIDR range
// If id is 0, a new IP address will be allocated else IP addresses will be shared and
// it will be same as the first IP address allocted for this range
func (ipa *IPAllocator) ReserveIP(cluster string, cidr string, id uint32, IPString string) error {
var ipCPool *IPClusterPool
var ipr *IPRange
_, ipn, err := net.ParseCIDR(cidr)
if err != nil {
return errors.New("Invalid CIDR")
}
IP := net.ParseIP(IPString)
if IP == nil {
return errors.New("Invalid IP String")
}
if !ipn.Contains(IP) {
return errors.New("IP String out of bounds")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
if err := ipa.AddIPRange(cluster, cidr); err != nil {
return errors.New("No such IP Cluster Pool")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
return errors.New("IP Range allocation failure")
}
}
if ipr = ipCPool.pool[cidr]; ipr == nil {
return errors.New("No such IP Range")
}
if _, ok := ipr.ident[id]; ok {
if id != 0 {
return errors.New("IP Range,Ident exists")
}
}
if id == 0 || !ipr.fOK {
retIndex := diffIPIndex(ipr.ipNet.IP, IP)
if retIndex <= 0 {
if retIndex != 0 || (retIndex == 0 && ipr.first != 0) {
return errors.New("IP return index not found")
}
}
err = ipr.freeID.ReserveCounter(retIndex)
if err != nil {
return errors.New("IP reserve counter failure")
}
if !ipr.fOK {
ipr.first = retIndex
ipr.fOK = true
}
}
ipr.ident[id] = struct{}{}
return nil
}
// AllocateNewIP - Allocate a New IP address from the given cluster and CIDR range
// If id is 0, a new IP address will be allocated else IP addresses will be shared and
// it will be same as the first IP address allocted for this range
func (ipa *IPAllocator) AllocateNewIP(cluster string, cidr string, id uint32) (net.IP, error) {
var ipCPool *IPClusterPool
var ipr *IPRange
var newIndex uint64
_, ipn, err := net.ParseCIDR(cidr)
if err != nil {
return net.IP{0, 0, 0, 0}, errors.New("Invalid CIDR")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
if err := ipa.AddIPRange(cluster, cidr); err != nil {
return net.IP{0, 0, 0, 0}, errors.New("No such IP Cluster Pool")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
return net.IP{0, 0, 0, 0}, errors.New("IP Range allocation failure")
}
}
if ipr = ipCPool.pool[cidr]; ipr == nil {
return net.IP{0, 0, 0, 0}, errors.New("No such IP Range")
}
if _, ok := ipr.ident[id]; ok {
if id != 0 {
return net.IP{0, 0, 0, 0}, errors.New("IP/Ident exists")
}
}
if id == 0 || !ipr.fOK {
newIndex, err = ipr.freeID.GetCounter()
if err != nil {
return net.IP{0, 0, 0, 0}, errors.New("IP Alloc counter failure")
}
if !ipr.fOK {
ipr.first = newIndex
ipr.fOK = true
}
} else {
newIndex = ipr.first
}
ipr.ident[id] = struct{}{}
retIP := addIPIndex(ipn.IP, uint64(newIndex))
return retIP, nil
}
// DeAllocateIP - Deallocate the IP address from the given cluster and CIDR range
func (ipa *IPAllocator) DeAllocateIP(cluster string, cidr string, id uint32, IPString string) error {
var ipCPool *IPClusterPool
var ipr *IPRange
_, _, err := net.ParseCIDR(cidr)
if err != nil {
return errors.New("Invalid CIDR")
}
IP := net.ParseIP(IPString)
if IP == nil {
return errors.New("Invalid IP String")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
return errors.New("IP Cluster not found")
}
if ipr = ipCPool.pool[cidr]; ipr == nil {
return errors.New("No such IP Range")
}
if _, ok := ipr.ident[id]; !ok {
return errors.New("IP Range - Ident not found")
}
retIndex := diffIPIndex(ipr.ipNet.IP, IP)
if retIndex <= 0 {
if retIndex != 0 || (retIndex == 0 && ipr.first != 0) {
return errors.New("IP return index not found")
}
}
delete(ipr.ident, id)
if len(ipr.ident) == 0 {
err = ipr.freeID.PutCounter(retIndex)
if err != nil {
return errors.New("IP Range counter failure")
}
}
return nil
}
// AddIPRange - Add a new IP Range for allocation in a cluster
func (ipa *IPAllocator) AddIPRange(cluster string, cidr string) error {
var ipCPool *IPClusterPool
ip, ipn, err := net.ParseCIDR(cidr)
if err != nil {
return errors.New("Invalid CIDR")
}
ipCPool = ipa.ipBlocks[IPClusterDefault]
if cluster != IPClusterDefault {
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
ipCPool = new(IPClusterPool)
ipCPool.name = cluster
ipa.ipBlocks[cluster] = ipCPool
}
}
if ipCPool == nil {
return errors.New("Can't find IP Cluster Pool")
}
for _, ipr := range ipCPool.pool {
if ipr.ipNet.Contains(ip) {
return errors.New("Existing IP Pool")
}
}
ipr := new(IPRange)
ipr.ipNet = *ipn
iprSz := uint64(0)
sz, _ := ipn.Mask.Size()
start := uint64(1)
if IsNetIPv4(ip.String()) {
ignore := uint64(0)
if sz != 32 && sz%8 == 0 {
ignore = 2
} else {
start = 0
}
iprSz = (1 << (32 - sz)) - ignore
} else {
ignore := uint64(0)
if sz != 128 && sz%8 == 0 {
ignore = 2
} else {
start = 0
}
iprSz = (1 << (128 - sz)) - ignore
}
if iprSz < 1 {
return errors.New("IP Pool subnet error")
}
if iprSz > uint64(^uint16(0)) {
iprSz = uint64(^uint16(0))
}
// If it is a x.x.x.0/24, then we will allocate
// from x.x.x.1 to x.x.x.254
ipr.freeID = NewCounter(start, iprSz)
if ipr.freeID == nil {
return errors.New("IP Pool alloc failed")
}
ipr.ident = make(map[uint32]struct{})
ipCPool.pool[cidr] = ipr
return nil
}
// DeleteIPRange - Delete a IP Range from allocation in a cluster
func (ipa *IPAllocator) DeleteIPRange(cluster string, cidr string) error {
var ipCPool *IPClusterPool
_, _, err := net.ParseCIDR(cidr)
if err != nil {
return errors.New("Invalid CIDR")
}
if ipCPool = ipa.ipBlocks[cluster]; ipCPool == nil {
return errors.New("No such IP Cluster Pool")
}
if ipr := ipCPool.pool[cidr]; ipr == nil {
return errors.New("No such IP Range")
}
delete(ipCPool.pool, cidr)
return nil
}
// IpAllocatorNew - Create a new allocator
func IpAllocatorNew() *IPAllocator {
ipa := new(IPAllocator)
ipa.ipBlocks = make(map[string]*IPClusterPool)
ipCPool := new(IPClusterPool)
ipCPool.pool = make(map[string]*IPRange)
ipa.ipBlocks[IPClusterDefault] = ipCPool
return ipa
}