123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #include "php.h"
- #include <stdlib.h>
- #if HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <string.h>
- #include <errno.h>
- #include <stdio.h>
- #ifdef PHP_WIN32
- #include "win32/time.h"
- #else
- #include <sys/time.h>
- #endif
- #include "php_lcg.h"
- #include "php_random.h"
- #ifdef HAVE_GETTIMEOFDAY
- ZEND_TLS struct timeval prev_tv = { 0, 0 };
- PHP_FUNCTION(uniqid)
- {
- char *prefix = "";
- bool more_entropy = 0;
- zend_string *uniqid;
- int sec, usec;
- size_t prefix_len = 0;
- struct timeval tv;
- ZEND_PARSE_PARAMETERS_START(0, 2)
- Z_PARAM_OPTIONAL
- Z_PARAM_STRING(prefix, prefix_len)
- Z_PARAM_BOOL(more_entropy)
- ZEND_PARSE_PARAMETERS_END();
-
- do {
- (void)gettimeofday((struct timeval *) &tv, (struct timezone *) NULL);
- } while (tv.tv_sec == prev_tv.tv_sec && tv.tv_usec == prev_tv.tv_usec);
- prev_tv.tv_sec = tv.tv_sec;
- prev_tv.tv_usec = tv.tv_usec;
- sec = (int) tv.tv_sec;
- usec = (int) (tv.tv_usec % 0x100000);
-
- if (more_entropy) {
- uint32_t bytes;
- double seed;
- if (php_random_bytes_silent(&bytes, sizeof(uint32_t)) == FAILURE) {
- seed = php_combined_lcg() * 10;
- } else {
- seed = ((double) bytes / UINT32_MAX) * 10.0;
- }
- uniqid = strpprintf(0, "%s%08x%05x%.8F", prefix, sec, usec, seed);
- } else {
- uniqid = strpprintf(0, "%s%08x%05x", prefix, sec, usec);
- }
- RETURN_STR(uniqid);
- }
- #endif
|