Merge "specialpage: Remove unused QueryPage::doFeed()"
[lhc/web/wiklou.git] / includes / Block.php
1 <?php
2 /**
3 * Blocks and bans object
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 use Wikimedia\Rdbms\Database;
24 use Wikimedia\Rdbms\IDatabase;
25 use MediaWiki\Block\BlockRestriction;
26 use MediaWiki\Block\Restriction\Restriction;
27 use MediaWiki\Block\Restriction\NamespaceRestriction;
28 use MediaWiki\Block\Restriction\PageRestriction;
29 use MediaWiki\MediaWikiServices;
30
31 class Block {
32 /** @var string */
33 public $mReason;
34
35 /** @var string */
36 public $mTimestamp;
37
38 /** @var bool */
39 public $mAuto;
40
41 /** @var string */
42 public $mExpiry;
43
44 /** @var bool */
45 public $mHideName;
46
47 /** @var int */
48 public $mParentBlockId;
49
50 /** @var int */
51 private $mId;
52
53 /** @var bool */
54 private $mFromMaster;
55
56 /** @var bool */
57 private $mBlockEmail;
58
59 /** @var bool */
60 private $allowUsertalk;
61
62 /** @var bool */
63 private $blockCreateAccount;
64
65 /** @var User|string */
66 private $target;
67
68 /** @var int Hack for foreign blocking (CentralAuth) */
69 private $forcedTargetID;
70
71 /**
72 * @var int Block::TYPE_ constant. After the block has been loaded
73 * from the database, this can only be USER, IP or RANGE.
74 */
75 private $type;
76
77 /** @var User */
78 private $blocker;
79
80 /** @var bool */
81 private $isHardblock;
82
83 /** @var bool */
84 private $isAutoblocking;
85
86 /** @var string|null */
87 private $systemBlockType;
88
89 /** @var bool */
90 private $isSitewide;
91
92 /** @var Restriction[] */
93 private $restrictions;
94
95 # TYPE constants
96 const TYPE_USER = 1;
97 const TYPE_IP = 2;
98 const TYPE_RANGE = 3;
99 const TYPE_AUTO = 4;
100 const TYPE_ID = 5;
101
102 /**
103 * Create a new block with specified parameters on a user, IP or IP range.
104 *
105 * @param array $options Parameters of the block:
106 * address string|User Target user name, User object, IP address or IP range
107 * user int Override target user ID (for foreign users)
108 * by int User ID of the blocker
109 * reason string Reason of the block
110 * timestamp string The time at which the block comes into effect
111 * auto bool Is this an automatic block?
112 * expiry string Timestamp of expiration of the block or 'infinity'
113 * anonOnly bool Only disallow anonymous actions
114 * createAccount bool Disallow creation of new accounts
115 * enableAutoblock bool Enable automatic blocking
116 * hideName bool Hide the target user name
117 * blockEmail bool Disallow sending emails
118 * allowUsertalk bool Allow the target to edit its own talk page
119 * byText string Username of the blocker (for foreign users)
120 * systemBlock string Indicate that this block is automatically
121 * created by MediaWiki rather than being stored
122 * in the database. Value is a string to return
123 * from self::getSystemBlockType().
124 * sitewide bool Disallow editing all pages and all contribution
125 * actions, except those specifically allowed by
126 * other block flags
127 *
128 * @since 1.26 accepts $options array instead of individual parameters; order
129 * of parameters above reflects the original order
130 */
131 function __construct( $options = [] ) {
132 $defaults = [
133 'address' => '',
134 'user' => null,
135 'by' => null,
136 'reason' => '',
137 'timestamp' => '',
138 'auto' => false,
139 'expiry' => '',
140 'anonOnly' => false,
141 'createAccount' => false,
142 'enableAutoblock' => false,
143 'hideName' => false,
144 'blockEmail' => false,
145 'allowUsertalk' => false,
146 'byText' => '',
147 'systemBlock' => null,
148 'sitewide' => true,
149 ];
150
151 $options += $defaults;
152
153 $this->setTarget( $options['address'] );
154
155 if ( $this->target instanceof User && $options['user'] ) {
156 # Needed for foreign users
157 $this->forcedTargetID = $options['user'];
158 }
159
160 if ( $options['by'] ) {
161 # Local user
162 $this->setBlocker( User::newFromId( $options['by'] ) );
163 } else {
164 # Foreign user
165 $this->setBlocker( $options['byText'] );
166 }
167
168 $this->setReason( $options['reason'] );
169 $this->setTimestamp( wfTimestamp( TS_MW, $options['timestamp'] ) );
170 $this->setExpiry( wfGetDB( DB_REPLICA )->decodeExpiry( $options['expiry'] ) );
171
172 # Boolean settings
173 $this->mAuto = (bool)$options['auto'];
174 $this->setHideName( (bool)$options['hideName'] );
175 $this->isHardblock( !$options['anonOnly'] );
176 $this->isAutoblocking( (bool)$options['enableAutoblock'] );
177 $this->isSitewide( (bool)$options['sitewide'] );
178 $this->isEmailBlocked( (bool)$options['blockEmail'] );
179 $this->isCreateAccountBlocked( (bool)$options['createAccount'] );
180 $this->isUsertalkEditAllowed( (bool)$options['allowUsertalk'] );
181
182 $this->mFromMaster = false;
183 $this->systemBlockType = $options['systemBlock'];
184 }
185
186 /**
187 * Load a block from the block id.
188 *
189 * @param int $id Block id to search for
190 * @return Block|null
191 */
192 public static function newFromID( $id ) {
193 $dbr = wfGetDB( DB_REPLICA );
194 $blockQuery = self::getQueryInfo();
195 $res = $dbr->selectRow(
196 $blockQuery['tables'],
197 $blockQuery['fields'],
198 [ 'ipb_id' => $id ],
199 __METHOD__,
200 [],
201 $blockQuery['joins']
202 );
203 if ( $res ) {
204 return self::newFromRow( $res );
205 } else {
206 return null;
207 }
208 }
209
210 /**
211 * Return the list of ipblocks fields that should be selected to create
212 * a new block.
213 * @deprecated since 1.31, use self::getQueryInfo() instead.
214 * @return array
215 */
216 public static function selectFields() {
217 global $wgActorTableSchemaMigrationStage;
218
219 if ( $wgActorTableSchemaMigrationStage & SCHEMA_COMPAT_READ_NEW ) {
220 // If code is using this instead of self::getQueryInfo(), there's a
221 // decent chance it's going to try to directly access
222 // $row->ipb_by or $row->ipb_by_text and we can't give it
223 // useful values here once those aren't being used anymore.
224 throw new BadMethodCallException(
225 'Cannot use ' . __METHOD__
226 . ' when $wgActorTableSchemaMigrationStage has SCHEMA_COMPAT_READ_NEW'
227 );
228 }
229
230 wfDeprecated( __METHOD__, '1.31' );
231 return [
232 'ipb_id',
233 'ipb_address',
234 'ipb_by',
235 'ipb_by_text',
236 'ipb_by_actor' => 'NULL',
237 'ipb_timestamp',
238 'ipb_auto',
239 'ipb_anon_only',
240 'ipb_create_account',
241 'ipb_enable_autoblock',
242 'ipb_expiry',
243 'ipb_deleted',
244 'ipb_block_email',
245 'ipb_allow_usertalk',
246 'ipb_parent_block_id',
247 'ipb_sitewide',
248 ] + CommentStore::getStore()->getFields( 'ipb_reason' );
249 }
250
251 /**
252 * Return the tables, fields, and join conditions to be selected to create
253 * a new block object.
254 * @since 1.31
255 * @return array With three keys:
256 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
257 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
258 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
259 */
260 public static function getQueryInfo() {
261 $commentQuery = CommentStore::getStore()->getJoin( 'ipb_reason' );
262 $actorQuery = ActorMigration::newMigration()->getJoin( 'ipb_by' );
263 return [
264 'tables' => [ 'ipblocks' ] + $commentQuery['tables'] + $actorQuery['tables'],
265 'fields' => [
266 'ipb_id',
267 'ipb_address',
268 'ipb_timestamp',
269 'ipb_auto',
270 'ipb_anon_only',
271 'ipb_create_account',
272 'ipb_enable_autoblock',
273 'ipb_expiry',
274 'ipb_deleted',
275 'ipb_block_email',
276 'ipb_allow_usertalk',
277 'ipb_parent_block_id',
278 'ipb_sitewide',
279 ] + $commentQuery['fields'] + $actorQuery['fields'],
280 'joins' => $commentQuery['joins'] + $actorQuery['joins'],
281 ];
282 }
283
284 /**
285 * Check if two blocks are effectively equal. Doesn't check irrelevant things like
286 * the blocking user or the block timestamp, only things which affect the blocked user
287 *
288 * @param Block $block
289 *
290 * @return bool
291 */
292 public function equals( Block $block ) {
293 return (
294 (string)$this->target == (string)$block->target
295 && $this->type == $block->type
296 && $this->mAuto == $block->mAuto
297 && $this->isHardblock() == $block->isHardblock()
298 && $this->isCreateAccountBlocked() == $block->isCreateAccountBlocked()
299 && $this->getExpiry() == $block->getExpiry()
300 && $this->isAutoblocking() == $block->isAutoblocking()
301 && $this->getHideName() == $block->getHideName()
302 && $this->isEmailBlocked() == $block->isEmailBlocked()
303 && $this->isUsertalkEditAllowed() == $block->isUsertalkEditAllowed()
304 && $this->getReason() == $block->getReason()
305 && $this->isSitewide() == $block->isSitewide()
306 // Block::getRestrictions() may perform a database query, so keep it at
307 // the end.
308 && BlockRestriction::equals( $this->getRestrictions(), $block->getRestrictions() )
309 );
310 }
311
312 /**
313 * Load a block from the database which affects the already-set $this->target:
314 * 1) A block directly on the given user or IP
315 * 2) A rangeblock encompassing the given IP (smallest first)
316 * 3) An autoblock on the given IP
317 * @param User|string|null $vagueTarget Also search for blocks affecting this target. Doesn't
318 * make any sense to use TYPE_AUTO / TYPE_ID here. Leave blank to skip IP lookups.
319 * @throws MWException
320 * @return bool Whether a relevant block was found
321 */
322 protected function newLoad( $vagueTarget = null ) {
323 $db = wfGetDB( $this->mFromMaster ? DB_MASTER : DB_REPLICA );
324
325 if ( $this->type !== null ) {
326 $conds = [
327 'ipb_address' => [ (string)$this->target ],
328 ];
329 } else {
330 $conds = [ 'ipb_address' => [] ];
331 }
332
333 # Be aware that the != '' check is explicit, since empty values will be
334 # passed by some callers (T31116)
335 if ( $vagueTarget != '' ) {
336 list( $target, $type ) = self::parseTarget( $vagueTarget );
337 switch ( $type ) {
338 case self::TYPE_USER:
339 # Slightly weird, but who are we to argue?
340 $conds['ipb_address'][] = (string)$target;
341 break;
342
343 case self::TYPE_IP:
344 $conds['ipb_address'][] = (string)$target;
345 $conds[] = self::getRangeCond( IP::toHex( $target ) );
346 $conds = $db->makeList( $conds, LIST_OR );
347 break;
348
349 case self::TYPE_RANGE:
350 list( $start, $end ) = IP::parseRange( $target );
351 $conds['ipb_address'][] = (string)$target;
352 $conds[] = self::getRangeCond( $start, $end );
353 $conds = $db->makeList( $conds, LIST_OR );
354 break;
355
356 default:
357 throw new MWException( "Tried to load block with invalid type" );
358 }
359 }
360
361 $blockQuery = self::getQueryInfo();
362 $res = $db->select(
363 $blockQuery['tables'], $blockQuery['fields'], $conds, __METHOD__, [], $blockQuery['joins']
364 );
365
366 # This result could contain a block on the user, a block on the IP, and a russian-doll
367 # set of rangeblocks. We want to choose the most specific one, so keep a leader board.
368 $bestRow = null;
369
370 # Lower will be better
371 $bestBlockScore = 100;
372
373 foreach ( $res as $row ) {
374 $block = self::newFromRow( $row );
375
376 # Don't use expired blocks
377 if ( $block->isExpired() ) {
378 continue;
379 }
380
381 # Don't use anon only blocks on users
382 if ( $this->type == self::TYPE_USER && !$block->isHardblock() ) {
383 continue;
384 }
385
386 if ( $block->getType() == self::TYPE_RANGE ) {
387 # This is the number of bits that are allowed to vary in the block, give
388 # or take some floating point errors
389 $end = Wikimedia\base_convert( $block->getRangeEnd(), 16, 10 );
390 $start = Wikimedia\base_convert( $block->getRangeStart(), 16, 10 );
391 $size = log( $end - $start + 1, 2 );
392
393 # This has the nice property that a /32 block is ranked equally with a
394 # single-IP block, which is exactly what it is...
395 $score = self::TYPE_RANGE - 1 + ( $size / 128 );
396
397 } else {
398 $score = $block->getType();
399 }
400
401 if ( $score < $bestBlockScore ) {
402 $bestBlockScore = $score;
403 $bestRow = $row;
404 }
405 }
406
407 if ( $bestRow !== null ) {
408 $this->initFromRow( $bestRow );
409 return true;
410 } else {
411 return false;
412 }
413 }
414
415 /**
416 * Get a set of SQL conditions which will select rangeblocks encompassing a given range
417 * @param string $start Hexadecimal IP representation
418 * @param string|null $end Hexadecimal IP representation, or null to use $start = $end
419 * @return string
420 */
421 public static function getRangeCond( $start, $end = null ) {
422 if ( $end === null ) {
423 $end = $start;
424 }
425 # Per T16634, we want to include relevant active rangeblocks; for
426 # rangeblocks, we want to include larger ranges which enclose the given
427 # range. We know that all blocks must be smaller than $wgBlockCIDRLimit,
428 # so we can improve performance by filtering on a LIKE clause
429 $chunk = self::getIpFragment( $start );
430 $dbr = wfGetDB( DB_REPLICA );
431 $like = $dbr->buildLike( $chunk, $dbr->anyString() );
432
433 # Fairly hard to make a malicious SQL statement out of hex characters,
434 # but stranger things have happened...
435 $safeStart = $dbr->addQuotes( $start );
436 $safeEnd = $dbr->addQuotes( $end );
437
438 return $dbr->makeList(
439 [
440 "ipb_range_start $like",
441 "ipb_range_start <= $safeStart",
442 "ipb_range_end >= $safeEnd",
443 ],
444 LIST_AND
445 );
446 }
447
448 /**
449 * Get the component of an IP address which is certain to be the same between an IP
450 * address and a rangeblock containing that IP address.
451 * @param string $hex Hexadecimal IP representation
452 * @return string
453 */
454 protected static function getIpFragment( $hex ) {
455 global $wgBlockCIDRLimit;
456 if ( substr( $hex, 0, 3 ) == 'v6-' ) {
457 return 'v6-' . substr( substr( $hex, 3 ), 0, floor( $wgBlockCIDRLimit['IPv6'] / 4 ) );
458 } else {
459 return substr( $hex, 0, floor( $wgBlockCIDRLimit['IPv4'] / 4 ) );
460 }
461 }
462
463 /**
464 * Given a database row from the ipblocks table, initialize
465 * member variables
466 * @param stdClass $row A row from the ipblocks table
467 */
468 protected function initFromRow( $row ) {
469 $this->setTarget( $row->ipb_address );
470 $this->setBlocker( User::newFromAnyId(
471 $row->ipb_by, $row->ipb_by_text, $row->ipb_by_actor ?? null
472 ) );
473
474 $this->setTimestamp( wfTimestamp( TS_MW, $row->ipb_timestamp ) );
475 $this->mAuto = $row->ipb_auto;
476 $this->setHideName( $row->ipb_deleted );
477 $this->mId = (int)$row->ipb_id;
478 $this->mParentBlockId = $row->ipb_parent_block_id;
479
480 // I wish I didn't have to do this
481 $db = wfGetDB( DB_REPLICA );
482 $this->setExpiry( $db->decodeExpiry( $row->ipb_expiry ) );
483 $this->setReason(
484 CommentStore::getStore()
485 // Legacy because $row may have come from self::selectFields()
486 ->getCommentLegacy( $db, 'ipb_reason', $row )->text
487 );
488
489 $this->isHardblock( !$row->ipb_anon_only );
490 $this->isAutoblocking( $row->ipb_enable_autoblock );
491 $this->isSitewide( (bool)$row->ipb_sitewide );
492
493 $this->isCreateAccountBlocked( $row->ipb_create_account );
494 $this->isEmailBlocked( $row->ipb_block_email );
495 $this->isUsertalkEditAllowed( $row->ipb_allow_usertalk );
496 }
497
498 /**
499 * Create a new Block object from a database row
500 * @param stdClass $row Row from the ipblocks table
501 * @return Block
502 */
503 public static function newFromRow( $row ) {
504 $block = new Block;
505 $block->initFromRow( $row );
506 return $block;
507 }
508
509 /**
510 * Delete the row from the IP blocks table.
511 *
512 * @throws MWException
513 * @return bool
514 */
515 public function delete() {
516 if ( wfReadOnly() ) {
517 return false;
518 }
519
520 if ( !$this->getId() ) {
521 throw new MWException( "Block::delete() requires that the mId member be filled\n" );
522 }
523
524 $dbw = wfGetDB( DB_MASTER );
525
526 BlockRestriction::deleteByParentBlockId( $this->getId() );
527 $dbw->delete( 'ipblocks', [ 'ipb_parent_block_id' => $this->getId() ], __METHOD__ );
528
529 BlockRestriction::deleteByBlockId( $this->getId() );
530 $dbw->delete( 'ipblocks', [ 'ipb_id' => $this->getId() ], __METHOD__ );
531
532 return $dbw->affectedRows() > 0;
533 }
534
535 /**
536 * Insert a block into the block table. Will fail if there is a conflicting
537 * block (same name and options) already in the database.
538 *
539 * @param IDatabase|null $dbw If you have one available
540 * @return bool|array False on failure, assoc array on success:
541 * ('id' => block ID, 'autoIds' => array of autoblock IDs)
542 */
543 public function insert( $dbw = null ) {
544 global $wgBlockDisablesLogin;
545
546 if ( $this->getSystemBlockType() !== null ) {
547 throw new MWException( 'Cannot insert a system block into the database' );
548 }
549 if ( !$this->getBlocker() || $this->getBlocker()->getName() === '' ) {
550 throw new MWException( 'Cannot insert a block without a blocker set' );
551 }
552
553 wfDebug( "Block::insert; timestamp {$this->mTimestamp}\n" );
554
555 if ( $dbw === null ) {
556 $dbw = wfGetDB( DB_MASTER );
557 }
558
559 self::purgeExpired();
560
561 $row = $this->getDatabaseArray( $dbw );
562
563 $dbw->insert( 'ipblocks', $row, __METHOD__, [ 'IGNORE' ] );
564 $affected = $dbw->affectedRows();
565 if ( $affected ) {
566 $this->setId( $dbw->insertId() );
567 if ( $this->restrictions ) {
568 BlockRestriction::insert( $this->restrictions );
569 }
570 }
571
572 # Don't collide with expired blocks.
573 # Do this after trying to insert to avoid locking.
574 if ( !$affected ) {
575 # T96428: The ipb_address index uses a prefix on a field, so
576 # use a standard SELECT + DELETE to avoid annoying gap locks.
577 $ids = $dbw->selectFieldValues( 'ipblocks',
578 'ipb_id',
579 [
580 'ipb_address' => $row['ipb_address'],
581 'ipb_user' => $row['ipb_user'],
582 'ipb_expiry < ' . $dbw->addQuotes( $dbw->timestamp() )
583 ],
584 __METHOD__
585 );
586 if ( $ids ) {
587 $dbw->delete( 'ipblocks', [ 'ipb_id' => $ids ], __METHOD__ );
588 BlockRestriction::deleteByBlockId( $ids );
589 $dbw->insert( 'ipblocks', $row, __METHOD__, [ 'IGNORE' ] );
590 $affected = $dbw->affectedRows();
591 $this->setId( $dbw->insertId() );
592 if ( $this->restrictions ) {
593 BlockRestriction::insert( $this->restrictions );
594 }
595 }
596 }
597
598 if ( $affected ) {
599 $auto_ipd_ids = $this->doRetroactiveAutoblock();
600
601 if ( $wgBlockDisablesLogin && $this->target instanceof User ) {
602 // Change user login token to force them to be logged out.
603 $this->target->setToken();
604 $this->target->saveSettings();
605 }
606
607 return [ 'id' => $this->mId, 'autoIds' => $auto_ipd_ids ];
608 }
609
610 return false;
611 }
612
613 /**
614 * Update a block in the DB with new parameters.
615 * The ID field needs to be loaded first.
616 *
617 * @return bool|array False on failure, array on success:
618 * ('id' => block ID, 'autoIds' => array of autoblock IDs)
619 */
620 public function update() {
621 wfDebug( "Block::update; timestamp {$this->mTimestamp}\n" );
622 $dbw = wfGetDB( DB_MASTER );
623
624 $dbw->startAtomic( __METHOD__ );
625
626 $result = $dbw->update(
627 'ipblocks',
628 $this->getDatabaseArray( $dbw ),
629 [ 'ipb_id' => $this->getId() ],
630 __METHOD__
631 );
632
633 // Only update the restrictions if they have been modified.
634 if ( $this->restrictions !== null ) {
635 // An empty array should remove all of the restrictions.
636 if ( empty( $this->restrictions ) ) {
637 $success = BlockRestriction::deleteByBlockId( $this->getId() );
638 } else {
639 $success = BlockRestriction::update( $this->restrictions );
640 }
641 // Update the result. The first false is the result, otherwise, true.
642 $result = $result && $success;
643 }
644
645 if ( $this->isAutoblocking() ) {
646 // update corresponding autoblock(s) (T50813)
647 $dbw->update(
648 'ipblocks',
649 $this->getAutoblockUpdateArray( $dbw ),
650 [ 'ipb_parent_block_id' => $this->getId() ],
651 __METHOD__
652 );
653
654 // Only update the restrictions if they have been modified.
655 if ( $this->restrictions !== null ) {
656 BlockRestriction::updateByParentBlockId( $this->getId(), $this->restrictions );
657 }
658 } else {
659 // autoblock no longer required, delete corresponding autoblock(s)
660 BlockRestriction::deleteByParentBlockId( $this->getId() );
661 $dbw->delete(
662 'ipblocks',
663 [ 'ipb_parent_block_id' => $this->getId() ],
664 __METHOD__
665 );
666 }
667
668 $dbw->endAtomic( __METHOD__ );
669
670 if ( $result ) {
671 $auto_ipd_ids = $this->doRetroactiveAutoblock();
672 return [ 'id' => $this->mId, 'autoIds' => $auto_ipd_ids ];
673 }
674
675 return $result;
676 }
677
678 /**
679 * Get an array suitable for passing to $dbw->insert() or $dbw->update()
680 * @param IDatabase $dbw
681 * @return array
682 */
683 protected function getDatabaseArray( IDatabase $dbw ) {
684 $expiry = $dbw->encodeExpiry( $this->getExpiry() );
685
686 if ( $this->forcedTargetID ) {
687 $uid = $this->forcedTargetID;
688 } else {
689 $uid = $this->target instanceof User ? $this->target->getId() : 0;
690 }
691
692 $a = [
693 'ipb_address' => (string)$this->target,
694 'ipb_user' => $uid,
695 'ipb_timestamp' => $dbw->timestamp( $this->getTimestamp() ),
696 'ipb_auto' => $this->mAuto,
697 'ipb_anon_only' => !$this->isHardblock(),
698 'ipb_create_account' => $this->isCreateAccountBlocked(),
699 'ipb_enable_autoblock' => $this->isAutoblocking(),
700 'ipb_expiry' => $expiry,
701 'ipb_range_start' => $this->getRangeStart(),
702 'ipb_range_end' => $this->getRangeEnd(),
703 'ipb_deleted' => intval( $this->getHideName() ), // typecast required for SQLite
704 'ipb_block_email' => $this->isEmailBlocked(),
705 'ipb_allow_usertalk' => $this->isUsertalkEditAllowed(),
706 'ipb_parent_block_id' => $this->mParentBlockId,
707 'ipb_sitewide' => $this->isSitewide(),
708 ] + CommentStore::getStore()->insert( $dbw, 'ipb_reason', $this->getReason() )
709 + ActorMigration::newMigration()->getInsertValues( $dbw, 'ipb_by', $this->getBlocker() );
710
711 return $a;
712 }
713
714 /**
715 * @param IDatabase $dbw
716 * @return array
717 */
718 protected function getAutoblockUpdateArray( IDatabase $dbw ) {
719 return [
720 'ipb_create_account' => $this->isCreateAccountBlocked(),
721 'ipb_deleted' => (int)$this->getHideName(), // typecast required for SQLite
722 'ipb_allow_usertalk' => $this->isUsertalkEditAllowed(),
723 'ipb_sitewide' => $this->isSitewide(),
724 ] + CommentStore::getStore()->insert( $dbw, 'ipb_reason', $this->getReason() )
725 + ActorMigration::newMigration()->getInsertValues( $dbw, 'ipb_by', $this->getBlocker() );
726 }
727
728 /**
729 * Retroactively autoblocks the last IP used by the user (if it is a user)
730 * blocked by this Block.
731 *
732 * @return array Block IDs of retroactive autoblocks made
733 */
734 protected function doRetroactiveAutoblock() {
735 $blockIds = [];
736 # If autoblock is enabled, autoblock the LAST IP(s) used
737 if ( $this->isAutoblocking() && $this->getType() == self::TYPE_USER ) {
738 wfDebug( "Doing retroactive autoblocks for " . $this->getTarget() . "\n" );
739
740 $continue = Hooks::run(
741 'PerformRetroactiveAutoblock', [ $this, &$blockIds ] );
742
743 if ( $continue ) {
744 self::defaultRetroactiveAutoblock( $this, $blockIds );
745 }
746 }
747 return $blockIds;
748 }
749
750 /**
751 * Retroactively autoblocks the last IP used by the user (if it is a user)
752 * blocked by this Block. This will use the recentchanges table.
753 *
754 * @param Block $block
755 * @param array &$blockIds
756 */
757 protected static function defaultRetroactiveAutoblock( Block $block, array &$blockIds ) {
758 global $wgPutIPinRC;
759
760 // No IPs are in recentchanges table, so nothing to select
761 if ( !$wgPutIPinRC ) {
762 return;
763 }
764
765 // Autoblocks only apply to TYPE_USER
766 if ( $block->getType() !== self::TYPE_USER ) {
767 return;
768 }
769 $target = $block->getTarget(); // TYPE_USER => always a User object
770
771 $dbr = wfGetDB( DB_REPLICA );
772 $rcQuery = ActorMigration::newMigration()->getWhere( $dbr, 'rc_user', $target, false );
773
774 $options = [ 'ORDER BY' => 'rc_timestamp DESC' ];
775
776 // Just the last IP used.
777 $options['LIMIT'] = 1;
778
779 $res = $dbr->select(
780 [ 'recentchanges' ] + $rcQuery['tables'],
781 [ 'rc_ip' ],
782 $rcQuery['conds'],
783 __METHOD__,
784 $options,
785 $rcQuery['joins']
786 );
787
788 if ( !$res->numRows() ) {
789 # No results, don't autoblock anything
790 wfDebug( "No IP found to retroactively autoblock\n" );
791 } else {
792 foreach ( $res as $row ) {
793 if ( $row->rc_ip ) {
794 $id = $block->doAutoblock( $row->rc_ip );
795 if ( $id ) {
796 $blockIds[] = $id;
797 }
798 }
799 }
800 }
801 }
802
803 /**
804 * Checks whether a given IP is on the autoblock whitelist.
805 * TODO: this probably belongs somewhere else, but not sure where...
806 *
807 * @param string $ip The IP to check
808 * @return bool
809 */
810 public static function isWhitelistedFromAutoblocks( $ip ) {
811 // Try to get the autoblock_whitelist from the cache, as it's faster
812 // than getting the msg raw and explode()'ing it.
813 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
814 $lines = $cache->getWithSetCallback(
815 $cache->makeKey( 'ip-autoblock', 'whitelist' ),
816 $cache::TTL_DAY,
817 function ( $curValue, &$ttl, array &$setOpts ) {
818 $setOpts += Database::getCacheSetOptions( wfGetDB( DB_REPLICA ) );
819
820 return explode( "\n",
821 wfMessage( 'autoblock_whitelist' )->inContentLanguage()->plain() );
822 }
823 );
824
825 wfDebug( "Checking the autoblock whitelist..\n" );
826
827 foreach ( $lines as $line ) {
828 # List items only
829 if ( substr( $line, 0, 1 ) !== '*' ) {
830 continue;
831 }
832
833 $wlEntry = substr( $line, 1 );
834 $wlEntry = trim( $wlEntry );
835
836 wfDebug( "Checking $ip against $wlEntry..." );
837
838 # Is the IP in this range?
839 if ( IP::isInRange( $ip, $wlEntry ) ) {
840 wfDebug( " IP $ip matches $wlEntry, not autoblocking\n" );
841 return true;
842 } else {
843 wfDebug( " No match\n" );
844 }
845 }
846
847 return false;
848 }
849
850 /**
851 * Autoblocks the given IP, referring to this Block.
852 *
853 * @param string $autoblockIP The IP to autoblock.
854 * @return int|bool Block ID if an autoblock was inserted, false if not.
855 */
856 public function doAutoblock( $autoblockIP ) {
857 # If autoblocks are disabled, go away.
858 if ( !$this->isAutoblocking() ) {
859 return false;
860 }
861
862 # Don't autoblock for system blocks
863 if ( $this->getSystemBlockType() !== null ) {
864 throw new MWException( 'Cannot autoblock from a system block' );
865 }
866
867 # Check for presence on the autoblock whitelist.
868 if ( self::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
869 return false;
870 }
871
872 // Avoid PHP 7.1 warning of passing $this by reference
873 $block = $this;
874 # Allow hooks to cancel the autoblock.
875 if ( !Hooks::run( 'AbortAutoblock', [ $autoblockIP, &$block ] ) ) {
876 wfDebug( "Autoblock aborted by hook.\n" );
877 return false;
878 }
879
880 # It's okay to autoblock. Go ahead and insert/update the block...
881
882 # Do not add a *new* block if the IP is already blocked.
883 $ipblock = self::newFromTarget( $autoblockIP );
884 if ( $ipblock ) {
885 # Check if the block is an autoblock and would exceed the user block
886 # if renewed. If so, do nothing, otherwise prolong the block time...
887 if ( $ipblock->mAuto && // @todo Why not compare $ipblock->mExpiry?
888 $this->getExpiry() > self::getAutoblockExpiry( $ipblock->getTimestamp() )
889 ) {
890 # Reset block timestamp to now and its expiry to
891 # $wgAutoblockExpiry in the future
892 $ipblock->updateTimestamp();
893 }
894 return false;
895 }
896
897 # Make a new block object with the desired properties.
898 $autoblock = new Block;
899 wfDebug( "Autoblocking {$this->getTarget()}@" . $autoblockIP . "\n" );
900 $autoblock->setTarget( $autoblockIP );
901 $autoblock->setBlocker( $this->getBlocker() );
902 $autoblock->setReason(
903 wfMessage( 'autoblocker', $this->getTarget(), $this->getReason() )
904 ->inContentLanguage()->plain()
905 );
906 $timestamp = wfTimestampNow();
907 $autoblock->setTimestamp( $timestamp );
908 $autoblock->mAuto = 1;
909 $autoblock->isCreateAccountBlocked( $this->isCreateAccountBlocked() );
910 # Continue suppressing the name if needed
911 $autoblock->setHideName( $this->getHideName() );
912 $autoblock->isUsertalkEditAllowed( $this->isUsertalkEditAllowed() );
913 $autoblock->mParentBlockId = $this->mId;
914 $autoblock->isSitewide( $this->isSitewide() );
915 $autoblock->setRestrictions( $this->getRestrictions() );
916
917 if ( $this->getExpiry() == 'infinity' ) {
918 # Original block was indefinite, start an autoblock now
919 $autoblock->setExpiry( self::getAutoblockExpiry( $timestamp ) );
920 } else {
921 # If the user is already blocked with an expiry date, we don't
922 # want to pile on top of that.
923 $autoblock->setExpiry( min( $this->getExpiry(), self::getAutoblockExpiry( $timestamp ) ) );
924 }
925
926 # Insert the block...
927 $status = $autoblock->insert();
928 return $status
929 ? $status['id']
930 : false;
931 }
932
933 /**
934 * Check if a block has expired. Delete it if it is.
935 * @return bool
936 */
937 public function deleteIfExpired() {
938 if ( $this->isExpired() ) {
939 wfDebug( "Block::deleteIfExpired() -- deleting\n" );
940 $this->delete();
941 $retVal = true;
942 } else {
943 wfDebug( "Block::deleteIfExpired() -- not expired\n" );
944 $retVal = false;
945 }
946
947 return $retVal;
948 }
949
950 /**
951 * Has the block expired?
952 * @return bool
953 */
954 public function isExpired() {
955 $timestamp = wfTimestampNow();
956 wfDebug( "Block::isExpired() checking current " . $timestamp . " vs $this->mExpiry\n" );
957
958 if ( !$this->getExpiry() ) {
959 return false;
960 } else {
961 return $timestamp > $this->getExpiry();
962 }
963 }
964
965 /**
966 * Is the block address valid (i.e. not a null string?)
967 * @return bool
968 */
969 public function isValid() {
970 return $this->getTarget() != null;
971 }
972
973 /**
974 * Update the timestamp on autoblocks.
975 */
976 public function updateTimestamp() {
977 if ( $this->mAuto ) {
978 $this->setTimestamp( wfTimestamp() );
979 $this->setExpiry( self::getAutoblockExpiry( $this->getTimestamp() ) );
980
981 $dbw = wfGetDB( DB_MASTER );
982 $dbw->update( 'ipblocks',
983 [ /* SET */
984 'ipb_timestamp' => $dbw->timestamp( $this->getTimestamp() ),
985 'ipb_expiry' => $dbw->timestamp( $this->getExpiry() ),
986 ],
987 [ /* WHERE */
988 'ipb_id' => $this->getId(),
989 ],
990 __METHOD__
991 );
992 }
993 }
994
995 /**
996 * Get the IP address at the start of the range in Hex form
997 * @throws MWException
998 * @return string IP in Hex form
999 */
1000 public function getRangeStart() {
1001 switch ( $this->type ) {
1002 case self::TYPE_USER:
1003 return '';
1004 case self::TYPE_IP:
1005 return IP::toHex( $this->target );
1006 case self::TYPE_RANGE:
1007 list( $start, /*...*/ ) = IP::parseRange( $this->target );
1008 return $start;
1009 default:
1010 throw new MWException( "Block with invalid type" );
1011 }
1012 }
1013
1014 /**
1015 * Get the IP address at the end of the range in Hex form
1016 * @throws MWException
1017 * @return string IP in Hex form
1018 */
1019 public function getRangeEnd() {
1020 switch ( $this->type ) {
1021 case self::TYPE_USER:
1022 return '';
1023 case self::TYPE_IP:
1024 return IP::toHex( $this->target );
1025 case self::TYPE_RANGE:
1026 list( /*...*/, $end ) = IP::parseRange( $this->target );
1027 return $end;
1028 default:
1029 throw new MWException( "Block with invalid type" );
1030 }
1031 }
1032
1033 /**
1034 * Get the user id of the blocking sysop
1035 *
1036 * @return int (0 for foreign users)
1037 */
1038 public function getBy() {
1039 return $this->getBlocker()->getId();
1040 }
1041
1042 /**
1043 * Get the username of the blocking sysop
1044 *
1045 * @return string
1046 */
1047 public function getByName() {
1048 return $this->getBlocker()->getName();
1049 }
1050
1051 /**
1052 * Get the block ID
1053 * @return int
1054 */
1055 public function getId() {
1056 return $this->mId;
1057 }
1058
1059 /**
1060 * Set the block ID
1061 *
1062 * @param int $blockId
1063 * @return int
1064 */
1065 private function setId( $blockId ) {
1066 $this->mId = (int)$blockId;
1067
1068 if ( is_array( $this->restrictions ) ) {
1069 $this->restrictions = BlockRestriction::setBlockId( $blockId, $this->restrictions );
1070 }
1071
1072 return $this;
1073 }
1074
1075 /**
1076 * Get the reason given for creating the block
1077 *
1078 * @since 1.33
1079 * @return string
1080 */
1081 public function getReason() {
1082 return $this->mReason;
1083 }
1084
1085 /**
1086 * Set the reason for creating the block
1087 *
1088 * @since 1.33
1089 * @param string $reason
1090 */
1091 public function setReason( $reason ) {
1092 $this->mReason = $reason;
1093 }
1094
1095 /**
1096 * Get whether the block hides the target's username
1097 *
1098 * @since 1.33
1099 * @return bool The block hides the username
1100 */
1101 public function getHideName() {
1102 return $this->mHideName;
1103 }
1104
1105 /**
1106 * Set whether ths block hides the target's username
1107 *
1108 * @since 1.33
1109 * @param bool $hideName The block hides the username
1110 */
1111 public function setHideName( $hideName ) {
1112 $this->mHideName = $hideName;
1113 }
1114
1115 /**
1116 * Get the system block type, if any
1117 * @since 1.29
1118 * @return string|null
1119 */
1120 public function getSystemBlockType() {
1121 return $this->systemBlockType;
1122 }
1123
1124 /**
1125 * Get/set a flag determining whether the master is used for reads
1126 *
1127 * @param bool|null $x
1128 * @return bool
1129 */
1130 public function fromMaster( $x = null ) {
1131 return wfSetVar( $this->mFromMaster, $x );
1132 }
1133
1134 /**
1135 * Get/set whether the Block is a hardblock (affects logged-in users on a given IP/range)
1136 * @param bool|null $x
1137 * @return bool
1138 */
1139 public function isHardblock( $x = null ) {
1140 wfSetVar( $this->isHardblock, $x );
1141
1142 # You can't *not* hardblock a user
1143 return $this->getType() == self::TYPE_USER
1144 ? true
1145 : $this->isHardblock;
1146 }
1147
1148 /**
1149 * @param null|bool $x
1150 * @return bool
1151 */
1152 public function isAutoblocking( $x = null ) {
1153 wfSetVar( $this->isAutoblocking, $x );
1154
1155 # You can't put an autoblock on an IP or range as we don't have any history to
1156 # look over to get more IPs from
1157 return $this->getType() == self::TYPE_USER
1158 ? $this->isAutoblocking
1159 : false;
1160 }
1161
1162 /**
1163 * Indicates that the block is a sitewide block. This means the user is
1164 * prohibited from editing any page on the site (other than their own talk
1165 * page).
1166 *
1167 * @since 1.33
1168 * @param null|bool $x
1169 * @return bool
1170 */
1171 public function isSitewide( $x = null ) {
1172 return wfSetVar( $this->isSitewide, $x );
1173 }
1174
1175 /**
1176 * Get or set the flag indicating whether this block blocks the target from
1177 * creating an account. (Note that the flag may be overridden depending on
1178 * global configs.)
1179 *
1180 * @since 1.33
1181 * @param null|bool $x Value to set (if null, just get the property value)
1182 * @return bool Value of the property
1183 */
1184 public function isCreateAccountBlocked( $x = null ) {
1185 return wfSetVar( $this->blockCreateAccount, $x );
1186 }
1187
1188 /**
1189 * Get or set the flag indicating whether this block blocks the target from
1190 * sending emails. (Note that the flag may be overridden depending on
1191 * global configs.)
1192 *
1193 * @since 1.33
1194 * @param null|bool $x Value to set (if null, just get the property value)
1195 * @return bool Value of the property
1196 */
1197 public function isEmailBlocked( $x = null ) {
1198 return wfSetVar( $this->mBlockEmail, $x );
1199 }
1200
1201 /**
1202 * Get or set the flag indicating whether this block blocks the target from
1203 * editing their own user talk page. (Note that the flag may be overridden
1204 * depending on global configs.)
1205 *
1206 * @since 1.33
1207 * @param null|bool $x Value to set (if null, just get the property value)
1208 * @return bool Value of the property
1209 */
1210 public function isUsertalkEditAllowed( $x = null ) {
1211 return wfSetVar( $this->allowUsertalk, $x );
1212 }
1213
1214 /**
1215 * Determine whether the Block prevents a given right. A right
1216 * may be blacklisted or whitelisted, or determined from a
1217 * property on the Block object. For certain rights, the property
1218 * may be overridden according to global configs.
1219 *
1220 * @since 1.33
1221 * @param string $right Right to check
1222 * @return bool|null null if unrecognized right or unset property
1223 */
1224 public function appliesToRight( $right ) {
1225 $config = RequestContext::getMain()->getConfig();
1226 $blockDisablesLogin = $config->get( 'BlockDisablesLogin' );
1227
1228 $res = null;
1229 switch ( $right ) {
1230 case 'edit':
1231 // TODO: fix this case to return proper value
1232 $res = true;
1233 break;
1234 case 'createaccount':
1235 $res = $this->isCreateAccountBlocked();
1236 break;
1237 case 'sendemail':
1238 $res = $this->isEmailBlocked();
1239 break;
1240 case 'upload':
1241 // Until T6995 is completed
1242 $res = $this->isSitewide();
1243 break;
1244 case 'read':
1245 $res = false;
1246 break;
1247 case 'purge':
1248 $res = false;
1249 break;
1250 }
1251 if ( !$res && $blockDisablesLogin ) {
1252 // If a block would disable login, then it should
1253 // prevent any right that all users cannot do
1254 $anon = new User;
1255 $res = $anon->isAllowed( $right ) ? $res : true;
1256 }
1257
1258 return $res;
1259 }
1260
1261 /**
1262 * Get/set whether the Block prevents a given action
1263 *
1264 * @deprecated since 1.33, use appliesToRight to determine block
1265 * behaviour, and specific methods to get/set properties
1266 * @param string $action Action to check
1267 * @param bool|null $x Value for set, or null to just get value
1268 * @return bool|null Null for unrecognized rights.
1269 */
1270 public function prevents( $action, $x = null ) {
1271 $config = RequestContext::getMain()->getConfig();
1272 $blockDisablesLogin = $config->get( 'BlockDisablesLogin' );
1273 $blockAllowsUTEdit = $config->get( 'BlockAllowsUTEdit' );
1274
1275 $res = null;
1276 switch ( $action ) {
1277 case 'edit':
1278 # For now... <evil laugh>
1279 $res = true;
1280 break;
1281 case 'createaccount':
1282 $res = wfSetVar( $this->blockCreateAccount, $x );
1283 break;
1284 case 'sendemail':
1285 $res = wfSetVar( $this->mBlockEmail, $x );
1286 break;
1287 case 'upload':
1288 // Until T6995 is completed
1289 $res = $this->isSitewide();
1290 break;
1291 case 'editownusertalk':
1292 // NOTE: this check is not reliable on partial blocks
1293 // since partially blocked users are always allowed to edit
1294 // their own talk page unless a restriction exists on the
1295 // page or User_talk: namespace
1296 wfSetVar( $this->allowUsertalk, $x === null ? null : !$x );
1297 $res = !$this->isUserTalkEditAllowed();
1298
1299 // edit own user talk can be disabled by config
1300 if ( !$blockAllowsUTEdit ) {
1301 $res = true;
1302 }
1303 break;
1304 case 'read':
1305 $res = false;
1306 break;
1307 case 'purge':
1308 $res = false;
1309 break;
1310 }
1311 if ( !$res && $blockDisablesLogin ) {
1312 // If a block would disable login, then it should
1313 // prevent any action that all users cannot do
1314 $anon = new User;
1315 $res = $anon->isAllowed( $action ) ? $res : true;
1316 }
1317
1318 return $res;
1319 }
1320
1321 /**
1322 * Get the block name, but with autoblocked IPs hidden as per standard privacy policy
1323 * @return string Text is escaped
1324 */
1325 public function getRedactedName() {
1326 if ( $this->mAuto ) {
1327 return Html::element(
1328 'span',
1329 [ 'class' => 'mw-autoblockid' ],
1330 wfMessage( 'autoblockid', $this->mId )->text()
1331 );
1332 } else {
1333 return htmlspecialchars( $this->getTarget() );
1334 }
1335 }
1336
1337 /**
1338 * Get a timestamp of the expiry for autoblocks
1339 *
1340 * @param string|int $timestamp
1341 * @return string
1342 */
1343 public static function getAutoblockExpiry( $timestamp ) {
1344 global $wgAutoblockExpiry;
1345
1346 return wfTimestamp( TS_MW, wfTimestamp( TS_UNIX, $timestamp ) + $wgAutoblockExpiry );
1347 }
1348
1349 /**
1350 * Purge expired blocks from the ipblocks table
1351 */
1352 public static function purgeExpired() {
1353 if ( wfReadOnly() ) {
1354 return;
1355 }
1356
1357 DeferredUpdates::addUpdate( new AutoCommitUpdate(
1358 wfGetDB( DB_MASTER ),
1359 __METHOD__,
1360 function ( IDatabase $dbw, $fname ) {
1361 $ids = $dbw->selectFieldValues( 'ipblocks',
1362 'ipb_id',
1363 [ 'ipb_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ],
1364 $fname
1365 );
1366 if ( $ids ) {
1367 BlockRestriction::deleteByBlockId( $ids );
1368 $dbw->delete( 'ipblocks', [ 'ipb_id' => $ids ], $fname );
1369 }
1370 }
1371 ) );
1372 }
1373
1374 /**
1375 * Given a target and the target's type, get an existing Block object if possible.
1376 * @param string|User|int $specificTarget A block target, which may be one of several types:
1377 * * A user to block, in which case $target will be a User
1378 * * An IP to block, in which case $target will be a User generated by using
1379 * User::newFromName( $ip, false ) to turn off name validation
1380 * * An IP range, in which case $target will be a String "123.123.123.123/18" etc
1381 * * The ID of an existing block, in the format "#12345" (since pure numbers are valid
1382 * usernames
1383 * Calling this with a user, IP address or range will not select autoblocks, and will
1384 * only select a block where the targets match exactly (so looking for blocks on
1385 * 1.2.3.4 will not select 1.2.0.0/16 or even 1.2.3.4/32)
1386 * @param string|User|int|null $vagueTarget As above, but we will search for *any* block which
1387 * affects that target (so for an IP address, get ranges containing that IP; and also
1388 * get any relevant autoblocks). Leave empty or blank to skip IP-based lookups.
1389 * @param bool $fromMaster Whether to use the DB_MASTER database
1390 * @return Block|null (null if no relevant block could be found). The target and type
1391 * of the returned Block will refer to the actual block which was found, which might
1392 * not be the same as the target you gave if you used $vagueTarget!
1393 */
1394 public static function newFromTarget( $specificTarget, $vagueTarget = null, $fromMaster = false ) {
1395 list( $target, $type ) = self::parseTarget( $specificTarget );
1396 if ( $type == self::TYPE_ID || $type == self::TYPE_AUTO ) {
1397 return self::newFromID( $target );
1398
1399 } elseif ( $target === null && $vagueTarget == '' ) {
1400 # We're not going to find anything useful here
1401 # Be aware that the == '' check is explicit, since empty values will be
1402 # passed by some callers (T31116)
1403 return null;
1404
1405 } elseif ( in_array(
1406 $type,
1407 [ self::TYPE_USER, self::TYPE_IP, self::TYPE_RANGE, null ] )
1408 ) {
1409 $block = new Block();
1410 $block->fromMaster( $fromMaster );
1411
1412 if ( $type !== null ) {
1413 $block->setTarget( $target );
1414 }
1415
1416 if ( $block->newLoad( $vagueTarget ) ) {
1417 return $block;
1418 }
1419 }
1420 return null;
1421 }
1422
1423 /**
1424 * Get all blocks that match any IP from an array of IP addresses
1425 *
1426 * @param array $ipChain List of IPs (strings), usually retrieved from the
1427 * X-Forwarded-For header of the request
1428 * @param bool $isAnon Exclude anonymous-only blocks if false
1429 * @param bool $fromMaster Whether to query the master or replica DB
1430 * @return array Array of Blocks
1431 * @since 1.22
1432 */
1433 public static function getBlocksForIPList( array $ipChain, $isAnon, $fromMaster = false ) {
1434 if ( $ipChain === [] ) {
1435 return [];
1436 }
1437
1438 $conds = [];
1439 $proxyLookup = MediaWikiServices::getInstance()->getProxyLookup();
1440 foreach ( array_unique( $ipChain ) as $ipaddr ) {
1441 # Discard invalid IP addresses. Since XFF can be spoofed and we do not
1442 # necessarily trust the header given to us, make sure that we are only
1443 # checking for blocks on well-formatted IP addresses (IPv4 and IPv6).
1444 # Do not treat private IP spaces as special as it may be desirable for wikis
1445 # to block those IP ranges in order to stop misbehaving proxies that spoof XFF.
1446 if ( !IP::isValid( $ipaddr ) ) {
1447 continue;
1448 }
1449 # Don't check trusted IPs (includes local squids which will be in every request)
1450 if ( $proxyLookup->isTrustedProxy( $ipaddr ) ) {
1451 continue;
1452 }
1453 # Check both the original IP (to check against single blocks), as well as build
1454 # the clause to check for rangeblocks for the given IP.
1455 $conds['ipb_address'][] = $ipaddr;
1456 $conds[] = self::getRangeCond( IP::toHex( $ipaddr ) );
1457 }
1458
1459 if ( $conds === [] ) {
1460 return [];
1461 }
1462
1463 if ( $fromMaster ) {
1464 $db = wfGetDB( DB_MASTER );
1465 } else {
1466 $db = wfGetDB( DB_REPLICA );
1467 }
1468 $conds = $db->makeList( $conds, LIST_OR );
1469 if ( !$isAnon ) {
1470 $conds = [ $conds, 'ipb_anon_only' => 0 ];
1471 }
1472 $blockQuery = self::getQueryInfo();
1473 $rows = $db->select(
1474 $blockQuery['tables'],
1475 array_merge( [ 'ipb_range_start', 'ipb_range_end' ], $blockQuery['fields'] ),
1476 $conds,
1477 __METHOD__,
1478 [],
1479 $blockQuery['joins']
1480 );
1481
1482 $blocks = [];
1483 foreach ( $rows as $row ) {
1484 $block = self::newFromRow( $row );
1485 if ( !$block->isExpired() ) {
1486 $blocks[] = $block;
1487 }
1488 }
1489
1490 return $blocks;
1491 }
1492
1493 /**
1494 * From a list of multiple blocks, find the most exact and strongest Block.
1495 *
1496 * The logic for finding the "best" block is:
1497 * - Blocks that match the block's target IP are preferred over ones in a range
1498 * - Hardblocks are chosen over softblocks that prevent account creation
1499 * - Softblocks that prevent account creation are chosen over other softblocks
1500 * - Other softblocks are chosen over autoblocks
1501 * - If there are multiple exact or range blocks at the same level, the one chosen
1502 * is random
1503 * This should be used when $blocks where retrieved from the user's IP address
1504 * and $ipChain is populated from the same IP address information.
1505 *
1506 * @param array $blocks Array of Block objects
1507 * @param array $ipChain List of IPs (strings). This is used to determine how "close"
1508 * a block is to the server, and if a block matches exactly, or is in a range.
1509 * The order is furthest from the server to nearest e.g., (Browser, proxy1, proxy2,
1510 * local-squid, ...)
1511 * @throws MWException
1512 * @return Block|null The "best" block from the list
1513 */
1514 public static function chooseBlock( array $blocks, array $ipChain ) {
1515 if ( $blocks === [] ) {
1516 return null;
1517 } elseif ( count( $blocks ) == 1 ) {
1518 return $blocks[0];
1519 }
1520
1521 // Sort hard blocks before soft ones and secondarily sort blocks
1522 // that disable account creation before those that don't.
1523 usort( $blocks, function ( Block $a, Block $b ) {
1524 $aWeight = (int)$a->isHardblock() . (int)$a->appliesToRight( 'createaccount' );
1525 $bWeight = (int)$b->isHardblock() . (int)$b->appliesToRight( 'createaccount' );
1526 return strcmp( $bWeight, $aWeight ); // highest weight first
1527 } );
1528
1529 $blocksListExact = [
1530 'hard' => false,
1531 'disable_create' => false,
1532 'other' => false,
1533 'auto' => false
1534 ];
1535 $blocksListRange = [
1536 'hard' => false,
1537 'disable_create' => false,
1538 'other' => false,
1539 'auto' => false
1540 ];
1541 $ipChain = array_reverse( $ipChain );
1542
1543 /** @var Block $block */
1544 foreach ( $blocks as $block ) {
1545 // Stop searching if we have already have a "better" block. This
1546 // is why the order of the blocks matters
1547 if ( !$block->isHardblock() && $blocksListExact['hard'] ) {
1548 break;
1549 } elseif ( !$block->appliesToRight( 'createaccount' ) && $blocksListExact['disable_create'] ) {
1550 break;
1551 }
1552
1553 foreach ( $ipChain as $checkip ) {
1554 $checkipHex = IP::toHex( $checkip );
1555 if ( (string)$block->getTarget() === $checkip ) {
1556 if ( $block->isHardblock() ) {
1557 $blocksListExact['hard'] = $blocksListExact['hard'] ?: $block;
1558 } elseif ( $block->appliesToRight( 'createaccount' ) ) {
1559 $blocksListExact['disable_create'] = $blocksListExact['disable_create'] ?: $block;
1560 } elseif ( $block->mAuto ) {
1561 $blocksListExact['auto'] = $blocksListExact['auto'] ?: $block;
1562 } else {
1563 $blocksListExact['other'] = $blocksListExact['other'] ?: $block;
1564 }
1565 // We found closest exact match in the ip list, so go to the next Block
1566 break;
1567 } elseif ( array_filter( $blocksListExact ) == []
1568 && $block->getRangeStart() <= $checkipHex
1569 && $block->getRangeEnd() >= $checkipHex
1570 ) {
1571 if ( $block->isHardblock() ) {
1572 $blocksListRange['hard'] = $blocksListRange['hard'] ?: $block;
1573 } elseif ( $block->appliesToRight( 'createaccount' ) ) {
1574 $blocksListRange['disable_create'] = $blocksListRange['disable_create'] ?: $block;
1575 } elseif ( $block->mAuto ) {
1576 $blocksListRange['auto'] = $blocksListRange['auto'] ?: $block;
1577 } else {
1578 $blocksListRange['other'] = $blocksListRange['other'] ?: $block;
1579 }
1580 break;
1581 }
1582 }
1583 }
1584
1585 if ( array_filter( $blocksListExact ) == [] ) {
1586 $blocksList = &$blocksListRange;
1587 } else {
1588 $blocksList = &$blocksListExact;
1589 }
1590
1591 $chosenBlock = null;
1592 if ( $blocksList['hard'] ) {
1593 $chosenBlock = $blocksList['hard'];
1594 } elseif ( $blocksList['disable_create'] ) {
1595 $chosenBlock = $blocksList['disable_create'];
1596 } elseif ( $blocksList['other'] ) {
1597 $chosenBlock = $blocksList['other'];
1598 } elseif ( $blocksList['auto'] ) {
1599 $chosenBlock = $blocksList['auto'];
1600 } else {
1601 throw new MWException( "Proxy block found, but couldn't be classified." );
1602 }
1603
1604 return $chosenBlock;
1605 }
1606
1607 /**
1608 * From an existing Block, get the target and the type of target.
1609 * Note that, except for null, it is always safe to treat the target
1610 * as a string; for User objects this will return User::__toString()
1611 * which in turn gives User::getName().
1612 *
1613 * @param string|int|User|null $target
1614 * @return array [ User|String|null, Block::TYPE_ constant|null ]
1615 */
1616 public static function parseTarget( $target ) {
1617 # We may have been through this before
1618 if ( $target instanceof User ) {
1619 if ( IP::isValid( $target->getName() ) ) {
1620 return [ $target, self::TYPE_IP ];
1621 } else {
1622 return [ $target, self::TYPE_USER ];
1623 }
1624 } elseif ( $target === null ) {
1625 return [ null, null ];
1626 }
1627
1628 $target = trim( $target );
1629
1630 if ( IP::isValid( $target ) ) {
1631 # We can still create a User if it's an IP address, but we need to turn
1632 # off validation checking (which would exclude IP addresses)
1633 return [
1634 User::newFromName( IP::sanitizeIP( $target ), false ),
1635 self::TYPE_IP
1636 ];
1637
1638 } elseif ( IP::isValidRange( $target ) ) {
1639 # Can't create a User from an IP range
1640 return [ IP::sanitizeRange( $target ), self::TYPE_RANGE ];
1641 }
1642
1643 # Consider the possibility that this is not a username at all
1644 # but actually an old subpage (T31797)
1645 if ( strpos( $target, '/' ) !== false ) {
1646 # An old subpage, drill down to the user behind it
1647 $target = explode( '/', $target )[0];
1648 }
1649
1650 $userObj = User::newFromName( $target );
1651 if ( $userObj instanceof User ) {
1652 # Note that since numbers are valid usernames, a $target of "12345" will be
1653 # considered a User. If you want to pass a block ID, prepend a hash "#12345",
1654 # since hash characters are not valid in usernames or titles generally.
1655 return [ $userObj, self::TYPE_USER ];
1656
1657 } elseif ( preg_match( '/^#\d+$/', $target ) ) {
1658 # Autoblock reference in the form "#12345"
1659 return [ substr( $target, 1 ), self::TYPE_AUTO ];
1660
1661 } else {
1662 # WTF?
1663 return [ null, null ];
1664 }
1665 }
1666
1667 /**
1668 * Get the type of target for this particular block. Autoblocks have whichever type
1669 * corresponds to their target, so to detect if a block is an autoblock, we have to
1670 * check the mAuto property instead.
1671 * @return int Block::TYPE_ constant, will never be TYPE_ID
1672 */
1673 public function getType() {
1674 return $this->mAuto
1675 ? self::TYPE_AUTO
1676 : $this->type;
1677 }
1678
1679 /**
1680 * Get the target and target type for this particular Block. Note that for autoblocks,
1681 * this returns the unredacted name; frontend functions need to call $block->getRedactedName()
1682 * in this situation.
1683 * @return array [ User|String, Block::TYPE_ constant ]
1684 * @todo FIXME: This should be an integral part of the Block member variables
1685 */
1686 public function getTargetAndType() {
1687 return [ $this->getTarget(), $this->getType() ];
1688 }
1689
1690 /**
1691 * Get the target for this particular Block. Note that for autoblocks,
1692 * this returns the unredacted name; frontend functions need to call $block->getRedactedName()
1693 * in this situation.
1694 * @return User|string
1695 */
1696 public function getTarget() {
1697 return $this->target;
1698 }
1699
1700 /**
1701 * Get the block expiry time
1702 *
1703 * @since 1.19
1704 * @return string
1705 */
1706 public function getExpiry() {
1707 return $this->mExpiry;
1708 }
1709
1710 /**
1711 * Set the block expiry time
1712 *
1713 * @since 1.33
1714 * @param string $expiry
1715 */
1716 public function setExpiry( $expiry ) {
1717 $this->mExpiry = $expiry;
1718 }
1719
1720 /**
1721 * Get the timestamp indicating when the block was created
1722 *
1723 * @since 1.33
1724 * @return string
1725 */
1726 public function getTimestamp() {
1727 return $this->mTimestamp;
1728 }
1729
1730 /**
1731 * Set the timestamp indicating when the block was created
1732 *
1733 * @since 1.33
1734 * @param string $timestamp
1735 */
1736 public function setTimestamp( $timestamp ) {
1737 $this->mTimestamp = $timestamp;
1738 }
1739
1740 /**
1741 * Set the target for this block, and update $this->type accordingly
1742 * @param mixed $target
1743 */
1744 public function setTarget( $target ) {
1745 list( $this->target, $this->type ) = self::parseTarget( $target );
1746 }
1747
1748 /**
1749 * Get the user who implemented this block
1750 * @return User User object. May name a foreign user.
1751 */
1752 public function getBlocker() {
1753 return $this->blocker;
1754 }
1755
1756 /**
1757 * Set the user who implemented (or will implement) this block
1758 * @param User|string $user Local User object or username string
1759 */
1760 public function setBlocker( $user ) {
1761 if ( is_string( $user ) ) {
1762 $user = User::newFromName( $user, false );
1763 }
1764
1765 if ( $user->isAnon() && User::isUsableName( $user->getName() ) ) {
1766 throw new InvalidArgumentException(
1767 'Blocker must be a local user or a name that cannot be a local user'
1768 );
1769 }
1770
1771 $this->blocker = $user;
1772 }
1773
1774 /**
1775 * Set the 'BlockID' cookie to this block's ID and expiry time. The cookie's expiry will be
1776 * the same as the block's, to a maximum of 24 hours.
1777 *
1778 * @since 1.29
1779 *
1780 * @param WebResponse $response The response on which to set the cookie.
1781 */
1782 public function setCookie( WebResponse $response ) {
1783 // Calculate the default expiry time.
1784 $maxExpiryTime = wfTimestamp( TS_MW, wfTimestamp() + ( 24 * 60 * 60 ) );
1785
1786 // Use the Block's expiry time only if it's less than the default.
1787 $expiryTime = $this->getExpiry();
1788 if ( $expiryTime === 'infinity' || $expiryTime > $maxExpiryTime ) {
1789 $expiryTime = $maxExpiryTime;
1790 }
1791
1792 // Set the cookie. Reformat the MediaWiki datetime as a Unix timestamp for the cookie.
1793 $expiryValue = DateTime::createFromFormat( 'YmdHis', $expiryTime )->format( 'U' );
1794 $cookieOptions = [ 'httpOnly' => false ];
1795 $cookieValue = $this->getCookieValue();
1796 $response->setCookie( 'BlockID', $cookieValue, $expiryValue, $cookieOptions );
1797 }
1798
1799 /**
1800 * Unset the 'BlockID' cookie.
1801 *
1802 * @since 1.29
1803 *
1804 * @param WebResponse $response The response on which to unset the cookie.
1805 */
1806 public static function clearCookie( WebResponse $response ) {
1807 $response->clearCookie( 'BlockID', [ 'httpOnly' => false ] );
1808 }
1809
1810 /**
1811 * Get the BlockID cookie's value for this block. This is usually the block ID concatenated
1812 * with an HMAC in order to avoid spoofing (T152951), but if wgSecretKey is not set will just
1813 * be the block ID.
1814 *
1815 * @since 1.29
1816 *
1817 * @return string The block ID, probably concatenated with "!" and the HMAC.
1818 */
1819 public function getCookieValue() {
1820 $config = RequestContext::getMain()->getConfig();
1821 $id = $this->getId();
1822 $secretKey = $config->get( 'SecretKey' );
1823 if ( !$secretKey ) {
1824 // If there's no secret key, don't append a HMAC.
1825 return $id;
1826 }
1827 $hmac = MWCryptHash::hmac( $id, $secretKey, false );
1828 $cookieValue = $id . '!' . $hmac;
1829 return $cookieValue;
1830 }
1831
1832 /**
1833 * Get the stored ID from the 'BlockID' cookie. The cookie's value is usually a combination of
1834 * the ID and a HMAC (see Block::setCookie), but will sometimes only be the ID.
1835 *
1836 * @since 1.29
1837 *
1838 * @param string $cookieValue The string in which to find the ID.
1839 *
1840 * @return int|null The block ID, or null if the HMAC is present and invalid.
1841 */
1842 public static function getIdFromCookieValue( $cookieValue ) {
1843 // Extract the ID prefix from the cookie value (may be the whole value, if no bang found).
1844 $bangPos = strpos( $cookieValue, '!' );
1845 $id = ( $bangPos === false ) ? $cookieValue : substr( $cookieValue, 0, $bangPos );
1846 // Get the site-wide secret key.
1847 $config = RequestContext::getMain()->getConfig();
1848 $secretKey = $config->get( 'SecretKey' );
1849 if ( !$secretKey ) {
1850 // If there's no secret key, just use the ID as given.
1851 return $id;
1852 }
1853 $storedHmac = substr( $cookieValue, $bangPos + 1 );
1854 $calculatedHmac = MWCryptHash::hmac( $id, $secretKey, false );
1855 if ( $calculatedHmac === $storedHmac ) {
1856 return $id;
1857 } else {
1858 return null;
1859 }
1860 }
1861
1862 /**
1863 * Get the key and parameters for the corresponding error message.
1864 *
1865 * @since 1.22
1866 * @param IContextSource $context
1867 * @return array
1868 */
1869 public function getPermissionsError( IContextSource $context ) {
1870 $params = $this->getBlockErrorParams( $context );
1871
1872 $msg = 'blockedtext';
1873 if ( $this->getSystemBlockType() !== null ) {
1874 $msg = 'systemblockedtext';
1875 } elseif ( $this->mAuto ) {
1876 $msg = 'autoblockedtext';
1877 } elseif ( !$this->isSitewide() ) {
1878 $msg = 'blockedtext-partial';
1879 }
1880
1881 array_unshift( $params, $msg );
1882
1883 return $params;
1884 }
1885
1886 /**
1887 * Get block information used in different block error messages
1888 *
1889 * @since 1.33
1890 * @param IContextSource $context
1891 * @return array
1892 */
1893 public function getBlockErrorParams( IContextSource $context ) {
1894 $blocker = $this->getBlocker();
1895 if ( $blocker instanceof User ) { // local user
1896 $blockerUserpage = $blocker->getUserPage();
1897 $link = "[[{$blockerUserpage->getPrefixedText()}|{$blockerUserpage->getText()}]]";
1898 } else { // foreign user
1899 $link = $blocker;
1900 }
1901
1902 $reason = $this->getReason();
1903 if ( $reason == '' ) {
1904 $reason = $context->msg( 'blockednoreason' )->text();
1905 }
1906
1907 /* $ip returns who *is* being blocked, $intended contains who was meant to be blocked.
1908 * This could be a username, an IP range, or a single IP. */
1909 $intended = $this->getTarget();
1910 $systemBlockType = $this->getSystemBlockType();
1911 $lang = $context->getLanguage();
1912
1913 return [
1914 $link,
1915 $reason,
1916 $context->getRequest()->getIP(),
1917 $this->getByName(),
1918 $systemBlockType ?? $this->getId(),
1919 $lang->formatExpiry( $this->getExpiry() ),
1920 (string)$intended,
1921 $lang->userTimeAndDate( $this->getTimestamp(), $context->getUser() ),
1922 ];
1923 }
1924
1925 /**
1926 * Get Restrictions.
1927 *
1928 * Getting the restrictions will perform a database query if the restrictions
1929 * are not already loaded.
1930 *
1931 * @since 1.33
1932 * @return Restriction[]
1933 */
1934 public function getRestrictions() {
1935 if ( $this->restrictions === null ) {
1936 // If the block id has not been set, then do not attempt to load the
1937 // restrictions.
1938 if ( !$this->mId ) {
1939 return [];
1940 }
1941 $this->restrictions = BlockRestriction::loadByBlockId( $this->mId );
1942 }
1943
1944 return $this->restrictions;
1945 }
1946
1947 /**
1948 * Set Restrictions.
1949 *
1950 * @since 1.33
1951 * @param Restriction[] $restrictions
1952 * @return self
1953 */
1954 public function setRestrictions( array $restrictions ) {
1955 $this->restrictions = array_filter( $restrictions, function ( $restriction ) {
1956 return $restriction instanceof Restriction;
1957 } );
1958
1959 return $this;
1960 }
1961
1962 /**
1963 * Determine whether the block allows the user to edit their own
1964 * user talk page. This is done separately from Block::appliesToRight
1965 * because there is no right for editing one's own user talk page
1966 * and because the user's talk page needs to be passed into the
1967 * Block object, which is unaware of the user.
1968 *
1969 * The ipb_allow_usertalk flag (which corresponds to the property
1970 * allowUsertalk) is used on sitewide blocks and partial blocks
1971 * that contain a namespace restriction on the user talk namespace,
1972 * but do not contain a page restriction on the user's talk page.
1973 * For all other (i.e. most) partial blocks, the flag is ignored,
1974 * and the user can always edit their user talk page unless there
1975 * is a page restriction on their user talk page, in which case
1976 * they can never edit it. (Ideally the flag would be stored as
1977 * null in these cases, but the database field isn't nullable.)
1978 *
1979 * This method does not validate that the passed in talk page belongs to the
1980 * block target since the target (an IP) might not be the same as the user's
1981 * talk page (if they are logged in).
1982 *
1983 * @since 1.33
1984 * @param Title|null $usertalk The user's user talk page. If null,
1985 * and if the target is a User, the target's userpage is used
1986 * @return bool The user can edit their talk page
1987 */
1988 public function appliesToUsertalk( Title $usertalk = null ) {
1989 if ( !$usertalk ) {
1990 if ( $this->target instanceof User ) {
1991 $usertalk = $this->target->getTalkPage();
1992 } else {
1993 throw new InvalidArgumentException(
1994 '$usertalk must be provided if block target is not a user/IP'
1995 );
1996 }
1997 }
1998
1999 if ( $usertalk->getNamespace() !== NS_USER_TALK ) {
2000 throw new InvalidArgumentException(
2001 '$usertalk must be a user talk page'
2002 );
2003 }
2004
2005 if ( !$this->isSitewide() ) {
2006 if ( $this->appliesToPage( $usertalk->getArticleID() ) ) {
2007 return true;
2008 }
2009 if ( !$this->appliesToNamespace( NS_USER_TALK ) ) {
2010 return false;
2011 }
2012 }
2013
2014 // This is a type of block which uses the ipb_allow_usertalk
2015 // flag. The flag can still be overridden by global configs.
2016 $config = RequestContext::getMain()->getConfig();
2017 if ( !$config->get( 'BlockAllowsUTEdit' ) ) {
2018 return true;
2019 }
2020 return !$this->isUsertalkEditAllowed();
2021 }
2022
2023 /**
2024 * Checks if a block applies to a particular title
2025 *
2026 * This check does not consider whether `$this->isUsertalkEditAllowed`
2027 * returns false, as the identity of the user making the hypothetical edit
2028 * isn't known here (particularly in the case of IP hardblocks, range
2029 * blocks, and auto-blocks).
2030 *
2031 * @param Title $title
2032 * @return bool
2033 */
2034 public function appliesToTitle( Title $title ) {
2035 if ( $this->isSitewide() ) {
2036 return true;
2037 }
2038
2039 $restrictions = $this->getRestrictions();
2040 foreach ( $restrictions as $restriction ) {
2041 if ( $restriction->matches( $title ) ) {
2042 return true;
2043 }
2044 }
2045
2046 return false;
2047 }
2048
2049 /**
2050 * Checks if a block applies to a particular namespace
2051 *
2052 * @since 1.33
2053 *
2054 * @param int $ns
2055 * @return bool
2056 */
2057 public function appliesToNamespace( $ns ) {
2058 if ( $this->isSitewide() ) {
2059 return true;
2060 }
2061
2062 // Blocks do not apply to virtual namespaces.
2063 if ( $ns < 0 ) {
2064 return false;
2065 }
2066
2067 $restriction = $this->findRestriction( NamespaceRestriction::TYPE, $ns );
2068
2069 return (bool)$restriction;
2070 }
2071
2072 /**
2073 * Checks if a block applies to a particular page
2074 *
2075 * This check does not consider whether `$this->isUsertalkEditAllowed`
2076 * returns false, as the identity of the user making the hypothetical edit
2077 * isn't known here (particularly in the case of IP hardblocks, range
2078 * blocks, and auto-blocks).
2079 *
2080 * @since 1.33
2081 *
2082 * @param int $pageId
2083 * @return bool
2084 */
2085 public function appliesToPage( $pageId ) {
2086 if ( $this->isSitewide() ) {
2087 return true;
2088 }
2089
2090 // If the pageId is not over zero, the block cannot apply to it.
2091 if ( $pageId <= 0 ) {
2092 return false;
2093 }
2094
2095 $restriction = $this->findRestriction( PageRestriction::TYPE, $pageId );
2096
2097 return (bool)$restriction;
2098 }
2099
2100 /**
2101 * Find Restriction by type and value.
2102 *
2103 * @param string $type
2104 * @param int $value
2105 * @return Restriction|null
2106 */
2107 private function findRestriction( $type, $value ) {
2108 $restrictions = $this->getRestrictions();
2109 foreach ( $restrictions as $restriction ) {
2110 if ( $restriction->getType() !== $type ) {
2111 continue;
2112 }
2113
2114 if ( $restriction->getValue() === $value ) {
2115 return $restriction;
2116 }
2117 }
2118
2119 return null;
2120 }
2121 }