Skip to content
This repository was archived by the owner on Oct 16, 2021. It is now read-only.

Commit 9f0f7c3

Browse files
author
Shigeki Ohtsu
committed
deps: add -no_rand_screen to openssl s_client
In openssl s_client on Windows, RAND_screen() is invoked to initialize random state but it takes several seconds in each connection. This added -no_rand_screen to openssl s_client on Windows to skip RAND_screen() and gets a better performance in the unit test of test-tls-server-verify. Do not enable this except to use in the unit test.
1 parent 833b236 commit 9f0f7c3

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

deps/openssl/openssl/apps/app_rand.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,16 @@ int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn)
124124
char buffer[200];
125125

126126
#ifdef OPENSSL_SYS_WINDOWS
127-
BIO_printf(bio_e, "Loading 'screen' into random state -");
128-
BIO_flush(bio_e);
129-
RAND_screen();
130-
BIO_printf(bio_e, " done\n");
127+
/*
128+
* allocate 2 to dont_warn not to use RAND_screen() via
129+
* -no_rand_screen option in s_client
130+
*/
131+
if (dont_warn != 2) {
132+
BIO_printf(bio_e, "Loading 'screen' into random state -");
133+
BIO_flush(bio_e);
134+
RAND_screen();
135+
BIO_printf(bio_e, " done\n");
136+
}
131137
#endif
132138

133139
if (file == NULL)

deps/openssl/openssl/apps/s_client.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ static int ocsp_resp_cb(SSL *s, void *arg);
233233
static BIO *bio_c_out = NULL;
234234
static int c_quiet = 0;
235235
static int c_ign_eof = 0;
236+
static int c_no_rand_screen = 0;
236237

237238
#ifndef OPENSSL_NO_PSK
238239
/* Default PSK identity and key */
@@ -433,6 +434,10 @@ static void sc_usage(void)
433434
" -keymatexport label - Export keying material using label\n");
434435
BIO_printf(bio_err,
435436
" -keymatexportlen len - Export len bytes of keying material (default 20)\n");
437+
#ifdef OPENSSL_SYS_WINDOWS
438+
BIO_printf(bio_err,
439+
" -no_rand_screen - Do not use RAND_screen() to initialize random state\n");
440+
#endif
436441
}
437442

438443
#ifndef OPENSSL_NO_TLSEXT
@@ -1009,6 +1014,10 @@ int MAIN(int argc, char **argv)
10091014
keymatexportlen = atoi(*(++argv));
10101015
if (keymatexportlen == 0)
10111016
goto bad;
1017+
#ifdef OPENSSL_SYS_WINDOWS
1018+
} else if (strcmp(*argv, "-no_rand_screen") == 0) {
1019+
c_no_rand_screen = 1;
1020+
#endif
10121021
} else {
10131022
BIO_printf(bio_err, "unknown option %s\n", *argv);
10141023
badop = 1;
@@ -1092,7 +1101,7 @@ int MAIN(int argc, char **argv)
10921101
}
10931102
}
10941103

1095-
if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL
1104+
if (!app_RAND_load_file(NULL, bio_err, ++c_no_rand_screen) && inrand == NULL
10961105
&& !RAND_status()) {
10971106
BIO_printf(bio_err,
10981107
"warning, not much extra random data, consider using the -rand option\n");

0 commit comments

Comments
 (0)