2 sptps_speed.c -- SPTPS benchmark
3 Copyright (C) 2013 Guus Sliepen <guus@tinc-vpn.org>,
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.
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.
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.
30 // Symbols necessary to link with logger.o
31 bool send_request(void *c, const char *msg, ...) { return false; }
32 struct list_t *connection_list = NULL;
33 bool send_meta(void *c, const char *msg , int len) { return false; }
34 char *logfilename = NULL;
37 static bool send_data(void *handle, uint8_t type, const char *data, size_t len) {
38 int fd = *(int *)handle;
39 send(fd, data, len, 0);
43 static bool receive_record(void *handle, uint8_t type, const char *data, uint16_t len) {
47 static void receive_data(sptps_t *sptps) {
49 int fd = *(int *)sptps->handle;
50 size_t len = recv(fd, buf, sizeof buf, 0);
51 if(!sptps_receive_data(sptps, buf, len))
55 struct timespec start;
61 static void clock_start() {
63 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &start);
66 static bool clock_countto(double seconds) {
67 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &end);
68 elapsed = end.tv_sec + end.tv_nsec * 1e-9 - start.tv_sec - start.tv_nsec * 1e-9;
72 rate = count / elapsed;
76 int main(int argc, char *argv[]) {
78 ecdh_t *ecdh1, *ecdh2;
79 sptps_t sptps1, sptps2;
80 char buf1[4096], buf2[4096], buf3[4096];
81 double duration = argc > 1 ? atof(argv[1]) : 10;
87 fprintf(stderr, "Generating keys for %lg seconds: ", duration);
88 for(clock_start(); clock_countto(duration);)
89 ecdsa_free(ecdsa_generate());
90 fprintf(stderr, "%17.2lf op/s\n", rate);
92 key1 = ecdsa_generate();
93 key2 = ecdsa_generate();
97 fprintf(stderr, "ECDSA sign for %lg seconds: ", duration);
98 for(clock_start(); clock_countto(duration);)
99 ecdsa_sign(key1, buf1, 256, buf2);
100 fprintf(stderr, "%22.2lf op/s\n", rate);
102 fprintf(stderr, "ECDSA verify for %lg seconds: ", duration);
103 for(clock_start(); clock_countto(duration);)
104 ecdsa_verify(key1, buf1, 256, buf2);
105 fprintf(stderr, "%20.2lf op/s\n", rate);
107 ecdh1 = ecdh_generate_public(buf1);
108 fprintf(stderr, "ECDH for %lg seconds: ", duration);
109 for(clock_start(); clock_countto(duration);) {
110 ecdh2 = ecdh_generate_public(buf2);
111 ecdh_compute_shared(ecdh2, buf1, buf3);
113 fprintf(stderr, "%28.2lf op/s\n", rate);
116 // SPTPS authentication phase
119 if(socketpair(AF_UNIX, SOCK_STREAM, 0, fd)) {
120 fprintf(stderr, "Could not create a UNIX socket pair: %s\n", strerror(errno));
124 struct pollfd pfd[2] = {{fd[0], POLLIN}, {fd[1], POLLIN}};
126 fprintf(stderr, "SPTPS/TCP authenticate for %lg seconds: ", duration);
127 for(clock_start(); clock_countto(duration);) {
128 sptps_start(&sptps1, fd + 0, true, false, key1, key2, "sptps_speed", 11, send_data, receive_record);
129 sptps_start(&sptps2, fd + 1, false, false, key2, key1, "sptps_speed", 11, send_data, receive_record);
130 while(poll(pfd, 2, 0)) {
132 receive_data(&sptps1);
134 receive_data(&sptps2);
139 fprintf(stderr, "%10.2lf op/s\n", rate * 2);
143 sptps_start(&sptps1, fd + 0, true, false, key1, key2, "sptps_speed", 11, send_data, receive_record);
144 sptps_start(&sptps2, fd + 1, false, false, key2, key1, "sptps_speed", 11, send_data, receive_record);
145 while(poll(pfd, 2, 0)) {
147 receive_data(&sptps1);
149 receive_data(&sptps2);
151 fprintf(stderr, "SPTPS/TCP transmit for %lg seconds: ", duration);
152 for(clock_start(); clock_countto(duration);) {
153 if(!sptps_send_record(&sptps1, 0, buf1, 1451))
155 receive_data(&sptps2);
157 rate *= 2 * 1451 * 8;
159 fprintf(stderr, "%14.2lf Gbit/s\n", rate / 1e9);
161 fprintf(stderr, "%14.2lf Mbit/s\n", rate / 1e6);
163 fprintf(stderr, "%14.2lf kbit/s\n", rate / 1e3);
167 // SPTPS datagram authentication phase
172 if(socketpair(AF_UNIX, SOCK_DGRAM, 0, fd)) {
173 fprintf(stderr, "Could not create a UNIX socket pair: %s\n", strerror(errno));
177 fprintf(stderr, "SPTPS/UDP authenticate for %lg seconds: ", duration);
178 for(clock_start(); clock_countto(duration);) {
179 sptps_start(&sptps1, fd + 0, true, true, key1, key2, "sptps_speed", 11, send_data, receive_record);
180 sptps_start(&sptps2, fd + 1, false, true, key2, key1, "sptps_speed", 11, send_data, receive_record);
181 while(poll(pfd, 2, 0)) {
183 receive_data(&sptps1);
185 receive_data(&sptps2);
190 fprintf(stderr, "%10.2lf op/s\n", rate * 2);
192 // SPTPS datagram data
194 sptps_start(&sptps1, fd + 0, true, true, key1, key2, "sptps_speed", 11, send_data, receive_record);
195 sptps_start(&sptps2, fd + 1, false, true, key2, key1, "sptps_speed", 11, send_data, receive_record);
196 while(poll(pfd, 2, 0)) {
198 receive_data(&sptps1);
200 receive_data(&sptps2);
202 fprintf(stderr, "SPTPS/UDP transmit for %lg seconds: ", duration);
203 for(clock_start(); clock_countto(duration);) {
204 if(!sptps_send_record(&sptps1, 0, buf1, 1451))
206 receive_data(&sptps2);
208 rate *= 2 * 1451 * 8;
210 fprintf(stderr, "%14.2lf Gbit/s\n", rate / 1e9);
212 fprintf(stderr, "%14.2lf Mbit/s\n", rate / 1e6);
214 fprintf(stderr, "%14.2lf kbit/s\n", rate / 1e3);