1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace MediaWiki\Config;
use DnsSrvDiscoverer;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
use Wikimedia\Http\MultiHttpClient;
use Wikimedia\IPUtils;
use Wikimedia\ObjectCache\BagOStuff;
use Wikimedia\ObjectCache\HashBagOStuff;
use Wikimedia\ObjectFactory\ObjectFactory;
use Wikimedia\WaitConditionLoop;
/**
* Interface for configuration instances
*
* @since 1.29
*/
class EtcdConfig implements Config, LoggerAwareInterface {
/** @var MultiHttpClient */
private $http;
/** @var BagOStuff */
private $srvCache;
/** @var array */
private $procCache;
/** @var DnsSrvDiscoverer */
private $dsd;
/** @var string */
private $service;
/** @var string */
private $host;
/** @var ?int */
private $port;
/** @var string */
private $protocol;
/** @var string */
private $directory;
/** @var int */
private $baseCacheTTL;
/** @var int */
private $skewCacheTTL;
/** @var int */
private $timeout;
/**
* @param array $params Parameter map:
* - host: the host address
* - directory: the etc "directory" were MediaWiki specific variables are located
* - service: service name used in SRV discovery. Defaults to 'etcd'. [optional]
* - port: custom host port [optional]
* - protocol: one of ("http", "https"). Defaults to http. [optional]
* - cache: BagOStuff instance or ObjectFactory spec thereof for a server cache.
* The cache will also be used as a fallback if etcd is down. [optional]
* - cacheTTL: logical cache TTL in seconds [optional]
* - skewTTL: maximum seconds to randomly lower the assigned TTL on cache save [optional]
* - timeout: seconds to wait for etcd before throwing an error [optional]
*/
public function __construct( array $params ) {
$params += [
'service' => 'etcd',
'port' => null,
'protocol' => 'http',
'cacheTTL' => 10,
'skewTTL' => 1,
'timeout' => 2
];
$this->service = $params['service'];
$this->host = $params['host'];
$this->port = $params['port'];
$this->protocol = $params['protocol'];
$this->directory = trim( $params['directory'], '/' );
$this->skewCacheTTL = $params['skewTTL'];
$this->baseCacheTTL = max( $params['cacheTTL'] - $this->skewCacheTTL, 0 );
$this->timeout = $params['timeout'];
// For backwards compatibility, check the host for an embedded port
$hostAndPort = IPUtils::splitHostAndPort( $this->host );
if ( $hostAndPort ) {
$this->host = $hostAndPort[0];
if ( $hostAndPort[1] ) {
$this->port = $hostAndPort[1];
}
}
// Also for backwards compatibility, check for a host in the format of
// an SRV record and use the service specified therein
if ( preg_match( '/^_([^\.]+)\._tcp\.(.+)$/', $this->host, $m ) ) {
$this->service = $m[1];
$this->host = $m[2];
}
if ( !isset( $params['cache'] ) ) {
$this->srvCache = new HashBagOStuff();
} elseif ( $params['cache'] instanceof BagOStuff ) {
$this->srvCache = $params['cache'];
} else {
$this->srvCache = ObjectFactory::getObjectFromSpec( $params['cache'] );
}
$this->http = new MultiHttpClient( [
'connTimeout' => $this->timeout,
'reqTimeout' => $this->timeout,
] );
$this->dsd = new DnsSrvDiscoverer( $this->service, 'tcp', $this->host );
}
/**
* @deprecated since 1.41 No longer used and did not work in practice
*/
public function setLogger( LoggerInterface $logger ) {
trigger_error( __METHOD__ . ' is deprecated since 1.41', E_USER_DEPRECATED );
}
public function has( $name ) {
$this->load();
return array_key_exists( $name, $this->procCache['config'] );
}
public function get( $name ) {
$this->load();
if ( !array_key_exists( $name, $this->procCache['config'] ) ) {
throw new ConfigException( "No entry found for '$name'." );
}
return $this->procCache['config'][$name];
}
public function getModifiedIndex() {
$this->load();
return $this->procCache['modifiedIndex'];
}
/**
* @throws ConfigException
*/
private function load() {
if ( $this->procCache !== null ) {
return; // already loaded
}
$now = microtime( true );
$key = $this->srvCache->makeGlobalKey(
__CLASS__,
$this->host,
$this->directory
);
// Get the cached value or block until it is regenerated (by this or another thread)...
$data = null; // latest config info
$error = null; // last error message
$loop = new WaitConditionLoop(
function () use ( $key, $now, &$data, &$error ) {
// Check if the values are in cache yet...
$data = $this->srvCache->get( $key );
if ( is_array( $data ) && $data['expires'] > $now ) {
return WaitConditionLoop::CONDITION_REACHED;
}
// Cache is either empty or stale;
// refresh the cache from etcd, using a mutex to reduce stampedes...
if ( $this->srvCache->lock( $key, 0, $this->baseCacheTTL ) ) {
try {
$etcdResponse = $this->fetchAllFromEtcd();
$error = $etcdResponse['error'];
if ( is_array( $etcdResponse['config'] ) ) {
// Avoid having all servers expire cache keys at the same time
$expiry = microtime( true ) + $this->baseCacheTTL;
// @phan-suppress-next-line PhanTypeMismatchArgumentInternal
$expiry += mt_rand( 0, 1e6 ) / 1e6 * $this->skewCacheTTL;
$data = [
'config' => $etcdResponse['config'],
'expires' => $expiry,
'modifiedIndex' => $etcdResponse['modifiedIndex']
];
$this->srvCache->set( $key, $data, BagOStuff::TTL_INDEFINITE );
return WaitConditionLoop::CONDITION_REACHED;
} else {
trigger_error( "EtcdConfig failed to fetch data: $error", E_USER_WARNING );
if ( !$etcdResponse['retry'] && !is_array( $data ) ) {
// Fail fast since the error is likely to keep happening
return WaitConditionLoop::CONDITION_FAILED;
}
}
} finally {
$this->srvCache->unlock( $key ); // release mutex
}
} else {
$error = 'lost lock';
}
if ( is_array( $data ) ) {
trigger_error( "EtcdConfig using stale data: $error", E_USER_NOTICE );
return WaitConditionLoop::CONDITION_REACHED;
}
return WaitConditionLoop::CONDITION_CONTINUE;
},
$this->timeout
);
if ( $loop->invoke() !== WaitConditionLoop::CONDITION_REACHED ) {
// No cached value exists and etcd query failed; throw an error
// @phan-suppress-next-line PhanTypeSuspiciousStringExpression WaitConditionLoop throws or error set
throw new ConfigException( "Failed to load configuration from etcd: $error" );
}
// @phan-suppress-next-line PhanTypeMismatchProperty WaitConditionLoop throws ore data set
$this->procCache = $data;
}
/**
* @return array (containing the keys config, error, retry, modifiedIndex)
*/
public function fetchAllFromEtcd() {
$servers = $this->dsd->getServers() ?: [ [ $this->host, $this->port ] ];
foreach ( $servers as [ $host, $port ] ) {
// Try to load the config from this particular server
$response = $this->fetchAllFromEtcdServer( $host, $port );
if ( is_array( $response['config'] ) || $response['retry'] ) {
break;
}
}
return $response;
}
/**
* @param string $address Host
* @param ?int $port Port
* @return array (containing the keys config, error, retry, modifiedIndex)
*/
protected function fetchAllFromEtcdServer( string $address, ?int $port = null ) {
$host = $address;
if ( $port !== null ) {
$host = IPUtils::combineHostAndPort( $address, $port );
}
// Retrieve all the values under the MediaWiki config directory
[ $rcode, $rdesc, /* $rhdrs */, $rbody, $rerr ] = $this->http->run( [
'method' => 'GET',
'url' => "{$this->protocol}://{$host}/v2/keys/{$this->directory}/?recursive=true",
'headers' => [
'content-type' => 'application/json',
]
] );
$response = [ 'config' => null, 'error' => null, 'retry' => false, 'modifiedIndex' => 0 ];
static $terminalCodes = [ 404 => true ];
if ( $rcode < 200 || $rcode > 399 ) {
$response['error'] = strlen( $rerr ?? '' ) ? $rerr : "HTTP $rcode ($rdesc)";
$response['retry'] = empty( $terminalCodes[$rcode] );
return $response;
}
try {
$parsedResponse = $this->parseResponse( $rbody );
} catch ( EtcdConfigParseError $e ) {
$parsedResponse = [ 'error' => $e->getMessage() ];
}
return array_merge( $response, $parsedResponse );
}
/**
* Parse a response body, throwing EtcdConfigParseError if there is a validation error
*
* @param string $rbody
* @return array
*/
protected function parseResponse( $rbody ) {
$info = json_decode( $rbody, true );
if ( $info === null ) {
throw new EtcdConfigParseError( "Error unserializing JSON response." );
}
if ( !isset( $info['node'] ) || !is_array( $info['node'] ) ) {
throw new EtcdConfigParseError(
"Unexpected JSON response: Missing or invalid node at top level." );
}
$config = [];
$lastModifiedIndex = $this->parseDirectory( '', $info['node'], $config );
return [ 'modifiedIndex' => $lastModifiedIndex, 'config' => $config ];
}
/**
* Recursively parse a directory node and populate the array passed by
* reference, throwing EtcdConfigParseError if there is a validation error
*
* @param string $dirName The relative directory name
* @param array $dirNode The decoded directory node
* @param array &$config The output array
* @return int lastModifiedIndex The maximum last modified index across all keys in the directory
*/
protected function parseDirectory( $dirName, $dirNode, &$config ) {
$lastModifiedIndex = 0;
if ( !isset( $dirNode['nodes'] ) ) {
throw new EtcdConfigParseError(
"Unexpected JSON response in dir '$dirName'; missing 'nodes' list." );
}
if ( !is_array( $dirNode['nodes'] ) ) {
throw new EtcdConfigParseError(
"Unexpected JSON response in dir '$dirName'; 'nodes' is not an array." );
}
foreach ( $dirNode['nodes'] as $node ) {
'@phan-var array $node';
$baseName = basename( $node['key'] );
$fullName = $dirName === '' ? $baseName : "$dirName/$baseName";
if ( !empty( $node['dir'] ) ) {
$lastModifiedIndex = max(
$this->parseDirectory( $fullName, $node, $config ),
$lastModifiedIndex );
} else {
$value = $this->unserialize( $node['value'] );
if ( !is_array( $value ) || !array_key_exists( 'val', $value ) ) {
throw new EtcdConfigParseError( "Failed to parse value for '$fullName'." );
}
$lastModifiedIndex = max( $node['modifiedIndex'], $lastModifiedIndex );
$config[$fullName] = $value['val'];
}
}
return $lastModifiedIndex;
}
/**
* @param string $string
* @return mixed
*/
private function unserialize( $string ) {
return json_decode( $string, true );
}
}
/** @deprecated class alias since 1.41 */
class_alias( EtcdConfig::class, 'EtcdConfig' );
|