-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmac_segment.go
551 lines (472 loc) · 19.3 KB
/
mac_segment.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
package goip
import (
"math/big"
"github.com/pchchv/goip/address_error"
)
const useMACSegmentCache = true
var (
_ divisionValues = &macSegmentValues{}
segmentCacheMAC = makeSegmentCacheMAC()
zeroMACSeg = NewMACSegment(0)
allRangeMACSeg = NewMACRangeSegment(0, MACMaxValuePerSegment)
allRangeValsMAC = &macSegmentValues{
upperValue: MACMaxValuePerSegment,
}
)
type MACSegInt = uint8
type MACSegmentValueProvider func(segmentIndex int) MACSegInt
// MACAddressSegment represents a segment of a MAC address.
// For MAC, segments are 1 byte.
// A MAC segment contains a single value or a range of sequential values,
// a prefix length, and it has bit length of 8 bits.
//
// Segments are immutable, which also makes them concurrency-safe.
type MACAddressSegment struct {
addressSegmentInternal
}
// GetMACSegmentValue returns the lower value.
// Same as GetSegmentValue but returned as a MACSegInt.
func (seg *MACAddressSegment) GetMACSegmentValue() MACSegInt {
return MACSegInt(seg.GetSegmentValue())
}
// GetMACUpperSegmentValue returns the lower value.
// Same as GetUpperSegmentValue but returned as a MACSegInt.
func (seg *MACAddressSegment) GetMACUpperSegmentValue() MACSegInt {
return MACSegInt(seg.GetUpperSegmentValue())
}
func (seg *MACAddressSegment) init() *MACAddressSegment {
if seg.divisionValues == nil {
return zeroMACSeg
}
return seg
}
// Contains returns whether this is same type and version as the given segment and whether it contains all values in the given segment.
func (seg *MACAddressSegment) Contains(other AddressSegmentType) bool {
if seg == nil {
return other == nil || other.ToSegmentBase() == nil
}
return seg.init().contains(other)
}
// Equal returns whether the given segment is equal to this segment.
// Two segments are equal if they match:
// - type/version: MAC
// - value range
//
// Prefix lengths are ignored.
func (seg *MACAddressSegment) Equal(other AddressSegmentType) bool {
if seg == nil {
return other == nil || other.ToDiv() == nil
}
return seg.init().equal(other)
}
// PrefixContains returns whether the prefix values in the prefix of the given segment are also prefix values in this segment.
// It returns whether the prefix of this segment contains the prefix of the given segment.
func (seg *MACAddressSegment) PrefixContains(other AddressSegmentType, prefixLength BitCount) bool {
return seg.init().addressSegmentInternal.PrefixContains(other, prefixLength)
}
// PrefixEqual returns whether the prefix bits of this segment match the same bits of the given segment.
// It returns whether the two segments share the same range of prefix values using the given prefix length.
func (seg *MACAddressSegment) PrefixEqual(other AddressSegmentType, prefixLength BitCount) bool {
return seg.init().addressSegmentInternal.PrefixEqual(other, prefixLength)
}
// GetBitCount returns the number of bits in each value comprising this address item, which is 8.
func (seg *MACAddressSegment) GetBitCount() BitCount {
return IPv4BitsPerSegment
}
// GetByteCount returns the number of bytes required for each value comprising this address item, which is 1.
func (seg *MACAddressSegment) GetByteCount() int {
return IPv4BytesPerSegment
}
// GetMaxValue gets the maximum possible value for this type or version of segment,
// determined by the number of bits.
//
// For the highest range value of this particular segment, use GetUpperSegmentValue.
func (seg *MACAddressSegment) GetMaxValue() MACSegInt {
return 0xff
}
// IsMultiple returns whether this segment represents multiple values.
func (seg *MACAddressSegment) IsMultiple() bool {
return seg != nil && seg.isMultiple()
}
// GetCount returns the count of possible distinct values for this item.
// If not representing multiple values, the count is 1.
//
// For instance, a segment with the value range of 3-7 has count 5.
//
// Use IsMultiple if you simply want to know if the count is greater than 1.
func (seg *MACAddressSegment) GetCount() *big.Int {
if seg == nil {
return bigZero()
}
return seg.getCount()
}
// Bytes returns the lowest value in the address segment range as a byte slice.
func (seg *MACAddressSegment) Bytes() []byte {
return seg.init().addressSegmentInternal.Bytes()
}
// UpperBytes returns the highest value in the address segment range as a byte slice.
func (seg *MACAddressSegment) UpperBytes() []byte {
return seg.init().addressSegmentInternal.UpperBytes()
}
// CopyBytes copies the lowest value in the address segment range into a byte slice.
//
// If the value can fit in the given slice,
// the value is copied into that slice and a length-adjusted sub-slice is returned.
// Otherwise, a new slice is created and returned with the value.
func (seg *MACAddressSegment) CopyBytes(bytes []byte) []byte {
return seg.init().addressSegmentInternal.CopyBytes(bytes)
}
// CopyUpperBytes copies the highest value in the address segment range into a byte slice.
//
// If the value can fit in the given slice,
// the value is copied into that slice and a length-adjusted sub-slice is returned.
// Otherwise, a new slice is created and returned with the value.
func (seg *MACAddressSegment) CopyUpperBytes(bytes []byte) []byte {
return seg.init().addressSegmentInternal.CopyUpperBytes(bytes)
}
// GetPrefixCountLen returns the count of the number of distinct prefix values for
// the given prefix length in the range of values of this segment.
func (seg *MACAddressSegment) GetPrefixCountLen(segmentPrefixLength BitCount) *big.Int {
return seg.init().addressSegmentInternal.GetPrefixCountLen(segmentPrefixLength)
}
// GetPrefixValueCountLen returns the same value as GetPrefixCountLen as an integer.
func (seg *MACAddressSegment) GetPrefixValueCountLen(segmentPrefixLength BitCount) SegIntCount {
return seg.init().addressSegmentInternal.GetPrefixValueCountLen(segmentPrefixLength)
}
// IsOneBit returns true if the bit in the lower value of this segment at
// the given index is 1, where index 0 is the most significant bit.
func (seg *MACAddressSegment) IsOneBit(segmentBitIndex BitCount) bool {
return seg.init().addressSegmentInternal.IsOneBit(segmentBitIndex)
}
func (seg *MACAddressSegment) setString(addressStr string, isStandardString bool, lowerStringStartIndex, lowerStringEndIndex int, originalLowerValue SegInt) {
if cache := seg.getCache(); cache != nil {
if isStandardString && originalLowerValue == seg.getSegmentValue() {
cacheStr(&cache.cachedString, func() string { return addressStr[lowerStringStartIndex:lowerStringEndIndex] })
}
}
}
func (seg *MACAddressSegment) setRangeString(addressStr string, isStandardRangeString bool, lowerStringStartIndex, upperStringEndIndex int, rangeLower, rangeUpper SegInt) {
if cache := seg.getCache(); cache != nil {
if seg.IsFullRange() {
cacheStrPtr(&cache.cachedString, &segmentWildcardStr)
} else if isStandardRangeString && rangeLower == seg.getSegmentValue() && rangeUpper == seg.getUpperSegmentValue() {
cacheStr(&cache.cachedString, func() string { return addressStr[lowerStringStartIndex:upperStringEndIndex] })
}
}
}
// ReverseBits returns a segment with the bits reversed.
//
// If this segment represents a range of values that cannot be reversed, then this returns an error.
//
// To be reversible, a range must include all values except possibly the largest and/or smallest, which reverse to themselves.
// Otherwise the result is not contiguous and thus cannot be represented by a sequential range of values.
//
// If perByte is true, the bits are reversed within each byte, otherwise all the bits are reversed.
//
// If perByte is true, the bits are reversed within each byte, otherwise all the bits are reversed.
func (seg *MACAddressSegment) ReverseBits(_ bool) (res *MACAddressSegment, err address_error.IncompatibleAddressError) {
if seg.divisionValues == nil {
res = seg
return
}
if seg.isMultiple() {
if isReversible := seg.isReversibleRange(false); isReversible {
res = seg
return
}
err = &incompatibleAddressError{addressError{key: "ipaddress.error.reverseRange"}}
return
}
oldVal := MACSegInt(seg.GetSegmentValue())
val := MACSegInt(reverseUint8(uint8(oldVal)))
if oldVal == val {
res = seg
} else {
res = NewMACSegment(val)
}
return
}
func (seg *MACAddressSegment) joinSegs(macSegment1 *MACAddressSegment, flip bool, prefixLength PrefixLen) (*IPv6AddressSegment, address_error.IncompatibleAddressError) {
if seg.isMultiple() {
// if the high segment has a range, the low segment must match the full range,
// otherwise it is not possible to create an equivalent range when joining
if !macSegment1.IsFullRange() {
return nil, &incompatibleAddressError{addressError{key: "ipaddress.error.invalidMACIPv6Range"}}
}
}
lower0 := seg.GetSegmentValue()
upper0 := seg.GetUpperSegmentValue()
if flip {
mask2ndBit := SegInt(0x2)
if !seg.MatchesWithMask(mask2ndBit&lower0, mask2ndBit) { // ensures that bit remains constant
return nil, &incompatibleAddressError{addressError{key: "ipaddress.mac.error.not.eui.convertible"}}
}
lower0 ^= mask2ndBit
upper0 ^= mask2ndBit
}
return NewIPv6RangePrefixedSegment(
IPv6SegInt((lower0<<8)|macSegment1.getSegmentValue()),
IPv6SegInt((upper0<<8)|macSegment1.getUpperSegmentValue()),
prefixLength), nil
}
// ReverseBytes returns a segment with the bytes reversed, which for a MAC segment is always the original segment.
func (seg *MACAddressSegment) ReverseBytes() (*MACAddressSegment, address_error.IncompatibleAddressError) {
return seg, nil
}
// Join joins with another MAC segment to produce a IPv6 segment.
func (seg *MACAddressSegment) Join(macSegment1 *MACAddressSegment, prefixLength PrefixLen) (*IPv6AddressSegment, address_error.IncompatibleAddressError) {
return seg.joinSegs(macSegment1, false, prefixLength)
}
// JoinAndFlip2ndBit joins with another MAC segment to produce a IPv6 segment with the second bit flipped from 1 to 0.
func (seg *MACAddressSegment) JoinAndFlip2ndBit(macSegment1 *MACAddressSegment, prefixLength PrefixLen) (*IPv6AddressSegment, address_error.IncompatibleAddressError) {
return seg.joinSegs(macSegment1, true, prefixLength)
}
// ToDiv converts to an AddressDivision, a polymorphic type usable with all address segments and divisions.
// Afterwards, you can convert back with ToMAC.
//
// ToDiv can be called with a nil receiver, enabling you to chain this method with methods that might return a nil pointer.
func (seg *MACAddressSegment) ToDiv() *AddressDivision {
return seg.ToSegmentBase().ToDiv()
}
// ToSegmentBase converts to an AddressSegment, a polymorphic type usable with all address segments.
// Afterwards, you can convert back with ToMAC.
//
// ToSegmentBase can be called with a nil receiver, enabling you to chain this method with methods that might return a nil pointer.
func (seg *MACAddressSegment) ToSegmentBase() *AddressSegment {
if seg == nil {
return nil
}
return (*AddressSegment)(seg.init())
}
// Iterator provides an iterator to iterate through the individual address segments of this address segment.
//
// Call IsMultiple to determine if this instance represents multiple address segments, or GetValueCount for the count.
func (seg *MACAddressSegment) Iterator() Iterator[*MACAddressSegment] {
if seg == nil {
return macSegmentIterator{nilSegIterator()}
}
return macSegmentIterator{seg.init().iterator()}
}
// PrefixBlockIterator provides an iterator to iterate through the individual prefix blocks of the given prefix length,
// one for each prefix of that length in the segment.
func (seg *MACAddressSegment) PrefixBlockIterator(segmentPrefixLen BitCount) Iterator[*MACAddressSegment] {
return macSegmentIterator{seg.init().prefixedBlockIterator(segmentPrefixLen)}
}
// PrefixIterator provides an iterator to iterate through the individual prefixes of the given prefix length in this segment,
// each iterated element spanning the range of values for its prefix.
//
// It is similar to the prefix block iterator, except for possibly the first and last iterated elements, which might not be prefix blocks,
// instead constraining themselves to values from this range.
func (seg *MACAddressSegment) PrefixIterator(segmentPrefixLen BitCount) Iterator[*MACAddressSegment] {
return macSegmentIterator{seg.init().prefixedIterator(segmentPrefixLen)}
}
// GetLower returns a segment representing just the lowest value in the range, which will be the same segment if it represents a single value.
func (seg *MACAddressSegment) GetLower() *MACAddressSegment {
return seg.init().getLower().ToMAC()
}
// GetUpper returns a segment representing just the highest value in the range, which will be the same segment if it represents a single value.
func (seg *MACAddressSegment) GetUpper() *MACAddressSegment {
return seg.init().getUpper().ToMAC()
}
// GetWildcardString produces a normalized string to represent the segment, favouring wildcards and range characters.
// The explicit range of a range-valued segment will be printed.
//
// The string returned is useful in the context of creating strings for address sections or full addresses,
// in which case the radix and the bit-length can be deduced from the context.
// The String method produces strings more appropriate when no context is provided.
func (seg *MACAddressSegment) GetWildcardString() string {
if seg == nil {
return nilString()
}
return seg.init().getWildcardString()
}
// Compare returns a negative integer, zero,
// or a positive integer if this address segment is less than, equal,
// or greater than the given item.
// Any address item is comparable to any other.
// All address items use CountComparator to compare.
func (seg *MACAddressSegment) Compare(item AddressItem) int {
return CountComparator.Compare(seg, item)
}
// CompareSize compares the counts of two items,
// the number of individual values within.
//
// Rather than calculating counts with GetCount,
// there can be more efficient ways of determining whether one represents more individual values than another.
//
// CompareSize returns a positive integer if this segment has a larger count than the item given,
// zero if they are the same,
// or a negative integer if the other has a larger count.
func (seg *MACAddressSegment) CompareSize(other AddressItem) int {
if seg == nil {
if isNilItem(other) {
return 0
}
// have size 0, other has size >= 1
return -1
}
return seg.init().compareSize(other)
}
// GetString produces a normalized string to represent the segment.
//
// For MAC segments, the string is the same as that produced by GetWildcardString.
func (seg *MACAddressSegment) GetString() string {
if seg == nil {
return nilString()
}
return seg.init().getString()
}
// String produces a string that is useful when a segment is provided with no context.
// It uses the hexadecimal radix with the string prefix for hex ("0x").
// GetWildcardString and GetString are more appropriate in context with other segments or divisions.
// They do not use a string prefix and use '*' for full-range segments.
func (seg *MACAddressSegment) String() string {
if seg == nil {
return nilString()
}
return seg.init().toString()
}
type macSegmentValues struct {
value MACSegInt
upperValue MACSegInt
cache divCache
}
func (seg *macSegmentValues) getAddrType() addrType {
return macType
}
func (seg *macSegmentValues) includesZero() bool {
return seg.value == 0
}
func (seg *macSegmentValues) includesMax() bool {
return seg.upperValue == 0xff
}
func (seg *macSegmentValues) isMultiple() bool {
return seg.value != seg.upperValue
}
func (seg *macSegmentValues) getCount() *big.Int {
return big.NewInt(int64(seg.upperValue-seg.value) + 1)
}
func (seg *macSegmentValues) getBitCount() BitCount {
return MACBitsPerSegment
}
func (seg *macSegmentValues) getByteCount() int {
return MACBytesPerSegment
}
func (seg *macSegmentValues) getValue() *BigDivInt {
return big.NewInt(int64(seg.value))
}
func (seg *macSegmentValues) getUpperValue() *BigDivInt {
return big.NewInt(int64(seg.upperValue))
}
func (seg *macSegmentValues) getDivisionValue() DivInt {
return DivInt(seg.value)
}
func (seg *macSegmentValues) getUpperDivisionValue() DivInt {
return DivInt(seg.upperValue)
}
func (seg *macSegmentValues) getDivisionPrefixLength() PrefixLen {
return nil
}
func (seg *macSegmentValues) getSegmentValue() SegInt {
return SegInt(seg.value)
}
func (seg *macSegmentValues) getUpperSegmentValue() SegInt {
return SegInt(seg.upperValue)
}
func (seg *macSegmentValues) getCache() *divCache {
return &seg.cache
}
func (seg *macSegmentValues) calcBytesInternal() (bytes, upperBytes []byte) {
bytes = []byte{byte(seg.value)}
if seg.isMultiple() {
upperBytes = []byte{byte(seg.upperValue)}
} else {
upperBytes = bytes
}
return
}
func (seg *macSegmentValues) bytesInternal(upper bool) []byte {
if upper {
return []byte{byte(seg.upperValue)}
}
return []byte{byte(seg.value)}
}
func (seg *macSegmentValues) deriveNew(val, upperVal DivInt, _ PrefixLen) divisionValues {
return newMACSegmentValues(MACSegInt(val), MACSegInt(upperVal))
}
func (seg *macSegmentValues) deriveNewMultiSeg(val, upperVal SegInt, _ PrefixLen) divisionValues {
return newMACSegmentValues(MACSegInt(val), MACSegInt(upperVal))
}
func (seg *macSegmentValues) deriveNewSeg(val SegInt, _ PrefixLen) divisionValues {
return newMACSegmentVal(MACSegInt(val))
}
func (seg *macSegmentValues) derivePrefixed(_ PrefixLen) divisionValues {
return seg
}
func makeSegmentCacheMAC() (segmentCacheMAC []macSegmentValues) {
if useMACSegmentCache {
segmentCacheMAC = make([]macSegmentValues, MACMaxValuePerSegment+1)
for i := range segmentCacheMAC {
vals := &segmentCacheMAC[i]
segi := MACSegInt(i)
vals.value = segi
vals.upperValue = segi
}
}
return
}
func newMACSegmentVal(value MACSegInt) *macSegmentValues {
if useMACSegmentCache {
result := &segmentCacheMAC[value]
//checkValuesMAC(value, value, result)
return result
}
return &macSegmentValues{value: value, upperValue: value}
}
func newMACSegmentValues(value, upperValue MACSegInt) *macSegmentValues {
if value == upperValue {
return newMACSegmentVal(value)
} else if value > upperValue {
value, upperValue = upperValue, value
}
if useMACSegmentCache && value == 0 && upperValue == MACMaxValuePerSegment {
return allRangeValsMAC
}
return &macSegmentValues{value: value, upperValue: upperValue}
}
func newMACSegment(vals *macSegmentValues) *MACAddressSegment {
return &MACAddressSegment{
addressSegmentInternal{
addressDivisionInternal{
addressDivisionBase{vals},
},
},
}
}
// NewMACSegment constructs a segment of a MAC address with the given value.
func NewMACSegment(val MACSegInt) *MACAddressSegment {
return newMACSegment(newMACSegmentVal(val))
}
// NewMACRangeSegment constructs a segment of a MAC address collection with the given range of sequential values.
func NewMACRangeSegment(val, upperVal MACSegInt) *MACAddressSegment {
return newMACSegment(newMACSegmentValues(val, upperVal))
}
// WrapMACSegmentValueProvider converts the given MACSegmentValueProvider to a SegmentValueProvider
func WrapMACSegmentValueProvider(f MACSegmentValueProvider) SegmentValueProvider {
if f != nil {
return func(segmentIndex int) SegInt {
return SegInt(f(segmentIndex))
}
}
return nil
}
// WrapSegmentValueProviderForMAC converts the given SegmentValueProvider to a MACSegmentValueProvider
// Values that do not fit MACSegInt are truncated.
func WrapSegmentValueProviderForMAC(f SegmentValueProvider) MACSegmentValueProvider {
if f != nil {
return func(segmentIndex int) MACSegInt {
return MACSegInt(f(segmentIndex))
}
}
return nil
}