source: trunk/Packages/Common/NetworkAddress.php

Last change on this file was 920, checked in by chronos, 3 years ago
  • Modified: Do not show All tabs if only one tab is used in IS item relation tabs.
  • Modified: Do not show tabs at all if no relations are used for IS item.
File size: 3.4 KB
RevLine 
[746]1<?php
2
[870]3define('IPV4_BIT_WIDTH', 32);
4
[746]5class NetworkAddressIPv4
6{
[888]7 public int $Address;
8 public int $Prefix;
[746]9
10 function __construct()
11 {
12 $this->Address = 0;
13 $this->Prefix = 0;
14 }
15
[888]16 function GetNetMask(): int
[746]17 {
[874]18 return ((1 << IPV4_BIT_WIDTH) - 1) ^ ((1 << (IPV4_BIT_WIDTH - $this->Prefix)) - 1);
[746]19 }
20
[888]21 function AddressToString(): string
[746]22 {
[874]23 return implode('.', array(($this->Address >> 24) & 255, ($this->Address >> 16) & 255, ($this->Address >> 8) & 255, ($this->Address & 255)));
[746]24 }
25
[888]26 function AddressFromString(string $Value): void
[746]27 {
28 $Parts = explode('.', $Value);
29 $this->Address = ($Parts[0] << 24) | ($Parts[1] << 16) | ($Parts[2] << 8) | $Parts[3];
30 }
31
[888]32 function GetRange(): array
[746]33 {
34 $From = new NetworkAddressIPv4();
35 $From->Address = $this->Address;
[870]36 $From->Prefix = IPV4_BIT_WIDTH;
[746]37 $HostMask = 0xffffffff ^ $this->GetNetMask();
38 $To = new NetworkAddressIPv4();
39 $To->Address = $From->Address + $HostMask;
[870]40 $To->Prefix = IPV4_BIT_WIDTH;
[874]41 return array('From' => $From, 'To' => $To);
[746]42 }
43
[888]44 function ChangePrefix(int $NewPrefix): void
[746]45 {
46 $this->Prefix = $NewPrefix;
[873]47 if ($this->Prefix > IPV4_BIT_WIDTH) $this->Prefix = IPV4_BIT_WIDTH;
48 if ($this->Prefix < 0) $this->Prefix = 0;
[746]49 $this->Address = $this->Address & $this->GetNetMask();
50 }
51
[888]52 function Contain(NetworkAddressIPv4 $Address): bool
[746]53 {
54 $UpperNetmask = $this->GetNetMask();
[873]55 if (($this->Prefix < $Address->Prefix) and (($Address->Address & $UpperNetmask) == ($this->Address & $UpperNetmask))) $Result = true;
[746]56 else $Result = false;
[874]57 return $Result;
[746]58 }
59}
60
[870]61define('IPV6_BIT_WIDTH', 128);
62
[746]63class NetworkAddressIPv6
64{
[888]65 public string $Address;
66 public int $Prefix;
[746]67
68 function __construct()
69 {
70 $this->Address = 0;
71 $this->Prefix = 0;
72 }
73
[888]74 function GetNetMask(): string
[870]75 {
[874]76 return Int128Xor(Int128Sub(Int128Shl(IntToInt128(1), IntToInt128(IPV6_BIT_WIDTH)), IntToInt128(1)),
77 Int128Sub(Int128Shl(IntToInt128(1), IntToInt128(IPV6_BIT_WIDTH - $this->Prefix)), IntToInt128(1)));
[870]78 }
79
[888]80 function AddressToString(): string
[746]81 {
[874]82 return inet_ntop($this->Address);
[746]83 }
84
[888]85 function AddressFromString(string $Value)
[746]86 {
87 $this->Address = inet_pton($Value);
88 }
89
[888]90 function ChangePrefix(int $NewPrefix): void
[870]91 {
92 $this->Prefix = $NewPrefix;
[873]93 if ($this->Prefix > IPV6_BIT_WIDTH) $this->Prefix = IPV6_BIT_WIDTH;
94 if ($this->Prefix < 0) $this->Prefix = 0;
[870]95 $this->Address = Int128And($this->Address, $this->GetNetMask());
96 }
97
[888]98 function GetOctets(): array
[746]99 {
100 $Result = array();
101 $Data = array_reverse(unpack('C*', $this->Address));
[873]102 foreach ($Data as $Item)
[746]103 {
104 $Result[] = dechex($Item & 15);
105 $Result[] = dechex(($Item >> 4) & 15);
106 }
[874]107 return $Result;
[746]108 }
109
[888]110 function EncodeMAC(string $MAC): void
[746]111 {
112 $MAC = explode(':', $MAC);
113 $Data = unpack('C*', $this->Address);
114 $Data[9] = hexdec($MAC[0]) ^ 0x02;
115 $Data[10] = hexdec($MAC[1]);
116 $Data[11] = hexdec($MAC[2]);
117 $Data[12] = 0xff;
118 $Data[13] = 0xfe;
119 $Data[14] = hexdec($MAC[3]);
120 $Data[15] = hexdec($MAC[4]);
121 $Data[16] = hexdec($MAC[5]);
122 $this->Address = pack_array('C*', $Data);
123 }
124
[888]125 function Contain(NetworkAddressIPv6 $Address): bool
[870]126 {
127 $UpperNetmask = $this->GetNetMask();
[873]128 if (($this->Prefix < $Address->Prefix) and ((Int128Equal(Int128And($Address->Address, $UpperNetmask), Int128And($this->Address, $UpperNetmask))))) $Result = true;
[870]129 else $Result = false;
[874]130 return $Result;
[870]131 }
[746]132}
Note: See TracBrowser for help on using the repository browser.