Fix use of GenderCache in ApiPageSet::processTitlesArray
[lhc/web/wiklou.git] / includes / libs / rdbms / database / DatabaseMysqlBase.php
1 <?php
2 /**
3 * This is the MySQL database abstraction layer.
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 * @ingroup Database
22 */
23 namespace Wikimedia\Rdbms;
24
25 use DateTime;
26 use DateTimeZone;
27 use Wikimedia\AtEase\AtEase;
28 use InvalidArgumentException;
29 use Exception;
30 use RuntimeException;
31 use stdClass;
32
33 /**
34 * Database abstraction object for MySQL.
35 * Defines methods independent on used MySQL extension.
36 *
37 * @ingroup Database
38 * @since 1.22
39 * @see Database
40 */
41 abstract class DatabaseMysqlBase extends Database {
42 /** @var MysqlMasterPos */
43 protected $lastKnownReplicaPos;
44 /** @var string Method to detect replica DB lag */
45 protected $lagDetectionMethod;
46 /** @var array Method to detect replica DB lag */
47 protected $lagDetectionOptions = [];
48 /** @var bool bool Whether to use GTID methods */
49 protected $useGTIDs = false;
50 /** @var string|null */
51 protected $sslKeyPath;
52 /** @var string|null */
53 protected $sslCertPath;
54 /** @var string|null */
55 protected $sslCAFile;
56 /** @var string|null */
57 protected $sslCAPath;
58 /** @var string[]|null */
59 protected $sslCiphers;
60 /** @var string sql_mode value to send on connection */
61 protected $sqlMode;
62 /** @var bool Use experimental UTF-8 transmission encoding */
63 protected $utf8Mode;
64 /** @var bool|null */
65 protected $defaultBigSelects = null;
66
67 /** @var string|null */
68 private $serverVersion = null;
69 /** @var bool|null */
70 private $insertSelectIsSafe = null;
71 /** @var stdClass|null */
72 private $replicationInfoRow = null;
73
74 // Cache getServerId() for 24 hours
75 const SERVER_ID_CACHE_TTL = 86400;
76
77 /** @var float Warn if lag estimates are made for transactions older than this many seconds */
78 const LAG_STALE_WARN_THRESHOLD = 0.100;
79
80 /**
81 * Additional $params include:
82 * - lagDetectionMethod : set to one of (Seconds_Behind_Master,pt-heartbeat).
83 * pt-heartbeat assumes the table is at heartbeat.heartbeat
84 * and uses UTC timestamps in the heartbeat.ts column.
85 * (https://www.percona.com/doc/percona-toolkit/2.2/pt-heartbeat.html)
86 * - lagDetectionOptions : if using pt-heartbeat, this can be set to an array map to change
87 * the default behavior. Normally, the heartbeat row with the server
88 * ID of this server's master will be used. Set the "conds" field to
89 * override the query conditions, e.g. ['shard' => 's1'].
90 * - useGTIDs : use GTID methods like MASTER_GTID_WAIT() when possible.
91 * - insertSelectIsSafe : force that native INSERT SELECT is or is not safe [default: null]
92 * - sslKeyPath : path to key file [default: null]
93 * - sslCertPath : path to certificate file [default: null]
94 * - sslCAFile: path to a single certificate authority PEM file [default: null]
95 * - sslCAPath : parth to certificate authority PEM directory [default: null]
96 * - sslCiphers : array list of allowable ciphers [default: null]
97 * @param array $params
98 */
99 public function __construct( array $params ) {
100 $this->lagDetectionMethod = $params['lagDetectionMethod'] ?? 'Seconds_Behind_Master';
101 $this->lagDetectionOptions = $params['lagDetectionOptions'] ?? [];
102 $this->useGTIDs = !empty( $params['useGTIDs' ] );
103 foreach ( [ 'KeyPath', 'CertPath', 'CAFile', 'CAPath', 'Ciphers' ] as $name ) {
104 $var = "ssl{$name}";
105 if ( isset( $params[$var] ) ) {
106 $this->$var = $params[$var];
107 }
108 }
109 $this->sqlMode = $params['sqlMode'] ?? null;
110 $this->utf8Mode = !empty( $params['utf8Mode'] );
111 $this->insertSelectIsSafe = isset( $params['insertSelectIsSafe'] )
112 ? (bool)$params['insertSelectIsSafe'] : null;
113
114 parent::__construct( $params );
115 }
116
117 /**
118 * @return string
119 */
120 public function getType() {
121 return 'mysql';
122 }
123
124 protected function open( $server, $user, $password, $dbName, $schema, $tablePrefix ) {
125 $this->close();
126
127 if ( $schema !== null ) {
128 throw $this->newExceptionAfterConnectError( "Got schema '$schema'; not supported." );
129 }
130
131 $this->server = $server;
132 $this->user = $user;
133 $this->password = $password;
134
135 $this->installErrorHandler();
136 try {
137 $this->conn = $this->mysqlConnect( $this->server, $dbName );
138 } catch ( Exception $e ) {
139 $this->restoreErrorHandler();
140 throw $this->newExceptionAfterConnectError( $e->getMessage() );
141 }
142 $error = $this->restoreErrorHandler();
143
144 if ( !$this->conn ) {
145 throw $this->newExceptionAfterConnectError( $error ?: $this->lastError() );
146 }
147
148 try {
149 $this->currentDomain = new DatabaseDomain(
150 strlen( $dbName ) ? $dbName : null,
151 null,
152 $tablePrefix
153 );
154 // Abstract over any insane MySQL defaults
155 $set = [ 'group_concat_max_len = 262144' ];
156 // Set SQL mode, default is turning them all off, can be overridden or skipped with null
157 if ( is_string( $this->sqlMode ) ) {
158 $set[] = 'sql_mode = ' . $this->addQuotes( $this->sqlMode );
159 }
160 // Set any custom settings defined by site config
161 // (e.g. https://dev.mysql.com/doc/refman/4.1/en/innodb-parameters.html)
162 foreach ( $this->connectionVariables as $var => $val ) {
163 // Escape strings but not numbers to avoid MySQL complaining
164 if ( !is_int( $val ) && !is_float( $val ) ) {
165 $val = $this->addQuotes( $val );
166 }
167 $set[] = $this->addIdentifierQuotes( $var ) . ' = ' . $val;
168 }
169
170 if ( $set ) {
171 $this->query(
172 'SET ' . implode( ', ', $set ),
173 __METHOD__,
174 self::QUERY_IGNORE_DBO_TRX | self::QUERY_NO_RETRY
175 );
176 }
177 } catch ( Exception $e ) {
178 throw $this->newExceptionAfterConnectError( $e->getMessage() );
179 }
180 }
181
182 protected function doSelectDomain( DatabaseDomain $domain ) {
183 if ( $domain->getSchema() !== null ) {
184 throw new DBExpectedError(
185 $this,
186 __CLASS__ . ": domain '{$domain->getId()}' has a schema component"
187 );
188 }
189
190 $database = $domain->getDatabase();
191 // A null database means "don't care" so leave it as is and update the table prefix
192 if ( $database === null ) {
193 $this->currentDomain = new DatabaseDomain(
194 $this->currentDomain->getDatabase(),
195 null,
196 $domain->getTablePrefix()
197 );
198
199 return true;
200 }
201
202 if ( $database !== $this->getDBname() ) {
203 $sql = 'USE ' . $this->addIdentifierQuotes( $database );
204 list( $res, $err, $errno ) =
205 $this->executeQuery( $sql, __METHOD__, self::QUERY_IGNORE_DBO_TRX );
206
207 if ( $res === false ) {
208 $this->reportQueryError( $err, $errno, $sql, __METHOD__ );
209 return false; // unreachable
210 }
211 }
212
213 // Update that domain fields on success (no exception thrown)
214 $this->currentDomain = $domain;
215
216 return true;
217 }
218
219 /**
220 * Open a connection to a MySQL server
221 *
222 * @param string $realServer
223 * @param string|null $dbName
224 * @return mixed|null Driver connection handle
225 * @throws DBConnectionError
226 */
227 abstract protected function mysqlConnect( $realServer, $dbName );
228
229 /**
230 * @param IResultWrapper|resource $res
231 * @throws DBUnexpectedError
232 */
233 public function freeResult( $res ) {
234 AtEase::suppressWarnings();
235 $ok = $this->mysqlFreeResult( ResultWrapper::unwrap( $res ) );
236 AtEase::restoreWarnings();
237 if ( !$ok ) {
238 throw new DBUnexpectedError( $this, "Unable to free MySQL result" );
239 }
240 }
241
242 /**
243 * Free result memory
244 *
245 * @param resource $res Raw result
246 * @return bool
247 */
248 abstract protected function mysqlFreeResult( $res );
249
250 /**
251 * @param IResultWrapper|resource $res
252 * @return stdClass|bool
253 * @throws DBUnexpectedError
254 */
255 public function fetchObject( $res ) {
256 AtEase::suppressWarnings();
257 $row = $this->mysqlFetchObject( ResultWrapper::unwrap( $res ) );
258 AtEase::restoreWarnings();
259
260 $errno = $this->lastErrno();
261 // Unfortunately, mysql_fetch_object does not reset the last errno.
262 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
263 // these are the only errors mysql_fetch_object can cause.
264 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
265 if ( $errno == 2000 || $errno == 2013 ) {
266 throw new DBUnexpectedError(
267 $this,
268 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() )
269 );
270 }
271
272 return $row;
273 }
274
275 /**
276 * Fetch a result row as an object
277 *
278 * @param resource $res Raw result
279 * @return stdClass
280 */
281 abstract protected function mysqlFetchObject( $res );
282
283 /**
284 * @param IResultWrapper|resource $res
285 * @return array|bool
286 * @throws DBUnexpectedError
287 */
288 public function fetchRow( $res ) {
289 AtEase::suppressWarnings();
290 $row = $this->mysqlFetchArray( ResultWrapper::unwrap( $res ) );
291 AtEase::restoreWarnings();
292
293 $errno = $this->lastErrno();
294 // Unfortunately, mysql_fetch_array does not reset the last errno.
295 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
296 // these are the only errors mysql_fetch_array can cause.
297 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
298 if ( $errno == 2000 || $errno == 2013 ) {
299 throw new DBUnexpectedError(
300 $this,
301 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() )
302 );
303 }
304
305 return $row;
306 }
307
308 /**
309 * Fetch a result row as an associative and numeric array
310 *
311 * @param resource $res Raw result
312 * @return array|false
313 */
314 abstract protected function mysqlFetchArray( $res );
315
316 /**
317 * @throws DBUnexpectedError
318 * @param IResultWrapper|resource $res
319 * @return int
320 */
321 function numRows( $res ) {
322 if ( is_bool( $res ) ) {
323 $n = 0;
324 } else {
325 AtEase::suppressWarnings();
326 $n = $this->mysqlNumRows( ResultWrapper::unwrap( $res ) );
327 AtEase::restoreWarnings();
328 }
329
330 // Unfortunately, mysql_num_rows does not reset the last errno.
331 // We are not checking for any errors here, since
332 // there are no errors mysql_num_rows can cause.
333 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
334 // See https://phabricator.wikimedia.org/T44430
335 return $n;
336 }
337
338 /**
339 * Get number of rows in result
340 *
341 * @param resource $res Raw result
342 * @return int
343 */
344 abstract protected function mysqlNumRows( $res );
345
346 /**
347 * @param IResultWrapper|resource $res
348 * @return int
349 */
350 public function numFields( $res ) {
351 return $this->mysqlNumFields( ResultWrapper::unwrap( $res ) );
352 }
353
354 /**
355 * Get number of fields in result
356 *
357 * @param resource $res Raw result
358 * @return int
359 */
360 abstract protected function mysqlNumFields( $res );
361
362 /**
363 * @param IResultWrapper|resource $res
364 * @param int $n
365 * @return string
366 */
367 public function fieldName( $res, $n ) {
368 return $this->mysqlFieldName( ResultWrapper::unwrap( $res ), $n );
369 }
370
371 /**
372 * Get the name of the specified field in a result
373 *
374 * @param IResultWrapper|resource $res
375 * @param int $n
376 * @return string
377 */
378 abstract protected function mysqlFieldName( $res, $n );
379
380 /**
381 * mysql_field_type() wrapper
382 * @param IResultWrapper|resource $res
383 * @param int $n
384 * @return string
385 */
386 public function fieldType( $res, $n ) {
387 return $this->mysqlFieldType( ResultWrapper::unwrap( $res ), $n );
388 }
389
390 /**
391 * Get the type of the specified field in a result
392 *
393 * @param IResultWrapper|resource $res
394 * @param int $n
395 * @return string
396 */
397 abstract protected function mysqlFieldType( $res, $n );
398
399 /**
400 * @param IResultWrapper|resource $res
401 * @param int $row
402 * @return bool
403 */
404 public function dataSeek( $res, $row ) {
405 return $this->mysqlDataSeek( ResultWrapper::unwrap( $res ), $row );
406 }
407
408 /**
409 * Move internal result pointer
410 *
411 * @param IResultWrapper|resource $res
412 * @param int $row
413 * @return bool
414 */
415 abstract protected function mysqlDataSeek( $res, $row );
416
417 /**
418 * @return string
419 */
420 public function lastError() {
421 if ( $this->conn ) {
422 # Even if it's non-zero, it can still be invalid
423 AtEase::suppressWarnings();
424 $error = $this->mysqlError( $this->conn );
425 if ( !$error ) {
426 $error = $this->mysqlError();
427 }
428 AtEase::restoreWarnings();
429 } else {
430 $error = $this->mysqlError();
431 }
432 if ( $error ) {
433 $error .= ' (' . $this->server . ')';
434 }
435
436 return $error;
437 }
438
439 /**
440 * Returns the text of the error message from previous MySQL operation
441 *
442 * @param resource|null $conn Raw connection
443 * @return string
444 */
445 abstract protected function mysqlError( $conn = null );
446
447 protected function wasQueryTimeout( $error, $errno ) {
448 // https://dev.mysql.com/doc/refman/8.0/en/client-error-reference.html
449 // https://phabricator.wikimedia.org/T170638
450 return in_array( $errno, [ 2062, 3024 ] );
451 }
452
453 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
454 $this->nativeReplace( $table, $rows, $fname );
455 }
456
457 protected function isInsertSelectSafe( array $insertOptions, array $selectOptions ) {
458 $row = $this->getReplicationSafetyInfo();
459 // For row-based-replication, the resulting changes will be relayed, not the query
460 if ( $row->binlog_format === 'ROW' ) {
461 return true;
462 }
463 // LIMIT requires ORDER BY on a unique key or it is non-deterministic
464 if ( isset( $selectOptions['LIMIT'] ) ) {
465 return false;
466 }
467 // In MySQL, an INSERT SELECT is only replication safe with row-based
468 // replication or if innodb_autoinc_lock_mode is 0. When those
469 // conditions aren't met, use non-native mode.
470 // While we could try to determine if the insert is safe anyway by
471 // checking if the target table has an auto-increment column that
472 // isn't set in $varMap, that seems unlikely to be worth the extra
473 // complexity.
474 return (
475 in_array( 'NO_AUTO_COLUMNS', $insertOptions ) ||
476 (int)$row->innodb_autoinc_lock_mode === 0
477 );
478 }
479
480 /**
481 * @return stdClass Process cached row
482 */
483 protected function getReplicationSafetyInfo() {
484 if ( $this->replicationInfoRow === null ) {
485 $this->replicationInfoRow = $this->selectRow(
486 false,
487 [
488 'innodb_autoinc_lock_mode' => '@@innodb_autoinc_lock_mode',
489 'binlog_format' => '@@binlog_format',
490 ],
491 [],
492 __METHOD__
493 );
494 }
495
496 return $this->replicationInfoRow;
497 }
498
499 /**
500 * Estimate rows in dataset
501 * Returns estimated count, based on EXPLAIN output
502 * Takes same arguments as Database::select()
503 *
504 * @param string|array $table
505 * @param string|array $var
506 * @param string|array $conds
507 * @param string $fname
508 * @param string|array $options
509 * @param array $join_conds
510 * @return bool|int
511 */
512 public function estimateRowCount( $table, $var = '*', $conds = '',
513 $fname = __METHOD__, $options = [], $join_conds = []
514 ) {
515 $conds = $this->normalizeConditions( $conds, $fname );
516 $column = $this->extractSingleFieldFromList( $var );
517 if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
518 $conds[] = "$column IS NOT NULL";
519 }
520
521 $options['EXPLAIN'] = true;
522 $res = $this->select( $table, $var, $conds, $fname, $options, $join_conds );
523 if ( $res === false ) {
524 return false;
525 }
526 if ( !$this->numRows( $res ) ) {
527 return 0;
528 }
529
530 $rows = 1;
531 foreach ( $res as $plan ) {
532 $rows *= $plan->rows > 0 ? $plan->rows : 1; // avoid resetting to zero
533 }
534
535 return (int)$rows;
536 }
537
538 public function tableExists( $table, $fname = __METHOD__ ) {
539 // Split database and table into proper variables as Database::tableName() returns
540 // shared tables prefixed with their database, which do not work in SHOW TABLES statements
541 list( $database, , $prefix, $table ) = $this->qualifiedTableComponents( $table );
542 $tableName = "{$prefix}{$table}";
543
544 if ( isset( $this->sessionTempTables[$tableName] ) ) {
545 return true; // already known to exist and won't show in SHOW TABLES anyway
546 }
547
548 // We can't use buildLike() here, because it specifies an escape character
549 // other than the backslash, which is the only one supported by SHOW TABLES
550 $encLike = $this->escapeLikeInternal( $tableName, '\\' );
551
552 // If the database has been specified (such as for shared tables), use "FROM"
553 if ( $database !== '' ) {
554 $encDatabase = $this->addIdentifierQuotes( $database );
555 $query = "SHOW TABLES FROM $encDatabase LIKE '$encLike'";
556 } else {
557 $query = "SHOW TABLES LIKE '$encLike'";
558 }
559
560 return $this->query( $query, $fname )->numRows() > 0;
561 }
562
563 /**
564 * @param string $table
565 * @param string $field
566 * @return bool|MySQLField
567 */
568 public function fieldInfo( $table, $field ) {
569 $table = $this->tableName( $table );
570 $flags = self::QUERY_SILENCE_ERRORS;
571 $res = $this->query( "SELECT * FROM $table LIMIT 1", __METHOD__, $flags );
572 if ( !$res ) {
573 return false;
574 }
575 $n = $this->mysqlNumFields( ResultWrapper::unwrap( $res ) );
576 for ( $i = 0; $i < $n; $i++ ) {
577 $meta = $this->mysqlFetchField( ResultWrapper::unwrap( $res ), $i );
578 if ( $field == $meta->name ) {
579 return new MySQLField( $meta );
580 }
581 }
582
583 return false;
584 }
585
586 /**
587 * Get column information from a result
588 *
589 * @param resource $res Raw result
590 * @param int $n
591 * @return stdClass
592 */
593 abstract protected function mysqlFetchField( $res, $n );
594
595 /**
596 * Get information about an index into an object
597 * Returns false if the index does not exist
598 *
599 * @param string $table
600 * @param string $index
601 * @param string $fname
602 * @return bool|array|null False or null on failure
603 */
604 public function indexInfo( $table, $index, $fname = __METHOD__ ) {
605 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
606 # SHOW INDEX should work for 3.x and up:
607 # https://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
608 $table = $this->tableName( $table );
609 $index = $this->indexName( $index );
610
611 $sql = 'SHOW INDEX FROM ' . $table;
612 $res = $this->query( $sql, $fname );
613
614 if ( !$res ) {
615 return null;
616 }
617
618 $result = [];
619
620 foreach ( $res as $row ) {
621 if ( $row->Key_name == $index ) {
622 $result[] = $row;
623 }
624 }
625
626 return $result ?: false;
627 }
628
629 /**
630 * @param string $s
631 * @return string
632 */
633 public function strencode( $s ) {
634 return $this->mysqlRealEscapeString( $s );
635 }
636
637 /**
638 * @param string $s
639 * @return mixed
640 */
641 abstract protected function mysqlRealEscapeString( $s );
642
643 public function addQuotes( $s ) {
644 if ( is_bool( $s ) ) {
645 // Parent would transform to int, which does not play nice with MySQL type juggling.
646 // When searching for an int in a string column, the strings are cast to int, which
647 // means false would match any string not starting with a number.
648 $s = (string)(int)$s;
649 }
650 return parent::addQuotes( $s );
651 }
652
653 /**
654 * MySQL uses `backticks` for identifier quoting instead of the sql standard "double quotes".
655 *
656 * @param string $s
657 * @return string
658 */
659 public function addIdentifierQuotes( $s ) {
660 // Characters in the range \u0001-\uFFFF are valid in a quoted identifier
661 // Remove NUL bytes and escape backticks by doubling
662 return '`' . str_replace( [ "\0", '`' ], [ '', '``' ], $s ) . '`';
663 }
664
665 /**
666 * @param string $name
667 * @return bool
668 */
669 public function isQuotedIdentifier( $name ) {
670 return strlen( $name ) && $name[0] == '`' && substr( $name, -1, 1 ) == '`';
671 }
672
673 protected function doGetLag() {
674 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
675 return $this->getLagFromPtHeartbeat();
676 } else {
677 return $this->getLagFromSlaveStatus();
678 }
679 }
680
681 /**
682 * @return string
683 */
684 protected function getLagDetectionMethod() {
685 return $this->lagDetectionMethod;
686 }
687
688 /**
689 * @return bool|int
690 */
691 protected function getLagFromSlaveStatus() {
692 $flags = self::QUERY_SILENCE_ERRORS | self::QUERY_IGNORE_DBO_TRX;
693 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__, $flags );
694 $row = $res ? $res->fetchObject() : false;
695 // If the server is not replicating, there will be no row
696 if ( $row && strval( $row->Seconds_Behind_Master ) !== '' ) {
697 return intval( $row->Seconds_Behind_Master );
698 }
699
700 return false;
701 }
702
703 /**
704 * @return bool|float
705 */
706 protected function getLagFromPtHeartbeat() {
707 $options = $this->lagDetectionOptions;
708
709 $currentTrxInfo = $this->getRecordedTransactionLagStatus();
710 if ( $currentTrxInfo ) {
711 // There is an active transaction and the initial lag was already queried
712 $staleness = microtime( true ) - $currentTrxInfo['since'];
713 if ( $staleness > self::LAG_STALE_WARN_THRESHOLD ) {
714 // Avoid returning higher and higher lag value due to snapshot age
715 // given that the isolation level will typically be REPEATABLE-READ
716 $this->queryLogger->warning(
717 "Using cached lag value for {db_server} due to active transaction",
718 $this->getLogContext( [
719 'method' => __METHOD__,
720 'age' => $staleness,
721 'trace' => ( new RuntimeException() )->getTraceAsString()
722 ] )
723 );
724 }
725
726 return $currentTrxInfo['lag'];
727 }
728
729 if ( isset( $options['conds'] ) ) {
730 // Best method for multi-DC setups: use logical channel names
731 $data = $this->getHeartbeatData( $options['conds'] );
732 } else {
733 // Standard method: use master server ID (works with stock pt-heartbeat)
734 $masterInfo = $this->getMasterServerInfo();
735 if ( !$masterInfo ) {
736 $this->queryLogger->error(
737 "Unable to query master of {db_server} for server ID",
738 $this->getLogContext( [
739 'method' => __METHOD__
740 ] )
741 );
742
743 return false; // could not get master server ID
744 }
745
746 $conds = [ 'server_id' => intval( $masterInfo['serverId'] ) ];
747 $data = $this->getHeartbeatData( $conds );
748 }
749
750 list( $time, $nowUnix ) = $data;
751 if ( $time !== null ) {
752 // @time is in ISO format like "2015-09-25T16:48:10.000510"
753 $dateTime = new DateTime( $time, new DateTimeZone( 'UTC' ) );
754 $timeUnix = (int)$dateTime->format( 'U' ) + $dateTime->format( 'u' ) / 1e6;
755
756 return max( $nowUnix - $timeUnix, 0.0 );
757 }
758
759 $this->queryLogger->error(
760 "Unable to find pt-heartbeat row for {db_server}",
761 $this->getLogContext( [
762 'method' => __METHOD__
763 ] )
764 );
765
766 return false;
767 }
768
769 protected function getMasterServerInfo() {
770 $cache = $this->srvCache;
771 $key = $cache->makeGlobalKey(
772 'mysql',
773 'master-info',
774 // Using one key for all cluster replica DBs is preferable
775 $this->getLBInfo( 'clusterMasterHost' ) ?: $this->getServer()
776 );
777 $fname = __METHOD__;
778
779 return $cache->getWithSetCallback(
780 $key,
781 $cache::TTL_INDEFINITE,
782 function () use ( $cache, $key, $fname ) {
783 // Get and leave a lock key in place for a short period
784 if ( !$cache->lock( $key, 0, 10 ) ) {
785 return false; // avoid master connection spike slams
786 }
787
788 $conn = $this->getLazyMasterHandle();
789 if ( !$conn ) {
790 return false; // something is misconfigured
791 }
792
793 // Connect to and query the master; catch errors to avoid outages
794 try {
795 $flags = self::QUERY_SILENCE_ERRORS | self::QUERY_IGNORE_DBO_TRX;
796 $res = $conn->query( 'SELECT @@server_id AS id', $fname, $flags );
797 $row = $res ? $res->fetchObject() : false;
798 $id = $row ? (int)$row->id : 0;
799 } catch ( DBError $e ) {
800 $id = 0;
801 }
802
803 // Cache the ID if it was retrieved
804 return $id ? [ 'serverId' => $id, 'asOf' => time() ] : false;
805 }
806 );
807 }
808
809 /**
810 * @param array $conds WHERE clause conditions to find a row
811 * @return array (heartbeat `ts` column value or null, UNIX timestamp) for the newest beat
812 * @see https://www.percona.com/doc/percona-toolkit/2.1/pt-heartbeat.html
813 */
814 protected function getHeartbeatData( array $conds ) {
815 // Query time and trip time are not counted
816 $nowUnix = microtime( true );
817 $whereSQL = $this->makeList( $conds, self::LIST_AND );
818 // Use ORDER BY for channel based queries since that field might not be UNIQUE.
819 // Note: this would use "TIMESTAMPDIFF(MICROSECOND,ts,UTC_TIMESTAMP(6))" but the
820 // percision field is not supported in MySQL <= 5.5.
821 $res = $this->query(
822 "SELECT ts FROM heartbeat.heartbeat WHERE $whereSQL ORDER BY ts DESC LIMIT 1",
823 __METHOD__,
824 self::QUERY_SILENCE_ERRORS | self::QUERY_IGNORE_DBO_TRX
825 );
826 $row = $res ? $res->fetchObject() : false;
827
828 return [ $row ? $row->ts : null, $nowUnix ];
829 }
830
831 protected function getApproximateLagStatus() {
832 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
833 // Disable caching since this is fast enough and we don't wan't
834 // to be *too* pessimistic by having both the cache TTL and the
835 // pt-heartbeat interval count as lag in getSessionLagStatus()
836 return parent::getApproximateLagStatus();
837 }
838
839 $key = $this->srvCache->makeGlobalKey( 'mysql-lag', $this->getServer() );
840 $approxLag = $this->srvCache->get( $key );
841 if ( !$approxLag ) {
842 $approxLag = parent::getApproximateLagStatus();
843 $this->srvCache->set( $key, $approxLag, 1 );
844 }
845
846 return $approxLag;
847 }
848
849 public function masterPosWait( DBMasterPos $pos, $timeout ) {
850 if ( !( $pos instanceof MySQLMasterPos ) ) {
851 throw new InvalidArgumentException( "Position not an instance of MySQLMasterPos" );
852 }
853
854 if ( $this->getLBInfo( 'is static' ) === true ) {
855 return 0; // this is a copy of a read-only dataset with no master DB
856 } elseif ( $this->lastKnownReplicaPos && $this->lastKnownReplicaPos->hasReached( $pos ) ) {
857 return 0; // already reached this point for sure
858 }
859
860 // Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
861 if ( $pos->getGTIDs() ) {
862 // Ignore GTIDs from domains exclusive to the master DB (presumably inactive)
863 $rpos = $this->getReplicaPos();
864 $gtidsWait = $rpos ? MySQLMasterPos::getCommonDomainGTIDs( $pos, $rpos ) : [];
865 if ( !$gtidsWait ) {
866 $this->queryLogger->error(
867 "No GTIDs with the same domain between master ($pos) and replica ($rpos)",
868 $this->getLogContext( [
869 'method' => __METHOD__,
870 ] )
871 );
872
873 return -1; // $pos is from the wrong cluster?
874 }
875 // Wait on the GTID set (MariaDB only)
876 $gtidArg = $this->addQuotes( implode( ',', $gtidsWait ) );
877 if ( strpos( $gtidArg, ':' ) !== false ) {
878 // MySQL GTIDs, e.g "source_id:transaction_id"
879 $sql = "SELECT WAIT_FOR_EXECUTED_GTID_SET($gtidArg, $timeout)";
880 } else {
881 // MariaDB GTIDs, e.g."domain:server:sequence"
882 $sql = "SELECT MASTER_GTID_WAIT($gtidArg, $timeout)";
883 }
884 } else {
885 // Wait on the binlog coordinates
886 $encFile = $this->addQuotes( $pos->getLogFile() );
887 $encPos = intval( $pos->getLogPosition()[$pos::CORD_EVENT] );
888 $sql = "SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)";
889 }
890
891 list( $res, $err ) = $this->executeQuery( $sql, __METHOD__, self::QUERY_IGNORE_DBO_TRX );
892 $row = $res ? $this->fetchRow( $res ) : false;
893 if ( !$row ) {
894 throw new DBExpectedError( $this, "Replication wait failed: {$err}" );
895 }
896
897 // Result can be NULL (error), -1 (timeout), or 0+ per the MySQL manual
898 $status = ( $row[0] !== null ) ? intval( $row[0] ) : null;
899 if ( $status === null ) {
900 if ( !$pos->getGTIDs() ) {
901 // T126436: jobs programmed to wait on master positions might be referencing
902 // binlogs with an old master hostname; this makes MASTER_POS_WAIT() return null.
903 // Try to detect this case and treat the replica DB as having reached the given
904 // position (any master switchover already requires that the new master be caught
905 // up before the switch).
906 $replicationPos = $this->getReplicaPos();
907 if ( $replicationPos && !$replicationPos->channelsMatch( $pos ) ) {
908 $this->lastKnownReplicaPos = $replicationPos;
909 $status = 0;
910 }
911 }
912 } elseif ( $status >= 0 ) {
913 // Remember that this position was reached to save queries next time
914 $this->lastKnownReplicaPos = $pos;
915 }
916
917 return $status;
918 }
919
920 /**
921 * Get the position of the master from SHOW SLAVE STATUS
922 *
923 * @return MySQLMasterPos|bool
924 */
925 public function getReplicaPos() {
926 $now = microtime( true ); // as-of-time *before* fetching GTID variables
927
928 if ( $this->useGTIDs() ) {
929 // Try to use GTIDs, fallbacking to binlog positions if not possible
930 $data = $this->getServerGTIDs( __METHOD__ );
931 // Use gtid_slave_pos for MariaDB and gtid_executed for MySQL
932 foreach ( [ 'gtid_slave_pos', 'gtid_executed' ] as $name ) {
933 if ( isset( $data[$name] ) && strlen( $data[$name] ) ) {
934 return new MySQLMasterPos( $data[$name], $now );
935 }
936 }
937 }
938
939 $data = $this->getServerRoleStatus( 'SLAVE', __METHOD__ );
940 if ( $data && strlen( $data['Relay_Master_Log_File'] ) ) {
941 return new MySQLMasterPos(
942 "{$data['Relay_Master_Log_File']}/{$data['Exec_Master_Log_Pos']}",
943 $now
944 );
945 }
946
947 return false;
948 }
949
950 /**
951 * Get the position of the master from SHOW MASTER STATUS
952 *
953 * @return MySQLMasterPos|bool
954 */
955 public function getMasterPos() {
956 $now = microtime( true ); // as-of-time *before* fetching GTID variables
957
958 $pos = false;
959 if ( $this->useGTIDs() ) {
960 // Try to use GTIDs, fallbacking to binlog positions if not possible
961 $data = $this->getServerGTIDs( __METHOD__ );
962 // Use gtid_binlog_pos for MariaDB and gtid_executed for MySQL
963 foreach ( [ 'gtid_binlog_pos', 'gtid_executed' ] as $name ) {
964 if ( isset( $data[$name] ) && strlen( $data[$name] ) ) {
965 $pos = new MySQLMasterPos( $data[$name], $now );
966 break;
967 }
968 }
969 // Filter domains that are inactive or not relevant to the session
970 if ( $pos ) {
971 $pos->setActiveOriginServerId( $this->getServerId() );
972 $pos->setActiveOriginServerUUID( $this->getServerUUID() );
973 if ( isset( $data['gtid_domain_id'] ) ) {
974 $pos->setActiveDomain( $data['gtid_domain_id'] );
975 }
976 }
977 }
978
979 if ( !$pos ) {
980 $data = $this->getServerRoleStatus( 'MASTER', __METHOD__ );
981 if ( $data && strlen( $data['File'] ) ) {
982 $pos = new MySQLMasterPos( "{$data['File']}/{$data['Position']}", $now );
983 }
984 }
985
986 return $pos;
987 }
988
989 /**
990 * @return int
991 * @throws DBQueryError If the variable doesn't exist for some reason
992 */
993 protected function getServerId() {
994 $fname = __METHOD__;
995 return $this->srvCache->getWithSetCallback(
996 $this->srvCache->makeGlobalKey( 'mysql-server-id', $this->getServer() ),
997 self::SERVER_ID_CACHE_TTL,
998 function () use ( $fname ) {
999 $flags = self::QUERY_IGNORE_DBO_TRX;
1000 $res = $this->query( "SELECT @@server_id AS id", $fname, $flags );
1001
1002 return intval( $this->fetchObject( $res )->id );
1003 }
1004 );
1005 }
1006
1007 /**
1008 * @return string|null
1009 */
1010 protected function getServerUUID() {
1011 $fname = __METHOD__;
1012 return $this->srvCache->getWithSetCallback(
1013 $this->srvCache->makeGlobalKey( 'mysql-server-uuid', $this->getServer() ),
1014 self::SERVER_ID_CACHE_TTL,
1015 function () use ( $fname ) {
1016 $flags = self::QUERY_IGNORE_DBO_TRX;
1017 $res = $this->query( "SHOW GLOBAL VARIABLES LIKE 'server_uuid'", $fname, $flags );
1018 $row = $this->fetchObject( $res );
1019
1020 return $row ? $row->Value : null;
1021 }
1022 );
1023 }
1024
1025 /**
1026 * @param string $fname
1027 * @return string[]
1028 */
1029 protected function getServerGTIDs( $fname = __METHOD__ ) {
1030 $map = [];
1031
1032 $flags = self::QUERY_IGNORE_DBO_TRX;
1033 // Get global-only variables like gtid_executed
1034 $res = $this->query( "SHOW GLOBAL VARIABLES LIKE 'gtid_%'", $fname, $flags );
1035 foreach ( $res as $row ) {
1036 $map[$row->Variable_name] = $row->Value;
1037 }
1038 // Get session-specific (e.g. gtid_domain_id since that is were writes will log)
1039 $res = $this->query( "SHOW SESSION VARIABLES LIKE 'gtid_%'", $fname, $flags );
1040 foreach ( $res as $row ) {
1041 $map[$row->Variable_name] = $row->Value;
1042 }
1043
1044 return $map;
1045 }
1046
1047 /**
1048 * @param string $role One of "MASTER"/"SLAVE"
1049 * @param string $fname
1050 * @return string[] Latest available server status row
1051 */
1052 protected function getServerRoleStatus( $role, $fname = __METHOD__ ) {
1053 $flags = self::QUERY_IGNORE_DBO_TRX;
1054
1055 return $this->query( "SHOW $role STATUS", $fname, $flags )->fetchRow() ?: [];
1056 }
1057
1058 public function serverIsReadOnly() {
1059 // Avoid SHOW to avoid internal temporary tables
1060 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_SILENCE_ERRORS;
1061 $res = $this->query( "SELECT @@GLOBAL.read_only AS Value", __METHOD__, $flags );
1062 $row = $this->fetchObject( $res );
1063
1064 return $row ? (bool)$row->Value : false;
1065 }
1066
1067 /**
1068 * @param string $index
1069 * @return string
1070 */
1071 function useIndexClause( $index ) {
1072 return "FORCE INDEX (" . $this->indexName( $index ) . ")";
1073 }
1074
1075 /**
1076 * @param string $index
1077 * @return string
1078 */
1079 function ignoreIndexClause( $index ) {
1080 return "IGNORE INDEX (" . $this->indexName( $index ) . ")";
1081 }
1082
1083 /**
1084 * @return string
1085 */
1086 public function getSoftwareLink() {
1087 // MariaDB includes its name in its version string; this is how MariaDB's version of
1088 // the mysql command-line client identifies MariaDB servers (see mariadb_connection()
1089 // in libmysql/libmysql.c).
1090 $version = $this->getServerVersion();
1091 if ( strpos( $version, 'MariaDB' ) !== false || strpos( $version, '-maria-' ) !== false ) {
1092 return '[{{int:version-db-mariadb-url}} MariaDB]';
1093 }
1094
1095 // Percona Server's version suffix is not very distinctive, and @@version_comment
1096 // doesn't give the necessary info for source builds, so assume the server is MySQL.
1097 // (Even Percona's version of mysql doesn't try to make the distinction.)
1098 return '[{{int:version-db-mysql-url}} MySQL]';
1099 }
1100
1101 /**
1102 * @return string
1103 */
1104 public function getServerVersion() {
1105 // Not using mysql_get_server_info() or similar for consistency: in the handshake,
1106 // MariaDB 10 adds the prefix "5.5.5-", and only some newer client libraries strip
1107 // it off (see RPL_VERSION_HACK in include/mysql_com.h).
1108 if ( $this->serverVersion === null ) {
1109 $this->serverVersion = $this->selectField( '', 'VERSION()', '', __METHOD__ );
1110 }
1111 return $this->serverVersion;
1112 }
1113
1114 /**
1115 * @param array $options
1116 */
1117 public function setSessionOptions( array $options ) {
1118 if ( isset( $options['connTimeout'] ) ) {
1119 $flags = self::QUERY_IGNORE_DBO_TRX;
1120 $timeout = (int)$options['connTimeout'];
1121 $this->query( "SET net_read_timeout=$timeout", __METHOD__, $flags );
1122 $this->query( "SET net_write_timeout=$timeout", __METHOD__, $flags );
1123 }
1124 }
1125
1126 /**
1127 * @param string &$sql
1128 * @param string &$newLine
1129 * @return bool
1130 */
1131 public function streamStatementEnd( &$sql, &$newLine ) {
1132 if ( strtoupper( substr( $newLine, 0, 9 ) ) == 'DELIMITER' ) {
1133 preg_match( '/^DELIMITER\s+(\S+)/', $newLine, $m );
1134 $this->delimiter = $m[1];
1135 $newLine = '';
1136 }
1137
1138 return parent::streamStatementEnd( $sql, $newLine );
1139 }
1140
1141 /**
1142 * Check to see if a named lock is available. This is non-blocking.
1143 *
1144 * @param string $lockName Name of lock to poll
1145 * @param string $method Name of method calling us
1146 * @return bool
1147 * @since 1.20
1148 */
1149 public function lockIsFree( $lockName, $method ) {
1150 if ( !parent::lockIsFree( $lockName, $method ) ) {
1151 return false; // already held
1152 }
1153
1154 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
1155
1156 $flags = self::QUERY_IGNORE_DBO_TRX;
1157 $res = $this->query( "SELECT IS_FREE_LOCK($encName) AS lockstatus", $method, $flags );
1158 $row = $this->fetchObject( $res );
1159
1160 return ( $row->lockstatus == 1 );
1161 }
1162
1163 /**
1164 * @param string $lockName
1165 * @param string $method
1166 * @param int $timeout
1167 * @return bool
1168 */
1169 public function lock( $lockName, $method, $timeout = 5 ) {
1170 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
1171
1172 $flags = self::QUERY_IGNORE_DBO_TRX;
1173 $res = $this->query( "SELECT GET_LOCK($encName, $timeout) AS lockstatus", $method, $flags );
1174 $row = $this->fetchObject( $res );
1175
1176 if ( $row->lockstatus == 1 ) {
1177 parent::lock( $lockName, $method, $timeout ); // record
1178 return true;
1179 }
1180
1181 $this->queryLogger->info( __METHOD__ . " failed to acquire lock '{lockname}'",
1182 [ 'lockname' => $lockName ] );
1183
1184 return false;
1185 }
1186
1187 /**
1188 * FROM MYSQL DOCS:
1189 * https://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function_release-lock
1190 * @param string $lockName
1191 * @param string $method
1192 * @return bool
1193 */
1194 public function unlock( $lockName, $method ) {
1195 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
1196
1197 $flags = self::QUERY_IGNORE_DBO_TRX;
1198 $res = $this->query( "SELECT RELEASE_LOCK($encName) as lockstatus", $method, $flags );
1199 $row = $this->fetchObject( $res );
1200
1201 if ( $row->lockstatus == 1 ) {
1202 parent::unlock( $lockName, $method ); // record
1203 return true;
1204 }
1205
1206 $this->queryLogger->warning( __METHOD__ . " failed to release lock '$lockName'\n" );
1207
1208 return false;
1209 }
1210
1211 private function makeLockName( $lockName ) {
1212 // https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
1213 // Newer version enforce a 64 char length limit.
1214 return ( strlen( $lockName ) > 64 ) ? sha1( $lockName ) : $lockName;
1215 }
1216
1217 public function namedLocksEnqueue() {
1218 return true;
1219 }
1220
1221 public function tableLocksHaveTransactionScope() {
1222 return false; // tied to TCP connection
1223 }
1224
1225 protected function doLockTables( array $read, array $write, $method ) {
1226 $items = [];
1227 foreach ( $write as $table ) {
1228 $items[] = $this->tableName( $table ) . ' WRITE';
1229 }
1230 foreach ( $read as $table ) {
1231 $items[] = $this->tableName( $table ) . ' READ';
1232 }
1233
1234 $sql = "LOCK TABLES " . implode( ',', $items );
1235 $this->query( $sql, $method, self::QUERY_IGNORE_DBO_TRX );
1236
1237 return true;
1238 }
1239
1240 protected function doUnlockTables( $method ) {
1241 $this->query( "UNLOCK TABLES", $method, self::QUERY_IGNORE_DBO_TRX );
1242
1243 return true;
1244 }
1245
1246 /**
1247 * @param bool $value
1248 */
1249 public function setBigSelects( $value = true ) {
1250 if ( $value === 'default' ) {
1251 if ( $this->defaultBigSelects === null ) {
1252 # Function hasn't been called before so it must already be set to the default
1253 return;
1254 } else {
1255 $value = $this->defaultBigSelects;
1256 }
1257 } elseif ( $this->defaultBigSelects === null ) {
1258 $this->defaultBigSelects =
1259 (bool)$this->selectField( false, '@@sql_big_selects', '', __METHOD__ );
1260 }
1261 $encValue = $value ? '1' : '0';
1262 $this->query( "SET sql_big_selects=$encValue", __METHOD__, self::QUERY_IGNORE_DBO_TRX );
1263 }
1264
1265 /**
1266 * DELETE where the condition is a join. MySql uses multi-table deletes.
1267 * @param string $delTable
1268 * @param string $joinTable
1269 * @param string $delVar
1270 * @param string $joinVar
1271 * @param array|string $conds
1272 * @param bool|string $fname
1273 * @throws DBUnexpectedError
1274 */
1275 public function deleteJoin(
1276 $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__
1277 ) {
1278 if ( !$conds ) {
1279 throw new DBUnexpectedError( $this, __METHOD__ . ' called with empty $conds' );
1280 }
1281
1282 $delTable = $this->tableName( $delTable );
1283 $joinTable = $this->tableName( $joinTable );
1284 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1285
1286 if ( $conds != '*' ) {
1287 $sql .= ' AND ' . $this->makeList( $conds, self::LIST_AND );
1288 }
1289
1290 $this->query( $sql, $fname );
1291 }
1292
1293 public function upsert(
1294 $table, array $rows, $uniqueIndexes, array $set, $fname = __METHOD__
1295 ) {
1296 if ( $rows === [] ) {
1297 return true; // nothing to do
1298 }
1299
1300 if ( !is_array( reset( $rows ) ) ) {
1301 $rows = [ $rows ];
1302 }
1303
1304 $table = $this->tableName( $table );
1305 $columns = array_keys( $rows[0] );
1306
1307 $sql = "INSERT INTO $table (" . implode( ',', $columns ) . ') VALUES ';
1308 $rowTuples = [];
1309 foreach ( $rows as $row ) {
1310 $rowTuples[] = '(' . $this->makeList( $row ) . ')';
1311 }
1312 $sql .= implode( ',', $rowTuples );
1313 $sql .= " ON DUPLICATE KEY UPDATE " . $this->makeList( $set, self::LIST_SET );
1314
1315 $this->query( $sql, $fname );
1316
1317 return true;
1318 }
1319
1320 /**
1321 * Determines how long the server has been up
1322 *
1323 * @return int
1324 */
1325 public function getServerUptime() {
1326 $vars = $this->getMysqlStatus( 'Uptime' );
1327
1328 return (int)$vars['Uptime'];
1329 }
1330
1331 /**
1332 * Determines if the last failure was due to a deadlock
1333 *
1334 * @return bool
1335 */
1336 public function wasDeadlock() {
1337 return $this->lastErrno() == 1213;
1338 }
1339
1340 /**
1341 * Determines if the last failure was due to a lock timeout
1342 *
1343 * @return bool
1344 */
1345 public function wasLockTimeout() {
1346 return $this->lastErrno() == 1205;
1347 }
1348
1349 /**
1350 * Determines if the last failure was due to the database being read-only.
1351 *
1352 * @return bool
1353 */
1354 public function wasReadOnlyError() {
1355 return $this->lastErrno() == 1223 ||
1356 ( $this->lastErrno() == 1290 && strpos( $this->lastError(), '--read-only' ) !== false );
1357 }
1358
1359 public function wasConnectionError( $errno ) {
1360 return $errno == 2013 || $errno == 2006;
1361 }
1362
1363 protected function wasKnownStatementRollbackError() {
1364 $errno = $this->lastErrno();
1365
1366 if ( $errno === 1205 ) { // lock wait timeout
1367 // Note that this is uncached to avoid stale values of SET is used
1368 $row = $this->selectRow(
1369 false,
1370 [ 'innodb_rollback_on_timeout' => '@@innodb_rollback_on_timeout' ],
1371 [],
1372 __METHOD__
1373 );
1374 // https://dev.mysql.com/doc/refman/5.7/en/innodb-error-handling.html
1375 // https://dev.mysql.com/doc/refman/5.5/en/innodb-parameters.html
1376 return $row->innodb_rollback_on_timeout ? false : true;
1377 }
1378
1379 // See https://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html
1380 return in_array( $errno, [ 1022, 1062, 1216, 1217, 1137, 1146, 1051, 1054 ], true );
1381 }
1382
1383 /**
1384 * @param string $oldName
1385 * @param string $newName
1386 * @param bool $temporary
1387 * @param string $fname
1388 * @return bool
1389 */
1390 public function duplicateTableStructure(
1391 $oldName, $newName, $temporary = false, $fname = __METHOD__
1392 ) {
1393 $tmp = $temporary ? 'TEMPORARY ' : '';
1394 $newName = $this->addIdentifierQuotes( $newName );
1395 $oldName = $this->addIdentifierQuotes( $oldName );
1396 $query = "CREATE $tmp TABLE $newName (LIKE $oldName)";
1397
1398 return $this->query( $query, $fname, $this::QUERY_PSEUDO_PERMANENT );
1399 }
1400
1401 /**
1402 * List all tables on the database
1403 *
1404 * @param string|null $prefix Only show tables with this prefix, e.g. mw_
1405 * @param string $fname Calling function name
1406 * @return array
1407 */
1408 public function listTables( $prefix = null, $fname = __METHOD__ ) {
1409 $result = $this->query( "SHOW TABLES", $fname );
1410
1411 $endArray = [];
1412
1413 foreach ( $result as $table ) {
1414 $vars = get_object_vars( $table );
1415 $table = array_pop( $vars );
1416
1417 if ( !$prefix || strpos( $table, $prefix ) === 0 ) {
1418 $endArray[] = $table;
1419 }
1420 }
1421
1422 return $endArray;
1423 }
1424
1425 /**
1426 * @param string $tableName
1427 * @param string $fName
1428 * @return bool|IResultWrapper
1429 */
1430 public function dropTable( $tableName, $fName = __METHOD__ ) {
1431 if ( !$this->tableExists( $tableName, $fName ) ) {
1432 return false;
1433 }
1434
1435 return $this->query( "DROP TABLE IF EXISTS " . $this->tableName( $tableName ), $fName );
1436 }
1437
1438 /**
1439 * Get status information from SHOW STATUS in an associative array
1440 *
1441 * @param string $which
1442 * @return array
1443 */
1444 private function getMysqlStatus( $which = "%" ) {
1445 $flags = self::QUERY_IGNORE_DBO_TRX;
1446 $res = $this->query( "SHOW STATUS LIKE '{$which}'", __METHOD__, $flags );
1447 $status = [];
1448
1449 foreach ( $res as $row ) {
1450 $status[$row->Variable_name] = $row->Value;
1451 }
1452
1453 return $status;
1454 }
1455
1456 /**
1457 * Lists VIEWs in the database
1458 *
1459 * @param string|null $prefix Only show VIEWs with this prefix, eg.
1460 * unit_test_, or $wgDBprefix. Default: null, would return all views.
1461 * @param string $fname Name of calling function
1462 * @return array
1463 * @since 1.22
1464 */
1465 public function listViews( $prefix = null, $fname = __METHOD__ ) {
1466 // The name of the column containing the name of the VIEW
1467 $propertyName = 'Tables_in_' . $this->getDBname();
1468
1469 // Query for the VIEWS
1470 $res = $this->query( 'SHOW FULL TABLES WHERE TABLE_TYPE = "VIEW"' );
1471 $allViews = [];
1472 foreach ( $res as $row ) {
1473 array_push( $allViews, $row->$propertyName );
1474 }
1475
1476 if ( is_null( $prefix ) || $prefix === '' ) {
1477 return $allViews;
1478 }
1479
1480 $filteredViews = [];
1481 foreach ( $allViews as $viewName ) {
1482 // Does the name of this VIEW start with the table-prefix?
1483 if ( strpos( $viewName, $prefix ) === 0 ) {
1484 array_push( $filteredViews, $viewName );
1485 }
1486 }
1487
1488 return $filteredViews;
1489 }
1490
1491 /**
1492 * Differentiates between a TABLE and a VIEW.
1493 *
1494 * @param string $name Name of the TABLE/VIEW to test
1495 * @param string|null $prefix
1496 * @return bool
1497 * @since 1.22
1498 */
1499 public function isView( $name, $prefix = null ) {
1500 return in_array( $name, $this->listViews( $prefix ) );
1501 }
1502
1503 protected function isTransactableQuery( $sql ) {
1504 return parent::isTransactableQuery( $sql ) &&
1505 !preg_match( '/^SELECT\s+(GET|RELEASE|IS_FREE)_LOCK\(/', $sql );
1506 }
1507
1508 public function buildStringCast( $field ) {
1509 return "CAST( $field AS BINARY )";
1510 }
1511
1512 /**
1513 * @param string $field Field or column to cast
1514 * @return string
1515 */
1516 public function buildIntegerCast( $field ) {
1517 return 'CAST( ' . $field . ' AS SIGNED )';
1518 }
1519
1520 /*
1521 * @return bool Whether GTID support is used (mockable for testing)
1522 */
1523 protected function useGTIDs() {
1524 return $this->useGTIDs;
1525 }
1526 }
1527
1528 /**
1529 * @deprecated since 1.29
1530 */
1531 class_alias( DatabaseMysqlBase::class, 'DatabaseMysqlBase' );