t/io_uring: use internal random generator
[fio.git] / lib / rand.c
CommitLineData
79c94bd3
JA
1/*
2 This is a maximally equidistributed combined Tausworthe generator
3 based on code from GNU Scientific Library 1.5 (30 Jun 2004)
4
5 x_n = (s1_n ^ s2_n ^ s3_n)
6
7 s1_{n+1} = (((s1_n & 4294967294) <<12) ^ (((s1_n <<13) ^ s1_n) >>19))
8 s2_{n+1} = (((s2_n & 4294967288) << 4) ^ (((s2_n << 2) ^ s2_n) >>25))
9 s3_{n+1} = (((s3_n & 4294967280) <<17) ^ (((s3_n << 3) ^ s3_n) >>11))
10
11 The period of this generator is about 2^88.
12
13 From: P. L'Ecuyer, "Maximally Equidistributed Combined Tausworthe
14 Generators", Mathematics of Computation, 65, 213 (1996), 203--213.
15
16 This is available on the net from L'Ecuyer's home page,
17
18 http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme.ps
19 ftp://ftp.iro.umontreal.ca/pub/simulation/lecuyer/papers/tausme.ps
20
21 There is an erratum in the paper "Tables of Maximally
22 Equidistributed Combined LFSR Generators", Mathematics of
23 Computation, 68, 225 (1999), 261--269:
24 http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme2.ps
25
26 ... the k_j most significant bits of z_j must be non-
27 zero, for each j. (Note: this restriction also applies to the
28 computer code given in [4], but was mistakenly not mentioned in
29 that paper.)
30
31 This affects the seeding procedure by imposing the requirement
32 s1 > 1, s2 > 7, s3 > 15.
33
34*/
35
9c42684e 36#include <string.h>
1fbbf72e 37#include "rand.h"
ad8b6a2f 38#include "pattern.h"
637ef8d9 39#include "../hash.h"
1fbbf72e 40
16dc0710
JA
41int arch_random;
42
c3546b53 43static inline uint64_t __seed(uint64_t x, uint64_t m)
1fbbf72e
JA
44{
45 return (x < m) ? x + m : x;
46}
47
5f2f3569 48static void __init_rand32(struct taus88_state *state, unsigned int seed)
2615cc4b
JA
49{
50 int cranks = 6;
51
52#define LCG(x, seed) ((x) * 69069 ^ (seed))
53
54 state->s1 = __seed(LCG((2^31) + (2^17) + (2^7), seed), 1);
55 state->s2 = __seed(LCG(state->s1, seed), 7);
56 state->s3 = __seed(LCG(state->s2, seed), 15);
57
58 while (cranks--)
c3546b53 59 __rand32(state);
2615cc4b
JA
60}
61
9eff5320 62void __init_rand64(struct taus258_state *state, uint64_t seed)
1fbbf72e 63{
c3546b53
JA
64 int cranks = 6;
65
66#define LCG64(x, seed) ((x) * 6906969069ULL ^ (seed))
67
68 state->s1 = __seed(LCG64((2^31) + (2^17) + (2^7), seed), 1);
69 state->s2 = __seed(LCG64(state->s1, seed), 7);
70 state->s3 = __seed(LCG64(state->s2, seed), 15);
71 state->s4 = __seed(LCG64(state->s3, seed), 33);
72 state->s5 = __seed(LCG64(state->s4, seed), 49);
73
74 while (cranks--)
75 __rand64(state);
2615cc4b
JA
76}
77
de4096e8 78void init_rand(struct frand_state *state, bool use64)
2615cc4b 79{
c3546b53
JA
80 state->use64 = use64;
81
82 if (!use64)
83 __init_rand32(&state->state32, 1);
84 else
85 __init_rand64(&state->state64, 1);
86}
87
eda99d55 88void init_rand_seed(struct frand_state *state, uint64_t seed, bool use64)
c3546b53
JA
89{
90 state->use64 = use64;
91
92 if (!use64)
eda99d55 93 __init_rand32(&state->state32, (unsigned int) seed);
c3546b53
JA
94 else
95 __init_rand64(&state->state64, seed);
1fbbf72e 96}
637ef8d9 97
9781c080 98void __fill_random_buf(void *buf, unsigned int len, uint64_t seed)
637ef8d9 99{
6780906f 100 void *ptr = buf;
637ef8d9 101
6780906f 102 while (len) {
74a92cdd
JA
103 int this_len;
104
6780906f
JA
105 if (len >= sizeof(int64_t)) {
106 *((int64_t *) ptr) = seed;
74a92cdd 107 this_len = sizeof(int64_t);
6780906f
JA
108 } else if (len >= sizeof(int32_t)) {
109 *((int32_t *) ptr) = seed;
74a92cdd 110 this_len = sizeof(int32_t);
6780906f
JA
111 } else if (len >= sizeof(int16_t)) {
112 *((int16_t *) ptr) = seed;
74a92cdd 113 this_len = sizeof(int16_t);
6780906f
JA
114 } else {
115 *((int8_t *) ptr) = seed;
74a92cdd 116 this_len = sizeof(int8_t);
6780906f 117 }
74a92cdd
JA
118 ptr += this_len;
119 len -= this_len;
7d9fb455
JA
120 seed *= GOLDEN_RATIO_PRIME;
121 seed >>= 3;
637ef8d9
JA
122 }
123}
7d9fb455 124
9781c080
MHT
125uint64_t fill_random_buf(struct frand_state *fs, void *buf,
126 unsigned int len)
7d9fb455 127{
0d71aa98 128 uint64_t r = __get_next_seed(fs);
7d9fb455
JA
129
130 __fill_random_buf(buf, len, r);
131 return r;
132}
9c42684e 133
9781c080 134void __fill_random_buf_percentage(uint64_t seed, void *buf,
bc769898
JA
135 unsigned int percentage,
136 unsigned int segment, unsigned int len,
137 char *pattern, unsigned int pbytes)
9c42684e 138{
811ac503 139 unsigned int this_len;
9c42684e 140
811ac503 141 if (percentage == 100) {
d1af2894 142 if (pbytes)
2cac8fcb 143 (void)cpy_pattern(pattern, pbytes, buf, len);
d1af2894
JA
144 else
145 memset(buf, 0, len);
bc769898 146 return;
811ac503
JA
147 }
148
149 if (segment > len)
150 segment = len;
9c42684e 151
9c42684e
JA
152 while (len) {
153 /*
154 * Fill random chunk
155 */
2474b06d 156 this_len = ((unsigned long long)segment * (100 - percentage)) / 100;
9c42684e
JA
157 if (this_len > len)
158 this_len = len;
159
bc769898 160 __fill_random_buf(buf, this_len, seed);
9c42684e
JA
161
162 len -= this_len;
6780906f
JA
163 if (!len)
164 break;
9c42684e 165 buf += this_len;
3363fa44 166 this_len = segment - this_len;
9c42684e 167
811ac503
JA
168 if (this_len > len)
169 this_len = len;
6780906f
JA
170 else if (len - this_len <= sizeof(long))
171 this_len = len;
9c42684e 172
d1af2894 173 if (pbytes)
2cac8fcb 174 (void)cpy_pattern(pattern, pbytes, buf, this_len);
d1af2894
JA
175 else
176 memset(buf, 0, this_len);
bc769898 177
98836539
JA
178 len -= this_len;
179 buf += this_len;
9c42684e 180 }
bc769898
JA
181}
182
9781c080
MHT
183uint64_t fill_random_buf_percentage(struct frand_state *fs, void *buf,
184 unsigned int percentage,
185 unsigned int segment, unsigned int len,
186 char *pattern, unsigned int pbytes)
bc769898 187{
0d71aa98 188 uint64_t r = __get_next_seed(fs);
9c42684e 189
bc769898
JA
190 __fill_random_buf_percentage(r, buf, percentage, segment, len,
191 pattern, pbytes);
9c42684e
JA
192 return r;
193}