====== PHP RFC: RNG fixes and changes ====== * Version: 1.0 * Date: 2016-05-03 * Author: Leigh T * Status: Implemented (PHP 7.1) * First Published at: https://wiki.php.net/rfc/rng_fixes ===== Introduction ===== There are several long standing issues with random number generation that should be addressed: * Incorrect implementations * Platform-specific outputs * Poor scaling of bounded outputs * Insecure usage Some of these fixes alter the output of the RNG or change the behaviour of functions that depend on them, so it makes sense to perform all of the changes at the same time. ===== Proposal ===== There are several proposals up for discussion. * Fix the current mt_rand() implementation, with the legacy implementation still available. * Alias rand() to mt_rand(). * Fix RAND_RANGE for large ranges. * Replace insecure uses of php_rand() with php_random_bytes() * Make array_rand() more efficient == Fix mt_rand() implementation == The implementation of mt_rand() in PHP contains a typo that makes it generate a different sequence of numbers to the original mt19937 implementation. [[https://bugs.php.net/bug.php?id=71152|See bug #71152]] [[https://gist.github.com/tom--/a12175047578b3ae9ef8|Statistical analysis]] suggests that the quality of the output is unaffected. As mt_rand() can be seeded for repeatable sequences the current implementation makes it incompatible with other systems that do use correct implementations. However fixing it also means that the sequence generated for a given seed in PHP will also now be different. The legacy implementation will be preserved and be selectable with a new `mt_srand(int $seed [, int $mode])` parameter, along with new constants representing the two modes. The default will be the fixed algorithm. * Yes * No == Alias rand() to mt_rand() == rand() uses the system random number generator. The output of this RNG is system dependant and on many systems produces weak random numbers. ([[https://bugs.php.net/bug.php?id=45301|See bug #45301]]) Aliasing it to mt_rand() improves the quality of the output and means the same output can be expected for a given seed regardless of platform. * Yes * No == Fix RAND_RANGE() == The macro used to scale the output of an RNG between two bounds is insufficient for large ranges. ([[https://bugs.php.net/bug.php?id=45184|See bug #45184]]) The proposed fix is to concatenate multiple outputs for ranges exceeding 32 bits, and use rejection sampling (the same as used in random_bytes()) to produce unbiased outputs. * Yes * No == Replace insecure uses of php_rand() with php_random_bytes() == There are several instances where rand() is used internally in a security sensetive context * crypt() salt generation * SOAP HTTP auth nonce generation These instances should all be fixed to use the secure random number generator (even mcrypt which is deprecated) * Yes * No == Make array_rand() more efficient == It has been noted that ([[http://php.net/manual/en/function.array-rand.php#117114|array_rand() produces weird and very uneven random distribution]]). As the above proposals change the output of array_rand() anyway, we can fix this at the same time. * Yes * No ===== Backward Incompatible Changes ===== A call to srand() or mt_srand() with a given seed will produce a different output in the following functions: * mt_rand() * rand() * array_rand() * shuffle() * str_shuffle() * crypt() ===== Proposed PHP Version(s) ===== 7.1 ===== RFC Impact ===== ==== To SAPIs ==== None ==== To Existing Extensions ==== This is covered in the Backward Incompatible Changes section ==== To Opcache ==== None, this is a functional change, no changes to opcodes or code generation are required. ==== New Constants ==== MT_RAND_MT19937 (correct implementation mode) MT_RAND_PHP (unofficial implementation mode) ===== Open Issues ===== None ===== Proposed Voting Choices ===== Individual votes will be held for the remaining proposals, and since minor BC breaks are introduced they will require a 2/3 majority to pass. ===== Patches and Tests ===== https://github.com/php/php-src/pull/1986 ===== Implementation ===== https://github.com/php/php-src/commit/ab834f4 ===== References ===== ===== Rejected Features ===== None