Merge "Make Special:MovePage note about redirects dependent on content model"
[lhc/web/wiklou.git] / includes / db / MWLBFactory.php
1 <?php
2 /**
3 * Generator of database load balancing objects.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Database
22 */
23
24 use MediaWiki\Config\ServiceOptions;
25 use MediaWiki\Logger\LoggerFactory;
26 use Wikimedia\Rdbms\LBFactory;
27 use Wikimedia\Rdbms\DatabaseDomain;
28
29 /**
30 * MediaWiki-specific class for generating database load balancers
31 * @ingroup Database
32 */
33 abstract class MWLBFactory {
34
35 /** @var array Cache of already-logged deprecation messages */
36 private static $loggedDeprecations = [];
37
38 /**
39 * TODO Make this a const when HHVM support is dropped (T192166)
40 *
41 * @var array
42 * @since 1.34
43 */
44 public static $applyDefaultConfigOptions = [
45 'DBcompress',
46 'DBDefaultGroup',
47 'DBmwschema',
48 'DBname',
49 'DBpassword',
50 'DBport',
51 'DBprefix',
52 'DBserver',
53 'DBservers',
54 'DBssl',
55 'DBtype',
56 'DBuser',
57 'DBWindowsAuthentication',
58 'DebugDumpSql',
59 'DebugLogFile',
60 'ExternalServers',
61 'SQLiteDataDir',
62 'SQLMode',
63 ];
64
65 /**
66 * @param array $lbConf Config for LBFactory::__construct()
67 * @param ServiceOptions $options
68 * @param ConfiguredReadOnlyMode $readOnlyMode
69 * @param BagOStuff $srvCace
70 * @param BagOStuff $mainStash
71 * @param WANObjectCache $wanCache
72 * @return array
73 * @internal For use with service wiring
74 */
75 public static function applyDefaultConfig(
76 array $lbConf,
77 ServiceOptions $options,
78 ConfiguredReadOnlyMode $readOnlyMode,
79 BagOStuff $srvCace,
80 BagOStuff $mainStash,
81 WANObjectCache $wanCache
82 ) {
83 $options->assertRequiredOptions( self::$applyDefaultConfigOptions );
84
85 global $wgCommandLineMode;
86
87 $typesWithSchema = self::getDbTypesWithSchemas();
88
89 $lbConf += [
90 'localDomain' => new DatabaseDomain(
91 $options->get( 'DBname' ),
92 $options->get( 'DBmwschema' ),
93 $options->get( 'DBprefix' )
94 ),
95 'profiler' => function ( $section ) {
96 return Profiler::instance()->scopedProfileIn( $section );
97 },
98 'trxProfiler' => Profiler::instance()->getTransactionProfiler(),
99 'replLogger' => LoggerFactory::getInstance( 'DBReplication' ),
100 'queryLogger' => LoggerFactory::getInstance( 'DBQuery' ),
101 'connLogger' => LoggerFactory::getInstance( 'DBConnection' ),
102 'perfLogger' => LoggerFactory::getInstance( 'DBPerformance' ),
103 'errorLogger' => [ MWExceptionHandler::class, 'logException' ],
104 'deprecationLogger' => [ static::class, 'logDeprecation' ],
105 'cliMode' => $wgCommandLineMode,
106 'hostname' => wfHostname(),
107 'readOnlyReason' => $readOnlyMode->getReason(),
108 'defaultGroup' => $options->get( 'DBDefaultGroup' ),
109 ];
110
111 $serversCheck = [];
112 // When making changes here, remember to also specify MediaWiki-specific options
113 // for Database classes in the relevant Installer subclass.
114 // Such as MysqlInstaller::openConnection and PostgresInstaller::openConnectionWithParams.
115 if ( $lbConf['class'] === Wikimedia\Rdbms\LBFactorySimple::class ) {
116 if ( isset( $lbConf['servers'] ) ) {
117 // Server array is already explicitly configured
118 } elseif ( is_array( $options->get( 'DBservers' ) ) ) {
119 $lbConf['servers'] = [];
120 foreach ( $options->get( 'DBservers' ) as $i => $server ) {
121 $lbConf['servers'][$i] = self::initServerInfo( $server, $options );
122 }
123 } else {
124 $server = self::initServerInfo(
125 [
126 'host' => $options->get( 'DBserver' ),
127 'user' => $options->get( 'DBuser' ),
128 'password' => $options->get( 'DBpassword' ),
129 'dbname' => $options->get( 'DBname' ),
130 'type' => $options->get( 'DBtype' ),
131 'load' => 1
132 ],
133 $options
134 );
135
136 $server['flags'] |= $options->get( 'DBssl' ) ? DBO_SSL : 0;
137 $server['flags'] |= $options->get( 'DBcompress' ) ? DBO_COMPRESS : 0;
138
139 $lbConf['servers'] = [ $server ];
140 }
141 if ( !isset( $lbConf['externalClusters'] ) ) {
142 $lbConf['externalClusters'] = $options->get( 'ExternalServers' );
143 }
144
145 $serversCheck = $lbConf['servers'];
146 } elseif ( $lbConf['class'] === Wikimedia\Rdbms\LBFactoryMulti::class ) {
147 if ( isset( $lbConf['serverTemplate'] ) ) {
148 if ( in_array( $lbConf['serverTemplate']['type'], $typesWithSchema, true ) ) {
149 $lbConf['serverTemplate']['schema'] = $options->get( 'DBmwschema' );
150 }
151 $lbConf['serverTemplate']['sqlMode'] = $options->get( 'SQLMode' );
152 }
153 $serversCheck = [ $lbConf['serverTemplate'] ] ?? [];
154 }
155
156 self::assertValidServerConfigs(
157 $serversCheck,
158 $options->get( 'DBname' ),
159 $options->get( 'DBprefix' )
160 );
161
162 $lbConf = self::injectObjectCaches( $lbConf, $srvCace, $mainStash, $wanCache );
163
164 return $lbConf;
165 }
166
167 /**
168 * @return array
169 */
170 private static function getDbTypesWithSchemas() {
171 return [ 'postgres', 'mssql' ];
172 }
173
174 /**
175 * @param array $server
176 * @param ServiceOptions $options
177 * @return array
178 */
179 private static function initServerInfo( array $server, ServiceOptions $options ) {
180 if ( $server['type'] === 'sqlite' ) {
181 $httpMethod = $_SERVER['REQUEST_METHOD'] ?? null;
182 // T93097: hint for how file-based databases (e.g. sqlite) should go about locking.
183 // See https://www.sqlite.org/lang_transaction.html
184 // See https://www.sqlite.org/lockingv3.html#shared_lock
185 $isHttpRead = in_array( $httpMethod, [ 'GET', 'HEAD', 'OPTIONS', 'TRACE' ] );
186 $server += [
187 'dbDirectory' => $options->get( 'SQLiteDataDir' ),
188 'trxMode' => $isHttpRead ? 'DEFERRED' : 'IMMEDIATE'
189 ];
190 } elseif ( $server['type'] === 'postgres' ) {
191 $server += [
192 'port' => $options->get( 'DBport' ),
193 // Work around the reserved word usage in MediaWiki schema
194 'keywordTableMap' => [ 'user' => 'mwuser', 'text' => 'pagecontent' ]
195 ];
196 } elseif ( $server['type'] === 'oracle' ) {
197 $server += [
198 // Work around the reserved word usage in MediaWiki schema
199 'keywordTableMap' => [ 'user' => 'mwuser', 'text' => 'pagecontent' ]
200 ];
201 } elseif ( $server['type'] === 'mssql' ) {
202 $server += [
203 'port' => $options->get( 'DBport' ),
204 'useWindowsAuth' => $options->get( 'DBWindowsAuthentication' )
205 ];
206 }
207
208 if ( in_array( $server['type'], self::getDbTypesWithSchemas(), true ) ) {
209 $server += [ 'schema' => $options->get( 'DBmwschema' ) ];
210 }
211
212 $flags = DBO_DEFAULT;
213 $flags |= $options->get( 'DebugDumpSql' ) ? DBO_DEBUG : 0;
214 $flags |= $options->get( 'DebugLogFile' ) ? DBO_DEBUG : 0;
215
216 $server += [
217 'tablePrefix' => $options->get( 'DBprefix' ),
218 'flags' => $flags,
219 'sqlMode' => $options->get( 'SQLMode' ),
220 ];
221
222 return $server;
223 }
224
225 /**
226 * @param array $lbConf
227 * @param BagOStuff $sCache
228 * @param BagOStuff $mStash
229 * @param WANObjectCache $wCache
230 * @return array
231 */
232 private static function injectObjectCaches(
233 array $lbConf, BagOStuff $sCache, BagOStuff $mStash, WANObjectCache $wCache
234 ) {
235 // Use APC/memcached style caching, but avoids loops with CACHE_DB (T141804)
236 if ( $sCache->getQoS( $sCache::ATTR_EMULATION ) > $sCache::QOS_EMULATION_SQL ) {
237 $lbConf['srvCache'] = $sCache;
238 }
239 if ( $mStash->getQoS( $mStash::ATTR_EMULATION ) > $mStash::QOS_EMULATION_SQL ) {
240 $lbConf['memStash'] = $mStash;
241 }
242 if ( $wCache->getQoS( $wCache::ATTR_EMULATION ) > $wCache::QOS_EMULATION_SQL ) {
243 $lbConf['wanCache'] = $wCache;
244 }
245
246 return $lbConf;
247 }
248
249 /**
250 * @param array $servers
251 * @param string $ldDB Local domain database name
252 * @param string $ldTP Local domain prefix
253 */
254 private static function assertValidServerConfigs( array $servers, $ldDB, $ldTP ) {
255 foreach ( $servers as $server ) {
256 $type = $server['type'] ?? null;
257 $srvDB = $server['dbname'] ?? null; // server DB
258 $srvTP = $server['tablePrefix'] ?? ''; // server table prefix
259
260 if ( $type === 'mysql' ) {
261 // A DB name is not needed to connect to mysql; 'dbname' is useless.
262 // This field only defines the DB to use for unspecified DB domains.
263 if ( $srvDB !== null && $srvDB !== $ldDB ) {
264 self::reportMismatchedDBs( $srvDB, $ldDB );
265 }
266 } elseif ( $type === 'postgres' ) {
267 if ( $srvTP !== '' ) {
268 self::reportIfPrefixSet( $srvTP, $type );
269 }
270 }
271
272 if ( $srvTP !== '' && $srvTP !== $ldTP ) {
273 self::reportMismatchedPrefixes( $srvTP, $ldTP );
274 }
275 }
276 }
277
278 /**
279 * @param string $prefix Table prefix
280 * @param string $dbType Database type
281 */
282 private static function reportIfPrefixSet( $prefix, $dbType ) {
283 $e = new UnexpectedValueException(
284 "\$wgDBprefix is set to '$prefix' but the database type is '$dbType'. " .
285 "MediaWiki does not support using a table prefix with this RDBMS type."
286 );
287 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
288 exit;
289 }
290
291 /**
292 * @param string $srvDB Server config database
293 * @param string $ldDB Local DB domain database
294 */
295 private static function reportMismatchedDBs( $srvDB, $ldDB ) {
296 $e = new UnexpectedValueException(
297 "\$wgDBservers has dbname='$srvDB' but \$wgDBname='$ldDB'. " .
298 "Set \$wgDBname to the database used by this wiki project. " .
299 "There is rarely a need to set 'dbname' in \$wgDBservers. " .
300 "Cross-wiki database access, use of WikiMap::getCurrentWikiDbDomain(), " .
301 "use of Database::getDomainId(), and other features are not reliable when " .
302 "\$wgDBservers does not match the local wiki database/prefix."
303 );
304 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
305 exit;
306 }
307
308 /**
309 * @param string $srvTP Server config table prefix
310 * @param string $ldTP Local DB domain database
311 */
312 private static function reportMismatchedPrefixes( $srvTP, $ldTP ) {
313 $e = new UnexpectedValueException(
314 "\$wgDBservers has tablePrefix='$srvTP' but \$wgDBprefix='$ldTP'. " .
315 "Set \$wgDBprefix to the table prefix used by this wiki project. " .
316 "There is rarely a need to set 'tablePrefix' in \$wgDBservers. " .
317 "Cross-wiki database access, use of WikiMap::getCurrentWikiDbDomain(), " .
318 "use of Database::getDomainId(), and other features are not reliable when " .
319 "\$wgDBservers does not match the local wiki database/prefix."
320 );
321 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
322 exit;
323 }
324
325 /**
326 * Returns the LBFactory class to use and the load balancer configuration.
327 *
328 * @todo instead of this, use a ServiceContainer for managing the different implementations.
329 *
330 * @param array $config (e.g. $wgLBFactoryConf)
331 * @return string Class name
332 * @internal For use with service wiring
333 */
334 public static function getLBFactoryClass( array $config ) {
335 // For configuration backward compatibility after removing
336 // underscores from class names in MediaWiki 1.23.
337 $bcClasses = [
338 'LBFactory_Simple' => 'LBFactorySimple',
339 'LBFactory_Single' => 'LBFactorySingle',
340 'LBFactory_Multi' => 'LBFactoryMulti'
341 ];
342
343 $class = $config['class'];
344
345 if ( isset( $bcClasses[$class] ) ) {
346 $class = $bcClasses[$class];
347 wfDeprecated(
348 '$wgLBFactoryConf must be updated. See RELEASE-NOTES for details',
349 '1.23'
350 );
351 }
352
353 // For configuration backward compatibility after moving classes to namespaces (1.29)
354 $compat = [
355 'LBFactorySingle' => Wikimedia\Rdbms\LBFactorySingle::class,
356 'LBFactorySimple' => Wikimedia\Rdbms\LBFactorySimple::class,
357 'LBFactoryMulti' => Wikimedia\Rdbms\LBFactoryMulti::class
358 ];
359
360 if ( isset( $compat[$class] ) ) {
361 $class = $compat[$class];
362 }
363
364 return $class;
365 }
366
367 /**
368 * @param LBFactory $lbFactory
369 * @param string $dbType 'mysql', 'sqlite', etc.
370 * @internal For use with service wiring
371 */
372 public static function setSchemaAliases( LBFactory $lbFactory, $dbType ) {
373 if ( $dbType === 'mysql' ) {
374 /**
375 * When SQLite indexes were introduced in r45764, it was noted that
376 * SQLite requires index names to be unique within the whole database,
377 * not just within a schema. As discussed in CR r45819, to avoid the
378 * need for a schema change on existing installations, the indexes
379 * were implicitly mapped from the new names to the old names.
380 *
381 * This mapping can be removed if DB patches are introduced to alter
382 * the relevant tables in existing installations. Note that because
383 * this index mapping applies to table creation, even new installations
384 * of MySQL have the old names (except for installations created during
385 * a period where this mapping was inappropriately removed, see
386 * T154872).
387 */
388 $lbFactory->setIndexAliases( [
389 'ar_usertext_timestamp' => 'usertext_timestamp',
390 'un_user_id' => 'user_id',
391 'un_user_ip' => 'user_ip',
392 ] );
393 }
394 }
395
396 /**
397 * Log a database deprecation warning
398 * @param string $msg Deprecation message
399 * @internal For use with service wiring
400 */
401 public static function logDeprecation( $msg ) {
402 global $wgDevelopmentWarnings;
403
404 if ( isset( self::$loggedDeprecations[$msg] ) ) {
405 return;
406 }
407 self::$loggedDeprecations[$msg] = true;
408
409 if ( $wgDevelopmentWarnings ) {
410 trigger_error( $msg, E_USER_DEPRECATED );
411 }
412 wfDebugLog( 'deprecated', $msg, 'private' );
413 }
414 }