Refactor crypto RNG; add getrandom() support
[tinc] / src / sptps_speed.c
1 /*
2     sptps_speed.c -- SPTPS benchmark
3     Copyright (C) 2013-2022 Guus Sliepen <guus@tinc-vpn.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21 #include "utils.h"
22
23 #include <poll.h>
24
25 #include "crypto.h"
26 #include "ecdh.h"
27 #include "ecdsa.h"
28 #include "ecdsagen.h"
29 #include "meta.h"
30 #include "protocol.h"
31 #include "sptps.h"
32 #include "random.h"
33
34 // Symbols necessary to link with logger.o
35 bool send_request(struct connection_t *c, const char *msg, ...) {
36         (void)c;
37         (void)msg;
38         return false;
39 }
40
41 list_t connection_list;
42
43 bool send_meta(struct connection_t *c, const void *msg, size_t len) {
44         (void)c;
45         (void)msg;
46         (void)len;
47         return false;
48 }
49 bool do_detach = false;
50 struct timeval now;
51
52 static bool send_data(void *handle, uint8_t type, const void *data, size_t len) {
53         (void)type;
54         int fd = *(int *)handle;
55         send(fd, data, len, 0);
56         return true;
57 }
58
59 static bool receive_record(void *handle, uint8_t type, const void *data, uint16_t len) {
60         (void)handle;
61         (void)type;
62         (void)data;
63         (void)len;
64         return true;
65 }
66
67 static void receive_data(sptps_t *sptps) {
68         uint8_t buf[4096], *bufp = buf;
69         int fd = *(int *)sptps->handle;
70         size_t len = recv(fd, buf, sizeof(buf), 0);
71
72         while(len) {
73                 size_t done = sptps_receive_data(sptps, bufp, len);
74
75                 if(!done) {
76                         abort();
77                 }
78
79                 bufp += done;
80                 len -= done;
81         }
82 }
83
84 struct timespec start;
85 struct timespec end;
86 double elapsed;
87 double rate;
88 unsigned int count;
89
90 static void clock_start(void) {
91         count = 0;
92         clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &start);
93 }
94
95 static bool clock_countto(double seconds) {
96         clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end);
97         elapsed = (double) end.tv_sec + (double) end.tv_nsec * 1e-9
98                   - (double) start.tv_sec - (double) start.tv_nsec * 1e-9;
99
100         if(elapsed < seconds) {
101                 return ++count;
102         }
103
104         rate = count / elapsed;
105         return false;
106 }
107
108 static int run_benchmark(int argc, char *argv[]) {
109         ecdsa_t *key1, *key2;
110         ecdh_t *ecdh1, *ecdh2;
111         sptps_t sptps1, sptps2;
112         uint8_t buf1[4096], buf2[4096], buf3[4096];
113         double duration = argc > 1 ? atof(argv[1]) : 10;
114
115         randomize(buf1, sizeof(buf1));
116         randomize(buf2, sizeof(buf2));
117         randomize(buf3, sizeof(buf3));
118
119         // Key generation
120
121         fprintf(stderr, "Generating keys for %lg seconds: ", duration);
122
123         for(clock_start(); clock_countto(duration);) {
124                 ecdsa_free(ecdsa_generate());
125         }
126
127         fprintf(stderr, "%17.2lf op/s\n", rate);
128
129         key1 = ecdsa_generate();
130         key2 = ecdsa_generate();
131
132         // Ed25519 signatures
133
134         fprintf(stderr, "Ed25519 sign for %lg seconds: ", duration);
135
136         for(clock_start(); clock_countto(duration);)
137                 if(!ecdsa_sign(key1, buf1, 256, buf2)) {
138                         return 1;
139                 }
140
141         fprintf(stderr, "%20.2lf op/s\n", rate);
142
143         fprintf(stderr, "Ed25519 verify for %lg seconds: ", duration);
144
145         for(clock_start(); clock_countto(duration);)
146                 if(!ecdsa_verify(key1, buf1, 256, buf2)) {
147                         fprintf(stderr, "Signature verification failed\n");
148                         return 1;
149                 }
150
151         fprintf(stderr, "%18.2lf op/s\n", rate);
152
153         ecdh1 = ecdh_generate_public(buf1);
154         fprintf(stderr, "ECDH for %lg seconds: ", duration);
155
156         for(clock_start(); clock_countto(duration);) {
157                 ecdh2 = ecdh_generate_public(buf2);
158
159                 if(!ecdh2) {
160                         return 1;
161                 }
162
163                 if(!ecdh_compute_shared(ecdh2, buf1, buf3)) {
164                         return 1;
165                 }
166         }
167
168         fprintf(stderr, "%28.2lf op/s\n", rate);
169         ecdh_free(ecdh1);
170
171         // SPTPS authentication phase
172
173         int fd[2];
174
175         if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd)) {
176                 fprintf(stderr, "Could not create a UNIX socket pair: %s\n", sockstrerror(sockerrno));
177                 return 1;
178         }
179
180         struct pollfd pfd[2] = {{fd[0], POLLIN, 0}, {fd[1], POLLIN, 0}};
181
182         fprintf(stderr, "SPTPS/TCP authenticate for %lg seconds: ", duration);
183
184         for(clock_start(); clock_countto(duration);) {
185                 sptps_start(&sptps1, fd + 0, true, false, key1, key2, "sptps_speed", 11, send_data, receive_record);
186                 sptps_start(&sptps2, fd + 1, false, false, key2, key1, "sptps_speed", 11, send_data, receive_record);
187
188                 while(poll(pfd, 2, 0)) {
189                         if(pfd[0].revents) {
190                                 receive_data(&sptps1);
191                         }
192
193                         if(pfd[1].revents) {
194                                 receive_data(&sptps2);
195                         }
196                 }
197
198                 sptps_stop(&sptps1);
199                 sptps_stop(&sptps2);
200         }
201
202         fprintf(stderr, "%10.2lf op/s\n", rate * 2);
203
204         // SPTPS data
205
206         sptps_start(&sptps1, fd + 0, true, false, key1, key2, "sptps_speed", 11, send_data, receive_record);
207         sptps_start(&sptps2, fd + 1, false, false, key2, key1, "sptps_speed", 11, send_data, receive_record);
208
209         while(poll(pfd, 2, 0)) {
210                 if(pfd[0].revents) {
211                         receive_data(&sptps1);
212                 }
213
214                 if(pfd[1].revents) {
215                         receive_data(&sptps2);
216                 }
217         }
218
219         fprintf(stderr, "SPTPS/TCP transmit for %lg seconds: ", duration);
220
221         for(clock_start(); clock_countto(duration);) {
222                 if(!sptps_send_record(&sptps1, 0, buf1, 1451)) {
223                         abort();
224                 }
225
226                 receive_data(&sptps2);
227         }
228
229         rate *= 2 * 1451 * 8;
230
231         if(rate > 1e9) {
232                 fprintf(stderr, "%14.2lf Gbit/s\n", rate / 1e9);
233         } else if(rate > 1e6) {
234                 fprintf(stderr, "%14.2lf Mbit/s\n", rate / 1e6);
235         } else if(rate > 1e3) {
236                 fprintf(stderr, "%14.2lf kbit/s\n", rate / 1e3);
237         }
238
239         sptps_stop(&sptps1);
240         sptps_stop(&sptps2);
241
242         // SPTPS datagram authentication phase
243
244         close(fd[0]);
245         close(fd[1]);
246
247         if(socketpair(AF_UNIX, SOCK_DGRAM, 0, fd)) {
248                 fprintf(stderr, "Could not create a UNIX socket pair: %s\n", sockstrerror(sockerrno));
249                 return 1;
250         }
251
252         fprintf(stderr, "SPTPS/UDP authenticate for %lg seconds: ", duration);
253
254         for(clock_start(); clock_countto(duration);) {
255                 sptps_start(&sptps1, fd + 0, true, true, key1, key2, "sptps_speed", 11, send_data, receive_record);
256                 sptps_start(&sptps2, fd + 1, false, true, key2, key1, "sptps_speed", 11, send_data, receive_record);
257
258                 while(poll(pfd, 2, 0)) {
259                         if(pfd[0].revents) {
260                                 receive_data(&sptps1);
261                         }
262
263                         if(pfd[1].revents) {
264                                 receive_data(&sptps2);
265                         }
266                 }
267
268                 sptps_stop(&sptps1);
269                 sptps_stop(&sptps2);
270         }
271
272         fprintf(stderr, "%10.2lf op/s\n", rate * 2);
273
274         // SPTPS datagram data
275
276         sptps_start(&sptps1, fd + 0, true, true, key1, key2, "sptps_speed", 11, send_data, receive_record);
277         sptps_start(&sptps2, fd + 1, false, true, key2, key1, "sptps_speed", 11, send_data, receive_record);
278
279         while(poll(pfd, 2, 0)) {
280                 if(pfd[0].revents) {
281                         receive_data(&sptps1);
282                 }
283
284                 if(pfd[1].revents) {
285                         receive_data(&sptps2);
286                 }
287         }
288
289         fprintf(stderr, "SPTPS/UDP transmit for %lg seconds: ", duration);
290
291         for(clock_start(); clock_countto(duration);) {
292                 if(!sptps_send_record(&sptps1, 0, buf1, 1451)) {
293                         abort();
294                 }
295
296                 receive_data(&sptps2);
297         }
298
299         rate *= 2 * 1451 * 8;
300
301         if(rate > 1e9) {
302                 fprintf(stderr, "%14.2lf Gbit/s\n", rate / 1e9);
303         } else if(rate > 1e6) {
304                 fprintf(stderr, "%14.2lf Mbit/s\n", rate / 1e6);
305         } else if(rate > 1e3) {
306                 fprintf(stderr, "%14.2lf kbit/s\n", rate / 1e3);
307         }
308
309         sptps_stop(&sptps1);
310         sptps_stop(&sptps2);
311
312         // Clean up
313
314         close(fd[0]);
315         close(fd[1]);
316         ecdsa_free(key1);
317         ecdsa_free(key2);
318
319         return 0;
320 }
321
322 int main(int argc, char *argv[]) {
323         random_init();
324         crypto_init();
325
326         int result = run_benchmark(argc, argv);
327
328         random_exit();
329
330         return result;
331 }