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
|
//
// Copyright 2020-2022 Sean C Foley
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package ipaddr
import (
"fmt"
"math"
"math/big"
"sort"
"strings"
)
// PrefixBlockConstraint is the generic type constraint used for a prefix block allocator.
type PrefixBlockConstraint[T any] interface {
SequentialRangeConstraint[T]
MergeToPrefixBlocks(...T) []T
PrefixBlockIterator() Iterator[T]
}
var (
_ = PrefixBlockAllocator[*IPAddress]{}
_ = PrefixBlockAllocator[*IPv4Address]{}
_ = PrefixBlockAllocator[*IPv6Address]{}
)
// PrefixBlockAllocator allocates blocks of the desired size from a set of seed blocks provided to it previously for allocation.
//
// The generic type T can be *IPAddress, *IPv4Address or *IPv6Address.
//
// Once a prefix block allocator of generic type *IPAddress has been provided with either an IPv4 or IPv6 address or subnet for allocation,
// it can only be used with the same address version from that point onwards. In other words, it can allocate either IPv4 or IPv6 blocks, but not both.
//
// The zero value of a PrefixBlockAllocator is an allocator ready for use.
type PrefixBlockAllocator[T PrefixBlockConstraint[T]] struct {
version IPVersion
blocks [][]T
reservedCount,
totalBlockCount int
}
// GetBlockCount returns the count of available blocks in this allocator.
func (alloc *PrefixBlockAllocator[T]) GetBlockCount() int {
return alloc.totalBlockCount
}
// GetVersion returns the IP version of the available blocks in the allocator,
// which is determined by the version of the first block made available to the allocator.
func (alloc *PrefixBlockAllocator[T]) GetVersion() IPVersion {
return alloc.version
}
// GetTotalCount returns the total of the count of all individual addresses available in this allocator,
// which is the total number of individual addresses in all the blocks.
func (alloc *PrefixBlockAllocator[T]) GetTotalCount() *big.Int {
if alloc.GetBlockCount() == 0 {
return bigZero()
}
result := bigZero()
version := alloc.version
for i := len(alloc.blocks) - 1; i >= 0; i-- {
if blockCount := len(alloc.blocks[i]); blockCount != 0 {
hostBitCount := HostBitCount(version.GetBitCount() - i)
size := hostBitCount.BlockSize()
size.Mul(size, big.NewInt(int64(blockCount)))
result.Add(result, size)
}
}
return result
}
// SetReserved sets the additional number of addresses to be included in any size allocation.
// Any request for a block of a given size will adjust that size by the given number.
// This can be useful when the size requests do not include the count of additional addresses that must be included in every block.
// For IPv4, it is common to reserve two addresses, the network and broadcast addresses.
// If the reservedCount is negative, then every request will be shrunk by that number, useful for cases where
// insufficient space requires that all subnets be reduced in size by an equal number.
func (alloc *PrefixBlockAllocator[T]) SetReserved(reservedCount int) {
alloc.reservedCount = reservedCount
}
// GetReserved returns the reserved count. Use SetReserved to change the reserved count.
func (alloc *PrefixBlockAllocator[T]) GetReserved() (reservedCount int) {
return alloc.reservedCount
}
// AddAvailable provides the given blocks to the allocator for allocating.
func (alloc *PrefixBlockAllocator[T]) AddAvailable(blocks ...T) {
if len(blocks) == 0 {
return
}
version := alloc.version
for _, block := range blocks {
if version.IsIndeterminate() {
version = block.GetIPVersion()
alloc.version = version
} else if !version.Equal(block.GetIPVersion()) {
panic(lookupStr("ipaddress.error.ipVersionMismatch"))
}
}
if alloc.blocks == nil {
size := alloc.version.GetBitCount() + 1
alloc.blocks = make([][]T, size)
} else if alloc.totalBlockCount > 0 {
for i, existingBlocks := range alloc.blocks {
blocks = append(blocks, existingBlocks...)
alloc.blocks[i] = nil
}
}
blocks = blocks[0].MergeToPrefixBlocks(blocks...)
alloc.insertBlocks(blocks)
}
func (alloc *PrefixBlockAllocator[T]) insertBlocks(blocks []T) {
for _, block := range blocks {
prefLen := block.GetPrefixLen().bitCount()
alloc.blocks[prefLen] = append(alloc.blocks[prefLen], block)
alloc.totalBlockCount++
}
}
// GetAvailable returns a list of all the blocks available for allocating in the allocator.
func (alloc *PrefixBlockAllocator[T]) GetAvailable() (blocks []T) {
for _, block := range alloc.blocks {
blocks = append(blocks, block...)
}
return
}
// AllocateSize returns a block of sufficient size,
// the size indicating the number of distinct addresses required in the block.
// AllocateSize returns nil if no such block is available in the allocator,
// or if the size required is zero.
// The returned block will be able to accommodate sizeRequired hosts as well as the reserved count, if any.
func (alloc *PrefixBlockAllocator[T]) AllocateSize(sizeRequired uint64) T {
var bitsRequired HostBitCount
if alloc.reservedCount < 0 {
adjustment := uint64(-alloc.reservedCount)
if adjustment >= sizeRequired {
var t T
return t
}
sizeRequired -= adjustment
bitsRequired = *BitsForCount(sizeRequired)
} else if math.MaxUint64-uint64(alloc.reservedCount) < sizeRequired {
// 64 bits holds MaxUint64 + 1 addresses
sizeRequired += uint64(alloc.reservedCount) // overflow
bitsRequired = *BitsForCount(sizeRequired) + 64
} else {
sizeRequired += uint64(alloc.reservedCount)
bRequired := BitsForCount(sizeRequired)
if bRequired == nil {
var t T
return t
}
bitsRequired = *bRequired
}
return alloc.AllocateBitLen(BitCount(bitsRequired))
}
// AllocateSizes returns multiple blocks of sufficient size for the given size required,
// or nil if there is insufficient space in the allocator.
// The reserved count, if any, will be added to the required sizes.
func (alloc *PrefixBlockAllocator[T]) AllocateSizes(blockSizes ...uint64) []AllocatedBlock[T] {
sizes := append(make([]uint64, 0, len(blockSizes)), blockSizes...)
// sort required subnets by size, largest first
sort.Slice(sizes, func(i, j int) bool {
return sizes[i] > sizes[j]
})
result := make([]AllocatedBlock[T], 0, len(sizes))
for _, blockSize := range sizes {
if alloc.reservedCount < 0 && uint64(-alloc.reservedCount) >= blockSize {
// size zero
continue
}
allocated := alloc.AllocateSize(blockSize)
if allocated.IsMultiple() || bigIsOne(allocated.GetCount()) { // count is non-zero
result = append(result, AllocatedBlock[T]{
blockSize: new(big.Int).SetUint64(blockSize),
reservedCount: alloc.reservedCount,
block: allocated,
})
} else {
return nil
}
}
return result
}
// AllocateBitLen allocates a block with the given bit-length,
// the bit-length being the number of bits extending beyond the prefix length,
// or nil if no such block is available in the allocator.
// The reserved count is ignored when allocating by bit-length.
func (alloc *PrefixBlockAllocator[T]) AllocateBitLen(bitLength BitCount) T {
if alloc.totalBlockCount == 0 {
var t T
return t // nil
}
newPrefixBitCount := alloc.version.GetBitCount() - bitLength
var block T
i := newPrefixBitCount
for ; i >= 0; i-- {
blockRow := alloc.blocks[i]
if len(blockRow) > 0 {
block = blockRow[0]
var t T
blockRow[0] = t // just for GC
alloc.blocks[i] = blockRow[1:]
alloc.totalBlockCount--
break
}
}
if !block.IsMultiple() || i == newPrefixBitCount {
return block
}
// block is larger than needed, adjust it
adjustedBlock := block.SetPrefixLen(newPrefixBitCount)
blockIterator := adjustedBlock.PrefixBlockIterator()
result := blockIterator.Next()
// now we add the remaining from the block iterator back into the list
alloc.insertBlocks(newSequRangeUnchecked(blockIterator.Next().GetLower(), block.GetUpper(), true).SpanWithPrefixBlocks())
return result
}
// AllocateMultiBitLens returns multiple blocks of the given bit-lengths,
// or nil if there is insufficient space in the allocator.
// The reserved count is ignored when allocating by bit-length.
func (alloc *PrefixBlockAllocator[T]) AllocateMultiBitLens(bitLengths ...BitCount) []AllocatedBlock[T] {
lengths := append(make([]BitCount, 0, len(bitLengths)), bitLengths...)
// sort required subnets by size, largest first
sort.Slice(lengths, func(i, j int) bool {
return lengths[i] > lengths[j]
})
result := make([]AllocatedBlock[T], 0, len(lengths))
for _, bitLength := range lengths {
allocated := alloc.AllocateBitLen(bitLength)
if allocated.IsMultiple() || bigIsOne(allocated.GetCount()) {
hostBitCount := HostBitCount(bitLength)
result = append(result, AllocatedBlock[T]{
blockSize: hostBitCount.BlockSize(),
block: allocated,
})
} else {
return nil
}
}
return result
}
// String returns a string showing the counts of available blocks for each prefix size in the allocator.
func (alloc PrefixBlockAllocator[T]) String() string {
var builder strings.Builder
version := alloc.version
hasBlocks := false
builder.WriteString("available blocks:\n")
for i := len(alloc.blocks) - 1; i >= 0; i-- {
if blockCount := len(alloc.blocks[i]); blockCount != 0 {
hostBitCount := HostBitCount(version.GetBitCount() - i)
size := hostBitCount.BlockSize()
builder.WriteString(fmt.Sprint(blockCount))
if blockCount == 1 {
builder.WriteString(" block")
} else {
builder.WriteString(" blocks")
}
builder.WriteString(" with prefix length ")
builder.WriteString(fmt.Sprint(i))
builder.WriteString(" size ")
builder.WriteString(fmt.Sprint(size))
builder.WriteString("\n")
hasBlocks = true
}
}
if !hasBlocks {
builder.WriteString("none\n")
}
return builder.String()
}
type (
IPPrefixBlockAllocator = PrefixBlockAllocator[*IPAddress]
IPv4PrefixBlockAllocator = PrefixBlockAllocator[*IPv4Address]
IPv6PrefixBlockAllocator = PrefixBlockAllocator[*IPv6Address]
)
// AllocatedBlock represents a block of addresses allocated for assignment to hosts.
type AllocatedBlock[T AddressType] struct {
blockSize *big.Int
block T
reservedCount int
}
// GetAddress returns the block.
func (alloc AllocatedBlock[T]) GetAddress() T {
return alloc.block
}
// GetSize returns the number of hosts for which this block was allocated.
func (alloc AllocatedBlock[T]) GetSize() *big.Int {
return alloc.blockSize
}
// GetCount returns the total number of addresses within the block.
func (alloc AllocatedBlock[T]) GetCount() *big.Int {
return alloc.block.GetCount()
}
// GetReservedCount returns the number of reserved addresses with the block.
func (alloc AllocatedBlock[T]) GetReservedCount() int {
return alloc.reservedCount
}
// String returns a string representation of the allocated block.
func (alloc AllocatedBlock[T]) String() string {
if alloc.reservedCount > 0 {
return fmt.Sprint(alloc.block, " for ", alloc.blockSize, " hosts and ",
alloc.reservedCount, " reserved addresses")
}
return fmt.Sprint(alloc.block, " for ", alloc.blockSize, " hosts")
}
|