Merge "parserTests: Add parser test with filename containing single quotes"
[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' ];
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 }
197
198 if ( in_array( $server['type'], self::getDbTypesWithSchemas(), true ) ) {
199 $server += [ 'schema' => $options->get( 'DBmwschema' ) ];
200 }
201
202 $flags = DBO_DEFAULT;
203 $flags |= $options->get( 'DebugDumpSql' ) ? DBO_DEBUG : 0;
204 $flags |= $options->get( 'DebugLogFile' ) ? DBO_DEBUG : 0;
205
206 $server += [
207 'tablePrefix' => $options->get( 'DBprefix' ),
208 'flags' => $flags,
209 'sqlMode' => $options->get( 'SQLMode' ),
210 ];
211
212 return $server;
213 }
214
215 /**
216 * @param array $lbConf
217 * @param BagOStuff $sCache
218 * @param BagOStuff $mStash
219 * @param WANObjectCache $wCache
220 * @return array
221 */
222 private static function injectObjectCaches(
223 array $lbConf, BagOStuff $sCache, BagOStuff $mStash, WANObjectCache $wCache
224 ) {
225 // Use APC/memcached style caching, but avoids loops with CACHE_DB (T141804)
226 if ( $sCache->getQoS( $sCache::ATTR_EMULATION ) > $sCache::QOS_EMULATION_SQL ) {
227 $lbConf['srvCache'] = $sCache;
228 }
229 if ( $mStash->getQoS( $mStash::ATTR_EMULATION ) > $mStash::QOS_EMULATION_SQL ) {
230 $lbConf['memStash'] = $mStash;
231 }
232 if ( $wCache->getQoS( $wCache::ATTR_EMULATION ) > $wCache::QOS_EMULATION_SQL ) {
233 $lbConf['wanCache'] = $wCache;
234 }
235
236 return $lbConf;
237 }
238
239 /**
240 * @param array $servers
241 * @param string $ldDB Local domain database name
242 * @param string $ldTP Local domain prefix
243 */
244 private static function assertValidServerConfigs( array $servers, $ldDB, $ldTP ) {
245 foreach ( $servers as $server ) {
246 $type = $server['type'] ?? null;
247 $srvDB = $server['dbname'] ?? null; // server DB
248 $srvTP = $server['tablePrefix'] ?? ''; // server table prefix
249
250 if ( $type === 'mysql' ) {
251 // A DB name is not needed to connect to mysql; 'dbname' is useless.
252 // This field only defines the DB to use for unspecified DB domains.
253 if ( $srvDB !== null && $srvDB !== $ldDB ) {
254 self::reportMismatchedDBs( $srvDB, $ldDB );
255 }
256 } elseif ( $type === 'postgres' ) {
257 if ( $srvTP !== '' ) {
258 self::reportIfPrefixSet( $srvTP, $type );
259 }
260 }
261
262 if ( $srvTP !== '' && $srvTP !== $ldTP ) {
263 self::reportMismatchedPrefixes( $srvTP, $ldTP );
264 }
265 }
266 }
267
268 /**
269 * @param string $prefix Table prefix
270 * @param string $dbType Database type
271 */
272 private static function reportIfPrefixSet( $prefix, $dbType ) {
273 $e = new UnexpectedValueException(
274 "\$wgDBprefix is set to '$prefix' but the database type is '$dbType'. " .
275 "MediaWiki does not support using a table prefix with this RDBMS type."
276 );
277 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
278 exit;
279 }
280
281 /**
282 * @param string $srvDB Server config database
283 * @param string $ldDB Local DB domain database
284 */
285 private static function reportMismatchedDBs( $srvDB, $ldDB ) {
286 $e = new UnexpectedValueException(
287 "\$wgDBservers has dbname='$srvDB' but \$wgDBname='$ldDB'. " .
288 "Set \$wgDBname to the database used by this wiki project. " .
289 "There is rarely a need to set 'dbname' in \$wgDBservers. " .
290 "Cross-wiki database access, use of WikiMap::getCurrentWikiDbDomain(), " .
291 "use of Database::getDomainId(), and other features are not reliable when " .
292 "\$wgDBservers does not match the local wiki database/prefix."
293 );
294 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
295 exit;
296 }
297
298 /**
299 * @param string $srvTP Server config table prefix
300 * @param string $ldTP Local DB domain database
301 */
302 private static function reportMismatchedPrefixes( $srvTP, $ldTP ) {
303 $e = new UnexpectedValueException(
304 "\$wgDBservers has tablePrefix='$srvTP' but \$wgDBprefix='$ldTP'. " .
305 "Set \$wgDBprefix to the table prefix used by this wiki project. " .
306 "There is rarely a need to set 'tablePrefix' in \$wgDBservers. " .
307 "Cross-wiki database access, use of WikiMap::getCurrentWikiDbDomain(), " .
308 "use of Database::getDomainId(), and other features are not reliable when " .
309 "\$wgDBservers does not match the local wiki database/prefix."
310 );
311 MWExceptionRenderer::output( $e, MWExceptionRenderer::AS_PRETTY );
312 exit;
313 }
314
315 /**
316 * Returns the LBFactory class to use and the load balancer configuration.
317 *
318 * @todo instead of this, use a ServiceContainer for managing the different implementations.
319 *
320 * @param array $config (e.g. $wgLBFactoryConf)
321 * @return string Class name
322 * @internal For use with service wiring
323 */
324 public static function getLBFactoryClass( array $config ) {
325 // For configuration backward compatibility after removing
326 // underscores from class names in MediaWiki 1.23.
327 $bcClasses = [
328 'LBFactory_Simple' => 'LBFactorySimple',
329 'LBFactory_Single' => 'LBFactorySingle',
330 'LBFactory_Multi' => 'LBFactoryMulti'
331 ];
332
333 $class = $config['class'];
334
335 if ( isset( $bcClasses[$class] ) ) {
336 $class = $bcClasses[$class];
337 wfDeprecated(
338 '$wgLBFactoryConf must be updated. See RELEASE-NOTES for details',
339 '1.23'
340 );
341 }
342
343 // For configuration backward compatibility after moving classes to namespaces (1.29)
344 $compat = [
345 'LBFactorySingle' => Wikimedia\Rdbms\LBFactorySingle::class,
346 'LBFactorySimple' => Wikimedia\Rdbms\LBFactorySimple::class,
347 'LBFactoryMulti' => Wikimedia\Rdbms\LBFactoryMulti::class
348 ];
349
350 if ( isset( $compat[$class] ) ) {
351 $class = $compat[$class];
352 }
353
354 return $class;
355 }
356
357 /**
358 * @param LBFactory $lbFactory
359 * @param string $dbType 'mysql', 'sqlite', etc.
360 * @internal For use with service wiring
361 */
362 public static function setSchemaAliases( LBFactory $lbFactory, $dbType ) {
363 if ( $dbType === 'mysql' ) {
364 /**
365 * When SQLite indexes were introduced in r45764, it was noted that
366 * SQLite requires index names to be unique within the whole database,
367 * not just within a schema. As discussed in CR r45819, to avoid the
368 * need for a schema change on existing installations, the indexes
369 * were implicitly mapped from the new names to the old names.
370 *
371 * This mapping can be removed if DB patches are introduced to alter
372 * the relevant tables in existing installations. Note that because
373 * this index mapping applies to table creation, even new installations
374 * of MySQL have the old names (except for installations created during
375 * a period where this mapping was inappropriately removed, see
376 * T154872).
377 */
378 $lbFactory->setIndexAliases( [
379 'ar_usertext_timestamp' => 'usertext_timestamp',
380 'un_user_id' => 'user_id',
381 'un_user_ip' => 'user_ip',
382 ] );
383 }
384 }
385
386 /**
387 * Log a database deprecation warning
388 * @param string $msg Deprecation message
389 * @internal For use with service wiring
390 */
391 public static function logDeprecation( $msg ) {
392 global $wgDevelopmentWarnings;
393
394 if ( isset( self::$loggedDeprecations[$msg] ) ) {
395 return;
396 }
397 self::$loggedDeprecations[$msg] = true;
398
399 if ( $wgDevelopmentWarnings ) {
400 trigger_error( $msg, E_USER_DEPRECATED );
401 }
402 wfDebugLog( 'deprecated', $msg, 'private' );
403 }
404 }