]> git.ipfire.org Git - thirdparty/openssl.git/blob - apps/s_time.c
Copyright year updates
[thirdparty/openssl.git] / apps / s_time.c
1 /*
2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13
14 #include <openssl/opensslconf.h>
15
16 #ifndef OPENSSL_NO_SOCK
17
18 #include "apps.h"
19 #include "progs.h"
20 #include <openssl/x509.h>
21 #include <openssl/ssl.h>
22 #include <openssl/pem.h>
23 #include "s_apps.h"
24 #include <openssl/err.h>
25 #include "internal/sockets.h"
26 #if !defined(OPENSSL_SYS_MSDOS)
27 # include <unistd.h>
28 #endif
29
30 #define SSL_CONNECT_NAME "localhost:4433"
31
32 #define SECONDS 30
33 #define SECONDSSTR "30"
34
35 static SSL *doConnection(SSL *scon, const char *host, SSL_CTX *ctx);
36
37 /*
38 * Define a HTTP get command globally.
39 * Also define the size of the command, this is two bytes less than
40 * the size of the string because the %s is replaced by the URL.
41 */
42 static const char fmt_http_get_cmd[] = "GET %s HTTP/1.0\r\n\r\n";
43 static const size_t fmt_http_get_cmd_size = sizeof(fmt_http_get_cmd) - 2;
44
45 typedef enum OPTION_choice {
46 OPT_COMMON,
47 OPT_CONNECT, OPT_CIPHER, OPT_CIPHERSUITES, OPT_CERT, OPT_NAMEOPT, OPT_KEY,
48 OPT_CAPATH, OPT_CAFILE, OPT_CASTORE,
49 OPT_NOCAPATH, OPT_NOCAFILE, OPT_NOCASTORE,
50 OPT_NEW, OPT_REUSE, OPT_BUGS, OPT_VERIFY, OPT_TIME, OPT_SSL3,
51 OPT_WWW, OPT_TLS1, OPT_TLS1_1, OPT_TLS1_2, OPT_TLS1_3,
52 OPT_PROV_ENUM
53 } OPTION_CHOICE;
54
55 const OPTIONS s_time_options[] = {
56 OPT_SECTION("General"),
57 {"help", OPT_HELP, '-', "Display this summary"},
58
59 OPT_SECTION("Connection"),
60 {"connect", OPT_CONNECT, 's',
61 "Where to connect as post:port (default is " SSL_CONNECT_NAME ")"},
62 {"new", OPT_NEW, '-', "Just time new connections"},
63 {"reuse", OPT_REUSE, '-', "Just time connection reuse"},
64 {"bugs", OPT_BUGS, '-', "Turn on SSL bug compatibility"},
65 {"cipher", OPT_CIPHER, 's', "TLSv1.2 and below cipher list to be used"},
66 {"ciphersuites", OPT_CIPHERSUITES, 's',
67 "Specify TLSv1.3 ciphersuites to be used"},
68 #ifndef OPENSSL_NO_SSL3
69 {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
70 #endif
71 #ifndef OPENSSL_NO_TLS1
72 {"tls1", OPT_TLS1, '-', "Just use TLSv1.0"},
73 #endif
74 #ifndef OPENSSL_NO_TLS1_1
75 {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
76 #endif
77 #ifndef OPENSSL_NO_TLS1_2
78 {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
79 #endif
80 #ifndef OPENSSL_NO_TLS1_3
81 {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
82 #endif
83 {"verify", OPT_VERIFY, 'p',
84 "Turn on peer certificate verification, set depth"},
85 {"time", OPT_TIME, 'p', "Seconds to collect data, default " SECONDSSTR},
86 {"www", OPT_WWW, 's', "Fetch specified page from the site"},
87
88 OPT_SECTION("Certificate"),
89 {"nameopt", OPT_NAMEOPT, 's', "Certificate subject/issuer name printing options"},
90 {"cert", OPT_CERT, '<', "Cert file to use, PEM format assumed"},
91 {"key", OPT_KEY, '<', "File with key, PEM; default is -cert file"},
92 {"cafile", OPT_CAFILE, '<', "PEM format file of CA's"},
93 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
94 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
95 {"CAstore", OPT_CASTORE, ':', "URI to store of CA's"},
96 {"no-CAfile", OPT_NOCAFILE, '-',
97 "Do not load the default certificates file"},
98 {"no-CApath", OPT_NOCAPATH, '-',
99 "Do not load certificates from the default certificates directory"},
100 {"no-CAstore", OPT_NOCASTORE, '-',
101 "Do not load certificates from the default certificates store URI"},
102
103 OPT_PROV_OPTIONS,
104 {NULL}
105 };
106
107 #define START 0
108 #define STOP 1
109
110 static double tm_Time_F(int s)
111 {
112 return app_tminterval(s, 1);
113 }
114
115 int s_time_main(int argc, char **argv)
116 {
117 char buf[1024 * 8];
118 SSL *scon = NULL;
119 SSL_CTX *ctx = NULL;
120 const SSL_METHOD *meth = NULL;
121 char *CApath = NULL, *CAfile = NULL, *CAstore = NULL;
122 char *cipher = NULL, *ciphersuites = NULL;
123 char *www_path = NULL;
124 char *host = SSL_CONNECT_NAME, *certfile = NULL, *keyfile = NULL, *prog;
125 double totalTime = 0.0;
126 int noCApath = 0, noCAfile = 0, noCAstore = 0;
127 int maxtime = SECONDS, nConn = 0, perform = 3, ret = 1, i, st_bugs = 0;
128 long bytes_read = 0, finishtime = 0;
129 OPTION_CHOICE o;
130 int min_version = 0, max_version = 0, ver, buf_len, fd;
131 size_t buf_size;
132
133 meth = TLS_client_method();
134
135 prog = opt_init(argc, argv, s_time_options);
136 while ((o = opt_next()) != OPT_EOF) {
137 switch (o) {
138 case OPT_EOF:
139 case OPT_ERR:
140 opthelp:
141 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
142 goto end;
143 case OPT_HELP:
144 opt_help(s_time_options);
145 ret = 0;
146 goto end;
147 case OPT_CONNECT:
148 host = opt_arg();
149 break;
150 case OPT_REUSE:
151 perform = 2;
152 break;
153 case OPT_NEW:
154 perform = 1;
155 break;
156 case OPT_VERIFY:
157 verify_args.depth = opt_int_arg();
158 BIO_printf(bio_err, "%s: verify depth is %d\n",
159 prog, verify_args.depth);
160 break;
161 case OPT_CERT:
162 certfile = opt_arg();
163 break;
164 case OPT_NAMEOPT:
165 if (!set_nameopt(opt_arg()))
166 goto end;
167 break;
168 case OPT_KEY:
169 keyfile = opt_arg();
170 break;
171 case OPT_CAPATH:
172 CApath = opt_arg();
173 break;
174 case OPT_CAFILE:
175 CAfile = opt_arg();
176 break;
177 case OPT_NOCAPATH:
178 noCApath = 1;
179 break;
180 case OPT_NOCAFILE:
181 noCAfile = 1;
182 break;
183 case OPT_CASTORE:
184 CAstore = opt_arg();
185 break;
186 case OPT_NOCASTORE:
187 noCAstore = 1;
188 break;
189 case OPT_CIPHER:
190 cipher = opt_arg();
191 break;
192 case OPT_CIPHERSUITES:
193 ciphersuites = opt_arg();
194 break;
195 case OPT_BUGS:
196 st_bugs = 1;
197 break;
198 case OPT_TIME:
199 maxtime = opt_int_arg();
200 break;
201 case OPT_WWW:
202 www_path = opt_arg();
203 buf_size = strlen(www_path) + fmt_http_get_cmd_size;
204 if (buf_size > sizeof(buf)) {
205 BIO_printf(bio_err, "%s: -www option is too long\n", prog);
206 goto end;
207 }
208 break;
209 case OPT_SSL3:
210 min_version = SSL3_VERSION;
211 max_version = SSL3_VERSION;
212 break;
213 case OPT_TLS1:
214 min_version = TLS1_VERSION;
215 max_version = TLS1_VERSION;
216 break;
217 case OPT_TLS1_1:
218 min_version = TLS1_1_VERSION;
219 max_version = TLS1_1_VERSION;
220 break;
221 case OPT_TLS1_2:
222 min_version = TLS1_2_VERSION;
223 max_version = TLS1_2_VERSION;
224 break;
225 case OPT_TLS1_3:
226 min_version = TLS1_3_VERSION;
227 max_version = TLS1_3_VERSION;
228 break;
229 case OPT_PROV_CASES:
230 if (!opt_provider(o))
231 goto end;
232 break;
233 }
234 }
235
236 /* No extra arguments. */
237 if (!opt_check_rest_arg(NULL))
238 goto opthelp;
239
240 if (cipher == NULL)
241 cipher = getenv("SSL_CIPHER");
242
243 if ((ctx = SSL_CTX_new(meth)) == NULL)
244 goto end;
245
246 SSL_CTX_set_quiet_shutdown(ctx, 1);
247 if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
248 goto end;
249 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
250 goto end;
251
252 if (st_bugs)
253 SSL_CTX_set_options(ctx, SSL_OP_ALL);
254 if (cipher != NULL && !SSL_CTX_set_cipher_list(ctx, cipher))
255 goto end;
256 if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites))
257 goto end;
258 if (!set_cert_stuff(ctx, certfile, keyfile))
259 goto end;
260
261 if (!ctx_set_verify_locations(ctx, CAfile, noCAfile, CApath, noCApath,
262 CAstore, noCAstore)) {
263 ERR_print_errors(bio_err);
264 goto end;
265 }
266 if (!(perform & 1))
267 goto next;
268 printf("Collecting connection statistics for %d seconds\n", maxtime);
269
270 /* Loop and time how long it takes to make connections */
271
272 bytes_read = 0;
273 finishtime = (long)time(NULL) + maxtime;
274 tm_Time_F(START);
275 for (;;) {
276 if (finishtime < (long)time(NULL))
277 break;
278
279 if ((scon = doConnection(NULL, host, ctx)) == NULL)
280 goto end;
281
282 if (www_path != NULL) {
283 buf_len = BIO_snprintf(buf, sizeof(buf), fmt_http_get_cmd,
284 www_path);
285 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0)
286 goto end;
287 while ((i = SSL_read(scon, buf, sizeof(buf))) > 0)
288 bytes_read += i;
289 }
290 SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
291 BIO_closesocket(SSL_get_fd(scon));
292
293 nConn += 1;
294 if (SSL_session_reused(scon)) {
295 ver = 'r';
296 } else {
297 ver = SSL_version(scon);
298 if (ver == TLS1_VERSION)
299 ver = 't';
300 else if (ver == SSL3_VERSION)
301 ver = '3';
302 else
303 ver = '*';
304 }
305 fputc(ver, stdout);
306 fflush(stdout);
307
308 SSL_free(scon);
309 scon = NULL;
310 }
311 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
312
313 printf
314 ("\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n",
315 nConn, totalTime, ((double)nConn / totalTime), bytes_read);
316 printf
317 ("%d connections in %ld real seconds, %ld bytes read per connection\n",
318 nConn, (long)time(NULL) - finishtime + maxtime,
319 nConn > 0 ? bytes_read / nConn : 0l);
320
321 /*
322 * Now loop and time connections using the same session id over and over
323 */
324
325 next:
326 if (!(perform & 2))
327 goto end;
328 printf("\n\nNow timing with session id reuse.\n");
329
330 /* Get an SSL object so we can reuse the session id */
331 if ((scon = doConnection(NULL, host, ctx)) == NULL) {
332 BIO_printf(bio_err, "Unable to get connection\n");
333 goto end;
334 }
335
336 if (www_path != NULL) {
337 buf_len = BIO_snprintf(buf, sizeof(buf), fmt_http_get_cmd, www_path);
338 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0)
339 goto end;
340 while (SSL_read(scon, buf, sizeof(buf)) > 0)
341 continue;
342 }
343 SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
344 if ((fd = SSL_get_fd(scon)) >= 0)
345 BIO_closesocket(fd);
346
347 nConn = 0;
348 totalTime = 0.0;
349
350 finishtime = (long)time(NULL) + maxtime;
351
352 printf("starting\n");
353 bytes_read = 0;
354 tm_Time_F(START);
355
356 for (;;) {
357 if (finishtime < (long)time(NULL))
358 break;
359
360 if ((doConnection(scon, host, ctx)) == NULL)
361 goto end;
362
363 if (www_path != NULL) {
364 buf_len = BIO_snprintf(buf, sizeof(buf), fmt_http_get_cmd,
365 www_path);
366 if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0)
367 goto end;
368 while ((i = SSL_read(scon, buf, sizeof(buf))) > 0)
369 bytes_read += i;
370 }
371 SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
372 if ((fd = SSL_get_fd(scon)) >= 0)
373 BIO_closesocket(fd);
374
375 nConn += 1;
376 if (SSL_session_reused(scon)) {
377 ver = 'r';
378 } else {
379 ver = SSL_version(scon);
380 if (ver == TLS1_VERSION)
381 ver = 't';
382 else if (ver == SSL3_VERSION)
383 ver = '3';
384 else
385 ver = '*';
386 }
387 fputc(ver, stdout);
388 fflush(stdout);
389 }
390 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
391
392 printf
393 ("\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n",
394 nConn, totalTime, ((double)nConn / totalTime), bytes_read);
395 if (nConn > 0)
396 printf
397 ("%d connections in %ld real seconds, %ld bytes read per connection\n",
398 nConn, (long)time(NULL) - finishtime + maxtime, bytes_read / nConn);
399 else
400 printf("0 connections in %ld real seconds\n",
401 (long)time(NULL) - finishtime + maxtime);
402 ret = 0;
403
404 end:
405 SSL_free(scon);
406 SSL_CTX_free(ctx);
407 return ret;
408 }
409
410 /*-
411 * doConnection - make a connection
412 */
413 static SSL *doConnection(SSL *scon, const char *host, SSL_CTX *ctx)
414 {
415 BIO *conn;
416 SSL *serverCon;
417 int i;
418
419 if ((conn = BIO_new(BIO_s_connect())) == NULL)
420 return NULL;
421
422 if (BIO_set_conn_hostname(conn, host) <= 0
423 || BIO_set_conn_mode(conn, BIO_SOCK_NODELAY) <= 0) {
424 BIO_free(conn);
425 return NULL;
426 }
427
428 if (scon == NULL) {
429 serverCon = SSL_new(ctx);
430 if (serverCon == NULL) {
431 BIO_free(conn);
432 return NULL;
433 }
434 } else {
435 serverCon = scon;
436 SSL_set_connect_state(serverCon);
437 }
438
439 SSL_set_bio(serverCon, conn, conn);
440
441 /* ok, lets connect */
442 i = SSL_connect(serverCon);
443 if (i <= 0) {
444 BIO_printf(bio_err, "ERROR\n");
445 if (verify_args.error != X509_V_OK)
446 BIO_printf(bio_err, "verify error:%s\n",
447 X509_verify_cert_error_string(verify_args.error));
448 else
449 ERR_print_errors(bio_err);
450 if (scon == NULL)
451 SSL_free(serverCon);
452 return NULL;
453 }
454
455 #if defined(SOL_SOCKET) && defined(SO_LINGER)
456 {
457 struct linger no_linger;
458 int fd;
459
460 no_linger.l_onoff = 1;
461 no_linger.l_linger = 0;
462 fd = SSL_get_fd(serverCon);
463 if (fd >= 0)
464 (void)setsockopt(fd, SOL_SOCKET, SO_LINGER, (char*)&no_linger,
465 sizeof(no_linger));
466 }
467 #endif
468
469 return serverCon;
470 }
471 #endif /* OPENSSL_NO_SOCK */