3 * Functions and constants to play with IP addresses and ranges
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @author Antoine Musso "<hashar at free dot fr>", Aaron Schulz
24 // Some regex definition to "play" with IP address and IP address blocks
26 // An IPv4 address is made of 4 bytes from x00 to xFF which is d0 to d255
27 define( 'RE_IP_BYTE', '(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|0?[0-9]?[0-9])' );
28 define( 'RE_IP_ADD', RE_IP_BYTE
. '\.' . RE_IP_BYTE
. '\.' . RE_IP_BYTE
. '\.' . RE_IP_BYTE
);
29 // An IPv4 block is an IP address and a prefix (d1 to d32)
30 define( 'RE_IP_PREFIX', '(3[0-2]|[12]?\d)' );
31 define( 'RE_IP_BLOCK', RE_IP_ADD
. '\/' . RE_IP_PREFIX
);
33 // An IPv6 address is made up of 8 words (each x0000 to xFFFF).
34 // However, the "::" abbreviation can be used on consecutive x0000 words.
35 define( 'RE_IPV6_WORD', '([0-9A-Fa-f]{1,4})' );
36 define( 'RE_IPV6_PREFIX', '(12[0-8]|1[01][0-9]|[1-9]?\d)' );
37 define( 'RE_IPV6_ADD',
38 '(?:' . // starts with "::" (including "::")
39 ':(?::|(?::' . RE_IPV6_WORD
. '){1,7})' .
40 '|' . // ends with "::" (except "::")
41 RE_IPV6_WORD
. '(?::' . RE_IPV6_WORD
. '){0,6}::' .
42 '|' . // contains one "::" in the middle (the ^ makes the test fail if none found)
43 RE_IPV6_WORD
. '(?::((?(-1)|:))?' . RE_IPV6_WORD
. '){1,6}(?(-2)|^)' .
44 '|' . // contains no "::"
45 RE_IPV6_WORD
. '(?::' . RE_IPV6_WORD
. '){7}' .
48 // An IPv6 block is an IP address and a prefix (d1 to d128)
49 define( 'RE_IPV6_BLOCK', RE_IPV6_ADD
. '\/' . RE_IPV6_PREFIX
);
50 // For IPv6 canonicalization (NOT for strict validation; these are quite lax!)
51 define( 'RE_IPV6_GAP', ':(?:0+:)*(?::(?:0+:)*)?' );
52 define( 'RE_IPV6_V4_PREFIX', '0*' . RE_IPV6_GAP
. '(?:ffff:)?' );
54 // This might be useful for regexps used elsewhere, matches any IPv6 or IPv6 address or network
55 define( 'IP_ADDRESS_STRING',
57 RE_IP_ADD
. '(?:\/' . RE_IP_PREFIX
. ')?' . // IPv4
59 RE_IPV6_ADD
. '(?:\/' . RE_IPV6_PREFIX
. ')?' . // IPv6
64 * A collection of public static functions to play with IP address
69 private static $proxyIpSet = null;
72 * Determine if a string is as valid IP address or network (CIDR prefix).
73 * SIIT IPv4-translated addresses are rejected.
74 * Note: canonicalize() tries to convert translated addresses to IPv4.
76 * @param string $ip Possible IP address
79 public static function isIPAddress( $ip ) {
80 return (bool)preg_match( '/^' . IP_ADDRESS_STRING
. '$/', $ip );
84 * Given a string, determine if it as valid IP in IPv6 only.
85 * Note: Unlike isValid(), this looks for networks too.
87 * @param string $ip Possible IP address
90 public static function isIPv6( $ip ) {
91 return (bool)preg_match( '/^' . RE_IPV6_ADD
. '(?:\/' . RE_IPV6_PREFIX
. ')?$/', $ip );
95 * Given a string, determine if it as valid IP in IPv4 only.
96 * Note: Unlike isValid(), this looks for networks too.
98 * @param string $ip Possible IP address
101 public static function isIPv4( $ip ) {
102 return (bool)preg_match( '/^' . RE_IP_ADD
. '(?:\/' . RE_IP_PREFIX
. ')?$/', $ip );
106 * Validate an IP address. Ranges are NOT considered valid.
107 * SIIT IPv4-translated addresses are rejected.
108 * Note: canonicalize() tries to convert translated addresses to IPv4.
111 * @return bool True if it is valid
113 public static function isValid( $ip ) {
114 return ( preg_match( '/^' . RE_IP_ADD
. '$/', $ip )
115 ||
preg_match( '/^' . RE_IPV6_ADD
. '$/', $ip ) );
119 * Validate an IP Block (valid address WITH a valid prefix).
120 * SIIT IPv4-translated addresses are rejected.
121 * Note: canonicalize() tries to convert translated addresses to IPv4.
123 * @param string $ipblock
124 * @return bool True if it is valid
126 public static function isValidBlock( $ipblock ) {
127 return ( preg_match( '/^' . RE_IPV6_BLOCK
. '$/', $ipblock )
128 ||
preg_match( '/^' . RE_IP_BLOCK
. '$/', $ipblock ) );
132 * Convert an IP into a verbose, uppercase, normalized form.
133 * IPv6 addresses in octet notation are expanded to 8 words.
134 * IPv4 addresses are just trimmed.
136 * @param string $ip IP address in quad or octet form (CIDR or not).
139 public static function sanitizeIP( $ip ) {
144 if ( self
::isIPv4( $ip ) ||
!self
::isIPv6( $ip ) ) {
145 return $ip; // nothing else to do for IPv4 addresses or invalid ones
147 // Remove any whitespaces, convert to upper case
148 $ip = strtoupper( $ip );
149 // Expand zero abbreviations
150 $abbrevPos = strpos( $ip, '::' );
151 if ( $abbrevPos !== false ) {
152 // We know this is valid IPv6. Find the last index of the
153 // address before any CIDR number (e.g. "a:b:c::/24").
154 $CIDRStart = strpos( $ip, "/" );
155 $addressEnd = ( $CIDRStart !== false )
158 // If the '::' is at the beginning...
159 if ( $abbrevPos == 0 ) {
161 $extra = ( $ip == '::' ) ?
'0' : ''; // for the address '::'
162 $pad = 9; // 7+2 (due to '::')
163 // If the '::' is at the end...
164 } elseif ( $abbrevPos == ( $addressEnd - 1 ) ) {
167 $pad = 9; // 7+2 (due to '::')
168 // If the '::' is in the middle...
172 $pad = 8; // 6+2 (due to '::')
174 $ip = str_replace( '::',
175 str_repeat( $repeat, $pad - substr_count( $ip, ':' ) ) . $extra,
179 // Remove leading zeros from each bloc as needed
180 $ip = preg_replace( '/(^|:)0+(' . RE_IPV6_WORD
. ')/', '$1$2', $ip );
186 * Prettify an IP for display to end users.
187 * This will make it more compact and lower-case.
192 public static function prettifyIP( $ip ) {
193 $ip = self
::sanitizeIP( $ip ); // normalize (removes '::')
194 if ( self
::isIPv6( $ip ) ) {
195 // Split IP into an address and a CIDR
196 if ( strpos( $ip, '/' ) !== false ) {
197 list( $ip, $cidr ) = explode( '/', $ip, 2 );
199 list( $ip, $cidr ) = array( $ip, '' );
201 // Get the largest slice of words with multiple zeros
203 $longest = $longestPos = false;
205 '!(?:^|:)0(?::0)+(?:$|:)!', $ip, $m, PREG_OFFSET_CAPTURE
, $offset
207 list( $match, $pos ) = $m[0]; // full match
208 if ( strlen( $match ) > strlen( $longest ) ) {
212 $offset = ( $pos +
strlen( $match ) ); // advance
214 if ( $longest !== false ) {
215 // Replace this portion of the string with the '::' abbreviation
216 $ip = substr_replace( $ip, '::', $longestPos, strlen( $longest ) );
218 // Add any CIDR back on
219 if ( $cidr !== '' ) {
220 $ip = "{$ip}/{$cidr}";
222 // Convert to lower case to make it more readable
223 $ip = strtolower( $ip );
230 * Given a host/port string, like one might find in the host part of a URL
231 * per RFC 2732, split the hostname part and the port part and return an
232 * array with an element for each. If there is no port part, the array will
233 * have false in place of the port. If the string was invalid in some way,
236 * This was easy with IPv4 and was generally done in an ad-hoc way, but
237 * with IPv6 it's somewhat more complicated due to the need to parse the
238 * square brackets and colons.
240 * A bare IPv6 address is accepted despite the lack of square brackets.
242 * @param string $both The string with the host and port
245 public static function splitHostAndPort( $both ) {
246 if ( substr( $both, 0, 1 ) === '[' ) {
247 if ( preg_match( '/^\[(' . RE_IPV6_ADD
. ')\](?::(?P<port>\d+))?$/', $both, $m ) ) {
248 if ( isset( $m['port'] ) ) {
249 return array( $m[1], intval( $m['port'] ) );
251 return array( $m[1], false );
254 // Square bracket found but no IPv6
258 $numColons = substr_count( $both, ':' );
259 if ( $numColons >= 2 ) {
260 // Is it a bare IPv6 address?
261 if ( preg_match( '/^' . RE_IPV6_ADD
. '$/', $both ) ) {
262 return array( $both, false );
264 // Not valid IPv6, but too many colons for anything else
268 if ( $numColons >= 1 ) {
270 $bits = explode( ':', $both );
271 if ( preg_match( '/^\d+/', $bits[1] ) ) {
272 return array( $bits[0], intval( $bits[1] ) );
280 return array( $both, false );
284 * Given a host name and a port, combine them into host/port string like
285 * you might find in a URL. If the host contains a colon, wrap it in square
286 * brackets like in RFC 2732. If the port matches the default port, omit
287 * the port specification
289 * @param string $host
291 * @param bool|int $defaultPort
294 public static function combineHostAndPort( $host, $port, $defaultPort = false ) {
295 if ( strpos( $host, ':' ) !== false ) {
298 if ( $defaultPort !== false && $port == $defaultPort ) {
301 return "$host:$port";
306 * Convert an IPv4 or IPv6 hexadecimal representation back to readable format
308 * @param string $hex Number, with "v6-" prefix if it is IPv6
309 * @return string Quad-dotted (IPv4) or octet notation (IPv6)
311 public static function formatHex( $hex ) {
312 if ( substr( $hex, 0, 3 ) == 'v6-' ) { // IPv6
313 return self
::hexToOctet( substr( $hex, 3 ) );
315 return self
::hexToQuad( $hex );
320 * Converts a hexadecimal number to an IPv6 address in octet notation
322 * @param string $ip_hex Pure hex (no v6- prefix)
323 * @return string (of format a:b:c:d:e:f:g:h)
325 public static function hexToOctet( $ip_hex ) {
326 // Pad hex to 32 chars (128 bits)
327 $ip_hex = str_pad( strtoupper( $ip_hex ), 32, '0', STR_PAD_LEFT
);
328 // Separate into 8 words
329 $ip_oct = substr( $ip_hex, 0, 4 );
330 for ( $n = 1; $n < 8; $n++
) {
331 $ip_oct .= ':' . substr( $ip_hex, 4 * $n, 4 );
334 $ip_oct = preg_replace( '/(^|:)0+(' . RE_IPV6_WORD
. ')/', '$1$2', $ip_oct );
340 * Converts a hexadecimal number to an IPv4 address in quad-dotted notation
342 * @param string $ip_hex Pure hex
343 * @return string (of format a.b.c.d)
345 public static function hexToQuad( $ip_hex ) {
346 // Pad hex to 8 chars (32 bits)
347 $ip_hex = str_pad( strtoupper( $ip_hex ), 8, '0', STR_PAD_LEFT
);
348 // Separate into four quads
350 for ( $i = 0; $i < 4; $i++
) {
354 $s .= base_convert( substr( $ip_hex, $i * 2, 2 ), 16, 10 );
361 * Determine if an IP address really is an IP address, and if it is public,
362 * i.e. not RFC 1918 or similar
367 public static function isPublic( $ip ) {
368 static $privateSet = null;
369 if ( !$privateSet ) {
370 $privateSet = new IPSet( array(
371 '10.0.0.0/8', # RFC 1918 (private)
372 '172.16.0.0/12', # RFC 1918 (private)
373 '192.168.0.0/16', # RFC 1918 (private)
374 '0.0.0.0/8', # this network
375 '127.0.0.0/8', # loopback
376 'fc00::/7', # RFC 4193 (local)
377 '0:0:0:0:0:0:0:1', # loopback
380 return !$privateSet->match( $ip );
384 * Return a zero-padded upper case hexadecimal representation of an IP address.
386 * Hexadecimal addresses are used because they can easily be extended to
387 * IPv6 support. To separate the ranges, the return value from this
388 * function for an IPv6 address will be prefixed with "v6-", a non-
389 * hexadecimal string which sorts after the IPv4 addresses.
391 * @param string $ip Quad dotted/octet IP address.
392 * @return string|bool False on failure
394 public static function toHex( $ip ) {
395 if ( self
::isIPv6( $ip ) ) {
396 $n = 'v6-' . self
::IPv6ToRawHex( $ip );
397 } elseif ( self
::isIPv4( $ip ) ) {
398 // Bug 60035: an IP with leading 0's fails in ip2long sometimes (e.g. *.08)
399 $ip = preg_replace( '/(?<=\.)0+(?=[1-9])/', '', $ip );
403 # On 32-bit platforms (and on Windows), 2^32 does not fit into an int,
404 # so $n becomes a float. We convert it to string instead.
405 if ( is_float( $n ) ) {
409 if ( $n !== false ) {
410 # Floating points can handle the conversion; faster than wfBaseConvert()
411 $n = strtoupper( str_pad( base_convert( $n, 10, 16 ), 8, '0', STR_PAD_LEFT
) );
421 * Given an IPv6 address in octet notation, returns a pure hex string.
423 * @param string $ip Octet ipv6 IP address.
424 * @return string|bool Pure hex (uppercase); false on failure
426 private static function IPv6ToRawHex( $ip ) {
427 $ip = self
::sanitizeIP( $ip );
432 foreach ( explode( ':', $ip ) as $v ) {
433 $r_ip .= str_pad( $v, 4, 0, STR_PAD_LEFT
);
440 * Convert a network specification in CIDR notation
441 * to an integer network and a number of bits
443 * @param string $range IP with CIDR prefix
444 * @return array(int or string, int)
446 public static function parseCIDR( $range ) {
447 if ( self
::isIPv6( $range ) ) {
448 return self
::parseCIDR6( $range );
450 $parts = explode( '/', $range, 2 );
451 if ( count( $parts ) != 2 ) {
452 return array( false, false );
454 list( $network, $bits ) = $parts;
455 $network = ip2long( $network );
456 if ( $network !== false && is_numeric( $bits ) && $bits >= 0 && $bits <= 32 ) {
460 $network &= ~
( ( 1 << ( 32 - $bits ) ) - 1 );
462 # Convert to unsigned
463 if ( $network < 0 ) {
464 $network +
= pow( 2, 32 );
471 return array( $network, $bits );
475 * Given a string range in a number of formats,
476 * return the start and end of the range in hexadecimal.
480 * 1.2.3.4 - 1.2.3.5 Explicit range
483 * 2001:0db8:85a3::7344/96 CIDR
484 * 2001:0db8:85a3::7344 - 2001:0db8:85a3::7344 Explicit range
485 * 2001:0db8:85a3::7344 Single IP
486 * @param string $range IP range
487 * @return array(string, string)
489 public static function parseRange( $range ) {
491 if ( strpos( $range, '/' ) !== false ) {
492 if ( self
::isIPv6( $range ) ) {
493 return self
::parseRange6( $range );
495 list( $network, $bits ) = self
::parseCIDR( $range );
496 if ( $network === false ) {
497 $start = $end = false;
499 $start = sprintf( '%08X', $network );
500 $end = sprintf( '%08X', $network +
pow( 2, ( 32 - $bits ) ) - 1 );
503 } elseif ( strpos( $range, '-' ) !== false ) {
504 list( $start, $end ) = array_map( 'trim', explode( '-', $range, 2 ) );
505 if ( self
::isIPv6( $start ) && self
::isIPv6( $end ) ) {
506 return self
::parseRange6( $range );
508 if ( self
::isIPv4( $start ) && self
::isIPv4( $end ) ) {
509 $start = self
::toHex( $start );
510 $end = self
::toHex( $end );
511 if ( $start > $end ) {
512 $start = $end = false;
515 $start = $end = false;
519 $start = $end = self
::toHex( $range );
521 if ( $start === false ||
$end === false ) {
522 return array( false, false );
524 return array( $start, $end );
529 * Convert a network specification in IPv6 CIDR notation to an
530 * integer network and a number of bits
532 * @param string $range
534 * @return array(string, int)
536 private static function parseCIDR6( $range ) {
537 # Explode into <expanded IP,range>
538 $parts = explode( '/', IP
::sanitizeIP( $range ), 2 );
539 if ( count( $parts ) != 2 ) {
540 return array( false, false );
542 list( $network, $bits ) = $parts;
543 $network = self
::IPv6ToRawHex( $network );
544 if ( $network !== false && is_numeric( $bits ) && $bits >= 0 && $bits <= 128 ) {
548 # Native 32 bit functions WONT work here!!!
549 # Convert to a padded binary number
550 $network = wfBaseConvert( $network, 16, 2, 128 );
551 # Truncate the last (128-$bits) bits and replace them with zeros
552 $network = str_pad( substr( $network, 0, $bits ), 128, 0, STR_PAD_RIGHT
);
553 # Convert back to an integer
554 $network = wfBaseConvert( $network, 2, 10 );
561 return array( $network, (int)$bits );
565 * Given a string range in a number of formats, return the
566 * start and end of the range in hexadecimal. For IPv6.
569 * 2001:0db8:85a3::7344/96 CIDR
570 * 2001:0db8:85a3::7344 - 2001:0db8:85a3::7344 Explicit range
571 * 2001:0db8:85a3::7344/96 Single IP
573 * @param string $range
575 * @return array(string, string)
577 private static function parseRange6( $range ) {
579 $range = IP
::sanitizeIP( $range );
581 if ( strpos( $range, '/' ) !== false ) {
582 list( $network, $bits ) = self
::parseCIDR6( $range );
583 if ( $network === false ) {
584 $start = $end = false;
586 $start = wfBaseConvert( $network, 10, 16, 32, false );
587 # Turn network to binary (again)
588 $end = wfBaseConvert( $network, 10, 2, 128 );
589 # Truncate the last (128-$bits) bits and replace them with ones
590 $end = str_pad( substr( $end, 0, $bits ), 128, 1, STR_PAD_RIGHT
);
592 $end = wfBaseConvert( $end, 2, 16, 32, false );
593 # see toHex() comment
594 $start = "v6-$start";
597 // Explicit range notation...
598 } elseif ( strpos( $range, '-' ) !== false ) {
599 list( $start, $end ) = array_map( 'trim', explode( '-', $range, 2 ) );
600 $start = self
::toHex( $start );
601 $end = self
::toHex( $end );
602 if ( $start > $end ) {
603 $start = $end = false;
607 $start = $end = self
::toHex( $range );
609 if ( $start === false ||
$end === false ) {
610 return array( false, false );
612 return array( $start, $end );
617 * Determine if a given IPv4/IPv6 address is in a given CIDR network
619 * @param string $addr The address to check against the given range.
620 * @param string $range The range to check the given address against.
621 * @return bool Whether or not the given address is in the given range.
623 public static function isInRange( $addr, $range ) {
624 $hexIP = self
::toHex( $addr );
625 list( $start, $end ) = self
::parseRange( $range );
627 return ( strcmp( $hexIP, $start ) >= 0 &&
628 strcmp( $hexIP, $end ) <= 0 );
632 * Convert some unusual representations of IPv4 addresses to their
633 * canonical dotted quad representation.
635 * This currently only checks a few IPV4-to-IPv6 related cases. More
636 * unusual representations may be added later.
638 * @param string $addr Something that might be an IP address
639 * @return string Valid dotted quad IPv4 address or null
641 public static function canonicalize( $addr ) {
642 // remove zone info (bug 35738)
643 $addr = preg_replace( '/\%.*/', '', $addr );
645 if ( self
::isValid( $addr ) ) {
648 // Turn mapped addresses from ::ce:ffff:1.2.3.4 to 1.2.3.4
649 if ( strpos( $addr, ':' ) !== false && strpos( $addr, '.' ) !== false ) {
650 $addr = substr( $addr, strrpos( $addr, ':' ) +
1 );
651 if ( self
::isIPv4( $addr ) ) {
655 // IPv6 loopback address
657 if ( preg_match( '/^0*' . RE_IPV6_GAP
. '1$/', $addr, $m ) ) {
660 // IPv4-mapped and IPv4-compatible IPv6 addresses
661 if ( preg_match( '/^' . RE_IPV6_V4_PREFIX
. '(' . RE_IP_ADD
. ')$/i', $addr, $m ) ) {
664 if ( preg_match( '/^' . RE_IPV6_V4_PREFIX
. RE_IPV6_WORD
.
665 ':' . RE_IPV6_WORD
. '$/i', $addr, $m )
667 return long2ip( ( hexdec( $m[1] ) << 16 ) +
hexdec( $m[2] ) );
670 return null; // give up
674 * Gets rid of unneeded numbers in quad-dotted/octet IP strings
675 * For example, 127.111.113.151/24 -> 127.111.113.0/24
676 * @param string $range IP address to normalize
679 public static function sanitizeRange( $range ) {
680 list( /*...*/, $bits ) = self
::parseCIDR( $range );
681 list( $start, /*...*/ ) = self
::parseRange( $range );
682 $start = self
::formatHex( $start );
683 if ( $bits === false ) {
684 return $start; // wasn't actually a range
687 return "$start/$bits";
691 * Checks if an IP is a trusted proxy provider.
692 * Useful to tell if X-Forwarded-For data is possibly bogus.
693 * Squid cache servers for the site are whitelisted.
699 public static function isTrustedProxy( $ip ) {
700 $trusted = self
::isConfiguredProxy( $ip );
701 wfRunHooks( 'IsTrustedProxy', array( &$ip, &$trusted ) );
706 * Checks if an IP matches a proxy we've configured
712 public static function isConfiguredProxy( $ip ) {
713 global $wgSquidServers, $wgSquidServersNoPurge;
715 wfProfileIn( __METHOD__
);
716 // Quick check of known singular proxy servers
717 $trusted = in_array( $ip, $wgSquidServers );
719 // Check against addresses and CIDR nets in the NoPurge list
721 if ( !self
::$proxyIpSet ) {
722 self
::$proxyIpSet = new IPSet( $wgSquidServersNoPurge );
724 $trusted = self
::$proxyIpSet->match( $ip );
726 wfProfileOut( __METHOD__
);
732 * Clears precomputed data used for proxy support.
733 * Use this only for unit tests.
735 public static function clearCaches() {
736 self
::$proxyIpSet = null;