summaryrefslogtreecommitdiff
path: root/tests/suite/mini-record-timing.c
blob: 093f3d5d3271bc049e5fed2d158c80b9822b45cd (plain)
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
/*
 * Copyright (C) 2012 Free Software Foundation, Inc.
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GnuTLS.
 *
 * GnuTLS 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 3 of the License, or
 * (at your option) any later version.
 *
 * GnuTLS 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 GnuTLS; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>

#if defined(_WIN32)

int main()
{
	exit(77);
}

#else

#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <gnutls/gnutls.h>
#include <signal.h>
#include <assert.h>
#include <errno.h>

//#define USE_RDTSC
//#define TEST_ETM

#include <time.h>
#include <sys/time.h>
#include <sys/resource.h>
#ifdef USE_RDTSC
#include <x86intrin.h>
#endif

#ifdef DEBUG
static void server_log_func(int level, const char *str)
{
	fprintf(stderr, "server|<%d>| %s", level, str);
}

static void client_log_func(int level, const char *str)
{
	fprintf(stderr, "client|<%d>| %s", level, str);
}
#endif



#ifndef _POSIX_TIMERS
#error need posix timers
#endif

#define CLOCK_TO_USE CLOCK_MONOTONIC
//#define CLOCK_TO_USE CLOCK_MONOTONIC_RAW
//#define CLOCK_TO_USE CLOCK_PROCESS_CPUTIME_ID

/* This program tests the robustness of record
 * decoding.
 */
#define MAX_PER_POINT (8*1024)
#define WARM_UP (2)
#define MAX_BUF 1024

struct point_st {
	unsigned char byte1;
	unsigned char byte2;
	unsigned midx;
	unsigned taken;
	unsigned long *smeasurements;
};

struct test_st {
	struct point_st *points;
	unsigned int npoints;
	const char *desc;
	const char *file;
	const char *name;
	unsigned text_size;
	uint8_t fill;
};

struct point_st *prev_point_ptr = NULL;
unsigned int point_idx = 0;
static gnutls_session_t cli_session = NULL;

static ssize_t
push(gnutls_transport_ptr_t tr, const void *_data, size_t len)
{
	int fd = (long int) tr;

	return send(fd, _data, len, 0);
}

static ssize_t
push_crippled(gnutls_transport_ptr_t tr, const void *_data, size_t len)
{
	int fd = (long int) tr;
	unsigned char *data = (void *) _data;
	struct point_st *p;
	unsigned p_size;
	struct test_st *test = gnutls_session_get_ptr(cli_session);

	p_size = test->npoints;

	if (point_idx >= p_size)
		abort();

	p = &test->points[point_idx];


	if (test->fill != 0xff) {
		/* original lucky13 attack */
		memmove(&data[len - 32], data + 5, 32);
		data[len - 17] ^= p->byte1;
		data[len - 18] ^= p->byte2;
	} else {
		/* a revised attack which depends on chosen-plaintext */
		assert(len>512);
		memmove(data+len-256-32, data+5, 256+32);
		data[len - 257] ^= p->byte1;
	}

	return send(fd, data, len, 0);
}


#ifndef USE_RDTSC
static unsigned long timespec_sub_ns(struct timespec *a,
				     struct timespec *b)
{
	return (a->tv_sec - b->tv_sec) * 1000 * 1000 * 1000 + a->tv_nsec -
		b->tv_nsec;
}
#endif

static void
client(int fd, const char *prio, unsigned int text_size,
       struct test_st *test)
{
	int ret;
	char buffer[MAX_BUF + 1];
	char *text;
	gnutls_psk_client_credentials_t pskcred;
	gnutls_session_t session;
	static unsigned long measurement;
	const gnutls_datum_t key = { (void *) "DEADBEEF", 8 };
	const char *err;
	unsigned j;

	gnutls_global_init();

	text = malloc(text_size);
	assert(text != NULL);

	setpriority(PRIO_PROCESS, getpid(), -15);

	memset(text, test->fill, text_size);

#ifdef DEBUG
	gnutls_global_set_log_function(client_log_func);
	gnutls_global_set_log_level(6);
#endif

	gnutls_psk_allocate_client_credentials(&pskcred);
	gnutls_psk_set_client_credentials(pskcred, "test", &key,
					  GNUTLS_PSK_KEY_HEX);

	/* Initialize TLS session
	 */
	assert(gnutls_init(&session, GNUTLS_CLIENT) >= 0);
	gnutls_session_set_ptr(session, test);
	cli_session = session;

	/* Use default priorities */
	if ((ret = gnutls_priority_set_direct(session, prio, &err)) < 0) {
		fprintf(stderr, "Error in priority string %s: %s\n",
			gnutls_strerror(ret), err);
		exit(1);
	}

	/* put the anonymous credentials to the current session
	 */
	gnutls_credentials_set(session, GNUTLS_CRD_PSK, pskcred);
	gnutls_transport_set_int(session, fd);

	/* Perform the TLS handshake
	 */
	do {
		ret = gnutls_handshake(session);
	}
	while (ret < 0 && gnutls_error_is_fatal(ret) == 0);

	if (ret < 0) {
		fprintf(stderr, "client: Handshake failed: %s\n", gnutls_strerror(ret));
		exit(1);
	}

	ret = gnutls_protocol_get_version(session);
	if (ret < GNUTLS_TLS1_1) {
		fprintf(stderr,
			"client: Handshake didn't negotiate TLS 1.1 (or later)\n");
		exit(1);
	}

	gnutls_transport_set_push_function(session, push_crippled);

 restart:
	do {
		ret = gnutls_record_send(session, text, text_size);
	} while (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED);
	/* measure peer's processing time */

	do {
		ret = gnutls_record_recv(session, buffer, sizeof(buffer));
	} while (ret < 0
		 && (ret == GNUTLS_E_AGAIN
		     || ret == GNUTLS_E_INTERRUPTED));

	if (ret > 0) {
		struct point_st *point_ptr = NULL;

		assert(ret == sizeof(measurement));

		point_ptr = &test->points[point_idx];
		point_ptr->taken++;

		if (point_idx == 0) {
			printf("%s: measurement: %u / %d\r", test->name, (unsigned)point_ptr->taken+1, MAX_PER_POINT+WARM_UP);
		}

		if (point_idx == 0 && point_ptr->midx+1 >= MAX_PER_POINT) {
			goto finish;
		}

		if (point_ptr->taken >= WARM_UP) {
			memcpy(&measurement, buffer, sizeof(measurement));
			if (point_ptr->midx < MAX_PER_POINT) {
				point_ptr->smeasurements[point_ptr->midx] =
				    measurement;
				point_ptr->midx++;
				point_idx++;

				if (point_idx >= test->npoints)
					point_idx = 0;
			}
		}

		goto restart;
	} else {
		abort();
	}

finish:
	fprintf(stderr, "\ntest completed\n");

	gnutls_transport_set_push_function(session, push);

	gnutls_bye(session, GNUTLS_SHUT_WR);

	{
		unsigned i;
		FILE *fp = NULL;

		fp = fopen(test->file, "w");
		assert(fp != NULL);

		fprintf(fp, "Delta,");
		for (j = 0; j < MAX_PER_POINT; j++) {
			fprintf(fp, "measurement-%u%s", j, j!=(MAX_PER_POINT-1)?",":"");
		}
		fprintf(fp, "\n");
		for (i = 0; i < test->npoints; i++) {
			fprintf(fp, "%u,", (unsigned)test->points[i].byte1);
			for (j = 0; j < MAX_PER_POINT; j++) {
				fprintf(fp, "%u%s",
					(unsigned) test->points[i].smeasurements[j],
					(j!=MAX_PER_POINT-1)?",":"");

			}
			fprintf(fp, "\n");
		}
		printf("\n");

		fclose(fp);
	}

	if (test->desc)
		fprintf(stderr, "Description: %s\n", test->desc);

	close(fd);

	gnutls_deinit(session);

	gnutls_psk_free_client_credentials(pskcred);

	gnutls_global_deinit();
	free(text);
}

static int
pskfunc(gnutls_session_t session, const char *username,
	gnutls_datum_t * key)
{
	key->data = gnutls_malloc(4);
	key->data[0] = 0xDE;
	key->data[1] = 0xAD;
	key->data[2] = 0xBE;
	key->data[3] = 0xEF;
	key->size = 4;
	return 0;
}

static void server(int fd, const char *prio)
{
	int ret;
	char buffer[MAX_BUF + 1];
	gnutls_session_t session;
	gnutls_psk_server_credentials_t server_pskcred;
	const char *err;
#ifndef USE_RDTSC
	struct timespec start, stop;
#else
	uint64_t c1, c2;
	unsigned int i1;
#endif
	static unsigned long measurement;

	setpriority(PRIO_PROCESS, getpid(), -15);

	gnutls_global_init();
	memset(buffer, 0, sizeof(buffer));

#ifdef DEBUG
	gnutls_global_set_log_function(server_log_func);
	gnutls_global_set_log_level(6);
#endif
	assert(gnutls_psk_allocate_server_credentials(&server_pskcred)>=0);
	gnutls_psk_set_server_credentials_function(server_pskcred,
						   pskfunc);
	assert(gnutls_init(&session, GNUTLS_SERVER)>=0);

	/* avoid calling all the priority functions, since the defaults
	 * are adequate.
	 */
	if ((ret = gnutls_priority_set_direct(session, prio, &err)) < 0) {
		fprintf(stderr, "Error in priority string %s: %s\n",
			gnutls_strerror(ret), err);
		exit(1);
	}

	gnutls_credentials_set(session, GNUTLS_CRD_PSK, server_pskcred);
	gnutls_transport_set_int(session, fd);

	do {
		ret = gnutls_handshake(session);
	}
	while (ret < 0 && gnutls_error_is_fatal(ret) == 0);
	if (ret < 0) {
#ifdef GNUTLS_E_PREMATURE_TERMINATION
		if (ret != GNUTLS_E_PREMATURE_TERMINATION
		    && ret != GNUTLS_E_UNEXPECTED_PACKET_LENGTH)
#else
		if (ret != GNUTLS_E_UNEXPECTED_PACKET_LENGTH)
#endif
		{
			fprintf(stderr,
				"server: Handshake has failed (%s)\n\n",
				gnutls_strerror(ret));
			exit(1);
		}
		goto finish;
	}
#ifdef TEST_ETM
	assert(gnutls_session_etm_status(session)!=0);
#else
	assert(gnutls_session_etm_status(session)==0);
#endif

 restart:
	do {
		ret = recv(fd, buffer, 1, MSG_PEEK);
	} while (ret == -1 && errno == EAGAIN);

#ifdef USE_RDTSC
	c1 = __rdtscp(&i1);
#else
	clock_gettime(CLOCK_TO_USE, &start);
#endif

	do {
		ret = gnutls_record_recv(session, buffer, sizeof(buffer));
	} while (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED);

#ifdef USE_RDTSC
	c2 = __rdtscp(&i1);
	measurement = c2 - c1;
#else
	clock_gettime(CLOCK_TO_USE, &stop);
	measurement = timespec_sub_ns(&stop, &start);
#endif

	if (ret == GNUTLS_E_DECRYPTION_FAILED) {
		gnutls_session_force_valid(session);
		do {
			ret =
			    gnutls_record_send(session, &measurement,
					       sizeof(measurement));
			/* GNUTLS_AL_FATAL, GNUTLS_A_BAD_RECORD_MAC); */
		} while (ret == GNUTLS_E_AGAIN
			 || ret == GNUTLS_E_INTERRUPTED);

		if (ret >= 0) {
			goto restart;
		}
	} else if (ret > 0) {
		goto restart;
	}

	assert(ret <= 0);

	/* do not wait for the peer to close the connection.
	 */
	gnutls_bye(session, GNUTLS_SHUT_WR);

      finish:
	close(fd);
	gnutls_deinit(session);

	gnutls_psk_free_server_credentials(server_pskcred);

	gnutls_global_deinit();
}

static void start(const char *prio, unsigned int text_size,
		  struct test_st *p)
{
	int fd[2];
	int ret;
	pid_t child;

	ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
	if (ret < 0) {
		perror("socketpair");
		exit(1);
	}

	child = fork();
	if (child < 0) {
		perror("fork");
		fprintf(stderr, "fork");
		exit(1);
	}

	if (child != 0) {
		/* parent */
		close(fd[1]);
		server(fd[0], prio);
		kill(child, SIGTERM);
	} else if (child == 0) {
		close(fd[0]);
		client(fd[1], prio, text_size, p);
		exit(0);
	}
}

static void ch_handler(int sig)
{
	int status;
	wait(&status);
	if (WEXITSTATUS(status) != 0 ||
	    (WIFSIGNALED(status) && WTERMSIG(status) == SIGSEGV)) {
		if (WIFSIGNALED(status))
			fprintf(stderr, "Child died with sigsegv\n");
		else
			fprintf(stderr, "Child died with status %d\n",
				WEXITSTATUS(status));
	}
	return;
}

#define NPOINTS 256
static struct point_st all_points[NPOINTS];
static struct point_st all_points_one[NPOINTS];

/* Test that outputs a graph of the timings
 * when manipulating the last record byte (pad)
 * for AES-SHA1.
 */
static struct test_st test_sha1 = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 18 * 16,
	.name = "sha1",
	.file = "out-sha1.txt",
	.fill = 0x00,
	.desc = NULL
};

/* Test that outputs a graph of the timings
 * when manipulating the last record byte (pad)
 * for AES-SHA256.
 */
static struct test_st test_sha256 = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 17 * 16,
	.name = "sha256",
	.file = "out-sha256.txt",
	.fill = 0x00,
	.desc = NULL
};

static struct test_st test_sha256_new = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 1024 * 16,
	.name = "sha256-new",
	.file = "out-sha256-new.txt",
	.fill = 0xff,
	.desc = NULL
};

static struct test_st test_sha384 = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 33 * 16,
	.name = "sha384",
	.file = "out-sha384.txt",
	.fill = 0x00,
	.desc = NULL
};

/* Test that outputs a graph of the timings
 * when manipulating the last record byte (pad)
 * for AES-SHA1, on a short message.
 */
static struct test_st test_sha1_short = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 16 * 2,
	.name = "sha1-short",
	.file = "out-sha1-short.txt",
	.fill = 0x00,
	.desc = NULL
};

/* Test that outputs a graph of the timings
 * when manipulating the last record byte (pad)
 * for AES-SHA256.
 */
static struct test_st test_sha256_short = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 16 * 2,
	.name = "sha256-short",
	.file = "out-sha256-short.txt",
	.fill = 0x00,
	.desc = NULL
};

static struct test_st test_sha384_short = {
	.points = all_points,
	.npoints = NPOINTS,
	.text_size = 16 * 2,
	.name = "sha384-short",
	.file = "out-sha384-short.txt",
	.fill = 0x00,
	.desc = NULL
};

/* Test that outputs a graph of the timings
 * when manipulating the last record byte (pad)
 * for AES-SHA1, on a short message and
 * the byte before the last is set to one.
 * (i.e. we want to see whether the padding
 *  [1,1] shows up in the measurements)
 */
static struct test_st test_sha1_one = {
	.points = all_points_one,
	.npoints = NPOINTS,
	.text_size = 16 * 2,
	.name = "sha1-one",
	.file = "out-sha1-one.txt",
	.fill = 0x00,
	.desc = NULL
};

int main(int argc, char **argv)
{
	unsigned int i;
	struct test_st *test;
	const char *hash;
	char prio[512];
	struct timespec res;

	assert(clock_getres(CLOCK_TO_USE, &res) >= 0);
	assert(res.tv_nsec < 100);

	signal(SIGCHLD, ch_handler);
	signal(SIGPIPE, SIG_IGN);

	if (argc > 1) {
		if (strcmp(argv[1], "sha1") == 0) {
			test = &test_sha1;
			hash = "SHA1";
		} else if (strcmp(argv[1], "sha1-short") == 0) {
			test = &test_sha1_short;
			hash = "SHA1";
		} else if (strcmp(argv[1], "sha256-short") == 0) {
			test = &test_sha256_short;
			hash = "SHA256";
		} else if (strcmp(argv[1], "sha256-new") == 0) {
			test = &test_sha256_new;
			hash = "SHA256";
		} else if (strcmp(argv[1], "sha256") == 0) {
			test = &test_sha256;
			hash = "SHA256";
		} else if (strcmp(argv[1], "sha384-short") == 0) {
			test = &test_sha384_short;
			hash = "SHA384";
		} else if (strcmp(argv[1], "sha384") == 0) {
			test = &test_sha384;
			hash = "SHA384";
		} else if (strcmp(argv[1], "sha1-one") == 0) {
			test = &test_sha1_one;
			hash = "SHA1";
		} else {
			fprintf(stderr, "Unknown test: %s\n", argv[1]);
			exit(1);
		}
	} else {
		fprintf(stderr,
			"Please specify the test, sha1, sha1-one, sha256, sha1-short, sha256-short\n");
		exit(1);
	}

	memset(&all_points, 0, sizeof(all_points));
	for (i = 0; i < 256; i++) {
		all_points[i].byte1 = i;
		all_points[i].byte2 = 0;
		all_points[i].smeasurements =
		    malloc(MAX_PER_POINT *
			   sizeof(all_points[i].smeasurements[0]));
	}

	memset(&all_points_one, 0, sizeof(all_points_one));
	for (i = 0; i < 256; i++) {
		all_points_one[i].byte1 = i;
		all_points_one[i].byte2 = 1;
		all_points_one[i].smeasurements =
		    all_points[i].smeasurements;
	}


	remove(test->file);
	snprintf(prio, sizeof(prio),
#ifdef TEST_ETM
		 "NONE:+COMP-NULL:+AES-128-CBC:+AES-256-CBC:+%s:+PSK:+VERS-TLS1.2:+VERS-TLS1.1:+SIGN-ALL:+CURVE-ALL",
#else
		 "NONE:+COMP-NULL:+AES-128-CBC:+AES-256-CBC:+%s:+PSK:%%NO_ETM:+VERS-TLS1.2:+VERS-TLS1.1:+SIGN-ALL:+CURVE-ALL",
#endif
		 hash);

	printf("\nAES-%s (calculating different padding timings)\n", hash);
	start(prio, test->text_size, test);

	signal(SIGCHLD, SIG_IGN);

	return 0;
}

#endif				/* _WIN32 */