respect-validation/library/Rules/Ip.php

203 lines
5.2 KiB
PHP
Raw Normal View History

<?php
2015-06-08 16:47:14 +02:00
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
2013-01-09 15:48:11 +01:00
use Respect\Validation\Exceptions\ComponentException;
use function bccomp;
use function explode;
use function filter_var;
use function ip2long;
use function is_int;
use function long2ip;
use function mb_strpos;
use function mb_substr_count;
use function sprintf;
use function str_replace;
use function strtr;
2013-01-09 15:48:11 +01:00
/**
* Validates whether the input is a valid IP address.
*
* This validator uses the native filter_var() PHP function.
*
* @author Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
* @author Danilo Benevides <danilobenevides01@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Luís Otávio Cobucci Oblonczyk <lcobucci@gmail.com>
*/
final class Ip extends AbstractRule
{
/**
* @var int|null
*/
private $ipOptions;
/**
* @var string|null
*/
private $range;
/**
* @var array|null
*/
private $networkRange;
2013-01-09 15:48:11 +01:00
/**
* Initializes the rule defining the range or options for filter_var().
*
* @param int|string $ipOptions
*
* @throws ComponentException In case the range is invalid
*/
public function __construct($ipOptions = null)
{
2013-01-09 15:48:11 +01:00
if (is_int($ipOptions)) {
$this->ipOptions = $ipOptions;
return;
2013-01-09 15:48:11 +01:00
}
$this->networkRange = $this->parseRange($ipOptions);
$this->range = $this->createRange();
}
/**
* {@inheritdoc}
*/
public function validate($input): bool
{
return $this->verifyAddress($input) && $this->verifyNetwork($input);
}
private function createRange(): ?string
{
if (!$this->networkRange) {
return null;
}
$range = $this->networkRange;
$message = $range['min'];
if (isset($range['max'])) {
$message .= '-'.$range['max'];
} else {
$message .= '/'.long2ip((int) $range['mask']);
}
return $message;
2013-01-09 15:48:11 +01:00
}
private function parseRange(?string $input): ?array
2013-01-09 15:48:11 +01:00
{
if (null === $input || '*' == $input || '*.*.*.*' == $input
|| '0.0.0.0-255.255.255.255' == $input) {
return null;
}
2013-01-09 15:48:11 +01:00
2015-10-18 03:44:47 +02:00
$range = ['min' => null, 'max' => null, 'mask' => null];
2013-01-09 15:48:11 +01:00
if (false !== mb_strpos($input, '-')) {
2013-01-09 15:48:11 +01:00
list($range['min'], $range['max']) = explode('-', $input);
} elseif (false !== mb_strpos($input, '*')) {
2013-01-09 15:48:11 +01:00
$this->parseRangeUsingWildcards($input, $range);
} elseif (false !== mb_strpos($input, '/')) {
2013-01-09 15:48:11 +01:00
$this->parseRangeUsingCidr($input, $range);
} else {
2013-01-09 15:48:11 +01:00
throw new ComponentException('Invalid network range');
}
2013-01-09 15:48:11 +01:00
if (!$this->verifyAddress($range['min'])) {
throw new ComponentException('Invalid network range');
}
if (isset($range['max']) && !$this->verifyAddress($range['max'])) {
throw new ComponentException('Invalid network range');
}
return $range;
}
private function fillAddress(&$input, $char = '*'): void
2013-01-09 15:48:11 +01:00
{
2016-10-30 10:44:52 +01:00
while (mb_substr_count($input, '.') < 3) {
$input .= '.'.$char;
2013-01-09 15:48:11 +01:00
}
}
private function parseRangeUsingWildcards($input, &$range): void
2013-01-09 15:48:11 +01:00
{
$this->fillAddress($input);
$range['min'] = strtr($input, '*', '0');
$range['max'] = str_replace('*', '255', $input);
}
private function parseRangeUsingCidr($input, &$range): void
2013-01-09 15:48:11 +01:00
{
$input = explode('/', $input);
$this->fillAddress($input[0], '0');
$range['min'] = $input[0];
$isAddressMask = false !== mb_strpos($input[1], '.');
2013-01-09 15:48:11 +01:00
if ($isAddressMask && $this->verifyAddress($input[1])) {
2013-01-14 15:35:04 +01:00
$range['mask'] = sprintf('%032b', ip2long($input[1]));
2013-01-09 15:48:11 +01:00
return;
2013-01-09 15:48:11 +01:00
}
if ($isAddressMask || $input[1] < 8 || $input[1] > 30) {
throw new ComponentException('Invalid network mask');
}
$range['mask'] = sprintf('%032b', ip2long(long2ip(~(2 ** (32 - $input[1]) - 1))));
}
private function verifyAddress($address): bool
{
2016-10-30 10:39:23 +01:00
return (bool) filter_var(
2013-01-09 15:48:11 +01:00
$address,
FILTER_VALIDATE_IP,
2015-10-18 03:44:47 +02:00
[
'flags' => $this->ipOptions,
2015-10-18 03:44:47 +02:00
]
);
}
private function verifyNetwork($input): bool
2013-01-09 15:48:11 +01:00
{
if (null === $this->networkRange) {
2013-01-09 15:48:11 +01:00
return true;
}
2013-01-09 15:48:11 +01:00
2013-01-14 15:35:04 +01:00
if (isset($this->networkRange['mask'])) {
2013-01-14 17:11:51 +01:00
return $this->belongsToSubnet($input);
2013-01-09 15:48:11 +01:00
}
2013-01-14 15:35:04 +01:00
$input = sprintf('%u', ip2long($input));
return bccomp($input, sprintf('%u', ip2long($this->networkRange['min']))) >= 0
&& bccomp($input, sprintf('%u', ip2long($this->networkRange['max']))) <= 0;
}
private function belongsToSubnet($input): bool
2013-01-14 15:35:04 +01:00
{
$range = $this->networkRange;
$min = sprintf('%032b', ip2long($range['min']));
$input = sprintf('%032b', ip2long($input));
return ($input & $range['mask']) === ($min & $range['mask']);
2013-01-09 15:48:11 +01:00
}
}