5f59f348227da9ef3e54b9aaefbf875c2d7da645
[lhc/web/wiklou.git] / includes / libs / rdbms / database / Database.php
1 <?php
2 /**
3 * @defgroup Database Database
4 *
5 * This file deals with database interface functions
6 * and query specifics/optimisations.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Database
25 */
26 namespace Wikimedia\Rdbms;
27
28 use Psr\Log\LoggerAwareInterface;
29 use Psr\Log\LoggerInterface;
30 use Psr\Log\NullLogger;
31 use Wikimedia\ScopedCallback;
32 use Wikimedia\Timestamp\ConvertibleTimestamp;
33 use Wikimedia\AtEase\AtEase;
34 use BagOStuff;
35 use HashBagOStuff;
36 use LogicException;
37 use InvalidArgumentException;
38 use UnexpectedValueException;
39 use Exception;
40 use RuntimeException;
41 use Throwable;
42
43 /**
44 * Relational database abstraction object
45 *
46 * @ingroup Database
47 * @since 1.28
48 */
49 abstract class Database implements IDatabase, IMaintainableDatabase, LoggerAwareInterface {
50 /** @var BagOStuff APC cache */
51 protected $srvCache;
52 /** @var LoggerInterface */
53 protected $connLogger;
54 /** @var LoggerInterface */
55 protected $queryLogger;
56 /** @var callable Error logging callback */
57 protected $errorLogger;
58 /** @var callable Deprecation logging callback */
59 protected $deprecationLogger;
60 /** @var callable|null */
61 protected $profiler;
62 /** @var TransactionProfiler */
63 protected $trxProfiler;
64
65 /** @var DatabaseDomain */
66 protected $currentDomain;
67
68 /** @var object|resource|null Database connection */
69 protected $conn;
70
71 /** @var IDatabase|null Lazy handle to the master DB this server replicates from */
72 private $lazyMasterHandle;
73
74 /** @var string Server that this instance is currently connected to */
75 protected $server;
76 /** @var string User that this instance is currently connected under the name of */
77 protected $user;
78 /** @var string Password used to establish the current connection */
79 protected $password;
80 /** @var bool Whether this PHP instance is for a CLI script */
81 protected $cliMode;
82 /** @var string Agent name for query profiling */
83 protected $agent;
84 /** @var array Parameters used by initConnection() to establish a connection */
85 protected $connectionParams;
86 /** @var string[]|int[]|float[] SQL variables values to use for all new connections */
87 protected $connectionVariables;
88 /** @var int Row batch size to use for emulated INSERT SELECT queries */
89 protected $nonNativeInsertSelectBatchSize;
90
91 /** @var int Current bit field of class DBO_* constants */
92 protected $flags;
93 /** @var array Current LoadBalancer tracking information */
94 protected $lbInfo = [];
95 /** @var string Current SQL query delimiter */
96 protected $delimiter = ';';
97 /** @var array[] Current map of (table => (dbname, schema, prefix) map) */
98 protected $tableAliases = [];
99 /** @var string[] Current map of (index alias => index) */
100 protected $indexAliases = [];
101 /** @var array|null Current variables use for schema element placeholders */
102 protected $schemaVars;
103
104 /** @var string|bool|null Stashed value of html_errors INI setting */
105 private $htmlErrors;
106 /** @var int[] Prior flags member variable values */
107 private $priorFlags = [];
108
109 /** @var array Map of (name => 1) for locks obtained via lock() */
110 protected $sessionNamedLocks = [];
111 /** @var array Map of (table name => 1) for TEMPORARY tables */
112 protected $sessionTempTables = [];
113
114 /** @var string ID of the active transaction or the empty string otherwise */
115 private $trxShortId = '';
116 /** @var int Transaction status */
117 private $trxStatus = self::STATUS_TRX_NONE;
118 /** @var Exception|null The last error that caused the status to become STATUS_TRX_ERROR */
119 private $trxStatusCause;
120 /** @var array|null Error details of the last statement-only rollback */
121 private $trxStatusIgnoredCause;
122 /** @var float|null UNIX timestamp at the time of BEGIN for the last transaction */
123 private $trxTimestamp = null;
124 /** @var float Replication lag estimate at the time of BEGIN for the last transaction */
125 private $trxReplicaLag = null;
126 /** @var string Name of the function that start the last transaction */
127 private $trxFname = null;
128 /** @var bool Whether possible write queries were done in the last transaction started */
129 private $trxDoneWrites = false;
130 /** @var bool Whether the current transaction was started implicitly due to DBO_TRX */
131 private $trxAutomatic = false;
132 /** @var int Counter for atomic savepoint identifiers (reset with each transaction) */
133 private $trxAtomicCounter = 0;
134 /** @var array List of (name, unique ID, savepoint ID) for each active atomic section level */
135 private $trxAtomicLevels = [];
136 /** @var bool Whether the current transaction was started implicitly by startAtomic() */
137 private $trxAutomaticAtomic = false;
138 /** @var string[] Write query callers of the current transaction */
139 private $trxWriteCallers = [];
140 /** @var float Seconds spent in write queries for the current transaction */
141 private $trxWriteDuration = 0.0;
142 /** @var int Number of write queries for the current transaction */
143 private $trxWriteQueryCount = 0;
144 /** @var int Number of rows affected by write queries for the current transaction */
145 private $trxWriteAffectedRows = 0;
146 /** @var float Like trxWriteQueryCount but excludes lock-bound, easy to replicate, queries */
147 private $trxWriteAdjDuration = 0.0;
148 /** @var int Number of write queries counted in trxWriteAdjDuration */
149 private $trxWriteAdjQueryCount = 0;
150 /** @var array[] List of (callable, method name, atomic section id) */
151 private $trxIdleCallbacks = [];
152 /** @var array[] List of (callable, method name, atomic section id) */
153 private $trxPreCommitCallbacks = [];
154 /** @var array[] List of (callable, method name, atomic section id) */
155 private $trxEndCallbacks = [];
156 /** @var array[] List of (callable, method name, atomic section id) */
157 private $trxSectionCancelCallbacks = [];
158 /** @var callable[] Map of (name => callable) */
159 private $trxRecurringCallbacks = [];
160 /** @var bool Whether to suppress triggering of transaction end callbacks */
161 private $trxEndCallbacksSuppressed = false;
162
163 /** @var integer|null Rows affected by the last query to query() or its CRUD wrappers */
164 protected $affectedRowCount;
165
166 /** @var float UNIX timestamp */
167 private $lastPing = 0.0;
168 /** @var string The last SQL query attempted */
169 private $lastQuery = '';
170 /** @var float|bool UNIX timestamp of last write query */
171 private $lastWriteTime = false;
172 /** @var string|bool */
173 private $lastPhpError = false;
174 /** @var float Query rount trip time estimate */
175 private $lastRoundTripEstimate = 0.0;
176
177 /** @var int|null Integer ID of the managing LBFactory instance or null if none */
178 private $ownerId;
179
180 /** @var string Lock granularity is on the level of the entire database */
181 const ATTR_DB_LEVEL_LOCKING = 'db-level-locking';
182 /** @var string The SCHEMA keyword refers to a grouping of tables in a database */
183 const ATTR_SCHEMAS_AS_TABLE_GROUPS = 'supports-schemas';
184
185 /** @var int New Database instance will not be connected yet when returned */
186 const NEW_UNCONNECTED = 0;
187 /** @var int New Database instance will already be connected when returned */
188 const NEW_CONNECTED = 1;
189
190 /** @var int Transaction is in a error state requiring a full or savepoint rollback */
191 const STATUS_TRX_ERROR = 1;
192 /** @var int Transaction is active and in a normal state */
193 const STATUS_TRX_OK = 2;
194 /** @var int No transaction is active */
195 const STATUS_TRX_NONE = 3;
196
197 /** @var string Idiom used when a cancelable atomic section started the transaction */
198 private static $NOT_APPLICABLE = 'n/a';
199 /** @var string Prefix to the atomic section counter used to make savepoint IDs */
200 private static $SAVEPOINT_PREFIX = 'wikimedia_rdbms_atomic';
201
202 /** @var int Writes to this temporary table do not affect lastDoneWrites() */
203 private static $TEMP_NORMAL = 1;
204 /** @var int Writes to this temporary table effect lastDoneWrites() */
205 private static $TEMP_PSEUDO_PERMANENT = 2;
206
207 /** @var int Number of times to re-try an operation in case of deadlock */
208 private static $DEADLOCK_TRIES = 4;
209 /** @var int Minimum time to wait before retry, in microseconds */
210 private static $DEADLOCK_DELAY_MIN = 500000;
211 /** @var int Maximum time to wait before retry */
212 private static $DEADLOCK_DELAY_MAX = 1500000;
213
214 /** @var int How long before it is worth doing a dummy query to test the connection */
215 private static $PING_TTL = 1.0;
216 /** @var string Dummy SQL query */
217 private static $PING_QUERY = 'SELECT 1 AS ping';
218
219 /** @var float Guess of how many seconds it takes to replicate a small insert */
220 private static $TINY_WRITE_SEC = 0.010;
221 /** @var float Consider a write slow if it took more than this many seconds */
222 private static $SLOW_WRITE_SEC = 0.500;
223 /** @var float Assume an insert of this many rows or less should be fast to replicate */
224 private static $SMALL_WRITE_ROWS = 100;
225
226 /** @var string[] List of DBO_* flags that can be changed after connection */
227 protected static $MUTABLE_FLAGS = [
228 'DBO_DEBUG',
229 'DBO_NOBUFFER',
230 'DBO_TRX',
231 'DBO_DDLMODE',
232 ];
233 /** @var int Bit field of all DBO_* flags that can be changed after connection */
234 protected static $DBO_MUTABLE = (
235 self::DBO_DEBUG | self::DBO_NOBUFFER | self::DBO_TRX | self::DBO_DDLMODE
236 );
237
238 /**
239 * @note exceptions for missing libraries/drivers should be thrown in initConnection()
240 * @param array $params Parameters passed from Database::factory()
241 */
242 public function __construct( array $params ) {
243 $this->connectionParams = [];
244 foreach ( [ 'host', 'user', 'password', 'dbname', 'schema', 'tablePrefix' ] as $name ) {
245 $this->connectionParams[$name] = $params[$name];
246 }
247 $this->connectionVariables = $params['variables'] ?? [];
248 $this->cliMode = $params['cliMode'];
249 $this->agent = $params['agent'];
250 $this->flags = $params['flags'];
251 if ( $this->flags & self::DBO_DEFAULT ) {
252 if ( $this->cliMode ) {
253 $this->flags &= ~self::DBO_TRX;
254 } else {
255 $this->flags |= self::DBO_TRX;
256 }
257 }
258 $this->nonNativeInsertSelectBatchSize = $params['nonNativeInsertSelectBatchSize'] ?? 10000;
259
260 $this->srvCache = $params['srvCache'] ?? new HashBagOStuff();
261 $this->profiler = is_callable( $params['profiler'] ) ? $params['profiler'] : null;
262 $this->trxProfiler = $params['trxProfiler'];
263 $this->connLogger = $params['connLogger'];
264 $this->queryLogger = $params['queryLogger'];
265 $this->errorLogger = $params['errorLogger'];
266 $this->deprecationLogger = $params['deprecationLogger'];
267
268 // Set initial dummy domain until open() sets the final DB/prefix
269 $this->currentDomain = new DatabaseDomain(
270 $params['dbname'] != '' ? $params['dbname'] : null,
271 $params['schema'] != '' ? $params['schema'] : null,
272 $params['tablePrefix']
273 );
274
275 $this->ownerId = $params['ownerId'] ?? null;
276 }
277
278 /**
279 * Initialize the connection to the database over the wire (or to local files)
280 *
281 * @throws LogicException
282 * @throws InvalidArgumentException
283 * @throws DBConnectionError
284 * @since 1.31
285 */
286 final public function initConnection() {
287 if ( $this->isOpen() ) {
288 throw new LogicException( __METHOD__ . ': already connected' );
289 }
290 // Establish the connection
291 $this->doInitConnection();
292 }
293
294 /**
295 * Actually connect to the database over the wire (or to local files)
296 *
297 * @throws DBConnectionError
298 * @since 1.31
299 */
300 protected function doInitConnection() {
301 $this->open(
302 $this->connectionParams['host'],
303 $this->connectionParams['user'],
304 $this->connectionParams['password'],
305 $this->connectionParams['dbname'],
306 $this->connectionParams['schema'],
307 $this->connectionParams['tablePrefix']
308 );
309 }
310
311 /**
312 * Open a new connection to the database (closing any existing one)
313 *
314 * @param string|null $server Database server host
315 * @param string|null $user Database user name
316 * @param string|null $password Database user password
317 * @param string|null $dbName Database name
318 * @param string|null $schema Database schema name
319 * @param string $tablePrefix Table prefix
320 * @throws DBConnectionError
321 */
322 abstract protected function open( $server, $user, $password, $dbName, $schema, $tablePrefix );
323
324 /**
325 * Construct a Database subclass instance given a database type and parameters
326 *
327 * This also connects to the database immediately upon object construction
328 *
329 * @param string $type A possible DB type (sqlite, mysql, postgres,...)
330 * @param array $params Parameter map with keys:
331 * - host : The hostname of the DB server
332 * - user : The name of the database user the client operates under
333 * - password : The password for the database user
334 * - dbname : The name of the database to use where queries do not specify one.
335 * The database must exist or an error might be thrown. Setting this to the empty string
336 * will avoid any such errors and make the handle have no implicit database scope. This is
337 * useful for queries like SHOW STATUS, CREATE DATABASE, or DROP DATABASE. Note that a
338 * "database" in Postgres is rougly equivalent to an entire MySQL server. This the domain
339 * in which user names and such are defined, e.g. users are database-specific in Postgres.
340 * - schema : The database schema to use (if supported). A "schema" in Postgres is roughly
341 * equivalent to a "database" in MySQL. Note that MySQL and SQLite do not use schemas.
342 * - tablePrefix : Optional table prefix that is implicitly added on to all table names
343 * recognized in queries. This can be used in place of schemas for handle site farms.
344 * - flags : Optional bit field of DBO_* constants that define connection, protocol,
345 * buffering, and transaction behavior. It is STRONGLY adviced to leave the DBO_DEFAULT
346 * flag in place UNLESS this this database simply acts as a key/value store.
347 * - driver: Optional name of a specific DB client driver. For MySQL, there is only the
348 * 'mysqli' driver; the old one 'mysql' has been removed.
349 * - variables: Optional map of session variables to set after connecting. This can be
350 * used to adjust lock timeouts or encoding modes and the like.
351 * - connLogger: Optional PSR-3 logger interface instance.
352 * - queryLogger: Optional PSR-3 logger interface instance.
353 * - profiler : Optional callback that takes a section name argument and returns
354 * a ScopedCallback instance that ends the profile section in its destructor.
355 * These will be called in query(), using a simplified version of the SQL that
356 * also includes the agent as a SQL comment.
357 * - trxProfiler: Optional TransactionProfiler instance.
358 * - errorLogger: Optional callback that takes an Exception and logs it.
359 * - deprecationLogger: Optional callback that takes a string and logs it.
360 * - cliMode: Whether to consider the execution context that of a CLI script.
361 * - agent: Optional name used to identify the end-user in query profiling/logging.
362 * - srvCache: Optional BagOStuff instance to an APC-style cache.
363 * - nonNativeInsertSelectBatchSize: Optional batch size for non-native INSERT SELECT.
364 * - ownerId: Optional integer ID of a LoadBalancer instance that manages this instance.
365 * @param int $connect One of the class constants (NEW_CONNECTED, NEW_UNCONNECTED) [optional]
366 * @return Database|null If the database driver or extension cannot be found
367 * @throws InvalidArgumentException If the database driver or extension cannot be found
368 * @since 1.18
369 */
370 final public static function factory( $type, $params = [], $connect = self::NEW_CONNECTED ) {
371 $class = self::getClass( $type, $params['driver'] ?? null );
372
373 if ( class_exists( $class ) && is_subclass_of( $class, IDatabase::class ) ) {
374 $params += [
375 'host' => null,
376 'user' => null,
377 'password' => null,
378 'dbname' => null,
379 'schema' => null,
380 'tablePrefix' => '',
381 'flags' => 0,
382 'variables' => [],
383 'cliMode' => ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' ),
384 'agent' => basename( $_SERVER['SCRIPT_NAME'] ) . '@' . gethostname(),
385 'ownerId' => null
386 ];
387
388 $normalizedParams = [
389 // Configuration
390 'host' => strlen( $params['host'] ) ? $params['host'] : null,
391 'user' => strlen( $params['user'] ) ? $params['user'] : null,
392 'password' => is_string( $params['password'] ) ? $params['password'] : null,
393 'dbname' => strlen( $params['dbname'] ) ? $params['dbname'] : null,
394 'schema' => strlen( $params['schema'] ) ? $params['schema'] : null,
395 'tablePrefix' => (string)$params['tablePrefix'],
396 'flags' => (int)$params['flags'],
397 'variables' => $params['variables'],
398 'cliMode' => (bool)$params['cliMode'],
399 'agent' => (string)$params['agent'],
400 // Objects and callbacks
401 'srvCache' => $params['srvCache'] ?? new HashBagOStuff(),
402 'profiler' => $params['profiler'] ?? null,
403 'trxProfiler' => $params['trxProfiler'] ?? new TransactionProfiler(),
404 'connLogger' => $params['connLogger'] ?? new NullLogger(),
405 'queryLogger' => $params['queryLogger'] ?? new NullLogger(),
406 'errorLogger' => $params['errorLogger'] ?? function ( Exception $e ) {
407 trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
408 },
409 'deprecationLogger' => $params['deprecationLogger'] ?? function ( $msg ) {
410 trigger_error( $msg, E_USER_DEPRECATED );
411 }
412 ] + $params;
413
414 /** @var Database $conn */
415 $conn = new $class( $normalizedParams );
416 if ( $connect === self::NEW_CONNECTED ) {
417 $conn->initConnection();
418 }
419 } else {
420 $conn = null;
421 }
422
423 return $conn;
424 }
425
426 /**
427 * @param string $dbType A possible DB type (sqlite, mysql, postgres,...)
428 * @param string|null $driver Optional name of a specific DB client driver
429 * @return array Map of (Database::ATTR_* constant => value) for all such constants
430 * @throws InvalidArgumentException
431 * @since 1.31
432 */
433 final public static function attributesFromType( $dbType, $driver = null ) {
434 static $defaults = [
435 self::ATTR_DB_LEVEL_LOCKING => false,
436 self::ATTR_SCHEMAS_AS_TABLE_GROUPS => false
437 ];
438
439 $class = self::getClass( $dbType, $driver );
440
441 return call_user_func( [ $class, 'getAttributes' ] ) + $defaults;
442 }
443
444 /**
445 * @param string $dbType A possible DB type (sqlite, mysql, postgres,...)
446 * @param string|null $driver Optional name of a specific DB client driver
447 * @return string Database subclass name to use
448 * @throws InvalidArgumentException
449 */
450 private static function getClass( $dbType, $driver = null ) {
451 // For database types with built-in support, the below maps type to IDatabase
452 // implementations. For types with multipe driver implementations (PHP extensions),
453 // an array can be used, keyed by extension name. In case of an array, the
454 // optional 'driver' parameter can be used to force a specific driver. Otherwise,
455 // we auto-detect the first available driver. For types without built-in support,
456 // an class named "Database<Type>" us used, eg. DatabaseFoo for type 'foo'.
457 static $builtinTypes = [
458 'mysql' => [ 'mysqli' => DatabaseMysqli::class ],
459 'sqlite' => DatabaseSqlite::class,
460 'postgres' => DatabasePostgres::class,
461 ];
462
463 $dbType = strtolower( $dbType );
464 $class = false;
465
466 if ( isset( $builtinTypes[$dbType] ) ) {
467 $possibleDrivers = $builtinTypes[$dbType];
468 if ( is_string( $possibleDrivers ) ) {
469 $class = $possibleDrivers;
470 } elseif ( (string)$driver !== '' ) {
471 if ( !isset( $possibleDrivers[$driver] ) ) {
472 throw new InvalidArgumentException( __METHOD__ .
473 " type '$dbType' does not support driver '{$driver}'" );
474 }
475
476 $class = $possibleDrivers[$driver];
477 } else {
478 foreach ( $possibleDrivers as $posDriver => $possibleClass ) {
479 if ( extension_loaded( $posDriver ) ) {
480 $class = $possibleClass;
481 break;
482 }
483 }
484 }
485 } else {
486 $class = 'Database' . ucfirst( $dbType );
487 }
488
489 if ( $class === false ) {
490 throw new InvalidArgumentException( __METHOD__ .
491 " no viable database extension found for type '$dbType'" );
492 }
493
494 return $class;
495 }
496
497 /**
498 * @return array Map of (Database::ATTR_* constant => value)
499 * @since 1.31
500 */
501 protected static function getAttributes() {
502 return [];
503 }
504
505 /**
506 * Set the PSR-3 logger interface to use for query logging. (The logger
507 * interfaces for connection logging and error logging can be set with the
508 * constructor.)
509 *
510 * @param LoggerInterface $logger
511 */
512 public function setLogger( LoggerInterface $logger ) {
513 $this->queryLogger = $logger;
514 }
515
516 public function getServerInfo() {
517 return $this->getServerVersion();
518 }
519
520 /**
521 * Backwards-compatibility no-op method for disabling query buffering
522 *
523 * @param null|bool $buffer Whether to buffer queries (ignored)
524 * @return bool Whether buffering was already enabled (always true)
525 * @deprecated Since 1.34 Use query batching; this no longer does anything
526 */
527 public function bufferResults( $buffer = null ) {
528 return true;
529 }
530
531 final public function trxLevel() {
532 return ( $this->trxShortId != '' ) ? 1 : 0;
533 }
534
535 public function trxTimestamp() {
536 return $this->trxLevel() ? $this->trxTimestamp : null;
537 }
538
539 /**
540 * @return int One of the STATUS_TRX_* class constants
541 * @since 1.31
542 */
543 public function trxStatus() {
544 return $this->trxStatus;
545 }
546
547 public function tablePrefix( $prefix = null ) {
548 $old = $this->currentDomain->getTablePrefix();
549 if ( $prefix !== null ) {
550 $this->currentDomain = new DatabaseDomain(
551 $this->currentDomain->getDatabase(),
552 $this->currentDomain->getSchema(),
553 $prefix
554 );
555 }
556
557 return $old;
558 }
559
560 public function dbSchema( $schema = null ) {
561 if ( strlen( $schema ) && $this->getDBname() === null ) {
562 throw new DBUnexpectedError( $this, "Cannot set schema to '$schema'; no database set" );
563 }
564
565 $old = $this->currentDomain->getSchema();
566 if ( $schema !== null ) {
567 $this->currentDomain = new DatabaseDomain(
568 $this->currentDomain->getDatabase(),
569 // DatabaseDomain uses null for unspecified schemas
570 strlen( $schema ) ? $schema : null,
571 $this->currentDomain->getTablePrefix()
572 );
573 }
574
575 return (string)$old;
576 }
577
578 /**
579 * @return string Schema to use to qualify relations in queries
580 */
581 protected function relationSchemaQualifier() {
582 return $this->dbSchema();
583 }
584
585 public function getLBInfo( $name = null ) {
586 if ( is_null( $name ) ) {
587 return $this->lbInfo;
588 }
589
590 if ( array_key_exists( $name, $this->lbInfo ) ) {
591 return $this->lbInfo[$name];
592 }
593
594 return null;
595 }
596
597 public function setLBInfo( $nameOrArray, $value = null ) {
598 if ( is_array( $nameOrArray ) ) {
599 $this->lbInfo = $nameOrArray;
600 } elseif ( is_string( $nameOrArray ) ) {
601 if ( $value !== null ) {
602 $this->lbInfo[$nameOrArray] = $value;
603 } else {
604 unset( $this->lbInfo[$nameOrArray] );
605 }
606 } else {
607 throw new InvalidArgumentException( "Got non-string key" );
608 }
609 }
610
611 public function setLazyMasterHandle( IDatabase $conn ) {
612 $this->lazyMasterHandle = $conn;
613 }
614
615 /**
616 * @return IDatabase|null
617 * @see setLazyMasterHandle()
618 * @since 1.27
619 */
620 protected function getLazyMasterHandle() {
621 return $this->lazyMasterHandle;
622 }
623
624 public function implicitOrderby() {
625 return true;
626 }
627
628 public function lastQuery() {
629 return $this->lastQuery;
630 }
631
632 public function lastDoneWrites() {
633 return $this->lastWriteTime ?: false;
634 }
635
636 public function writesPending() {
637 return $this->trxLevel() && $this->trxDoneWrites;
638 }
639
640 public function writesOrCallbacksPending() {
641 return $this->trxLevel() && (
642 $this->trxDoneWrites ||
643 $this->trxIdleCallbacks ||
644 $this->trxPreCommitCallbacks ||
645 $this->trxEndCallbacks ||
646 $this->trxSectionCancelCallbacks
647 );
648 }
649
650 public function preCommitCallbacksPending() {
651 return $this->trxLevel() && $this->trxPreCommitCallbacks;
652 }
653
654 /**
655 * @return string|null
656 */
657 final protected function getTransactionRoundId() {
658 // If transaction round participation is enabled, see if one is active
659 if ( $this->getFlag( self::DBO_TRX ) ) {
660 $id = $this->getLBInfo( 'trxRoundId' );
661
662 return is_string( $id ) ? $id : null;
663 }
664
665 return null;
666 }
667
668 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL ) {
669 if ( !$this->trxLevel() ) {
670 return false;
671 } elseif ( !$this->trxDoneWrites ) {
672 return 0.0;
673 }
674
675 switch ( $type ) {
676 case self::ESTIMATE_DB_APPLY:
677 return $this->pingAndCalculateLastTrxApplyTime();
678 default: // everything
679 return $this->trxWriteDuration;
680 }
681 }
682
683 /**
684 * @return float Time to apply writes to replicas based on trxWrite* fields
685 */
686 private function pingAndCalculateLastTrxApplyTime() {
687 $this->ping( $rtt );
688
689 $rttAdjTotal = $this->trxWriteAdjQueryCount * $rtt;
690 $applyTime = max( $this->trxWriteAdjDuration - $rttAdjTotal, 0 );
691 // For omitted queries, make them count as something at least
692 $omitted = $this->trxWriteQueryCount - $this->trxWriteAdjQueryCount;
693 $applyTime += self::$TINY_WRITE_SEC * $omitted;
694
695 return $applyTime;
696 }
697
698 public function pendingWriteCallers() {
699 return $this->trxLevel() ? $this->trxWriteCallers : [];
700 }
701
702 public function pendingWriteRowsAffected() {
703 return $this->trxWriteAffectedRows;
704 }
705
706 /**
707 * List the methods that have write queries or callbacks for the current transaction
708 *
709 * This method should not be used outside of Database/LoadBalancer
710 *
711 * @return string[]
712 * @since 1.32
713 */
714 public function pendingWriteAndCallbackCallers() {
715 $fnames = $this->pendingWriteCallers();
716 foreach ( [
717 $this->trxIdleCallbacks,
718 $this->trxPreCommitCallbacks,
719 $this->trxEndCallbacks,
720 $this->trxSectionCancelCallbacks
721 ] as $callbacks ) {
722 foreach ( $callbacks as $callback ) {
723 $fnames[] = $callback[1];
724 }
725 }
726
727 return $fnames;
728 }
729
730 /**
731 * @return string
732 */
733 private function flatAtomicSectionList() {
734 return array_reduce( $this->trxAtomicLevels, function ( $accum, $v ) {
735 return $accum === null ? $v[0] : "$accum, " . $v[0];
736 } );
737 }
738
739 public function isOpen() {
740 return (bool)$this->conn;
741 }
742
743 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
744 if ( $flag & ~static::$DBO_MUTABLE ) {
745 throw new DBUnexpectedError(
746 $this,
747 "Got $flag (allowed: " . implode( ', ', static::$MUTABLE_FLAGS ) . ')'
748 );
749 }
750
751 if ( $remember === self::REMEMBER_PRIOR ) {
752 array_push( $this->priorFlags, $this->flags );
753 }
754
755 $this->flags |= $flag;
756 }
757
758 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
759 if ( $flag & ~static::$DBO_MUTABLE ) {
760 throw new DBUnexpectedError(
761 $this,
762 "Got $flag (allowed: " . implode( ', ', static::$MUTABLE_FLAGS ) . ')'
763 );
764 }
765
766 if ( $remember === self::REMEMBER_PRIOR ) {
767 array_push( $this->priorFlags, $this->flags );
768 }
769
770 $this->flags &= ~$flag;
771 }
772
773 public function restoreFlags( $state = self::RESTORE_PRIOR ) {
774 if ( !$this->priorFlags ) {
775 return;
776 }
777
778 if ( $state === self::RESTORE_INITIAL ) {
779 $this->flags = reset( $this->priorFlags );
780 $this->priorFlags = [];
781 } else {
782 $this->flags = array_pop( $this->priorFlags );
783 }
784 }
785
786 public function getFlag( $flag ) {
787 return ( ( $this->flags & $flag ) === $flag );
788 }
789
790 public function getDomainID() {
791 return $this->currentDomain->getId();
792 }
793
794 /**
795 * Get information about an index into an object
796 * @param string $table Table name
797 * @param string $index Index name
798 * @param string $fname Calling function name
799 * @return mixed Database-specific index description class or false if the index does not exist
800 */
801 abstract function indexInfo( $table, $index, $fname = __METHOD__ );
802
803 /**
804 * Wrapper for addslashes()
805 *
806 * @param string $s String to be slashed.
807 * @return string Slashed string.
808 */
809 abstract function strencode( $s );
810
811 /**
812 * Set a custom error handler for logging errors during database connection
813 */
814 protected function installErrorHandler() {
815 $this->lastPhpError = false;
816 $this->htmlErrors = ini_set( 'html_errors', '0' );
817 set_error_handler( [ $this, 'connectionErrorLogger' ] );
818 }
819
820 /**
821 * Restore the previous error handler and return the last PHP error for this DB
822 *
823 * @return bool|string
824 */
825 protected function restoreErrorHandler() {
826 restore_error_handler();
827 if ( $this->htmlErrors !== false ) {
828 ini_set( 'html_errors', $this->htmlErrors );
829 }
830
831 return $this->getLastPHPError();
832 }
833
834 /**
835 * @return string|bool Last PHP error for this DB (typically connection errors)
836 */
837 protected function getLastPHPError() {
838 if ( $this->lastPhpError ) {
839 $error = preg_replace( '!\[<a.*</a>\]!', '', $this->lastPhpError );
840 $error = preg_replace( '!^.*?:\s?(.*)$!', '$1', $error );
841
842 return $error;
843 }
844
845 return false;
846 }
847
848 /**
849 * Error handler for logging errors during database connection
850 * This method should not be used outside of Database classes
851 *
852 * @param int $errno
853 * @param string $errstr
854 */
855 public function connectionErrorLogger( $errno, $errstr ) {
856 $this->lastPhpError = $errstr;
857 }
858
859 /**
860 * Create a log context to pass to PSR-3 logger functions.
861 *
862 * @param array $extras Additional data to add to context
863 * @return array
864 */
865 protected function getLogContext( array $extras = [] ) {
866 return array_merge(
867 [
868 'db_server' => $this->server,
869 'db_name' => $this->getDBname(),
870 'db_user' => $this->user,
871 ],
872 $extras
873 );
874 }
875
876 final public function close( $fname = __METHOD__, $owner = null ) {
877 $error = null; // error to throw after disconnecting
878
879 $wasOpen = (bool)$this->conn;
880 // This should mostly do nothing if the connection is already closed
881 if ( $this->conn ) {
882 // Roll back any dangling transaction first
883 if ( $this->trxLevel() ) {
884 if ( $this->trxAtomicLevels ) {
885 // Cannot let incomplete atomic sections be committed
886 $levels = $this->flatAtomicSectionList();
887 $error = "$fname: atomic sections $levels are still open";
888 } elseif ( $this->trxAutomatic ) {
889 // Only the connection manager can commit non-empty DBO_TRX transactions
890 // (empty ones we can silently roll back)
891 if ( $this->writesOrCallbacksPending() ) {
892 $error = "$fname: " .
893 "expected mass rollback of all peer transactions (DBO_TRX set)";
894 }
895 } else {
896 // Manual transactions should have been committed or rolled
897 // back, even if empty.
898 $error = "$fname: transaction is still open (from {$this->trxFname})";
899 }
900
901 if ( $this->trxEndCallbacksSuppressed && $error === null ) {
902 $error = "$fname: callbacks are suppressed; cannot properly commit";
903 }
904
905 // Rollback the changes and run any callbacks as needed
906 $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
907 }
908
909 // Close the actual connection in the binding handle
910 $closed = $this->closeConnection();
911 } else {
912 $closed = true; // already closed; nothing to do
913 }
914
915 $this->conn = null;
916
917 // Log or throw any unexpected errors after having disconnected
918 if ( $error !== null ) {
919 // T217819, T231443: if this is probably just LoadBalancer trying to recover from
920 // errors and shutdown, then log any problems and move on since the request has to
921 // end one way or another. Throwing errors is not very useful at some point.
922 if ( $this->ownerId !== null && $owner === $this->ownerId ) {
923 $this->queryLogger->error( $error );
924 } else {
925 throw new DBUnexpectedError( $this, $error );
926 }
927 }
928
929 // Note that various subclasses call close() at the start of open(), which itself is
930 // called by replaceLostConnection(). In that case, just because onTransactionResolution()
931 // callbacks are pending does not mean that an exception should be thrown. Rather, they
932 // will be executed after the reconnection step.
933 if ( $wasOpen ) {
934 // Sanity check that no callbacks are dangling
935 $fnames = $this->pendingWriteAndCallbackCallers();
936 if ( $fnames ) {
937 throw new RuntimeException(
938 "Transaction callbacks are still pending: " . implode( ', ', $fnames )
939 );
940 }
941 }
942
943 return $closed;
944 }
945
946 /**
947 * Make sure there is an open connection handle (alive or not) as a sanity check
948 *
949 * This guards against fatal errors to the binding handle not being defined
950 * in cases where open() was never called or close() was already called
951 *
952 * @throws DBUnexpectedError
953 */
954 final protected function assertHasConnectionHandle() {
955 if ( !$this->isOpen() ) {
956 throw new DBUnexpectedError( $this, "DB connection was already closed" );
957 }
958 }
959
960 /**
961 * Make sure that this server is not marked as a replica nor read-only as a sanity check
962 *
963 * @throws DBReadOnlyRoleError
964 * @throws DBReadOnlyError
965 */
966 protected function assertIsWritableMaster() {
967 if ( $this->getLBInfo( 'replica' ) ) {
968 throw new DBReadOnlyRoleError(
969 $this,
970 'Write operations are not allowed on replica database connections'
971 );
972 }
973 $reason = $this->getReadOnlyReason();
974 if ( $reason !== false ) {
975 throw new DBReadOnlyError( $this, "Database is read-only: $reason" );
976 }
977 }
978
979 /**
980 * Closes underlying database connection
981 * @since 1.20
982 * @return bool Whether connection was closed successfully
983 */
984 abstract protected function closeConnection();
985
986 /**
987 * Run a query and return a DBMS-dependent wrapper or boolean
988 *
989 * This is meant to handle the basic command of actually sending a query to the
990 * server via the driver. No implicit transaction, reconnection, nor retry logic
991 * should happen here. The higher level query() method is designed to handle those
992 * sorts of concerns. This method should not trigger such higher level methods.
993 *
994 * The lastError() and lastErrno() methods should meaningfully reflect what error,
995 * if any, occured during the last call to this method. Methods like executeQuery(),
996 * query(), select(), insert(), update(), delete(), and upsert() implement their calls
997 * to doQuery() such that an immediately subsequent call to lastError()/lastErrno()
998 * meaningfully reflects any error that occured during that public query method call.
999 *
1000 * For SELECT queries, this returns either:
1001 * - a) A driver-specific value/resource, only on success. This can be iterated
1002 * over by calling fetchObject()/fetchRow() until there are no more rows.
1003 * Alternatively, the result can be passed to resultObject() to obtain an
1004 * IResultWrapper instance which can then be iterated over via "foreach".
1005 * - b) False, on any query failure
1006 *
1007 * For non-SELECT queries, this returns either:
1008 * - a) A driver-specific value/resource, only on success
1009 * - b) True, only on success (e.g. no meaningful result other than "OK")
1010 * - c) False, on any query failure
1011 *
1012 * @param string $sql SQL query
1013 * @return mixed|bool An object, resource, or true on success; false on failure
1014 */
1015 abstract protected function doQuery( $sql );
1016
1017 /**
1018 * Determine whether a query writes to the DB. When in doubt, this returns true.
1019 *
1020 * Main use cases:
1021 *
1022 * - Subsequent web requests should not need to wait for replication from
1023 * the master position seen by this web request, unless this request made
1024 * changes to the master. This is handled by ChronologyProtector by checking
1025 * doneWrites() at the end of the request. doneWrites() returns true if any
1026 * query set lastWriteTime; which query() does based on isWriteQuery().
1027 *
1028 * - Reject write queries to replica DBs, in query().
1029 *
1030 * @param string $sql
1031 * @return bool
1032 */
1033 protected function isWriteQuery( $sql ) {
1034 // BEGIN and COMMIT queries are considered read queries here.
1035 // Database backends and drivers (MySQL, MariaDB, php-mysqli) generally
1036 // treat these as write queries, in that their results have "affected rows"
1037 // as meta data as from writes, instead of "num rows" as from reads.
1038 // But, we treat them as read queries because when reading data (from
1039 // either replica or master) we use transactions to enable repeatable-read
1040 // snapshots, which ensures we get consistent results from the same snapshot
1041 // for all queries within a request. Use cases:
1042 // - Treating these as writes would trigger ChronologyProtector (see method doc).
1043 // - We use this method to reject writes to replicas, but we need to allow
1044 // use of transactions on replicas for read snapshots. This is fine given
1045 // that transactions by themselves don't make changes, only actual writes
1046 // within the transaction matter, which we still detect.
1047 return !preg_match(
1048 '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SAVEPOINT|RELEASE|SET|SHOW|EXPLAIN|USE|\(SELECT)\b/i',
1049 $sql
1050 );
1051 }
1052
1053 /**
1054 * @param string $sql
1055 * @return string|null
1056 */
1057 protected function getQueryVerb( $sql ) {
1058 return preg_match( '/^\s*([a-z]+)/i', $sql, $m ) ? strtoupper( $m[1] ) : null;
1059 }
1060
1061 /**
1062 * Determine whether a SQL statement is sensitive to isolation level.
1063 *
1064 * A SQL statement is considered transactable if its result could vary
1065 * depending on the transaction isolation level. Operational commands
1066 * such as 'SET' and 'SHOW' are not considered to be transactable.
1067 *
1068 * Main purpose: Used by query() to decide whether to begin a transaction
1069 * before the current query (in DBO_TRX mode, on by default).
1070 *
1071 * @param string $sql
1072 * @return bool
1073 */
1074 protected function isTransactableQuery( $sql ) {
1075 return !in_array(
1076 $this->getQueryVerb( $sql ),
1077 [ 'BEGIN', 'ROLLBACK', 'COMMIT', 'SET', 'SHOW', 'CREATE', 'ALTER', 'USE', 'SHOW' ],
1078 true
1079 );
1080 }
1081
1082 /**
1083 * @param string $sql A SQL query
1084 * @param bool $pseudoPermanent Treat any table from CREATE TEMPORARY as pseudo-permanent
1085 * @return array A n-tuple of:
1086 * - int|null: A self::TEMP_* constant for temp table operations or null otherwise
1087 * - string|null: The name of the new temporary table $sql creates, or null
1088 * - string|null: The name of the temporary table that $sql drops, or null
1089 */
1090 protected function getTempWrites( $sql, $pseudoPermanent ) {
1091 static $qt = '[`"\']?(\w+)[`"\']?'; // quoted table
1092
1093 if ( preg_match(
1094 '/^CREATE\s+TEMPORARY\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?' . $qt . '/i',
1095 $sql,
1096 $matches
1097 ) ) {
1098 $type = $pseudoPermanent ? self::$TEMP_PSEUDO_PERMANENT : self::$TEMP_NORMAL;
1099
1100 return [ $type, $matches[1], null ];
1101 } elseif ( preg_match(
1102 '/^DROP\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?' . $qt . '/i',
1103 $sql,
1104 $matches
1105 ) ) {
1106 return [ $this->sessionTempTables[$matches[1]] ?? null, null, $matches[1] ];
1107 } elseif ( preg_match(
1108 '/^TRUNCATE\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?' . $qt . '/i',
1109 $sql,
1110 $matches
1111 ) ) {
1112 return [ $this->sessionTempTables[$matches[1]] ?? null, null, null ];
1113 } elseif ( preg_match(
1114 '/^(?:(?:INSERT|REPLACE)\s+(?:\w+\s+)?INTO|UPDATE|DELETE\s+FROM)\s+' . $qt . '/i',
1115 $sql,
1116 $matches
1117 ) ) {
1118 return [ $this->sessionTempTables[$matches[1]] ?? null, null, null ];
1119 }
1120
1121 return [ null, null, null ];
1122 }
1123
1124 /**
1125 * @param IResultWrapper|bool $ret
1126 * @param int|null $tmpType TEMP_NORMAL or TEMP_PSEUDO_PERMANENT
1127 * @param string|null $tmpNew Name of created temp table
1128 * @param string|null $tmpDel Name of dropped temp table
1129 */
1130 protected function registerTempWrites( $ret, $tmpType, $tmpNew, $tmpDel ) {
1131 if ( $ret !== false ) {
1132 if ( $tmpNew !== null ) {
1133 $this->sessionTempTables[$tmpNew] = $tmpType;
1134 }
1135 if ( $tmpDel !== null ) {
1136 unset( $this->sessionTempTables[$tmpDel] );
1137 }
1138 }
1139 }
1140
1141 public function query( $sql, $fname = __METHOD__, $flags = 0 ) {
1142 $flags = (int)$flags; // b/c; this field used to be a bool
1143 // Sanity check that the SQL query is appropriate in the current context and is
1144 // allowed for an outside caller (e.g. does not break transaction/session tracking).
1145 $this->assertQueryIsCurrentlyAllowed( $sql, $fname );
1146
1147 // Send the query to the server and fetch any corresponding errors
1148 list( $ret, $err, $errno, $unignorable ) = $this->executeQuery( $sql, $fname, $flags );
1149 if ( $ret === false ) {
1150 $ignoreErrors = $this->fieldHasBit( $flags, self::QUERY_SILENCE_ERRORS );
1151 // Throw an error unless both the ignore flag was set and a rollback is not needed
1152 $this->reportQueryError( $err, $errno, $sql, $fname, $ignoreErrors && !$unignorable );
1153 }
1154
1155 return $this->resultObject( $ret );
1156 }
1157
1158 /**
1159 * Execute a query, retrying it if there is a recoverable connection loss
1160 *
1161 * This is similar to query() except:
1162 * - It does not prevent all non-ROLLBACK queries if there is a corrupted transaction
1163 * - It does not disallow raw queries that are supposed to use dedicated IDatabase methods
1164 * - It does not throw exceptions for common error cases
1165 *
1166 * This is meant for internal use with Database subclasses.
1167 *
1168 * @param string $sql Original SQL query
1169 * @param string $fname Name of the calling function
1170 * @param int $flags Bit field of class QUERY_* constants
1171 * @return array An n-tuple of:
1172 * - mixed|bool: An object, resource, or true on success; false on failure
1173 * - string: The result of calling lastError()
1174 * - int: The result of calling lastErrno()
1175 * - bool: Whether a rollback is needed to allow future non-rollback queries
1176 * @throws DBUnexpectedError
1177 */
1178 final protected function executeQuery( $sql, $fname, $flags ) {
1179 $this->assertHasConnectionHandle();
1180
1181 $priorTransaction = $this->trxLevel();
1182
1183 if ( $this->isWriteQuery( $sql ) ) {
1184 // In theory, non-persistent writes are allowed in read-only mode, but due to things
1185 // like https://bugs.mysql.com/bug.php?id=33669 that might not work anyway...
1186 $this->assertIsWritableMaster();
1187 // Do not treat temporary table writes as "meaningful writes" since they are only
1188 // visible to one session and are not permanent. Profile them as reads. Integration
1189 // tests can override this behavior via $flags.
1190 $pseudoPermanent = $this->fieldHasBit( $flags, self::QUERY_PSEUDO_PERMANENT );
1191 list( $tmpType, $tmpNew, $tmpDel ) = $this->getTempWrites( $sql, $pseudoPermanent );
1192 $isPermWrite = ( $tmpType !== self::$TEMP_NORMAL );
1193 // DBConnRef uses QUERY_REPLICA_ROLE to enforce the replica role for raw SQL queries
1194 if ( $isPermWrite && $this->fieldHasBit( $flags, self::QUERY_REPLICA_ROLE ) ) {
1195 throw new DBReadOnlyRoleError( $this, "Cannot write; target role is DB_REPLICA" );
1196 }
1197 } else {
1198 // No permanent writes in this query
1199 $isPermWrite = false;
1200 // No temporary tables written to either
1201 list( $tmpType, $tmpNew, $tmpDel ) = [ null, null, null ];
1202 }
1203
1204 // Add trace comment to the begin of the sql string, right after the operator.
1205 // Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (T44598).
1206 $encAgent = str_replace( '/', '-', $this->agent );
1207 $commentedSql = preg_replace( '/\s|$/', " /* $fname $encAgent */ ", $sql, 1 );
1208
1209 // Send the query to the server and fetch any corresponding errors.
1210 // This also doubles as a "ping" to see if the connection was dropped.
1211 list( $ret, $err, $errno, $recoverableSR, $recoverableCL, $reconnected ) =
1212 $this->executeQueryAttempt( $sql, $commentedSql, $isPermWrite, $fname, $flags );
1213
1214 // Check if the query failed due to a recoverable connection loss
1215 $allowRetry = !$this->fieldHasBit( $flags, self::QUERY_NO_RETRY );
1216 if ( $ret === false && $recoverableCL && $reconnected && $allowRetry ) {
1217 // Silently resend the query to the server since it is safe and possible
1218 list( $ret, $err, $errno, $recoverableSR, $recoverableCL ) =
1219 $this->executeQueryAttempt( $sql, $commentedSql, $isPermWrite, $fname, $flags );
1220 }
1221
1222 // Register creation and dropping of temporary tables
1223 $this->registerTempWrites( $ret, $tmpType, $tmpNew, $tmpDel );
1224
1225 $corruptedTrx = false;
1226
1227 if ( $ret === false ) {
1228 if ( $priorTransaction ) {
1229 if ( $recoverableSR ) {
1230 # We're ignoring an error that caused just the current query to be aborted.
1231 # But log the cause so we can log a deprecation notice if a caller actually
1232 # does ignore it.
1233 $this->trxStatusIgnoredCause = [ $err, $errno, $fname ];
1234 } elseif ( !$recoverableCL ) {
1235 # Either the query was aborted or all queries after BEGIN where aborted.
1236 # In the first case, the only options going forward are (a) ROLLBACK, or
1237 # (b) ROLLBACK TO SAVEPOINT (if one was set). If the later case, the only
1238 # option is ROLLBACK, since the snapshots would have been released.
1239 $corruptedTrx = true; // cannot recover
1240 $this->trxStatus = self::STATUS_TRX_ERROR;
1241 $this->trxStatusCause =
1242 $this->getQueryExceptionAndLog( $err, $errno, $sql, $fname );
1243 $this->trxStatusIgnoredCause = null;
1244 }
1245 }
1246 }
1247
1248 return [ $ret, $err, $errno, $corruptedTrx ];
1249 }
1250
1251 /**
1252 * Wrapper for doQuery() that handles DBO_TRX, profiling, logging, affected row count
1253 * tracking, and reconnects (without retry) on query failure due to connection loss
1254 *
1255 * @param string $sql Original SQL query
1256 * @param string $commentedSql SQL query with debugging/trace comment
1257 * @param bool $isPermWrite Whether the query is a (non-temporary table) write
1258 * @param string $fname Name of the calling function
1259 * @param int $flags Bit field of class QUERY_* constants
1260 * @return array An n-tuple of:
1261 * - mixed|bool: An object, resource, or true on success; false on failure
1262 * - string: The result of calling lastError()
1263 * - int: The result of calling lastErrno()
1264 * - bool: Whether a statement rollback error occured
1265 * - bool: Whether a disconnect *both* happened *and* was recoverable
1266 * - bool: Whether a reconnection attempt was *both* made *and* succeeded
1267 * @throws DBUnexpectedError
1268 */
1269 private function executeQueryAttempt( $sql, $commentedSql, $isPermWrite, $fname, $flags ) {
1270 $priorWritesPending = $this->writesOrCallbacksPending();
1271
1272 if ( ( $flags & self::QUERY_IGNORE_DBO_TRX ) == 0 ) {
1273 $this->beginIfImplied( $sql, $fname );
1274 }
1275
1276 // Keep track of whether the transaction has write queries pending
1277 if ( $isPermWrite ) {
1278 $this->lastWriteTime = microtime( true );
1279 if ( $this->trxLevel() && !$this->trxDoneWrites ) {
1280 $this->trxDoneWrites = true;
1281 $this->trxProfiler->transactionWritingIn(
1282 $this->server, $this->getDomainID(), $this->trxShortId );
1283 }
1284 }
1285
1286 $prefix = $this->getLBInfo( 'master' ) ? 'query-m: ' : 'query: ';
1287 $generalizedSql = new GeneralizedSql( $sql, $this->trxShortId, $prefix );
1288
1289 $startTime = microtime( true );
1290 $ps = $this->profiler
1291 ? ( $this->profiler )( $generalizedSql->stringify() )
1292 : null;
1293 $this->affectedRowCount = null;
1294 $this->lastQuery = $sql;
1295 $ret = $this->doQuery( $commentedSql );
1296 $lastError = $this->lastError();
1297 $lastErrno = $this->lastErrno();
1298
1299 $this->affectedRowCount = $this->affectedRows();
1300 unset( $ps ); // profile out (if set)
1301 $queryRuntime = max( microtime( true ) - $startTime, 0.0 );
1302
1303 $recoverableSR = false; // recoverable statement rollback?
1304 $recoverableCL = false; // recoverable connection loss?
1305 $reconnected = false; // reconnection both attempted and succeeded?
1306
1307 if ( $ret !== false ) {
1308 $this->lastPing = $startTime;
1309 if ( $isPermWrite && $this->trxLevel() ) {
1310 $this->updateTrxWriteQueryTime( $sql, $queryRuntime, $this->affectedRows() );
1311 $this->trxWriteCallers[] = $fname;
1312 }
1313 } elseif ( $this->wasConnectionError( $lastErrno ) ) {
1314 # Check if no meaningful session state was lost
1315 $recoverableCL = $this->canRecoverFromDisconnect( $sql, $priorWritesPending );
1316 # Update session state tracking and try to restore the connection
1317 $reconnected = $this->replaceLostConnection( __METHOD__ );
1318 } else {
1319 # Check if only the last query was rolled back
1320 $recoverableSR = $this->wasKnownStatementRollbackError();
1321 }
1322
1323 if ( $sql === self::$PING_QUERY ) {
1324 $this->lastRoundTripEstimate = $queryRuntime;
1325 }
1326
1327 $this->trxProfiler->recordQueryCompletion(
1328 $generalizedSql,
1329 $startTime,
1330 $isPermWrite,
1331 $isPermWrite ? $this->affectedRows() : $this->numRows( $ret )
1332 );
1333
1334 // Avoid the overhead of logging calls unless debug mode is enabled
1335 if ( $this->getFlag( self::DBO_DEBUG ) ) {
1336 $this->queryLogger->debug(
1337 "{method} [{runtime}s] {db_host}: {sql}",
1338 [
1339 'method' => $fname,
1340 'db_host' => $this->getServer(),
1341 'sql' => $sql,
1342 'domain' => $this->getDomainID(),
1343 'runtime' => round( $queryRuntime, 3 )
1344 ]
1345 );
1346 }
1347
1348 return [ $ret, $lastError, $lastErrno, $recoverableSR, $recoverableCL, $reconnected ];
1349 }
1350
1351 /**
1352 * Start an implicit transaction if DBO_TRX is enabled and no transaction is active
1353 *
1354 * @param string $sql
1355 * @param string $fname
1356 */
1357 private function beginIfImplied( $sql, $fname ) {
1358 if (
1359 !$this->trxLevel() &&
1360 $this->getFlag( self::DBO_TRX ) &&
1361 $this->isTransactableQuery( $sql )
1362 ) {
1363 $this->begin( __METHOD__ . " ($fname)", self::TRANSACTION_INTERNAL );
1364 $this->trxAutomatic = true;
1365 }
1366 }
1367
1368 /**
1369 * Update the estimated run-time of a query, not counting large row lock times
1370 *
1371 * LoadBalancer can be set to rollback transactions that will create huge replication
1372 * lag. It bases this estimate off of pendingWriteQueryDuration(). Certain simple
1373 * queries, like inserting a row can take a long time due to row locking. This method
1374 * uses some simple heuristics to discount those cases.
1375 *
1376 * @param string $sql A SQL write query
1377 * @param float $runtime Total runtime, including RTT
1378 * @param int $affected Affected row count
1379 */
1380 private function updateTrxWriteQueryTime( $sql, $runtime, $affected ) {
1381 // Whether this is indicative of replica DB runtime (except for RBR or ws_repl)
1382 $indicativeOfReplicaRuntime = true;
1383 if ( $runtime > self::$SLOW_WRITE_SEC ) {
1384 $verb = $this->getQueryVerb( $sql );
1385 // insert(), upsert(), replace() are fast unless bulky in size or blocked on locks
1386 if ( $verb === 'INSERT' ) {
1387 $indicativeOfReplicaRuntime = $this->affectedRows() > self::$SMALL_WRITE_ROWS;
1388 } elseif ( $verb === 'REPLACE' ) {
1389 $indicativeOfReplicaRuntime = $this->affectedRows() > self::$SMALL_WRITE_ROWS / 2;
1390 }
1391 }
1392
1393 $this->trxWriteDuration += $runtime;
1394 $this->trxWriteQueryCount += 1;
1395 $this->trxWriteAffectedRows += $affected;
1396 if ( $indicativeOfReplicaRuntime ) {
1397 $this->trxWriteAdjDuration += $runtime;
1398 $this->trxWriteAdjQueryCount += 1;
1399 }
1400 }
1401
1402 /**
1403 * Error out if the DB is not in a valid state for a query via query()
1404 *
1405 * @param string $sql
1406 * @param string $fname
1407 * @throws DBTransactionStateError
1408 */
1409 private function assertQueryIsCurrentlyAllowed( $sql, $fname ) {
1410 $verb = $this->getQueryVerb( $sql );
1411 if ( $verb === 'USE' ) {
1412 throw new DBUnexpectedError( $this, "Got USE query; use selectDomain() instead" );
1413 }
1414
1415 if ( $verb === 'ROLLBACK' ) { // transaction/savepoint
1416 return;
1417 }
1418
1419 if ( $this->trxStatus < self::STATUS_TRX_OK ) {
1420 throw new DBTransactionStateError(
1421 $this,
1422 "Cannot execute query from $fname while transaction status is ERROR",
1423 [],
1424 $this->trxStatusCause
1425 );
1426 } elseif ( $this->trxStatus === self::STATUS_TRX_OK && $this->trxStatusIgnoredCause ) {
1427 list( $iLastError, $iLastErrno, $iFname ) = $this->trxStatusIgnoredCause;
1428 call_user_func( $this->deprecationLogger,
1429 "Caller from $fname ignored an error originally raised from $iFname: " .
1430 "[$iLastErrno] $iLastError"
1431 );
1432 $this->trxStatusIgnoredCause = null;
1433 }
1434 }
1435
1436 public function assertNoOpenTransactions() {
1437 if ( $this->explicitTrxActive() ) {
1438 throw new DBTransactionError(
1439 $this,
1440 "Explicit transaction still active. A caller may have caught an error. "
1441 . "Open transactions: " . $this->flatAtomicSectionList()
1442 );
1443 }
1444 }
1445
1446 /**
1447 * Determine whether it is safe to retry queries after a database connection is lost
1448 *
1449 * @param string $sql SQL query
1450 * @param bool $priorWritesPending Whether there is a transaction open with
1451 * possible write queries or transaction pre-commit/idle callbacks
1452 * waiting on it to finish.
1453 * @return bool True if it is safe to retry the query, false otherwise
1454 */
1455 private function canRecoverFromDisconnect( $sql, $priorWritesPending ) {
1456 # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
1457 # Dropped connections also mean that named locks are automatically released.
1458 # Only allow error suppression in autocommit mode or when the lost transaction
1459 # didn't matter anyway (aside from DBO_TRX snapshot loss).
1460 if ( $this->sessionNamedLocks ) {
1461 return false; // possible critical section violation
1462 } elseif ( $this->sessionTempTables ) {
1463 return false; // tables might be queried latter
1464 } elseif ( $sql === 'COMMIT' ) {
1465 return !$priorWritesPending; // nothing written anyway? (T127428)
1466 } elseif ( $sql === 'ROLLBACK' ) {
1467 return true; // transaction lost...which is also what was requested :)
1468 } elseif ( $this->explicitTrxActive() ) {
1469 return false; // don't drop atomocity and explicit snapshots
1470 } elseif ( $priorWritesPending ) {
1471 return false; // prior writes lost from implicit transaction
1472 }
1473
1474 return true;
1475 }
1476
1477 /**
1478 * Clean things up after session (and thus transaction) loss before reconnect
1479 */
1480 private function handleSessionLossPreconnect() {
1481 // Clean up tracking of session-level things...
1482 // https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html
1483 // https://www.postgresql.org/docs/9.2/static/sql-createtable.html (ignoring ON COMMIT)
1484 $this->sessionTempTables = [];
1485 // https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
1486 // https://www.postgresql.org/docs/9.4/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1487 $this->sessionNamedLocks = [];
1488 // Session loss implies transaction loss
1489 $oldTrxShortId = $this->consumeTrxShortId();
1490 $this->trxAtomicCounter = 0;
1491 $this->trxIdleCallbacks = []; // T67263; transaction already lost
1492 $this->trxPreCommitCallbacks = []; // T67263; transaction already lost
1493 // Clear additional subclass fields
1494 $this->doHandleSessionLossPreconnect();
1495 // @note: leave trxRecurringCallbacks in place
1496 if ( $this->trxDoneWrites ) {
1497 $this->trxProfiler->transactionWritingOut(
1498 $this->server,
1499 $this->getDomainID(),
1500 $oldTrxShortId,
1501 $this->pendingWriteQueryDuration( self::ESTIMATE_TOTAL ),
1502 $this->trxWriteAffectedRows
1503 );
1504 }
1505 }
1506
1507 /**
1508 * Reset any additional subclass trx* and session* fields
1509 */
1510 protected function doHandleSessionLossPreconnect() {
1511 // no-op
1512 }
1513
1514 /**
1515 * Clean things up after session (and thus transaction) loss after reconnect
1516 */
1517 private function handleSessionLossPostconnect() {
1518 try {
1519 // Handle callbacks in trxEndCallbacks, e.g. onTransactionResolution().
1520 // If callback suppression is set then the array will remain unhandled.
1521 $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
1522 } catch ( Exception $ex ) {
1523 // Already logged; move on...
1524 }
1525 try {
1526 // Handle callbacks in trxRecurringCallbacks, e.g. setTransactionListener()
1527 $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
1528 } catch ( Exception $ex ) {
1529 // Already logged; move on...
1530 }
1531 }
1532
1533 /**
1534 * Reset the transaction ID and return the old one
1535 *
1536 * @return string The old transaction ID or the empty string if there wasn't one
1537 */
1538 private function consumeTrxShortId() {
1539 $old = $this->trxShortId;
1540 $this->trxShortId = '';
1541
1542 return $old;
1543 }
1544
1545 /**
1546 * Checks whether the cause of the error is detected to be a timeout.
1547 *
1548 * It returns false by default, and not all engines support detecting this yet.
1549 * If this returns false, it will be treated as a generic query error.
1550 *
1551 * @param string $error Error text
1552 * @param int $errno Error number
1553 * @return bool
1554 */
1555 protected function wasQueryTimeout( $error, $errno ) {
1556 return false;
1557 }
1558
1559 /**
1560 * Report a query error. Log the error, and if neither the object ignore
1561 * flag nor the $ignoreErrors flag is set, throw a DBQueryError.
1562 *
1563 * @param string $error
1564 * @param int $errno
1565 * @param string $sql
1566 * @param string $fname
1567 * @param bool $ignore
1568 * @throws DBQueryError
1569 */
1570 public function reportQueryError( $error, $errno, $sql, $fname, $ignore = false ) {
1571 if ( $ignore ) {
1572 $this->queryLogger->debug( "SQL ERROR (ignored): $error" );
1573 } else {
1574 throw $this->getQueryExceptionAndLog( $error, $errno, $sql, $fname );
1575 }
1576 }
1577
1578 /**
1579 * @param string $error
1580 * @param string|int $errno
1581 * @param string $sql
1582 * @param string $fname
1583 * @return DBError
1584 */
1585 private function getQueryExceptionAndLog( $error, $errno, $sql, $fname ) {
1586 $this->queryLogger->error(
1587 "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
1588 $this->getLogContext( [
1589 'method' => __METHOD__,
1590 'errno' => $errno,
1591 'error' => $error,
1592 'sql1line' => mb_substr( str_replace( "\n", "\\n", $sql ), 0, 5 * 1024 ),
1593 'fname' => $fname,
1594 'trace' => ( new RuntimeException() )->getTraceAsString()
1595 ] )
1596 );
1597
1598 if ( $this->wasQueryTimeout( $error, $errno ) ) {
1599 $e = new DBQueryTimeoutError( $this, $error, $errno, $sql, $fname );
1600 } elseif ( $this->wasConnectionError( $errno ) ) {
1601 $e = new DBQueryDisconnectedError( $this, $error, $errno, $sql, $fname );
1602 } else {
1603 $e = new DBQueryError( $this, $error, $errno, $sql, $fname );
1604 }
1605
1606 return $e;
1607 }
1608
1609 /**
1610 * @param string $error
1611 * @return DBConnectionError
1612 */
1613 final protected function newExceptionAfterConnectError( $error ) {
1614 // Connection was not fully initialized and is not safe for use
1615 $this->conn = null;
1616
1617 $this->connLogger->error(
1618 "Error connecting to {db_server} as user {db_user}: {error}",
1619 $this->getLogContext( [
1620 'error' => $error,
1621 'trace' => ( new RuntimeException() )->getTraceAsString()
1622 ] )
1623 );
1624
1625 return new DBConnectionError( $this, $error );
1626 }
1627
1628 public function freeResult( $res ) {
1629 }
1630
1631 public function selectField(
1632 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1633 ) {
1634 if ( $var === '*' ) { // sanity
1635 throw new DBUnexpectedError( $this, "Cannot use a * field: got '$var'" );
1636 }
1637
1638 if ( !is_array( $options ) ) {
1639 $options = [ $options ];
1640 }
1641
1642 $options['LIMIT'] = 1;
1643
1644 $res = $this->select( $table, $var, $cond, $fname, $options, $join_conds );
1645 if ( $res === false ) {
1646 throw new DBUnexpectedError( $this, "Got false from select()" );
1647 }
1648
1649 $row = $this->fetchRow( $res );
1650 if ( $row === false ) {
1651 return false;
1652 }
1653
1654 return reset( $row );
1655 }
1656
1657 public function selectFieldValues(
1658 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
1659 ) {
1660 if ( $var === '*' ) { // sanity
1661 throw new DBUnexpectedError( $this, "Cannot use a * field" );
1662 } elseif ( !is_string( $var ) ) { // sanity
1663 throw new DBUnexpectedError( $this, "Cannot use an array of fields" );
1664 }
1665
1666 if ( !is_array( $options ) ) {
1667 $options = [ $options ];
1668 }
1669
1670 $res = $this->select( $table, [ 'value' => $var ], $cond, $fname, $options, $join_conds );
1671 if ( $res === false ) {
1672 throw new DBUnexpectedError( $this, "Got false from select()" );
1673 }
1674
1675 $values = [];
1676 foreach ( $res as $row ) {
1677 $values[] = $row->value;
1678 }
1679
1680 return $values;
1681 }
1682
1683 /**
1684 * Returns an optional USE INDEX clause to go after the table, and a
1685 * string to go at the end of the query.
1686 *
1687 * @see Database::select()
1688 *
1689 * @param array $options Associative array of options to be turned into
1690 * an SQL query, valid keys are listed in the function.
1691 * @return array
1692 */
1693 protected function makeSelectOptions( array $options ) {
1694 $preLimitTail = $postLimitTail = '';
1695 $startOpts = '';
1696
1697 $noKeyOptions = [];
1698
1699 foreach ( $options as $key => $option ) {
1700 if ( is_numeric( $key ) ) {
1701 $noKeyOptions[$option] = true;
1702 }
1703 }
1704
1705 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1706
1707 $preLimitTail .= $this->makeOrderBy( $options );
1708
1709 if ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1710 $postLimitTail .= ' FOR UPDATE';
1711 }
1712
1713 if ( isset( $noKeyOptions['LOCK IN SHARE MODE'] ) ) {
1714 $postLimitTail .= ' LOCK IN SHARE MODE';
1715 }
1716
1717 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1718 $startOpts .= 'DISTINCT';
1719 }
1720
1721 # Various MySQL extensions
1722 if ( isset( $noKeyOptions['STRAIGHT_JOIN'] ) ) {
1723 $startOpts .= ' /*! STRAIGHT_JOIN */';
1724 }
1725
1726 if ( isset( $noKeyOptions['SQL_BIG_RESULT'] ) ) {
1727 $startOpts .= ' SQL_BIG_RESULT';
1728 }
1729
1730 if ( isset( $noKeyOptions['SQL_BUFFER_RESULT'] ) ) {
1731 $startOpts .= ' SQL_BUFFER_RESULT';
1732 }
1733
1734 if ( isset( $noKeyOptions['SQL_SMALL_RESULT'] ) ) {
1735 $startOpts .= ' SQL_SMALL_RESULT';
1736 }
1737
1738 if ( isset( $noKeyOptions['SQL_CALC_FOUND_ROWS'] ) ) {
1739 $startOpts .= ' SQL_CALC_FOUND_ROWS';
1740 }
1741
1742 if ( isset( $options['USE INDEX'] ) && is_string( $options['USE INDEX'] ) ) {
1743 $useIndex = $this->useIndexClause( $options['USE INDEX'] );
1744 } else {
1745 $useIndex = '';
1746 }
1747 if ( isset( $options['IGNORE INDEX'] ) && is_string( $options['IGNORE INDEX'] ) ) {
1748 $ignoreIndex = $this->ignoreIndexClause( $options['IGNORE INDEX'] );
1749 } else {
1750 $ignoreIndex = '';
1751 }
1752
1753 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ];
1754 }
1755
1756 /**
1757 * Returns an optional GROUP BY with an optional HAVING
1758 *
1759 * @param array $options Associative array of options
1760 * @return string
1761 * @see Database::select()
1762 * @since 1.21
1763 */
1764 protected function makeGroupByWithHaving( $options ) {
1765 $sql = '';
1766 if ( isset( $options['GROUP BY'] ) ) {
1767 $gb = is_array( $options['GROUP BY'] )
1768 ? implode( ',', $options['GROUP BY'] )
1769 : $options['GROUP BY'];
1770 $sql .= ' GROUP BY ' . $gb;
1771 }
1772 if ( isset( $options['HAVING'] ) ) {
1773 $having = is_array( $options['HAVING'] )
1774 ? $this->makeList( $options['HAVING'], self::LIST_AND )
1775 : $options['HAVING'];
1776 $sql .= ' HAVING ' . $having;
1777 }
1778
1779 return $sql;
1780 }
1781
1782 /**
1783 * Returns an optional ORDER BY
1784 *
1785 * @param array $options Associative array of options
1786 * @return string
1787 * @see Database::select()
1788 * @since 1.21
1789 */
1790 protected function makeOrderBy( $options ) {
1791 if ( isset( $options['ORDER BY'] ) ) {
1792 $ob = is_array( $options['ORDER BY'] )
1793 ? implode( ',', $options['ORDER BY'] )
1794 : $options['ORDER BY'];
1795
1796 return ' ORDER BY ' . $ob;
1797 }
1798
1799 return '';
1800 }
1801
1802 public function select(
1803 $table, $vars, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1804 ) {
1805 $sql = $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
1806
1807 return $this->query( $sql, $fname );
1808 }
1809
1810 public function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__,
1811 $options = [], $join_conds = []
1812 ) {
1813 if ( is_array( $vars ) ) {
1814 $fields = implode( ',', $this->fieldNamesWithAlias( $vars ) );
1815 } else {
1816 $fields = $vars;
1817 }
1818
1819 $options = (array)$options;
1820 $useIndexes = ( isset( $options['USE INDEX'] ) && is_array( $options['USE INDEX'] ) )
1821 ? $options['USE INDEX']
1822 : [];
1823 $ignoreIndexes = (
1824 isset( $options['IGNORE INDEX'] ) &&
1825 is_array( $options['IGNORE INDEX'] )
1826 )
1827 ? $options['IGNORE INDEX']
1828 : [];
1829
1830 if (
1831 $this->selectOptionsIncludeLocking( $options ) &&
1832 $this->selectFieldsOrOptionsAggregate( $vars, $options )
1833 ) {
1834 // Some DB types (e.g. postgres) disallow FOR UPDATE with aggregate
1835 // functions. Discourage use of such queries to encourage compatibility.
1836 call_user_func(
1837 $this->deprecationLogger,
1838 __METHOD__ . ": aggregation used with a locking SELECT ($fname)"
1839 );
1840 }
1841
1842 if ( is_array( $table ) ) {
1843 $from = ' FROM ' .
1844 $this->tableNamesWithIndexClauseOrJOIN(
1845 $table, $useIndexes, $ignoreIndexes, $join_conds );
1846 } elseif ( $table != '' ) {
1847 $from = ' FROM ' .
1848 $this->tableNamesWithIndexClauseOrJOIN(
1849 [ $table ], $useIndexes, $ignoreIndexes, [] );
1850 } else {
1851 $from = '';
1852 }
1853
1854 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ) =
1855 $this->makeSelectOptions( $options );
1856
1857 if ( is_array( $conds ) ) {
1858 $conds = $this->makeList( $conds, self::LIST_AND );
1859 }
1860
1861 if ( $conds === null || $conds === false ) {
1862 $this->queryLogger->warning(
1863 __METHOD__
1864 . ' called from '
1865 . $fname
1866 . ' with incorrect parameters: $conds must be a string or an array'
1867 );
1868 $conds = '';
1869 }
1870
1871 if ( $conds === '' || $conds === '*' ) {
1872 $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex $preLimitTail";
1873 } elseif ( is_string( $conds ) ) {
1874 $sql = "SELECT $startOpts $fields $from $useIndex $ignoreIndex " .
1875 "WHERE $conds $preLimitTail";
1876 } else {
1877 throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
1878 }
1879
1880 if ( isset( $options['LIMIT'] ) ) {
1881 $sql = $this->limitResult( $sql, $options['LIMIT'],
1882 $options['OFFSET'] ?? false );
1883 }
1884 $sql = "$sql $postLimitTail";
1885
1886 if ( isset( $options['EXPLAIN'] ) ) {
1887 $sql = 'EXPLAIN ' . $sql;
1888 }
1889
1890 return $sql;
1891 }
1892
1893 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
1894 $options = [], $join_conds = []
1895 ) {
1896 $options = (array)$options;
1897 $options['LIMIT'] = 1;
1898
1899 $res = $this->select( $table, $vars, $conds, $fname, $options, $join_conds );
1900 if ( $res === false ) {
1901 throw new DBUnexpectedError( $this, "Got false from select()" );
1902 }
1903
1904 if ( !$this->numRows( $res ) ) {
1905 return false;
1906 }
1907
1908 return $this->fetchObject( $res );
1909 }
1910
1911 public function estimateRowCount(
1912 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1913 ) {
1914 $conds = $this->normalizeConditions( $conds, $fname );
1915 $column = $this->extractSingleFieldFromList( $var );
1916 if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1917 $conds[] = "$column IS NOT NULL";
1918 }
1919
1920 $res = $this->select(
1921 $table, [ 'rowcount' => 'COUNT(*)' ], $conds, $fname, $options, $join_conds
1922 );
1923 $row = $res ? $this->fetchRow( $res ) : [];
1924
1925 return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1926 }
1927
1928 public function selectRowCount(
1929 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
1930 ) {
1931 $conds = $this->normalizeConditions( $conds, $fname );
1932 $column = $this->extractSingleFieldFromList( $var );
1933 if ( is_string( $column ) && !in_array( $column, [ '*', '1' ] ) ) {
1934 $conds[] = "$column IS NOT NULL";
1935 }
1936
1937 $res = $this->select(
1938 [
1939 'tmp_count' => $this->buildSelectSubquery(
1940 $tables,
1941 '1',
1942 $conds,
1943 $fname,
1944 $options,
1945 $join_conds
1946 )
1947 ],
1948 [ 'rowcount' => 'COUNT(*)' ],
1949 [],
1950 $fname
1951 );
1952 $row = $res ? $this->fetchRow( $res ) : [];
1953
1954 return isset( $row['rowcount'] ) ? (int)$row['rowcount'] : 0;
1955 }
1956
1957 /**
1958 * @param string|array $options
1959 * @return bool
1960 */
1961 private function selectOptionsIncludeLocking( $options ) {
1962 $options = (array)$options;
1963 foreach ( [ 'FOR UPDATE', 'LOCK IN SHARE MODE' ] as $lock ) {
1964 if ( in_array( $lock, $options, true ) ) {
1965 return true;
1966 }
1967 }
1968
1969 return false;
1970 }
1971
1972 /**
1973 * @param array|string $fields
1974 * @param array|string $options
1975 * @return bool
1976 */
1977 private function selectFieldsOrOptionsAggregate( $fields, $options ) {
1978 foreach ( (array)$options as $key => $value ) {
1979 if ( is_string( $key ) ) {
1980 if ( preg_match( '/^(?:GROUP BY|HAVING)$/i', $key ) ) {
1981 return true;
1982 }
1983 } elseif ( is_string( $value ) ) {
1984 if ( preg_match( '/^(?:DISTINCT|DISTINCTROW)$/i', $value ) ) {
1985 return true;
1986 }
1987 }
1988 }
1989
1990 $regex = '/^(?:COUNT|MIN|MAX|SUM|GROUP_CONCAT|LISTAGG|ARRAY_AGG)\s*\\(/i';
1991 foreach ( (array)$fields as $field ) {
1992 if ( is_string( $field ) && preg_match( $regex, $field ) ) {
1993 return true;
1994 }
1995 }
1996
1997 return false;
1998 }
1999
2000 /**
2001 * @param array|string $conds
2002 * @param string $fname
2003 * @return array
2004 */
2005 final protected function normalizeConditions( $conds, $fname ) {
2006 if ( $conds === null || $conds === false ) {
2007 $this->queryLogger->warning(
2008 __METHOD__
2009 . ' called from '
2010 . $fname
2011 . ' with incorrect parameters: $conds must be a string or an array'
2012 );
2013 $conds = '';
2014 }
2015
2016 if ( !is_array( $conds ) ) {
2017 $conds = ( $conds === '' ) ? [] : [ $conds ];
2018 }
2019
2020 return $conds;
2021 }
2022
2023 /**
2024 * @param array|string $var Field parameter in the style of select()
2025 * @return string|null Column name or null; ignores aliases
2026 * @throws DBUnexpectedError Errors out if multiple columns are given
2027 */
2028 final protected function extractSingleFieldFromList( $var ) {
2029 if ( is_array( $var ) ) {
2030 if ( !$var ) {
2031 $column = null;
2032 } elseif ( count( $var ) == 1 ) {
2033 $column = $var[0] ?? reset( $var );
2034 } else {
2035 throw new DBUnexpectedError( $this, __METHOD__ . ': got multiple columns' );
2036 }
2037 } else {
2038 $column = $var;
2039 }
2040
2041 return $column;
2042 }
2043
2044 public function lockForUpdate(
2045 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
2046 ) {
2047 if ( !$this->trxLevel() && !$this->getFlag( self::DBO_TRX ) ) {
2048 throw new DBUnexpectedError(
2049 $this,
2050 __METHOD__ . ': no transaction is active nor is DBO_TRX set'
2051 );
2052 }
2053
2054 $options = (array)$options;
2055 $options[] = 'FOR UPDATE';
2056
2057 return $this->selectRowCount( $table, '*', $conds, $fname, $options, $join_conds );
2058 }
2059
2060 public function fieldExists( $table, $field, $fname = __METHOD__ ) {
2061 $info = $this->fieldInfo( $table, $field );
2062
2063 return (bool)$info;
2064 }
2065
2066 public function indexExists( $table, $index, $fname = __METHOD__ ) {
2067 if ( !$this->tableExists( $table ) ) {
2068 return null;
2069 }
2070
2071 $info = $this->indexInfo( $table, $index, $fname );
2072 if ( is_null( $info ) ) {
2073 return null;
2074 } else {
2075 return $info !== false;
2076 }
2077 }
2078
2079 abstract public function tableExists( $table, $fname = __METHOD__ );
2080
2081 public function indexUnique( $table, $index ) {
2082 $indexInfo = $this->indexInfo( $table, $index );
2083
2084 if ( !$indexInfo ) {
2085 return null;
2086 }
2087
2088 return !$indexInfo[0]->Non_unique;
2089 }
2090
2091 /**
2092 * Helper for Database::insert().
2093 *
2094 * @param array $options
2095 * @return string
2096 */
2097 protected function makeInsertOptions( $options ) {
2098 return implode( ' ', $options );
2099 }
2100
2101 public function insert( $table, $a, $fname = __METHOD__, $options = [] ) {
2102 # No rows to insert, easy just return now
2103 if ( !count( $a ) ) {
2104 return true;
2105 }
2106
2107 $table = $this->tableName( $table );
2108
2109 if ( !is_array( $options ) ) {
2110 $options = [ $options ];
2111 }
2112
2113 $options = $this->makeInsertOptions( $options );
2114
2115 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
2116 $multi = true;
2117 $keys = array_keys( $a[0] );
2118 } else {
2119 $multi = false;
2120 $keys = array_keys( $a );
2121 }
2122
2123 $sql = 'INSERT ' . $options .
2124 " INTO $table (" . implode( ',', $keys ) . ') VALUES ';
2125
2126 if ( $multi ) {
2127 $first = true;
2128 foreach ( $a as $row ) {
2129 if ( $first ) {
2130 $first = false;
2131 } else {
2132 $sql .= ',';
2133 }
2134 $sql .= '(' . $this->makeList( $row ) . ')';
2135 }
2136 } else {
2137 $sql .= '(' . $this->makeList( $a ) . ')';
2138 }
2139
2140 $this->query( $sql, $fname );
2141
2142 return true;
2143 }
2144
2145 /**
2146 * Make UPDATE options array for Database::makeUpdateOptions
2147 *
2148 * @param array $options
2149 * @return array
2150 */
2151 protected function makeUpdateOptionsArray( $options ) {
2152 if ( !is_array( $options ) ) {
2153 $options = [ $options ];
2154 }
2155
2156 $opts = [];
2157
2158 if ( in_array( 'IGNORE', $options ) ) {
2159 $opts[] = 'IGNORE';
2160 }
2161
2162 return $opts;
2163 }
2164
2165 /**
2166 * Make UPDATE options for the Database::update function
2167 *
2168 * @param array $options The options passed to Database::update
2169 * @return string
2170 */
2171 protected function makeUpdateOptions( $options ) {
2172 $opts = $this->makeUpdateOptionsArray( $options );
2173
2174 return implode( ' ', $opts );
2175 }
2176
2177 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] ) {
2178 $table = $this->tableName( $table );
2179 $opts = $this->makeUpdateOptions( $options );
2180 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, self::LIST_SET );
2181
2182 if ( $conds !== [] && $conds !== '*' ) {
2183 $sql .= " WHERE " . $this->makeList( $conds, self::LIST_AND );
2184 }
2185
2186 $this->query( $sql, $fname );
2187
2188 return true;
2189 }
2190
2191 public function makeList( $a, $mode = self::LIST_COMMA ) {
2192 if ( !is_array( $a ) ) {
2193 throw new DBUnexpectedError( $this, __METHOD__ . ' called with incorrect parameters' );
2194 }
2195
2196 $first = true;
2197 $list = '';
2198
2199 foreach ( $a as $field => $value ) {
2200 if ( !$first ) {
2201 if ( $mode == self::LIST_AND ) {
2202 $list .= ' AND ';
2203 } elseif ( $mode == self::LIST_OR ) {
2204 $list .= ' OR ';
2205 } else {
2206 $list .= ',';
2207 }
2208 } else {
2209 $first = false;
2210 }
2211
2212 if ( ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_numeric( $field ) ) {
2213 $list .= "($value)";
2214 } elseif ( $mode == self::LIST_SET && is_numeric( $field ) ) {
2215 $list .= "$value";
2216 } elseif (
2217 ( $mode == self::LIST_AND || $mode == self::LIST_OR ) && is_array( $value )
2218 ) {
2219 // Remove null from array to be handled separately if found
2220 $includeNull = false;
2221 foreach ( array_keys( $value, null, true ) as $nullKey ) {
2222 $includeNull = true;
2223 unset( $value[$nullKey] );
2224 }
2225 if ( count( $value ) == 0 && !$includeNull ) {
2226 throw new InvalidArgumentException(
2227 __METHOD__ . ": empty input for field $field" );
2228 } elseif ( count( $value ) == 0 ) {
2229 // only check if $field is null
2230 $list .= "$field IS NULL";
2231 } else {
2232 // IN clause contains at least one valid element
2233 if ( $includeNull ) {
2234 // Group subconditions to ensure correct precedence
2235 $list .= '(';
2236 }
2237 if ( count( $value ) == 1 ) {
2238 // Special-case single values, as IN isn't terribly efficient
2239 // Don't necessarily assume the single key is 0; we don't
2240 // enforce linear numeric ordering on other arrays here.
2241 $value = array_values( $value )[0];
2242 $list .= $field . " = " . $this->addQuotes( $value );
2243 } else {
2244 $list .= $field . " IN (" . $this->makeList( $value ) . ") ";
2245 }
2246 // if null present in array, append IS NULL
2247 if ( $includeNull ) {
2248 $list .= " OR $field IS NULL)";
2249 }
2250 }
2251 } elseif ( $value === null ) {
2252 if ( $mode == self::LIST_AND || $mode == self::LIST_OR ) {
2253 $list .= "$field IS ";
2254 } elseif ( $mode == self::LIST_SET ) {
2255 $list .= "$field = ";
2256 }
2257 $list .= 'NULL';
2258 } else {
2259 if (
2260 $mode == self::LIST_AND || $mode == self::LIST_OR || $mode == self::LIST_SET
2261 ) {
2262 $list .= "$field = ";
2263 }
2264 $list .= $mode == self::LIST_NAMES ? $value : $this->addQuotes( $value );
2265 }
2266 }
2267
2268 return $list;
2269 }
2270
2271 public function makeWhereFrom2d( $data, $baseKey, $subKey ) {
2272 $conds = [];
2273
2274 foreach ( $data as $base => $sub ) {
2275 if ( count( $sub ) ) {
2276 $conds[] = $this->makeList(
2277 [ $baseKey => $base, $subKey => array_keys( $sub ) ],
2278 self::LIST_AND );
2279 }
2280 }
2281
2282 if ( $conds ) {
2283 return $this->makeList( $conds, self::LIST_OR );
2284 } else {
2285 // Nothing to search for...
2286 return false;
2287 }
2288 }
2289
2290 public function aggregateValue( $valuedata, $valuename = 'value' ) {
2291 return $valuename;
2292 }
2293
2294 public function bitNot( $field ) {
2295 return "(~$field)";
2296 }
2297
2298 public function bitAnd( $fieldLeft, $fieldRight ) {
2299 return "($fieldLeft & $fieldRight)";
2300 }
2301
2302 public function bitOr( $fieldLeft, $fieldRight ) {
2303 return "($fieldLeft | $fieldRight)";
2304 }
2305
2306 public function buildConcat( $stringList ) {
2307 return 'CONCAT(' . implode( ',', $stringList ) . ')';
2308 }
2309
2310 public function buildGroupConcatField(
2311 $delim, $table, $field, $conds = '', $join_conds = []
2312 ) {
2313 $fld = "GROUP_CONCAT($field SEPARATOR " . $this->addQuotes( $delim ) . ')';
2314
2315 return '(' . $this->selectSQLText( $table, $fld, $conds, null, [], $join_conds ) . ')';
2316 }
2317
2318 public function buildSubstring( $input, $startPosition, $length = null ) {
2319 $this->assertBuildSubstringParams( $startPosition, $length );
2320 $functionBody = "$input FROM $startPosition";
2321 if ( $length !== null ) {
2322 $functionBody .= " FOR $length";
2323 }
2324 return 'SUBSTRING(' . $functionBody . ')';
2325 }
2326
2327 /**
2328 * Check type and bounds for parameters to self::buildSubstring()
2329 *
2330 * All supported databases have substring functions that behave the same for
2331 * positive $startPosition and non-negative $length, but behaviors differ when
2332 * given 0 or negative $startPosition or negative $length. The simplest
2333 * solution to that is to just forbid those values.
2334 *
2335 * @param int $startPosition
2336 * @param int|null $length
2337 * @since 1.31
2338 */
2339 protected function assertBuildSubstringParams( $startPosition, $length ) {
2340 if ( !is_int( $startPosition ) || $startPosition <= 0 ) {
2341 throw new InvalidArgumentException(
2342 '$startPosition must be a positive integer'
2343 );
2344 }
2345 if ( !( is_int( $length ) && $length >= 0 || $length === null ) ) {
2346 throw new InvalidArgumentException(
2347 '$length must be null or an integer greater than or equal to 0'
2348 );
2349 }
2350 }
2351
2352 public function buildStringCast( $field ) {
2353 // In theory this should work for any standards-compliant
2354 // SQL implementation, although it may not be the best way to do it.
2355 return "CAST( $field AS CHARACTER )";
2356 }
2357
2358 public function buildIntegerCast( $field ) {
2359 return 'CAST( ' . $field . ' AS INTEGER )';
2360 }
2361
2362 public function buildSelectSubquery(
2363 $table, $vars, $conds = '', $fname = __METHOD__,
2364 $options = [], $join_conds = []
2365 ) {
2366 return new Subquery(
2367 $this->selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds )
2368 );
2369 }
2370
2371 public function databasesAreIndependent() {
2372 return false;
2373 }
2374
2375 final public function selectDB( $db ) {
2376 $this->selectDomain( new DatabaseDomain(
2377 $db,
2378 $this->currentDomain->getSchema(),
2379 $this->currentDomain->getTablePrefix()
2380 ) );
2381
2382 return true;
2383 }
2384
2385 final public function selectDomain( $domain ) {
2386 $this->doSelectDomain( DatabaseDomain::newFromId( $domain ) );
2387 }
2388
2389 /**
2390 * @param DatabaseDomain $domain
2391 * @throws DBConnectionError
2392 * @throws DBError
2393 * @since 1.32
2394 */
2395 protected function doSelectDomain( DatabaseDomain $domain ) {
2396 $this->currentDomain = $domain;
2397 }
2398
2399 public function getDBname() {
2400 return $this->currentDomain->getDatabase();
2401 }
2402
2403 public function getServer() {
2404 return $this->server;
2405 }
2406
2407 public function tableName( $name, $format = 'quoted' ) {
2408 if ( $name instanceof Subquery ) {
2409 throw new DBUnexpectedError(
2410 $this,
2411 __METHOD__ . ': got Subquery instance when expecting a string'
2412 );
2413 }
2414
2415 # Skip the entire process when we have a string quoted on both ends.
2416 # Note that we check the end so that we will still quote any use of
2417 # use of `database`.table. But won't break things if someone wants
2418 # to query a database table with a dot in the name.
2419 if ( $this->isQuotedIdentifier( $name ) ) {
2420 return $name;
2421 }
2422
2423 # Lets test for any bits of text that should never show up in a table
2424 # name. Basically anything like JOIN or ON which are actually part of
2425 # SQL queries, but may end up inside of the table value to combine
2426 # sql. Such as how the API is doing.
2427 # Note that we use a whitespace test rather than a \b test to avoid
2428 # any remote case where a word like on may be inside of a table name
2429 # surrounded by symbols which may be considered word breaks.
2430 if ( preg_match( '/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i', $name ) !== 0 ) {
2431 $this->queryLogger->warning(
2432 __METHOD__ . ": use of subqueries is not supported this way",
2433 [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
2434 );
2435
2436 return $name;
2437 }
2438
2439 # Split database and table into proper variables.
2440 list( $database, $schema, $prefix, $table ) = $this->qualifiedTableComponents( $name );
2441
2442 # Quote $table and apply the prefix if not quoted.
2443 # $tableName might be empty if this is called from Database::replaceVars()
2444 $tableName = "{$prefix}{$table}";
2445 if ( $format === 'quoted'
2446 && !$this->isQuotedIdentifier( $tableName )
2447 && $tableName !== ''
2448 ) {
2449 $tableName = $this->addIdentifierQuotes( $tableName );
2450 }
2451
2452 # Quote $schema and $database and merge them with the table name if needed
2453 $tableName = $this->prependDatabaseOrSchema( $schema, $tableName, $format );
2454 $tableName = $this->prependDatabaseOrSchema( $database, $tableName, $format );
2455
2456 return $tableName;
2457 }
2458
2459 /**
2460 * Get the table components needed for a query given the currently selected database
2461 *
2462 * @param string $name Table name in the form of db.schema.table, db.table, or table
2463 * @return array (DB name or "" for default, schema name, table prefix, table name)
2464 */
2465 protected function qualifiedTableComponents( $name ) {
2466 # We reverse the explode so that database.table and table both output the correct table.
2467 $dbDetails = explode( '.', $name, 3 );
2468 if ( count( $dbDetails ) == 3 ) {
2469 list( $database, $schema, $table ) = $dbDetails;
2470 # We don't want any prefix added in this case
2471 $prefix = '';
2472 } elseif ( count( $dbDetails ) == 2 ) {
2473 list( $database, $table ) = $dbDetails;
2474 # We don't want any prefix added in this case
2475 $prefix = '';
2476 # In dbs that support it, $database may actually be the schema
2477 # but that doesn't affect any of the functionality here
2478 $schema = '';
2479 } else {
2480 list( $table ) = $dbDetails;
2481 if ( isset( $this->tableAliases[$table] ) ) {
2482 $database = $this->tableAliases[$table]['dbname'];
2483 $schema = is_string( $this->tableAliases[$table]['schema'] )
2484 ? $this->tableAliases[$table]['schema']
2485 : $this->relationSchemaQualifier();
2486 $prefix = is_string( $this->tableAliases[$table]['prefix'] )
2487 ? $this->tableAliases[$table]['prefix']
2488 : $this->tablePrefix();
2489 } else {
2490 $database = '';
2491 $schema = $this->relationSchemaQualifier(); # Default schema
2492 $prefix = $this->tablePrefix(); # Default prefix
2493 }
2494 }
2495
2496 return [ $database, $schema, $prefix, $table ];
2497 }
2498
2499 /**
2500 * @param string|null $namespace Database or schema
2501 * @param string $relation Name of table, view, sequence, etc...
2502 * @param string $format One of (raw, quoted)
2503 * @return string Relation name with quoted and merged $namespace as needed
2504 */
2505 private function prependDatabaseOrSchema( $namespace, $relation, $format ) {
2506 if ( strlen( $namespace ) ) {
2507 if ( $format === 'quoted' && !$this->isQuotedIdentifier( $namespace ) ) {
2508 $namespace = $this->addIdentifierQuotes( $namespace );
2509 }
2510 $relation = $namespace . '.' . $relation;
2511 }
2512
2513 return $relation;
2514 }
2515
2516 public function tableNames() {
2517 $inArray = func_get_args();
2518 $retVal = [];
2519
2520 foreach ( $inArray as $name ) {
2521 $retVal[$name] = $this->tableName( $name );
2522 }
2523
2524 return $retVal;
2525 }
2526
2527 public function tableNamesN() {
2528 $inArray = func_get_args();
2529 $retVal = [];
2530
2531 foreach ( $inArray as $name ) {
2532 $retVal[] = $this->tableName( $name );
2533 }
2534
2535 return $retVal;
2536 }
2537
2538 /**
2539 * Get an aliased table name
2540 *
2541 * This returns strings like "tableName AS newTableName" for aliased tables
2542 * and "(SELECT * from tableA) newTablename" for subqueries (e.g. derived tables)
2543 *
2544 * @see Database::tableName()
2545 * @param string|Subquery $table Table name or object with a 'sql' field
2546 * @param string|bool $alias Table alias (optional)
2547 * @return string SQL name for aliased table. Will not alias a table to its own name
2548 */
2549 protected function tableNameWithAlias( $table, $alias = false ) {
2550 if ( is_string( $table ) ) {
2551 $quotedTable = $this->tableName( $table );
2552 } elseif ( $table instanceof Subquery ) {
2553 $quotedTable = (string)$table;
2554 } else {
2555 throw new InvalidArgumentException( "Table must be a string or Subquery" );
2556 }
2557
2558 if ( $alias === false || $alias === $table ) {
2559 if ( $table instanceof Subquery ) {
2560 throw new InvalidArgumentException( "Subquery table missing alias" );
2561 }
2562
2563 return $quotedTable;
2564 } else {
2565 return $quotedTable . ' ' . $this->addIdentifierQuotes( $alias );
2566 }
2567 }
2568
2569 /**
2570 * Gets an array of aliased table names
2571 *
2572 * @param array $tables [ [alias] => table ]
2573 * @return string[] See tableNameWithAlias()
2574 */
2575 protected function tableNamesWithAlias( $tables ) {
2576 $retval = [];
2577 foreach ( $tables as $alias => $table ) {
2578 if ( is_numeric( $alias ) ) {
2579 $alias = $table;
2580 }
2581 $retval[] = $this->tableNameWithAlias( $table, $alias );
2582 }
2583
2584 return $retval;
2585 }
2586
2587 /**
2588 * Get an aliased field name
2589 * e.g. fieldName AS newFieldName
2590 *
2591 * @param string $name Field name
2592 * @param string|bool $alias Alias (optional)
2593 * @return string SQL name for aliased field. Will not alias a field to its own name
2594 */
2595 protected function fieldNameWithAlias( $name, $alias = false ) {
2596 if ( !$alias || (string)$alias === (string)$name ) {
2597 return $name;
2598 } else {
2599 return $name . ' AS ' . $this->addIdentifierQuotes( $alias ); // PostgreSQL needs AS
2600 }
2601 }
2602
2603 /**
2604 * Gets an array of aliased field names
2605 *
2606 * @param array $fields [ [alias] => field ]
2607 * @return string[] See fieldNameWithAlias()
2608 */
2609 protected function fieldNamesWithAlias( $fields ) {
2610 $retval = [];
2611 foreach ( $fields as $alias => $field ) {
2612 if ( is_numeric( $alias ) ) {
2613 $alias = $field;
2614 }
2615 $retval[] = $this->fieldNameWithAlias( $field, $alias );
2616 }
2617
2618 return $retval;
2619 }
2620
2621 /**
2622 * Get the aliased table name clause for a FROM clause
2623 * which might have a JOIN and/or USE INDEX or IGNORE INDEX clause
2624 *
2625 * @param array $tables ( [alias] => table )
2626 * @param array $use_index Same as for select()
2627 * @param array $ignore_index Same as for select()
2628 * @param array $join_conds Same as for select()
2629 * @return string
2630 */
2631 protected function tableNamesWithIndexClauseOrJOIN(
2632 $tables, $use_index = [], $ignore_index = [], $join_conds = []
2633 ) {
2634 $ret = [];
2635 $retJOIN = [];
2636 $use_index = (array)$use_index;
2637 $ignore_index = (array)$ignore_index;
2638 $join_conds = (array)$join_conds;
2639
2640 foreach ( $tables as $alias => $table ) {
2641 if ( !is_string( $alias ) ) {
2642 // No alias? Set it equal to the table name
2643 $alias = $table;
2644 }
2645
2646 if ( is_array( $table ) ) {
2647 // A parenthesized group
2648 if ( count( $table ) > 1 ) {
2649 $joinedTable = '(' .
2650 $this->tableNamesWithIndexClauseOrJOIN(
2651 $table, $use_index, $ignore_index, $join_conds ) . ')';
2652 } else {
2653 // Degenerate case
2654 $innerTable = reset( $table );
2655 $innerAlias = key( $table );
2656 $joinedTable = $this->tableNameWithAlias(
2657 $innerTable,
2658 is_string( $innerAlias ) ? $innerAlias : $innerTable
2659 );
2660 }
2661 } else {
2662 $joinedTable = $this->tableNameWithAlias( $table, $alias );
2663 }
2664
2665 // Is there a JOIN clause for this table?
2666 if ( isset( $join_conds[$alias] ) ) {
2667 list( $joinType, $conds ) = $join_conds[$alias];
2668 $tableClause = $joinType;
2669 $tableClause .= ' ' . $joinedTable;
2670 if ( isset( $use_index[$alias] ) ) { // has USE INDEX?
2671 $use = $this->useIndexClause( implode( ',', (array)$use_index[$alias] ) );
2672 if ( $use != '' ) {
2673 $tableClause .= ' ' . $use;
2674 }
2675 }
2676 if ( isset( $ignore_index[$alias] ) ) { // has IGNORE INDEX?
2677 $ignore = $this->ignoreIndexClause(
2678 implode( ',', (array)$ignore_index[$alias] ) );
2679 if ( $ignore != '' ) {
2680 $tableClause .= ' ' . $ignore;
2681 }
2682 }
2683 $on = $this->makeList( (array)$conds, self::LIST_AND );
2684 if ( $on != '' ) {
2685 $tableClause .= ' ON (' . $on . ')';
2686 }
2687
2688 $retJOIN[] = $tableClause;
2689 } elseif ( isset( $use_index[$alias] ) ) {
2690 // Is there an INDEX clause for this table?
2691 $tableClause = $joinedTable;
2692 $tableClause .= ' ' . $this->useIndexClause(
2693 implode( ',', (array)$use_index[$alias] )
2694 );
2695
2696 $ret[] = $tableClause;
2697 } elseif ( isset( $ignore_index[$alias] ) ) {
2698 // Is there an INDEX clause for this table?
2699 $tableClause = $joinedTable;
2700 $tableClause .= ' ' . $this->ignoreIndexClause(
2701 implode( ',', (array)$ignore_index[$alias] )
2702 );
2703
2704 $ret[] = $tableClause;
2705 } else {
2706 $tableClause = $joinedTable;
2707
2708 $ret[] = $tableClause;
2709 }
2710 }
2711
2712 // We can't separate explicit JOIN clauses with ',', use ' ' for those
2713 $implicitJoins = implode( ',', $ret );
2714 $explicitJoins = implode( ' ', $retJOIN );
2715
2716 // Compile our final table clause
2717 return implode( ' ', [ $implicitJoins, $explicitJoins ] );
2718 }
2719
2720 /**
2721 * Allows for index remapping in queries where this is not consistent across DBMS
2722 *
2723 * @param string $index
2724 * @return string
2725 */
2726 protected function indexName( $index ) {
2727 return $this->indexAliases[$index] ?? $index;
2728 }
2729
2730 public function addQuotes( $s ) {
2731 if ( $s instanceof Blob ) {
2732 $s = $s->fetch();
2733 }
2734 if ( $s === null ) {
2735 return 'NULL';
2736 } elseif ( is_bool( $s ) ) {
2737 return (int)$s;
2738 } else {
2739 # This will also quote numeric values. This should be harmless,
2740 # and protects against weird problems that occur when they really
2741 # _are_ strings such as article titles and string->number->string
2742 # conversion is not 1:1.
2743 return "'" . $this->strencode( $s ) . "'";
2744 }
2745 }
2746
2747 public function addIdentifierQuotes( $s ) {
2748 return '"' . str_replace( '"', '""', $s ) . '"';
2749 }
2750
2751 /**
2752 * Returns if the given identifier looks quoted or not according to
2753 * the database convention for quoting identifiers .
2754 *
2755 * @note Do not use this to determine if untrusted input is safe.
2756 * A malicious user can trick this function.
2757 * @param string $name
2758 * @return bool
2759 */
2760 public function isQuotedIdentifier( $name ) {
2761 return $name[0] == '"' && substr( $name, -1, 1 ) == '"';
2762 }
2763
2764 /**
2765 * @param string $s
2766 * @param string $escapeChar
2767 * @return string
2768 */
2769 protected function escapeLikeInternal( $s, $escapeChar = '`' ) {
2770 return str_replace( [ $escapeChar, '%', '_' ],
2771 [ "{$escapeChar}{$escapeChar}", "{$escapeChar}%", "{$escapeChar}_" ],
2772 $s );
2773 }
2774
2775 public function buildLike( $param, ...$params ) {
2776 if ( is_array( $param ) ) {
2777 $params = $param;
2778 } else {
2779 $params = func_get_args();
2780 }
2781
2782 $s = '';
2783
2784 // We use ` instead of \ as the default LIKE escape character, since addQuotes()
2785 // may escape backslashes, creating problems of double escaping. The `
2786 // character has good cross-DBMS compatibility, avoiding special operators
2787 // in MS SQL like ^ and %
2788 $escapeChar = '`';
2789
2790 foreach ( $params as $value ) {
2791 if ( $value instanceof LikeMatch ) {
2792 $s .= $value->toString();
2793 } else {
2794 $s .= $this->escapeLikeInternal( $value, $escapeChar );
2795 }
2796 }
2797
2798 return ' LIKE ' .
2799 $this->addQuotes( $s ) . ' ESCAPE ' . $this->addQuotes( $escapeChar ) . ' ';
2800 }
2801
2802 public function anyChar() {
2803 return new LikeMatch( '_' );
2804 }
2805
2806 public function anyString() {
2807 return new LikeMatch( '%' );
2808 }
2809
2810 public function nextSequenceValue( $seqName ) {
2811 return null;
2812 }
2813
2814 /**
2815 * USE INDEX clause. Unlikely to be useful for anything but MySQL. This
2816 * is only needed because a) MySQL must be as efficient as possible due to
2817 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2818 * which index to pick. Anyway, other databases might have different
2819 * indexes on a given table. So don't bother overriding this unless you're
2820 * MySQL.
2821 * @param string $index
2822 * @return string
2823 */
2824 public function useIndexClause( $index ) {
2825 return '';
2826 }
2827
2828 /**
2829 * IGNORE INDEX clause. Unlikely to be useful for anything but MySQL. This
2830 * is only needed because a) MySQL must be as efficient as possible due to
2831 * its use on Wikipedia, and b) MySQL 4.0 is kind of dumb sometimes about
2832 * which index to pick. Anyway, other databases might have different
2833 * indexes on a given table. So don't bother overriding this unless you're
2834 * MySQL.
2835 * @param string $index
2836 * @return string
2837 */
2838 public function ignoreIndexClause( $index ) {
2839 return '';
2840 }
2841
2842 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ ) {
2843 if ( count( $rows ) == 0 ) {
2844 return;
2845 }
2846
2847 $uniqueIndexes = (array)$uniqueIndexes;
2848 // Single row case
2849 if ( !is_array( reset( $rows ) ) ) {
2850 $rows = [ $rows ];
2851 }
2852
2853 try {
2854 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2855 $affectedRowCount = 0;
2856 foreach ( $rows as $row ) {
2857 // Delete rows which collide with this one
2858 $indexWhereClauses = [];
2859 foreach ( $uniqueIndexes as $index ) {
2860 $indexColumns = (array)$index;
2861 $indexRowValues = array_intersect_key( $row, array_flip( $indexColumns ) );
2862 if ( count( $indexRowValues ) != count( $indexColumns ) ) {
2863 throw new DBUnexpectedError(
2864 $this,
2865 'New record does not provide all values for unique key (' .
2866 implode( ', ', $indexColumns ) . ')'
2867 );
2868 } elseif ( in_array( null, $indexRowValues, true ) ) {
2869 throw new DBUnexpectedError(
2870 $this,
2871 'New record has a null value for unique key (' .
2872 implode( ', ', $indexColumns ) . ')'
2873 );
2874 }
2875 $indexWhereClauses[] = $this->makeList( $indexRowValues, LIST_AND );
2876 }
2877
2878 if ( $indexWhereClauses ) {
2879 $this->delete( $table, $this->makeList( $indexWhereClauses, LIST_OR ), $fname );
2880 $affectedRowCount += $this->affectedRows();
2881 }
2882
2883 // Now insert the row
2884 $this->insert( $table, $row, $fname );
2885 $affectedRowCount += $this->affectedRows();
2886 }
2887 $this->endAtomic( $fname );
2888 $this->affectedRowCount = $affectedRowCount;
2889 } catch ( Exception $e ) {
2890 $this->cancelAtomic( $fname );
2891 throw $e;
2892 }
2893 }
2894
2895 /**
2896 * REPLACE query wrapper for MySQL and SQLite, which have a native REPLACE
2897 * statement.
2898 *
2899 * @param string $table Table name
2900 * @param array|string $rows Row(s) to insert
2901 * @param string $fname Caller function name
2902 */
2903 protected function nativeReplace( $table, $rows, $fname ) {
2904 $table = $this->tableName( $table );
2905
2906 # Single row case
2907 if ( !is_array( reset( $rows ) ) ) {
2908 $rows = [ $rows ];
2909 }
2910
2911 $sql = "REPLACE INTO $table (" . implode( ',', array_keys( $rows[0] ) ) . ') VALUES ';
2912 $first = true;
2913
2914 foreach ( $rows as $row ) {
2915 if ( $first ) {
2916 $first = false;
2917 } else {
2918 $sql .= ',';
2919 }
2920
2921 $sql .= '(' . $this->makeList( $row ) . ')';
2922 }
2923
2924 $this->query( $sql, $fname );
2925 }
2926
2927 public function upsert( $table, array $rows, $uniqueIndexes, array $set,
2928 $fname = __METHOD__
2929 ) {
2930 if ( $rows === [] ) {
2931 return true; // nothing to do
2932 }
2933
2934 $uniqueIndexes = (array)$uniqueIndexes;
2935 if ( !is_array( reset( $rows ) ) ) {
2936 $rows = [ $rows ];
2937 }
2938
2939 if ( count( $uniqueIndexes ) ) {
2940 $clauses = []; // list WHERE clauses that each identify a single row
2941 foreach ( $rows as $row ) {
2942 foreach ( $uniqueIndexes as $index ) {
2943 $index = is_array( $index ) ? $index : [ $index ]; // columns
2944 $rowKey = []; // unique key to this row
2945 foreach ( $index as $column ) {
2946 $rowKey[$column] = $row[$column];
2947 }
2948 $clauses[] = $this->makeList( $rowKey, self::LIST_AND );
2949 }
2950 }
2951 $where = [ $this->makeList( $clauses, self::LIST_OR ) ];
2952 } else {
2953 $where = false;
2954 }
2955
2956 $affectedRowCount = 0;
2957 try {
2958 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
2959 # Update any existing conflicting row(s)
2960 if ( $where !== false ) {
2961 $this->update( $table, $set, $where, $fname );
2962 $affectedRowCount += $this->affectedRows();
2963 }
2964 # Now insert any non-conflicting row(s)
2965 $this->insert( $table, $rows, $fname, [ 'IGNORE' ] );
2966 $affectedRowCount += $this->affectedRows();
2967 $this->endAtomic( $fname );
2968 $this->affectedRowCount = $affectedRowCount;
2969 } catch ( Exception $e ) {
2970 $this->cancelAtomic( $fname );
2971 throw $e;
2972 }
2973
2974 return true;
2975 }
2976
2977 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2978 $fname = __METHOD__
2979 ) {
2980 if ( !$conds ) {
2981 throw new DBUnexpectedError( $this, __METHOD__ . ' called with empty $conds' );
2982 }
2983
2984 $delTable = $this->tableName( $delTable );
2985 $joinTable = $this->tableName( $joinTable );
2986 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2987 if ( $conds != '*' ) {
2988 $sql .= 'WHERE ' . $this->makeList( $conds, self::LIST_AND );
2989 }
2990 $sql .= ')';
2991
2992 $this->query( $sql, $fname );
2993 }
2994
2995 public function textFieldSize( $table, $field ) {
2996 $table = $this->tableName( $table );
2997 $sql = "SHOW COLUMNS FROM $table LIKE \"$field\"";
2998 $res = $this->query( $sql, __METHOD__ );
2999 $row = $this->fetchObject( $res );
3000
3001 $m = [];
3002
3003 if ( preg_match( '/\((.*)\)/', $row->Type, $m ) ) {
3004 $size = $m[1];
3005 } else {
3006 $size = -1;
3007 }
3008
3009 return $size;
3010 }
3011
3012 public function delete( $table, $conds, $fname = __METHOD__ ) {
3013 if ( !$conds ) {
3014 throw new DBUnexpectedError( $this, __METHOD__ . ' called with no conditions' );
3015 }
3016
3017 $table = $this->tableName( $table );
3018 $sql = "DELETE FROM $table";
3019
3020 if ( $conds != '*' ) {
3021 if ( is_array( $conds ) ) {
3022 $conds = $this->makeList( $conds, self::LIST_AND );
3023 }
3024 $sql .= ' WHERE ' . $conds;
3025 }
3026
3027 $this->query( $sql, $fname );
3028
3029 return true;
3030 }
3031
3032 final public function insertSelect(
3033 $destTable, $srcTable, $varMap, $conds,
3034 $fname = __METHOD__, $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3035 ) {
3036 static $hints = [ 'NO_AUTO_COLUMNS' ];
3037
3038 $insertOptions = (array)$insertOptions;
3039 $selectOptions = (array)$selectOptions;
3040
3041 if ( $this->cliMode && $this->isInsertSelectSafe( $insertOptions, $selectOptions ) ) {
3042 // For massive migrations with downtime, we don't want to select everything
3043 // into memory and OOM, so do all this native on the server side if possible.
3044 $this->nativeInsertSelect(
3045 $destTable,
3046 $srcTable,
3047 $varMap,
3048 $conds,
3049 $fname,
3050 array_diff( $insertOptions, $hints ),
3051 $selectOptions,
3052 $selectJoinConds
3053 );
3054 } else {
3055 $this->nonNativeInsertSelect(
3056 $destTable,
3057 $srcTable,
3058 $varMap,
3059 $conds,
3060 $fname,
3061 array_diff( $insertOptions, $hints ),
3062 $selectOptions,
3063 $selectJoinConds
3064 );
3065 }
3066
3067 return true;
3068 }
3069
3070 /**
3071 * @param array $insertOptions INSERT options
3072 * @param array $selectOptions SELECT options
3073 * @return bool Whether an INSERT SELECT with these options will be replication safe
3074 * @since 1.31
3075 */
3076 protected function isInsertSelectSafe( array $insertOptions, array $selectOptions ) {
3077 return true;
3078 }
3079
3080 /**
3081 * Implementation of insertSelect() based on select() and insert()
3082 *
3083 * @see IDatabase::insertSelect()
3084 * @since 1.30
3085 * @param string $destTable
3086 * @param string|array $srcTable
3087 * @param array $varMap
3088 * @param array $conds
3089 * @param string $fname
3090 * @param array $insertOptions
3091 * @param array $selectOptions
3092 * @param array $selectJoinConds
3093 */
3094 protected function nonNativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3095 $fname = __METHOD__,
3096 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3097 ) {
3098 // For web requests, do a locking SELECT and then INSERT. This puts the SELECT burden
3099 // on only the master (without needing row-based-replication). It also makes it easy to
3100 // know how big the INSERT is going to be.
3101 $fields = [];
3102 foreach ( $varMap as $dstColumn => $sourceColumnOrSql ) {
3103 $fields[] = $this->fieldNameWithAlias( $sourceColumnOrSql, $dstColumn );
3104 }
3105 $selectOptions[] = 'FOR UPDATE';
3106 $res = $this->select(
3107 $srcTable, implode( ',', $fields ), $conds, $fname, $selectOptions, $selectJoinConds
3108 );
3109 if ( !$res ) {
3110 return;
3111 }
3112
3113 try {
3114 $affectedRowCount = 0;
3115 $this->startAtomic( $fname, self::ATOMIC_CANCELABLE );
3116 $rows = [];
3117 $ok = true;
3118 foreach ( $res as $row ) {
3119 $rows[] = (array)$row;
3120
3121 // Avoid inserts that are too huge
3122 if ( count( $rows ) >= $this->nonNativeInsertSelectBatchSize ) {
3123 $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3124 if ( !$ok ) {
3125 break;
3126 }
3127 $affectedRowCount += $this->affectedRows();
3128 $rows = [];
3129 }
3130 }
3131 if ( $rows && $ok ) {
3132 $ok = $this->insert( $destTable, $rows, $fname, $insertOptions );
3133 if ( $ok ) {
3134 $affectedRowCount += $this->affectedRows();
3135 }
3136 }
3137 if ( $ok ) {
3138 $this->endAtomic( $fname );
3139 $this->affectedRowCount = $affectedRowCount;
3140 } else {
3141 $this->cancelAtomic( $fname );
3142 }
3143 } catch ( Exception $e ) {
3144 $this->cancelAtomic( $fname );
3145 throw $e;
3146 }
3147 }
3148
3149 /**
3150 * Native server-side implementation of insertSelect() for situations where
3151 * we don't want to select everything into memory
3152 *
3153 * @see IDatabase::insertSelect()
3154 * @param string $destTable
3155 * @param string|array $srcTable
3156 * @param array $varMap
3157 * @param array $conds
3158 * @param string $fname
3159 * @param array $insertOptions
3160 * @param array $selectOptions
3161 * @param array $selectJoinConds
3162 */
3163 protected function nativeInsertSelect( $destTable, $srcTable, $varMap, $conds,
3164 $fname = __METHOD__,
3165 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3166 ) {
3167 $destTable = $this->tableName( $destTable );
3168
3169 if ( !is_array( $insertOptions ) ) {
3170 $insertOptions = [ $insertOptions ];
3171 }
3172
3173 $insertOptions = $this->makeInsertOptions( $insertOptions );
3174
3175 $selectSql = $this->selectSQLText(
3176 $srcTable,
3177 array_values( $varMap ),
3178 $conds,
3179 $fname,
3180 $selectOptions,
3181 $selectJoinConds
3182 );
3183
3184 $sql = "INSERT $insertOptions" .
3185 " INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ') ' .
3186 $selectSql;
3187
3188 $this->query( $sql, $fname );
3189 }
3190
3191 public function limitResult( $sql, $limit, $offset = false ) {
3192 if ( !is_numeric( $limit ) ) {
3193 throw new DBUnexpectedError(
3194 $this,
3195 "Invalid non-numeric limit passed to " . __METHOD__
3196 );
3197 }
3198 // This version works in MySQL and SQLite. It will very likely need to be
3199 // overridden for most other RDBMS subclasses.
3200 return "$sql LIMIT "
3201 . ( ( is_numeric( $offset ) && $offset != 0 ) ? "{$offset}," : "" )
3202 . "{$limit} ";
3203 }
3204
3205 public function unionSupportsOrderAndLimit() {
3206 return true; // True for almost every DB supported
3207 }
3208
3209 public function unionQueries( $sqls, $all ) {
3210 $glue = $all ? ') UNION ALL (' : ') UNION (';
3211
3212 return '(' . implode( $glue, $sqls ) . ')';
3213 }
3214
3215 public function unionConditionPermutations(
3216 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
3217 $options = [], $join_conds = []
3218 ) {
3219 // First, build the Cartesian product of $permute_conds
3220 $conds = [ [] ];
3221 foreach ( $permute_conds as $field => $values ) {
3222 if ( !$values ) {
3223 // Skip empty $values
3224 continue;
3225 }
3226 $values = array_unique( $values ); // For sanity
3227 $newConds = [];
3228 foreach ( $conds as $cond ) {
3229 foreach ( $values as $value ) {
3230 $cond[$field] = $value;
3231 $newConds[] = $cond; // Arrays are by-value, not by-reference, so this works
3232 }
3233 }
3234 $conds = $newConds;
3235 }
3236
3237 $extra_conds = $extra_conds === '' ? [] : (array)$extra_conds;
3238
3239 // If there's just one condition and no subordering, hand off to
3240 // selectSQLText directly.
3241 if ( count( $conds ) === 1 &&
3242 ( !isset( $options['INNER ORDER BY'] ) || !$this->unionSupportsOrderAndLimit() )
3243 ) {
3244 return $this->selectSQLText(
3245 $table, $vars, $conds[0] + $extra_conds, $fname, $options, $join_conds
3246 );
3247 }
3248
3249 // Otherwise, we need to pull out the order and limit to apply after
3250 // the union. Then build the SQL queries for each set of conditions in
3251 // $conds. Then union them together (using UNION ALL, because the
3252 // product *should* already be distinct).
3253 $orderBy = $this->makeOrderBy( $options );
3254 $limit = $options['LIMIT'] ?? null;
3255 $offset = $options['OFFSET'] ?? false;
3256 $all = empty( $options['NOTALL'] ) && !in_array( 'NOTALL', $options );
3257 if ( !$this->unionSupportsOrderAndLimit() ) {
3258 unset( $options['ORDER BY'], $options['LIMIT'], $options['OFFSET'] );
3259 } else {
3260 if ( array_key_exists( 'INNER ORDER BY', $options ) ) {
3261 $options['ORDER BY'] = $options['INNER ORDER BY'];
3262 }
3263 if ( $limit !== null && is_numeric( $offset ) && $offset != 0 ) {
3264 // We need to increase the limit by the offset rather than
3265 // using the offset directly, otherwise it'll skip incorrectly
3266 // in the subqueries.
3267 $options['LIMIT'] = $limit + $offset;
3268 unset( $options['OFFSET'] );
3269 }
3270 }
3271
3272 $sqls = [];
3273 foreach ( $conds as $cond ) {
3274 $sqls[] = $this->selectSQLText(
3275 $table, $vars, $cond + $extra_conds, $fname, $options, $join_conds
3276 );
3277 }
3278 $sql = $this->unionQueries( $sqls, $all ) . $orderBy;
3279 if ( $limit !== null ) {
3280 $sql = $this->limitResult( $sql, $limit, $offset );
3281 }
3282
3283 return $sql;
3284 }
3285
3286 public function conditional( $cond, $trueVal, $falseVal ) {
3287 if ( is_array( $cond ) ) {
3288 $cond = $this->makeList( $cond, self::LIST_AND );
3289 }
3290
3291 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
3292 }
3293
3294 public function strreplace( $orig, $old, $new ) {
3295 return "REPLACE({$orig}, {$old}, {$new})";
3296 }
3297
3298 public function getServerUptime() {
3299 return 0;
3300 }
3301
3302 public function wasDeadlock() {
3303 return false;
3304 }
3305
3306 public function wasLockTimeout() {
3307 return false;
3308 }
3309
3310 public function wasConnectionLoss() {
3311 return $this->wasConnectionError( $this->lastErrno() );
3312 }
3313
3314 public function wasReadOnlyError() {
3315 return false;
3316 }
3317
3318 public function wasErrorReissuable() {
3319 return (
3320 $this->wasDeadlock() ||
3321 $this->wasLockTimeout() ||
3322 $this->wasConnectionLoss()
3323 );
3324 }
3325
3326 /**
3327 * Do not use this method outside of Database/DBError classes
3328 *
3329 * @param int|string $errno
3330 * @return bool Whether the given query error was a connection drop
3331 */
3332 public function wasConnectionError( $errno ) {
3333 return false;
3334 }
3335
3336 /**
3337 * @return bool Whether it is known that the last query error only caused statement rollback
3338 * @note This is for backwards compatibility for callers catching DBError exceptions in
3339 * order to ignore problems like duplicate key errors or foriegn key violations
3340 * @since 1.31
3341 */
3342 protected function wasKnownStatementRollbackError() {
3343 return false; // don't know; it could have caused a transaction rollback
3344 }
3345
3346 public function deadlockLoop() {
3347 $args = func_get_args();
3348 $function = array_shift( $args );
3349 $tries = self::$DEADLOCK_TRIES;
3350
3351 $this->begin( __METHOD__ );
3352
3353 $retVal = null;
3354 /** @var Exception $e */
3355 $e = null;
3356 do {
3357 try {
3358 $retVal = $function( ...$args );
3359 break;
3360 } catch ( DBQueryError $e ) {
3361 if ( $this->wasDeadlock() ) {
3362 // Retry after a randomized delay
3363 usleep( mt_rand( self::$DEADLOCK_DELAY_MIN, self::$DEADLOCK_DELAY_MAX ) );
3364 } else {
3365 // Throw the error back up
3366 throw $e;
3367 }
3368 }
3369 } while ( --$tries > 0 );
3370
3371 if ( $tries <= 0 ) {
3372 // Too many deadlocks; give up
3373 $this->rollback( __METHOD__ );
3374 throw $e;
3375 } else {
3376 $this->commit( __METHOD__ );
3377
3378 return $retVal;
3379 }
3380 }
3381
3382 public function masterPosWait( DBMasterPos $pos, $timeout ) {
3383 # Real waits are implemented in the subclass.
3384 return 0;
3385 }
3386
3387 public function getReplicaPos() {
3388 # Stub
3389 return false;
3390 }
3391
3392 public function getMasterPos() {
3393 # Stub
3394 return false;
3395 }
3396
3397 public function serverIsReadOnly() {
3398 return false;
3399 }
3400
3401 final public function onTransactionResolution( callable $callback, $fname = __METHOD__ ) {
3402 if ( !$this->trxLevel() ) {
3403 throw new DBUnexpectedError( $this, "No transaction is active" );
3404 }
3405 $this->trxEndCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3406 }
3407
3408 final public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3409 if ( !$this->trxLevel() && $this->getTransactionRoundId() ) {
3410 // Start an implicit transaction similar to how query() does
3411 $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3412 $this->trxAutomatic = true;
3413 }
3414
3415 $this->trxIdleCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3416 if ( !$this->trxLevel() ) {
3417 $this->runOnTransactionIdleCallbacks( self::TRIGGER_IDLE );
3418 }
3419 }
3420
3421 final public function onTransactionIdle( callable $callback, $fname = __METHOD__ ) {
3422 $this->onTransactionCommitOrIdle( $callback, $fname );
3423 }
3424
3425 final public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ ) {
3426 if ( !$this->trxLevel() && $this->getTransactionRoundId() ) {
3427 // Start an implicit transaction similar to how query() does
3428 $this->begin( __METHOD__, self::TRANSACTION_INTERNAL );
3429 $this->trxAutomatic = true;
3430 }
3431
3432 if ( $this->trxLevel() ) {
3433 $this->trxPreCommitCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3434 } else {
3435 // No transaction is active nor will start implicitly, so make one for this callback
3436 $this->startAtomic( __METHOD__, self::ATOMIC_CANCELABLE );
3437 try {
3438 $callback( $this );
3439 $this->endAtomic( __METHOD__ );
3440 } catch ( Exception $e ) {
3441 $this->cancelAtomic( __METHOD__ );
3442 throw $e;
3443 }
3444 }
3445 }
3446
3447 final public function onAtomicSectionCancel( callable $callback, $fname = __METHOD__ ) {
3448 if ( !$this->trxLevel() || !$this->trxAtomicLevels ) {
3449 throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)" );
3450 }
3451 $this->trxSectionCancelCallbacks[] = [ $callback, $fname, $this->currentAtomicSectionId() ];
3452 }
3453
3454 /**
3455 * @return AtomicSectionIdentifier|null ID of the topmost atomic section level
3456 */
3457 private function currentAtomicSectionId() {
3458 if ( $this->trxLevel() && $this->trxAtomicLevels ) {
3459 $levelInfo = end( $this->trxAtomicLevels );
3460
3461 return $levelInfo[1];
3462 }
3463
3464 return null;
3465 }
3466
3467 /**
3468 * Hoist callback ownership for callbacks in a section to a parent section.
3469 * All callbacks should have an owner that is present in trxAtomicLevels.
3470 * @param AtomicSectionIdentifier $old
3471 * @param AtomicSectionIdentifier $new
3472 */
3473 private function reassignCallbacksForSection(
3474 AtomicSectionIdentifier $old, AtomicSectionIdentifier $new
3475 ) {
3476 foreach ( $this->trxPreCommitCallbacks as $key => $info ) {
3477 if ( $info[2] === $old ) {
3478 $this->trxPreCommitCallbacks[$key][2] = $new;
3479 }
3480 }
3481 foreach ( $this->trxIdleCallbacks as $key => $info ) {
3482 if ( $info[2] === $old ) {
3483 $this->trxIdleCallbacks[$key][2] = $new;
3484 }
3485 }
3486 foreach ( $this->trxEndCallbacks as $key => $info ) {
3487 if ( $info[2] === $old ) {
3488 $this->trxEndCallbacks[$key][2] = $new;
3489 }
3490 }
3491 foreach ( $this->trxSectionCancelCallbacks as $key => $info ) {
3492 if ( $info[2] === $old ) {
3493 $this->trxSectionCancelCallbacks[$key][2] = $new;
3494 }
3495 }
3496 }
3497
3498 /**
3499 * Update callbacks that were owned by cancelled atomic sections.
3500 *
3501 * Callbacks for "on commit" should never be run if they're owned by a
3502 * section that won't be committed.
3503 *
3504 * Callbacks for "on resolution" need to reflect that the section was
3505 * rolled back, even if the transaction as a whole commits successfully.
3506 *
3507 * Callbacks for "on section cancel" should already have been consumed,
3508 * but errors during the cancellation itself can prevent that while still
3509 * destroying the section. Hoist any such callbacks to the new top section,
3510 * which we assume will itself have to be cancelled or rolled back to
3511 * resolve the error.
3512 *
3513 * @param AtomicSectionIdentifier[] $sectionIds ID of an actual savepoint
3514 * @param AtomicSectionIdentifier|null $newSectionId New top section ID.
3515 * @throws UnexpectedValueException
3516 */
3517 private function modifyCallbacksForCancel(
3518 array $sectionIds, AtomicSectionIdentifier $newSectionId = null
3519 ) {
3520 // Cancel the "on commit" callbacks owned by this savepoint
3521 $this->trxIdleCallbacks = array_filter(
3522 $this->trxIdleCallbacks,
3523 function ( $entry ) use ( $sectionIds ) {
3524 return !in_array( $entry[2], $sectionIds, true );
3525 }
3526 );
3527 $this->trxPreCommitCallbacks = array_filter(
3528 $this->trxPreCommitCallbacks,
3529 function ( $entry ) use ( $sectionIds ) {
3530 return !in_array( $entry[2], $sectionIds, true );
3531 }
3532 );
3533 // Make "on resolution" callbacks owned by this savepoint to perceive a rollback
3534 foreach ( $this->trxEndCallbacks as $key => $entry ) {
3535 if ( in_array( $entry[2], $sectionIds, true ) ) {
3536 $callback = $entry[0];
3537 $this->trxEndCallbacks[$key][0] = function () use ( $callback ) {
3538 // @phan-suppress-next-line PhanInfiniteRecursion, PhanUndeclaredInvokeInCallable
3539 return $callback( self::TRIGGER_ROLLBACK, $this );
3540 };
3541 // This "on resolution" callback no longer belongs to a section.
3542 $this->trxEndCallbacks[$key][2] = null;
3543 }
3544 }
3545 // Hoist callback ownership for section cancel callbacks to the new top section
3546 foreach ( $this->trxSectionCancelCallbacks as $key => $entry ) {
3547 if ( in_array( $entry[2], $sectionIds, true ) ) {
3548 $this->trxSectionCancelCallbacks[$key][2] = $newSectionId;
3549 }
3550 }
3551 }
3552
3553 final public function setTransactionListener( $name, callable $callback = null ) {
3554 if ( $callback ) {
3555 $this->trxRecurringCallbacks[$name] = $callback;
3556 } else {
3557 unset( $this->trxRecurringCallbacks[$name] );
3558 }
3559 }
3560
3561 /**
3562 * Whether to disable running of post-COMMIT/ROLLBACK callbacks
3563 *
3564 * This method should not be used outside of Database/LoadBalancer
3565 *
3566 * @param bool $suppress
3567 * @since 1.28
3568 */
3569 final public function setTrxEndCallbackSuppression( $suppress ) {
3570 $this->trxEndCallbacksSuppressed = $suppress;
3571 }
3572
3573 /**
3574 * Actually consume and run any "on transaction idle/resolution" callbacks.
3575 *
3576 * This method should not be used outside of Database/LoadBalancer
3577 *
3578 * @param int $trigger IDatabase::TRIGGER_* constant
3579 * @return int Number of callbacks attempted
3580 * @since 1.20
3581 * @throws Exception
3582 */
3583 public function runOnTransactionIdleCallbacks( $trigger ) {
3584 if ( $this->trxLevel() ) { // sanity
3585 throw new DBUnexpectedError( $this, __METHOD__ . ': a transaction is still open' );
3586 }
3587
3588 if ( $this->trxEndCallbacksSuppressed ) {
3589 return 0;
3590 }
3591
3592 $count = 0;
3593 $autoTrx = $this->getFlag( self::DBO_TRX ); // automatic begin() enabled?
3594 /** @var Exception $e */
3595 $e = null; // first exception
3596 do { // callbacks may add callbacks :)
3597 $callbacks = array_merge(
3598 $this->trxIdleCallbacks,
3599 $this->trxEndCallbacks // include "transaction resolution" callbacks
3600 );
3601 $this->trxIdleCallbacks = []; // consumed (and recursion guard)
3602 $this->trxEndCallbacks = []; // consumed (recursion guard)
3603
3604 // Only run trxSectionCancelCallbacks on rollback, not commit.
3605 // But always consume them.
3606 if ( $trigger === self::TRIGGER_ROLLBACK ) {
3607 $callbacks = array_merge( $callbacks, $this->trxSectionCancelCallbacks );
3608 }
3609 $this->trxSectionCancelCallbacks = []; // consumed (recursion guard)
3610
3611 foreach ( $callbacks as $callback ) {
3612 ++$count;
3613 list( $phpCallback ) = $callback;
3614 $this->clearFlag( self::DBO_TRX ); // make each query its own transaction
3615 try {
3616 // @phan-suppress-next-line PhanParamTooManyCallable
3617 call_user_func( $phpCallback, $trigger, $this );
3618 } catch ( Exception $ex ) {
3619 call_user_func( $this->errorLogger, $ex );
3620 $e = $e ?: $ex;
3621 // Some callbacks may use startAtomic/endAtomic, so make sure
3622 // their transactions are ended so other callbacks don't fail
3623 if ( $this->trxLevel() ) {
3624 $this->rollback( __METHOD__, self::FLUSHING_INTERNAL );
3625 }
3626 } finally {
3627 if ( $autoTrx ) {
3628 $this->setFlag( self::DBO_TRX ); // restore automatic begin()
3629 } else {
3630 $this->clearFlag( self::DBO_TRX ); // restore auto-commit
3631 }
3632 }
3633 }
3634 } while ( count( $this->trxIdleCallbacks ) );
3635
3636 if ( $e instanceof Exception ) {
3637 throw $e; // re-throw any first exception
3638 }
3639
3640 return $count;
3641 }
3642
3643 /**
3644 * Actually consume and run any "on transaction pre-commit" callbacks.
3645 *
3646 * This method should not be used outside of Database/LoadBalancer
3647 *
3648 * @since 1.22
3649 * @return int Number of callbacks attempted
3650 * @throws Exception
3651 */
3652 public function runOnTransactionPreCommitCallbacks() {
3653 $count = 0;
3654
3655 $e = null; // first exception
3656 do { // callbacks may add callbacks :)
3657 $callbacks = $this->trxPreCommitCallbacks;
3658 $this->trxPreCommitCallbacks = []; // consumed (and recursion guard)
3659 foreach ( $callbacks as $callback ) {
3660 try {
3661 ++$count;
3662 list( $phpCallback ) = $callback;
3663 // @phan-suppress-next-line PhanUndeclaredInvokeInCallable
3664 $phpCallback( $this );
3665 } catch ( Exception $ex ) {
3666 ( $this->errorLogger )( $ex );
3667 $e = $e ?: $ex;
3668 }
3669 }
3670 } while ( count( $this->trxPreCommitCallbacks ) );
3671
3672 if ( $e instanceof Exception ) {
3673 throw $e; // re-throw any first exception
3674 }
3675
3676 return $count;
3677 }
3678
3679 /**
3680 * Actually run any "atomic section cancel" callbacks.
3681 *
3682 * @param int $trigger IDatabase::TRIGGER_* constant
3683 * @param AtomicSectionIdentifier[]|null $sectionIds Section IDs to cancel,
3684 * null on transaction rollback
3685 */
3686 private function runOnAtomicSectionCancelCallbacks(
3687 $trigger, array $sectionIds = null
3688 ) {
3689 /** @var Exception|Throwable $e */
3690 $e = null; // first exception
3691
3692 $notCancelled = [];
3693 do {
3694 $callbacks = $this->trxSectionCancelCallbacks;
3695 $this->trxSectionCancelCallbacks = []; // consumed (recursion guard)
3696 foreach ( $callbacks as $entry ) {
3697 if ( $sectionIds === null || in_array( $entry[2], $sectionIds, true ) ) {
3698 try {
3699 // @phan-suppress-next-line PhanUndeclaredInvokeInCallable
3700 $entry[0]( $trigger, $this );
3701 } catch ( Exception $ex ) {
3702 ( $this->errorLogger )( $ex );
3703 $e = $e ?: $ex;
3704 } catch ( Throwable $ex ) {
3705 // @todo: Log?
3706 $e = $e ?: $ex;
3707 }
3708 } else {
3709 $notCancelled[] = $entry;
3710 }
3711 }
3712 } while ( count( $this->trxSectionCancelCallbacks ) );
3713 $this->trxSectionCancelCallbacks = $notCancelled;
3714
3715 if ( $e !== null ) {
3716 throw $e; // re-throw any first Exception/Throwable
3717 }
3718 }
3719
3720 /**
3721 * Actually run any "transaction listener" callbacks.
3722 *
3723 * This method should not be used outside of Database/LoadBalancer
3724 *
3725 * @param int $trigger IDatabase::TRIGGER_* constant
3726 * @throws Exception
3727 * @since 1.20
3728 */
3729 public function runTransactionListenerCallbacks( $trigger ) {
3730 if ( $this->trxEndCallbacksSuppressed ) {
3731 return;
3732 }
3733
3734 /** @var Exception $e */
3735 $e = null; // first exception
3736
3737 foreach ( $this->trxRecurringCallbacks as $phpCallback ) {
3738 try {
3739 $phpCallback( $trigger, $this );
3740 } catch ( Exception $ex ) {
3741 ( $this->errorLogger )( $ex );
3742 $e = $e ?: $ex;
3743 }
3744 }
3745
3746 if ( $e instanceof Exception ) {
3747 throw $e; // re-throw any first exception
3748 }
3749 }
3750
3751 /**
3752 * Create a savepoint
3753 *
3754 * This is used internally to implement atomic sections. It should not be
3755 * used otherwise.
3756 *
3757 * @since 1.31
3758 * @param string $identifier Identifier for the savepoint
3759 * @param string $fname Calling function name
3760 */
3761 protected function doSavepoint( $identifier, $fname ) {
3762 $this->query( 'SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3763 }
3764
3765 /**
3766 * Release a savepoint
3767 *
3768 * This is used internally to implement atomic sections. It should not be
3769 * used otherwise.
3770 *
3771 * @since 1.31
3772 * @param string $identifier Identifier for the savepoint
3773 * @param string $fname Calling function name
3774 */
3775 protected function doReleaseSavepoint( $identifier, $fname ) {
3776 $this->query( 'RELEASE SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3777 }
3778
3779 /**
3780 * Rollback to a savepoint
3781 *
3782 * This is used internally to implement atomic sections. It should not be
3783 * used otherwise.
3784 *
3785 * @since 1.31
3786 * @param string $identifier Identifier for the savepoint
3787 * @param string $fname Calling function name
3788 */
3789 protected function doRollbackToSavepoint( $identifier, $fname ) {
3790 $this->query( 'ROLLBACK TO SAVEPOINT ' . $this->addIdentifierQuotes( $identifier ), $fname );
3791 }
3792
3793 /**
3794 * @param string $fname
3795 * @return string
3796 */
3797 private function nextSavepointId( $fname ) {
3798 $savepointId = self::$SAVEPOINT_PREFIX . ++$this->trxAtomicCounter;
3799 if ( strlen( $savepointId ) > 30 ) {
3800 // 30 == Oracle's identifier length limit (pre 12c)
3801 // With a 22 character prefix, that puts the highest number at 99999999.
3802 throw new DBUnexpectedError(
3803 $this,
3804 'There have been an excessively large number of atomic sections in a transaction'
3805 . " started by $this->trxFname (at $fname)"
3806 );
3807 }
3808
3809 return $savepointId;
3810 }
3811
3812 final public function startAtomic(
3813 $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE
3814 ) {
3815 $savepointId = $cancelable === self::ATOMIC_CANCELABLE ? self::$NOT_APPLICABLE : null;
3816
3817 if ( !$this->trxLevel() ) {
3818 $this->begin( $fname, self::TRANSACTION_INTERNAL ); // sets trxAutomatic
3819 // If DBO_TRX is set, a series of startAtomic/endAtomic pairs will result
3820 // in all changes being in one transaction to keep requests transactional.
3821 if ( $this->getFlag( self::DBO_TRX ) ) {
3822 // Since writes could happen in between the topmost atomic sections as part
3823 // of the transaction, those sections will need savepoints.
3824 $savepointId = $this->nextSavepointId( $fname );
3825 $this->doSavepoint( $savepointId, $fname );
3826 } else {
3827 $this->trxAutomaticAtomic = true;
3828 }
3829 } elseif ( $cancelable === self::ATOMIC_CANCELABLE ) {
3830 $savepointId = $this->nextSavepointId( $fname );
3831 $this->doSavepoint( $savepointId, $fname );
3832 }
3833
3834 $sectionId = new AtomicSectionIdentifier;
3835 $this->trxAtomicLevels[] = [ $fname, $sectionId, $savepointId ];
3836 $this->queryLogger->debug( 'startAtomic: entering level ' .
3837 ( count( $this->trxAtomicLevels ) - 1 ) . " ($fname)" );
3838
3839 return $sectionId;
3840 }
3841
3842 final public function endAtomic( $fname = __METHOD__ ) {
3843 if ( !$this->trxLevel() || !$this->trxAtomicLevels ) {
3844 throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)" );
3845 }
3846
3847 // Check if the current section matches $fname
3848 $pos = count( $this->trxAtomicLevels ) - 1;
3849 list( $savedFname, $sectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3850 $this->queryLogger->debug( "endAtomic: leaving level $pos ($fname)" );
3851
3852 if ( $savedFname !== $fname ) {
3853 throw new DBUnexpectedError(
3854 $this,
3855 "Invalid atomic section ended (got $fname but expected $savedFname)"
3856 );
3857 }
3858
3859 // Remove the last section (no need to re-index the array)
3860 array_pop( $this->trxAtomicLevels );
3861
3862 if ( !$this->trxAtomicLevels && $this->trxAutomaticAtomic ) {
3863 $this->commit( $fname, self::FLUSHING_INTERNAL );
3864 } elseif ( $savepointId !== null && $savepointId !== self::$NOT_APPLICABLE ) {
3865 $this->doReleaseSavepoint( $savepointId, $fname );
3866 }
3867
3868 // Hoist callback ownership for callbacks in the section that just ended;
3869 // all callbacks should have an owner that is present in trxAtomicLevels.
3870 $currentSectionId = $this->currentAtomicSectionId();
3871 if ( $currentSectionId ) {
3872 $this->reassignCallbacksForSection( $sectionId, $currentSectionId );
3873 }
3874 }
3875
3876 final public function cancelAtomic(
3877 $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null
3878 ) {
3879 if ( !$this->trxLevel() || !$this->trxAtomicLevels ) {
3880 throw new DBUnexpectedError( $this, "No atomic section is open (got $fname)" );
3881 }
3882
3883 $excisedIds = [];
3884 $newTopSection = $this->currentAtomicSectionId();
3885 try {
3886 $excisedFnames = [];
3887 if ( $sectionId !== null ) {
3888 // Find the (last) section with the given $sectionId
3889 $pos = -1;
3890 foreach ( $this->trxAtomicLevels as $i => list( $asFname, $asId, $spId ) ) {
3891 if ( $asId === $sectionId ) {
3892 $pos = $i;
3893 }
3894 }
3895 if ( $pos < 0 ) {
3896 throw new DBUnexpectedError( $this, "Atomic section not found (for $fname)" );
3897 }
3898 // Remove all descendant sections and re-index the array
3899 $len = count( $this->trxAtomicLevels );
3900 for ( $i = $pos + 1; $i < $len; ++$i ) {
3901 $excisedFnames[] = $this->trxAtomicLevels[$i][0];
3902 $excisedIds[] = $this->trxAtomicLevels[$i][1];
3903 }
3904 $this->trxAtomicLevels = array_slice( $this->trxAtomicLevels, 0, $pos + 1 );
3905 $newTopSection = $this->currentAtomicSectionId();
3906 }
3907
3908 // Check if the current section matches $fname
3909 $pos = count( $this->trxAtomicLevels ) - 1;
3910 list( $savedFname, $savedSectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3911
3912 if ( $excisedFnames ) {
3913 $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname) " .
3914 "and descendants " . implode( ', ', $excisedFnames ) );
3915 } else {
3916 $this->queryLogger->debug( "cancelAtomic: canceling level $pos ($savedFname)" );
3917 }
3918
3919 if ( $savedFname !== $fname ) {
3920 throw new DBUnexpectedError(
3921 $this,
3922 "Invalid atomic section ended (got $fname but expected $savedFname)"
3923 );
3924 }
3925
3926 // Remove the last section (no need to re-index the array)
3927 array_pop( $this->trxAtomicLevels );
3928 $excisedIds[] = $savedSectionId;
3929 $newTopSection = $this->currentAtomicSectionId();
3930
3931 if ( $savepointId !== null ) {
3932 // Rollback the transaction to the state just before this atomic section
3933 if ( $savepointId === self::$NOT_APPLICABLE ) {
3934 $this->rollback( $fname, self::FLUSHING_INTERNAL );
3935 // Note: rollback() will run trxSectionCancelCallbacks
3936 } else {
3937 $this->doRollbackToSavepoint( $savepointId, $fname );
3938 $this->trxStatus = self::STATUS_TRX_OK; // no exception; recovered
3939 $this->trxStatusIgnoredCause = null;
3940
3941 // Run trxSectionCancelCallbacks now.
3942 $this->runOnAtomicSectionCancelCallbacks( self::TRIGGER_CANCEL, $excisedIds );
3943 }
3944 } elseif ( $this->trxStatus > self::STATUS_TRX_ERROR ) {
3945 // Put the transaction into an error state if it's not already in one
3946 $this->trxStatus = self::STATUS_TRX_ERROR;
3947 $this->trxStatusCause = new DBUnexpectedError(
3948 $this,
3949 "Uncancelable atomic section canceled (got $fname)"
3950 );
3951 }
3952 } finally {
3953 // Fix up callbacks owned by the sections that were just cancelled.
3954 // All callbacks should have an owner that is present in trxAtomicLevels.
3955 $this->modifyCallbacksForCancel( $excisedIds, $newTopSection );
3956 }
3957
3958 $this->affectedRowCount = 0; // for the sake of consistency
3959 }
3960
3961 final public function doAtomicSection(
3962 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
3963 ) {
3964 $sectionId = $this->startAtomic( $fname, $cancelable );
3965 try {
3966 $res = $callback( $this, $fname );
3967 } catch ( Exception $e ) {
3968 $this->cancelAtomic( $fname, $sectionId );
3969
3970 throw $e;
3971 }
3972 $this->endAtomic( $fname );
3973
3974 return $res;
3975 }
3976
3977 final public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT ) {
3978 static $modes = [ self::TRANSACTION_EXPLICIT, self::TRANSACTION_INTERNAL ];
3979 if ( !in_array( $mode, $modes, true ) ) {
3980 throw new DBUnexpectedError( $this, "$fname: invalid mode parameter '$mode'" );
3981 }
3982
3983 // Protect against mismatched atomic section, transaction nesting, and snapshot loss
3984 if ( $this->trxLevel() ) {
3985 if ( $this->trxAtomicLevels ) {
3986 $levels = $this->flatAtomicSectionList();
3987 $msg = "$fname: got explicit BEGIN while atomic section(s) $levels are open";
3988 throw new DBUnexpectedError( $this, $msg );
3989 } elseif ( !$this->trxAutomatic ) {
3990 $msg = "$fname: explicit transaction already active (from {$this->trxFname})";
3991 throw new DBUnexpectedError( $this, $msg );
3992 } else {
3993 $msg = "$fname: implicit transaction already active (from {$this->trxFname})";
3994 throw new DBUnexpectedError( $this, $msg );
3995 }
3996 } elseif ( $this->getFlag( self::DBO_TRX ) && $mode !== self::TRANSACTION_INTERNAL ) {
3997 $msg = "$fname: implicit transaction expected (DBO_TRX set)";
3998 throw new DBUnexpectedError( $this, $msg );
3999 }
4000
4001 $this->assertHasConnectionHandle();
4002
4003 $this->doBegin( $fname );
4004 $this->trxShortId = sprintf( '%06x', mt_rand( 0, 0xffffff ) );
4005 $this->trxStatus = self::STATUS_TRX_OK;
4006 $this->trxStatusIgnoredCause = null;
4007 $this->trxAtomicCounter = 0;
4008 $this->trxTimestamp = microtime( true );
4009 $this->trxFname = $fname;
4010 $this->trxDoneWrites = false;
4011 $this->trxAutomaticAtomic = false;
4012 $this->trxAtomicLevels = [];
4013 $this->trxWriteDuration = 0.0;
4014 $this->trxWriteQueryCount = 0;
4015 $this->trxWriteAffectedRows = 0;
4016 $this->trxWriteAdjDuration = 0.0;
4017 $this->trxWriteAdjQueryCount = 0;
4018 $this->trxWriteCallers = [];
4019 // First SELECT after BEGIN will establish the snapshot in REPEATABLE-READ.
4020 // Get an estimate of the replication lag before any such queries.
4021 $this->trxReplicaLag = null; // clear cached value first
4022 $this->trxReplicaLag = $this->getApproximateLagStatus()['lag'];
4023 // T147697: make explicitTrxActive() return true until begin() finishes. This way, no
4024 // caller will think its OK to muck around with the transaction just because startAtomic()
4025 // has not yet completed (e.g. setting trxAtomicLevels).
4026 $this->trxAutomatic = ( $mode === self::TRANSACTION_INTERNAL );
4027 }
4028
4029 /**
4030 * Issues the BEGIN command to the database server.
4031 *
4032 * @see Database::begin()
4033 * @param string $fname
4034 * @throws DBError
4035 */
4036 protected function doBegin( $fname ) {
4037 $this->query( 'BEGIN', $fname );
4038 }
4039
4040 final public function commit( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
4041 static $modes = [ self::FLUSHING_ONE, self::FLUSHING_ALL_PEERS, self::FLUSHING_INTERNAL ];
4042 if ( !in_array( $flush, $modes, true ) ) {
4043 throw new DBUnexpectedError( $this, "$fname: invalid flush parameter '$flush'" );
4044 }
4045
4046 if ( $this->trxLevel() && $this->trxAtomicLevels ) {
4047 // There are still atomic sections open; this cannot be ignored
4048 $levels = $this->flatAtomicSectionList();
4049 throw new DBUnexpectedError(
4050 $this,
4051 "$fname: got COMMIT while atomic sections $levels are still open"
4052 );
4053 }
4054
4055 if ( $flush === self::FLUSHING_INTERNAL || $flush === self::FLUSHING_ALL_PEERS ) {
4056 if ( !$this->trxLevel() ) {
4057 return; // nothing to do
4058 } elseif ( !$this->trxAutomatic ) {
4059 throw new DBUnexpectedError(
4060 $this,
4061 "$fname: flushing an explicit transaction, getting out of sync"
4062 );
4063 }
4064 } elseif ( !$this->trxLevel() ) {
4065 $this->queryLogger->error(
4066 "$fname: no transaction to commit, something got out of sync" );
4067 return; // nothing to do
4068 } elseif ( $this->trxAutomatic ) {
4069 throw new DBUnexpectedError(
4070 $this,
4071 "$fname: expected mass commit of all peer transactions (DBO_TRX set)"
4072 );
4073 }
4074
4075 $this->assertHasConnectionHandle();
4076
4077 $this->runOnTransactionPreCommitCallbacks();
4078
4079 $writeTime = $this->pendingWriteQueryDuration( self::ESTIMATE_DB_APPLY );
4080 $this->doCommit( $fname );
4081 $oldTrxShortId = $this->consumeTrxShortId();
4082 $this->trxStatus = self::STATUS_TRX_NONE;
4083
4084 if ( $this->trxDoneWrites ) {
4085 $this->lastWriteTime = microtime( true );
4086 $this->trxProfiler->transactionWritingOut(
4087 $this->server,
4088 $this->getDomainID(),
4089 $oldTrxShortId,
4090 $writeTime,
4091 $this->trxWriteAffectedRows
4092 );
4093 }
4094
4095 // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
4096 if ( $flush !== self::FLUSHING_ALL_PEERS ) {
4097 $this->runOnTransactionIdleCallbacks( self::TRIGGER_COMMIT );
4098 $this->runTransactionListenerCallbacks( self::TRIGGER_COMMIT );
4099 }
4100 }
4101
4102 /**
4103 * Issues the COMMIT command to the database server.
4104 *
4105 * @see Database::commit()
4106 * @param string $fname
4107 * @throws DBError
4108 */
4109 protected function doCommit( $fname ) {
4110 if ( $this->trxLevel() ) {
4111 $this->query( 'COMMIT', $fname );
4112 }
4113 }
4114
4115 final public function rollback( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
4116 $trxActive = $this->trxLevel();
4117
4118 if ( $flush !== self::FLUSHING_INTERNAL
4119 && $flush !== self::FLUSHING_ALL_PEERS
4120 && $this->getFlag( self::DBO_TRX )
4121 ) {
4122 throw new DBUnexpectedError(
4123 $this,
4124 "$fname: Expected mass rollback of all peer transactions (DBO_TRX set)"
4125 );
4126 }
4127
4128 if ( $trxActive ) {
4129 $this->assertHasConnectionHandle();
4130
4131 $this->doRollback( $fname );
4132 $oldTrxShortId = $this->consumeTrxShortId();
4133 $this->trxStatus = self::STATUS_TRX_NONE;
4134 $this->trxAtomicLevels = [];
4135 // Estimate the RTT via a query now that trxStatus is OK
4136 $writeTime = $this->pingAndCalculateLastTrxApplyTime();
4137
4138 if ( $this->trxDoneWrites ) {
4139 $this->trxProfiler->transactionWritingOut(
4140 $this->server,
4141 $this->getDomainID(),
4142 $oldTrxShortId,
4143 $writeTime,
4144 $this->trxWriteAffectedRows
4145 );
4146 }
4147 }
4148
4149 // Clear any commit-dependant callbacks. They might even be present
4150 // only due to transaction rounds, with no SQL transaction being active
4151 $this->trxIdleCallbacks = [];
4152 $this->trxPreCommitCallbacks = [];
4153
4154 // With FLUSHING_ALL_PEERS, callbacks will be explicitly run later
4155 if ( $trxActive && $flush !== self::FLUSHING_ALL_PEERS ) {
4156 try {
4157 $this->runOnTransactionIdleCallbacks( self::TRIGGER_ROLLBACK );
4158 } catch ( Exception $e ) {
4159 // already logged; finish and let LoadBalancer move on during mass-rollback
4160 }
4161 try {
4162 $this->runTransactionListenerCallbacks( self::TRIGGER_ROLLBACK );
4163 } catch ( Exception $e ) {
4164 // already logged; let LoadBalancer move on during mass-rollback
4165 }
4166
4167 $this->affectedRowCount = 0; // for the sake of consistency
4168 }
4169 }
4170
4171 /**
4172 * Issues the ROLLBACK command to the database server.
4173 *
4174 * @see Database::rollback()
4175 * @param string $fname
4176 * @throws DBError
4177 */
4178 protected function doRollback( $fname ) {
4179 if ( $this->trxLevel() ) {
4180 # Disconnects cause rollback anyway, so ignore those errors
4181 $ignoreErrors = true;
4182 $this->query( 'ROLLBACK', $fname, $ignoreErrors );
4183 }
4184 }
4185
4186 public function flushSnapshot( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
4187 if ( $this->explicitTrxActive() ) {
4188 // Committing this transaction would break callers that assume it is still open
4189 throw new DBUnexpectedError(
4190 $this,
4191 "$fname: Cannot flush snapshot; " .
4192 "explicit transaction '{$this->trxFname}' is still open"
4193 );
4194 } elseif ( $this->writesOrCallbacksPending() ) {
4195 // This only flushes transactions to clear snapshots, not to write data
4196 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4197 throw new DBUnexpectedError(
4198 $this,
4199 "$fname: Cannot flush snapshot; " .
4200 "writes from transaction {$this->trxFname} are still pending ($fnames)"
4201 );
4202 } elseif (
4203 $this->trxLevel() &&
4204 $this->getTransactionRoundId() &&
4205 $flush !== self::FLUSHING_INTERNAL &&
4206 $flush !== self::FLUSHING_ALL_PEERS
4207 ) {
4208 $this->queryLogger->warning(
4209 "$fname: Expected mass snapshot flush of all peer transactions " .
4210 "in the explicit transactions round '{$this->getTransactionRoundId()}'",
4211 [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
4212 );
4213 }
4214
4215 $this->commit( $fname, self::FLUSHING_INTERNAL );
4216 }
4217
4218 public function explicitTrxActive() {
4219 return $this->trxLevel() && ( $this->trxAtomicLevels || !$this->trxAutomatic );
4220 }
4221
4222 public function duplicateTableStructure(
4223 $oldName, $newName, $temporary = false, $fname = __METHOD__
4224 ) {
4225 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4226 }
4227
4228 public function listTables( $prefix = null, $fname = __METHOD__ ) {
4229 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4230 }
4231
4232 public function listViews( $prefix = null, $fname = __METHOD__ ) {
4233 throw new RuntimeException( __METHOD__ . ' is not implemented in descendant class' );
4234 }
4235
4236 public function timestamp( $ts = 0 ) {
4237 $t = new ConvertibleTimestamp( $ts );
4238 // Let errors bubble up to avoid putting garbage in the DB
4239 return $t->getTimestamp( TS_MW );
4240 }
4241
4242 public function timestampOrNull( $ts = null ) {
4243 if ( is_null( $ts ) ) {
4244 return null;
4245 } else {
4246 return $this->timestamp( $ts );
4247 }
4248 }
4249
4250 public function affectedRows() {
4251 return ( $this->affectedRowCount === null )
4252 ? $this->fetchAffectedRowCount() // default to driver value
4253 : $this->affectedRowCount;
4254 }
4255
4256 /**
4257 * @return int Number of retrieved rows according to the driver
4258 */
4259 abstract protected function fetchAffectedRowCount();
4260
4261 /**
4262 * Take a query result and wrap it in an iterable result wrapper if necessary.
4263 * Booleans are passed through as-is to indicate success/failure of write queries.
4264 *
4265 * Once upon a time, Database::query() returned a bare MySQL result
4266 * resource, and it was necessary to call this function to convert it to
4267 * a wrapper. Nowadays, raw database objects are never exposed to external
4268 * callers, so this is unnecessary in external code.
4269 *
4270 * @param bool|IResultWrapper|resource $result
4271 * @return bool|IResultWrapper
4272 */
4273 protected function resultObject( $result ) {
4274 if ( !$result ) {
4275 return false; // failed query
4276 } elseif ( $result instanceof IResultWrapper ) {
4277 return $result;
4278 } elseif ( $result === true ) {
4279 return $result; // succesful write query
4280 } else {
4281 return new ResultWrapper( $this, $result );
4282 }
4283 }
4284
4285 public function ping( &$rtt = null ) {
4286 // Avoid hitting the server if it was hit recently
4287 if ( $this->isOpen() && ( microtime( true ) - $this->lastPing ) < self::$PING_TTL ) {
4288 if ( !func_num_args() || $this->lastRoundTripEstimate > 0 ) {
4289 $rtt = $this->lastRoundTripEstimate;
4290 return true; // don't care about $rtt
4291 }
4292 }
4293
4294 // This will reconnect if possible or return false if not
4295 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_SILENCE_ERRORS;
4296 $ok = ( $this->query( self::$PING_QUERY, __METHOD__, $flags ) !== false );
4297 if ( $ok ) {
4298 $rtt = $this->lastRoundTripEstimate;
4299 }
4300
4301 return $ok;
4302 }
4303
4304 /**
4305 * Close any existing (dead) database connection and open a new connection
4306 *
4307 * @param string $fname
4308 * @return bool True if new connection is opened successfully, false if error
4309 */
4310 protected function replaceLostConnection( $fname ) {
4311 $this->closeConnection();
4312 $this->conn = null;
4313
4314 $this->handleSessionLossPreconnect();
4315
4316 try {
4317 $this->open(
4318 $this->server,
4319 $this->user,
4320 $this->password,
4321 $this->currentDomain->getDatabase(),
4322 $this->currentDomain->getSchema(),
4323 $this->tablePrefix()
4324 );
4325 $this->lastPing = microtime( true );
4326 $ok = true;
4327
4328 $this->connLogger->warning(
4329 $fname . ': lost connection to {dbserver}; reconnected',
4330 [
4331 'dbserver' => $this->getServer(),
4332 'trace' => ( new RuntimeException() )->getTraceAsString()
4333 ]
4334 );
4335 } catch ( DBConnectionError $e ) {
4336 $ok = false;
4337
4338 $this->connLogger->error(
4339 $fname . ': lost connection to {dbserver} permanently',
4340 [ 'dbserver' => $this->getServer() ]
4341 );
4342 }
4343
4344 $this->handleSessionLossPostconnect();
4345
4346 return $ok;
4347 }
4348
4349 public function getSessionLagStatus() {
4350 return $this->getRecordedTransactionLagStatus() ?: $this->getApproximateLagStatus();
4351 }
4352
4353 /**
4354 * Get the replica DB lag when the current transaction started
4355 *
4356 * This is useful when transactions might use snapshot isolation
4357 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
4358 * is this lag plus transaction duration. If they don't, it is still
4359 * safe to be pessimistic. This returns null if there is no transaction.
4360 *
4361 * This returns null if the lag status for this transaction was not yet recorded.
4362 *
4363 * @return array|null ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
4364 * @since 1.27
4365 */
4366 final protected function getRecordedTransactionLagStatus() {
4367 return ( $this->trxLevel() && $this->trxReplicaLag !== null )
4368 ? [ 'lag' => $this->trxReplicaLag, 'since' => $this->trxTimestamp() ]
4369 : null;
4370 }
4371
4372 /**
4373 * Get a replica DB lag estimate for this server
4374 *
4375 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of estimate)
4376 * @since 1.27
4377 */
4378 protected function getApproximateLagStatus() {
4379 return [
4380 'lag' => $this->getLBInfo( 'replica' ) ? $this->getLag() : 0,
4381 'since' => microtime( true )
4382 ];
4383 }
4384
4385 /**
4386 * Merge the result of getSessionLagStatus() for several DBs
4387 * using the most pessimistic values to estimate the lag of
4388 * any data derived from them in combination
4389 *
4390 * This is information is useful for caching modules
4391 *
4392 * @see WANObjectCache::set()
4393 * @see WANObjectCache::getWithSetCallback()
4394 *
4395 * @param IDatabase $db1
4396 * @param IDatabase|null $db2 [optional]
4397 * @return array Map of values:
4398 * - lag: highest lag of any of the DBs or false on error (e.g. replication stopped)
4399 * - since: oldest UNIX timestamp of any of the DB lag estimates
4400 * - pending: whether any of the DBs have uncommitted changes
4401 * @throws DBError
4402 * @since 1.27
4403 */
4404 public static function getCacheSetOptions( IDatabase $db1, IDatabase $db2 = null ) {
4405 $res = [ 'lag' => 0, 'since' => INF, 'pending' => false ];
4406 foreach ( func_get_args() as $db ) {
4407 /** @var IDatabase $db */
4408 $status = $db->getSessionLagStatus();
4409 if ( $status['lag'] === false ) {
4410 $res['lag'] = false;
4411 } elseif ( $res['lag'] !== false ) {
4412 $res['lag'] = max( $res['lag'], $status['lag'] );
4413 }
4414 $res['since'] = min( $res['since'], $status['since'] );
4415 $res['pending'] = $res['pending'] ?: $db->writesPending();
4416 }
4417
4418 return $res;
4419 }
4420
4421 public function getLag() {
4422 if ( $this->getLBInfo( 'master' ) ) {
4423 return 0; // this is the master
4424 } elseif ( $this->getLBInfo( 'is static' ) ) {
4425 return 0; // static dataset
4426 }
4427
4428 return $this->doGetLag();
4429 }
4430
4431 protected function doGetLag() {
4432 return 0;
4433 }
4434
4435 public function maxListLen() {
4436 return 0;
4437 }
4438
4439 public function encodeBlob( $b ) {
4440 return $b;
4441 }
4442
4443 public function decodeBlob( $b ) {
4444 if ( $b instanceof Blob ) {
4445 $b = $b->fetch();
4446 }
4447 return $b;
4448 }
4449
4450 public function setSessionOptions( array $options ) {
4451 }
4452
4453 public function sourceFile(
4454 $filename,
4455 callable $lineCallback = null,
4456 callable $resultCallback = null,
4457 $fname = false,
4458 callable $inputCallback = null
4459 ) {
4460 AtEase::suppressWarnings();
4461 $fp = fopen( $filename, 'r' );
4462 AtEase::restoreWarnings();
4463
4464 if ( $fp === false ) {
4465 throw new RuntimeException( "Could not open \"{$filename}\"" );
4466 }
4467
4468 if ( !$fname ) {
4469 $fname = __METHOD__ . "( $filename )";
4470 }
4471
4472 try {
4473 $error = $this->sourceStream(
4474 $fp, $lineCallback, $resultCallback, $fname, $inputCallback );
4475 } catch ( Exception $e ) {
4476 fclose( $fp );
4477 throw $e;
4478 }
4479
4480 fclose( $fp );
4481
4482 return $error;
4483 }
4484
4485 public function setSchemaVars( $vars ) {
4486 $this->schemaVars = is_array( $vars ) ? $vars : null;
4487 }
4488
4489 public function sourceStream(
4490 $fp,
4491 callable $lineCallback = null,
4492 callable $resultCallback = null,
4493 $fname = __METHOD__,
4494 callable $inputCallback = null
4495 ) {
4496 $delimiterReset = new ScopedCallback(
4497 function ( $delimiter ) {
4498 $this->delimiter = $delimiter;
4499 },
4500 [ $this->delimiter ]
4501 );
4502 $cmd = '';
4503
4504 while ( !feof( $fp ) ) {
4505 if ( $lineCallback ) {
4506 call_user_func( $lineCallback );
4507 }
4508
4509 $line = trim( fgets( $fp ) );
4510
4511 if ( $line == '' ) {
4512 continue;
4513 }
4514
4515 if ( $line[0] == '-' && $line[1] == '-' ) {
4516 continue;
4517 }
4518
4519 if ( $cmd != '' ) {
4520 $cmd .= ' ';
4521 }
4522
4523 $done = $this->streamStatementEnd( $cmd, $line );
4524
4525 $cmd .= "$line\n";
4526
4527 if ( $done || feof( $fp ) ) {
4528 $cmd = $this->replaceVars( $cmd );
4529
4530 if ( $inputCallback ) {
4531 $callbackResult = $inputCallback( $cmd );
4532
4533 if ( is_string( $callbackResult ) || !$callbackResult ) {
4534 $cmd = $callbackResult;
4535 }
4536 }
4537
4538 if ( $cmd ) {
4539 $res = $this->query( $cmd, $fname );
4540
4541 if ( $resultCallback ) {
4542 $resultCallback( $res, $this );
4543 }
4544
4545 if ( $res === false ) {
4546 $err = $this->lastError();
4547
4548 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
4549 }
4550 }
4551 $cmd = '';
4552 }
4553 }
4554
4555 ScopedCallback::consume( $delimiterReset );
4556 return true;
4557 }
4558
4559 /**
4560 * Called by sourceStream() to check if we've reached a statement end
4561 *
4562 * @param string &$sql SQL assembled so far
4563 * @param string &$newLine New line about to be added to $sql
4564 * @return bool Whether $newLine contains end of the statement
4565 */
4566 public function streamStatementEnd( &$sql, &$newLine ) {
4567 if ( $this->delimiter ) {
4568 $prev = $newLine;
4569 $newLine = preg_replace(
4570 '/' . preg_quote( $this->delimiter, '/' ) . '$/', '', $newLine );
4571 if ( $newLine != $prev ) {
4572 return true;
4573 }
4574 }
4575
4576 return false;
4577 }
4578
4579 /**
4580 * Database independent variable replacement. Replaces a set of variables
4581 * in an SQL statement with their contents as given by $this->getSchemaVars().
4582 *
4583 * Supports '{$var}' `{$var}` and / *$var* / (without the spaces) style variables.
4584 *
4585 * - '{$var}' should be used for text and is passed through the database's
4586 * addQuotes method.
4587 * - `{$var}` should be used for identifiers (e.g. table and database names).
4588 * It is passed through the database's addIdentifierQuotes method which
4589 * can be overridden if the database uses something other than backticks.
4590 * - / *_* / or / *$wgDBprefix* / passes the name that follows through the
4591 * database's tableName method.
4592 * - / *i* / passes the name that follows through the database's indexName method.
4593 * - In all other cases, / *$var* / is left unencoded. Except for table options,
4594 * its use should be avoided. In 1.24 and older, string encoding was applied.
4595 *
4596 * @param string $ins SQL statement to replace variables in
4597 * @return string The new SQL statement with variables replaced
4598 */
4599 protected function replaceVars( $ins ) {
4600 $vars = $this->getSchemaVars();
4601 return preg_replace_callback(
4602 '!
4603 /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
4604 \'\{\$ (\w+) }\' | # 3. addQuotes
4605 `\{\$ (\w+) }` | # 4. addIdentifierQuotes
4606 /\*\$ (\w+) \*/ # 5. leave unencoded
4607 !x',
4608 function ( $m ) use ( $vars ) {
4609 // Note: Because of <https://bugs.php.net/bug.php?id=51881>,
4610 // check for both nonexistent keys *and* the empty string.
4611 if ( isset( $m[1] ) && $m[1] !== '' ) {
4612 if ( $m[1] === 'i' ) {
4613 return $this->indexName( $m[2] );
4614 } else {
4615 return $this->tableName( $m[2] );
4616 }
4617 } elseif ( isset( $m[3] ) && $m[3] !== '' && array_key_exists( $m[3], $vars ) ) {
4618 return $this->addQuotes( $vars[$m[3]] );
4619 } elseif ( isset( $m[4] ) && $m[4] !== '' && array_key_exists( $m[4], $vars ) ) {
4620 return $this->addIdentifierQuotes( $vars[$m[4]] );
4621 } elseif ( isset( $m[5] ) && $m[5] !== '' && array_key_exists( $m[5], $vars ) ) {
4622 return $vars[$m[5]];
4623 } else {
4624 return $m[0];
4625 }
4626 },
4627 $ins
4628 );
4629 }
4630
4631 /**
4632 * Get schema variables. If none have been set via setSchemaVars(), then
4633 * use some defaults from the current object.
4634 *
4635 * @return array
4636 */
4637 protected function getSchemaVars() {
4638 return $this->schemaVars ?? $this->getDefaultSchemaVars();
4639 }
4640
4641 /**
4642 * Get schema variables to use if none have been set via setSchemaVars().
4643 *
4644 * Override this in derived classes to provide variables for tables.sql
4645 * and SQL patch files.
4646 *
4647 * @return array
4648 */
4649 protected function getDefaultSchemaVars() {
4650 return [];
4651 }
4652
4653 public function lockIsFree( $lockName, $method ) {
4654 // RDBMs methods for checking named locks may or may not count this thread itself.
4655 // In MySQL, IS_FREE_LOCK() returns 0 if the thread already has the lock. This is
4656 // the behavior choosen by the interface for this method.
4657 return !isset( $this->sessionNamedLocks[$lockName] );
4658 }
4659
4660 public function lock( $lockName, $method, $timeout = 5 ) {
4661 $this->sessionNamedLocks[$lockName] = 1;
4662
4663 return true;
4664 }
4665
4666 public function unlock( $lockName, $method ) {
4667 unset( $this->sessionNamedLocks[$lockName] );
4668
4669 return true;
4670 }
4671
4672 public function getScopedLockAndFlush( $lockKey, $fname, $timeout ) {
4673 if ( $this->writesOrCallbacksPending() ) {
4674 // This only flushes transactions to clear snapshots, not to write data
4675 $fnames = implode( ', ', $this->pendingWriteAndCallbackCallers() );
4676 throw new DBUnexpectedError(
4677 $this,
4678 "$fname: Cannot flush pre-lock snapshot; " .
4679 "writes from transaction {$this->trxFname} are still pending ($fnames)"
4680 );
4681 }
4682
4683 if ( !$this->lock( $lockKey, $fname, $timeout ) ) {
4684 return null;
4685 }
4686
4687 $unlocker = new ScopedCallback( function () use ( $lockKey, $fname ) {
4688 if ( $this->trxLevel() ) {
4689 // There is a good chance an exception was thrown, causing any early return
4690 // from the caller. Let any error handler get a chance to issue rollback().
4691 // If there isn't one, let the error bubble up and trigger server-side rollback.
4692 $this->onTransactionResolution(
4693 function () use ( $lockKey, $fname ) {
4694 $this->unlock( $lockKey, $fname );
4695 },
4696 $fname
4697 );
4698 } else {
4699 $this->unlock( $lockKey, $fname );
4700 }
4701 } );
4702
4703 $this->commit( $fname, self::FLUSHING_INTERNAL );
4704
4705 return $unlocker;
4706 }
4707
4708 public function namedLocksEnqueue() {
4709 return false;
4710 }
4711
4712 public function tableLocksHaveTransactionScope() {
4713 return true;
4714 }
4715
4716 final public function lockTables( array $read, array $write, $method ) {
4717 if ( $this->writesOrCallbacksPending() ) {
4718 throw new DBUnexpectedError( $this, "Transaction writes or callbacks still pending" );
4719 }
4720
4721 if ( $this->tableLocksHaveTransactionScope() ) {
4722 $this->startAtomic( $method );
4723 }
4724
4725 return $this->doLockTables( $read, $write, $method );
4726 }
4727
4728 /**
4729 * Helper function for lockTables() that handles the actual table locking
4730 *
4731 * @param array $read Array of tables to lock for read access
4732 * @param array $write Array of tables to lock for write access
4733 * @param string $method Name of caller
4734 * @return true
4735 */
4736 protected function doLockTables( array $read, array $write, $method ) {
4737 return true;
4738 }
4739
4740 final public function unlockTables( $method ) {
4741 if ( $this->tableLocksHaveTransactionScope() ) {
4742 $this->endAtomic( $method );
4743
4744 return true; // locks released on COMMIT/ROLLBACK
4745 }
4746
4747 return $this->doUnlockTables( $method );
4748 }
4749
4750 /**
4751 * Helper function for unlockTables() that handles the actual table unlocking
4752 *
4753 * @param string $method Name of caller
4754 * @return true
4755 */
4756 protected function doUnlockTables( $method ) {
4757 return true;
4758 }
4759
4760 /**
4761 * Delete a table
4762 * @param string $tableName
4763 * @param string $fName
4764 * @return bool|IResultWrapper
4765 * @since 1.18
4766 */
4767 public function dropTable( $tableName, $fName = __METHOD__ ) {
4768 if ( !$this->tableExists( $tableName, $fName ) ) {
4769 return false;
4770 }
4771 $sql = "DROP TABLE " . $this->tableName( $tableName ) . " CASCADE";
4772
4773 return $this->query( $sql, $fName );
4774 }
4775
4776 public function getInfinity() {
4777 return 'infinity';
4778 }
4779
4780 public function encodeExpiry( $expiry ) {
4781 return ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() )
4782 ? $this->getInfinity()
4783 : $this->timestamp( $expiry );
4784 }
4785
4786 public function decodeExpiry( $expiry, $format = TS_MW ) {
4787 if ( $expiry == '' || $expiry == 'infinity' || $expiry == $this->getInfinity() ) {
4788 return 'infinity';
4789 }
4790
4791 return ConvertibleTimestamp::convert( $format, $expiry );
4792 }
4793
4794 public function setBigSelects( $value = true ) {
4795 // no-op
4796 }
4797
4798 public function isReadOnly() {
4799 return ( $this->getReadOnlyReason() !== false );
4800 }
4801
4802 /**
4803 * @return string|bool Reason this DB is read-only or false if it is not
4804 */
4805 protected function getReadOnlyReason() {
4806 $reason = $this->getLBInfo( 'readOnlyReason' );
4807 if ( is_string( $reason ) ) {
4808 return $reason;
4809 } elseif ( $this->getLBInfo( 'replica' ) ) {
4810 return "Server is configured in the role of a read-only replica database.";
4811 }
4812
4813 return false;
4814 }
4815
4816 public function setTableAliases( array $aliases ) {
4817 $this->tableAliases = $aliases;
4818 }
4819
4820 public function setIndexAliases( array $aliases ) {
4821 $this->indexAliases = $aliases;
4822 }
4823
4824 /**
4825 * @param int $field
4826 * @param int $flags
4827 * @return bool
4828 * @since 1.34
4829 */
4830 final protected function fieldHasBit( $field, $flags ) {
4831 return ( ( $field & $flags ) === $flags );
4832 }
4833
4834 /**
4835 * Get the underlying binding connection handle
4836 *
4837 * Makes sure the connection resource is set (disconnects and ping() failure can unset it).
4838 * This catches broken callers than catch and ignore disconnection exceptions.
4839 * Unlike checking isOpen(), this is safe to call inside of open().
4840 *
4841 * @return mixed
4842 * @throws DBUnexpectedError
4843 * @since 1.26
4844 */
4845 protected function getBindingHandle() {
4846 if ( !$this->conn ) {
4847 throw new DBUnexpectedError(
4848 $this,
4849 'DB connection was already closed or the connection dropped'
4850 );
4851 }
4852
4853 return $this->conn;
4854 }
4855
4856 public function __toString() {
4857 // spl_object_id is PHP >= 7.2
4858 $id = function_exists( 'spl_object_id' )
4859 ? spl_object_id( $this )
4860 : spl_object_hash( $this );
4861
4862 $description = $this->getType() . ' object #' . $id;
4863 if ( is_resource( $this->conn ) ) {
4864 $description .= ' (' . (string)$this->conn . ')'; // "resource id #<ID>"
4865 } elseif ( is_object( $this->conn ) ) {
4866 // spl_object_id is PHP >= 7.2
4867 $handleId = function_exists( 'spl_object_id' )
4868 ? spl_object_id( $this->conn )
4869 : spl_object_hash( $this->conn );
4870 $description .= " (handle id #$handleId)";
4871 }
4872
4873 return $description;
4874 }
4875
4876 /**
4877 * Make sure that copies do not share the same client binding handle
4878 * @throws DBConnectionError
4879 */
4880 public function __clone() {
4881 $this->connLogger->warning(
4882 "Cloning " . static::class . " is not recommended; forking connection",
4883 [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
4884 );
4885
4886 if ( $this->isOpen() ) {
4887 // Open a new connection resource without messing with the old one
4888 $this->conn = null;
4889 $this->trxEndCallbacks = []; // don't copy
4890 $this->trxSectionCancelCallbacks = []; // don't copy
4891 $this->handleSessionLossPreconnect(); // no trx or locks anymore
4892 $this->open(
4893 $this->server,
4894 $this->user,
4895 $this->password,
4896 $this->currentDomain->getDatabase(),
4897 $this->currentDomain->getSchema(),
4898 $this->tablePrefix()
4899 );
4900 $this->lastPing = microtime( true );
4901 }
4902 }
4903
4904 /**
4905 * Called by serialize. Throw an exception when DB connection is serialized.
4906 * This causes problems on some database engines because the connection is
4907 * not restored on unserialize.
4908 */
4909 public function __sleep() {
4910 throw new RuntimeException( 'Database serialization may cause problems, since ' .
4911 'the connection is not restored on wakeup' );
4912 }
4913
4914 /**
4915 * Run a few simple sanity checks and close dangling connections
4916 */
4917 public function __destruct() {
4918 if ( $this->trxLevel() && $this->trxDoneWrites ) {
4919 trigger_error( "Uncommitted DB writes (transaction from {$this->trxFname})" );
4920 }
4921
4922 $danglingWriters = $this->pendingWriteAndCallbackCallers();
4923 if ( $danglingWriters ) {
4924 $fnames = implode( ', ', $danglingWriters );
4925 trigger_error( "DB transaction writes or callbacks still pending ($fnames)" );
4926 }
4927
4928 if ( $this->conn ) {
4929 // Avoid connection leaks for sanity. Normally, resources close at script completion.
4930 // The connection might already be closed in zend/hhvm by now, so suppress warnings.
4931 AtEase::suppressWarnings();
4932 $this->closeConnection();
4933 AtEase::restoreWarnings();
4934 $this->conn = null;
4935 }
4936 }
4937 }
4938
4939 /**
4940 * @deprecated since 1.28
4941 */
4942 class_alias( Database::class, 'DatabaseBase' );
4943
4944 /**
4945 * @deprecated since 1.29
4946 */
4947 class_alias( Database::class, 'Database' );