Merge "user: Move idFromName cache truncation to before adding the new value"
[lhc/web/wiklou.git] / includes / block / BlockManager.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21 namespace MediaWiki\Block;
22
23 use DateTime;
24 use IP;
25 use MediaWiki\User\UserIdentity;
26 use MWCryptHash;
27 use User;
28 use WebRequest;
29 use WebResponse;
30 use Wikimedia\IPSet;
31
32 /**
33 * A service class for checking blocks.
34 * To obtain an instance, use MediaWikiServices::getInstance()->getBlockManager().
35 *
36 * @since 1.34 Refactored from User and Block.
37 */
38 class BlockManager {
39 // TODO: This should be UserIdentity instead of User
40 /** @var User */
41 private $currentUser;
42
43 /** @var WebRequest */
44 private $currentRequest;
45
46 /** @var bool */
47 private $applyIpBlocksToXff;
48
49 /** @var bool */
50 private $cookieSetOnAutoblock;
51
52 /** @var bool */
53 private $cookieSetOnIpBlock;
54
55 /** @var array */
56 private $dnsBlacklistUrls;
57
58 /** @var bool */
59 private $enableDnsBlacklist;
60
61 /** @var array */
62 private $proxyList;
63
64 /** @var array */
65 private $proxyWhitelist;
66
67 /** @var string|bool */
68 private $secretKey;
69
70 /** @var array */
71 private $softBlockRanges;
72
73 /**
74 * @param User $currentUser
75 * @param WebRequest $currentRequest
76 * @param bool $applyIpBlocksToXff
77 * @param bool $cookieSetOnAutoblock
78 * @param bool $cookieSetOnIpBlock
79 * @param array $dnsBlacklistUrls
80 * @param bool $enableDnsBlacklist
81 * @param array $proxyList
82 * @param array $proxyWhitelist
83 * @param string $secretKey
84 * @param array $softBlockRanges
85 */
86 public function __construct(
87 $currentUser,
88 $currentRequest,
89 $applyIpBlocksToXff,
90 $cookieSetOnAutoblock,
91 $cookieSetOnIpBlock,
92 $dnsBlacklistUrls,
93 $enableDnsBlacklist,
94 $proxyList,
95 $proxyWhitelist,
96 $secretKey,
97 $softBlockRanges
98 ) {
99 $this->currentUser = $currentUser;
100 $this->currentRequest = $currentRequest;
101 $this->applyIpBlocksToXff = $applyIpBlocksToXff;
102 $this->cookieSetOnAutoblock = $cookieSetOnAutoblock;
103 $this->cookieSetOnIpBlock = $cookieSetOnIpBlock;
104 $this->dnsBlacklistUrls = $dnsBlacklistUrls;
105 $this->enableDnsBlacklist = $enableDnsBlacklist;
106 $this->proxyList = $proxyList;
107 $this->proxyWhitelist = $proxyWhitelist;
108 $this->secretKey = $secretKey;
109 $this->softBlockRanges = $softBlockRanges;
110 }
111
112 /**
113 * Get the blocks that apply to a user. If there is only one, return that, otherwise
114 * return a composite block that combines the strictest features of the applicable
115 * blocks.
116 *
117 * TODO: $user should be UserIdentity instead of User
118 *
119 * @internal This should only be called by User::getBlockedStatus
120 * @param User $user
121 * @param bool $fromReplica Whether to check the replica DB first.
122 * To improve performance, non-critical checks are done against replica DBs.
123 * Check when actually saving should be done against master.
124 * @return AbstractBlock|null The most relevant block, or null if there is no block.
125 */
126 public function getUserBlock( User $user, $fromReplica ) {
127 $isAnon = $user->getId() === 0;
128
129 // TODO: If $user is the current user, we should use the current request. Otherwise,
130 // we should not look for XFF or cookie blocks.
131 $request = $user->getRequest();
132
133 # We only need to worry about passing the IP address to the block generator if the
134 # user is not immune to autoblocks/hardblocks, and they are the current user so we
135 # know which IP address they're actually coming from
136 $ip = null;
137 $sessionUser = $this->currentUser;
138 // the session user is set up towards the end of Setup.php. Until then,
139 // assume it's a logged-out user.
140 $globalUserName = $sessionUser->isSafeToLoad()
141 ? $sessionUser->getName()
142 : IP::sanitizeIP( $this->currentRequest->getIP() );
143 if ( $user->getName() === $globalUserName && !$user->isAllowed( 'ipblock-exempt' ) ) {
144 $ip = $this->currentRequest->getIP();
145 }
146
147 // User/IP blocking
148 // After this, $blocks is an array of blocks or an empty array
149 // TODO: remove dependency on DatabaseBlock
150 $blocks = DatabaseBlock::newListFromTarget( $user, $ip, !$fromReplica );
151
152 // Cookie blocking
153 $cookieBlock = $this->getBlockFromCookieValue( $user, $request );
154 if ( $cookieBlock instanceof AbstractBlock ) {
155 $blocks[] = $cookieBlock;
156 }
157
158 // Proxy blocking
159 if ( $ip !== null && !in_array( $ip, $this->proxyWhitelist ) ) {
160 // Local list
161 if ( $this->isLocallyBlockedProxy( $ip ) ) {
162 $blocks[] = new SystemBlock( [
163 'byText' => wfMessage( 'proxyblocker' )->text(),
164 'reason' => wfMessage( 'proxyblockreason' )->plain(),
165 'address' => $ip,
166 'systemBlock' => 'proxy',
167 ] );
168 } elseif ( $isAnon && $this->isDnsBlacklisted( $ip ) ) {
169 $blocks[] = new SystemBlock( [
170 'byText' => wfMessage( 'sorbs' )->text(),
171 'reason' => wfMessage( 'sorbsreason' )->plain(),
172 'address' => $ip,
173 'systemBlock' => 'dnsbl',
174 ] );
175 }
176 }
177
178 // (T25343) Apply IP blocks to the contents of XFF headers, if enabled
179 if ( $this->applyIpBlocksToXff
180 && $ip !== null
181 && !in_array( $ip, $this->proxyWhitelist )
182 ) {
183 $xff = $request->getHeader( 'X-Forwarded-For' );
184 $xff = array_map( 'trim', explode( ',', $xff ) );
185 $xff = array_diff( $xff, [ $ip ] );
186 // TODO: remove dependency on DatabaseBlock
187 $xffblocks = DatabaseBlock::getBlocksForIPList( $xff, $isAnon, !$fromReplica );
188 $blocks = array_merge( $blocks, $xffblocks );
189 }
190
191 // Soft blocking
192 if ( $ip !== null
193 && $isAnon
194 && IP::isInRanges( $ip, $this->softBlockRanges )
195 ) {
196 $blocks[] = new SystemBlock( [
197 'address' => $ip,
198 'byText' => 'MediaWiki default',
199 'reason' => wfMessage( 'softblockrangesreason', $ip )->plain(),
200 'anonOnly' => true,
201 'systemBlock' => 'wgSoftBlockRanges',
202 ] );
203 }
204
205 if ( count( $blocks ) > 0 ) {
206 if ( count( $blocks ) === 1 ) {
207 $block = $blocks[ 0 ];
208 } else {
209 $block = new CompositeBlock( [
210 'address' => $ip,
211 'byText' => 'MediaWiki default',
212 'reason' => wfMessage( 'blockedtext-composite-reason' )->plain(),
213 'originalBlocks' => $blocks,
214 ] );
215 }
216 return $block;
217 }
218
219 return null;
220 }
221
222 /**
223 * Try to load a block from an ID given in a cookie value.
224 *
225 * @param UserIdentity $user
226 * @param WebRequest $request
227 * @return DatabaseBlock|bool The block object, or false if none could be loaded.
228 */
229 private function getBlockFromCookieValue(
230 UserIdentity $user,
231 WebRequest $request
232 ) {
233 $blockCookieVal = $request->getCookie( 'BlockID' );
234 $response = $request->response();
235
236 // Make sure there's something to check. The cookie value must start with a number.
237 if ( strlen( $blockCookieVal ) < 1 || !is_numeric( substr( $blockCookieVal, 0, 1 ) ) ) {
238 return false;
239 }
240 // Load the block from the ID in the cookie.
241 $blockCookieId = $this->getIdFromCookieValue( $blockCookieVal );
242 if ( $blockCookieId !== null ) {
243 // An ID was found in the cookie.
244 // TODO: remove dependency on DatabaseBlock
245 $tmpBlock = DatabaseBlock::newFromID( $blockCookieId );
246 if ( $tmpBlock instanceof DatabaseBlock ) {
247 switch ( $tmpBlock->getType() ) {
248 case DatabaseBlock::TYPE_USER:
249 $blockIsValid = !$tmpBlock->isExpired() && $tmpBlock->isAutoblocking();
250 $useBlockCookie = ( $this->cookieSetOnAutoblock === true );
251 break;
252 case DatabaseBlock::TYPE_IP:
253 case DatabaseBlock::TYPE_RANGE:
254 // If block is type IP or IP range, load only if user is not logged in (T152462)
255 $blockIsValid = !$tmpBlock->isExpired() && $user->getId() === 0;
256 $useBlockCookie = ( $this->cookieSetOnIpBlock === true );
257 break;
258 default:
259 $blockIsValid = false;
260 $useBlockCookie = false;
261 }
262
263 if ( $blockIsValid && $useBlockCookie ) {
264 // Use the block.
265 return $tmpBlock;
266 }
267 }
268 // If the block is invalid or doesn't exist, remove the cookie.
269 $this->clearBlockCookie( $response );
270 }
271 return false;
272 }
273
274 /**
275 * Check if an IP address is in the local proxy list
276 *
277 * @param string $ip
278 * @return bool
279 */
280 private function isLocallyBlockedProxy( $ip ) {
281 if ( !$this->proxyList ) {
282 return false;
283 }
284
285 if ( !is_array( $this->proxyList ) ) {
286 // Load values from the specified file
287 $this->proxyList = array_map( 'trim', file( $this->proxyList ) );
288 }
289
290 $resultProxyList = [];
291 $deprecatedIPEntries = [];
292
293 // backward compatibility: move all ip addresses in keys to values
294 foreach ( $this->proxyList as $key => $value ) {
295 $keyIsIP = IP::isIPAddress( $key );
296 $valueIsIP = IP::isIPAddress( $value );
297 if ( $keyIsIP && !$valueIsIP ) {
298 $deprecatedIPEntries[] = $key;
299 $resultProxyList[] = $key;
300 } elseif ( $keyIsIP && $valueIsIP ) {
301 $deprecatedIPEntries[] = $key;
302 $resultProxyList[] = $key;
303 $resultProxyList[] = $value;
304 } else {
305 $resultProxyList[] = $value;
306 }
307 }
308
309 if ( $deprecatedIPEntries ) {
310 wfDeprecated(
311 'IP addresses in the keys of $wgProxyList (found the following IP addresses in keys: ' .
312 implode( ', ', $deprecatedIPEntries ) . ', please move them to values)', '1.30' );
313 }
314
315 $proxyListIPSet = new IPSet( $resultProxyList );
316 return $proxyListIPSet->match( $ip );
317 }
318
319 /**
320 * Whether the given IP is in a DNS blacklist.
321 *
322 * @param string $ip IP to check
323 * @param bool $checkWhitelist Whether to check the whitelist first
324 * @return bool True if blacklisted.
325 */
326 public function isDnsBlacklisted( $ip, $checkWhitelist = false ) {
327 if ( !$this->enableDnsBlacklist ||
328 ( $checkWhitelist && in_array( $ip, $this->proxyWhitelist ) )
329 ) {
330 return false;
331 }
332
333 return $this->inDnsBlacklist( $ip, $this->dnsBlacklistUrls );
334 }
335
336 /**
337 * Whether the given IP is in a given DNS blacklist.
338 *
339 * @param string $ip IP to check
340 * @param array $bases Array of Strings: URL of the DNS blacklist
341 * @return bool True if blacklisted.
342 */
343 private function inDnsBlacklist( $ip, array $bases ) {
344 $found = false;
345 // @todo FIXME: IPv6 ??? (https://bugs.php.net/bug.php?id=33170)
346 if ( IP::isIPv4( $ip ) ) {
347 // Reverse IP, T23255
348 $ipReversed = implode( '.', array_reverse( explode( '.', $ip ) ) );
349
350 foreach ( $bases as $base ) {
351 // Make hostname
352 // If we have an access key, use that too (ProjectHoneypot, etc.)
353 $basename = $base;
354 if ( is_array( $base ) ) {
355 if ( count( $base ) >= 2 ) {
356 // Access key is 1, base URL is 0
357 $hostname = "{$base[1]}.$ipReversed.{$base[0]}";
358 } else {
359 $hostname = "$ipReversed.{$base[0]}";
360 }
361 $basename = $base[0];
362 } else {
363 $hostname = "$ipReversed.$base";
364 }
365
366 // Send query
367 $ipList = $this->checkHost( $hostname );
368
369 if ( $ipList ) {
370 wfDebugLog(
371 'dnsblacklist',
372 "Hostname $hostname is {$ipList[0]}, it's a proxy says $basename!"
373 );
374 $found = true;
375 break;
376 }
377
378 wfDebugLog( 'dnsblacklist', "Requested $hostname, not found in $basename." );
379 }
380 }
381
382 return $found;
383 }
384
385 /**
386 * Wrapper for mocking in tests.
387 *
388 * @param string $hostname DNSBL query
389 * @return string[]|bool IPv4 array, or false if the IP is not blacklisted
390 */
391 protected function checkHost( $hostname ) {
392 return gethostbynamel( $hostname );
393 }
394
395 /**
396 * Set the 'BlockID' cookie depending on block type and user authentication status.
397 *
398 * @since 1.34
399 * @param User $user
400 */
401 public function trackBlockWithCookie( User $user ) {
402 $block = $user->getBlock();
403 $request = $user->getRequest();
404 $response = $request->response();
405 $isAnon = $user->isAnon();
406
407 if ( $block && $request->getCookie( 'BlockID' ) === null ) {
408 if ( $block instanceof CompositeBlock ) {
409 // TODO: Improve on simply tracking the first trackable block (T225654)
410 foreach ( $block->getOriginalBlocks() as $originalBlock ) {
411 if ( $this->shouldTrackBlockWithCookie( $originalBlock, $isAnon ) ) {
412 $this->setBlockCookie( $originalBlock, $response );
413 return;
414 }
415 }
416 } else {
417 if ( $this->shouldTrackBlockWithCookie( $block, $isAnon ) ) {
418 $this->setBlockCookie( $block, $response );
419 }
420 }
421 }
422 }
423
424 /**
425 * Set the 'BlockID' cookie to this block's ID and expiry time. The cookie's expiry will be
426 * the same as the block's, to a maximum of 24 hours.
427 *
428 * @since 1.34
429 * @internal Should be private.
430 * Left public for backwards compatibility, until DatabaseBlock::setCookie is removed.
431 * @param DatabaseBlock $block
432 * @param WebResponse $response The response on which to set the cookie.
433 */
434 public function setBlockCookie( DatabaseBlock $block, WebResponse $response ) {
435 // Calculate the default expiry time.
436 $maxExpiryTime = wfTimestamp( TS_MW, wfTimestamp() + ( 24 * 60 * 60 ) );
437
438 // Use the block's expiry time only if it's less than the default.
439 $expiryTime = $block->getExpiry();
440 if ( $expiryTime === 'infinity' || $expiryTime > $maxExpiryTime ) {
441 $expiryTime = $maxExpiryTime;
442 }
443
444 // Set the cookie. Reformat the MediaWiki datetime as a Unix timestamp for the cookie.
445 $expiryValue = DateTime::createFromFormat( 'YmdHis', $expiryTime )->format( 'U' );
446 $cookieOptions = [ 'httpOnly' => false ];
447 $cookieValue = $this->getCookieValue( $block );
448 $response->setCookie( 'BlockID', $cookieValue, $expiryValue, $cookieOptions );
449 }
450
451 /**
452 * Check if the block should be tracked with a cookie.
453 *
454 * @param AbstractBlock $block
455 * @param bool $isAnon The user is logged out
456 * @return bool The block sould be tracked with a cookie
457 */
458 private function shouldTrackBlockWithCookie( AbstractBlock $block, $isAnon ) {
459 if ( $block instanceof DatabaseBlock ) {
460 switch ( $block->getType() ) {
461 case DatabaseBlock::TYPE_IP:
462 case DatabaseBlock::TYPE_RANGE:
463 return $isAnon && $this->cookieSetOnIpBlock;
464 case DatabaseBlock::TYPE_USER:
465 return !$isAnon && $this->cookieSetOnAutoblock && $block->isAutoblocking();
466 default:
467 return false;
468 }
469 }
470 return false;
471 }
472
473 /**
474 * Unset the 'BlockID' cookie.
475 *
476 * @since 1.34
477 * @param WebResponse $response
478 */
479 public static function clearBlockCookie( WebResponse $response ) {
480 $response->clearCookie( 'BlockID', [ 'httpOnly' => false ] );
481 }
482
483 /**
484 * Get the stored ID from the 'BlockID' cookie. The cookie's value is usually a combination of
485 * the ID and a HMAC (see DatabaseBlock::setCookie), but will sometimes only be the ID.
486 *
487 * @since 1.34
488 * @internal Should be private.
489 * Left public for backwards compatibility, until DatabaseBlock::getIdFromCookieValue is removed.
490 * @param string $cookieValue The string in which to find the ID.
491 * @return int|null The block ID, or null if the HMAC is present and invalid.
492 */
493 public function getIdFromCookieValue( $cookieValue ) {
494 // Extract the ID prefix from the cookie value (may be the whole value, if no bang found).
495 $bangPos = strpos( $cookieValue, '!' );
496 $id = ( $bangPos === false ) ? $cookieValue : substr( $cookieValue, 0, $bangPos );
497 if ( !$this->secretKey ) {
498 // If there's no secret key, just use the ID as given.
499 return $id;
500 }
501 $storedHmac = substr( $cookieValue, $bangPos + 1 );
502 $calculatedHmac = MWCryptHash::hmac( $id, $this->secretKey, false );
503 if ( $calculatedHmac === $storedHmac ) {
504 return $id;
505 } else {
506 return null;
507 }
508 }
509
510 /**
511 * Get the BlockID cookie's value for this block. This is usually the block ID concatenated
512 * with an HMAC in order to avoid spoofing (T152951), but if wgSecretKey is not set will just
513 * be the block ID.
514 *
515 * @since 1.34
516 * @internal Should be private.
517 * Left public for backwards compatibility, until DatabaseBlock::getCookieValue is removed.
518 * @param DatabaseBlock $block
519 * @return string The block ID, probably concatenated with "!" and the HMAC.
520 */
521 public function getCookieValue( DatabaseBlock $block ) {
522 $id = $block->getId();
523 if ( !$this->secretKey ) {
524 // If there's no secret key, don't append a HMAC.
525 return $id;
526 }
527 $hmac = MWCryptHash::hmac( $id, $this->secretKey, false );
528 $cookieValue = $id . '!' . $hmac;
529 return $cookieValue;
530 }
531
532 }