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
|
//
// 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 test
import (
"math"
"math/big"
"strconv"
"github.com/seancfoley/ipaddress-go/ipaddr"
)
type ipAddressAllTester struct {
ipAddressRangeTester
}
func (t ipAddressAllTester) run() {
t.testMatches(true, "-", "*.*")
t.testMatches(true, "-", "*.*.*.*")
t.testMatches(true, "-0000000000000000efabffffffffffff", "00000000000000000000000000000000-0000000000000000efabffffffffffff")
t.testMatches(true, "00000000000000000000000000000000-", "00000000000000000000000000000000-ffffffffffffffffffffffffffffffff")
t.testMatches(true, "abfe0000000000000000000000000000-", "abfe0000000000000000000000000000-ffffffffffffffffffffffffffffffff")
t.testMatches(true, "-0x0000000000000000efabffffffffffff", "00000000000000000000000000000000-0000000000000000efabffffffffffff")
t.testMatches(true, "-0X0000000000000000efabffffffffffff", "00000000000000000000000000000000-0000000000000000efabffffffffffff")
t.testMatches(true, "0x00000000000000000000000000000000-", "00000000000000000000000000000000-ffffffffffffffffffffffffffffffff")
t.testMatches(true, "0xabcd0000000000000000000000000000-", "abcd0000000000000000000000000000-ffffffffffffffffffffffffffffffff")
// these are the same addresses as the above tests in hex, but here in base 85
t.testMatches(true, ipaddr.AlternativeRangeSeparatorStr+"0000000000=l?k|EPzi+", "00000000000000000000"+ipaddr.AlternativeRangeSeparatorStr+"0000000000=l?k|EPzi+")
t.testMatches(true, "00000000000000000000"+ipaddr.AlternativeRangeSeparatorStr, "00000000000000000000"+ipaddr.AlternativeRangeSeparatorStr+"=r54lj&NUUO~Hi%c2ym0")
t.testMatches(true, "oBky9Vh_d)e!eUd#8280"+ipaddr.AlternativeRangeSeparatorStr, "oBky9Vh_d)e!eUd#8280"+ipaddr.AlternativeRangeSeparatorStr+"=r54lj&NUUO~Hi%c2ym0")
t.testMatches(true, "*.*.*.*", "-4294967295") // ok on all tests
t.testMatches(true, "*.*.*.*", "-0xffffffff") // ok on all tests
t.testMatches(true, "*.*.*.*", "-037777777777") // ok on all tests
t.testMatches(true, "*.*.*.*", "0-")
t.testMatches(true, "*.*.*.*", "-")
t.testMatches(true, "0.-", "0.*.*.*")
t.testMatches(true, "0.-", "0.*")
t.testMatches(true, "0.0.-", "0.0.*.*")
t.testMatches(true, "0.0.-", "0.0.*")
t.testMatches(true, "0.-.0", "0.*.0.0") //ok
t.testMatches(true, "-.0.-", "*.0.*.*") // more than one inferred range
t.testMatches(true, "-.0.-", "*.0.*")
t.testMatches(true, "1-.0.256-", "1-255.0.256-65535") // 1-.0.256- becomes 1-255.0.*.255 // more than one inferred range
t.testMatches(true, "0.1-.256-", "0.1-255.256-65535") // more than one inferred range
t.testMatches(true, "1-.65536-", "1-255.65536-16777215") // test more than one inferred range
t.testMatches(true, "0b1.0b01.0b101.0b11111111", "1.1.5.255")
t.testMatches(true, "0b1.0b01.0b101.0b11111111/16", "1.1.5.255/16")
t.testMatches(true, "0b1.1.0b101.0b11111111/16", "1.1.5.255/16")
t.testMatches(true, "aaaabbbbccccddddeeeeffffaaaabbbb", "aaaa:bbbb:cccc:dddd:eeee:ffff:aaaa:bbbb")
t.testMatches(true, "aaaabbbbcccccdddffffffffffffffff-aaaabbbbccccdddd0000000000000000", "aaaa:bbbb:cccc:cddd-dddd:*:*:*:*")
t.testMatches(true, "aaaabbbbccccdddd0000000000000000-aaaabbbbcccccdddffffffffffffffff", "aaaa:bbbb:cccc:cddd-dddd:*:*:*:*")
t.testMatches(true, "4)+k&C#VzJ4br>0wv%Yp", "1080::8:800:200c:417a")
t.testMatches(true, "=r54lj&NUUO~Hi%c2ym0", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")
t.testMatches(true, "=r54lj&NUUO~Hi%c2yl0"+ipaddr.AlternativeRangeSeparatorStr+"=r54lj&NUUO~Hi%c2ym0", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffaa-ffff")
t.testMatches(true, "ef86:1dc3:deba:d48:612d:f19c:de7d:e89c", "********************") // base 85
t.testMatches(true, "--------------------", "f677:73f6:11b4:5073:4a06:76c2:ceae:1474")
t.ipv6test(true, "0x00010002000300040000000000000000-0x0001000200030004ffffffffffffffff")
t.ipv6test(true, "0x0001000200030004ffffffffffffffff-0x00010002000300040000000000000000")
t.ipv6test(true, "0x00010002000300040000000000000000")
t.ipv6test(true, "00010002000300040000000000000000-0001000200030004ffffffffffffffff")
t.ipv6test(true, "0001000200030004ffffffffffffffff-00010002000300040000000000000000")
t.ipv6test(true, "00010002000300040000000000000000")
t.ipv6test(true, "00|M>t|ttwH6V6EEzblZ"+ipaddr.AlternativeRangeSeparatorStr+"00|M>t|ttwH6V6EEzkrZ")
t.ipv6test(true, "00|M>t|ttwH6V6EEzkrZ"+ipaddr.AlternativeRangeSeparatorStr+"00|M>t|ttwH6V6EEzblZ")
t.ipv6test(false, "00|M>t|ttwH6V6EEzkr"+ipaddr.AlternativeRangeSeparatorStr+"00|M>t|ttwH6V6EEzblZ")
t.ipv6test(false, "00|M>t|ttwH6V6EEzkrZ"+ipaddr.AlternativeRangeSeparatorStr+"0|M>t|ttwH6V6EEzblZ")
t.ipv6test(false, "00|M>t|ttwH6V6EEzkrZx"+ipaddr.AlternativeRangeSeparatorStr+"00|M>t|ttwH6V6EEzblZ")
t.ipv6test(false, "00|M>t|ttwH6V6EEzkrZ"+ipaddr.AlternativeRangeSeparatorStr+"x00|M>t|ttwH6V6EEzblZ")
t.ipv6test(true, "00000000000000000000000000000000-0001ffffffffffffffffffffffffffff")
t.ipv6test(true, "=q{+M|w0(OeO5^F85=Cb")
t.ipv6test(false, "=q{+M|w0.OeO5^F85=Cb") // .
t.ipv6test(false, "=q{+:|w0(OeO5^F85=Cb") // :
t.ipv6test(false, "=q{+M|w0(OeO5^F85=C/") // / in middle
t.ipv6test(false, "=q{+M|w0(OeO5^F85=/b") // / in middle
t.ipv6test(true, "=q{+M|w0(OeO5^F85=Cb/127") // ok
t.ipv6test(true, "=q{+-|w0(OeO5^-85=Cb") // two '-'
t.ipv6test(true, "=q{+M|w0(OeO5^F85=Cb"+ipaddr.IPv6AlternativeZoneSeparatorStr+"eth0") // ok
t.ipv6test(false, "=q{+M|w0(OeO5^F85=C"+ipaddr.IPv6AlternativeZoneSeparatorStr+"eth0") // too soon
t.testAllContains("*", "1:2:3:4:1:2:3:4", true)
t.testAllContains("*", "1.2.3.4.5", false)
t.testAllContains("*", "1.2.3.4", true)
t.testAllContains("*/64", "1.2.3.4", false)
t.testAllContains("*.*", "1::", false)
t.testAllContains("*:*", "1::", true)
t.testAllContains("*:*", "1.2.3.4", false)
t.testAllContains("*.*", "1.2.3.4", true)
t.testAllContains("*/64", "::", true)
t.testNormalized("aaaabbbbcccccddd0000000000000000-aaaabbbbccccddddffffffffffffffff", "aaaa:bbbb:cccc:cddd-dddd:*:*:*:*")
t.testCanonical("aaaabbbbcccccddd0000000000000000-aaaabbbbccccddddffffffffffffffff", "aaaa:bbbb:cccc:cddd-dddd:*:*:*:*")
p0 := cacheTestBits(0)
p1 := cacheTestBits(1)
p15 := cacheTestBits(15)
p16 := cacheTestBits(16)
p32 := cacheTestBits(32)
p64 := cacheTestBits(64)
p89 := cacheTestBits(89)
p126 := cacheTestBits(126)
p128 := cacheTestBits(128)
t.testSubnetStringRange2("*.0-65535", "0.0.0.0", "255.0.255.255", []interface{}{[]uint{0, 255}, []uint{0, 65535}}) // only valid with inet_aton allowed, and inet_aton takes precedence over wildcard
t.testSubnetStringRange2("00000000000000000000000000000000-00000000000000000000007fffffffff", "::", "::7f:ffff:ffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("00000000000000000000007fffffffff", 16)}})
t.testSubnetStringRange2("00000000000000000000000000000000-00000000007fffffffffffffffffffff", "::", "::7f:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("00000000007fffffffffffffffffffff", 16)}})
t.testSubnetStringRange2("00000000000000000000000000000000-7fffffffffffffffffffffffffffffff", "::", "7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("7fffffffffffffffffffffffffffffff", 16)}})
t.testSubnetStringRange2("00000000000000000000000000000000-ffffffffffffffffffffffffffffffff", "::", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("ffffffffffffffffffffffffffffffff", 16)}})
t.testSubnetStringRange2("0000000000000000000000000000abcd-0000000000000000000000000000bbcd", "::abcd", "::bbcd",
[]interface{}{[]uint{0xabcd, 0xbbcd}})
t.testMaskedIncompatibleAddress("*/f0ff::", "::", "f0ff::")
t.testMaskedIncompatibleAddress("*/129.0.0.0", "0.0.0.0", "129.0.0.0")
t.testMaskedIncompatibleAddress("*:*/f0ff::", "::", "f0ff::")
t.testMaskedIncompatibleAddress("*.*/129.0.0.0", "0.0.0.0", "129.0.0.0")
t.testIncompatibleAddress2("*.257-65535", "0.0.1.1", "255.0.255.255", []interface{}{[2]uint{0, 255}, [2]uint{257, 65535}}) //[0-255, 257-65535]
t.testIncompatibleAddress2("1-1000", "1", "1000", []interface{}{[2]uint{1, 1000}}) //[1-1000]
t.testIncompatibleAddress2("50000-60000", "50000", "60000", []interface{}{[2]uint{50000, 60000}}) //[50000-60000]
t.testIncompatibleAddress2("*.11-16000111", "0.11", "255.16000111", []interface{}{[2]uint{0, 255}, [2]uint{11, 16000111}}) //[0-255, 11-16000111]
t.testIncompatibleAddress2("0-255.11-16000111", "0.11", "255.16000111", []interface{}{[2]uint{0, 255}, [2]uint{11, 16000111}}) //[0-255, 11-16000111] // inet_aton
t.testIncompatibleAddress2("0-254.10101-16000111", "0.10101", "254.16000111", []interface{}{[2]uint{0, 254}, [2]uint{10101, 16000111}}) // [0-254, 10101-16000111] // inet_aton
t.testIncompatibleAddress2("1.10101-16000111", "1.10101", "1.16000111", []interface{}{1, [2]uint{10101, 16000111}}) //[1, 10101-16000111] // inet_aton
t.testIncompatibleAddress2("3-1.10101-16000111", "1.10101", "3.16000111", []interface{}{[2]uint{1, 3}, [2]uint{10101, 16000111}}) //[1-3, 10101-16000111] // inet_aton
t.testIncompatibleAddress2("00000000000000000000000000000000-abcdefabcdefabcdefabcdefabcdefab", "::", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{bigZeroConst(), setBigString("abcdefabcdefabcdefabcdefabcdefab", 16)}) //[0-abcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress2("abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("ffffffffffffffffffffffffffffffff", 16)}) //[abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff]
t.testIncompatibleAddress2("abcdefabcdefabcdefabcdefabcdefab-bbcdefabcdefabcdefabcdefabcdefab", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "bbcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("bbcdefabcdefabcdefabcdefabcdefab", 16)}) //[abcdefabcdefabcdefabcdefabcdefab-bbcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress2("-abcdefabcdefabcdefabcdefabcdefab", "::", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{bigZeroConst(), setBigString("abcdefabcdefabcdefabcdefabcdefab", 16)}) //[0-abcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress2("abcdefabcdefabcdefabcdefabcdefab-", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("ffffffffffffffffffffffffffffffff", 16)}) //[abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff]
t.testIncompatibleAddress2("a:bb:c:dd:e:f:1.1-65535", "a:bb:c:dd:e:f:1.1", "a:bb:c:dd:e:f:1.65535", []interface{}{0xa, 0xbb, 0xc, 0xdd, 0xe, 0xf, 1, []uint{1, 0xffff}}) // mixed with inet_aton, mixed is incompatible address //[a, bb, c, dd, e, f, 1, 1-ffff]
// with prefix lengths
// inet_aton *.0.*.*/15
t.testSubnetStringRange("*.0-65535/15", "0.0.0.0", "255.0.255.255", []interface{}{[2]uint{0, 255}, [2]uint{0, 65535}}, p15) // only valid with inet_aton allowed, and inet_aton takes precedence over wildcard
t.testSubnetStringRange("*.0-131071/15", "0.0.0.0", "255.1.255.255", []interface{}{[2]uint{0, 255}, [2]uint{0, 131071}}, p15) // only valid with inet_aton allowed, and inet_aton takes precedence over wildcard
t.testSubnetStringRange("*.0.0-65535/15", "0.0.0.0", "255.0.255.255", []interface{}{[2]uint{0, 255}, 0, [2]uint{0, 65535}}, p15)
t.testSubnetStringRange("*.0-1.0-65535/15", "0.0.0.0", "255.1.255.255", []interface{}{[2]uint{0, 255}, [2]uint{0, 1}, [2]uint{0, 65535}}, p15)
t.testSubnetStringRange("00000000000000000000000000000000-00000000000000000000007fffffffff/89", "::", "::7f:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("00000000000000000000007fffffffff", 16)}}, p89)
t.testSubnetStringRange("00000000000000000000000000000000-00000000007fffffffffffffffffffff/89", "::", "::7f:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("00000000007fffffffffffffffffffff", 16)}}, p89)
t.testSubnetStringRange("00000000000000000000000000000000-7fffffffffffffffffffffffffffffff/0", "::", "7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("7fffffffffffffffffffffffffffffff", 16)}}, p0)
t.testSubnetStringRange("00000000000000000000000000000000-7fffffffffffffffffffffffffffffff/1", "::", "7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("7fffffffffffffffffffffffffffffff", 17)}}, p1)
t.testSubnetStringRange("00000000000000000000000000000000/1", "::", "7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("7fffffffffffffffffffffffffffffff", 17)}}, p1)
t.testSubnetStringRange("00000000000000000000000000000000-7fffffffffffffffffffffffffffffff/1", "::", "7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("7fffffffffffffffffffffffffffffff", 16)}}, p1)
t.testSubnetStringRange("0000000000000000000000000000abcd-0000000000000000000000000000bbcd/126", "::abcd", "::bbcd",
[]interface{}{[2]uint{0xabcd, 0xbbcd}}, p126)
t.testSubnetStringRange("00000000000000000000000000000000/89", "::", "::7f:ffff:ffff",
[]interface{}{[2]*big.Int{bigZeroConst(), setBigString("00000000000000000000007fffffffff", 16)}}, p89)
t.testIncompatibleAddress("*.11-16000111/32", "0.11", "255.16000111", []interface{}{[2]uint{0, 255}, [2]uint{11, 16000111}}, p32) //[0-255, 11-16000111]
t.testIncompatibleAddress("*.257-65535/16", "0.0.1.1", "255.0.255.255", []interface{}{[2]uint{0, 255}, [2]uint{257, 65535}}, p16) //[0-255, 257-65535]
t.testIncompatibleAddress("1-1000/16", "1", "1000", []interface{}{[2]uint{1, 1000}}, p16) //[1-1000]
t.testIncompatibleAddress("50000-60000/16", "50000", "60000", []interface{}{[2]uint{50000, 60000}}, p16) //[50000-60000]
t.testIncompatibleAddress("3-1.10101-16000111/16", "1.10101", "3.16000111", []interface{}{[2]uint{1, 3}, [2]uint{10101, 16000111}}, p16) //[1-3, 10101-16000111] // inet_aton
t.testIncompatibleAddress("00000000000000000000000000000000-abcdefabcdefabcdefabcdefabcdefab/64", "::", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{bigZeroConst(), setBigString("abcdefabcdefabcdefabcdefabcdefab", 16)}, p64) //[0-abcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress("abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff/64", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("ffffffffffffffffffffffffffffffff", 16)}, p64) //[abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff]
t.testIncompatibleAddress("abcdefabcdefabcdefabcdefabcdefab-bbcdefabcdefabcdefabcdefabcdefab/64", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "bbcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("bbcdefabcdefabcdefabcdefabcdefab", 16)}, p64) //[abcdefabcdefabcdefabcdefabcdefab-bbcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress("-abcdefabcdefabcdefabcdefabcdefab/64", "::", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", [2]*big.Int{bigZeroConst(), setBigString("abcdefabcdefabcdefabcdefabcdefab", 16)}, p64) //[0-abcdefabcdefabcdefabcdefabcdefab]
t.testIncompatibleAddress("abcdefabcdefabcdefabcdefabcdefab-/64", "abcd:efab:cdef:abcd:efab:cdef:abcd:efab", "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", [2]*big.Int{setBigString("abcdefabcdefabcdefabcdefabcdefab", 16), setBigString("ffffffffffffffffffffffffffffffff", 16)}, p64) //[abcdefabcdefabcdefabcdefabcdefab-ffffffffffffffffffffffffffffffff]
t.testIncompatibleAddress2("a:bb:c:dd:e:f:1.1-65535", "a:bb:c:dd:e:f:1.1", "a:bb:c:dd:e:f:1.65535", []interface{}{0xa, 0xbb, 0xc, 0xdd, 0xe, 0xf, 1, []uint{1, 0xffff}}) // mixed with inet_aton, mixed is incompatible address //[a, bb, c, dd, e, f, 1, 1-ffff]
t.testMaskedIncompatibleAddress("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcdef/ffff:0:ffff:0:ffff:0:ffff:0",
"1234::", "2234:0:ffff:0:ffff:0:ffff:0")
t.testSubnetStringRange1("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcdef/::ffff:ffff:FFFF:ffff:FFFF",
"00000000000000000000000000000000", "000000000000ffffffffffffffffffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("000000000000ffffffffffffffffffff", 16)}},
nil, true,
)
t.testIncompatibleAddress1("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcdef/ffff:ffff:ffff:ffff:ffff:FFFF:ffff:FFFF",
"1234567890abcdef1234567890abcdef", "2234567890abcdef1234567890abcdef",
[]interface{}{[]*big.Int{setBigString("1234567890abcdef1234567890abcdef", 16), setBigString("2234567890abcdef1234567890abcdef", 16)}},
p128, true,
)
t.testSubnetStringRange1("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcdef/fff:ffff:ffff:ffff:ffff:FFFF:ffff:FFFF",
"00000000000000000000000000000000", "0fffffffffffffffffffffffffffffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("0fffffffffffffffffffffffffffffff", 16)}},
nil, true,
)
t.testMaskedIncompatibleAddress("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcded/fff:ffff:ffff:ffff:ffff:FFFF:ffff:FFFF",
"00000000000000000000000000000000", "0fffffffffffffffffffffffffffffff",
)
t.testSubnetStringRange1("1234567890abcdef1234567890abcdef-2234567890abcdef2234567890abcdef/::ffff:ffff:FFFF:ffff:FFFF",
"00000000000000000000000000000000", "000000000000ffffffffffffffffffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("000000000000ffffffffffffffffffff", 16)}},
nil, true)
t.testSubnetStringRange1("1234567890abcdef1234567890abcdef-2234567890abcdef2234567890abcdef/::FFFF:ffff:FFFF",
"00000000000000000000000000000000", "00000000000000000000ffffffffffff",
[]interface{}{[]*big.Int{bigZeroConst(), setBigString("00000000000000000000ffffffffffff", 16)}},
nil, true)
t.testMaskedIncompatibleAddress("1234567890abcdef1234567890abcdef-2234567890abcdef2234567890abcdef/::FFFF:ffff:0000",
"00000000000000000000000000000000", "00000000000000000000ffffffff0000")
t.testIncompatibleAddress1("1234567890abcdef1234567890abcdef-2234567890abcdef1234567890abcdef/ffff:FFFF:ffff:FFFF::",
"1234567890abcdef1234567890abcdef", "2234567890abcdef1234567890abcdef",
[]interface{}{[]*big.Int{setBigString("1234567890abcdef1234567890abcdef", 16), setBigString("2234567890abcdef1234567890abcdef", 16)}},
p64, true)
//void testMaskedRange(long value, long upperValue, long maskValue, boolean expectedIsSequential, long expectedLower, long expectedUpper) {
t.testMaskedRange(2, 5, 2, false, 0, 2) // for range 2 to 5, masking with 2 gives range 2 to 0, ie reverse the range,
t.testMaskedRange(2, 5, 6, false, 2, 4)
t.testMaskedRange(2, 5, 7, true, 2, 5)
t.testMaskedRange(2, 5, 1, true, 0, 1)
t.testMaskedRange(1, 3, 1, true, 0, 1)
t.testMaskedRange(2, 5, 0, true, 0, 0)
t.testMaskedRange(1, 3, 0, true, 0, 0)
t.testMaskedRange(1, 511, 511, true, 1, 511)
t.testMaskedRange(101, 612, 511, true, 0, 511)
t.testMaskedRange(102, 612, 511, false, 0, 511)
t.testMaskedRange(102, 611, 511, false, 0, 511)
t.testMaskedRange(1024, 1535, 511, true, 0, 511) //0x400 to 0x5ff with mask
t.testMaskedRange(1024, 1534, 511, true, 0, 510)
t.testMaskedRange(1026, 1536, 511, false, 0, 511)
t.testMaskedRange(1025, 1536, 511, true, 0, 511)
t.testMaskedRange(1025, 1535, 511, true, 1, 511)
t.testMaskedRange(0x400, 0x5ff, 0x1ff, true, 0, 0x1ff) //0x400 to 0x5ff with mask
t.testMaskedRange(0x400, 0x5fe, 0x1ff, true, 0, 0x1fe)
t.testMaskedRange(0x402, 0x600, 0x1ff, false, 0, 0x1ff)
t.testMaskedRange(0x401, 0x600, 0x1ff, true, 0, 0x1ff)
t.testMaskedRange(0x401, 0x5ff, 0x1ff, true, 1, 0x1ff)
t.testMaskedRange(0x401, 0x5ff, 0, true, 0, 0)
t.testMaskedRange(0x401, 0x5ff, 1, true, 0, 1)
// these 5 essentially the same as above 5 but in the extended 8 bytes
t.testMaskedRange(0x40000000000, 0x5ffffffffff, 0x1ffffffffff, true, 0, 0x1ffffffffff)
t.testMaskedRange(0x40000000000, 0x5fffffffffe, 0x1ffffffffff, true, 0, 0x1fffffffffe)
t.testMaskedRange(0x40000000002, 0x60000000000, 0x1ffffffffff, false, 0, 0x1ffffffffff)
t.testMaskedRange(0x40000000001, 0x60000000000, 0x1ffffffffff, true, 0, 0x1ffffffffff)
t.testMaskedRange(0x40000000001, 0x5ffffffffff, 0x1ffffffffff, true, 1, 0x1ffffffffff)
// mask 0x1ff is 9 ones, 5ff is 10 followed by 9 ones, 0x400 is 10 followed by 9 zeros
// ignoring the last 7 zeros,
// this is equivalent to 1000 to 1010 masked by 11, so we clearly must use the highest value to get the masked highest value
t.testMaskedRange(0x40000000000, 0x5ff00000000, 0x1ffffffffff, true, 0, 0x1ff00000000)
t.testMaskedRange(0x40000000000, 0x5fe00000000, 0x1ffffffffff, true, 0, 0x1fe00000000)
// now this is equivalent to 1000 to 10000 masked by 11, so we've now include the mask value in the range
// 0x600 is 110 followed by 8 zeros
// 0x400 is 100 followed by 8 zeros
// 0x401 is 100 followed by 7 zeros and a 1
// 0x402 is 100 followed by 7 zeros and a 2
// 0x1ff is 001 followed by 8 ones
// so we can get the lowest value by masking the top value 0x600
// and we need all values in between 0x600 and 0x601 to fill in the gap to 0x401 and make it sequential again
t.testMaskedRange(0x40000000000, 0x60000000000, 0x1ffffffffff, true, 0, 0x1ffffffffff)
t.testMaskedRange(0x40200000000, 0x60000000000, 0x1ffffffffff, false, 0, 0x1ffffffffff)
t.testMaskedRange(0x40100000000, 0x60000000000, 0x1ffffffffff, false, 0, 0x1ffffffffff)
t.testMaskedRange(0x40100000000, 0x600ffffffff, 0x1ffffffffff, true, 0, 0x1ffffffffff)
t.testMaskedRange(0x40100000000, 0x5ff00000000, 0x1ffffffffff, true, 0x100000000, 0x1ff00000000)
t.testMaskedRange(0x40100000000, 0x5ffffffffff, 0x1ffffffffff, true, 0x100000000, 0x1ffffffffff)
t.testMaskedRange(0x400ffffffff, 0x5ffffffffff, 0x1ffffffffff, true, 0xffffffff, 0x1ffffffffff)
t.testMaskedRangeExtended(
1, 0xcafe, // lower
1, 0xbadcafe, // upper
0x1ff, 0x10000000, // mask
math.MaxUint64, 0x10000000000-1, // max
true, //sequential
0, 0, // lower result
0x1ff, 0) // upper result
t.testMaskedRangeExtended(1, 0xcafe,
1, 0xbadcafe,
0x1fe, 0x10000000, // mask
math.MaxUint64, 0x10000000000-1,
false,
0, 0,
0x1fe, 0)
t.testMaskedRangeExtended(1, 0xcafe,
1, 0xbadcafe,
math.MaxUint64, 0x10000000, // mask
math.MaxUint64, 0x10000000000-1,
true,
0, 0,
math.MaxUint64, 0)
t.testMaskedRangeExtended(1, 0xcafe,
1, 0xbadcafe,
math.MaxUint64>>1, 0x10000000, // mask
math.MaxUint64, 0x10000000000-1,
true,
0, 0,
math.MaxUint64>>1, 0)
t.testMaskedRangeExtended(1, 0xcafe,
1, 0xbadcafe,
1, 0x10000000, // mask
math.MaxUint64, 0x10000000000-1,
true,
0, 0,
1, 0)
t.testMaskedRangeExtended(1, 0xcafe,
1, 0xbadcafe,
0, 0x10000000,
math.MaxUint64, 0x10000000000-1,
true,
0, 0,
0, 0)
t.testStrings()
t.testBackAndForth()
t.ipAddressRangeTester.run()
}
func (t ipAddressAllTester) testBackAndForth() {
t.testBackAndForthIPv4("127.0.0.1")
t.testBackAndForthIPv4("128.0.0.1")
t.testBackAndForthIPv4("255.255.255.255")
t.testBackAndForthIPv4("128.255.255.255")
t.testBackAndForthIPv6("::1")
t.testBackAndForthIPv6("8000::1")
t.testBackAndForthIPv6("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")
t.testBackAndForthIPv6("ffff:a:b:c:d:e:f:cccc")
t.testBackAndForthIPv6("cfff:a:b:c:d:e:f:cccc")
t.testBackAndForthIPv6("7fff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")
}
func (t ipAddressAllTester) testBackAndForthIPv4(addrStr string) {
// agnostic BigInteger and back
addr := ipaddr.NewIPAddressString(addrStr).GetAddress()
value := addr.GetValue()
bigIntBytes := value.Bytes()
byteCount := addr.GetByteCount()
if len(bigIntBytes) < byteCount { // want correct byte length
bytes := make([]byte, byteCount)
copy(bytes[len(bytes)-len(bigIntBytes):], bigIntBytes)
bigIntBytes = bytes
}
andAgain, _ := ipaddr.NewIPAddressFromNetIP(bigIntBytes)
if !andAgain.Equal(addr) {
t.addFailure(newIPAddrFailure("BigInteger result was "+andAgain.String()+" original was "+addr.String(), addr))
}
// byte[] and back
bytes := addr.Bytes()
backAgain, _ := ipaddr.NewIPAddressFromNetIP(bytes)
if !backAgain.Equal(addr) {
t.addFailure(newIPAddrFailure("bytes result was "+backAgain.String()+" original was "+addr.String(), addr))
}
// IPv4 int and back
addrv4 := addr.ToIPv4()
val := addrv4.Uint32Value()
backAgainv4 := ipaddr.NewIPv4AddressFromUint32(val)
if !backAgainv4.Equal(addrv4) {
t.addFailure(newIPAddrFailure("int result was "+backAgainv4.String()+" original was "+addrv4.String(), addrv4.ToIP()))
}
}
func (t ipAddressAllTester) testBackAndForthIPv6(addrStr string) {
// agnostic BigInteger and back
addr := ipaddr.NewIPAddressString(addrStr).GetAddress()
value := addr.GetValue()
bigIntBytes := value.Bytes()
byteCount := addr.GetByteCount()
if len(bigIntBytes) < byteCount { // want correct byte length
bytes := make([]byte, byteCount)
copy(bytes[len(bytes)-len(bigIntBytes):], bigIntBytes)
bigIntBytes = bytes
}
andAgain, _ := ipaddr.NewIPAddressFromNetIP(bigIntBytes)
if !andAgain.Equal(addr) {
t.addFailure(newIPAddrFailure("BigInteger result was "+andAgain.String()+" original was "+addr.String(), addr))
}
// byte[] and back
bytes := addr.Bytes()
backAgain, _ := ipaddr.NewIPAddressFromNetIP(bytes)
if !backAgain.Equal(addr) {
t.addFailure(newIPAddrFailure("bytes result was "+backAgain.String()+" original was "+addr.String(), addr))
}
// IPv6 BigInteger and back
addrv6 := addr.ToIPv6()
value = addrv6.GetValue()
backAgainv6, err := ipaddr.NewIPv6AddressFromInt(value)
if err != nil {
t.addFailure(newIPAddrFailure("got error creating from bytes "+value.String()+" err: "+err.Error(), addr))
} else if !backAgainv6.Equal(addrv6) {
t.addFailure(newIPAddrFailure("int result was "+backAgainv6.String()+" original was "+addrv6.String(), addrv6.ToIP()))
}
}
// tests the maskRange method and its counterpart that works with divs > 64 bits, maskExtendedRange
func (t ipAddressAllTester) testMaskedRange(value, upperValue, maskValue uint64, expectedIsSequential bool, expectedLower, expectedUpper uint64) {
masker := ipaddr.MaskRange(value, upperValue, maskValue, math.MaxUint64)
lowerResult := masker.GetMaskedLower(value, maskValue)
upperResult := masker.GetMaskedUpper(upperValue, maskValue)
isSequential := masker.IsSequential()
if isSequential != expectedIsSequential || lowerResult != expectedLower || upperResult != expectedUpper {
reason := ""
if lowerResult != expectedLower {
reason += "lower mismatch " + strconv.FormatUint(lowerResult, 10) + "(" + strconv.FormatUint(lowerResult, 2) + ") with expected " +
strconv.FormatUint(expectedLower, 10) + "(" + strconv.FormatUint(expectedLower, 2) + ") "
}
if upperResult != expectedUpper {
reason += "upper mismatch " + strconv.FormatUint(upperResult, 10) + "(" + strconv.FormatUint(upperResult, 2) + ") with expected " +
strconv.FormatUint(expectedUpper, 10) + "(" + strconv.FormatUint(expectedUpper, 2) + ") "
}
if isSequential != expectedIsSequential {
reason += "sequential mismatch "
}
t.addFailure(newFailure("invalid masking, "+reason+
strconv.FormatUint(value, 10)+"("+strconv.FormatUint(value, 2)+")"+" to "+
strconv.FormatUint(upperValue, 10)+"("+strconv.FormatUint(upperValue, 2)+")"+" masked with "+
strconv.FormatUint(maskValue, 10)+"("+strconv.FormatUint(maskValue, 2)+")"+" results in "+
strconv.FormatUint(lowerResult, 10)+"("+strconv.FormatUint(lowerResult, 2)+")"+" lower and "+
strconv.FormatUint(upperResult, 10)+"("+strconv.FormatUint(upperResult, 2)+")"+" upper and sequential "+
strconv.FormatBool(isSequential)+" instead of expected "+
strconv.FormatUint(expectedLower, 10)+"("+strconv.FormatUint(expectedLower, 2)+")"+" lower and "+
strconv.FormatUint(expectedUpper, 10)+"("+strconv.FormatUint(expectedUpper, 2)+")"+" upper and sequential "+
strconv.FormatBool(expectedIsSequential), nil))
}
t.incrementTestCount()
t.testMaskedRangeExtended(value, 0, upperValue, 0, maskValue, 0, math.MaxUint64, math.MaxUint64,
expectedIsSequential, expectedLower, 0, expectedUpper, 0)
t.testMaskedRangeExtended(0, value, math.MaxUint64, upperValue, math.MaxUint64, maskValue, math.MaxUint64, math.MaxUint64,
expectedIsSequential, 0, expectedLower, math.MaxUint64, expectedUpper)
}
func (t ipAddressAllTester) testMaskedRangeExtended(value, extendedValue,
upperValue, extendedUpperValue,
maskValue, extendedMaskValue,
maxValue, extendedMaxValue uint64,
expectedIsSequential bool,
expectedLower, expectedExtendedLower,
expectedUpper, expectedExtendedUpper uint64) {
masker := ipaddr.MaskExtendedRange(
value, extendedValue,
upperValue, extendedUpperValue,
maskValue, extendedMaskValue,
maxValue, extendedMaxValue)
lowerResult := masker.GetMaskedLower(value, maskValue)
upperResult := masker.GetMaskedUpper(upperValue, maskValue)
extendedLowerResult := masker.GetExtendedMaskedLower(extendedValue, extendedMaskValue)
extendedUpperResult := masker.GetExtendedMaskedUpper(extendedUpperValue, extendedMaskValue)
isSequential := masker.IsSequential()
if masker.IsSequential() != expectedIsSequential ||
lowerResult != expectedLower || upperResult != expectedUpper ||
extendedLowerResult != expectedExtendedLower || extendedUpperResult != expectedExtendedUpper {
reason := ""
if lowerResult != expectedLower || extendedLowerResult != expectedExtendedLower {
reason += "lower mismatch "
}
if upperResult != expectedUpper || extendedUpperResult != expectedExtendedUpper {
reason += "upper mismatch "
}
if isSequential != expectedIsSequential {
reason += "sequential mismatch "
}
t.addFailure(newFailure("invalid masking, "+reason, nil))
}
t.incrementTestCount()
}
func (t ipAddressAllTester) testAllContains(cidr1, cidr2 string, result bool) {
wstr := t.createAddress(cidr1)
w2str := t.createAddress(cidr2)
t.testStringContains(result, false, wstr, w2str)
t.incrementTestCount()
}
func (t ipAddressAllTester) testStrings() {
//It is good to have at least one base 85 input test, since we have code that caches base 85 input strings for output
t.testIPv6Strings("4)+k&C#VzJ4br>0wv%Yp",
"1080:0:0:0:8:800:200c:417a", //normalized
"1080:0:0:0:8:800:200c:417a", //normalizedWildcards
"1080::8:800:200c:417a", //canonicalWildcards
"1080:0:0:0:8:800:200c:417a", //sql
"1080:0000:0000:0000:0008:0800:200c:417a",
"1080::8:800:200c:417a", //compressed
"1080::8:800:200c:417a",
"1080::8:800:200c:417a", //subnet
"1080::8:800:200c:417a", //compressedWildcard
"1080::8:800:32.12.65.122", //mixed no compress
"1080::8:800:32.12.65.122", //mixedNoCompressHost
"1080::8:800:32.12.65.122",
"1080::8:800:32.12.65.122",
"a.7.1.4.c.0.0.2.0.0.8.0.8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.0.1.ip6.arpa",
"1080-0-0-0-8-800-200c-417a.ipv6-literal.net",
"4)+k&C#VzJ4br>0wv%Yp",
"0x108000000000000000080800200c417a",
"00204000000000000000000000100200004003040572")
t.testIPv6Strings("008JOm8Mm5*yBppL!sg0",
"0:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //normalized
"0:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //normalizedWildcards
"0:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //canonicalWildcards
"0:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //sql
"0000:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"::ffff:ffff:ffff:ffff:ffff:ffff:ffff", //compressed
"0:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"::ffff:ffff:ffff:ffff:ffff:ffff:ffff", //subnet
"::ffff:ffff:ffff:ffff:ffff:ffff:ffff", //compressedWildcard
"::ffff:ffff:ffff:ffff:ffff:255.255.255.255", //mixed no compress
"::ffff:ffff:ffff:ffff:ffff:255.255.255.255", //mixedNoCompressHost
"::ffff:ffff:ffff:ffff:ffff:255.255.255.255",
"::ffff:ffff:ffff:ffff:ffff:255.255.255.255",
"f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.0.0.0.0.ip6.arpa",
"0-ffff-ffff-ffff-ffff-ffff-ffff-ffff.ipv6-literal.net",
"008JOm8Mm5*yBppL!sg0",
"0x0000ffffffffffffffffffffffffffff",
"00000017777777777777777777777777777777777777")
t.testIPv6Strings("=r54lj&NUUO~Hi%c2ym0",
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //normalized
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //normalizedWildcards
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //canonicalWildcards
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //sql
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //compressed
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //subnet
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", //compressedWildcard
"ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255", //mixed no compress
"ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255", //mixedNoCompressHost
"ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255",
"ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255",
"f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.f.ip6.arpa",
"ffff-ffff-ffff-ffff-ffff-ffff-ffff-ffff.ipv6-literal.net",
"=r54lj&NUUO~Hi%c2ym0",
"0xffffffffffffffffffffffffffffffff",
"03777777777777777777777777777777777777777777")
}
|