You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

149 lines
4.4 KiB

  1. <?php
  2. /**
  3. * Random_* Compatibility Library
  4. * for using the new PHP 7 random_* API in PHP 5 projects
  5. *
  6. * The MIT License (MIT)
  7. *
  8. * Copyright (c) 2015 Paragon Initiative Enterprises
  9. *
  10. * Permission is hereby granted, free of charge, to any person obtaining a copy
  11. * of this software and associated documentation files (the "Software"), to deal
  12. * in the Software without restriction, including without limitation the rights
  13. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  14. * copies of the Software, and to permit persons to whom the Software is
  15. * furnished to do so, subject to the following conditions:
  16. *
  17. * The above copyright notice and this permission notice shall be included in
  18. * all copies or substantial portions of the Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  23. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  24. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  25. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  26. * SOFTWARE.
  27. */
  28. if (!defined('RANDOM_COMPAT_READ_BUFFER')) {
  29. define('RANDOM_COMPAT_READ_BUFFER', 8);
  30. }
  31. /**
  32. * Unless open_basedir is enabled, use /dev/urandom for
  33. * random numbers in accordance with best practices
  34. *
  35. * Why we use /dev/urandom and not /dev/random
  36. * @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers
  37. *
  38. * @param int $bytes
  39. *
  40. * @throws Exception
  41. *
  42. * @return string
  43. */
  44. function random_bytes($bytes)
  45. {
  46. static $fp = null;
  47. /**
  48. * This block should only be run once
  49. */
  50. if (empty($fp)) {
  51. /**
  52. * We use /dev/urandom if it is a char device.
  53. * We never fall back to /dev/random
  54. */
  55. $fp = fopen('/dev/urandom', 'rb');
  56. if (!empty($fp)) {
  57. $st = fstat($fp);
  58. if (($st['mode'] & 0170000) !== 020000) {
  59. fclose($fp);
  60. $fp = false;
  61. }
  62. }
  63. if (!empty($fp)) {
  64. /**
  65. * stream_set_read_buffer() does not exist in HHVM
  66. *
  67. * If we don't set the stream's read buffer to 0, PHP will
  68. * internally buffer 8192 bytes, which can waste entropy
  69. *
  70. * stream_set_read_buffer returns 0 on success
  71. */
  72. if (function_exists('stream_set_read_buffer')) {
  73. stream_set_read_buffer($fp, RANDOM_COMPAT_READ_BUFFER);
  74. }
  75. if (function_exists('stream_set_chunk_size')) {
  76. stream_set_chunk_size($fp, RANDOM_COMPAT_READ_BUFFER);
  77. }
  78. }
  79. }
  80. try {
  81. $bytes = RandomCompat_intval($bytes);
  82. } catch (TypeError $ex) {
  83. throw new TypeError(
  84. 'random_bytes(): $bytes must be an integer'
  85. );
  86. }
  87. if ($bytes < 1) {
  88. throw new Error(
  89. 'Length must be greater than 0'
  90. );
  91. }
  92. /**
  93. * This if() block only runs if we managed to open a file handle
  94. *
  95. * It does not belong in an else {} block, because the above
  96. * if (empty($fp)) line is logic that should only be run once per
  97. * page load.
  98. */
  99. if (!empty($fp)) {
  100. $remaining = $bytes;
  101. $buf = '';
  102. /**
  103. * We use fread() in a loop to protect against partial reads
  104. */
  105. do {
  106. $read = fread($fp, $remaining);
  107. if ($read === false) {
  108. /**
  109. * We cannot safely read from the file. Exit the
  110. * do-while loop and trigger the exception condition
  111. */
  112. $buf = false;
  113. break;
  114. }
  115. /**
  116. * Decrease the number of bytes returned from remaining
  117. */
  118. $remaining -= RandomCompat_strlen($read);
  119. $buf .= $read;
  120. } while ($remaining > 0);
  121. /**
  122. * Is our result valid?
  123. */
  124. if ($buf !== false) {
  125. if (RandomCompat_strlen($buf) === $bytes) {
  126. /**
  127. * Return our random entropy buffer here:
  128. */
  129. return $buf;
  130. }
  131. }
  132. }
  133. /**
  134. * If we reach here, PHP has failed us.
  135. */
  136. throw new Exception(
  137. 'Error reading from source device'
  138. );
  139. }