e6c0e784175595e5de1374e60fa308422632c3b6
[lhc/web/wiklou.git] / includes / utils / MWCryptRand.php
1 <?php
2 /**
3 * A cryptographic random generator class used for generating secret keys
4 *
5 * This is based in part on Drupal code as well as what we used in our own code
6 * prior to introduction of this class.
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 * @author Daniel Friesen
24 * @file
25 */
26
27 class MWCryptRand {
28 /**
29 * Minimum number of iterations we want to make in our drift calculations.
30 */
31 const MIN_ITERATIONS = 1000;
32
33 /**
34 * Number of milliseconds we want to spend generating each separate byte
35 * of the final generated bytes.
36 * This is used in combination with the hash length to determine the duration
37 * we should spend doing drift calculations.
38 */
39 const MSEC_PER_BYTE = 0.5;
40
41 /**
42 * Singleton instance for public use
43 */
44 protected static $singleton = null;
45
46 /**
47 * The hash algorithm being used
48 */
49 protected $algo = null;
50
51 /**
52 * The number of bytes outputted by the hash algorithm
53 */
54 protected $hashLength = null;
55
56 /**
57 * A boolean indicating whether the previous random generation was done using
58 * cryptographically strong random number generator or not.
59 */
60 protected $strong = null;
61
62 /**
63 * Initialize an initial random state based off of whatever we can find
64 * @return string
65 */
66 protected function initialRandomState() {
67 // $_SERVER contains a variety of unstable user and system specific information
68 // It'll vary a little with each page, and vary even more with separate users
69 // It'll also vary slightly across different machines
70 $state = serialize( $_SERVER );
71
72 // To try vary the system information of the state a bit more
73 // by including the system's hostname into the state
74 $state .= wfHostname();
75
76 // Try to gather a little entropy from the different php rand sources
77 $state .= rand() . uniqid( mt_rand(), true );
78
79 // Include some information about the filesystem's current state in the random state
80 $files = array();
81
82 // We know this file is here so grab some info about ourselves
83 $files[] = __FILE__;
84
85 // We must also have a parent folder, and with the usual file structure, a grandparent
86 $files[] = __DIR__;
87 $files[] = dirname( __DIR__ );
88
89 // The config file is likely the most often edited file we know should
90 // be around so include its stat info into the state.
91 // The constant with its location will almost always be defined, as
92 // WebStart.php defines MW_CONFIG_FILE to $IP/LocalSettings.php unless
93 // being configured with MW_CONFIG_CALLBACK (e.g. the installer).
94 if ( defined( 'MW_CONFIG_FILE' ) ) {
95 $files[] = MW_CONFIG_FILE;
96 }
97
98 foreach ( $files as $file ) {
99 wfSuppressWarnings();
100 $stat = stat( $file );
101 wfRestoreWarnings();
102 if ( $stat ) {
103 // stat() duplicates data into numeric and string keys so kill off all the numeric ones
104 foreach ( $stat as $k => $v ) {
105 if ( is_numeric( $k ) ) {
106 unset( $k );
107 }
108 }
109 // The absolute filename itself will differ from install to install so don't leave it out
110 if ( ( $path = realpath( $file ) ) !== false ) {
111 $state .= $path;
112 } else {
113 $state .= $file;
114 }
115 $state .= implode( '', $stat );
116 } else {
117 // The fact that the file isn't there is worth at least a
118 // minuscule amount of entropy.
119 $state .= '0';
120 }
121 }
122
123 // Try and make this a little more unstable by including the varying process
124 // id of the php process we are running inside of if we are able to access it
125 if ( function_exists( 'getmypid' ) ) {
126 $state .= getmypid();
127 }
128
129 // If available try to increase the instability of the data by throwing in
130 // the precise amount of memory that we happen to be using at the moment.
131 if ( function_exists( 'memory_get_usage' ) ) {
132 $state .= memory_get_usage( true );
133 }
134
135 // It's mostly worthless but throw the wiki's id into the data for a little more variance
136 $state .= wfWikiID();
137
138 // If we have a secret key set then throw it into the state as well
139 global $wgSecretKey;
140 if ( $wgSecretKey ) {
141 $state .= $wgSecretKey;
142 }
143
144 return $state;
145 }
146
147 /**
148 * Randomly hash data while mixing in clock drift data for randomness
149 *
150 * @param string $data The data to randomly hash.
151 * @return string The hashed bytes
152 * @author Tim Starling
153 */
154 protected function driftHash( $data ) {
155 // Minimum number of iterations (to avoid slow operations causing the
156 // loop to gather little entropy)
157 $minIterations = self::MIN_ITERATIONS;
158 // Duration of time to spend doing calculations (in seconds)
159 $duration = ( self::MSEC_PER_BYTE / 1000 ) * $this->hashLength();
160 // Create a buffer to use to trigger memory operations
161 $bufLength = 10000000;
162 $buffer = str_repeat( ' ', $bufLength );
163 $bufPos = 0;
164
165 // Iterate for $duration seconds or at least $minIterations number of iterations
166 $iterations = 0;
167 $startTime = microtime( true );
168 $currentTime = $startTime;
169 while ( $iterations < $minIterations || $currentTime - $startTime < $duration ) {
170 // Trigger some memory writing to trigger some bus activity
171 // This may create variance in the time between iterations
172 $bufPos = ( $bufPos + 13 ) % $bufLength;
173 $buffer[$bufPos] = ' ';
174 // Add the drift between this iteration and the last in as entropy
175 $nextTime = microtime( true );
176 $delta = (int)( ( $nextTime - $currentTime ) * 1000000 );
177 $data .= $delta;
178 // Every 100 iterations hash the data and entropy
179 if ( $iterations % 100 === 0 ) {
180 $data = sha1( $data );
181 }
182 $currentTime = $nextTime;
183 $iterations++;
184 }
185 $timeTaken = $currentTime - $startTime;
186 $data = $this->hash( $data );
187
188 wfDebug( __METHOD__ . ": Clock drift calculation " .
189 "(time-taken=" . ( $timeTaken * 1000 ) . "ms, " .
190 "iterations=$iterations, " .
191 "time-per-iteration=" . ( $timeTaken / $iterations * 1e6 ) . "us)\n" );
192
193 return $data;
194 }
195
196 /**
197 * Return a rolling random state initially build using data from unstable sources
198 * @return string A new weak random state
199 */
200 protected function randomState() {
201 static $state = null;
202 if ( is_null( $state ) ) {
203 // Initialize the state with whatever unstable data we can find
204 // It's important that this data is hashed right afterwards to prevent
205 // it from being leaked into the output stream
206 $state = $this->hash( $this->initialRandomState() );
207 }
208 // Generate a new random state based on the initial random state or previous
209 // random state by combining it with clock drift
210 $state = $this->driftHash( $state );
211
212 return $state;
213 }
214
215 /**
216 * Decide on the best acceptable hash algorithm we have available for hash()
217 * @throws MWException
218 * @return string A hash algorithm
219 */
220 protected function hashAlgo() {
221 if ( !is_null( $this->algo ) ) {
222 return $this->algo;
223 }
224
225 $algos = hash_algos();
226 $preference = array( 'whirlpool', 'sha256', 'sha1', 'md5' );
227
228 foreach ( $preference as $algorithm ) {
229 if ( in_array( $algorithm, $algos ) ) {
230 $this->algo = $algorithm;
231 wfDebug( __METHOD__ . ": Using the {$this->algo} hash algorithm.\n" );
232
233 return $this->algo;
234 }
235 }
236
237 // We only reach here if no acceptable hash is found in the list, this should
238 // be a technical impossibility since most of php's hash list is fixed and
239 // some of the ones we list are available as their own native functions
240 // But since we already require at least 5.2 and hash() was default in
241 // 5.1.2 we don't bother falling back to methods like sha1 and md5.
242 throw new MWException( "Could not find an acceptable hashing function in hash_algos()" );
243 }
244
245 /**
246 * Return the byte-length output of the hash algorithm we are
247 * using in self::hash and self::hmac.
248 *
249 * @return int Number of bytes the hash outputs
250 */
251 protected function hashLength() {
252 if ( is_null( $this->hashLength ) ) {
253 $this->hashLength = strlen( $this->hash( '' ) );
254 }
255
256 return $this->hashLength;
257 }
258
259 /**
260 * Generate an acceptably unstable one-way-hash of some text
261 * making use of the best hash algorithm that we have available.
262 *
263 * @param string $data
264 * @return string A raw hash of the data
265 */
266 protected function hash( $data ) {
267 return hash( $this->hashAlgo(), $data, true );
268 }
269
270 /**
271 * Generate an acceptably unstable one-way-hmac of some text
272 * making use of the best hash algorithm that we have available.
273 *
274 * @param string $data
275 * @param string $key
276 * @return string A raw hash of the data
277 */
278 protected function hmac( $data, $key ) {
279 return hash_hmac( $this->hashAlgo(), $data, $key, true );
280 }
281
282 /**
283 * @see self::wasStrong()
284 */
285 public function realWasStrong() {
286 if ( is_null( $this->strong ) ) {
287 throw new MWException( __METHOD__ . ' called before generation of random data' );
288 }
289
290 return $this->strong;
291 }
292
293 /**
294 * @see self::generate()
295 */
296 public function realGenerate( $bytes, $forceStrong = false ) {
297
298 wfDebug( __METHOD__ . ": Generating cryptographic random bytes for " .
299 wfGetAllCallers( 5 ) . "\n" );
300
301 $bytes = floor( $bytes );
302 static $buffer = '';
303 if ( is_null( $this->strong ) ) {
304 // Set strength to false initially until we know what source data is coming from
305 $this->strong = true;
306 }
307
308 if ( strlen( $buffer ) < $bytes ) {
309 // If available make use of mcrypt_create_iv URANDOM source to generate randomness
310 // On unix-like systems this reads from /dev/urandom but does it without any buffering
311 // and bypasses openbasedir restrictions, so it's preferable to reading directly
312 // On Windows starting in PHP 5.3.0 Windows' native CryptGenRandom is used to generate
313 // entropy so this is also preferable to just trying to read urandom because it may work
314 // on Windows systems as well.
315 if ( function_exists( 'mcrypt_create_iv' ) ) {
316 $rem = $bytes - strlen( $buffer );
317 $iv = mcrypt_create_iv( $rem, MCRYPT_DEV_URANDOM );
318 if ( $iv === false ) {
319 wfDebug( __METHOD__ . ": mcrypt_create_iv returned false.\n" );
320 } else {
321 $buffer .= $iv;
322 wfDebug( __METHOD__ . ": mcrypt_create_iv generated " . strlen( $iv ) .
323 " bytes of randomness.\n" );
324 }
325 }
326 }
327
328 if ( strlen( $buffer ) < $bytes ) {
329 // If available make use of openssl's random_pseudo_bytes method to
330 // attempt to generate randomness. However don't do this on Windows
331 // with PHP < 5.3.4 due to a bug:
332 // http://stackoverflow.com/questions/1940168/openssl-random-pseudo-bytes-is-slow-php
333 // http://git.php.net/?p=php-src.git;a=commitdiff;h=cd62a70863c261b07f6dadedad9464f7e213cad5
334 if ( function_exists( 'openssl_random_pseudo_bytes' )
335 && ( !wfIsWindows() || version_compare( PHP_VERSION, '5.3.4', '>=' ) )
336 ) {
337 $rem = $bytes - strlen( $buffer );
338 $openssl_bytes = openssl_random_pseudo_bytes( $rem, $openssl_strong );
339 if ( $openssl_bytes === false ) {
340 wfDebug( __METHOD__ . ": openssl_random_pseudo_bytes returned false.\n" );
341 } else {
342 $buffer .= $openssl_bytes;
343 wfDebug( __METHOD__ . ": openssl_random_pseudo_bytes generated " .
344 strlen( $openssl_bytes ) . " bytes of " .
345 ( $openssl_strong ? "strong" : "weak" ) . " randomness.\n" );
346 }
347 if ( strlen( $buffer ) >= $bytes ) {
348 // openssl tells us if the random source was strong, if some of our data was generated
349 // using it use it's say on whether the randomness is strong
350 $this->strong = !!$openssl_strong;
351 }
352 }
353 }
354
355 // Only read from urandom if we can control the buffer size or were passed forceStrong
356 if ( strlen( $buffer ) < $bytes &&
357 ( function_exists( 'stream_set_read_buffer' ) || $forceStrong )
358 ) {
359 $rem = $bytes - strlen( $buffer );
360 if ( !function_exists( 'stream_set_read_buffer' ) && $forceStrong ) {
361 wfDebug( __METHOD__ . ": Was forced to read from /dev/urandom " .
362 "without control over the buffer size.\n" );
363 }
364 // /dev/urandom is generally considered the best possible commonly
365 // available random source, and is available on most *nix systems.
366 wfSuppressWarnings();
367 $urandom = fopen( "/dev/urandom", "rb" );
368 wfRestoreWarnings();
369
370 // Attempt to read all our random data from urandom
371 // php's fread always does buffered reads based on the stream's chunk_size
372 // so in reality it will usually read more than the amount of data we're
373 // asked for and not storing that risks depleting the system's random pool.
374 // If stream_set_read_buffer is available set the chunk_size to the amount
375 // of data we need. Otherwise read 8k, php's default chunk_size.
376 if ( $urandom ) {
377 // php's default chunk_size is 8k
378 $chunk_size = 1024 * 8;
379 if ( function_exists( 'stream_set_read_buffer' ) ) {
380 // If possible set the chunk_size to the amount of data we need
381 stream_set_read_buffer( $urandom, $rem );
382 $chunk_size = $rem;
383 }
384 $random_bytes = fread( $urandom, max( $chunk_size, $rem ) );
385 $buffer .= $random_bytes;
386 fclose( $urandom );
387 wfDebug( __METHOD__ . ": /dev/urandom generated " . strlen( $random_bytes ) .
388 " bytes of randomness.\n" );
389
390 if ( strlen( $buffer ) >= $bytes ) {
391 // urandom is always strong, set to true if all our data was generated using it
392 $this->strong = true;
393 }
394 } else {
395 wfDebug( __METHOD__ . ": /dev/urandom could not be opened.\n" );
396 }
397 }
398
399 // If we cannot use or generate enough data from a secure source
400 // use this loop to generate a good set of pseudo random data.
401 // This works by initializing a random state using a pile of unstable data
402 // and continually shoving it through a hash along with a variable salt.
403 // We hash the random state with more salt to avoid the state from leaking
404 // out and being used to predict the /randomness/ that follows.
405 if ( strlen( $buffer ) < $bytes ) {
406 wfDebug( __METHOD__ .
407 ": Falling back to using a pseudo random state to generate randomness.\n" );
408 }
409 while ( strlen( $buffer ) < $bytes ) {
410 $buffer .= $this->hmac( $this->randomState(), mt_rand() );
411 // This code is never really cryptographically strong, if we use it
412 // at all, then set strong to false.
413 $this->strong = false;
414 }
415
416 // Once the buffer has been filled up with enough random data to fulfill
417 // the request shift off enough data to handle the request and leave the
418 // unused portion left inside the buffer for the next request for random data
419 $generated = substr( $buffer, 0, $bytes );
420 $buffer = substr( $buffer, $bytes );
421
422 wfDebug( __METHOD__ . ": " . strlen( $buffer ) .
423 " bytes of randomness leftover in the buffer.\n" );
424
425 return $generated;
426 }
427
428 /**
429 * @see self::generateHex()
430 */
431 public function realGenerateHex( $chars, $forceStrong = false ) {
432 // hex strings are 2x the length of raw binary so we divide the length in half
433 // odd numbers will result in a .5 that leads the generate() being 1 character
434 // short, so we use ceil() to ensure that we always have enough bytes
435 $bytes = ceil( $chars / 2 );
436 // Generate the data and then convert it to a hex string
437 $hex = bin2hex( $this->generate( $bytes, $forceStrong ) );
438
439 // A bit of paranoia here, the caller asked for a specific length of string
440 // here, and it's possible (eg when given an odd number) that we may actually
441 // have at least 1 char more than they asked for. Just in case they made this
442 // call intending to insert it into a database that does truncation we don't
443 // want to give them too much and end up with their database and their live
444 // code having two different values because part of what we gave them is truncated
445 // hence, we strip out any run of characters longer than what we were asked for.
446 return substr( $hex, 0, $chars );
447 }
448
449 /** Publicly exposed static methods **/
450
451 /**
452 * Return a singleton instance of MWCryptRand
453 * @return MWCryptRand
454 */
455 protected static function singleton() {
456 if ( is_null( self::$singleton ) ) {
457 self::$singleton = new self;
458 }
459
460 return self::$singleton;
461 }
462
463 /**
464 * Return a boolean indicating whether or not the source used for cryptographic
465 * random bytes generation in the previously run generate* call
466 * was cryptographically strong.
467 *
468 * @return bool Returns true if the source was strong, false if not.
469 */
470 public static function wasStrong() {
471 return self::singleton()->realWasStrong();
472 }
473
474 /**
475 * Generate a run of (ideally) cryptographically random data and return
476 * it in raw binary form.
477 * You can use MWCryptRand::wasStrong() if you wish to know if the source used
478 * was cryptographically strong.
479 *
480 * @param int $bytes The number of bytes of random data to generate
481 * @param bool $forceStrong Pass true if you want generate to prefer cryptographically
482 * strong sources of entropy even if reading from them may steal
483 * more entropy from the system than optimal.
484 * @return string Raw binary random data
485 */
486 public static function generate( $bytes, $forceStrong = false ) {
487 return self::singleton()->realGenerate( $bytes, $forceStrong );
488 }
489
490 /**
491 * Generate a run of (ideally) cryptographically random data and return
492 * it in hexadecimal string format.
493 * You can use MWCryptRand::wasStrong() if you wish to know if the source used
494 * was cryptographically strong.
495 *
496 * @param int $chars The number of hex chars of random data to generate
497 * @param bool $forceStrong Pass true if you want generate to prefer cryptographically
498 * strong sources of entropy even if reading from them may steal
499 * more entropy from the system than optimal.
500 * @return string Hexadecimal random data
501 */
502 public static function generateHex( $chars, $forceStrong = false ) {
503 return self::singleton()->realGenerateHex( $chars, $forceStrong );
504 }
505 }