-
Notifications
You must be signed in to change notification settings - Fork 21
/
IPv4.php
194 lines (174 loc) · 5.16 KB
/
IPv4.php
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
<?php
namespace Darsyn\IP\Version;
use Darsyn\IP\AbstractIP;
use Darsyn\IP\Exception;
use Darsyn\IP\Util\Binary;
use Darsyn\IP\Util\MbString;
/**
* IPv4 Address
*
* IPv4 is an immutable value object for IP addresses, including some helper
* functions for broadcast and network addresses, and whether its within the
* range of another IP address according to a CIDR (subnet mask), etc.
* This class deals solely with IPv4 addresses and will throw an
* InvalidIpAddressException when IPv6 addresses are used.
* Internally, the IP address is converted to a 4 byte binary sequence for easy
* mathematical operations and consistency (for example, storing the IP address'
* binary sequence in a fixed-length database column).
*
* @author Zan Baldwin <[email protected]>
* @link https://github.com/darsyn/ip
* @copyright 2015 Zan Baldwin
* @license MIT/X11 <http://j.mp/mit-license>
*/
class IPv4 extends AbstractIP implements Version4Interface
{
/**
* {@inheritDoc}
*/
public static function factory($ip)
{
try {
// Convert from protocol notation to binary sequence.
$binary = self::getProtocolFormatter()->pton($ip);
// If the string was not 4 bytes long, then the IP supplied was
// neither in protocol notation or binary sequence notation. Throw
// an exception.
if (MbString::getLength($binary) !== 4) {
if (MbString::getLength($ip) !== 4) {
throw new Exception\WrongVersionException(4, 6, $ip);
}
$binary = $ip;
}
} catch(Exception\IpException $e) {
throw new Exception\InvalidIpAddressException($ip, $e);
}
return new static($binary);
}
/**
* {@inheritDoc}
*/
public function getDotAddress()
{
try {
return self::getProtocolFormatter()->ntop($this->getBinary());
} catch (Exception\Formatter\FormatException $e) {
throw new Exception\IpException('An unknown error occured internally.', 0, $e);
}
}
/**
* {@inheritDoc}
*/
public function getVersion()
{
return 4;
}
/**
* {@inheritDoc}
*/
public function isLinkLocal()
{
return $this->inRange(new self(Binary::fromHex('a9fe0000')), 16);
}
/**
* {@inheritDoc}
*/
public function isLoopback()
{
return $this->inRange(new self(Binary::fromHex('7f000000')), 8);
}
/**
* {@inheritDoc}
*/
public function isMulticast()
{
return $this->inRange(new self(Binary::fromHex('e0000000')), 4);
}
/**
* {@inheritDoc}
*/
public function isPrivateUse()
{
return $this->inRange(new self(Binary::fromHex('0a000000')), 8)
|| $this->inRange(new self(Binary::fromHex('ac100000')), 12)
|| $this->inRange(new self(Binary::fromHex('c0a80000')), 16);
}
/**
* {@inheritDoc}
*/
public function isUnspecified()
{
return $this->getBinary() === "\0\0\0\0";
}
/**
* {@inheritDoc}
*/
public function isBenchmarking()
{
return $this->inRange(new self(Binary::fromHex('c6120000')), 15);
}
/**
* {@inheritDoc}
*/
public function isDocumentation()
{
return $this->inRange(new self(Binary::fromHex('c0000200')), 24)
|| $this->inRange(new self(Binary::fromHex('c6336400')), 24)
|| $this->inRange(new self(Binary::fromHex('cb007100')), 24);
}
/**
* {@inheritDoc}
*/
public function isPublicUse()
{
// Both 192.0.0.9 and 192.0.0.10 are globally routable, despite being in the future reserved block.
if (in_array(Binary::toHex($this->getBinary()), ['c0000009', 'c000000a'], true)) {
return true;
}
// The whole 0.0.0.0/8 block is not for public use.
if ($this->inRange(new self(Binary::fromHex('00000000')), 8)) {
return false;
}
// Addresses reserved for future protocols are not globally routable (different to reserved for future use).
if ($this->inRange(new self(Binary::fromHex('c0000000')), 24)) {
return false;
}
return !$this->isPrivateUse()
&& !$this->isLoopback()
&& !$this->isLinkLocal()
&& !$this->isBroadcast()
&& !$this->isShared()
&& !$this->isDocumentation()
&& !$this->isFutureReserved()
&& !$this->isBenchmarking();
}
/**
* {@inheritDoc}
*/
public function isBroadcast()
{
return $this->getBinary() === Binary::fromHex('ffffffff');
}
/**
* {@inheritDoc}
*/
public function isShared()
{
return $this->inRange(new self(Binary::fromHex('64400000')), 10);
}
/**
* {@inheritDoc}
*/
public function isFutureReserved()
{
return $this->getBinary() !== Binary::fromHex('ffffffff')
&& $this->inRange(new self(Binary::fromHex('f0000000')), 4);
}
/**
* {@inheritDoc}
*/
public function __toString()
{
return $this->getDotAddress();
}
}