$curIP ) { if ( array_key_exists( $curIP, $trustedProxies ) ) { if ( isset( $ipchain[$i + 1] ) && wfIsIPPublic( $ipchain[$i + 1] ) ) { $ip = $ipchain[$i + 1]; } } else { break; } } } wfDebug( "IP: $ip\n" ); $wgIP = $ip; return $ip; } /** */ function wfIP2Unsigned( $ip ) { $n = ip2long( $ip ); if ( $n == -1 ) { $n = false; } elseif ( $n < 0 ) { $n += pow( 2, 32 ); } return $n; } /** * Determine if an IP address really is an IP address, and if it is public, * i.e. not RFC 1918 or similar */ function wfIsIPPublic( $ip ) { $n = wfIP2Unsigned( $ip ); if ( !$n ) { return false; } static $privateRanges = false; if ( !$privateRanges ) { $privateRanges = array( array( '10.0.0.0', '10.255.255.255' ), # RFC 1918 (private) array( '172.16.0.0', '172.31.255.255' ), # " array( '192.168.0.0', '192.168.255.255' ), # " array( '0.0.0.0', '0.255.255.255' ), # this network array( '127.0.0.0', '127.255.255.255' ), # loopback ); } foreach ( $privateRanges as $r ) { $start = wfIP2Unsigned( $r[0] ); $end = wfIP2Unsigned( $r[1] ); if ( $n >= $start && $n <= $end ) { return false; } } return true; } /** * Forks processes to scan the originating IP for an open proxy server * MemCached can be used to skip IPs that have already been scanned */ function wfProxyCheck() { global $wgBlockOpenProxies, $wgProxyPorts, $wgProxyScriptPath; global $wgUseMemCached, $wgMemc, $wgDBname, $wgProxyMemcExpiry; if ( !$wgBlockOpenProxies ) { return; } $ip = wfGetIP(); # Get MemCached key $skip = false; if ( $wgUseMemCached ) { $mcKey = "$wgDBname:proxy:ip:$ip"; $mcValue = $wgMemc->get( $mcKey ); if ( $mcValue ) { $skip = true; } } # Fork the processes if ( !$skip ) { $title = Title::makeTitle( NS_SPECIAL, 'Blockme' ); $iphash = md5( $ip . $wgProxyKey ); $url = $title->getFullURL( 'ip='.$iphash ); foreach ( $wgProxyPorts as $port ) { $params = implode( ' ', array( escapeshellarg( $wgProxyScriptPath ), escapeshellarg( $ip ), escapeshellarg( $port ), escapeshellarg( $url ) )); exec( "php $params &>/dev/null &" ); } # Set MemCached key if ( $wgUseMemCached ) { $wgMemc->set( $mcKey, 1, $wgProxyMemcExpiry ); } } } ?>