-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathipalloc.go
531 lines (445 loc) · 11.8 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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
// SPDX-License-Identifier: Apache 2.0
// Copyright (c) 2023 NetLOX Inc
package loxilib
import (
"errors"
"fmt"
"net"
"strconv"
"strings"
)
// Constants
const (
IPClusterDefault = "default"
IP4Len = 4
IP6Len = 16
IPAMNoIdent = ""
)
// IdentKey - key of IP Pool
type IdentKey string
// Generate a key with a combination of id and port.
func getIdentKey(idString string) IdentKey {
lowerProto := strings.ToLower(idString)
return IdentKey(lowerProto)
}
// Make a identifier with a combination of name, id and port.
func MakeIPAMIdent(name string, id uint32, proto string) string {
lowerProto := strings.ToLower(string(proto))
return fmt.Sprintf("%s|%d|%s", name, id, lowerProto)
}
// IPRange - Defines an IPRange
type IPRange struct {
isRange bool
startIP net.IP
endIP net.IP
ipNet net.IPNet
freeID *Counter
fOK bool
first uint64
ident map[IdentKey]int
}
// 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 {
index := uint64(0)
iplen := 0
if baseIP == nil || IP == nil {
return ^uint64(0)
}
if IsNetIPv4(baseIP.String()) {
iplen = IP4Len
} else {
iplen = IP6Len
}
arrIndex := len(baseIP) - iplen
arrIndex1 := len(IP) - iplen
for i := 0; i < IP6Len && arrIndex < len(baseIP) && arrIndex1 < len(IP); i++ {
basev := uint8(baseIP[arrIndex])
ipv := uint8(IP[arrIndex1])
if basev > ipv {
return ^uint64(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 empty, 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, idString string, IPString string) error {
var ipCPool *IPClusterPool
var ipr *IPRange
var baseIP net.IP
_, ipn, err := net.ParseCIDR(cidr)
if err != nil {
if strings.Contains(cidr, "-") {
ipBlock := strings.Split(cidr, "-")
if len(ipBlock) != 2 {
return errors.New("invalid ip-range")
}
startIP := net.ParseIP(ipBlock[0])
lastIP := net.ParseIP(ipBlock[1])
if startIP == nil || lastIP == nil {
return errors.New("invalid ip-range ips")
}
if IsNetIPv4(startIP.String()) && IsNetIPv6(lastIP.String()) ||
IsNetIPv6(startIP.String()) && IsNetIPv4(lastIP.String()) {
return errors.New("invalid ip-types ips")
}
} else {
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 {
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 ipr.isRange {
baseIP = ipr.startIP
d1 := diffIPIndex(ipr.startIP, ipr.endIP)
d2 := diffIPIndex(ipr.startIP, IP)
if d2 > d1 {
return errors.New("ip string out of range-bounds")
}
} else {
baseIP = ipr.ipNet.IP
if !ipn.Contains(IP) {
return errors.New("ip string out of bounds")
}
}
key := getIdentKey(idString)
if _, ok := ipr.ident[key]; ok {
if idString != "" {
return errors.New("ip Range,Ident,proto exists")
}
}
var retIndex uint64
if idString == "" || !ipr.fOK {
retIndex = diffIPIndex(baseIP, IP)
if retIndex == ^uint64(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
}
}
if idString == "" {
key = getIdentKey(strconv.FormatInt(int64(retIndex), 10))
}
ipr.ident[key]++
return nil
}
// AllocateNewIP - Allocate a New IP address from the given cluster and CIDR range
// If idString is empty, 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, idString string) (net.IP, error) {
var ipCPool *IPClusterPool
var ipr *IPRange
var newIndex uint64
var ip net.IP
_, ipn, err := net.ParseCIDR(cidr)
if err != nil {
if strings.Contains(cidr, "-") {
ipBlock := strings.Split(cidr, "-")
if len(ipBlock) != 2 {
return net.IP{0, 0, 0, 0}, errors.New("invalid ip-range")
}
startIP := net.ParseIP(ipBlock[0])
lastIP := net.ParseIP(ipBlock[1])
if startIP == nil || lastIP == nil {
return net.IP{0, 0, 0, 0}, errors.New("invalid ip-range ips")
}
if IsNetIPv4(startIP.String()) && IsNetIPv6(lastIP.String()) ||
IsNetIPv6(startIP.String()) && IsNetIPv4(lastIP.String()) {
return net.IP{0, 0, 0, 0}, errors.New("invalid ip-types ips")
}
ip = startIP
} else {
return net.IP{0, 0, 0, 0}, errors.New("invalid CIDR")
}
} else {
ip = ipn.IP
}
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")
}
key := getIdentKey(idString)
if _, ok := ipr.ident[key]; ok {
if idString != "" {
return net.IP{0, 0, 0, 0}, errors.New("ip/ident exists")
}
}
if idString == "" || !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.freeID.ReserveCounter(newIndex)
}
if idString == "" {
key = getIdentKey(strconv.FormatInt(int64(newIndex), 10))
}
ipr.ident[key]++
retIP := addIPIndex(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, idString, IPString string) error {
var ipCPool *IPClusterPool
var ipr *IPRange
var baseIP net.IP
_, _, err := net.ParseCIDR(cidr)
if err != nil {
if strings.Contains(cidr, "-") {
ipBlock := strings.Split(cidr, "-")
if len(ipBlock) != 2 {
return errors.New("invalid ip-range")
}
startIP := net.ParseIP(ipBlock[0])
lastIP := net.ParseIP(ipBlock[1])
if startIP == nil || lastIP == nil {
return errors.New("invalid ip-range ips")
}
if IsNetIPv4(startIP.String()) && IsNetIPv6(lastIP.String()) ||
IsNetIPv6(startIP.String()) && IsNetIPv4(lastIP.String()) {
return errors.New("invalid ip-types ips")
}
} else {
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")
}
var key IdentKey
key = getIdentKey(idString)
if _, ok := ipr.ident[key]; !ok {
if idString != "" {
return errors.New("ip Range - Ident not found")
}
}
if ipr.isRange {
baseIP = ipr.startIP
} else {
baseIP = ipr.ipNet.IP
}
retIndex := diffIPIndex(baseIP, IP)
if retIndex <= 0 {
if retIndex != 0 || (retIndex == 0 && ipr.first != 0) {
return errors.New("ip return index not found")
}
}
if idString == "" {
key = getIdentKey(strconv.FormatInt(int64(retIndex), 10))
}
if _, ok := ipr.ident[key]; !ok {
return errors.New("ip Range - key not found")
}
ipr.ident[key]--
if ipr.ident[key] <= 0 {
delete(ipr.ident, key)
err = ipr.freeID.PutCounter(retIndex)
if err != nil {
return errors.New("ip Range counter failure")
}
}
return nil
}
// Contains - Check if IP is in IPrange
func (i *IPRange) Contains(IP net.IP) bool {
if i.isRange {
d1 := diffIPIndex(i.startIP, i.endIP)
d2 := diffIPIndex(i.startIP, IP)
if d2 > d1 {
return false
}
return true
} else {
return i.ipNet.Contains(IP)
}
}
// AddIPRange - Add a new IP Range for allocation in a cluster
func (ipa *IPAllocator) AddIPRange(cluster string, cidr string) error {
var ipCPool *IPClusterPool
var startIP net.IP
var lastIP net.IP
isRange := false
ip, ipn, err := net.ParseCIDR(cidr)
if err != nil {
if strings.Contains(cidr, "-") {
isRange = true
ipBlock := strings.Split(cidr, "-")
if len(ipBlock) != 2 {
return errors.New("invalid ip-range")
}
startIP = net.ParseIP(ipBlock[0])
lastIP = net.ParseIP(ipBlock[1])
if startIP == nil || lastIP == nil {
return errors.New("invalid ip-range ips")
}
if IsNetIPv4(startIP.String()) && IsNetIPv6(lastIP.String()) ||
IsNetIPv6(startIP.String()) && IsNetIPv4(lastIP.String()) {
return errors.New("invalid ip-types ips")
}
} else {
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
ipCPool.pool = make(map[string]*IPRange)
ipa.ipBlocks[cluster] = ipCPool
}
}
if ipCPool == nil {
return errors.New("can't find IP Cluster Pool")
}
for _, ipr := range ipCPool.pool {
if ipr.Contains(ip) {
return errors.New("existing IP Pool")
}
}
ipr := new(IPRange)
iprSz := uint64(0)
sz := 0
start := uint64(1)
if !isRange {
ipr.ipNet = *ipn
sz, _ = ipn.Mask.Size()
if IsNetIPv4(ip.String()) {
ignore := uint64(0)
if sz != 32 && sz%8 == 0 {
ignore = 2
} else {
start = 0
}
val := Ntohl(IPtonl(ip))
msk := uint32(((1 << (32 - sz)) - 1))
if val&msk != 0 {
start = uint64(val & msk)
ignore = start + 1
}
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
}
} else {
start = uint64(0)
ipr.isRange = true
ipr.startIP = startIP
ipr.endIP = lastIP
iprSz = diffIPIndex(startIP, lastIP)
if iprSz != 0 {
iprSz++
}
}
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[IdentKey]int)
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
}