Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** This file contains code to implement a pseudo-random number
13 ** generator (PRNG) for SQLite.
15 ** Random numbers are used by some of the database backends in order
16 ** to generate random integer keys for tables or random filenames.
18 ** $Id: random.c,v 1.26 2008/09/02 00:52:52 drh Exp $
20 #include "sqliteInt.h"
23 /* All threads share a single random number generator.
24 ** This structure is the current state of the generator.
26 static SQLITE_WSD struct sqlite3PrngType {
27 unsigned char isInit; /* True if initialized */
28 unsigned char i, j; /* State variables */
29 unsigned char s[256]; /* State variables */
30 } sqlite3Prng = { 0, };
33 ** Get a single 8-bit random value from the RC4 PRNG. The Mutex
34 ** must be held while executing this routine.
36 ** Why not just use a library random generator like lrand48() for this?
37 ** Because the OP_NewRowid opcode in the VDBE depends on having a very
38 ** good source of random numbers. The lrand48() library function may
39 ** well be good enough. But maybe not. Or maybe lrand48() has some
40 ** subtle problems on some systems that could cause problems. It is hard
41 ** to know. To minimize the risk of problems due to bad lrand48()
42 ** implementations, SQLite uses this random number generator based
43 ** on RC4, which we know works very well.
45 ** (Later): Actually, OP_NewRowid does not depend on a good source of
46 ** randomness any more. But we will leave this code in all the same.
48 static int randomByte(void){
52 /* The "wsdPrng" macro will resolve to the pseudo-random number generator
53 ** state vector. If writable static data is unsupported on the target,
54 ** we have to locate the state vector at run-time. In the more common
55 ** case where writable static data is supported, wsdPrng can refer directly
56 ** to the "sqlite3Prng" state vector declared above.
58 #ifdef SQLITE_OMIT_WSD
59 struct sqlite3PrngType *p = &GLOBAL(struct sqlite3PrngType, sqlite3Prng);
62 # define wsdPrng sqlite3Prng
66 /* Initialize the state of the random number generator once,
67 ** the first time this routine is called. The seed value does
68 ** not need to contain a lot of randomness since we are not
69 ** trying to do secure encryption or anything like that...
71 ** Nothing in this file or anywhere else in SQLite does any kind of
72 ** encryption. The RC4 algorithm is being used as a PRNG (pseudo-random
73 ** number generator) not as an encryption device.
75 if( !wsdPrng.isInit ){
80 sqlite3OsRandomness(sqlite3_vfs_find(0), 256, k);
85 wsdPrng.j += wsdPrng.s[i] + k[i];
86 t = wsdPrng.s[wsdPrng.j];
87 wsdPrng.s[wsdPrng.j] = wsdPrng.s[i];
93 /* Generate and return single random byte
96 t = wsdPrng.s[wsdPrng.i];
98 wsdPrng.s[wsdPrng.i] = wsdPrng.s[wsdPrng.j];
99 wsdPrng.s[wsdPrng.j] = t;
100 t += wsdPrng.s[wsdPrng.i];
105 ** Return N random bytes.
107 SQLITE_EXPORT void sqlite3_randomness(int N, void *pBuf){
108 unsigned char *zBuf = pBuf;
109 #ifndef SQLITE_MUTEX_NOOP
110 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG);
112 sqlite3_mutex_enter(mutex);
114 *(zBuf++) = randomByte();
116 sqlite3_mutex_leave(mutex);
119 #ifndef SQLITE_OMIT_BUILTIN_TEST
121 ** For testing purposes, we sometimes want to preserve the state of
122 ** PRNG and restore the PRNG to its saved state at a later time, or
123 ** to reset the PRNG to its initial state. These routines accomplish
126 ** The sqlite3_test_control() interface calls these routines to
129 static SQLITE_WSD struct sqlite3PrngType sqlite3SavedPrng = { 0, };
130 void sqlite3PrngSaveState(void){
132 &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng),
133 &GLOBAL(struct sqlite3PrngType, sqlite3Prng),
137 void sqlite3PrngRestoreState(void){
139 &GLOBAL(struct sqlite3PrngType, sqlite3Prng),
140 &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng),
144 void sqlite3PrngResetState(void){
145 GLOBAL(struct sqlite3PrngType, sqlite3Prng).isInit = 0;
147 #endif /* SQLITE_OMIT_BUILTIN_TEST */