forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstress-rdrand.c
428 lines (373 loc) · 8.48 KB
/
stress-rdrand.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2021-2022 Colin Ian King
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#include "core-arch.h"
#include "core-cpu.h"
#if defined(HAVE_SYS_CAPABILITY_H)
#include <sys/capability.h>
#endif
static const stress_help_t help[] = {
{ NULL, "rdrand N", "start N workers exercising rdrand (x86 only)" },
{ NULL, "rdrand-ops N", "stop after N rdrand bogo operations" },
{ NULL, "rdrand-seed", "use rdseed instead of rdrand" },
{ NULL, NULL, NULL }
};
#define STRESS_SANE_LOOPS_QUICK 16
#define STRESS_SANE_LOOPS 65536
static int stress_set_rdrand_seed(const char *opt)
{
(void)opt;
#if defined(STRESS_ARCH_X86) && \
defined(HAVE_ASM_X86_RDRAND) && \
defined(HAVE_ASM_X86_RDSEED)
if (stress_cpu_x86_has_rdseed()) {
bool rdrand_seed = true;
return stress_set_setting("rdrand-seed", TYPE_ID_BOOL, &rdrand_seed);
}
#endif
pr_inf("rdrand-seed ignored, cpu does not support feature, defaulting to rdrand\n");
return 0;
}
static const stress_opt_set_func_t opt_set_funcs[] = {
{ OPT_rdrand_seed, stress_set_rdrand_seed },
{ 0, NULL }
};
#if defined(STRESS_ARCH_X86) && \
defined(HAVE_ASM_X86_RDRAND)
#define HAVE_RAND_CAPABILITY
#if defined(HAVE_ASM_X86_RDSEED)
#define HAVE_SEED_CAPABILITY
#endif
static bool rdrand_supported = false;
/*
* stress_rdrand_supported()
* check if rdrand is supported
*/
static int stress_rdrand_supported(const char *name)
{
/* Intel CPU? */
if (!stress_cpu_is_x86()) {
pr_inf_skip("%s stressor will be skipped, "
"not a recognised Intel CPU\n", name);
return -1;
}
if (!stress_cpu_x86_has_rdrand()) {
pr_inf_skip("%s stressor will be skipped, CPU "
"does not support the rdrand instruction\n", name);
return -1;
}
rdrand_supported = true;
return 0;
}
#if defined(__x86_64__) || defined(__x86_64)
/*
* rdrand64()
* read 64 bit random value
*/
static inline uint64_t rand64(void)
{
uint64_t ret;
__asm__ __volatile__("1:;\n\
rdrand %0;\n\
jnc 1b;\n":"=r"(ret));
return ret;
}
/*
* rdseed64()
* read 64 bit random value
*/
static inline uint64_t seed64(void)
{
uint64_t ret;
__asm__ __volatile__("1:;\n\
rdseed %0;\n\
jnc 1b;\n":"=r"(ret));
return ret;
}
#else
/*
* rdrand64()
* read 2 x 32 bit random value
*/
static inline uint32_t rand64(void)
{
uint32_t ret;
__asm__ __volatile__("1:;\n\
rdrand %0;\n\
jnc 1b;\n":"=r"(ret));
__asm__ __volatile__("1:;\n\
rdrand %0;\n\
jnc 1b;\n":"=r"(ret));
return ret;
}
/*
* seed64()
* read 2 x 32 bit random value
*/
static inline uint32_t seed64(void)
{
uint32_t ret;
__asm__ __volatile__("1:;\n\
rdseed %0;\n\
jnc 1b;\n":"=r"(ret));
__asm__ __volatile__("1:;\n\
rdseed %0;\n\
jnc 1b;\n":"=r"(ret));
return ret;
}
#endif
#endif
#if defined(STRESS_ARCH_PPC64) && \
defined(HAVE_ASM_PPC64_DARN)
#define HAVE_RAND_CAPABILITY
static bool rdrand_supported = false;
static volatile uint64_t v;
static int stress_rdrand_supported(const char *name)
{
#if defined(HAVE_BUILTIN_CPU_IS_POWER9)
if (__builtin_cpu_is("power9")) {
rdrand_supported = true;
return 0;
}
pr_inf_skip("%s stressor will be skipped, CPU "
"does not support the instruction 'darn'\n", name);
return -1;
#else
pr_inf_skip("%s stressor will be skipped, cannot"
"determine if CPU is a power9 the instruction 'darn'\n", name);
return -1;
#endif
}
static inline uint64_t rand64(void)
{
uint64_t val;
/* Unconditioned raw deliver a raw number */
__asm__ __volatile__("darn %0, 0\n" : "=r"(val) :);
return val;
}
#endif
#if defined(HAVE_RAND_CAPABILITY)
/*
* Unrolled 32 times
*/
#define RAND64x32() \
{ \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
rand64(); \
}
#if defined(HAVE_SEED_CAPABILITY)
/*
* Unrolled 32 times
*/
#define SEED64x32() \
{ \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
seed64(); \
}
#endif
static int stress_rdrand_sane(const stress_args_t *args)
{
const uint64_t r1 = rand64();
int i, changed, same;
for (changed = 0, i = 0; i < STRESS_SANE_LOOPS_QUICK; i++) {
const uint64_t r2 = rand64();
if (r1 != r2)
changed++;
}
/*
* random 64 bit reads locked up and all the same?
*/
if (changed == 0) {
pr_fail("%s: random value did not change in %d reads\n",
args->name, STRESS_SANE_LOOPS_QUICK);
return EXIT_FAILURE;
}
/*
* If STRESS_SANE_LOOPS is small, then it's unlikely (but not
* impossible) that we read the same 64 bit random data multiple
* times
*/
for (same = 0, i = 0; i < STRESS_SANE_LOOPS; i++) {
const uint64_t r2 = rand64();
if (r1 == r2)
same++;
}
/* Not a failure, but it is worth reporting */
if (same > 0) {
pr_inf("%s: 64 bit random value was the same in %d of %d reads (should be quite unlikely)\n",
args->name,
same, STRESS_SANE_LOOPS);
}
return EXIT_SUCCESS;
}
/*
* stress_rdrand()
* stress Intel rdrand instruction
*/
static int stress_rdrand(const stress_args_t *args)
{
int rc = EXIT_SUCCESS;
#if defined(HAVE_SEED_CAPABILITY)
bool rdrand_seed = false;
(void)stress_get_setting("rdrand-seed", &rdrand_seed);
#endif
stress_set_proc_state(args->name, STRESS_STATE_RUN);
if (rdrand_supported) {
double time_start, duration, billion_bits;
bool lock = false;
register int i;
uint64_t c;
rc = stress_rdrand_sane(args);
time_start = stress_time_now();
#if defined(HAVE_SEED_CAPABILITY)
if (rdrand_seed) {
do {
for (i = 0; i < 4096; i++) {
SEED64x32()
SEED64x32()
SEED64x32()
SEED64x32()
SEED64x32()
SEED64x32()
SEED64x32()
SEED64x32()
}
add_counter(args, (uint64_t)i);
} while (keep_stressing(args));
} else
#endif
{
do {
for (i = 0; i < 4096; i++) {
RAND64x32()
RAND64x32()
RAND64x32()
RAND64x32()
RAND64x32()
RAND64x32()
RAND64x32()
RAND64x32()
}
add_counter(args, (uint64_t)i);
} while (keep_stressing(args));
}
duration = stress_time_now() - time_start;
c = get_counter(args);
billion_bits = ((double)c * 64.0 * 256.0) * ONE_BILLIONTH;
pr_lock(&lock);
pr_dbg_lock(&lock, "%s: %.3f billion random bits read "
"(instance %" PRIu32")\n",
args->name, billion_bits, args->instance);
if (duration > 0.0) {
pr_dbg_lock(&lock, "%s: %.3f billion random bits per "
"second (instance %" PRIu32")\n",
args->name,
(double)billion_bits / duration,
args->instance);
}
pr_unlock(&lock);
stress_misc_stats_set(args->misc_stats, 0, "billion random bits read", billion_bits);
stress_misc_stats_set(args->misc_stats, 1, "billion random bits / sec", billion_bits / duration);
}
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
return rc;
}
stressor_info_t stress_rdrand_info = {
.stressor = stress_rdrand,
.supported = stress_rdrand_supported,
.opt_set_funcs = opt_set_funcs,
.class = CLASS_CPU,
.help = help
};
#else
static int stress_rdrand_supported(const char *name)
{
pr_inf_skip("%s stressor will be skipped, CPU "
"does not support the rdrand instruction.\n", name);
return -1;
}
stressor_info_t stress_rdrand_info = {
.stressor = stress_not_implemented,
.supported = stress_rdrand_supported,
.opt_set_funcs = opt_set_funcs,
.class = CLASS_CPU,
.help = help
};
#endif