forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stress-af-alg.c
460 lines (401 loc) · 11.7 KB
/
stress-af-alg.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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/*
* Copyright (C) 2013-2017 Canonical, Ltd.
*
* 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.
*
* This code is a complete clean re-write of the stress tool by
* Colin Ian King <[email protected]> and attempts to be
* backwardly compatible with the stress tool by Amos Waterland
* <[email protected]> but has more stress tests and more
* functionality.
*
*/
#include "stress-ng.h"
#if defined(__linux__) && defined(AF_ALG)
#include <linux/if_alg.h>
#include <linux/socket.h>
#if !defined(SOL_ALG)
#define SOL_ALG (279)
#endif
#define DATA_LEN (1024)
#define MAX_AF_ALG_RETRIES (25)
#define SHA1_DIGEST_SIZE (20)
#define SHA224_DIGEST_SIZE (28)
#define SHA256_DIGEST_SIZE (32)
#define SHA384_DIGEST_SIZE (48)
#define SHA512_DIGEST_SIZE (64)
#define MD4_DIGEST_SIZE (16)
#define MD5_DIGEST_SIZE (16)
#define RMD128_DIGEST_SIZE (16)
#define RMD160_DIGEST_SIZE (20)
#define RMD256_DIGEST_SIZE (32)
#define RMD320_DIGEST_SIZE (40)
#define WP256_DIGEST_SIZE (32)
#define WP384_DIGEST_SIZE (48)
#define WP512_DIGEST_SIZE (64)
#define TGR128_DIGEST_SIZE (16)
#define TGR160_DIGEST_SIZE (20)
#define TGR192_DIGEST_SIZE (24)
#define AES_BLOCK_SIZE (16)
#define TF_BLOCK_SIZE (16)
#define SERPENT_BLOCK_SIZE (16)
#define CAST6_BLOCK_SIZE (16)
#define CAMELLIA_BLOCK_SIZE (16)
#define SEMI_BLOCK_SIZE (8)
#define SALSA20_BLOCK_SIZE (8)
#define AES_MAX_KEY_SIZE (32)
#define TF_MAX_KEY_SIZE (32)
#define SERPENT_MAX_KEY_SIZE (32)
#define CAST6_MAX_KEY_SIZE (32)
#define CAMELLIA_MAX_KEY_SIZE (32)
#define SALSA20_MAX_KEY_SIZE (32)
/* See https://lwn.net/Articles/410833/ */
typedef struct {
const char *name;
const ssize_t digest_size;
} alg_hash_info_t;
typedef struct {
const char *name;
const ssize_t block_size;
const ssize_t key_size;
} alg_cipher_info_t;
typedef struct {
const char *name;
} alg_rng_info_t;
static const alg_hash_info_t algo_hash_info[] = {
{ "sha1", SHA1_DIGEST_SIZE },
{ "sha224", SHA224_DIGEST_SIZE },
{ "sha256", SHA256_DIGEST_SIZE },
{ "sha384", SHA384_DIGEST_SIZE },
{ "sha512", SHA512_DIGEST_SIZE },
{ "md4", MD4_DIGEST_SIZE },
{ "md5", MD5_DIGEST_SIZE },
{ "rmd128", RMD128_DIGEST_SIZE },
{ "rmd160", RMD160_DIGEST_SIZE },
{ "rmd256", RMD256_DIGEST_SIZE },
{ "rmd320", RMD320_DIGEST_SIZE },
{ "wp256", WP256_DIGEST_SIZE },
{ "wp384", WP384_DIGEST_SIZE },
{ "wp512", WP512_DIGEST_SIZE },
{ "tgr128", TGR128_DIGEST_SIZE },
{ "tgr160", TGR160_DIGEST_SIZE },
{ "tgr192", TGR192_DIGEST_SIZE }
};
static const alg_cipher_info_t algo_cipher_info[] = {
{ "cbc(aes)", AES_BLOCK_SIZE, AES_MAX_KEY_SIZE },
{ "lrw(aes)", AES_BLOCK_SIZE, AES_MAX_KEY_SIZE },
{ "ofb(aes)", AES_BLOCK_SIZE, AES_MAX_KEY_SIZE },
{ "xts(twofish)", TF_BLOCK_SIZE, TF_MAX_KEY_SIZE },
{ "xts(serpent)", SERPENT_BLOCK_SIZE, SERPENT_MAX_KEY_SIZE },
{ "xts(cast6)", CAST6_BLOCK_SIZE, CAST6_MAX_KEY_SIZE },
{ "xts(camellia)", CAMELLIA_BLOCK_SIZE, CAMELLIA_MAX_KEY_SIZE },
{ "lrw(twofish)", TF_BLOCK_SIZE, TF_MAX_KEY_SIZE },
{ "lrw(serpent)", SERPENT_BLOCK_SIZE, SERPENT_MAX_KEY_SIZE },
{ "lrw(cast6)", CAST6_BLOCK_SIZE, CAST6_MAX_KEY_SIZE },
{ "lrw(camellia)", CAMELLIA_BLOCK_SIZE, CAMELLIA_MAX_KEY_SIZE },
{ "salsa20", SALSA20_BLOCK_SIZE, SALSA20_MAX_KEY_SIZE },
};
static const alg_rng_info_t algo_rng_info[] = {
{ "jitterentropy_rng" }
};
static int stress_af_alg_hash(
const args_t *args,
const int sockfd,
uint64_t *hashfails)
{
size_t i;
bool bind_ok = false;
for (i = 0; i < SIZEOF_ARRAY(algo_hash_info); i++) {
int fd;
ssize_t j;
const ssize_t digest_size = algo_hash_info[i].digest_size;
char input[DATA_LEN], digest[digest_size];
struct sockaddr_alg sa;
(void)memset(&sa, 0, sizeof(sa));
sa.salg_family = AF_ALG;
(void)strncpy((char *)sa.salg_type, "hash", sizeof(sa.salg_type));
(void)strncpy((char *)sa.salg_name, algo_hash_info[i].name,
sizeof(sa.salg_name) - 1);
if (bind(sockfd, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
/* Perhaps the hash does not exist with this kernel */
if (errno == ENOENT)
continue;
pr_fail_err("bind");
return EXIT_FAILURE;
}
bind_ok = true;
fd = accept(sockfd, NULL, 0);
if (fd < 0) {
pr_fail_err("accept");
return EXIT_FAILURE;
}
stress_strnrnd(input, sizeof(input));
for (j = 32; j < (ssize_t)sizeof(input); j += 32) {
if (send(fd, input, j, 0) != j) {
pr_fail_err("send");
(void)close(fd);
return EXIT_FAILURE;
}
if (recv(fd, digest, digest_size, MSG_WAITALL) != digest_size) {
pr_fail_err("recv");
(void)close(fd);
return EXIT_FAILURE;
}
inc_counter(args);
if (args->max_ops && (*args->counter >= args->max_ops)) {
(void)close(fd);
return EXIT_SUCCESS;
}
}
(void)close(fd);
}
if (!bind_ok)
(*hashfails)++;
return EXIT_SUCCESS;
}
static int stress_af_alg_cipher(
const args_t *args,
const int sockfd,
uint64_t *cipherfails)
{
size_t i;
bool bind_ok = false;
for (i = 0; i < SIZEOF_ARRAY(algo_cipher_info); i++) {
int fd;
ssize_t j;
struct sockaddr_alg sa;
const ssize_t key_size = algo_cipher_info[i].key_size;
const ssize_t block_size = algo_cipher_info[i].block_size;
const ssize_t iv_size = block_size;
char key[key_size];
char input[DATA_LEN], output[DATA_LEN];
(void)memset(&sa, 0, sizeof(sa));
sa.salg_family = AF_ALG;
(void)strncpy((char *)sa.salg_type, "skcipher", sizeof(sa.salg_type));
(void)strncpy((char *)sa.salg_name, algo_cipher_info[i].name,
sizeof(sa.salg_name) - 1);
if (bind(sockfd, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
/* Perhaps the cipher does not exist with this kernel */
if (errno == ENOENT)
continue;
pr_fail_err("bind");
return EXIT_FAILURE;
}
bind_ok = true;
stress_strnrnd(key, sizeof(key));
if (setsockopt(sockfd, SOL_ALG, ALG_SET_KEY, key, sizeof(key)) < 0) {
pr_fail_err("setsockopt");
return EXIT_FAILURE;
}
fd = accept(sockfd, NULL, 0);
if (fd < 0) {
pr_fail_err("accept");
return EXIT_FAILURE;
}
for (j = 32; j < (ssize_t)sizeof(input); j += 32) {
__u32 *u32ptr;
struct msghdr msg;
struct cmsghdr *cmsg;
char cbuf[CMSG_SPACE(sizeof(__u32)) +
CMSG_SPACE(4) + CMSG_SPACE(iv_size)];
struct af_alg_iv *iv; /* Initialisation Vector */
struct iovec iov;
(void)memset(&msg, 0, sizeof(msg));
(void)memset(cbuf, 0, sizeof(cbuf));
msg.msg_control = cbuf;
msg.msg_controllen = sizeof(cbuf);
/* Chosen operation - ENCRYPT */
cmsg = CMSG_FIRSTHDR(&msg);
/* Keep static analysis happy */
if (!cmsg) {
(void)close(fd);
pr_fail_err("null cmsg");
return EXIT_FAILURE;
}
cmsg->cmsg_level = SOL_ALG;
cmsg->cmsg_type = ALG_SET_OP;
cmsg->cmsg_len = CMSG_LEN(4);
u32ptr = (__u32 *)CMSG_DATA(cmsg);
*u32ptr = ALG_OP_ENCRYPT;
/* Set up random Initialization Vector */
cmsg = CMSG_NXTHDR(&msg, cmsg);
cmsg->cmsg_level = SOL_ALG;
cmsg->cmsg_type = ALG_SET_IV;
cmsg->cmsg_len = CMSG_LEN(4) + CMSG_LEN(iv_size);
iv = (void *)CMSG_DATA(cmsg);
iv->ivlen = iv_size;
stress_strnrnd((char *)iv->iv, iv_size);
/* Generate random message to encrypt */
stress_strnrnd(input, sizeof(input));
iov.iov_base = input;
iov.iov_len = sizeof(input);
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
if (sendmsg(fd, &msg, 0) < 0) {
pr_fail_err("sendmsg");
(void)close(fd);
return EXIT_FAILURE;
}
if (read(fd, output, sizeof(output)) != sizeof(output)) {
pr_fail_err("read");
(void)close(fd);
return EXIT_FAILURE;
}
/* Chosen operation - DECRYPT */
cmsg = CMSG_FIRSTHDR(&msg);
cmsg->cmsg_level = SOL_ALG;
cmsg->cmsg_type = ALG_SET_OP;
cmsg->cmsg_len = CMSG_LEN(4);
u32ptr = (__u32 *)CMSG_DATA(cmsg);
*u32ptr = ALG_OP_DECRYPT;
/* Set up random Initialization Vector */
cmsg = CMSG_NXTHDR(&msg, cmsg);
cmsg->cmsg_level = SOL_ALG;
cmsg->cmsg_type = ALG_SET_IV;
cmsg->cmsg_len = CMSG_LEN(4) + CMSG_LEN(iv_size);
iv = (void *)CMSG_DATA(cmsg);
iv->ivlen = iv_size;
iov.iov_base = output;
iov.iov_len = sizeof(output);
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
if (sendmsg(fd, &msg, 0) < 0) {
pr_fail_err("sendmsg");
(void)close(fd);
return EXIT_FAILURE;
}
if (read(fd, output, sizeof(output)) != sizeof(output)) {
pr_fail_err("read");
(void)close(fd);
return EXIT_FAILURE;
} else {
if (memcmp(input, output, sizeof(input))) {
pr_err("%s: decrypted data "
"different from original data "
"using %s\n",
args->name, algo_hash_info[i].name);
}
}
}
(void)close(fd);
inc_counter(args);
if (args->max_ops && (*args->counter >= args->max_ops))
return EXIT_SUCCESS;
}
if (!bind_ok)
(*cipherfails)++;
return EXIT_SUCCESS;
}
static int stress_af_alg_rng(
const args_t *args,
const int sockfd,
uint64_t *rngfails)
{
size_t i;
bool bind_ok = false;
for (i = 0; i < SIZEOF_ARRAY(algo_rng_info); i++) {
int fd;
ssize_t j;
struct sockaddr_alg sa;
(void)memset(&sa, 0, sizeof(sa));
sa.salg_family = AF_ALG;
(void)strncpy((char *)sa.salg_type, "rng", sizeof(sa.salg_type));
(void)strncpy((char *)sa.salg_name, algo_rng_info[i].name,
sizeof(sa.salg_name) - 1);
if (bind(sockfd, (struct sockaddr *)&sa, sizeof(sa)) < 0) {
/* Perhaps the rng does not exist with this kernel */
if (errno == ENOENT)
continue;
pr_fail_err("bind");
return EXIT_FAILURE;
}
bind_ok = true;
fd = accept(sockfd, NULL, 0);
if (fd < 0) {
pr_fail_err("accept");
return EXIT_FAILURE;
}
for (j = 0; j < 16; j++) {
char output[16];
if (read(fd, output, sizeof(output)) != sizeof(output)) {
pr_fail_err("read");
(void)close(fd);
return EXIT_FAILURE;
}
inc_counter(args);
if (args->max_ops && (*args->counter >= args->max_ops)) {
(void)close(fd);
return EXIT_SUCCESS;
}
}
(void)close(fd);
}
if (!bind_ok)
(*rngfails)++;
return EXIT_SUCCESS;
}
/*
* stress_af_alg()
* stress socket AF_ALG domain
*/
int stress_af_alg(const args_t *args)
{
int sockfd = -1, rc = EXIT_FAILURE;
int retries = MAX_AF_ALG_RETRIES;
uint64_t hashfails = 0, cipherfails = 0, rngfails = 0;
for (;;) {
sockfd = socket(AF_ALG, SOCK_SEQPACKET, 0);
if (sockfd >= 0)
break;
retries--;
if ((!g_keep_stressing_flag) || (retries < 0) || (errno != EAFNOSUPPORT)) {
pr_fail_err("socket");
return rc;
}
/*
* We may need to retry on EAFNOSUPPORT
* as udev may have to load in some
* cipher modules which can be racy or
* take some time
*/
(void)shim_usleep(200000);
}
do {
rc = stress_af_alg_hash(args, sockfd, &hashfails);
if (rc == EXIT_FAILURE)
goto tidy;
rc = stress_af_alg_cipher(args, sockfd, &cipherfails);
if (rc == EXIT_FAILURE)
goto tidy;
rc = stress_af_alg_rng(args, sockfd, &rngfails);
if (rc == EXIT_FAILURE)
goto tidy;
} while (keep_stressing());
if (hashfails | cipherfails | rngfails)
pr_dbg("%s: bind failed with ENOENT on all hashes (%"
PRIu64 " times), ciphers (%" PRIu64 " times), "
"prngs (%" PRIu64 " times\n",
args->name, hashfails, cipherfails, rngfails);
rc = EXIT_SUCCESS;
tidy:
(void)close(sockfd);
return rc;
}
#else
int stress_af_alg(const args_t *args)
{
return stress_not_implemented(args);
}
#endif