21 private static $checkedIps = [];
26 private function __construct()
38 public static function checkIp($requestIp, $ips)
40 if (!\is_array($ips)) {
44 $method = substr_count($requestIp,
':') > 1 ?
'checkIp6' :
'checkIp4';
46 foreach ($ips as $ip) {
47 if (self::$method($requestIp, $ip)) {
64 public static function checkIp4($requestIp, $ip)
66 $cacheKey = $requestIp.
'-'.$ip;
67 if (isset(self::$checkedIps[$cacheKey])) {
68 return self::$checkedIps[$cacheKey];
71 if (!filter_var($requestIp, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
72 return self::$checkedIps[$cacheKey] =
false;
75 if (
false !== strpos($ip,
'/')) {
76 list($address, $netmask) = explode(
'/', $ip, 2);
78 if (
'0' === $netmask) {
79 return self::$checkedIps[$cacheKey] = filter_var($address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4);
82 if ($netmask < 0 || $netmask > 32) {
83 return self::$checkedIps[$cacheKey] =
false;
90 if (
false === ip2long($address)) {
91 return self::$checkedIps[$cacheKey] =
false;
94 return self::$checkedIps[$cacheKey] = 0 === substr_compare(sprintf(
'%032b', ip2long($requestIp)), sprintf(
'%032b', ip2long($address)), 0, $netmask);
114 $cacheKey = $requestIp.
'-'.$ip;
115 if (isset(self::$checkedIps[$cacheKey])) {
116 return self::$checkedIps[$cacheKey];
119 if (!((\extension_loaded(
'sockets') && \defined(
'AF_INET6')) || @inet_pton(
'::1'))) {
120 throw new \RuntimeException(
'Unable to check Ipv6. Check that PHP was not compiled with option "disable-ipv6".');
123 if (
false !== strpos($ip,
'/')) {
124 list($address, $netmask) = explode(
'/', $ip, 2);
126 if (
'0' === $netmask) {
127 return (
bool) unpack(
'n*', @inet_pton($address));
130 if ($netmask < 1 || $netmask > 128) {
131 return self::$checkedIps[$cacheKey] =
false;
138 $bytesAddr = unpack(
'n*', @inet_pton($address));
139 $bytesTest = unpack(
'n*', @inet_pton($requestIp));
141 if (!$bytesAddr || !$bytesTest) {
142 return self::$checkedIps[$cacheKey] =
false;
145 for ($i = 1, $ceil = ceil($netmask / 16); $i <= $ceil; ++$i) {
146 $left = $netmask - 16 * ($i - 1);
147 $left = ($left <= 16) ? $left : 16;
148 $mask = ~(0xffff >> $left) & 0xffff;
149 if (($bytesAddr[$i] & $mask) != ($bytesTest[$i] & $mask)) {
150 return self::$checkedIps[$cacheKey] =
false;
154 return self::$checkedIps[$cacheKey] =
true;
164 $wrappedIPv6 =
false;
165 if (
'[' === substr($ip, 0, 1) &&
']' === substr($ip, -1, 1)) {
167 $ip = substr($ip, 1, -1);
170 $packedAddress = inet_pton($ip);
171 if (4 === \strlen($packedAddress)) {
172 $mask =
'255.255.255.0';
173 } elseif ($ip === inet_ntop($packedAddress & inet_pton(
'::ffff:ffff:ffff'))) {
174 $mask =
'::ffff:ffff:ff00';
175 } elseif ($ip === inet_ntop($packedAddress & inet_pton(
'::ffff:ffff'))) {
176 $mask =
'::ffff:ff00';
178 $mask =
'ffff:ffff:ffff:ffff:0000:0000:0000:0000';
180 $ip = inet_ntop($packedAddress & inet_pton($mask));