59 function check( $fix =
false, $xml =
'' ) {
62 print "Checking, will fix errors if possible...\n";
64 print "Checking...\n";
66 $maxRevId =
$dbr->selectField(
'revision',
'MAX(rev_id)',
false, __METHOD__ );
70 $knownFlags = [
'external',
'gzip',
'object',
'utf-8' ];
73 'restore revision' => [],
79 for ( $chunkStart = 1; $chunkStart < $maxRevId; $chunkStart += $chunkSize ) {
80 $chunkEnd = $chunkStart + $chunkSize - 1;
86 $res =
$dbr->select(
'revision', [
'rev_id',
'rev_text_id' ],
87 [
"rev_id BETWEEN $chunkStart AND $chunkEnd" ], __METHOD__ );
89 $this->oldIdMap[$row->rev_id] = $row->rev_text_id;
93 if ( !count( $this->oldIdMap ) ) {
98 $missingTextRows = array_flip( $this->oldIdMap );
101 $res =
$dbr->select(
'text', [
'old_id',
'old_flags' ],
102 'old_id IN (' . implode(
',', $this->oldIdMap ) .
')', __METHOD__ );
103 foreach (
$res as $row ) {
111 $flagStats = $flagStats + [
$flags => 0 ];
116 unset( $missingTextRows[$row->old_id] );
122 $flagArray = explode(
',',
$flags );
124 if ( in_array(
'external', $flagArray ) ) {
125 $externalRevs[] = $id;
126 } elseif ( in_array(
'object', $flagArray ) ) {
135 $this->
error(
'fixed',
"Warning: old_flags set to 0", $id );
138 $dbw->update(
'text', [
'old_flags' =>
'' ],
139 [
'old_id' => $id ], __METHOD__ );
142 $this->
error(
'fixable',
"Warning: old_flags set to 0", $id );
144 } elseif ( count( array_diff( $flagArray, $knownFlags ) ) ) {
145 $this->
error(
'unfixable',
"Error: invalid flags field \"$flags\"", $id );
151 foreach ( $missingTextRows
as $oldId =>
$revId ) {
152 $this->
error(
'restore revision',
"Error: missing text row", $oldId );
156 $externalConcatBlobs = [];
157 $externalNormalBlobs = [];
158 if ( count( $externalRevs ) ) {
159 $res =
$dbr->select(
'text', [
'old_id',
'old_flags',
'old_text' ],
160 [
'old_id IN (' . implode(
',', $externalRevs ) .
')' ], __METHOD__ );
161 foreach (
$res as $row ) {
162 $urlParts = explode(
'://', $row->old_text, 2 );
163 if ( count( $urlParts ) !== 2 || $urlParts[1] ==
'' ) {
164 $this->
error(
'restore text',
"Error: invalid URL \"{$row->old_text}\"", $row->old_id );
167 list( $proto, ) = $urlParts;
168 if ( $proto !=
'DB' ) {
169 $this->
error(
'restore text',
"Error: invalid external protocol \"$proto\"", $row->old_id );
172 $path = explode(
'/', $row->old_text );
175 if ( isset(
$path[4] ) ) {
176 $externalConcatBlobs[$cluster][$id][] = $row->old_id;
178 $externalNormalBlobs[$cluster][$id][] = $row->old_id;
188 if ( count( $externalNormalBlobs ) ) {
189 if ( is_null( $this->dbStore ) ) {
192 foreach ( $externalConcatBlobs
as $cluster => $xBlobIds ) {
193 $blobIds = array_keys( $xBlobIds );
194 $extDb =& $this->dbStore->getSlave( $cluster );
195 $blobsTable = $this->dbStore->getTable( $extDb );
196 $res = $extDb->select( $blobsTable,
198 [
'blob_id IN( ' . implode(
',', $blobIds ) .
')' ], __METHOD__ );
199 foreach (
$res as $row ) {
200 unset( $xBlobIds[$row->blob_id] );
202 $extDb->freeResult(
$res );
204 foreach ( $xBlobIds
as $blobId => $oldId ) {
205 $this->
error(
'restore text',
"Error: missing target $blobId for one-part ES URL", $oldId );
214 if ( count( $objectRevs ) ) {
218 [
'old_id',
'old_flags',
"LEFT(old_text, $headerLength) AS header" ],
219 [
'old_id IN (' . implode(
',', $objectRevs ) .
')' ],
222 foreach (
$res as $row ) {
223 $oldId = $row->old_id;
225 if ( !preg_match(
'/^O:(\d+):"(\w+)"/', $row->header,
$matches ) ) {
226 $this->
error(
'restore text',
"Error: invalid object header", $oldId );
230 $className = strtolower(
$matches[2] );
231 if ( strlen( $className ) !=
$matches[1] ) {
234 "Error: invalid object header, wrong class name length",
240 $objectStats = $objectStats + [ $className => 0 ];
241 $objectStats[$className]++;
243 switch ( $className ) {
244 case 'concatenatedgziphistoryblob':
247 case 'historyblobstub':
248 case 'historyblobcurstub':
249 if ( strlen( $row->header ) == $headerLength ) {
250 $this->
error(
'unfixable',
"Error: overlong stub header", $oldId );
254 if ( !is_object( $stubObj ) ) {
255 $this->
error(
'restore text',
"Error: unable to unserialize stub object", $oldId );
258 if ( $className ==
'historyblobstub' ) {
259 $concatBlobs[$stubObj->mOldId][] = $oldId;
261 $curIds[$stubObj->mCurId][] = $oldId;
265 $this->
error(
'unfixable',
"Error: unrecognised object class \"$className\"", $oldId );
272 $externalConcatBlobs = [];
273 if ( count( $concatBlobs ) ) {
277 [
'old_id',
'old_flags',
"LEFT(old_text, $headerLength) AS header" ],
278 [
'old_id IN (' . implode(
',', array_keys( $concatBlobs ) ) .
')' ],
281 foreach (
$res as $row ) {
282 $flags = explode(
',', $row->old_flags );
283 if ( in_array(
'external',
$flags ) ) {
285 if ( in_array(
'object',
$flags ) ) {
286 $urlParts = explode(
'/', $row->header );
287 if ( $urlParts[0] !=
'DB:' ) {
290 "Error: unrecognised external storage type \"{$urlParts[0]}",
294 $cluster = $urlParts[2];
296 if ( !isset( $externalConcatBlobs[$cluster][$id] ) ) {
297 $externalConcatBlobs[$cluster][$id] = [];
299 $externalConcatBlobs[$cluster][$id] = array_merge(
300 $externalConcatBlobs[$cluster][$id], $concatBlobs[$row->old_id]
306 "Error: invalid flags \"{$row->old_flags}\" on concat bulk row {$row->old_id}",
307 $concatBlobs[$row->old_id] );
309 } elseif ( strcasecmp(
310 substr( $row->header, 0, strlen( self::CONCAT_HEADER ) ),
315 "Error: Incorrect object header for concat bulk row {$row->old_id}",
316 $concatBlobs[$row->old_id]
320 unset( $concatBlobs[$row->old_id] );
330 print "\n\nErrors:\n";
333 $description = $this->errorDescriptions[
$name];
334 echo
"$description: " . implode(
',', array_keys(
$errors ) ) .
"\n";
338 if ( count( $this->
errors[
'restore text'] ) && $fix ) {
339 if ( (
string)$xml !==
'' ) {
342 echo
"Can't fix text, no XML backup specified\n";
346 print "\nFlag statistics:\n";
347 $total = array_sum( $flagStats );
348 foreach ( $flagStats
as $flag =>
$count ) {
349 printf(
"%-30s %10d %5.2f%%\n", $flag,
$count,
$count / $total * 100 );
351 print "\nLocal object statistics:\n";
352 $total = array_sum( $objectStats );
353 foreach ( $objectStats
as $className =>
$count ) {
354 printf(
"%-30s %10d %5.2f%%\n", $className,
$count,
$count / $total * 100 );
382 if ( !count( $externalConcatBlobs ) ) {
386 if ( is_null( $this->dbStore ) ) {
390 foreach ( $externalConcatBlobs
as $cluster => $oldIds ) {
391 $blobIds = array_keys( $oldIds );
392 $extDb =& $this->dbStore->getSlave( $cluster );
393 $blobsTable = $this->dbStore->getTable( $extDb );
394 $headerLength = strlen( self::CONCAT_HEADER );
395 $res = $extDb->select( $blobsTable,
396 [
'blob_id',
"LEFT(blob_text, $headerLength) AS header" ],
397 [
'blob_id IN( ' . implode(
',', $blobIds ) .
')' ], __METHOD__ );
398 foreach (
$res as $row ) {
399 if ( strcasecmp( $row->header, self::CONCAT_HEADER ) ) {
402 "Error: invalid header on target $cluster/{$row->blob_id} of two-part ES URL",
403 $oldIds[$row->blob_id]
406 unset( $oldIds[$row->blob_id] );
408 $extDb->freeResult(
$res );
411 foreach ( $oldIds
as $blobId => $oldIds2 ) {
414 "Error: missing target $cluster/$blobId for two-part ES URL",