MediaWiki REL1_33
cleanupInvalidDbKeys.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
34 protected static $tables = [
35 // Data tables
36 [ 'page', 'page' ],
37 [ 'redirect', 'rd', 'idField' => 'rd_from' ],
38 [ 'archive', 'ar' ],
39 [ 'logging', 'log' ],
40 [ 'protected_titles', 'pt', 'idField' => 0 ],
41 [ 'category', 'cat', 'nsField' => 14 ],
42 [ 'recentchanges', 'rc' ],
43 [ 'watchlist', 'wl' ],
44 // The querycache tables' qc(c)_title and qcc_titletwo may contain titles,
45 // but also usernames or other things like that, so we leave them alone
46
47 // Links tables
48 [ 'pagelinks', 'pl', 'idField' => 'pl_from' ],
49 [ 'templatelinks', 'tl', 'idField' => 'tl_from' ],
50 [ 'categorylinks', 'cl', 'idField' => 'cl_from', 'nsField' => 14, 'titleField' => 'cl_to' ],
51 ];
52
53 public function __construct() {
54 parent::__construct();
55 $this->addDescription( <<<'TEXT'
56This script cleans up the title fields in various tables to remove entries that
57will be rejected by the constructor of TitleValue. This constructor throws an
58exception when invalid data is encountered, which will not normally occur on
59regular page views, but can happen on query special pages.
60
61The script targets titles matching the regular expression /^_|[ \r\n\t]|_$/.
62Because any foreign key relationships involving these titles will already be
63broken, the titles are corrected to a valid version or the rows are deleted
64entirely, depending on the table.
65
66The script runs with the expectation that STDOUT is redirected to a file.
67TEXT
68 );
69 $this->addOption( 'fix', 'Actually clean up invalid titles. If this parameter is ' .
70 'not specified, the script will report invalid titles but not clean them up.',
71 false, false );
72 $this->addOption( 'table', 'The table(s) to process. This option can be specified ' .
73 'more than once (e.g. -t category -t watchlist). If not specified, all available ' .
74 'tables will be processed. Available tables are: ' .
75 implode( ', ', array_column( static::$tables, 0 ) ), false, true, 't', true );
76
77 $this->setBatchSize( 500 );
78 }
79
80 public function execute() {
81 $tablesToProcess = $this->getOption( 'table' );
82 foreach ( static::$tables as $tableParams ) {
83 if ( !$tablesToProcess || in_array( $tableParams[0], $tablesToProcess ) ) {
84 $this->cleanupTable( $tableParams );
85 }
86 }
87
88 $this->outputStatus( 'Done!' );
89 if ( $this->hasOption( 'fix' ) ) {
90 $this->outputStatus( ' Cleaned up invalid DB keys on ' . wfWikiID() . "!\n" );
91 }
92 }
93
101 protected function outputStatus( $str, $channel = null ) {
102 // Make it easier to find progress lines in the STDOUT log
103 if ( trim( $str ) ) {
104 fwrite( STDOUT, '*** ' . trim( $str ) . "\n" );
105 }
106 fwrite( STDERR, $str );
107 }
108
114 protected function writeToReport( $str ) {
115 fwrite( STDOUT, $str );
116 }
117
123 protected function cleanupTable( $tableParams ) {
124 list( $table, $prefix ) = $tableParams;
125 $idField = $tableParams['idField'] ?? "{$prefix}_id";
126 $nsField = $tableParams['nsField'] ?? "{$prefix}_namespace";
127 $titleField = $tableParams['titleField'] ?? "{$prefix}_title";
128
129 $this->outputStatus( "Looking for invalid $titleField entries in $table...\n" );
130
131 // Do all the select queries on the replicas, as they are slow (they use
132 // unanchored LIKEs). Naturally this could cause problems if rows are
133 // modified after selecting and before deleting/updating, but working on
134 // the hypothesis that invalid rows will be old and in all likelihood
135 // unreferenced, we should be fine to do it like this.
136 $dbr = $this->getDB( DB_REPLICA, 'vslow' );
137
138 // Find all TitleValue-invalid titles.
139 $percent = $dbr->anyString(); // DBMS-agnostic equivalent of '%' LIKE wildcard
140 $res = $dbr->select(
141 $table,
142 [
143 'id' => $idField,
144 'ns' => $nsField,
145 'title' => $titleField,
146 ],
147 // The REGEXP operator is not cross-DBMS, so we have to use lots of LIKEs
148 [ $dbr->makeList( [
149 $titleField . $dbr->buildLike( $percent, ' ', $percent ),
150 $titleField . $dbr->buildLike( $percent, "\r", $percent ),
151 $titleField . $dbr->buildLike( $percent, "\n", $percent ),
152 $titleField . $dbr->buildLike( $percent, "\t", $percent ),
153 $titleField . $dbr->buildLike( '_', $percent ),
154 $titleField . $dbr->buildLike( $percent, '_' ),
155 ], LIST_OR ) ],
156 __METHOD__,
157 [ 'LIMIT' => $this->getBatchSize() ]
158 );
159
160 $this->outputStatus( "Number of invalid rows: " . $res->numRows() . "\n" );
161 if ( !$res->numRows() ) {
162 $this->outputStatus( "\n" );
163 return;
164 }
165
166 // Write a table of titles to the report file. Also keep a list of the found
167 // IDs, as we might need it later for DB updates
168 $this->writeToReport( sprintf( "%10s | ns | dbkey\n", $idField ) );
169 $ids = [];
170 foreach ( $res as $row ) {
171 $this->writeToReport( sprintf( "%10d | %3d | %s\n", $row->id, $row->ns, $row->title ) );
172 $ids[] = $row->id;
173 }
174
175 // If we're doing a dry run, output the new titles we would use for the UPDATE
176 // queries (if relevant), and finish
177 if ( !$this->hasOption( 'fix' ) ) {
178 if ( $table === 'logging' || $table === 'archive' ) {
179 $this->writeToReport( "The following updates would be run with the --fix flag:\n" );
180 foreach ( $res as $row ) {
181 $newTitle = self::makeValidTitle( $row->title );
182 $this->writeToReport(
183 "$idField={$row->id}: update '{$row->title}' to '$newTitle'\n" );
184 }
185 }
186
187 if ( $table !== 'page' && $table !== 'redirect' ) {
188 $this->outputStatus( "Run with --fix to clean up these rows\n" );
189 }
190 $this->outputStatus( "\n" );
191 return;
192 }
193
194 // Fix the bad data, using different logic for the various tables
195 $dbw = $this->getDB( DB_MASTER );
196 switch ( $table ) {
197 case 'page':
198 case 'redirect':
199 // This shouldn't happen on production wikis, and we already have a script
200 // to handle 'page' rows anyway, so just notify the user and let them decide
201 // what to do next.
202 $this->outputStatus( <<<TEXT
203IMPORTANT: This script does not fix invalid entries in the $table table.
204Consider repairing these rows, and rows in related tables, by hand.
205You may like to run, or borrow logic from, the cleanupTitles.php script.
206
207TEXT
208 );
209 break;
210
211 case 'archive':
212 case 'logging':
213 // Rename the title to a corrected equivalent. Any foreign key relationships
214 // to the page_title field are already broken, so this will just make sure
215 // users can still access the log entries/deleted revisions from the interface
216 // using a valid page title.
217 $this->outputStatus(
218 "Updating these rows, setting $titleField to the closest valid DB key...\n" );
219 $affectedRowCount = 0;
220 foreach ( $res as $row ) {
221 $newTitle = self::makeValidTitle( $row->title );
222 $this->writeToReport(
223 "$idField={$row->id}: updating '{$row->title}' to '$newTitle'\n" );
224
225 $dbw->update( $table,
226 [ $titleField => $newTitle ],
227 [ $idField => $row->id ],
228 __METHOD__ );
229 $affectedRowCount += $dbw->affectedRows();
230 }
232 $this->outputStatus( "Updated $affectedRowCount rows on $table.\n" );
233
234 break;
235
236 case 'recentchanges':
237 case 'watchlist':
238 case 'category':
239 // Since these broken titles can't exist, there's really nothing to watch,
240 // nothing can be categorised in them, and they can't have been changed
241 // recently, so we can just remove these rows.
242 $this->outputStatus( "Deleting invalid $table rows...\n" );
243 $dbw->delete( $table, [ $idField => $ids ], __METHOD__ );
245 $this->outputStatus( 'Deleted ' . $dbw->affectedRows() . " rows from $table.\n" );
246 break;
247
248 case 'protected_titles':
249 // Since these broken titles can't exist, there's really nothing to protect,
250 // so we can just remove these rows. Made more complicated by this table
251 // not having an ID field
252 $this->outputStatus( "Deleting invalid $table rows...\n" );
253 $affectedRowCount = 0;
254 foreach ( $res as $row ) {
255 $dbw->delete( $table,
256 [ $nsField => $row->ns, $titleField => $row->title ],
257 __METHOD__ );
258 $affectedRowCount += $dbw->affectedRows();
259 }
261 $this->outputStatus( "Deleted $affectedRowCount rows from $table.\n" );
262 break;
263
264 case 'pagelinks':
265 case 'templatelinks':
266 case 'categorylinks':
267 // Update links tables for each page where these bogus links are supposedly
268 // located. If the invalid rows don't go away after these jobs go through,
269 // they're probably being added by a buggy hook.
270 $this->outputStatus( "Queueing link update jobs for the pages in $idField...\n" );
271 foreach ( $res as $row ) {
272 $wp = WikiPage::newFromID( $row->id );
273 if ( $wp ) {
275 } else {
276 // This link entry points to a nonexistent page, so just get rid of it
277 $dbw->delete( $table,
278 [ $idField => $row->id, $nsField => $row->ns, $titleField => $row->title ],
279 __METHOD__ );
280 }
281 }
283 $this->outputStatus( "Link update jobs have been added to the job queue.\n" );
284 break;
285 }
286
287 $this->outputStatus( "\n" );
288 }
289
296 protected static function makeValidTitle( $invalidTitle ) {
297 return strtr( trim( $invalidTitle, '_' ),
298 [ ' ' => '_', "\r" => '', "\n" => '', "\t" => '_' ] );
299 }
300}
301
302$maintClass = CleanupInvalidDbKeys::class;
303require_once RUN_MAINTENANCE_IF_MAIN;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special exception
Definition COPYING.txt:160
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these that in whole or in part contains or is derived from the Program or any part to be licensed as a whole at no charge to all third parties under the terms of this License c If the modified program normally reads commands interactively when run
Definition COPYING.txt:104
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special the source code distributed need not include anything that is normally and so on of the operating system on which the executable runs
Definition COPYING.txt:163
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Maintenance script that cleans up invalid titles in various tables.
static makeValidTitle( $invalidTitle)
Fix possible validation issues in the given title (DB key).
static array[] $tables
List of tables to clean up, and the field prefix for that table.
cleanupTable( $tableParams)
Identifies, and optionally cleans up, invalid titles.
outputStatus( $str, $channel=null)
Prints text to STDOUT, and STDERR if STDOUT was redirected to a file.
writeToReport( $str)
Prints text to STDOUT.
__construct()
Default constructor.
execute()
Do the actual work.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular option exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
setBatchSize( $s=0)
Set the batch size.
Represents a page (or page fragment) title within MediaWiki.
The ContentHandler facility adds support for arbitrary content types on wiki pages
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
Definition deferred.txt:16
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition hooks.txt:2163
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped broken
Definition hooks.txt:1999
return true to allow those checks to occur
Definition hooks.txt:1476
script(document.cookie)%253c/script%253e</pre ></div > !! end !! test XSS is escaped(inline) !!input< source lang
globals will be eliminated from MediaWiki entirely
Definition globals.txt:29
const LIST_OR
Definition Defines.php:55
require_once RUN_MAINTENANCE_IF_MAIN
Prior to version
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
In both all secondary updates will be triggered handle like object that caches derived data representing a and can trigger updates of cached copies of that e g in the links tables
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
title