rand.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@php.net> |
  16. | Zeev Suraski <zeev@zend.com> |
  17. | Pedro Melo <melo@ip.pt> |
  18. | Sterling Hughes <sterling@php.net> |
  19. | |
  20. | Based on code from: Richard J. Wagner <rjwagner@writeme.com> |
  21. | Makoto Matsumoto <matumoto@math.keio.ac.jp> |
  22. | Takuji Nishimura |
  23. | Shawn Cokus <Cokus@math.washington.edu> |
  24. +----------------------------------------------------------------------+
  25. */
  26. /* $Id$ */
  27. #include <stdlib.h>
  28. #include "php.h"
  29. #include "php_math.h"
  30. #include "php_rand.h"
  31. #include "basic_functions.h"
  32. /* SYSTEM RAND FUNCTIONS */
  33. /* {{{ php_srand
  34. */
  35. PHPAPI void php_srand(long seed TSRMLS_DC)
  36. {
  37. #ifdef ZTS
  38. BG(rand_seed) = (unsigned int) seed;
  39. #else
  40. # if defined(HAVE_SRANDOM)
  41. srandom((unsigned int) seed);
  42. # elif defined(HAVE_SRAND48)
  43. srand48(seed);
  44. # else
  45. srand((unsigned int) seed);
  46. # endif
  47. #endif
  48. /* Seed only once */
  49. BG(rand_is_seeded) = 1;
  50. }
  51. /* }}} */
  52. /* {{{ php_rand
  53. */
  54. PHPAPI long php_rand(TSRMLS_D)
  55. {
  56. long ret;
  57. if (!BG(rand_is_seeded)) {
  58. php_srand(GENERATE_SEED() TSRMLS_CC);
  59. }
  60. #ifdef ZTS
  61. ret = php_rand_r(&BG(rand_seed));
  62. #else
  63. # if defined(HAVE_RANDOM)
  64. ret = random();
  65. # elif defined(HAVE_LRAND48)
  66. ret = lrand48();
  67. # else
  68. ret = rand();
  69. # endif
  70. #endif
  71. return ret;
  72. }
  73. /* }}} */
  74. /* MT RAND FUNCTIONS */
  75. /*
  76. The following php_mt_...() functions are based on a C++ class MTRand by
  77. Richard J. Wagner. For more information see the web page at
  78. http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html
  79. Mersenne Twister random number generator -- a C++ class MTRand
  80. Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus
  81. Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com
  82. The Mersenne Twister is an algorithm for generating random numbers. It
  83. was designed with consideration of the flaws in various other generators.
  84. The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
  85. are far greater. The generator is also fast; it avoids multiplication and
  86. division, and it benefits from caches and pipelines. For more information
  87. see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
  88. Reference
  89. M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally
  90. Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on
  91. Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
  92. Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
  93. Copyright (C) 2000 - 2003, Richard J. Wagner
  94. All rights reserved.
  95. Redistribution and use in source and binary forms, with or without
  96. modification, are permitted provided that the following conditions
  97. are met:
  98. 1. Redistributions of source code must retain the above copyright
  99. notice, this list of conditions and the following disclaimer.
  100. 2. Redistributions in binary form must reproduce the above copyright
  101. notice, this list of conditions and the following disclaimer in the
  102. documentation and/or other materials provided with the distribution.
  103. 3. The names of its contributors may not be used to endorse or promote
  104. products derived from this software without specific prior written
  105. permission.
  106. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  107. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  108. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  109. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  110. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  111. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  112. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  113. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  114. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  115. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  116. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  117. */
  118. #define N MT_N /* length of state vector */
  119. #define M (397) /* a period parameter */
  120. #define hiBit(u) ((u) & 0x80000000U) /* mask all but highest bit of u */
  121. #define loBit(u) ((u) & 0x00000001U) /* mask all but lowest bit of u */
  122. #define loBits(u) ((u) & 0x7FFFFFFFU) /* mask the highest bit of u */
  123. #define mixBits(u, v) (hiBit(u)|loBits(v)) /* move hi bit of u to hi bit of v */
  124. #define twist(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((php_uint32)(-(php_int32)(loBit(u))) & 0x9908b0dfU))
  125. /* {{{ php_mt_initialize
  126. */
  127. static inline void php_mt_initialize(php_uint32 seed, php_uint32 *state)
  128. {
  129. /* Initialize generator state with seed
  130. See Knuth TAOCP Vol 2, 3rd Ed, p.106 for multiplier.
  131. In previous versions, most significant bits (MSBs) of the seed affect
  132. only MSBs of the state array. Modified 9 Jan 2002 by Makoto Matsumoto. */
  133. register php_uint32 *s = state;
  134. register php_uint32 *r = state;
  135. register int i = 1;
  136. *s++ = seed & 0xffffffffU;
  137. for( ; i < N; ++i ) {
  138. *s++ = ( 1812433253U * ( *r ^ (*r >> 30) ) + i ) & 0xffffffffU;
  139. r++;
  140. }
  141. }
  142. /* }}} */
  143. /* {{{ php_mt_reload
  144. */
  145. static inline void php_mt_reload(TSRMLS_D)
  146. {
  147. /* Generate N new values in state
  148. Made clearer and faster by Matthew Bellew (matthew.bellew@home.com) */
  149. register php_uint32 *state = BG(state);
  150. register php_uint32 *p = state;
  151. register int i;
  152. for (i = N - M; i--; ++p)
  153. *p = twist(p[M], p[0], p[1]);
  154. for (i = M; --i; ++p)
  155. *p = twist(p[M-N], p[0], p[1]);
  156. *p = twist(p[M-N], p[0], state[0]);
  157. BG(left) = N;
  158. BG(next) = state;
  159. }
  160. /* }}} */
  161. /* {{{ php_mt_srand
  162. */
  163. PHPAPI void php_mt_srand(php_uint32 seed TSRMLS_DC)
  164. {
  165. /* Seed the generator with a simple uint32 */
  166. php_mt_initialize(seed, BG(state));
  167. php_mt_reload(TSRMLS_C);
  168. /* Seed only once */
  169. BG(mt_rand_is_seeded) = 1;
  170. }
  171. /* }}} */
  172. /* {{{ php_mt_rand
  173. */
  174. PHPAPI php_uint32 php_mt_rand(TSRMLS_D)
  175. {
  176. /* Pull a 32-bit integer from the generator state
  177. Every other access function simply transforms the numbers extracted here */
  178. register php_uint32 s1;
  179. if (BG(left) == 0) {
  180. php_mt_reload(TSRMLS_C);
  181. }
  182. --BG(left);
  183. s1 = *BG(next)++;
  184. s1 ^= (s1 >> 11);
  185. s1 ^= (s1 << 7) & 0x9d2c5680U;
  186. s1 ^= (s1 << 15) & 0xefc60000U;
  187. return ( s1 ^ (s1 >> 18) );
  188. }
  189. /* }}} */
  190. /* {{{ proto void srand([int seed])
  191. Seeds random number generator */
  192. PHP_FUNCTION(srand)
  193. {
  194. long seed = 0;
  195. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &seed) == FAILURE)
  196. return;
  197. if (ZEND_NUM_ARGS() == 0)
  198. seed = GENERATE_SEED();
  199. php_srand(seed TSRMLS_CC);
  200. }
  201. /* }}} */
  202. /* {{{ proto void mt_srand([int seed])
  203. Seeds Mersenne Twister random number generator */
  204. PHP_FUNCTION(mt_srand)
  205. {
  206. long seed = 0;
  207. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &seed) == FAILURE)
  208. return;
  209. if (ZEND_NUM_ARGS() == 0)
  210. seed = GENERATE_SEED();
  211. php_mt_srand(seed TSRMLS_CC);
  212. }
  213. /* }}} */
  214. /*
  215. * A bit of tricky math here. We want to avoid using a modulus because
  216. * that simply tosses the high-order bits and might skew the distribution
  217. * of random values over the range. Instead we map the range directly.
  218. *
  219. * We need to map the range from 0...M evenly to the range a...b
  220. * Let n = the random number and n' = the mapped random number
  221. *
  222. * Then we have: n' = a + n(b-a)/M
  223. *
  224. * We have a problem here in that only n==M will get mapped to b which
  225. # means the chances of getting b is much much less than getting any of
  226. # the other values in the range. We can fix this by increasing our range
  227. # artifically and using:
  228. #
  229. # n' = a + n(b-a+1)/M
  230. *
  231. # Now we only have a problem if n==M which would cause us to produce a
  232. # number of b+1 which would be bad. So we bump M up by one to make sure
  233. # this will never happen, and the final algorithm looks like this:
  234. #
  235. # n' = a + n(b-a+1)/(M+1)
  236. *
  237. * -RL
  238. */
  239. /* {{{ proto int rand([int min, int max])
  240. Returns a random number */
  241. PHP_FUNCTION(rand)
  242. {
  243. long min;
  244. long max;
  245. long number;
  246. int argc = ZEND_NUM_ARGS();
  247. if (argc != 0 && zend_parse_parameters(argc TSRMLS_CC, "ll", &min, &max) == FAILURE)
  248. return;
  249. number = php_rand(TSRMLS_C);
  250. if (argc == 2) {
  251. RAND_RANGE(number, min, max, PHP_RAND_MAX);
  252. }
  253. RETURN_LONG(number);
  254. }
  255. /* }}} */
  256. /* {{{ proto int mt_rand([int min, int max])
  257. Returns a random number from Mersenne Twister */
  258. PHP_FUNCTION(mt_rand)
  259. {
  260. long min;
  261. long max;
  262. long number;
  263. int argc = ZEND_NUM_ARGS();
  264. if (argc != 0) {
  265. if (zend_parse_parameters(argc TSRMLS_CC, "ll", &min, &max) == FAILURE) {
  266. return;
  267. } else if (max < min) {
  268. php_error_docref(NULL TSRMLS_CC, E_WARNING, "max(%ld) is smaller than min(%ld)", max, min);
  269. RETURN_FALSE;
  270. }
  271. }
  272. if (!BG(mt_rand_is_seeded)) {
  273. php_mt_srand(GENERATE_SEED() TSRMLS_CC);
  274. }
  275. /*
  276. * Melo: hmms.. randomMT() returns 32 random bits...
  277. * Yet, the previous php_rand only returns 31 at most.
  278. * So I put a right shift to loose the lsb. It *seems*
  279. * better than clearing the msb.
  280. * Update:
  281. * I talked with Cokus via email and it won't ruin the algorithm
  282. */
  283. number = (long) (php_mt_rand(TSRMLS_C) >> 1);
  284. if (argc == 2) {
  285. RAND_RANGE(number, min, max, PHP_MT_RAND_MAX);
  286. }
  287. RETURN_LONG(number);
  288. }
  289. /* }}} */
  290. /* {{{ proto int getrandmax(void)
  291. Returns the maximum value a random number can have */
  292. PHP_FUNCTION(getrandmax)
  293. {
  294. if (zend_parse_parameters_none() == FAILURE) {
  295. return;
  296. }
  297. RETURN_LONG(PHP_RAND_MAX);
  298. }
  299. /* }}} */
  300. /* {{{ proto int mt_getrandmax(void)
  301. Returns the maximum value a random number from Mersenne Twister can have */
  302. PHP_FUNCTION(mt_getrandmax)
  303. {
  304. if (zend_parse_parameters_none() == FAILURE) {
  305. return;
  306. }
  307. /*
  308. * Melo: it could be 2^^32 but we only use 2^^31 to maintain
  309. * compatibility with the previous php_rand
  310. */
  311. RETURN_LONG(PHP_MT_RAND_MAX); /* 2^^31 */
  312. }
  313. /* }}} */
  314. /*
  315. * Local variables:
  316. * tab-width: 4
  317. * c-basic-offset: 4
  318. * End:
  319. * vim600: noet sw=4 ts=4 fdm=marker
  320. * vim<600: noet sw=4 ts=4
  321. */