-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrouping_base.go
637 lines (554 loc) · 19 KB
/
grouping_base.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
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
package goip
import (
"fmt"
"math/big"
"unsafe"
)
var (
_, _ divArray = standardDivArray{}, largeDivArray{}
zeroDivs = make([]*AddressDivision, 0)
zeroStandardDivArray = standardDivArray(zeroDivs)
zeroLargeDivs = make([]*IPAddressLargeDivision, 0)
zeroLargeDivArray = largeDivArray(zeroLargeDivs)
zeroStringCache = stringCache{
ipv6StringCache: &ipv6StringCache{},
ipv4StringCache: &ipv4StringCache{},
ipStringCache: &ipStringCache{},
macStringCache: &macStringCache{},
}
)
type ipStringCache struct {
fullString *string
reverseDNSString *string
sqlWildcardString *string
segmentedBinaryString *string
normalizedWildcardString *string
}
type ipv4StringCache struct {
inetAtonOctalString,
inetAtonHexString *string
}
type ipv6StringCache struct {
normalizedIPv6String,
compressedIPv6String,
mixedString,
compressedWildcardString,
canonicalWildcardString,
networkPrefixLengthString,
base85String,
uncString *string
}
type macStringCache struct {
normalizedMACString,
compressedMACString,
dottedString,
spaceDelimitedString *string
}
type stringCache struct {
hexString *string
octalString *string
binaryString *string
canonicalString *string
hexStringPrefixed *string
octalStringPrefixed *string
binaryStringPrefixed *string
*ipv6StringCache
*ipv4StringCache
*ipStringCache
*macStringCache
}
type divArray interface {
getDivision(index int) *addressDivisionBase
getGenericDivision(index int) DivisionType
getDivisionCount() int
fmt.Stringer
}
type maskLenSetting struct {
networkMaskLen PrefixLen
hostMaskLen PrefixLen
}
type bytesCache struct {
lowerBytes []byte
upperBytes []byte
}
type groupingCache struct {
lower *AddressSection
upper *AddressSection
}
type mixedCache struct {
defaultMixedAddressSection *IPv6v4MixedAddressGrouping
embeddedIPv4Section *IPv4AddressSection
embeddedIPv6Section *EmbeddedIPv6AddressSection
}
type uint128Cache struct {
high, low uint64
}
type valueCache struct {
cachedCount *big.Int
cachedPrefixCount *big.Int
cachedMaskLens *maskLenSetting
bytesCache *bytesCache
uint128Cache *uint128Cache
uint32Cache *uint32
stringCache stringCache
sectionCache *groupingCache
mixed *mixedCache
minPrefix PrefixLen
equivalentPrefix *PrefixLen
isSinglePrefixBlock *bool
}
type standardDivArray []*AddressDivision
func (grouping standardDivArray) String() string {
return fmt.Sprint([]*AddressDivision(grouping.init()))
}
func (grouping standardDivArray) getDivisionCount() int {
return len(grouping)
}
func (grouping standardDivArray) getDivision(index int) *addressDivisionBase {
return (*addressDivisionBase)(unsafe.Pointer(grouping[index]))
}
func (grouping standardDivArray) copyDivisions(divs []*AddressDivision) (count int) {
return copy(divs, grouping)
}
func (grouping standardDivArray) copySubDivisions(start, end int, divs []*AddressDivision) (count int) {
return copy(divs, grouping[start:end])
}
func (grouping standardDivArray) getSubDivisions(index, endIndex int) (divs []*AddressDivision) {
return grouping[index:endIndex]
}
func (grouping standardDivArray) init() standardDivArray {
if grouping == nil {
return zeroStandardDivArray
}
return grouping
}
func (grouping standardDivArray) getGenericDivision(index int) DivisionType {
return grouping[index]
}
type largeDivArray []*IPAddressLargeDivision
func (grouping largeDivArray) getDivisionCount() int {
return len(grouping)
}
func (grouping largeDivArray) getDivision(index int) *addressDivisionBase {
return (*addressDivisionBase)(unsafe.Pointer(grouping[index]))
}
func (grouping largeDivArray) copyDivisions(divs []*IPAddressLargeDivision) (count int) {
return copy(divs, grouping)
}
func (grouping largeDivArray) copySubDivisions(start, end int, divs []*IPAddressLargeDivision) (count int) {
return copy(divs, grouping[start:end])
}
func (grouping largeDivArray) init() largeDivArray {
if grouping == nil {
return zeroLargeDivArray
}
return grouping
}
func (grouping largeDivArray) getSubDivisions(index, endIndex int) (divs []*IPAddressLargeDivision) {
return grouping[index:endIndex]
}
func (grouping largeDivArray) String() string {
return fmt.Sprint([]*IPAddressLargeDivision(grouping.init()))
}
func (grouping largeDivArray) getGenericDivision(index int) DivisionType {
return grouping[index]
}
type addressDivisionGroupingBase struct {
// the non-cacheBitCount elements are assigned at creation and are immutable
divisions divArray // either standard or large
prefixLength PrefixLen // must align with the divisions if they store prefix lengths
isMult bool
// When a top-level section is created, it is assigned an address type, IPv4, IPv6, or MAC,
// and determines if an *AddressDivisionGrouping can be converted back to a section of the original type.
//
// Type-specific functions in IPAddressSection and lower levels,
// such as functions returning strings, can rely on this field.
addrType addrType
// assigned on creation only; for zero-value groupings it is never assigned,
// but in that case it is not needed since there is nothing to cache
cache *valueCache
}
func (grouping *addressDivisionGroupingBase) getAddrType() addrType {
return grouping.addrType
}
func (grouping *addressDivisionGroupingBase) getPrefixLen() PrefixLen {
return grouping.prefixLength
}
func (grouping *addressDivisionGroupingBase) isPrefixed() bool {
return grouping.prefixLength != nil
}
// isMultiple returns whether this address or grouping represents more than one address or grouping.
// Such addresses include CIDR/IP addresses (eg 1.2.3.4/11) or wildcard addresses (eg 1.2.*.4) or range addresses (eg 1.2.3-4.5)
func (grouping *addressDivisionGroupingBase) isMultiple() bool {
return grouping.isMult
}
// hasNoDivisions() returns whether this grouping is the zero grouping,
// which is what you get when constructing a grouping or section with no divisions
func (grouping *addressDivisionGroupingBase) hasNoDivisions() bool {
divisions := grouping.divisions
return divisions == nil || divisions.getDivisionCount() == 0
}
// getDivision returns the division or panics if the index is negative or it is too large
func (grouping *addressDivisionGroupingBase) getDivision(index int) *addressDivisionBase {
return grouping.divisions.getDivision(index)
}
func (grouping *addressDivisionGroupingBase) calcCount(counter func() *big.Int) *big.Int {
if grouping != nil && !grouping.isMultiple() {
return bigOne()
}
return counter()
}
func (grouping *addressDivisionGroupingBase) calcUint64Count(counter func() uint64) uint64 {
if grouping != nil && !grouping.isMultiple() {
return 1
}
return counter()
}
// cachedCount returns the cached count value, not a duplicate.
func (grouping *addressDivisionGroupingBase) cachedCount(counter func() *big.Int) *big.Int {
cache := grouping.cache
if cache == nil {
return grouping.calcCount(counter)
}
count := (*big.Int)(atomicLoadPointer((*unsafe.Pointer)(unsafe.Pointer(&cache.cachedCount))))
if count == nil {
count = grouping.calcCount(counter)
dataLoc := (*unsafe.Pointer)(unsafe.Pointer(&cache.cachedCount))
atomicStorePointer(dataLoc, unsafe.Pointer(count))
}
return count
}
func (grouping *addressDivisionGroupingBase) cacheCount(counter func() *big.Int) *big.Int {
cache := grouping.cache
if cache == nil {
return grouping.calcCount(counter)
}
count := (*big.Int)(atomicLoadPointer((*unsafe.Pointer)(unsafe.Pointer(&cache.cachedCount))))
if count == nil {
count = grouping.calcCount(counter)
dataLoc := (*unsafe.Pointer)(unsafe.Pointer(&cache.cachedCount))
atomicStorePointer(dataLoc, unsafe.Pointer(count))
}
return new(big.Int).Set(count)
}
// GetDivisionCount returns the number of divisions in this grouping.
func (grouping *addressDivisionGroupingBase) GetDivisionCount() int {
divisions := grouping.divisions
if divisions != nil {
return divisions.getDivisionCount()
}
return 0
}
func (grouping *addressDivisionGroupingBase) getCountBig() *big.Int {
res := bigOne()
count := grouping.GetDivisionCount()
if count > 0 {
for i := 0; i < count; i++ {
div := grouping.getDivision(i)
if div.isMultiple() {
res.Mul(res, div.getCount())
}
}
}
return res
}
func (grouping *addressDivisionGroupingBase) getCachedCount() *big.Int {
return grouping.cachedCount(grouping.getCountBig)
}
func (grouping *addressDivisionGroupingBase) getCount() *big.Int {
return grouping.cacheCount(grouping.getCountBig)
}
func (grouping *addressDivisionGroupingBase) getCachedBytes(calcBytes func() (bytes, upperBytes []byte)) (bytes, upperBytes []byte) {
cache := grouping.cache
if cache == nil {
return calcBytes()
}
cached := (*bytesCache)(atomicLoadPointer((*unsafe.Pointer)(unsafe.Pointer(&cache.bytesCache))))
if cached == nil {
bytes, upperBytes = calcBytes()
cached = &bytesCache{
lowerBytes: bytes,
upperBytes: upperBytes,
}
dataLoc := (*unsafe.Pointer)(unsafe.Pointer(&cache.bytesCache))
atomicStorePointer(dataLoc, unsafe.Pointer(cached))
}
bytes = cached.lowerBytes
upperBytes = cached.upperBytes
return
}
// GetBitCount returns the total number of bits across all divisions
func (grouping *addressDivisionGroupingBase) GetBitCount() (res BitCount) {
for i := 0; i < grouping.GetDivisionCount(); i++ {
res += grouping.getDivision(i).GetBitCount()
}
return
}
// GetByteCount returns the total number of bytes across all divisions (rounded up)
func (grouping *addressDivisionGroupingBase) GetByteCount() int {
return (int(grouping.GetBitCount()) + 7) >> 3
}
// initMultAndPrefLen is used by methods that apply in both mac and ipv4/6,
// even though prefix length assignment does not apply in MAC.
// Large division groupings also use it.
func (grouping *addressDivisionGroupingBase) initMultAndPrefLen() {
bitsSoFar := 0
segCount := grouping.GetDivisionCount()
if segCount != 0 {
var previousSegmentPrefix PrefixLen
isMultiple := false
for i := 0; i < segCount; i++ {
segment := grouping.getDivision(i)
if !isMultiple && segment.isMultiple() {
isMultiple = true
grouping.isMult = true
if grouping.prefixLength != nil { // nothing left to do
break
}
}
// Calculate the segment-level prefix.
segPrefix := segment.getDivisionPrefixLength()
if previousSegmentPrefix == nil {
if segPrefix != nil {
newPref := bitsSoFar + segPrefix.bitCount()
grouping.prefixLength = cacheBitCount(newPref)
if isMultiple { // nothing left to do
break
}
}
}
previousSegmentPrefix = segPrefix
bitsSoFar += segment.GetBitCount()
}
}
return
}
// GetPrefixLen returns the prefix length or nil if there is no prefix length.
//
// The prefix length indicates the number of bits in the initial part of the address item that make up the prefix.
//
// A prefix is a part of an address item that is not specific to a given address but is common to a group of such items,
// for example, the subnet of a CIDR prefix block.
func (grouping *addressDivisionGroupingBase) GetPrefixLen() PrefixLen {
return grouping.getPrefixLen().copy()
}
// GetGenericDivision returns the division as a DivisionType,
// allowing all division types and aggregated division types to be represented by a single type,
// useful for comparisons and other common uses.
func (grouping *addressDivisionGroupingBase) GetGenericDivision(index int) DivisionType {
return grouping.divisions.getGenericDivision(index)
}
// IsZero returns whether this grouping matches exactly the value of zero.
func (grouping *addressDivisionGroupingBase) IsZero() bool {
divCount := grouping.GetDivisionCount()
for i := 0; i < divCount; i++ {
if !grouping.getDivision(i).IsZero() {
return false
}
}
return true
}
// IncludesZero returns whether this grouping includes the value of zero within its range.
func (grouping *addressDivisionGroupingBase) IncludesZero() bool {
divCount := grouping.GetDivisionCount()
for i := 0; i < divCount; i++ {
if !grouping.getDivision(i).IncludesZero() {
return false
}
}
return true
}
// IsMax returns whether this grouping matches exactly the maximum possible value,
// the value whose bits are all ones.
func (grouping *addressDivisionGroupingBase) IsMax() bool {
divCount := grouping.GetDivisionCount()
for i := 0; i < divCount; i++ {
if !grouping.getDivision(i).IsMax() {
return false
}
}
return true
}
// IncludesMax returns whether this grouping includes the max value,
// the value whose bits are all ones, within its range.
func (grouping *addressDivisionGroupingBase) IncludesMax() bool {
divCount := grouping.GetDivisionCount()
for i := 0; i < divCount; i++ {
if !grouping.getDivision(i).IncludesMax() {
return false
}
}
return true
}
// IsFullRange returns whether this address item represents all possible values attainable by an address item of this type.
//
// This is true if and only if both IncludesZero and IncludesMax return true.
func (grouping *addressDivisionGroupingBase) IsFullRange() bool {
divCount := grouping.GetDivisionCount()
for i := 0; i < divCount; i++ {
if !grouping.getDivision(i).IsFullRange() {
return false
}
}
return true
}
// GetSequentialBlockIndex gets the minimal index of a division for which all subsequent divisions are full-range blocks.
//
// The division at this index is not a full-range block if all divisions are not full-range blocks.
// A division at this index and all subsequent divisions form a sequential range.
// For a full-range grouping to be sequential, the preceding divisions must be single-valued.
func (grouping *addressDivisionGroupingBase) GetSequentialBlockIndex() int {
divCount := grouping.GetDivisionCount()
if divCount > 0 {
for divCount--; divCount > 0 && grouping.getDivision(divCount).IsFullRange(); divCount-- {
}
}
return divCount
}
func (grouping *addressDivisionGroupingBase) getPrefixCountLenBig(prefixLen BitCount) *big.Int {
if prefixLen <= 0 {
return bigOne()
} else if prefixLen >= grouping.GetBitCount() {
return grouping.getCountBig()
}
res := bigOne()
if grouping.isMultiple() {
divisionCount := grouping.GetDivisionCount()
divPrefixLength := prefixLen
for i := 0; i < divisionCount; i++ {
div := grouping.getDivision(i)
divBitCount := div.getBitCount()
if div.isMultiple() {
var divCount *big.Int
if divPrefixLength < divBitCount {
divCount = div.GetPrefixCountLen(divPrefixLength)
} else {
divCount = div.getCount()
}
res.Mul(res, divCount)
}
if divPrefixLength <= divBitCount {
break
}
divPrefixLength -= divBitCount
}
}
return res
}
func (grouping *addressDivisionGroupingBase) getBlockCountBig(segmentCount int) *big.Int {
if segmentCount <= 0 {
return bigOne()
}
divCount := grouping.GetDivisionCount()
if segmentCount >= divCount {
return grouping.getCountBig()
}
res := bigOne()
if grouping.isMultiple() {
for i := 0; i < segmentCount; i++ {
division := grouping.getDivision(i)
if division.isMultiple() {
res.Mul(res, division.getCount())
}
}
}
return res
}
// GetPrefixCountLen returns the number of distinct prefix values in this item for the given prefix length.
func (grouping *addressDivisionGroupingBase) GetPrefixCountLen(prefixLen BitCount) *big.Int {
return grouping.calcCount(func() *big.Int { return grouping.getPrefixCountLenBig(prefixLen) })
}
// GetBlockCount returns the count of distinct values in the given number of initial (more significant) divisions.
func (grouping *addressDivisionGroupingBase) GetBlockCount(divisionCount int) *big.Int {
return grouping.calcCount(func() *big.Int { return grouping.getBlockCountBig(divisionCount) })
}
func (grouping *addressDivisionGroupingBase) calcPrefixCount(counter func() *big.Int) *big.Int {
if !grouping.isMultiple() {
return bigOne()
}
prefixLen := grouping.prefixLength
if prefixLen == nil || prefixLen.bitCount() >= grouping.GetBitCount() {
return grouping.getCount()
}
return counter()
}
func (grouping *addressDivisionGroupingBase) calcUint64PrefixCount(counter func() uint64) uint64 {
if !grouping.isMultiple() {
return 1
}
return counter()
}
// IsSequential returns whether the grouping represents a range of values that are sequential.
//
// Generally, this means that any division covering a range of values must be followed by divisions that are full range, covering all values.
func (grouping *addressDivisionGroupingBase) IsSequential() bool {
count := grouping.GetDivisionCount()
if count > 1 {
for i := 0; i < count; i++ {
if grouping.getDivision(i).isMultiple() {
for i++; i < count; i++ {
if !grouping.getDivision(i).IsFullRange() {
return false
}
}
return true
}
}
}
return true
}
// GetSequentialBlockCount provides the count of elements from the sequential block iterator,
// the minimal number of sequential address division groupings that comprise this address division grouping.
func (grouping *addressDivisionGroupingBase) GetSequentialBlockCount() *big.Int {
sequentialSegCount := grouping.GetSequentialBlockIndex()
prefixLen := BitCount(0)
for i := 0; i < sequentialSegCount; i++ {
prefixLen += grouping.getDivision(i).GetBitCount()
}
return grouping.GetPrefixCountLen(prefixLen) // 0-1.0-1.*.* gives 1 as seq block index, and then you count only previous segments
}
func (grouping *addressDivisionGroupingBase) getPrefixCountBig() *big.Int {
prefixLen := grouping.prefixLength
if prefixLen == nil {
return grouping.getCountBig()
}
return grouping.getPrefixCountLenBig(prefixLen.bitCount())
}
func (grouping *addressDivisionGroupingBase) cacheUint64PrefixCount(counter func() uint64) uint64 {
cache := grouping.cache // isMultiple checks prior to this ensures cache not nil here
if cache == nil {
return grouping.calcUint64PrefixCount(counter)
}
count := (*big.Int)(atomicLoadPointer((*unsafe.Pointer)(unsafe.Pointer(&cache.cachedPrefixCount))))
if count == nil {
count64 := grouping.calcUint64PrefixCount(counter)
count = new(big.Int).SetUint64(count64)
dataLoc := (*unsafe.Pointer)(unsafe.Pointer(&cache.cachedPrefixCount))
atomicStorePointer(dataLoc, unsafe.Pointer(count))
return count64
}
return count.Uint64()
}
func (grouping *addressDivisionGroupingBase) cachePrefixCount(counter func() *big.Int) *big.Int {
cache := grouping.cache // isMultiple checks prior to this ensures cache not nil here
if cache == nil {
return grouping.calcPrefixCount(counter)
}
count := (*big.Int)(atomicLoadPointer((*unsafe.Pointer)(unsafe.Pointer(&cache.cachedPrefixCount))))
if count == nil {
count = grouping.calcPrefixCount(counter)
dataLoc := (*unsafe.Pointer)(unsafe.Pointer(&cache.cachedPrefixCount))
atomicStorePointer(dataLoc, unsafe.Pointer(count))
}
return new(big.Int).Set(count)
}
// GetPrefixCount returns the number of distinct prefix values in this item.
//
// The prefix length is given by GetPrefixLen.
//
// If this has a non-nil prefix length, returns the number of distinct prefix values.
//
// If this has a nil prefix length, returns the same value as GetCount.
func (grouping *addressDivisionGroupingBase) GetPrefixCount() *big.Int {
return grouping.cachePrefixCount(grouping.getPrefixCountBig)
}