]> git.ipfire.org Git - thirdparty/openssl.git/blame - apps/s_server.c
Add the ability to set a TLSv1.3 PSK via just the key bytes
[thirdparty/openssl.git] / apps / s_server.c
CommitLineData
846e33c7 1/*
2234212c 2 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
aa8f3d76 3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
c80149d9 4 * Copyright 2005 Nokia. All rights reserved.
a661b653 5 *
846e33c7
RS
6 * Licensed under the OpenSSL license (the "License"). You may not use
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
a661b653 10 */
846e33c7 11
ddac1974 12#include <ctype.h>
8c197cc5
UM
13#include <stdio.h>
14#include <stdlib.h>
15#include <string.h>
54463e4f
F
16#if defined(_WIN32)
17/* Included before async.h to avoid some warnings */
18# include <windows.h>
19#endif
4d8743f4 20
be1bd923 21#include <openssl/e_os2.h>
54463e4f
F
22#include <openssl/async.h>
23#include <openssl/ssl.h>
8c197cc5 24
f9e55034
MC
25#ifndef OPENSSL_NO_SOCK
26
0f113f3e
MC
27/*
28 * With IPv6, it looks like Digital has mixed up the proper order of
29 * recursive header file inclusion, resulting in the compiler complaining
30 * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
31 * needed to have fileno() declared correctly... So let's define u_int
32 */
bc36ee62 33#if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
0f113f3e 34# define __U_INT
7d7d2cbc
UM
35typedef unsigned int u_int;
36#endif
37
ec577822
BM
38#include <openssl/lhash.h>
39#include <openssl/bn.h>
d02b48c6
RE
40#define USE_SOCKETS
41#include "apps.h"
ec577822
BM
42#include <openssl/err.h>
43#include <openssl/pem.h>
44#include <openssl/x509.h>
45#include <openssl/ssl.h>
1372965e 46#include <openssl/rand.h>
67c8e7f4 47#include <openssl/ocsp.h>
3eeaab4b 48#ifndef OPENSSL_NO_DH
0f113f3e 49# include <openssl/dh.h>
3eeaab4b
NL
50#endif
51#ifndef OPENSSL_NO_RSA
0f113f3e 52# include <openssl/rsa.h>
3eeaab4b 53#endif
edc032b5 54#ifndef OPENSSL_NO_SRP
0f113f3e 55# include <openssl/srp.h>
edc032b5 56#endif
d02b48c6 57#include "s_apps.h"
36d16f8e 58#include "timeouts.h"
5fd1478d
MC
59#ifdef CHARSET_EBCDIC
60#include <openssl/ebcdic.h>
61#endif
d02b48c6 62
7c2d4fee 63static int not_resumable_sess_cb(SSL *s, int is_forward_secure);
72d0bc84
MC
64static int sv_body(int s, int stype, int prot, unsigned char *context);
65static int www_body(int s, int stype, int prot, unsigned char *context);
66static int rev_body(int s, int stype, int prot, unsigned char *context);
0f113f3e 67static void close_accept_socket(void);
d02b48c6 68static int init_ssl_connection(SSL *s);
0f113f3e 69static void print_stats(BIO *bp, SSL_CTX *ctx);
1aa0d947 70static int generate_session_id(const SSL *ssl, unsigned char *id,
0f113f3e 71 unsigned int *id_len);
35b0ea4e
DSH
72static void init_session_cache_ctx(SSL_CTX *sctx);
73static void free_sessions(void);
cf1b7d96 74#ifndef OPENSSL_NO_DH
eb3eab20 75static DH *load_dh_param(const char *dhfile);
58964a49 76#endif
ade1e888 77static void print_connection_info(SSL *con);
ea262260 78
d6073e27 79static const int bufsize = 16 * 1024;
0f113f3e 80static int accept_socket = -1;
d02b48c6 81
0f113f3e 82#define TEST_CERT "server.pem"
e481f9b9 83#define TEST_CERT2 "server2.pem"
d02b48c6 84
0f113f3e 85static int s_nbio = 0;
0f113f3e 86static int s_nbio_test = 0;
df2ee0e2 87static int s_crlf = 0;
0f113f3e 88static SSL_CTX *ctx = NULL;
0f113f3e 89static SSL_CTX *ctx2 = NULL;
0f113f3e 90static int www = 0;
d02b48c6 91
0f113f3e 92static BIO *bio_s_out = NULL;
93ab9e42 93static BIO *bio_s_msg = NULL;
0f113f3e 94static int s_debug = 0;
0f113f3e 95static int s_tlsextdebug = 0;
0f113f3e
MC
96static int s_msg = 0;
97static int s_quiet = 0;
98static int s_ign_eof = 0;
99static int s_brief = 0;
d02b48c6 100
0f113f3e
MC
101static char *keymatexportlabel = NULL;
102static int keymatexportlen = 20;
e0af0405 103
7e25dd6d
MC
104static int async = 0;
105
0f113f3e 106static const char *session_id_prefix = NULL;
b74ba295 107
a7a14a23 108#ifndef OPENSSL_NO_DTLS
36d16f8e 109static int enable_timeouts = 0;
b1277b99 110static long socket_mtu;
f2ff1432 111#endif
36d16f8e 112
9998b32c
MC
113/*
114 * We define this but make it always be 0 in no-dtls builds to simplify the
115 * code.
116 */
117static int dtlslisten = 0;
118
593a2aa3 119static int early_data = 0;
df894947 120static SSL_SESSION *psksess = NULL;
593a2aa3 121
ddac1974 122#ifndef OPENSSL_NO_PSK
720b6cbe 123static char *psk_identity = "Client_identity";
0f113f3e 124char *psk_key = NULL; /* by default PSK is not used */
ddac1974
NL
125
126static unsigned int psk_server_cb(SSL *ssl, const char *identity,
0f113f3e
MC
127 unsigned char *psk,
128 unsigned int max_psk_len)
129{
6ec6d520
DSH
130 long key_len = 0;
131 unsigned char *key;
0f113f3e
MC
132
133 if (s_debug)
134 BIO_printf(bio_s_out, "psk_server_cb\n");
2234212c 135 if (identity == NULL) {
0f113f3e
MC
136 BIO_printf(bio_err, "Error: client did not send PSK identity\n");
137 goto out_err;
138 }
139 if (s_debug)
140 BIO_printf(bio_s_out, "identity_len=%d identity=%s\n",
11abf922 141 (int)strlen(identity), identity);
0f113f3e
MC
142
143 /* here we could lookup the given identity e.g. from a database */
144 if (strcmp(identity, psk_identity) != 0) {
720b6cbe 145 BIO_printf(bio_s_out, "PSK warning: client identity not what we expected"
0f113f3e 146 " (got '%s' expected '%s')\n", identity, psk_identity);
720b6cbe
DKG
147 } else {
148 if (s_debug)
0f113f3e 149 BIO_printf(bio_s_out, "PSK client identity found\n");
720b6cbe 150 }
0f113f3e
MC
151
152 /* convert the PSK key to binary */
6ec6d520
DSH
153 key = OPENSSL_hexstr2buf(psk_key, &key_len);
154 if (key == NULL) {
155 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
0f113f3e 156 psk_key);
0f113f3e
MC
157 return 0;
158 }
6ec6d520 159 if (key_len > (int)max_psk_len) {
0f113f3e 160 BIO_printf(bio_err,
6ec6d520
DSH
161 "psk buffer of callback is too small (%d) for key (%ld)\n",
162 max_psk_len, key_len);
163 OPENSSL_free(key);
0f113f3e
MC
164 return 0;
165 }
166
6ec6d520
DSH
167 memcpy(psk, key, key_len);
168 OPENSSL_free(key);
0f113f3e
MC
169
170 if (s_debug)
6ec6d520
DSH
171 BIO_printf(bio_s_out, "fetched PSK len=%ld\n", key_len);
172 return key_len;
ddac1974 173 out_err:
0f113f3e
MC
174 if (s_debug)
175 BIO_printf(bio_err, "Error in PSK server callback\n");
c54cc2b1
RS
176 (void)BIO_flush(bio_err);
177 (void)BIO_flush(bio_s_out);
0f113f3e
MC
178 return 0;
179}
ddac1974 180#endif
36d16f8e 181
5ffff599
MC
182#define TLS13_AES_128_GCM_SHA256_BYTES ((const unsigned char *)"\x13\x01")
183#define TLS13_AES_256_GCM_SHA384_BYTES ((const unsigned char *)"\x13\x02")
184
df894947
MC
185static int psk_find_session_cb(SSL *ssl, const unsigned char *identity,
186 size_t identity_len, SSL_SESSION **sess)
187{
5ffff599
MC
188 SSL_SESSION *tmpsess = NULL;
189 unsigned char *key;
190 long key_len;
191 const SSL_CIPHER *cipher = NULL;
192
df894947
MC
193 if (strlen(psk_identity) != identity_len
194 || memcmp(psk_identity, identity, identity_len) != 0)
195 return 0;
196
5ffff599
MC
197 if (psksess != NULL) {
198 SSL_SESSION_up_ref(psksess);
199 *sess = psksess;
200 return 1;
201 }
202
203 key = OPENSSL_hexstr2buf(psk_key, &key_len);
204 if (key == NULL) {
205 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
206 psk_key);
207 return 0;
208 }
209
210 if (key_len == EVP_MD_size(EVP_sha256()))
211 cipher = SSL_CIPHER_find(ssl, TLS13_AES_128_GCM_SHA256_BYTES);
212 else if(key_len == EVP_MD_size(EVP_sha384()))
213 cipher = SSL_CIPHER_find(ssl, TLS13_AES_256_GCM_SHA384_BYTES);
214
215 if (cipher == NULL) {
216 /* Doesn't look like a suitable TLSv1.3 key. Ignore it */
217 OPENSSL_free(key);
218 return 0;
219 }
220
221 tmpsess = SSL_SESSION_new();
222 if (tmpsess == NULL
223 || !SSL_SESSION_set1_master_key(tmpsess, key, key_len)
224 || !SSL_SESSION_set_cipher(tmpsess, cipher)
225 || !SSL_SESSION_set_protocol_version(tmpsess, SSL_version(ssl))) {
226 OPENSSL_free(key);
227 return 0;
228 }
229 OPENSSL_free(key);
230 *sess = tmpsess;
df894947
MC
231
232 return 1;
233}
234
edc032b5
BL
235#ifndef OPENSSL_NO_SRP
236/* This is a context that we pass to callbacks */
0f113f3e
MC
237typedef struct srpsrvparm_st {
238 char *login;
239 SRP_VBASE *vb;
240 SRP_user_pwd *user;
241} srpsrvparm;
242
243/*
244 * This callback pretends to require some asynchronous logic in order to
245 * obtain a verifier. When the callback is called for a new connection we
246 * return with a negative value. This will provoke the accept etc to return
247 * with an LOOKUP_X509. The main logic of the reinvokes the suspended call
248 * (which would normally occur after a worker has finished) and we set the
249 * user parameters.
250 */
6d23cf97 251static int ssl_srp_server_param_cb(SSL *s, int *ad, void *arg)
0f113f3e
MC
252{
253 srpsrvparm *p = (srpsrvparm *) arg;
380f18ed
EK
254 int ret = SSL3_AL_FATAL;
255
0f113f3e
MC
256 if (p->login == NULL && p->user == NULL) {
257 p->login = SSL_get_srp_username(s);
258 BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
259 return (-1);
260 }
261
262 if (p->user == NULL) {
263 BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
380f18ed 264 goto err;
0f113f3e 265 }
380f18ed 266
0f113f3e
MC
267 if (SSL_set_srp_server_param
268 (s, p->user->N, p->user->g, p->user->s, p->user->v,
269 p->user->info) < 0) {
270 *ad = SSL_AD_INTERNAL_ERROR;
380f18ed 271 goto err;
0f113f3e
MC
272 }
273 BIO_printf(bio_err,
274 "SRP parameters set: username = \"%s\" info=\"%s\" \n",
275 p->login, p->user->info);
380f18ed
EK
276 ret = SSL_ERROR_NONE;
277
d6073e27 278 err:
380f18ed 279 SRP_user_pwd_free(p->user);
0f113f3e
MC
280 p->user = NULL;
281 p->login = NULL;
380f18ed 282 return ret;
0f113f3e 283}
edc032b5
BL
284
285#endif
286
0f113f3e 287static int local_argc = 0;
d02b48c6 288static char **local_argv;
d02b48c6 289
a53955d8
UM
290#ifdef CHARSET_EBCDIC
291static int ebcdic_new(BIO *bi);
292static int ebcdic_free(BIO *a);
293static int ebcdic_read(BIO *b, char *out, int outl);
0fd05a2f
BM
294static int ebcdic_write(BIO *b, const char *in, int inl);
295static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
a53955d8 296static int ebcdic_gets(BIO *bp, char *buf, int size);
0fd05a2f 297static int ebcdic_puts(BIO *bp, const char *str);
a53955d8 298
0f113f3e 299# define BIO_TYPE_EBCDIC_FILTER (18|0x0200)
5fd1478d 300static BIO_METHOD *methods_ebcdic = NULL;
0f113f3e 301
68dc6824 302/* This struct is "unwarranted chumminess with the compiler." */
0f113f3e
MC
303typedef struct {
304 size_t alloced;
305 char buff[1];
a53955d8
UM
306} EBCDIC_OUTBUFF;
307
5fd1478d 308static const BIO_METHOD *BIO_f_ebcdic_filter()
a53955d8 309{
5fd1478d
MC
310 if (methods_ebcdic == NULL) {
311 methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER,
d6073e27
F
312 "EBCDIC/ASCII filter");
313 if (methods_ebcdic == NULL
5fd1478d
MC
314 || !BIO_meth_set_write(methods_ebcdic, ebcdic_write)
315 || !BIO_meth_set_read(methods_ebcdic, ebcdic_read)
316 || !BIO_meth_set_puts(methods_ebcdic, ebcdic_puts)
317 || !BIO_meth_set_gets(methods_ebcdic, ebcdic_gets)
318 || !BIO_meth_set_ctrl(methods_ebcdic, ebcdic_ctrl)
319 || !BIO_meth_set_create(methods_ebcdic, ebcdic_new)
320 || !BIO_meth_set_destroy(methods_ebcdic, ebcdic_free))
321 return NULL;
322 }
323 return methods_ebcdic;
a53955d8
UM
324}
325
326static int ebcdic_new(BIO *bi)
327{
0f113f3e 328 EBCDIC_OUTBUFF *wbuf;
a53955d8 329
b4faea50 330 wbuf = app_malloc(sizeof(*wbuf) + 1024, "ebcdic wbuf");
0f113f3e
MC
331 wbuf->alloced = 1024;
332 wbuf->buff[0] = '\0';
a53955d8 333
5fd1478d
MC
334 BIO_set_data(bi, wbuf);
335 BIO_set_init(bi, 1);
336 return 1;
a53955d8
UM
337}
338
339static int ebcdic_free(BIO *a)
340{
5fd1478d
MC
341 EBCDIC_OUTBUFF *wbuf;
342
0f113f3e 343 if (a == NULL)
5fd1478d
MC
344 return 0;
345 wbuf = BIO_get_data(a);
346 OPENSSL_free(wbuf);
347 BIO_set_data(a, NULL);
348 BIO_set_init(a, 0);
349
350 return 1;
a53955d8 351}
0f113f3e 352
a53955d8
UM
353static int ebcdic_read(BIO *b, char *out, int outl)
354{
0f113f3e 355 int ret = 0;
5fd1478d 356 BIO *next = BIO_next(b);
a53955d8 357
0f113f3e
MC
358 if (out == NULL || outl == 0)
359 return (0);
5fd1478d 360 if (next == NULL)
0f113f3e 361 return (0);
a53955d8 362
5fd1478d 363 ret = BIO_read(next, out, outl);
0f113f3e
MC
364 if (ret > 0)
365 ascii2ebcdic(out, out, ret);
5fd1478d 366 return ret;
a53955d8
UM
367}
368
0fd05a2f 369static int ebcdic_write(BIO *b, const char *in, int inl)
a53955d8 370{
0f113f3e 371 EBCDIC_OUTBUFF *wbuf;
5fd1478d 372 BIO *next = BIO_next(b);
0f113f3e
MC
373 int ret = 0;
374 int num;
a53955d8 375
0f113f3e
MC
376 if ((in == NULL) || (inl <= 0))
377 return (0);
5fd1478d
MC
378 if (next == NULL)
379 return 0;
a53955d8 380
5fd1478d 381 wbuf = (EBCDIC_OUTBUFF *) BIO_get_data(b);
a53955d8 382
0f113f3e
MC
383 if (inl > (num = wbuf->alloced)) {
384 num = num + num; /* double the size */
385 if (num < inl)
386 num = inl;
5fd1478d 387 OPENSSL_free(wbuf);
b4faea50 388 wbuf = app_malloc(sizeof(*wbuf) + num, "grow ebcdic wbuf");
a53955d8 389
0f113f3e
MC
390 wbuf->alloced = num;
391 wbuf->buff[0] = '\0';
a53955d8 392
5fd1478d 393 BIO_set_data(b, wbuf);
0f113f3e 394 }
a53955d8 395
0f113f3e 396 ebcdic2ascii(wbuf->buff, in, inl);
a53955d8 397
5fd1478d 398 ret = BIO_write(next, wbuf->buff, inl);
a53955d8 399
0f113f3e 400 return (ret);
a53955d8
UM
401}
402
0fd05a2f 403static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr)
a53955d8 404{
0f113f3e 405 long ret;
5fd1478d 406 BIO *next = BIO_next(b);
0f113f3e 407
5fd1478d 408 if (next == NULL)
0f113f3e
MC
409 return (0);
410 switch (cmd) {
411 case BIO_CTRL_DUP:
412 ret = 0L;
413 break;
414 default:
5fd1478d 415 ret = BIO_ctrl(next, cmd, num, ptr);
0f113f3e
MC
416 break;
417 }
418 return (ret);
a53955d8
UM
419}
420
421static int ebcdic_gets(BIO *bp, char *buf, int size)
422{
0f113f3e 423 int i, ret = 0;
5fd1478d
MC
424 BIO *next = BIO_next(bp);
425
426 if (next == NULL)
427 return 0;
0f113f3e
MC
428/* return(BIO_gets(bp->next_bio,buf,size));*/
429 for (i = 0; i < size - 1; ++i) {
430 ret = ebcdic_read(bp, &buf[i], 1);
431 if (ret <= 0)
432 break;
433 else if (buf[i] == '\n') {
434 ++i;
435 break;
436 }
437 }
438 if (i < size)
439 buf[i] = '\0';
440 return (ret < 0 && i == 0) ? ret : i;
a53955d8
UM
441}
442
0fd05a2f 443static int ebcdic_puts(BIO *bp, const char *str)
a53955d8 444{
5fd1478d
MC
445 if (BIO_next(bp) == NULL)
446 return 0;
0f113f3e 447 return ebcdic_write(bp, str, strlen(str));
a53955d8
UM
448}
449#endif
450
ed3883d2
BM
451/* This is a context that we pass to callbacks */
452typedef struct tlsextctx_st {
0f113f3e
MC
453 char *servername;
454 BIO *biodebug;
455 int extension_error;
ed3883d2
BM
456} tlsextctx;
457
6d23cf97 458static int ssl_servername_cb(SSL *s, int *ad, void *arg)
0f113f3e
MC
459{
460 tlsextctx *p = (tlsextctx *) arg;
461 const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
2234212c 462 if (servername != NULL && p->biodebug != NULL)
0f113f3e
MC
463 BIO_printf(p->biodebug, "Hostname in TLS extension: \"%s\"\n",
464 servername);
465
2234212c 466 if (p->servername == NULL)
0f113f3e
MC
467 return SSL_TLSEXT_ERR_NOACK;
468
2234212c 469 if (servername != NULL) {
0f113f3e
MC
470 if (strcasecmp(servername, p->servername))
471 return p->extension_error;
2234212c 472 if (ctx2 != NULL) {
0f113f3e
MC
473 BIO_printf(p->biodebug, "Switching server context.\n");
474 SSL_set_SSL_CTX(s, ctx2);
475 }
476 }
477 return SSL_TLSEXT_ERR_OK;
ed3883d2 478}
67c8e7f4
DSH
479
480/* Structure passed to cert status callback */
67c8e7f4 481typedef struct tlsextstatusctx_st {
f5ca0b04 482 int timeout;
acf65ae5
MC
483 /* File to load OCSP Response from (or NULL if no file) */
484 char *respin;
0f113f3e
MC
485 /* Default responder to use */
486 char *host, *path, *port;
487 int use_ssl;
0f113f3e 488 int verbose;
67c8e7f4
DSH
489} tlsextstatusctx;
490
f5ca0b04 491static tlsextstatusctx tlscstatp = { -1 };
67c8e7f4 492
3e41ac35 493#ifndef OPENSSL_NO_OCSP
acf65ae5 494
0f113f3e 495/*
acf65ae5
MC
496 * Helper function to get an OCSP_RESPONSE from a responder. This is a
497 * simplified version. It examines certificates each time and makes one OCSP
498 * responder query for each request. A full version would store details such as
499 * the OCSP certificate IDs and minimise the number of OCSP responses by caching
500 * them until they were considered "expired".
67c8e7f4 501 */
acf65ae5
MC
502static int get_ocsp_resp_from_responder(SSL *s, tlsextstatusctx *srctx,
503 OCSP_RESPONSE **resp)
0f113f3e 504{
4c9b0a03 505 char *host = NULL, *port = NULL, *path = NULL;
0f113f3e 506 int use_ssl;
0f113f3e
MC
507 STACK_OF(OPENSSL_STRING) *aia = NULL;
508 X509 *x = NULL;
f0e0fd51
RS
509 X509_STORE_CTX *inctx = NULL;
510 X509_OBJECT *obj;
0f113f3e 511 OCSP_REQUEST *req = NULL;
0f113f3e
MC
512 OCSP_CERTID *id = NULL;
513 STACK_OF(X509_EXTENSION) *exts;
514 int ret = SSL_TLSEXT_ERR_NOACK;
515 int i;
7e1b7485 516
0f113f3e
MC
517 /* Build up OCSP query from server certificate */
518 x = SSL_get_certificate(s);
519 aia = X509_get1_ocsp(x);
2234212c 520 if (aia != NULL) {
0f113f3e
MC
521 if (!OCSP_parse_url(sk_OPENSSL_STRING_value(aia, 0),
522 &host, &port, &path, &use_ssl)) {
7e1b7485 523 BIO_puts(bio_err, "cert_status: can't parse AIA URL\n");
0f113f3e
MC
524 goto err;
525 }
526 if (srctx->verbose)
7e1b7485 527 BIO_printf(bio_err, "cert_status: AIA URL: %s\n",
0f113f3e
MC
528 sk_OPENSSL_STRING_value(aia, 0));
529 } else {
2234212c 530 if (srctx->host == NULL) {
7e1b7485 531 BIO_puts(bio_err,
0f113f3e
MC
532 "cert_status: no AIA and no default responder URL\n");
533 goto done;
534 }
535 host = srctx->host;
536 path = srctx->path;
537 port = srctx->port;
538 use_ssl = srctx->use_ssl;
539 }
540
f0e0fd51
RS
541 inctx = X509_STORE_CTX_new();
542 if (inctx == NULL)
543 goto err;
544 if (!X509_STORE_CTX_init(inctx,
0f113f3e
MC
545 SSL_CTX_get_cert_store(SSL_get_SSL_CTX(s)),
546 NULL, NULL))
547 goto err;
6ddbb4cd
RS
548 obj = X509_STORE_CTX_get_obj_by_subject(inctx, X509_LU_X509,
549 X509_get_issuer_name(x));
f0e0fd51 550 if (obj == NULL) {
7e1b7485 551 BIO_puts(bio_err, "cert_status: Can't retrieve issuer certificate.\n");
0f113f3e
MC
552 goto done;
553 }
f0e0fd51
RS
554 id = OCSP_cert_to_id(NULL, x, X509_OBJECT_get0_X509(obj));
555 X509_OBJECT_free(obj);
2234212c 556 if (id == NULL)
0f113f3e 557 goto err;
0461b7ea
MC
558 req = OCSP_REQUEST_new();
559 if (req == NULL)
560 goto err;
0f113f3e
MC
561 if (!OCSP_request_add0_id(req, id))
562 goto err;
563 id = NULL;
564 /* Add any extensions to the request */
565 SSL_get_tlsext_status_exts(s, &exts);
566 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
567 X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
568 if (!OCSP_REQUEST_add_ext(req, ext, -1))
569 goto err;
570 }
acf65ae5 571 *resp = process_responder(req, host, path, port, use_ssl, NULL,
0f113f3e 572 srctx->timeout);
acf65ae5 573 if (*resp == NULL) {
7e1b7485 574 BIO_puts(bio_err, "cert_status: error querying responder\n");
0f113f3e
MC
575 goto done;
576 }
acf65ae5 577
0f113f3e 578 ret = SSL_TLSEXT_ERR_OK;
f0e0fd51
RS
579 goto done;
580
581 err:
582 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
0f113f3e 583 done:
6530c490
MC
584 /*
585 * If we parsed aia we need to free; otherwise they were copied and we
586 * don't
587 */
f5ca0b04 588 if (aia != NULL) {
0f113f3e
MC
589 OPENSSL_free(host);
590 OPENSSL_free(path);
591 OPENSSL_free(port);
592 X509_email_free(aia);
593 }
25aaa98a
RS
594 OCSP_CERTID_free(id);
595 OCSP_REQUEST_free(req);
f0e0fd51 596 X509_STORE_CTX_free(inctx);
0f113f3e 597 return ret;
0f113f3e 598}
acf65ae5
MC
599
600/*
601 * Certificate Status callback. This is called when a client includes a
602 * certificate status request extension. The response is either obtained from a
603 * file, or from an OCSP responder.
604 */
605static int cert_status_cb(SSL *s, void *arg)
606{
607 tlsextstatusctx *srctx = arg;
608 OCSP_RESPONSE *resp = NULL;
609 unsigned char *rspder = NULL;
610 int rspderlen;
611 int ret = SSL_TLSEXT_ERR_ALERT_FATAL;
612
613 if (srctx->verbose)
614 BIO_puts(bio_err, "cert_status: callback called\n");
615
616 if (srctx->respin != NULL) {
617 BIO *derbio = bio_open_default(srctx->respin, 'r', FORMAT_ASN1);
618 if (derbio == NULL) {
619 BIO_puts(bio_err, "cert_status: Cannot open OCSP response file\n");
620 goto err;
621 }
622 resp = d2i_OCSP_RESPONSE_bio(derbio, NULL);
623 BIO_free(derbio);
f5ca0b04 624 if (resp == NULL) {
acf65ae5
MC
625 BIO_puts(bio_err, "cert_status: Error reading OCSP response\n");
626 goto err;
627 }
628 } else {
629 ret = get_ocsp_resp_from_responder(s, srctx, &resp);
630 if (ret != SSL_TLSEXT_ERR_OK)
631 goto err;
632 }
633
634 rspderlen = i2d_OCSP_RESPONSE(resp, &rspder);
635 if (rspderlen <= 0)
636 goto err;
637
638 SSL_set_tlsext_status_ocsp_resp(s, rspder, rspderlen);
639 if (srctx->verbose) {
640 BIO_puts(bio_err, "cert_status: ocsp response sent:\n");
641 OCSP_RESPONSE_print(bio_err, resp, 2);
642 }
643
644 ret = SSL_TLSEXT_ERR_OK;
645
646 err:
647 if (ret != SSL_TLSEXT_ERR_OK)
648 ERR_print_errors(bio_err);
649
650 OCSP_RESPONSE_free(resp);
651
652 return ret;
653}
3e41ac35 654#endif
ee2ffc27 655
e481f9b9 656#ifndef OPENSSL_NO_NEXTPROTONEG
ee2ffc27
BL
657/* This is the context that we pass to next_proto_cb */
658typedef struct tlsextnextprotoctx_st {
0f113f3e 659 unsigned char *data;
f2ff1432 660 size_t len;
ee2ffc27
BL
661} tlsextnextprotoctx;
662
0f113f3e
MC
663static int next_proto_cb(SSL *s, const unsigned char **data,
664 unsigned int *len, void *arg)
665{
666 tlsextnextprotoctx *next_proto = arg;
ee2ffc27 667
0f113f3e
MC
668 *data = next_proto->data;
669 *len = next_proto->len;
ee2ffc27 670
0f113f3e
MC
671 return SSL_TLSEXT_ERR_OK;
672}
e481f9b9 673#endif /* ndef OPENSSL_NO_NEXTPROTONEG */
6f017a8f
AL
674
675/* This the context that we pass to alpn_cb */
676typedef struct tlsextalpnctx_st {
0f113f3e 677 unsigned char *data;
817cd0d5 678 size_t len;
6f017a8f
AL
679} tlsextalpnctx;
680
0f113f3e
MC
681static int alpn_cb(SSL *s, const unsigned char **out, unsigned char *outlen,
682 const unsigned char *in, unsigned int inlen, void *arg)
683{
684 tlsextalpnctx *alpn_ctx = arg;
685
686 if (!s_quiet) {
687 /* We can assume that |in| is syntactically valid. */
817cd0d5 688 unsigned int i;
0f113f3e
MC
689 BIO_printf(bio_s_out, "ALPN protocols advertised by the client: ");
690 for (i = 0; i < inlen;) {
691 if (i)
692 BIO_write(bio_s_out, ", ", 2);
693 BIO_write(bio_s_out, &in[i + 1], in[i]);
694 i += in[i] + 1;
695 }
696 BIO_write(bio_s_out, "\n", 1);
697 }
698
699 if (SSL_select_next_proto
700 ((unsigned char **)out, outlen, alpn_ctx->data, alpn_ctx->len, in,
701 inlen) != OPENSSL_NPN_NEGOTIATED) {
702 return SSL_TLSEXT_ERR_NOACK;
703 }
704
705 if (!s_quiet) {
706 BIO_printf(bio_s_out, "ALPN protocols selected: ");
707 BIO_write(bio_s_out, *out, *outlen);
708 BIO_write(bio_s_out, "\n", 1);
709 }
710
711 return SSL_TLSEXT_ERR_OK;
712}
ed3883d2 713
7c2d4fee 714static int not_resumable_sess_cb(SSL *s, int is_forward_secure)
0f113f3e
MC
715{
716 /* disable resumption for sessions with forward secure ciphers */
717 return is_forward_secure;
718}
7c2d4fee 719
c79f22c6 720#ifndef OPENSSL_NO_SRP
0f113f3e 721static srpsrvparm srp_callback_parm;
c79f22c6 722#endif
e783bae2 723#ifndef OPENSSL_NO_SRTP
333f926d 724static char *srtp_profiles = NULL;
e783bae2 725#endif
6caa4edd 726
7e1b7485 727typedef enum OPTION_choice {
ab69ac00
RL
728 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ENGINE,
729 OPT_4, OPT_6, OPT_ACCEPT, OPT_PORT, OPT_UNIX, OPT_UNLINK, OPT_NACCEPT,
a7c04f2b 730 OPT_VERIFY, OPT_NAMEOPT, OPT_UPPER_V_VERIFY, OPT_CONTEXT, OPT_CERT, OPT_CRL,
7e1b7485
RS
731 OPT_CRL_DOWNLOAD, OPT_SERVERINFO, OPT_CERTFORM, OPT_KEY, OPT_KEYFORM,
732 OPT_PASS, OPT_CERT_CHAIN, OPT_DHPARAM, OPT_DCERTFORM, OPT_DCERT,
733 OPT_DKEYFORM, OPT_DPASS, OPT_DKEY, OPT_DCERT_CHAIN, OPT_NOCERT,
2b6bcb70 734 OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH, OPT_NO_CACHE,
7e1b7485 735 OPT_EXT_CACHE, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
2b6bcb70
MC
736 OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE, OPT_CHAINCAFILE,
737 OPT_VERIFYCAFILE, OPT_NBIO, OPT_NBIO_TEST, OPT_IGN_EOF, OPT_NO_IGN_EOF,
738 OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_STATUS_VERBOSE,
acf65ae5
MC
739 OPT_STATUS_TIMEOUT, OPT_STATUS_URL, OPT_STATUS_FILE, OPT_MSG, OPT_MSGFILE,
740 OPT_TRACE, OPT_SECURITY_DEBUG, OPT_SECURITY_DEBUG_VERBOSE, OPT_STATE,
741 OPT_CRLF, OPT_QUIET, OPT_BRIEF, OPT_NO_DHE,
df894947
MC
742 OPT_NO_RESUME_EPHEMERAL, OPT_PSK_IDENTITY, OPT_PSK_HINT, OPT_PSK,
743 OPT_PSK_SESS, OPT_SRPVFILE, OPT_SRPUSERSEED, OPT_REV, OPT_WWW,
744 OPT_UPPER_WWW, OPT_HTTP, OPT_ASYNC, OPT_SSL_CONFIG,
28e5ea88 745 OPT_MAX_SEND_FRAG, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES, OPT_READ_BUF,
582a17d6 746 OPT_SSL3, OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
72d0bc84 747 OPT_DTLS1_2, OPT_SCTP, OPT_TIMEOUT, OPT_MTU, OPT_LISTEN,
7e1b7485 748 OPT_ID_PREFIX, OPT_RAND, OPT_SERVERNAME, OPT_SERVERNAME_FATAL,
dba31777 749 OPT_CERT2, OPT_KEY2, OPT_NEXTPROTONEG, OPT_ALPN,
7e1b7485 750 OPT_SRTP_PROFILES, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN,
e0655186 751 OPT_KEYLOG_FILE, OPT_MAX_EARLY, OPT_EARLY_DATA,
7e1b7485
RS
752 OPT_S_ENUM,
753 OPT_V_ENUM,
5561419a 754 OPT_X_ENUM
7e1b7485
RS
755} OPTION_CHOICE;
756
44c83ebd 757const OPTIONS s_server_options[] = {
7e1b7485 758 {"help", OPT_HELP, '-', "Display this summary"},
32eabe34
MR
759 {"port", OPT_PORT, 'p',
760 "TCP/IP port to listen on for connections (default is " PORT ")"},
ab69ac00 761 {"accept", OPT_ACCEPT, 's',
a22f9c84 762 "TCP/IP optional host and port to listen on for connections (default is *:" PORT ")"},
ab69ac00 763#ifdef AF_UNIX
7e1b7485 764 {"unix", OPT_UNIX, 's', "Unix domain socket to accept on"},
ab69ac00
RL
765#endif
766 {"4", OPT_4, '-', "Use IPv4 only"},
767 {"6", OPT_6, '-', "Use IPv6 only"},
32eabe34 768#ifdef AF_UNIX
7e1b7485 769 {"unlink", OPT_UNLINK, '-', "For -unix, unlink existing socket first"},
32eabe34 770#endif
7e1b7485
RS
771 {"context", OPT_CONTEXT, 's', "Set session ID context"},
772 {"verify", OPT_VERIFY, 'n', "Turn on peer certificate verification"},
773 {"Verify", OPT_UPPER_V_VERIFY, 'n',
774 "Turn on peer certificate verification, must have a cert"},
775 {"cert", OPT_CERT, '<', "Certificate file to use; default is " TEST_CERT},
a7c04f2b 776 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
ceab33e2 777 {"naccept", OPT_NACCEPT, 'p', "Terminate after #num connections"},
7e1b7485
RS
778 {"serverinfo", OPT_SERVERINFO, 's',
779 "PEM serverinfo file for certificate"},
7e1b7485
RS
780 {"certform", OPT_CERTFORM, 'F',
781 "Certificate format (PEM or DER) PEM default"},
782 {"key", OPT_KEY, '<',
783 "Private Key if not in -cert; default is " TEST_CERT},
784 {"keyform", OPT_KEYFORM, 'f',
785 "Key format (PEM, DER or ENGINE) PEM default"},
786 {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
787 {"dcert", OPT_DCERT, '<',
788 "Second certificate file to use (usually for DSA)"},
789 {"dcertform", OPT_DCERTFORM, 'F',
790 "Second certificate format (PEM or DER) PEM default"},
791 {"dkey", OPT_DKEY, '<',
792 "Second private key file to use (usually for DSA)"},
793 {"dkeyform", OPT_DKEYFORM, 'F',
794 "Second key format (PEM, DER or ENGINE) PEM default"},
795 {"dpass", OPT_DPASS, 's', "Second private key file pass phrase source"},
7e1b7485
RS
796 {"nbio_test", OPT_NBIO_TEST, '-', "Test with the non-blocking test bio"},
797 {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
798 {"debug", OPT_DEBUG, '-', "Print more output"},
799 {"msg", OPT_MSG, '-', "Show protocol messages"},
32eabe34
MR
800 {"msgfile", OPT_MSGFILE, '>',
801 "File to send output of -msg or -trace, instead of stdout"},
7e1b7485 802 {"state", OPT_STATE, '-', "Print the SSL states"},
7e1b7485 803 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
2b6bcb70
MC
804 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
805 {"no-CAfile", OPT_NOCAFILE, '-',
806 "Do not load the default certificates file"},
807 {"no-CApath", OPT_NOCAPATH, '-',
808 "Do not load certificates from the default certificates directory"},
7e1b7485
RS
809 {"nocert", OPT_NOCERT, '-', "Don't use any certificates (Anon-DH)"},
810 {"quiet", OPT_QUIET, '-', "No server output"},
7e1b7485
RS
811 {"no_resume_ephemeral", OPT_NO_RESUME_EPHEMERAL, '-',
812 "Disable caching and tickets if ephemeral (EC)DH is used"},
813 {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
814 {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
7e1b7485
RS
815 {"servername", OPT_SERVERNAME, 's',
816 "Servername for HostName TLS extension"},
817 {"servername_fatal", OPT_SERVERNAME_FATAL, '-',
818 "mismatch send fatal alert (default warning alert)"},
819 {"cert2", OPT_CERT2, '<',
820 "Certificate file to use for servername; default is" TEST_CERT2},
821 {"key2", OPT_KEY2, '<',
822 "-Private Key file to use for servername if not in -cert2"},
823 {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
824 "Hex dump of all TLS extensions received"},
ceab33e2 825 {"HTTP", OPT_HTTP, '-', "Like -WWW but ./path includes HTTP headers"},
9c3bcfa0
RS
826 {"id_prefix", OPT_ID_PREFIX, 's',
827 "Generate SSL/TLS session IDs prefixed by arg"},
828 {"rand", OPT_RAND, 's',
829 "Load the file(s) into the random number generator"},
7e1b7485
RS
830 {"keymatexport", OPT_KEYMATEXPORT, 's',
831 "Export keying material using label"},
832 {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
833 "Export len bytes of keying material (default 20)"},
32eabe34
MR
834 {"CRL", OPT_CRL, '<', "CRL file to use"},
835 {"crl_download", OPT_CRL_DOWNLOAD, '-',
836 "Download CRL from distribution points"},
837 {"cert_chain", OPT_CERT_CHAIN, '<',
838 "certificate chain file in PEM format"},
839 {"dcert_chain", OPT_DCERT_CHAIN, '<',
840 "second certificate chain file in PEM format"},
841 {"chainCApath", OPT_CHAINCAPATH, '/',
842 "use dir as certificate store path to build CA certificate chain"},
843 {"verifyCApath", OPT_VERIFYCAPATH, '/',
844 "use dir as certificate store path to verify CA certificate"},
845 {"no_cache", OPT_NO_CACHE, '-', "Disable session cache"},
846 {"ext_cache", OPT_EXT_CACHE, '-',
847 "Disable internal cache, setup and use external cache"},
d6073e27 848 {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
32eabe34
MR
849 {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
850 "Close connection on verification error"},
851 {"verify_quiet", OPT_VERIFY_QUIET, '-',
852 "No verify output except verify errors"},
853 {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
854 {"chainCAfile", OPT_CHAINCAFILE, '<',
855 "CA file for certificate chain (PEM format)"},
856 {"verifyCAfile", OPT_VERIFYCAFILE, '<',
857 "CA file for certificate verification (PEM format)"},
858 {"ign_eof", OPT_IGN_EOF, '-', "ignore input eof (default when -quiet)"},
859 {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Do not ignore input eof"},
3e41ac35 860#ifndef OPENSSL_NO_OCSP
32eabe34
MR
861 {"status", OPT_STATUS, '-', "Request certificate status from server"},
862 {"status_verbose", OPT_STATUS_VERBOSE, '-',
863 "Print more output in certificate status callback"},
864 {"status_timeout", OPT_STATUS_TIMEOUT, 'n',
865 "Status request responder timeout"},
866 {"status_url", OPT_STATUS_URL, 's', "Status request fallback URL"},
acf65ae5
MC
867 {"status_file", OPT_STATUS_FILE, '<',
868 "File containing DER encoded OCSP Response"},
3e41ac35 869#endif
32eabe34
MR
870#ifndef OPENSSL_NO_SSL_TRACE
871 {"trace", OPT_TRACE, '-', "trace protocol messages"},
872#endif
873 {"security_debug", OPT_SECURITY_DEBUG, '-',
874 "Print output from SSL/TLS security framework"},
875 {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
876 "Print more output from SSL/TLS security framework"},
d6073e27 877 {"brief", OPT_BRIEF, '-',
32eabe34
MR
878 "Restrict output to brief summary of connection parameters"},
879 {"rev", OPT_REV, '-',
880 "act as a simple test server which just sends back with the received text reversed"},
7e25dd6d 881 {"async", OPT_ASYNC, '-', "Operate in asynchronous mode"},
d6073e27 882 {"ssl_config", OPT_SSL_CONFIG, 's',
32eabe34 883 "Configure SSL_CTX using the configuration 'val'"},
28e5ea88 884 {"max_send_frag", OPT_MAX_SEND_FRAG, 'p', "Maximum Size of send frames "},
36b2cfb1 885 {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p',
0df80881 886 "Size used to split data for encrypt pipelines"},
36b2cfb1 887 {"max_pipelines", OPT_MAX_PIPELINES, 'p',
032c6d21 888 "Maximum number of encrypt/decrypt pipelines to be used"},
36b2cfb1 889 {"read_buf", OPT_READ_BUF, 'p',
dad78fb1 890 "Default read buffer size to be used for connections"},
7e1b7485
RS
891 OPT_S_OPTIONS,
892 OPT_V_OPTIONS,
893 OPT_X_OPTIONS,
9c3bcfa0 894 {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
9c3bcfa0 895#ifndef OPENSSL_NO_PSK
720b6cbe 896 {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity to expect"},
9c3bcfa0
RS
897 {"psk_hint", OPT_PSK_HINT, 's', "PSK identity hint to use"},
898 {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
9c3bcfa0 899#endif
df894947 900 {"psk_session", OPT_PSK_SESS, '<', "File to read PSK SSL session from"},
9c3bcfa0
RS
901#ifndef OPENSSL_NO_SRP
902 {"srpvfile", OPT_SRPVFILE, '<', "The verifier file for SRP"},
903 {"srpuserseed", OPT_SRPUSERSEED, 's',
904 "A seed string for a default user salt"},
905#endif
906#ifndef OPENSSL_NO_SSL3
907 {"ssl3", OPT_SSL3, '-', "Just talk SSLv3"},
908#endif
6b01bed2
VD
909#ifndef OPENSSL_NO_TLS1
910 {"tls1", OPT_TLS1, '-', "Just talk TLSv1"},
911#endif
912#ifndef OPENSSL_NO_TLS1_1
913 {"tls1_1", OPT_TLS1_1, '-', "Just talk TLSv1.1"},
914#endif
915#ifndef OPENSSL_NO_TLS1_2
916 {"tls1_2", OPT_TLS1_2, '-', "just talk TLSv1.2"},
917#endif
582a17d6
MC
918#ifndef OPENSSL_NO_TLS1_3
919 {"tls1_3", OPT_TLS1_3, '-', "just talk TLSv1.3"},
920#endif
a5ecdc6a 921#ifndef OPENSSL_NO_DTLS
32eabe34 922 {"dtls", OPT_DTLS, '-', "Use any DTLS version"},
9c3bcfa0
RS
923 {"timeout", OPT_TIMEOUT, '-', "Enable timeouts"},
924 {"mtu", OPT_MTU, 'p', "Set link layer MTU"},
fd4e98ec
MC
925 {"listen", OPT_LISTEN, '-',
926 "Listen for a DTLS ClientHello with a cookie and then connect"},
9c3bcfa0 927#endif
6b01bed2
VD
928#ifndef OPENSSL_NO_DTLS1
929 {"dtls1", OPT_DTLS1, '-', "Just talk DTLSv1"},
930#endif
931#ifndef OPENSSL_NO_DTLS1_2
932 {"dtls1_2", OPT_DTLS1_2, '-', "Just talk DTLSv1.2"},
933#endif
72d0bc84
MC
934#ifndef OPENSSL_NO_SCTP
935 {"sctp", OPT_SCTP, '-', "Use SCTP"},
936#endif
9c3bcfa0
RS
937#ifndef OPENSSL_NO_DH
938 {"no_dhe", OPT_NO_DHE, '-', "Disable ephemeral DH"},
939#endif
9c3bcfa0
RS
940#ifndef OPENSSL_NO_NEXTPROTONEG
941 {"nextprotoneg", OPT_NEXTPROTONEG, 's',
942 "Set the advertised protocols for the NPN extension (comma-separated list)"},
943#endif
944#ifndef OPENSSL_NO_SRTP
e77bdc73 945 {"use_srtp", OPT_SRTP_PROFILES, 's',
9c3bcfa0 946 "Offer SRTP key management with a colon-separated profile list"},
b07c703f 947#endif
9c3bcfa0
RS
948 {"alpn", OPT_ALPN, 's',
949 "Set the advertised protocols for the ALPN extension (comma-separated list)"},
9c3bcfa0 950#ifndef OPENSSL_NO_ENGINE
32eabe34 951 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
9c3bcfa0 952#endif
4bf73e9f 953 {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
6746648c 954 {"max_early_data", OPT_MAX_EARLY, 'n',
048b1893 955 "The maximum number of bytes of early data"},
e0655186 956 {"early_data", OPT_EARLY_DATA, '-', "Attempt to read early data"},
bde136c8 957 {NULL, OPT_EOF, 0, NULL}
7e1b7485
RS
958};
959
4bbd4ba6
MC
960#define IS_PROT_FLAG(o) \
961 (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
582a17d6 962 || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
4bbd4ba6 963
7e1b7485 964int s_server_main(int argc, char *argv[])
0f113f3e 965{
bde136c8 966 ENGINE *engine = NULL;
7e1b7485
RS
967 EVP_PKEY *s_key = NULL, *s_dkey = NULL;
968 SSL_CONF_CTX *cctx = NULL;
32ec4153 969 const SSL_METHOD *meth = TLS_server_method();
7e1b7485
RS
970 SSL_EXCERT *exc = NULL;
971 STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
972 STACK_OF(X509) *s_chain = NULL, *s_dchain = NULL;
973 STACK_OF(X509_CRL) *crls = NULL;
974 X509 *s_cert = NULL, *s_dcert = NULL;
0f113f3e 975 X509_VERIFY_PARAM *vpm = NULL;
cc696296 976 const char *CApath = NULL, *CAfile = NULL, *chCApath = NULL, *chCAfile = NULL;
37f3a3b3 977 char *dpassarg = NULL, *dpass = NULL, *inrand = NULL;
7e1b7485 978 char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
a7f82a1a 979 char *crl_file = NULL, *prog;
ab69ac00 980#ifdef AF_UNIX
0f113f3e
MC
981 int unlink_unix_path = 0;
982#endif
a773b52a 983 do_server_cb server_cb;
7e1b7485 984 int vpmtouched = 0, build_chain = 0, no_cache = 0, ext_cache = 0;
37f3a3b3 985#ifndef OPENSSL_NO_DH
54463e4f 986 char *dhfile = NULL;
37f3a3b3
DSH
987 int no_dhe = 0;
988#endif
8caab744 989 int nocert = 0, ret = 1;
2b6bcb70 990 int noCApath = 0, noCAfile = 0;
0f113f3e 991 int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM;
0f113f3e 992 int s_dcert_format = FORMAT_PEM, s_dkey_format = FORMAT_PEM;
ab69ac00 993 int rev = 0, naccept = -1, sdebug = 0;
72d0bc84 994 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0;
7e1b7485 995 int state = 0, crl_format = FORMAT_PEM, crl_download = 0;
ab69ac00
RL
996 char *host = NULL;
997 char *port = BUF_strdup(PORT);
7e1b7485
RS
998 unsigned char *context = NULL;
999 OPTION_CHOICE o;
0f113f3e
MC
1000 EVP_PKEY *s_key2 = NULL;
1001 X509 *s_cert2 = NULL;
1002 tlsextctx tlsextcbp = { NULL, NULL, SSL_TLSEXT_ERR_ALERT_WARNING };
287d0b94 1003 const char *ssl_config = NULL;
dad78fb1 1004 int read_buf_len = 0;
e481f9b9 1005#ifndef OPENSSL_NO_NEXTPROTONEG
0f113f3e
MC
1006 const char *next_proto_neg_in = NULL;
1007 tlsextnextprotoctx next_proto = { NULL, 0 };
e481f9b9 1008#endif
0f113f3e
MC
1009 const char *alpn_in = NULL;
1010 tlsextalpnctx alpn_ctx = { NULL, 0 };
ddac1974 1011#ifndef OPENSSL_NO_PSK
0f113f3e 1012 /* by default do not send a PSK identity hint */
f2ff1432 1013 char *psk_identity_hint = NULL;
54463e4f 1014 char *p;
ddac1974 1015#endif
edc032b5 1016#ifndef OPENSSL_NO_SRP
0f113f3e
MC
1017 char *srpuserseed = NULL;
1018 char *srp_verifier_file = NULL;
edc032b5 1019#endif
4bbd4ba6 1020 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
54463e4f
F
1021 int s_server_verify = SSL_VERIFY_NONE;
1022 int s_server_session_id_context = 1; /* anything will do */
1023 const char *s_cert_file = TEST_CERT, *s_key_file = NULL, *s_chain_file = NULL;
1024 const char *s_cert_file2 = TEST_CERT2, *s_key_file2 = NULL;
1025 char *s_dcert_file = NULL, *s_dkey_file = NULL, *s_dchain_file = NULL;
057c676a
RL
1026#ifndef OPENSSL_NO_OCSP
1027 int s_tlsextstatus = 0;
1028#endif
1029 int no_resume_ephemeral = 0;
28e5ea88 1030 unsigned int max_send_fragment = 0;
54463e4f
F
1031 unsigned int split_send_fragment = 0, max_pipelines = 0;
1032 const char *s_serverinfo_file = NULL;
4bf73e9f 1033 const char *keylog_file = NULL;
6746648c 1034 int max_early_data = -1;
df894947 1035 char *psksessf = NULL;
54463e4f
F
1036
1037 /* Init of few remaining global variables */
0f113f3e
MC
1038 local_argc = argc;
1039 local_argv = argv;
d02b48c6 1040
54463e4f
F
1041 ctx = ctx2 = NULL;
1042 s_nbio = s_nbio_test = 0;
1043 www = 0;
1044 bio_s_out = NULL;
1045 s_debug = 0;
1046 s_msg = 0;
1047 s_quiet = 0;
1048 s_brief = 0;
1049 async = 0;
1050
0f113f3e 1051 cctx = SSL_CONF_CTX_new();
7e1b7485
RS
1052 vpm = X509_VERIFY_PARAM_new();
1053 if (cctx == NULL || vpm == NULL)
0f113f3e 1054 goto end;
d6073e27
F
1055 SSL_CONF_CTX_set_flags(cctx,
1056 SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CMDLINE);
7e1b7485
RS
1057
1058 prog = opt_init(argc, argv, s_server_options);
1059 while ((o = opt_next()) != OPT_EOF) {
4bbd4ba6
MC
1060 if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
1061 BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
1062 goto end;
1063 }
1064 if (IS_NO_PROT_FLAG(o))
1065 no_prot_opt++;
1066 if (prot_opt == 1 && no_prot_opt) {
d6073e27
F
1067 BIO_printf(bio_err,
1068 "Cannot supply both a protocol flag and '-no_<prot>'\n");
4bbd4ba6
MC
1069 goto end;
1070 }
7e1b7485
RS
1071 switch (o) {
1072 case OPT_EOF:
1073 case OPT_ERR:
1074 opthelp:
1075 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1076 goto end;
1077 case OPT_HELP:
1078 opt_help(s_server_options);
1079 ret = 0;
1080 goto end;
0f113f3e 1081
ab69ac00
RL
1082 case OPT_4:
1083#ifdef AF_UNIX
1084 if (socket_family == AF_UNIX) {
1085 OPENSSL_free(host); host = NULL;
1086 OPENSSL_free(port); port = NULL;
1087 }
1088#endif
1089 socket_family = AF_INET;
1090 break;
1091 case OPT_6:
1092 if (1) {
1093#ifdef AF_INET6
1094#ifdef AF_UNIX
1095 if (socket_family == AF_UNIX) {
1096 OPENSSL_free(host); host = NULL;
1097 OPENSSL_free(port); port = NULL;
1098 }
1099#endif
1100 socket_family = AF_INET6;
1101 } else {
1102#endif
1103 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
1104 goto end;
1105 }
1106 break;
7e1b7485 1107 case OPT_PORT:
ab69ac00
RL
1108#ifdef AF_UNIX
1109 if (socket_family == AF_UNIX) {
1110 socket_family = AF_UNSPEC;
1111 }
1112#endif
1113 OPENSSL_free(port); port = NULL;
1114 OPENSSL_free(host); host = NULL;
1115 if (BIO_parse_hostserv(opt_arg(), NULL, &port, BIO_PARSE_PRIO_SERV) < 1) {
1116 BIO_printf(bio_err,
1117 "%s: -port argument malformed or ambiguous\n",
1118 port);
1119 goto end;
1120 }
1121 break;
1122 case OPT_ACCEPT:
1123#ifdef AF_UNIX
1124 if (socket_family == AF_UNIX) {
1125 socket_family = AF_UNSPEC;
1126 }
1127#endif
1128 OPENSSL_free(port); port = NULL;
1129 OPENSSL_free(host); host = NULL;
1130 if (BIO_parse_hostserv(opt_arg(), &host, &port, BIO_PARSE_PRIO_SERV) < 1) {
1131 BIO_printf(bio_err,
1132 "%s: -accept argument malformed or ambiguous\n",
1133 port);
7e1b7485 1134 goto end;
ab69ac00 1135 }
7e1b7485 1136 break;
ab69ac00 1137#ifdef AF_UNIX
7e1b7485 1138 case OPT_UNIX:
ab69ac00
RL
1139 socket_family = AF_UNIX;
1140 OPENSSL_free(host); host = BUF_strdup(opt_arg());
1141 OPENSSL_free(port); port = NULL;
7e1b7485
RS
1142 break;
1143 case OPT_UNLINK:
0f113f3e 1144 unlink_unix_path = 1;
7e1b7485 1145 break;
ab69ac00 1146#endif
7e1b7485
RS
1147 case OPT_NACCEPT:
1148 naccept = atol(opt_arg());
1149 break;
1150 case OPT_VERIFY:
0f113f3e 1151 s_server_verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
acc00492 1152 verify_args.depth = atoi(opt_arg());
0f113f3e 1153 if (!s_quiet)
acc00492 1154 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
7e1b7485
RS
1155 break;
1156 case OPT_UPPER_V_VERIFY:
0f113f3e
MC
1157 s_server_verify =
1158 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1159 SSL_VERIFY_CLIENT_ONCE;
acc00492 1160 verify_args.depth = atoi(opt_arg());
0f113f3e
MC
1161 if (!s_quiet)
1162 BIO_printf(bio_err,
1163 "verify depth is %d, must return a certificate\n",
acc00492 1164 verify_args.depth);
7e1b7485
RS
1165 break;
1166 case OPT_CONTEXT:
1167 context = (unsigned char *)opt_arg();
1168 break;
1169 case OPT_CERT:
1170 s_cert_file = opt_arg();
1171 break;
a7c04f2b
DB
1172 case OPT_NAMEOPT:
1173 if (!set_nameopt(opt_arg()))
1174 goto end;
1175 break;
7e1b7485
RS
1176 case OPT_CRL:
1177 crl_file = opt_arg();
1178 break;
1179 case OPT_CRL_DOWNLOAD:
0f113f3e 1180 crl_download = 1;
7e1b7485 1181 break;
7e1b7485
RS
1182 case OPT_SERVERINFO:
1183 s_serverinfo_file = opt_arg();
1184 break;
7e1b7485
RS
1185 case OPT_CERTFORM:
1186 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_cert_format))
1187 goto opthelp;
1188 break;
1189 case OPT_KEY:
1190 s_key_file = opt_arg();
1191 break;
1192 case OPT_KEYFORM:
1193 if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_key_format))
1194 goto opthelp;
1195 break;
1196 case OPT_PASS:
1197 passarg = opt_arg();
1198 break;
1199 case OPT_CERT_CHAIN:
1200 s_chain_file = opt_arg();
1201 break;
1202 case OPT_DHPARAM:
37f3a3b3 1203#ifndef OPENSSL_NO_DH
7e1b7485 1204 dhfile = opt_arg();
37f3a3b3 1205#endif
7e1b7485
RS
1206 break;
1207 case OPT_DCERTFORM:
1208 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dcert_format))
1209 goto opthelp;
1210 break;
1211 case OPT_DCERT:
1212 s_dcert_file = opt_arg();
1213 break;
1214 case OPT_DKEYFORM:
1215 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dkey_format))
1216 goto opthelp;
1217 break;
1218 case OPT_DPASS:
1219 dpassarg = opt_arg();
1220 break;
1221 case OPT_DKEY:
1222 s_dkey_file = opt_arg();
1223 break;
1224 case OPT_DCERT_CHAIN:
1225 s_dchain_file = opt_arg();
1226 break;
1227 case OPT_NOCERT:
0f113f3e 1228 nocert = 1;
7e1b7485
RS
1229 break;
1230 case OPT_CAPATH:
1231 CApath = opt_arg();
1232 break;
2b6bcb70
MC
1233 case OPT_NOCAPATH:
1234 noCApath = 1;
1235 break;
7e1b7485
RS
1236 case OPT_CHAINCAPATH:
1237 chCApath = opt_arg();
1238 break;
1239 case OPT_VERIFYCAPATH:
1240 vfyCApath = opt_arg();
1241 break;
1242 case OPT_NO_CACHE:
0f113f3e 1243 no_cache = 1;
7e1b7485
RS
1244 break;
1245 case OPT_EXT_CACHE:
0f113f3e 1246 ext_cache = 1;
7e1b7485
RS
1247 break;
1248 case OPT_CRLFORM:
1249 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1250 goto opthelp;
1251 break;
1252 case OPT_S_CASES:
1253 if (ssl_args == NULL)
1254 ssl_args = sk_OPENSSL_STRING_new_null();
1255 if (ssl_args == NULL
1256 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1257 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1258 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1259 goto end;
1260 }
1261 break;
1262 case OPT_V_CASES:
1263 if (!opt_verify(o, vpm))
1264 goto end;
1265 vpmtouched++;
1266 break;
1267 case OPT_X_CASES:
1268 if (!args_excert(o, &exc))
1269 goto end;
1270 break;
1271 case OPT_VERIFY_RET_ERROR:
acc00492 1272 verify_args.return_error = 1;
7e1b7485
RS
1273 break;
1274 case OPT_VERIFY_QUIET:
acc00492 1275 verify_args.quiet = 1;
7e1b7485
RS
1276 break;
1277 case OPT_BUILD_CHAIN:
0f113f3e 1278 build_chain = 1;
7e1b7485
RS
1279 break;
1280 case OPT_CAFILE:
1281 CAfile = opt_arg();
1282 break;
2b6bcb70
MC
1283 case OPT_NOCAFILE:
1284 noCAfile = 1;
1285 break;
7e1b7485
RS
1286 case OPT_CHAINCAFILE:
1287 chCAfile = opt_arg();
1288 break;
1289 case OPT_VERIFYCAFILE:
1290 vfyCAfile = opt_arg();
1291 break;
1292 case OPT_NBIO:
0f113f3e 1293 s_nbio = 1;
7e1b7485
RS
1294 break;
1295 case OPT_NBIO_TEST:
1296 s_nbio = s_nbio_test = 1;
1297 break;
1298 case OPT_IGN_EOF:
0f113f3e 1299 s_ign_eof = 1;
7e1b7485
RS
1300 break;
1301 case OPT_NO_IGN_EOF:
0f113f3e 1302 s_ign_eof = 0;
7e1b7485
RS
1303 break;
1304 case OPT_DEBUG:
0f113f3e 1305 s_debug = 1;
7e1b7485 1306 break;
7e1b7485 1307 case OPT_TLSEXTDEBUG:
0f113f3e 1308 s_tlsextdebug = 1;
7e1b7485
RS
1309 break;
1310 case OPT_STATUS:
057c676a 1311#ifndef OPENSSL_NO_OCSP
0f113f3e 1312 s_tlsextstatus = 1;
057c676a 1313#endif
7e1b7485
RS
1314 break;
1315 case OPT_STATUS_VERBOSE:
057c676a 1316#ifndef OPENSSL_NO_OCSP
7e1b7485 1317 s_tlsextstatus = tlscstatp.verbose = 1;
057c676a 1318#endif
7e1b7485
RS
1319 break;
1320 case OPT_STATUS_TIMEOUT:
057c676a 1321#ifndef OPENSSL_NO_OCSP
0f113f3e 1322 s_tlsextstatus = 1;
7e1b7485 1323 tlscstatp.timeout = atoi(opt_arg());
057c676a 1324#endif
7e1b7485
RS
1325 break;
1326 case OPT_STATUS_URL:
3e41ac35 1327#ifndef OPENSSL_NO_OCSP
0f113f3e 1328 s_tlsextstatus = 1;
7e1b7485 1329 if (!OCSP_parse_url(opt_arg(),
0f113f3e
MC
1330 &tlscstatp.host,
1331 &tlscstatp.port,
1332 &tlscstatp.path, &tlscstatp.use_ssl)) {
1333 BIO_printf(bio_err, "Error parsing URL\n");
7e1b7485 1334 goto end;
0f113f3e 1335 }
acf65ae5
MC
1336#endif
1337 break;
1338 case OPT_STATUS_FILE:
1339#ifndef OPENSSL_NO_OCSP
1340 s_tlsextstatus = 1;
1341 tlscstatp.respin = opt_arg();
3e41ac35 1342#endif
7e1b7485 1343 break;
7e1b7485 1344 case OPT_MSG:
0f113f3e 1345 s_msg = 1;
7e1b7485
RS
1346 break;
1347 case OPT_MSGFILE:
1348 bio_s_msg = BIO_new_file(opt_arg(), "w");
1349 break;
7e1b7485 1350 case OPT_TRACE:
9c3bcfa0 1351#ifndef OPENSSL_NO_SSL_TRACE
0f113f3e 1352 s_msg = 2;
0f113f3e 1353#endif
1c03c81f 1354 break;
7e1b7485 1355 case OPT_SECURITY_DEBUG:
0f113f3e 1356 sdebug = 1;
7e1b7485
RS
1357 break;
1358 case OPT_SECURITY_DEBUG_VERBOSE:
0f113f3e 1359 sdebug = 2;
7e1b7485
RS
1360 break;
1361 case OPT_STATE:
0f113f3e 1362 state = 1;
7e1b7485
RS
1363 break;
1364 case OPT_CRLF:
0f113f3e 1365 s_crlf = 1;
7e1b7485
RS
1366 break;
1367 case OPT_QUIET:
0f113f3e 1368 s_quiet = 1;
7e1b7485
RS
1369 break;
1370 case OPT_BRIEF:
acc00492 1371 s_quiet = s_brief = verify_args.quiet = 1;
7e1b7485 1372 break;
7e1b7485 1373 case OPT_NO_DHE:
37f3a3b3 1374#ifndef OPENSSL_NO_DH
0f113f3e 1375 no_dhe = 1;
37f3a3b3 1376#endif
7e1b7485 1377 break;
7e1b7485 1378 case OPT_NO_RESUME_EPHEMERAL:
0f113f3e 1379 no_resume_ephemeral = 1;
7e1b7485 1380 break;
720b6cbe
DKG
1381 case OPT_PSK_IDENTITY:
1382#ifndef OPENSSL_NO_PSK
1383 psk_identity = opt_arg();
1384#endif
1385 break;
7e1b7485 1386 case OPT_PSK_HINT:
6b01bed2 1387#ifndef OPENSSL_NO_PSK
7e1b7485 1388 psk_identity_hint = opt_arg();
6b01bed2 1389#endif
7e1b7485
RS
1390 break;
1391 case OPT_PSK:
6b01bed2 1392#ifndef OPENSSL_NO_PSK
7e1b7485 1393 for (p = psk_key = opt_arg(); *p; p++) {
18295f0c 1394 if (isxdigit(_UC(*p)))
0f113f3e
MC
1395 continue;
1396 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
7e1b7485 1397 goto end;
0f113f3e 1398 }
edc032b5 1399#endif
6b01bed2 1400 break;
df894947
MC
1401 case OPT_PSK_SESS:
1402 psksessf = opt_arg();
1403 break;
7e1b7485 1404 case OPT_SRPVFILE:
6b01bed2 1405#ifndef OPENSSL_NO_SRP
7e1b7485 1406 srp_verifier_file = opt_arg();
0d5301af
KR
1407 if (min_version < TLS1_VERSION)
1408 min_version = TLS1_VERSION;
6b01bed2 1409#endif
7e1b7485
RS
1410 break;
1411 case OPT_SRPUSERSEED:
6b01bed2 1412#ifndef OPENSSL_NO_SRP
7e1b7485 1413 srpuserseed = opt_arg();
0d5301af
KR
1414 if (min_version < TLS1_VERSION)
1415 min_version = TLS1_VERSION;
0f113f3e 1416#endif
6b01bed2 1417 break;
7e1b7485 1418 case OPT_REV:
0f113f3e 1419 rev = 1;
7e1b7485
RS
1420 break;
1421 case OPT_WWW:
0f113f3e 1422 www = 1;
7e1b7485
RS
1423 break;
1424 case OPT_UPPER_WWW:
0f113f3e 1425 www = 2;
7e1b7485
RS
1426 break;
1427 case OPT_HTTP:
0f113f3e 1428 www = 3;
7e1b7485 1429 break;
287d0b94
DSH
1430 case OPT_SSL_CONFIG:
1431 ssl_config = opt_arg();
1432 break;
7e1b7485 1433 case OPT_SSL3:
0d5301af
KR
1434 min_version = SSL3_VERSION;
1435 max_version = SSL3_VERSION;
9c3bcfa0 1436 break;
582a17d6
MC
1437 case OPT_TLS1_3:
1438 min_version = TLS1_3_VERSION;
1439 max_version = TLS1_3_VERSION;
1440 break;
7e1b7485 1441 case OPT_TLS1_2:
0d5301af
KR
1442 min_version = TLS1_2_VERSION;
1443 max_version = TLS1_2_VERSION;
7e1b7485
RS
1444 break;
1445 case OPT_TLS1_1:
0d5301af
KR
1446 min_version = TLS1_1_VERSION;
1447 max_version = TLS1_1_VERSION;
7e1b7485
RS
1448 break;
1449 case OPT_TLS1:
0d5301af
KR
1450 min_version = TLS1_VERSION;
1451 max_version = TLS1_VERSION;
7e1b7485 1452 break;
7e1b7485 1453 case OPT_DTLS:
6b01bed2 1454#ifndef OPENSSL_NO_DTLS
4407d070 1455 meth = DTLS_server_method();
0f113f3e 1456 socket_type = SOCK_DGRAM;
6b01bed2 1457#endif
7e1b7485
RS
1458 break;
1459 case OPT_DTLS1:
0d5301af
KR
1460#ifndef OPENSSL_NO_DTLS
1461 meth = DTLS_server_method();
1462 min_version = DTLS1_VERSION;
1463 max_version = DTLS1_VERSION;
0f113f3e 1464 socket_type = SOCK_DGRAM;
6b01bed2 1465#endif
7e1b7485
RS
1466 break;
1467 case OPT_DTLS1_2:
0d5301af
KR
1468#ifndef OPENSSL_NO_DTLS
1469 meth = DTLS_server_method();
1470 min_version = DTLS1_2_VERSION;
1471 max_version = DTLS1_2_VERSION;
0f113f3e 1472 socket_type = SOCK_DGRAM;
72d0bc84
MC
1473#endif
1474 break;
1475 case OPT_SCTP:
1476#ifndef OPENSSL_NO_SCTP
1477 protocol = IPPROTO_SCTP;
6b01bed2 1478#endif
7e1b7485
RS
1479 break;
1480 case OPT_TIMEOUT:
6b01bed2 1481#ifndef OPENSSL_NO_DTLS
0f113f3e 1482 enable_timeouts = 1;
6b01bed2 1483#endif
7e1b7485
RS
1484 break;
1485 case OPT_MTU:
6b01bed2 1486#ifndef OPENSSL_NO_DTLS
7e1b7485 1487 socket_mtu = atol(opt_arg());
6b01bed2 1488#endif
7e1b7485 1489 break;
fd4e98ec 1490 case OPT_LISTEN:
6b01bed2 1491#ifndef OPENSSL_NO_DTLS
fd4e98ec 1492 dtlslisten = 1;
0f113f3e 1493#endif
6b01bed2 1494 break;
7e1b7485
RS
1495 case OPT_ID_PREFIX:
1496 session_id_prefix = opt_arg();
1497 break;
1498 case OPT_ENGINE:
bde136c8 1499 engine = setup_engine(opt_arg(), 1);
7e1b7485
RS
1500 break;
1501 case OPT_RAND:
1502 inrand = opt_arg();
1503 break;
7e1b7485
RS
1504 case OPT_SERVERNAME:
1505 tlsextcbp.servername = opt_arg();
1506 break;
1507 case OPT_SERVERNAME_FATAL:
0f113f3e 1508 tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
7e1b7485
RS
1509 break;
1510 case OPT_CERT2:
1511 s_cert_file2 = opt_arg();
1512 break;
1513 case OPT_KEY2:
1514 s_key_file2 = opt_arg();
1515 break;
7e1b7485 1516 case OPT_NEXTPROTONEG:
9c3bcfa0 1517# ifndef OPENSSL_NO_NEXTPROTONEG
7e1b7485 1518 next_proto_neg_in = opt_arg();
e481f9b9 1519#endif
9c3bcfa0 1520 break;
7e1b7485
RS
1521 case OPT_ALPN:
1522 alpn_in = opt_arg();
1523 break;
7e1b7485 1524 case OPT_SRTP_PROFILES:
d6316025 1525#ifndef OPENSSL_NO_SRTP
7e1b7485 1526 srtp_profiles = opt_arg();
b07c703f 1527#endif
d6316025 1528 break;
7e1b7485
RS
1529 case OPT_KEYMATEXPORT:
1530 keymatexportlabel = opt_arg();
1531 break;
1532 case OPT_KEYMATEXPORTLEN:
1533 keymatexportlen = atoi(opt_arg());
0f113f3e 1534 break;
7e25dd6d
MC
1535 case OPT_ASYNC:
1536 async = 1;
1537 break;
28e5ea88
F
1538 case OPT_MAX_SEND_FRAG:
1539 max_send_fragment = atoi(opt_arg());
28e5ea88 1540 break;
032c6d21
MC
1541 case OPT_SPLIT_SEND_FRAG:
1542 split_send_fragment = atoi(opt_arg());
032c6d21
MC
1543 break;
1544 case OPT_MAX_PIPELINES:
1545 max_pipelines = atoi(opt_arg());
1546 break;
dad78fb1
MC
1547 case OPT_READ_BUF:
1548 read_buf_len = atoi(opt_arg());
1549 break;
4bf73e9f
PW
1550 case OPT_KEYLOG_FILE:
1551 keylog_file = opt_arg();
1552 break;
048b1893
MC
1553 case OPT_MAX_EARLY:
1554 max_early_data = atoi(opt_arg());
6746648c
MC
1555 if (max_early_data < 0) {
1556 BIO_printf(bio_err, "Invalid value for max_early_data\n");
1557 goto end;
1558 }
048b1893 1559 break;
e0655186
MC
1560 case OPT_EARLY_DATA:
1561 early_data = 1;
1562 break;
0f113f3e 1563 }
0f113f3e 1564 }
7e1b7485
RS
1565 argc = opt_num_rest();
1566 argv = opt_rest();
1567
837f87c2
PY
1568#ifndef OPENSSL_NO_NEXTPROTONEG
1569 if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) {
1570 BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n");
1571 goto opthelp;
1572 }
1573#endif
a5ecdc6a 1574#ifndef OPENSSL_NO_DTLS
0f113f3e
MC
1575 if (www && socket_type == SOCK_DGRAM) {
1576 BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1577 goto end;
1578 }
fd4e98ec
MC
1579
1580 if (dtlslisten && socket_type != SOCK_DGRAM) {
1581 BIO_printf(bio_err, "Can only use -listen with DTLS\n");
1582 goto end;
1583 }
0f113f3e
MC
1584#endif
1585
ab69ac00
RL
1586#ifdef AF_UNIX
1587 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
0f113f3e
MC
1588 BIO_printf(bio_err,
1589 "Can't use unix sockets and datagrams together\n");
1590 goto end;
1591 }
ab69ac00 1592#endif
2900fc8a 1593
72d0bc84
MC
1594#ifndef OPENSSL_NO_SCTP
1595 if (protocol == IPPROTO_SCTP) {
1596 if (socket_type != SOCK_DGRAM) {
1597 BIO_printf(bio_err, "Can't use -sctp without DTLS\n");
1598 goto end;
1599 }
1600 /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */
1601 socket_type = SOCK_STREAM;
1602 }
1603#endif
032c6d21 1604
7e1b7485 1605 if (!app_passwd(passarg, dpassarg, &pass, &dpass)) {
0f113f3e
MC
1606 BIO_printf(bio_err, "Error getting password\n");
1607 goto end;
1608 }
826a42a0 1609
0f113f3e
MC
1610 if (s_key_file == NULL)
1611 s_key_file = s_cert_file;
e481f9b9 1612
0f113f3e
MC
1613 if (s_key_file2 == NULL)
1614 s_key_file2 = s_cert_file2;
ed3883d2 1615
7e1b7485 1616 if (!load_excert(&exc))
0f113f3e
MC
1617 goto end;
1618
1619 if (nocert == 0) {
bde136c8 1620 s_key = load_key(s_key_file, s_key_format, 0, pass, engine,
0f113f3e 1621 "server certificate private key file");
2234212c 1622 if (s_key == NULL) {
0f113f3e
MC
1623 ERR_print_errors(bio_err);
1624 goto end;
1625 }
826a42a0 1626
7e1b7485 1627 s_cert = load_cert(s_cert_file, s_cert_format,
a773b52a 1628 "server certificate file");
0f113f3e 1629
2234212c 1630 if (s_cert == NULL) {
0f113f3e
MC
1631 ERR_print_errors(bio_err);
1632 goto end;
1633 }
2234212c 1634 if (s_chain_file != NULL) {
a773b52a 1635 if (!load_certs(s_chain_file, &s_chain, FORMAT_PEM, NULL,
0996dc54 1636 "server certificate chain"))
0f113f3e
MC
1637 goto end;
1638 }
e481f9b9 1639
2234212c 1640 if (tlsextcbp.servername != NULL) {
bde136c8 1641 s_key2 = load_key(s_key_file2, s_key_format, 0, pass, engine,
0f113f3e 1642 "second server certificate private key file");
2234212c 1643 if (s_key2 == NULL) {
0f113f3e
MC
1644 ERR_print_errors(bio_err);
1645 goto end;
1646 }
1647
7e1b7485 1648 s_cert2 = load_cert(s_cert_file2, s_cert_format,
a773b52a 1649 "second server certificate file");
0f113f3e 1650
2234212c 1651 if (s_cert2 == NULL) {
0f113f3e
MC
1652 ERR_print_errors(bio_err);
1653 goto end;
1654 }
1655 }
0f113f3e 1656 }
e481f9b9 1657#if !defined(OPENSSL_NO_NEXTPROTONEG)
0f113f3e 1658 if (next_proto_neg_in) {
f2ff1432 1659 next_proto.data = next_protos_parse(&next_proto.len, next_proto_neg_in);
0f113f3e
MC
1660 if (next_proto.data == NULL)
1661 goto end;
0f113f3e 1662 }
e481f9b9 1663#endif
0f113f3e
MC
1664 alpn_ctx.data = NULL;
1665 if (alpn_in) {
f2ff1432 1666 alpn_ctx.data = next_protos_parse(&alpn_ctx.len, alpn_in);
0f113f3e
MC
1667 if (alpn_ctx.data == NULL)
1668 goto end;
0f113f3e 1669 }
0f113f3e 1670
2234212c 1671 if (crl_file != NULL) {
0f113f3e
MC
1672 X509_CRL *crl;
1673 crl = load_crl(crl_file, crl_format);
2234212c 1674 if (crl == NULL) {
0f113f3e
MC
1675 BIO_puts(bio_err, "Error loading CRL\n");
1676 ERR_print_errors(bio_err);
1677 goto end;
1678 }
1679 crls = sk_X509_CRL_new_null();
2234212c 1680 if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
0f113f3e
MC
1681 BIO_puts(bio_err, "Error adding CRL\n");
1682 ERR_print_errors(bio_err);
1683 X509_CRL_free(crl);
1684 goto end;
1685 }
1686 }
1687
2234212c 1688 if (s_dcert_file != NULL) {
d02b48c6 1689
0f113f3e
MC
1690 if (s_dkey_file == NULL)
1691 s_dkey_file = s_dcert_file;
1692
7e1b7485 1693 s_dkey = load_key(s_dkey_file, s_dkey_format,
bde136c8 1694 0, dpass, engine, "second certificate private key file");
2234212c 1695 if (s_dkey == NULL) {
0f113f3e
MC
1696 ERR_print_errors(bio_err);
1697 goto end;
1698 }
1699
7e1b7485 1700 s_dcert = load_cert(s_dcert_file, s_dcert_format,
a773b52a 1701 "second server certificate file");
0f113f3e 1702
2234212c 1703 if (s_dcert == NULL) {
0f113f3e
MC
1704 ERR_print_errors(bio_err);
1705 goto end;
1706 }
2234212c 1707 if (s_dchain_file != NULL) {
a773b52a 1708 if (!load_certs(s_dchain_file, &s_dchain, FORMAT_PEM, NULL,
0996dc54 1709 "second server certificate chain"))
0f113f3e
MC
1710 goto end;
1711 }
1712
1713 }
1714
7e1b7485 1715 if (!app_RAND_load_file(NULL, 1) && inrand == NULL
0f113f3e
MC
1716 && !RAND_status()) {
1717 BIO_printf(bio_err,
1718 "warning, not much extra random data, consider using the -rand option\n");
1719 }
1720 if (inrand != NULL)
1721 BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
1722 app_RAND_load_files(inrand));
1723
1724 if (bio_s_out == NULL) {
1725 if (s_quiet && !s_debug) {
1726 bio_s_out = BIO_new(BIO_s_null());
2234212c 1727 if (s_msg && bio_s_msg == NULL)
a60994df 1728 bio_s_msg = dup_bio_out(FORMAT_TEXT);
0f113f3e
MC
1729 } else {
1730 if (bio_s_out == NULL)
a60994df 1731 bio_s_out = dup_bio_out(FORMAT_TEXT);
0f113f3e
MC
1732 }
1733 }
10bf4fc2 1734#if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC)
0f113f3e 1735 if (nocert)
d02b48c6 1736#endif
0f113f3e
MC
1737 {
1738 s_cert_file = NULL;
1739 s_key_file = NULL;
1740 s_dcert_file = NULL;
1741 s_dkey_file = NULL;
0f113f3e
MC
1742 s_cert_file2 = NULL;
1743 s_key_file2 = NULL;
0f113f3e
MC
1744 }
1745
1746 ctx = SSL_CTX_new(meth);
0f113f3e
MC
1747 if (ctx == NULL) {
1748 ERR_print_errors(bio_err);
1749 goto end;
1750 }
32eabe34
MR
1751 if (sdebug)
1752 ssl_ctx_security_debug(ctx, sdebug);
287d0b94
DSH
1753 if (ssl_config) {
1754 if (SSL_CTX_config(ctx, ssl_config) == 0) {
1755 BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1756 ssl_config);
d6073e27
F
1757 ERR_print_errors(bio_err);
1758 goto end;
287d0b94
DSH
1759 }
1760 }
0d5301af
KR
1761 if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1762 goto end;
1763 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1764 goto end;
287d0b94 1765
0f113f3e
MC
1766 if (session_id_prefix) {
1767 if (strlen(session_id_prefix) >= 32)
1768 BIO_printf(bio_err,
1769 "warning: id_prefix is too long, only one new session will be possible\n");
1770 if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1771 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1772 ERR_print_errors(bio_err);
1773 goto end;
1774 }
1775 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1776 }
1777 SSL_CTX_set_quiet_shutdown(ctx, 1);
2234212c 1778 if (exc != NULL)
0f113f3e 1779 ssl_ctx_set_excert(ctx, exc);
0f113f3e
MC
1780
1781 if (state)
1782 SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1783 if (no_cache)
1784 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1785 else if (ext_cache)
1786 init_session_cache_ctx(ctx);
1787 else
1788 SSL_CTX_sess_set_cache_size(ctx, 128);
58964a49 1789
252d6d3a 1790 if (async) {
7e25dd6d 1791 SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
252d6d3a 1792 }
28e5ea88 1793
36b2cfb1
F
1794 if (max_send_fragment > 0
1795 && !SSL_CTX_set_max_send_fragment(ctx, max_send_fragment)) {
1796 BIO_printf(bio_err, "%s: Max send fragment size %u is out of permitted range\n",
1797 prog, max_send_fragment);
1798 goto end;
1799 }
28e5ea88 1800
36b2cfb1
F
1801 if (split_send_fragment > 0
1802 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1803 BIO_printf(bio_err, "%s: Split send fragment size %u is out of permitted range\n",
1804 prog, split_send_fragment);
1805 goto end;
032c6d21 1806 }
36b2cfb1
F
1807 if (max_pipelines > 0
1808 && !SSL_CTX_set_max_pipelines(ctx, max_pipelines)) {
1809 BIO_printf(bio_err, "%s: Max pipelines %u is out of permitted range\n",
1810 prog, max_pipelines);
1811 goto end;
032c6d21 1812 }
7e25dd6d 1813
dad78fb1
MC
1814 if (read_buf_len > 0) {
1815 SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1816 }
e783bae2 1817#ifndef OPENSSL_NO_SRTP
ac59d705 1818 if (srtp_profiles != NULL) {
7e1b7485
RS
1819 /* Returns 0 on success! */
1820 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
ac59d705
MC
1821 BIO_printf(bio_err, "Error setting SRTP profile\n");
1822 ERR_print_errors(bio_err);
1823 goto end;
1824 }
1825 }
e783bae2 1826#endif
333f926d 1827
2b6bcb70 1828 if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
0f113f3e 1829 ERR_print_errors(bio_err);
7e1b7485 1830 goto end;
0f113f3e 1831 }
7e1b7485
RS
1832 if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1833 BIO_printf(bio_err, "Error setting verify params\n");
ac59d705
MC
1834 ERR_print_errors(bio_err);
1835 goto end;
1836 }
0f113f3e
MC
1837
1838 ssl_ctx_add_crls(ctx, crls, 0);
dba31777 1839 if (!config_ctx(cctx, ssl_args, ctx))
0f113f3e
MC
1840 goto end;
1841
1842 if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1843 crls, crl_download)) {
1844 BIO_printf(bio_err, "Error loading store locations\n");
1845 ERR_print_errors(bio_err);
1846 goto end;
1847 }
e481f9b9 1848
0f113f3e
MC
1849 if (s_cert2) {
1850 ctx2 = SSL_CTX_new(meth);
1851 if (ctx2 == NULL) {
1852 ERR_print_errors(bio_err);
1853 goto end;
1854 }
1855 }
1856
2234212c 1857 if (ctx2 != NULL) {
0f113f3e
MC
1858 BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
1859
1860 if (sdebug)
ecf3a1fb 1861 ssl_ctx_security_debug(ctx, sdebug);
0f113f3e
MC
1862
1863 if (session_id_prefix) {
1864 if (strlen(session_id_prefix) >= 32)
1865 BIO_printf(bio_err,
1866 "warning: id_prefix is too long, only one new session will be possible\n");
1867 if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1868 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1869 ERR_print_errors(bio_err);
1870 goto end;
1871 }
1872 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1873 }
1874 SSL_CTX_set_quiet_shutdown(ctx2, 1);
2234212c 1875 if (exc != NULL)
0f113f3e 1876 ssl_ctx_set_excert(ctx2, exc);
0f113f3e
MC
1877
1878 if (state)
1879 SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
1880
1881 if (no_cache)
1882 SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
1883 else if (ext_cache)
1884 init_session_cache_ctx(ctx2);
1885 else
1886 SSL_CTX_sess_set_cache_size(ctx2, 128);
1887
7e25dd6d 1888 if (async)
f4da39d2 1889 SSL_CTX_set_mode(ctx2, SSL_MODE_ASYNC);
7e25dd6d 1890
f65a8c1e
DSH
1891 if (!ctx_set_verify_locations(ctx2, CAfile, CApath, noCAfile,
1892 noCApath)) {
0f113f3e 1893 ERR_print_errors(bio_err);
f65a8c1e 1894 goto end;
0f113f3e 1895 }
7e1b7485
RS
1896 if (vpmtouched && !SSL_CTX_set1_param(ctx2, vpm)) {
1897 BIO_printf(bio_err, "Error setting verify params\n");
ac59d705
MC
1898 ERR_print_errors(bio_err);
1899 goto end;
1900 }
ee2ffc27 1901
0f113f3e 1902 ssl_ctx_add_crls(ctx2, crls, 0);
dba31777 1903 if (!config_ctx(cctx, ssl_args, ctx2))
0f113f3e
MC
1904 goto end;
1905 }
e481f9b9 1906#ifndef OPENSSL_NO_NEXTPROTONEG
0f113f3e
MC
1907 if (next_proto.data)
1908 SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
1909 &next_proto);
e481f9b9 1910#endif
0f113f3e
MC
1911 if (alpn_ctx.data)
1912 SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
b1277b99 1913
cf1b7d96 1914#ifndef OPENSSL_NO_DH
0f113f3e
MC
1915 if (!no_dhe) {
1916 DH *dh = NULL;
1917
2234212c 1918 if (dhfile != NULL)
0f113f3e 1919 dh = load_dh_param(dhfile);
2234212c 1920 else if (s_cert_file != NULL)
0f113f3e
MC
1921 dh = load_dh_param(s_cert_file);
1922
1923 if (dh != NULL) {
1924 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1925 } else {
1926 BIO_printf(bio_s_out, "Using default temp DH parameters\n");
1927 }
1928 (void)BIO_flush(bio_s_out);
1929
2234212c 1930 if (dh == NULL) {
0f113f3e 1931 SSL_CTX_set_dh_auto(ctx, 1);
2234212c 1932 } else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
0f113f3e
MC
1933 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1934 ERR_print_errors(bio_err);
1935 DH_free(dh);
1936 goto end;
1937 }
e481f9b9 1938
2234212c 1939 if (ctx2 != NULL) {
0f113f3e
MC
1940 if (!dhfile) {
1941 DH *dh2 = load_dh_param(s_cert_file2);
1942 if (dh2 != NULL) {
1943 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1944 (void)BIO_flush(bio_s_out);
1945
1946 DH_free(dh);
1947 dh = dh2;
1948 }
1949 }
2234212c 1950 if (dh == NULL) {
0f113f3e 1951 SSL_CTX_set_dh_auto(ctx2, 1);
2234212c 1952 } else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
0f113f3e
MC
1953 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1954 ERR_print_errors(bio_err);
1955 DH_free(dh);
1956 goto end;
1957 }
1958 }
0f113f3e
MC
1959 DH_free(dh);
1960 }
ed3883d2 1961#endif
d02b48c6 1962
0f113f3e
MC
1963 if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
1964 goto end;
e481f9b9 1965
0f113f3e
MC
1966 if (s_serverinfo_file != NULL
1967 && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
1968 ERR_print_errors(bio_err);
1969 goto end;
1970 }
e481f9b9 1971
2234212c
PY
1972 if (ctx2 != NULL
1973 && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
0f113f3e 1974 goto end;
e481f9b9 1975
0f113f3e
MC
1976 if (s_dcert != NULL) {
1977 if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
1978 goto end;
1979 }
d02b48c6 1980
0f113f3e
MC
1981 if (no_resume_ephemeral) {
1982 SSL_CTX_set_not_resumable_session_callback(ctx,
1983 not_resumable_sess_cb);
e481f9b9 1984
2234212c 1985 if (ctx2 != NULL)
0f113f3e
MC
1986 SSL_CTX_set_not_resumable_session_callback(ctx2,
1987 not_resumable_sess_cb);
0f113f3e 1988 }
ddac1974 1989#ifndef OPENSSL_NO_PSK
b5292f7b 1990 if (psk_key != NULL) {
0f113f3e 1991 if (s_debug)
d6073e27 1992 BIO_printf(bio_s_out, "PSK key given, setting server callback\n");
0f113f3e
MC
1993 SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
1994 }
ddac1974 1995
0f113f3e
MC
1996 if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
1997 BIO_printf(bio_err, "error setting PSK identity hint to context\n");
1998 ERR_print_errors(bio_err);
1999 goto end;
2000 }
ddac1974 2001#endif
df894947
MC
2002 if (psksessf != NULL) {
2003 BIO *stmp = BIO_new_file(psksessf, "r");
2004
2005 if (stmp == NULL) {
2006 BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
2007 ERR_print_errors(bio_err);
2008 goto end;
2009 }
2010 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
2011 BIO_free(stmp);
2012 if (psksess == NULL) {
2013 BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
2014 ERR_print_errors(bio_err);
2015 goto end;
2016 }
5ffff599 2017
df894947 2018 }
ddac1974 2019
5ffff599
MC
2020 if (psk_key != NULL || psksess != NULL)
2021 SSL_CTX_set_psk_find_session_callback(ctx, psk_find_session_cb);
2022
0f113f3e 2023 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
61986d32 2024 if (!SSL_CTX_set_session_id_context(ctx,
d6073e27
F
2025 (void *)&s_server_session_id_context,
2026 sizeof s_server_session_id_context)) {
ac59d705
MC
2027 BIO_printf(bio_err, "error setting session id context\n");
2028 ERR_print_errors(bio_err);
2029 goto end;
2030 }
d02b48c6 2031
0f113f3e
MC
2032 /* Set DTLS cookie generation and verification callbacks */
2033 SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
2034 SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
07a9d1a2 2035
2234212c 2036 if (ctx2 != NULL) {
0f113f3e 2037 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
61986d32 2038 if (!SSL_CTX_set_session_id_context(ctx2,
7e1b7485
RS
2039 (void *)&s_server_session_id_context,
2040 sizeof s_server_session_id_context)) {
ac59d705
MC
2041 BIO_printf(bio_err, "error setting session id context\n");
2042 ERR_print_errors(bio_err);
2043 goto end;
2044 }
0f113f3e
MC
2045 tlsextcbp.biodebug = bio_s_out;
2046 SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
2047 SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
2048 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
2049 SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
2050 }
f1fd4544 2051
edc032b5 2052#ifndef OPENSSL_NO_SRP
0f113f3e
MC
2053 if (srp_verifier_file != NULL) {
2054 srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
2055 srp_callback_parm.user = NULL;
2056 srp_callback_parm.login = NULL;
2057 if ((ret =
2058 SRP_VBASE_init(srp_callback_parm.vb,
2059 srp_verifier_file)) != SRP_NO_ERROR) {
2060 BIO_printf(bio_err,
2061 "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
2062 srp_verifier_file, ret);
2063 goto end;
2064 }
2065 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
2066 SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
2067 SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
2068 } else
2069#endif
2070 if (CAfile != NULL) {
2071 SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
e481f9b9 2072
0f113f3e
MC
2073 if (ctx2)
2074 SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
0f113f3e 2075 }
3e41ac35 2076#ifndef OPENSSL_NO_OCSP
be0c0361
AE
2077 if (s_tlsextstatus) {
2078 SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
2079 SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
2080 if (ctx2) {
2081 SSL_CTX_set_tlsext_status_cb(ctx2, cert_status_cb);
2082 SSL_CTX_set_tlsext_status_arg(ctx2, &tlscstatp);
2083 }
2084 }
3e41ac35 2085#endif
4bf73e9f
PW
2086 if (set_keylog_file(ctx, keylog_file))
2087 goto end;
0f113f3e 2088
6746648c 2089 if (max_early_data >= 0)
048b1893
MC
2090 SSL_CTX_set_max_early_data(ctx, max_early_data);
2091
0f113f3e
MC
2092 BIO_printf(bio_s_out, "ACCEPT\n");
2093 (void)BIO_flush(bio_s_out);
2094 if (rev)
2095 server_cb = rev_body;
2096 else if (www)
2097 server_cb = www_body;
2098 else
2099 server_cb = sv_body;
ab69ac00
RL
2100#ifdef AF_UNIX
2101 if (socket_family == AF_UNIX
2102 && unlink_unix_path)
2103 unlink(host);
0f113f3e 2104#endif
72d0bc84 2105 do_server(&accept_socket, host, port, socket_family, socket_type, protocol,
ab69ac00 2106 server_cb, context, naccept);
0f113f3e
MC
2107 print_stats(bio_s_out, ctx);
2108 ret = 0;
2109 end:
62adbcee 2110 SSL_CTX_free(ctx);
4bf73e9f 2111 set_keylog_file(NULL, NULL);
222561fe
RS
2112 X509_free(s_cert);
2113 sk_X509_CRL_pop_free(crls, X509_CRL_free);
2114 X509_free(s_dcert);
c5ba2d99
RS
2115 EVP_PKEY_free(s_key);
2116 EVP_PKEY_free(s_dkey);
222561fe
RS
2117 sk_X509_pop_free(s_chain, X509_free);
2118 sk_X509_pop_free(s_dchain, X509_free);
25aaa98a
RS
2119 OPENSSL_free(pass);
2120 OPENSSL_free(dpass);
ab69ac00
RL
2121 OPENSSL_free(host);
2122 OPENSSL_free(port);
222561fe 2123 X509_VERIFY_PARAM_free(vpm);
0f113f3e 2124 free_sessions();
25aaa98a
RS
2125 OPENSSL_free(tlscstatp.host);
2126 OPENSSL_free(tlscstatp.port);
2127 OPENSSL_free(tlscstatp.path);
62adbcee 2128 SSL_CTX_free(ctx2);
222561fe 2129 X509_free(s_cert2);
c5ba2d99 2130 EVP_PKEY_free(s_key2);
e481f9b9 2131#ifndef OPENSSL_NO_NEXTPROTONEG
25aaa98a 2132 OPENSSL_free(next_proto.data);
0f113f3e 2133#endif
e481f9b9 2134 OPENSSL_free(alpn_ctx.data);
0f113f3e 2135 ssl_excert_free(exc);
7e1b7485 2136 sk_OPENSSL_STRING_free(ssl_args);
62adbcee 2137 SSL_CONF_CTX_free(cctx);
dd1abd44 2138 release_engine(engine);
ca3a82c3
RS
2139 BIO_free(bio_s_out);
2140 bio_s_out = NULL;
2141 BIO_free(bio_s_msg);
2142 bio_s_msg = NULL;
5fd1478d
MC
2143#ifdef CHARSET_EBCDIC
2144 BIO_meth_free(methods_ebcdic);
2145#endif
7e1b7485 2146 return (ret);
0f113f3e 2147}
d02b48c6 2148
6b691a5c 2149static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
0f113f3e
MC
2150{
2151 BIO_printf(bio, "%4ld items in the session cache\n",
2152 SSL_CTX_sess_number(ssl_ctx));
2153 BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
2154 SSL_CTX_sess_connect(ssl_ctx));
2155 BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
2156 SSL_CTX_sess_connect_renegotiate(ssl_ctx));
2157 BIO_printf(bio, "%4ld client connects that finished\n",
2158 SSL_CTX_sess_connect_good(ssl_ctx));
2159 BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
2160 SSL_CTX_sess_accept(ssl_ctx));
2161 BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
2162 SSL_CTX_sess_accept_renegotiate(ssl_ctx));
2163 BIO_printf(bio, "%4ld server accepts that finished\n",
2164 SSL_CTX_sess_accept_good(ssl_ctx));
2165 BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
2166 BIO_printf(bio, "%4ld session cache misses\n",
2167 SSL_CTX_sess_misses(ssl_ctx));
2168 BIO_printf(bio, "%4ld session cache timeouts\n",
2169 SSL_CTX_sess_timeouts(ssl_ctx));
2170 BIO_printf(bio, "%4ld callback cache hits\n",
2171 SSL_CTX_sess_cb_hits(ssl_ctx));
2172 BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
2173 SSL_CTX_sess_cache_full(ssl_ctx),
2174 SSL_CTX_sess_get_cache_size(ssl_ctx));
2175}
d02b48c6 2176
72d0bc84 2177static int sv_body(int s, int stype, int prot, unsigned char *context)
0f113f3e
MC
2178{
2179 char *buf = NULL;
2180 fd_set readfds;
2181 int ret = 1, width;
2182 int k, i;
2183 unsigned long l;
2184 SSL *con = NULL;
2185 BIO *sbio;
0f113f3e 2186 struct timeval timeout;
1fbab1dc 2187#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
0f113f3e 2188 struct timeval tv;
ba4526e0 2189#else
0f113f3e 2190 struct timeval *timeoutp;
06f4536a 2191#endif
72d0bc84 2192#ifndef OPENSSL_NO_DTLS
d88ab353 2193# ifndef OPENSSL_NO_SCTP
72d0bc84 2194 int isdtls = (stype == SOCK_DGRAM || prot == IPPROTO_SCTP);
d88ab353 2195# else
72d0bc84 2196 int isdtls = (stype == SOCK_DGRAM);
d88ab353 2197# endif
72d0bc84 2198#endif
d02b48c6 2199
68dc6824 2200 buf = app_malloc(bufsize, "server buffer");
0f113f3e 2201 if (s_nbio) {
ba810815 2202 if (!BIO_socket_nbio(s, 1))
0f113f3e 2203 ERR_print_errors(bio_err);
ba810815
RS
2204 else if (!s_quiet)
2205 BIO_printf(bio_err, "Turned on non blocking io\n");
0f113f3e 2206 }
d02b48c6 2207
0f113f3e
MC
2208 if (con == NULL) {
2209 con = SSL_new(ctx);
e481f9b9 2210
0f113f3e
MC
2211 if (s_tlsextdebug) {
2212 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2213 SSL_set_tlsext_debug_arg(con, bio_s_out);
2214 }
e481f9b9 2215
7e1b7485 2216 if (context
d6073e27
F
2217 && !SSL_set_session_id_context(con,
2218 context, strlen((char *)context))) {
ac59d705
MC
2219 BIO_printf(bio_err, "Error setting session id context\n");
2220 ret = -1;
2221 goto err;
2222 }
2223 }
61986d32 2224 if (!SSL_clear(con)) {
ac59d705
MC
2225 BIO_printf(bio_err, "Error clearing SSL connection\n");
2226 ret = -1;
2227 goto err;
0f113f3e 2228 }
a7a14a23 2229#ifndef OPENSSL_NO_DTLS
72d0bc84 2230 if (isdtls) {
d88ab353 2231# ifndef OPENSSL_NO_SCTP
72d0bc84
MC
2232 if (prot == IPPROTO_SCTP)
2233 sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
2234 else
d88ab353 2235# endif
72d0bc84 2236 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
0f113f3e
MC
2237
2238 if (enable_timeouts) {
2239 timeout.tv_sec = 0;
2240 timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2241 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2242
2243 timeout.tv_sec = 0;
2244 timeout.tv_usec = DGRAM_SND_TIMEOUT;
2245 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2246 }
2247
2248 if (socket_mtu) {
2249 if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2250 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2251 DTLS_get_link_min_mtu(con));
2252 ret = -1;
2253 BIO_free(sbio);
2254 goto err;
2255 }
2256 SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2257 if (!DTLS_set_link_mtu(con, socket_mtu)) {
2258 BIO_printf(bio_err, "Failed to set MTU\n");
2259 ret = -1;
2260 BIO_free(sbio);
2261 goto err;
2262 }
2263 } else
2264 /* want to do MTU discovery */
2265 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
36d16f8e 2266
a5eef31e 2267# ifndef OPENSSL_NO_SCTP
72d0bc84
MC
2268 if (prot != IPPROTO_SCTP) {
2269 /* Turn on cookie exchange. Not necessary for SCTP */
2270 SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
2271 }
a5eef31e 2272# endif
0f113f3e 2273 } else
a7a14a23 2274#endif
0f113f3e 2275 sbio = BIO_new_socket(s, BIO_NOCLOSE);
36d16f8e 2276
72d0bc84
MC
2277 if (sbio == NULL) {
2278 BIO_printf(bio_err, "Unable to create BIO\n");
2279 ERR_print_errors(bio_err);
2280 goto err;
2281 }
2282
0f113f3e
MC
2283 if (s_nbio_test) {
2284 BIO *test;
d02b48c6 2285
0f113f3e
MC
2286 test = BIO_new(BIO_f_nbio_test());
2287 sbio = BIO_push(test, sbio);
2288 }
0f113f3e
MC
2289
2290 SSL_set_bio(con, sbio, sbio);
2291 SSL_set_accept_state(con);
2292 /* SSL_set_fd(con,s); */
2293
2294 if (s_debug) {
0f113f3e
MC
2295 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2296 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2297 }
2298 if (s_msg) {
93ab9e42 2299#ifndef OPENSSL_NO_SSL_TRACE
0f113f3e
MC
2300 if (s_msg == 2)
2301 SSL_set_msg_callback(con, SSL_trace);
2302 else
93ab9e42 2303#endif
0f113f3e
MC
2304 SSL_set_msg_callback(con, msg_cb);
2305 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2306 }
e481f9b9 2307
0f113f3e
MC
2308 if (s_tlsextdebug) {
2309 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2310 SSL_set_tlsext_debug_arg(con, bio_s_out);
2311 }
d02b48c6 2312
e0655186 2313 if (early_data) {
f533fbd4 2314 int write_header = 1, edret = SSL_READ_EARLY_DATA_ERROR;
e0655186
MC
2315 size_t readbytes;
2316
f533fbd4 2317 while (edret != SSL_READ_EARLY_DATA_FINISH) {
e0655186 2318 for (;;) {
f533fbd4
MC
2319 edret = SSL_read_early_data(con, buf, bufsize, &readbytes);
2320 if (edret != SSL_READ_EARLY_DATA_ERROR)
e0655186
MC
2321 break;
2322
2323 switch (SSL_get_error(con, 0)) {
2324 case SSL_ERROR_WANT_WRITE:
2325 case SSL_ERROR_WANT_ASYNC:
2326 case SSL_ERROR_WANT_READ:
2327 /* Just keep trying - busy waiting */
2328 continue;
2329 default:
2330 BIO_printf(bio_err, "Error reading early data\n");
2331 ERR_print_errors(bio_err);
2332 goto err;
2333 }
2334 }
2335 if (readbytes > 0) {
2336 if (write_header) {
2337 BIO_printf(bio_s_out, "Early data received:\n");
2338 write_header = 0;
2339 }
2340 raw_write_stdout(buf, (unsigned int)readbytes);
2341 (void)BIO_flush(bio_s_out);
2342 }
2343 }
2344 if (write_header)
2345 BIO_printf(bio_s_out, "No early data received\n");
2346 else
2347 BIO_printf(bio_s_out, "\nEnd of early data\n");
ade1e888
MC
2348 if (SSL_is_init_finished(con))
2349 print_connection_info(con);
e0655186
MC
2350 }
2351
51e5133d
RL
2352 if (fileno_stdin() > s)
2353 width = fileno_stdin() + 1;
c7bdb6a3
RL
2354 else
2355 width = s + 1;
0f113f3e
MC
2356 for (;;) {
2357 int read_from_terminal;
2358 int read_from_sslcon;
a2a01589 2359
0f113f3e 2360 read_from_terminal = 0;
fd068d50 2361 read_from_sslcon = SSL_has_pending(con)
64c07bd2 2362 || (async && SSL_waiting_for_async(con));
a2a01589 2363
0f113f3e
MC
2364 if (!read_from_sslcon) {
2365 FD_ZERO(&readfds);
1fbab1dc 2366#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
51e5133d 2367 openssl_fdset(fileno_stdin(), &readfds);
0f113f3e
MC
2368#endif
2369 openssl_fdset(s, &readfds);
2370 /*
2371 * Note: under VMS with SOCKETSHR the second parameter is
2372 * currently of type (int *) whereas under other systems it is
2373 * (void *) if you don't have a cast it will choke the compiler:
2374 * if you do have a cast then you can either go for (int *) or
2375 * (void *).
2376 */
1fbab1dc 2377#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
0f113f3e
MC
2378 /*
2379 * Under DOS (non-djgpp) and Windows we can't select on stdin:
2380 * only on sockets. As a workaround we timeout the select every
2381 * second and check for any keypress. In a proper Windows
2382 * application we wouldn't do this because it is inefficient.
2383 */
2384 tv.tv_sec = 1;
2385 tv.tv_usec = 0;
2386 i = select(width, (void *)&readfds, NULL, NULL, &tv);
75dd6c1a 2387 if (has_stdin_waiting())
0f113f3e 2388 read_from_terminal = 1;
75dd6c1a
MC
2389 if ((i < 0) || (!i && !read_from_terminal))
2390 continue;
06f4536a 2391#else
0f113f3e
MC
2392 if ((SSL_version(con) == DTLS1_VERSION) &&
2393 DTLSv1_get_timeout(con, &timeout))
2394 timeoutp = &timeout;
2395 else
2396 timeoutp = NULL;
2397
2398 i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
2399
2400 if ((SSL_version(con) == DTLS1_VERSION)
2401 && DTLSv1_handle_timeout(con) > 0) {
2402 BIO_printf(bio_err, "TIMEOUT occurred\n");
2403 }
2404
2405 if (i <= 0)
2406 continue;
51e5133d 2407 if (FD_ISSET(fileno_stdin(), &readfds))
0f113f3e
MC
2408 read_from_terminal = 1;
2409#endif
2410 if (FD_ISSET(s, &readfds))
2411 read_from_sslcon = 1;
2412 }
2413 if (read_from_terminal) {
2414 if (s_crlf) {
2415 int j, lf_num;
2416
c7bdb6a3 2417 i = raw_read_stdin(buf, bufsize / 2);
c7bdb6a3 2418 lf_num = 0;
0f113f3e
MC
2419 /* both loops are skipped when i <= 0 */
2420 for (j = 0; j < i; j++)
2421 if (buf[j] == '\n')
2422 lf_num++;
2423 for (j = i - 1; j >= 0; j--) {
2424 buf[j + lf_num] = buf[j];
2425 if (buf[j] == '\n') {
2426 lf_num--;
2427 i++;
2428 buf[j + lf_num] = '\r';
2429 }
2430 }
2431 assert(lf_num == 0);
2234212c 2432 } else {
c7bdb6a3 2433 i = raw_read_stdin(buf, bufsize);
2234212c 2434 }
51e5133d 2435
0f113f3e
MC
2436 if (!s_quiet && !s_brief) {
2437 if ((i <= 0) || (buf[0] == 'Q')) {
2438 BIO_printf(bio_s_out, "DONE\n");
7e1b7485 2439 (void)BIO_flush(bio_s_out);
8731a4fc 2440 BIO_closesocket(s);
0f113f3e
MC
2441 close_accept_socket();
2442 ret = -11;
2443 goto err;
2444 }
2445 if ((i <= 0) || (buf[0] == 'q')) {
2446 BIO_printf(bio_s_out, "DONE\n");
7e1b7485 2447 (void)BIO_flush(bio_s_out);
0f113f3e 2448 if (SSL_version(con) != DTLS1_VERSION)
8731a4fc 2449 BIO_closesocket(s);
0f113f3e
MC
2450 /*
2451 * close_accept_socket(); ret= -11;
2452 */
2453 goto err;
2454 }
b612799a
RL
2455#ifndef OPENSSL_NO_HEARTBEATS
2456 if ((buf[0] == 'B') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2457 BIO_printf(bio_err, "HEARTBEATING\n");
2458 SSL_heartbeat(con);
2459 i = 0;
2460 continue;
2461 }
2462#endif
0f113f3e
MC
2463 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2464 SSL_renegotiate(con);
2465 i = SSL_do_handshake(con);
2466 printf("SSL_do_handshake -> %d\n", i);
2467 i = 0; /* 13; */
2468 continue;
2469 /*
2470 * strcpy(buf,"server side RE-NEGOTIATE\n");
2471 */
2472 }
2473 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2474 SSL_set_verify(con,
2475 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2476 NULL);
2477 SSL_renegotiate(con);
2478 i = SSL_do_handshake(con);
2479 printf("SSL_do_handshake -> %d\n", i);
2480 i = 0; /* 13; */
2481 continue;
2482 /*
2483 * strcpy(buf,"server side RE-NEGOTIATE asking for client
2484 * cert\n");
2485 */
2486 }
34df45b5
MC
2487 if ((buf[0] == 'K' || buf[0] == 'k')
2488 && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2489 SSL_key_update(con, buf[0] == 'K' ?
2490 SSL_KEY_UPDATE_REQUESTED
2491 : SSL_KEY_UPDATE_NOT_REQUESTED);
2492 i = SSL_do_handshake(con);
2493 printf("SSL_do_handshake -> %d\n", i);
2494 i = 0;
2495 continue;
2496 /*
2497 * strcpy(buf,"server side RE-NEGOTIATE asking for client
2498 * cert\n");
2499 */
2500 }
0f113f3e
MC
2501 if (buf[0] == 'P') {
2502 static const char *str = "Lets print some clear text\n";
2503 BIO_write(SSL_get_wbio(con), str, strlen(str));
2504 }
2505 if (buf[0] == 'S') {
2506 print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2507 }
2508 }
a53955d8 2509#ifdef CHARSET_EBCDIC
0f113f3e 2510 ebcdic2ascii(buf, buf, i);
a53955d8 2511#endif
0f113f3e
MC
2512 l = k = 0;
2513 for (;;) {
2514 /* should do a select for the write */
58964a49 2515#ifdef RENEG
54463e4f
F
2516 static count = 0;
2517 if (++count == 100) {
2518 count = 0;
2519 SSL_renegotiate(con);
0f113f3e 2520 }
d02b48c6 2521#endif
0f113f3e 2522 k = SSL_write(con, &(buf[l]), (unsigned int)i);
9641be2a 2523#ifndef OPENSSL_NO_SRP
0f113f3e
MC
2524 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2525 BIO_printf(bio_s_out, "LOOKUP renego during write\n");
380f18ed 2526 SRP_user_pwd_free(srp_callback_parm.user);
0f113f3e 2527 srp_callback_parm.user =
380f18ed
EK
2528 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2529 srp_callback_parm.login);
c7bdb6a3 2530 if (srp_callback_parm.user)
0f113f3e
MC
2531 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2532 srp_callback_parm.user->info);
2533 else
2534 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2535 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2536 }
2537#endif
2538 switch (SSL_get_error(con, k)) {
2539 case SSL_ERROR_NONE:
2540 break;
7e25dd6d
MC
2541 case SSL_ERROR_WANT_ASYNC:
2542 BIO_printf(bio_s_out, "Write BLOCK (Async)\n");
384f08dc 2543 (void)BIO_flush(bio_s_out);
f4da39d2 2544 wait_for_async(con);
7e25dd6d 2545 break;
0f113f3e
MC
2546 case SSL_ERROR_WANT_WRITE:
2547 case SSL_ERROR_WANT_READ:
2548 case SSL_ERROR_WANT_X509_LOOKUP:
2549 BIO_printf(bio_s_out, "Write BLOCK\n");
384f08dc 2550 (void)BIO_flush(bio_s_out);
0f113f3e 2551 break;
fc7f190c
MC
2552 case SSL_ERROR_WANT_ASYNC_JOB:
2553 /*
2554 * This shouldn't ever happen in s_server. Treat as an error
2555 */
0f113f3e
MC
2556 case SSL_ERROR_SYSCALL:
2557 case SSL_ERROR_SSL:
2558 BIO_printf(bio_s_out, "ERROR\n");
7e1b7485 2559 (void)BIO_flush(bio_s_out);
0f113f3e
MC
2560 ERR_print_errors(bio_err);
2561 ret = 1;
2562 goto err;
2563 /* break; */
2564 case SSL_ERROR_ZERO_RETURN:
2565 BIO_printf(bio_s_out, "DONE\n");
7e1b7485 2566 (void)BIO_flush(bio_s_out);
0f113f3e
MC
2567 ret = 1;
2568 goto err;
2569 }
00d565cf
RS
2570 if (k > 0) {
2571 l += k;
2572 i -= k;
2573 }
0f113f3e
MC
2574 if (i <= 0)
2575 break;
2576 }
2577 }
2578 if (read_from_sslcon) {
64c07bd2
MC
2579 /*
2580 * init_ssl_connection handles all async events itself so if we're
2581 * waiting for async then we shouldn't go back into
2582 * init_ssl_connection
2583 */
2584 if ((!async || !SSL_waiting_for_async(con))
2585 && !SSL_is_init_finished(con)) {
0f113f3e
MC
2586 i = init_ssl_connection(con);
2587
2588 if (i < 0) {
2589 ret = 0;
2590 goto err;
2591 } else if (i == 0) {
2592 ret = 1;
2593 goto err;
2594 }
2595 } else {
2596 again:
2597 i = SSL_read(con, (char *)buf, bufsize);
9641be2a 2598#ifndef OPENSSL_NO_SRP
0f113f3e
MC
2599 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2600 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
380f18ed 2601 SRP_user_pwd_free(srp_callback_parm.user);
0f113f3e 2602 srp_callback_parm.user =
380f18ed
EK
2603 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2604 srp_callback_parm.login);
0f113f3e
MC
2605 if (srp_callback_parm.user)
2606 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2607 srp_callback_parm.user->info);
2608 else
2609 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2610 i = SSL_read(con, (char *)buf, bufsize);
2611 }
2612#endif
2613 switch (SSL_get_error(con, i)) {
2614 case SSL_ERROR_NONE:
a53955d8 2615#ifdef CHARSET_EBCDIC
0f113f3e
MC
2616 ascii2ebcdic(buf, buf, i);
2617#endif
2618 raw_write_stdout(buf, (unsigned int)i);
384f08dc 2619 (void)BIO_flush(bio_s_out);
fd068d50 2620 if (SSL_has_pending(con))
0f113f3e
MC
2621 goto again;
2622 break;
7e25dd6d 2623 case SSL_ERROR_WANT_ASYNC:
f4da39d2 2624 BIO_printf(bio_s_out, "Read BLOCK (Async)\n");
384f08dc 2625 (void)BIO_flush(bio_s_out);
f4da39d2
MC
2626 wait_for_async(con);
2627 break;
0f113f3e
MC
2628 case SSL_ERROR_WANT_WRITE:
2629 case SSL_ERROR_WANT_READ:
2630 BIO_printf(bio_s_out, "Read BLOCK\n");
384f08dc 2631 (void)BIO_flush(bio_s_out);
0f113f3e 2632 break;
fc7f190c
MC
2633 case SSL_ERROR_WANT_ASYNC_JOB:
2634 /*
2635 * This shouldn't ever happen in s_server. Treat as an error
2636 */
0f113f3e
MC
2637 case SSL_ERROR_SYSCALL:
2638 case SSL_ERROR_SSL:
2639 BIO_printf(bio_s_out, "ERROR\n");
7e1b7485 2640 (void)BIO_flush(bio_s_out);
0f113f3e
MC
2641 ERR_print_errors(bio_err);
2642 ret = 1;
2643 goto err;
2644 case SSL_ERROR_ZERO_RETURN:
2645 BIO_printf(bio_s_out, "DONE\n");
7e1b7485 2646 (void)BIO_flush(bio_s_out);
0f113f3e
MC
2647 ret = 1;
2648 goto err;
2649 }
2650 }
2651 }
2652 }
2653 err:
2654 if (con != NULL) {
2655 BIO_printf(bio_s_out, "shutting down SSL\n");
0f113f3e 2656 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
0f113f3e
MC
2657 SSL_free(con);
2658 }
2659 BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
4b45c6e5 2660 OPENSSL_clear_free(buf, bufsize);
0f113f3e
MC
2661 if (ret >= 0)
2662 BIO_printf(bio_s_out, "ACCEPT\n");
c54cc2b1 2663 (void)BIO_flush(bio_s_out);
0f113f3e
MC
2664 return (ret);
2665}
d02b48c6 2666
6b691a5c 2667static void close_accept_socket(void)
0f113f3e
MC
2668{
2669 BIO_printf(bio_err, "shutdown accept socket\n");
2670 if (accept_socket >= 0) {
8731a4fc 2671 BIO_closesocket(accept_socket);
0f113f3e
MC
2672 }
2673}
d02b48c6 2674
068e3d73
MC
2675static int is_retryable(SSL *con, int i)
2676{
2677 int err = SSL_get_error(con, i);
2678
2679 /* If it's not a fatal error, it must be retryable */
2680 return (err != SSL_ERROR_SSL)
2681 && (err != SSL_ERROR_SYSCALL)
2682 && (err != SSL_ERROR_ZERO_RETURN);
2683}
2684
6b691a5c 2685static int init_ssl_connection(SSL *con)
0f113f3e
MC
2686{
2687 int i;
df2ee0e2 2688 long verify_err;
384f08dc 2689 int retry = 0;
fd4e98ec 2690
a5ecdc6a 2691#ifndef OPENSSL_NO_DTLS
e8aa8b6c 2692 if (dtlslisten) {
d858c876
RL
2693 BIO_ADDR *client = NULL;
2694
2695 if ((client = BIO_ADDR_new()) == NULL) {
2696 BIO_printf(bio_err, "ERROR - memory\n");
2697 return 0;
2698 }
3edeb622 2699 i = DTLSv1_listen(con, client);
fd4e98ec
MC
2700 if (i > 0) {
2701 BIO *wbio;
3a796184 2702 int fd = -1;
fd4e98ec
MC
2703
2704 wbio = SSL_get_wbio(con);
e8aa8b6c 2705 if (wbio) {
fd4e98ec
MC
2706 BIO_get_fd(wbio, &fd);
2707 }
2708
e8aa8b6c 2709 if (!wbio || BIO_connect(fd, client, 0) == 0) {
fd4e98ec 2710 BIO_printf(bio_err, "ERROR - unable to connect\n");
d858c876 2711 BIO_ADDR_free(client);
fd4e98ec
MC
2712 return 0;
2713 }
d858c876 2714 BIO_ADDR_free(client);
fd4e98ec
MC
2715 dtlslisten = 0;
2716 i = SSL_accept(con);
a3768e0c
MC
2717 } else {
2718 BIO_ADDR_free(client);
fd4e98ec
MC
2719 }
2720 } else
2721#endif
7e25dd6d
MC
2722
2723 do {
fd4e98ec 2724 i = SSL_accept(con);
d02b48c6 2725
384f08dc 2726 if (i <= 0)
068e3d73 2727 retry = is_retryable(con, i);
3323314f 2728#ifdef CERT_CB_TEST_RETRY
7e25dd6d 2729 {
d6073e27
F
2730 while (i <= 0
2731 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
7e25dd6d
MC
2732 && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) {
2733 BIO_printf(bio_err,
d6073e27 2734 "LOOKUP from certificate callback during accept\n");
7e25dd6d 2735 i = SSL_accept(con);
384f08dc 2736 if (i <= 0)
068e3d73 2737 retry = is_retryable(con, i);
7e25dd6d 2738 }
0f113f3e 2739 }
3323314f 2740#endif
7e25dd6d 2741
9641be2a 2742#ifndef OPENSSL_NO_SRP
d6073e27
F
2743 while (i <= 0
2744 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
7e25dd6d
MC
2745 BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2746 srp_callback_parm.login);
380f18ed 2747 SRP_user_pwd_free(srp_callback_parm.user);
7e25dd6d 2748 srp_callback_parm.user =
380f18ed
EK
2749 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2750 srp_callback_parm.login);
7e25dd6d
MC
2751 if (srp_callback_parm.user)
2752 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2753 srp_callback_parm.user->info);
2754 else
2755 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2756 i = SSL_accept(con);
384f08dc 2757 if (i <= 0)
068e3d73 2758 retry = is_retryable(con, i);
7e25dd6d 2759 }
0f113f3e 2760#endif
7e25dd6d 2761 } while (i < 0 && SSL_waiting_for_async(con));
0f113f3e
MC
2762
2763 if (i <= 0) {
fd4e98ec 2764 if ((dtlslisten && i == 0)
384f08dc 2765 || (!dtlslisten && retry)) {
0f113f3e
MC
2766 BIO_printf(bio_s_out, "DELAY\n");
2767 return (1);
2768 }
2769
2770 BIO_printf(bio_err, "ERROR\n");
7e1b7485 2771
df2ee0e2
BL
2772 verify_err = SSL_get_verify_result(con);
2773 if (verify_err != X509_V_OK) {
0f113f3e 2774 BIO_printf(bio_err, "verify error:%s\n",
df2ee0e2 2775 X509_verify_cert_error_string(verify_err));
0f113f3e
MC
2776 }
2777 /* Always print any error messages */
2778 ERR_print_errors(bio_err);
2779 return (0);
2780 }
2781
ade1e888
MC
2782 print_connection_info(con);
2783 return 1;
2784}
2785
2786static void print_connection_info(SSL *con)
2787{
2788 const char *str;
2789 X509 *peer;
2790 char buf[BUFSIZ];
2791#if !defined(OPENSSL_NO_NEXTPROTONEG)
2792 const unsigned char *next_proto_neg;
2793 unsigned next_proto_neg_len;
2794#endif
2795 unsigned char *exportedkeymat;
2796 int i;
2797
0f113f3e 2798 if (s_brief)
ecf3a1fb 2799 print_ssl_summary(con);
0f113f3e
MC
2800
2801 PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
2802
2803 peer = SSL_get_peer_certificate(con);
2804 if (peer != NULL) {
2805 BIO_printf(bio_s_out, "Client certificate\n");
2806 PEM_write_bio_X509(bio_s_out, peer);
b5c4209b 2807 dump_cert_text(bio_s_out, peer);
0f113f3e 2808 X509_free(peer);
049f3655 2809 peer = NULL;
0f113f3e
MC
2810 }
2811
2812 if (SSL_get_shared_ciphers(con, buf, sizeof buf) != NULL)
2813 BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2814 str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2815 ssl_print_sigalgs(bio_s_out, con);
14536c8c 2816#ifndef OPENSSL_NO_EC
0f113f3e 2817 ssl_print_point_formats(bio_s_out, con);
de4d764e 2818 ssl_print_groups(bio_s_out, con, 0);
14536c8c 2819#endif
5969a2dd 2820 print_ca_names(bio_s_out, con);
0f113f3e 2821 BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
e7f8ff43 2822
e481f9b9 2823#if !defined(OPENSSL_NO_NEXTPROTONEG)
0f113f3e
MC
2824 SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2825 if (next_proto_neg) {
2826 BIO_printf(bio_s_out, "NEXTPROTO is ");
2827 BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2828 BIO_printf(bio_s_out, "\n");
2829 }
ee2ffc27 2830#endif
e783bae2 2831#ifndef OPENSSL_NO_SRTP
0f113f3e
MC
2832 {
2833 SRTP_PROTECTION_PROFILE *srtp_profile
2834 = SSL_get_selected_srtp_profile(con);
2835
2836 if (srtp_profile)
2837 BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2838 srtp_profile->name);
2839 }
2840#endif
b577fd0b 2841 if (SSL_session_reused(con))
0f113f3e 2842 BIO_printf(bio_s_out, "Reused session-id\n");
0f113f3e
MC
2843 BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2844 SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
db0f35dd
TS
2845 if ((SSL_get_options(con) & SSL_OP_NO_RENEGOTIATION))
2846 BIO_printf(bio_s_out, "Renegotiation is DISABLED\n");
2847
0f113f3e
MC
2848 if (keymatexportlabel != NULL) {
2849 BIO_printf(bio_s_out, "Keying material exporter:\n");
2850 BIO_printf(bio_s_out, " Label: '%s'\n", keymatexportlabel);
2851 BIO_printf(bio_s_out, " Length: %i bytes\n", keymatexportlen);
68dc6824
RS
2852 exportedkeymat = app_malloc(keymatexportlen, "export key");
2853 if (!SSL_export_keying_material(con, exportedkeymat,
2854 keymatexportlen,
2855 keymatexportlabel,
2856 strlen(keymatexportlabel),
2857 NULL, 0, 0)) {
2858 BIO_printf(bio_s_out, " Error\n");
2859 } else {
2860 BIO_printf(bio_s_out, " Keying material: ");
2861 for (i = 0; i < keymatexportlen; i++)
2862 BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2863 BIO_printf(bio_s_out, "\n");
0f113f3e 2864 }
68dc6824 2865 OPENSSL_free(exportedkeymat);
0f113f3e
MC
2866 }
2867
d6073e27 2868 (void)BIO_flush(bio_s_out);
0f113f3e 2869}
d02b48c6 2870
cf1b7d96 2871#ifndef OPENSSL_NO_DH
eb3eab20 2872static DH *load_dh_param(const char *dhfile)
0f113f3e
MC
2873{
2874 DH *ret = NULL;
2875 BIO *bio;
2876
2877 if ((bio = BIO_new_file(dhfile, "r")) == NULL)
2878 goto err;
2879 ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2880 err:
ca3a82c3 2881 BIO_free(bio);
0f113f3e
MC
2882 return (ret);
2883}
58964a49 2884#endif
d02b48c6 2885
72d0bc84 2886static int www_body(int s, int stype, int prot, unsigned char *context)
0f113f3e
MC
2887{
2888 char *buf = NULL;
2889 int ret = 1;
2890 int i, j, k, dot;
2891 SSL *con;
2892 const SSL_CIPHER *c;
2893 BIO *io, *ssl_bio, *sbio;
7e1b7485
RS
2894#ifdef RENEG
2895 int total_bytes = 0;
2896#endif
075c8795
MC
2897 int width;
2898 fd_set readfds;
2899
2900 /* Set width for a select call if needed */
2901 width = s + 1;
d02b48c6 2902
68dc6824 2903 buf = app_malloc(bufsize, "server www buffer");
0f113f3e
MC
2904 io = BIO_new(BIO_f_buffer());
2905 ssl_bio = BIO_new(BIO_f_ssl());
2906 if ((io == NULL) || (ssl_bio == NULL))
2907 goto err;
d02b48c6 2908
0f113f3e 2909 if (s_nbio) {
ba810815 2910 if (!BIO_socket_nbio(s, 1))
0f113f3e 2911 ERR_print_errors(bio_err);
ba810815
RS
2912 else if (!s_quiet)
2913 BIO_printf(bio_err, "Turned on non blocking io\n");
0f113f3e 2914 }
d02b48c6 2915
0f113f3e
MC
2916 /* lets make the output buffer a reasonable size */
2917 if (!BIO_set_write_buffer_size(io, bufsize))
2918 goto err;
d02b48c6 2919
0f113f3e
MC
2920 if ((con = SSL_new(ctx)) == NULL)
2921 goto err;
e481f9b9 2922
0f113f3e
MC
2923 if (s_tlsextdebug) {
2924 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2925 SSL_set_tlsext_debug_arg(con, bio_s_out);
2926 }
e481f9b9 2927
2234212c 2928 if (context != NULL
d6073e27
F
2929 && !SSL_set_session_id_context(con, context,
2930 strlen((char *)context)))
ac59d705 2931 goto err;
0f113f3e
MC
2932
2933 sbio = BIO_new_socket(s, BIO_NOCLOSE);
2934 if (s_nbio_test) {
2935 BIO *test;
2936
2937 test = BIO_new(BIO_f_nbio_test());
2938 sbio = BIO_push(test, sbio);
2939 }
2940 SSL_set_bio(con, sbio, sbio);
2941 SSL_set_accept_state(con);
2942
2943 /* SSL_set_fd(con,s); */
2944 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
2945 BIO_push(io, ssl_bio);
a53955d8 2946#ifdef CHARSET_EBCDIC
0f113f3e 2947 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
a53955d8 2948#endif
d02b48c6 2949
0f113f3e 2950 if (s_debug) {
0f113f3e
MC
2951 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2952 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2953 }
2954 if (s_msg) {
93ab9e42 2955#ifndef OPENSSL_NO_SSL_TRACE
0f113f3e
MC
2956 if (s_msg == 2)
2957 SSL_set_msg_callback(con, SSL_trace);
2958 else
2959#endif
2960 SSL_set_msg_callback(con, msg_cb);
2961 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2962 }
2963
2964 for (;;) {
0f113f3e
MC
2965 i = BIO_gets(io, buf, bufsize - 1);
2966 if (i < 0) { /* error */
4cfa6204 2967 if (!BIO_should_retry(io) && !SSL_waiting_for_async(con)) {
0f113f3e
MC
2968 if (!s_quiet)
2969 ERR_print_errors(bio_err);
2970 goto err;
2971 } else {
2972 BIO_printf(bio_s_out, "read R BLOCK\n");
4e7e6230
DSH
2973#ifndef OPENSSL_NO_SRP
2974 if (BIO_should_io_special(io)
2975 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
2976 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
380f18ed 2977 SRP_user_pwd_free(srp_callback_parm.user);
4e7e6230 2978 srp_callback_parm.user =
380f18ed
EK
2979 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2980 srp_callback_parm.login);
4e7e6230
DSH
2981 if (srp_callback_parm.user)
2982 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2983 srp_callback_parm.user->info);
2984 else
2985 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2986 continue;
2987 }
2988#endif
1fbab1dc 2989#if !defined(OPENSSL_SYS_MSDOS)
0f113f3e
MC
2990 sleep(1);
2991#endif
2992 continue;
2993 }
2994 } else if (i == 0) { /* end of input */
2995 ret = 1;
2996 goto end;
2997 }
d02b48c6 2998
0f113f3e
MC
2999 /* else we have data */
3000 if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
0b142f02 3001 ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
0f113f3e 3002 char *p;
049f3655 3003 X509 *peer = NULL;
0f113f3e
MC
3004 STACK_OF(SSL_CIPHER) *sk;
3005 static const char *space = " ";
3006
3007 if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
3008 if (strncmp("GET /renegcert", buf, 14) == 0)
3009 SSL_set_verify(con,
3010 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
3011 NULL);
3012 i = SSL_renegotiate(con);
3013 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
075c8795 3014 /* Send the HelloRequest */
0f113f3e
MC
3015 i = SSL_do_handshake(con);
3016 if (i <= 0) {
3017 BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
3018 SSL_get_error(con, i));
3019 ERR_print_errors(bio_err);
3020 goto err;
3021 }
075c8795
MC
3022 /* Wait for a ClientHello to come back */
3023 FD_ZERO(&readfds);
3024 openssl_fdset(s, &readfds);
3025 i = select(width, (void *)&readfds, NULL, NULL, NULL);
3026 if (i <= 0 || !FD_ISSET(s, &readfds)) {
d6073e27
F
3027 BIO_printf(bio_s_out,
3028 "Error waiting for client response\n");
0f113f3e
MC
3029 ERR_print_errors(bio_err);
3030 goto err;
3031 }
075c8795 3032 /*
049f3655 3033 * We're not actually expecting any data here and we ignore
075c8795
MC
3034 * any that is sent. This is just to force the handshake that
3035 * we're expecting to come from the client. If they haven't
3036 * sent one there's not much we can do.
3037 */
3038 BIO_gets(io, buf, bufsize - 1);
0f113f3e
MC
3039 }
3040
3041 BIO_puts(io,
3042 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
3043 BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
3044 BIO_puts(io, "<pre>\n");
049f3655 3045 /* BIO_puts(io, OpenSSL_version(OPENSSL_VERSION)); */
0f113f3e
MC
3046 BIO_puts(io, "\n");
3047 for (i = 0; i < local_argc; i++) {
f92beb98
RS
3048 const char *myp;
3049 for (myp = local_argv[i]; *myp; myp++)
3050 switch (*myp) {
3051 case '<':
3052 BIO_puts(io, "&lt;");
3053 break;
3054 case '>':
3055 BIO_puts(io, "&gt;");
3056 break;
3057 case '&':
3058 BIO_puts(io, "&amp;");
3059 break;
3060 default:
3061 BIO_write(io, myp, 1);
3062 break;
3063 }
0f113f3e
MC
3064 BIO_write(io, " ", 1);
3065 }
3066 BIO_puts(io, "\n");
3067
3068 BIO_printf(io,
3069 "Secure Renegotiation IS%s supported\n",
3070 SSL_get_secure_renegotiation_support(con) ?
3071 "" : " NOT");
3072
3073 /*
3074 * The following is evil and should not really be done
3075 */
3076 BIO_printf(io, "Ciphers supported in s_server binary\n");
3077 sk = SSL_get_ciphers(con);
3078 j = sk_SSL_CIPHER_num(sk);
3079 for (i = 0; i < j; i++) {
3080 c = sk_SSL_CIPHER_value(sk, i);
7e1b7485 3081 BIO_printf(io, "%-11s:%-25s ",
0f113f3e
MC
3082 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3083 if ((((i + 1) % 2) == 0) && (i + 1 != j))
3084 BIO_puts(io, "\n");
3085 }
3086 BIO_puts(io, "\n");
3087 p = SSL_get_shared_ciphers(con, buf, bufsize);
3088 if (p != NULL) {
3089 BIO_printf(io,
3090 "---\nCiphers common between both SSL end points:\n");
3091 j = i = 0;
3092 while (*p) {
3093 if (*p == ':') {
3094 BIO_write(io, space, 26 - j);
3095 i++;
3096 j = 0;
3097 BIO_write(io, ((i % 3) ? " " : "\n"), 1);
3098 } else {
3099 BIO_write(io, p, 1);
3100 j++;
3101 }
3102 p++;
3103 }
3104 BIO_puts(io, "\n");
3105 }
3106 ssl_print_sigalgs(io, con);
3107#ifndef OPENSSL_NO_EC
de4d764e 3108 ssl_print_groups(io, con, 0);
0f113f3e 3109#endif
5969a2dd 3110 print_ca_names(io, con);
b577fd0b 3111 BIO_printf(io, (SSL_session_reused(con)
0f113f3e
MC
3112 ? "---\nReused, " : "---\nNew, "));
3113 c = SSL_get_current_cipher(con);
3114 BIO_printf(io, "%s, Cipher is %s\n",
3115 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3116 SSL_SESSION_print(io, SSL_get_session(con));
3117 BIO_printf(io, "---\n");
3118 print_stats(io, SSL_get_SSL_CTX(con));
3119 BIO_printf(io, "---\n");
3120 peer = SSL_get_peer_certificate(con);
3121 if (peer != NULL) {
3122 BIO_printf(io, "Client certificate\n");
3123 X509_print(io, peer);
3124 PEM_write_bio_X509(io, peer);
049f3655
F
3125 X509_free(peer);
3126 peer = NULL;
0f113f3e
MC
3127 } else
3128 BIO_puts(io, "no client certificate available\n");
3129 BIO_puts(io, "</BODY></HTML>\r\n\r\n");
3130 break;
3131 } else if ((www == 2 || www == 3)
3132 && (strncmp("GET /", buf, 5) == 0)) {
3133 BIO *file;
3134 char *p, *e;
3135 static const char *text =
3136 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
3137
3138 /* skip the '/' */
3139 p = &(buf[5]);
3140
3141 dot = 1;
3142 for (e = p; *e != '\0'; e++) {
3143 if (e[0] == ' ')
3144 break;
3145
3146 switch (dot) {
3147 case 1:
3148 dot = (e[0] == '.') ? 2 : 0;
3149 break;
3150 case 2:
3151 dot = (e[0] == '.') ? 3 : 0;
3152 break;
3153 case 3:
3154 dot = (e[0] == '/') ? -1 : 0;
3155 break;
3156 }
3157 if (dot == 0)
3158 dot = (e[0] == '/') ? 1 : 0;
3159 }
3160 dot = (dot == 3) || (dot == -1); /* filename contains ".."
3161 * component */
3162
3163 if (*e == '\0') {
3164 BIO_puts(io, text);
3165 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
3166 break;
3167 }
3168 *e = '\0';
3169
3170 if (dot) {
3171 BIO_puts(io, text);
3172 BIO_printf(io, "'%s' contains '..' reference\r\n", p);
3173 break;
3174 }
3175
3176 if (*p == '/') {
3177 BIO_puts(io, text);
3178 BIO_printf(io, "'%s' is an invalid path\r\n", p);
3179 break;
3180 }
d02b48c6 3181
0f113f3e
MC
3182 /* if a directory, do the index thang */
3183 if (app_isdir(p) > 0) {
0f113f3e
MC
3184 BIO_puts(io, text);
3185 BIO_printf(io, "'%s' is a directory\r\n", p);
3186 break;
0f113f3e
MC
3187 }
3188
3189 if ((file = BIO_new_file(p, "r")) == NULL) {
3190 BIO_puts(io, text);
3191 BIO_printf(io, "Error opening '%s'\r\n", p);
3192 ERR_print_errors(io);
3193 break;
3194 }
3195
3196 if (!s_quiet)
3197 BIO_printf(bio_err, "FILE:%s\n", p);
3198
3199 if (www == 2) {
3200 i = strlen(p);
3201 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
3202 ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
3203 ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
3204 BIO_puts(io,
3205 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
3206 else
3207 BIO_puts(io,
3208 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
3209 }
3210 /* send the file */
3211 for (;;) {
3212 i = BIO_read(file, buf, bufsize);
3213 if (i <= 0)
3214 break;
d02b48c6 3215
dfeab068 3216#ifdef RENEG
0f113f3e 3217 total_bytes += i;
7768e116 3218 BIO_printf(bio_err, "%d\n", i);
0f113f3e
MC
3219 if (total_bytes > 3 * 1024) {
3220 total_bytes = 0;
7768e116 3221 BIO_printf(bio_err, "RENEGOTIATE\n");
0f113f3e
MC
3222 SSL_renegotiate(con);
3223 }
3224#endif
3225
3226 for (j = 0; j < i;) {
58964a49 3227#ifdef RENEG
54463e4f
F
3228 static count = 0;
3229 if (++count == 13) {
3230 SSL_renegotiate(con);
0f113f3e
MC
3231 }
3232#endif
3233 k = BIO_write(io, &(buf[j]), i - j);
3234 if (k <= 0) {
d6073e27
F
3235 if (!BIO_should_retry(io)
3236 && !SSL_waiting_for_async(con))
0f113f3e
MC
3237 goto write_error;
3238 else {
3239 BIO_printf(bio_s_out, "rwrite W BLOCK\n");
3240 }
3241 } else {
3242 j += k;
3243 }
3244 }
3245 }
3246 write_error:
3247 BIO_free(file);
3248 break;
3249 }
3250 }
3251
3252 for (;;) {
3253 i = (int)BIO_flush(io);
3254 if (i <= 0) {
3255 if (!BIO_should_retry(io))
3256 break;
3257 } else
3258 break;
3259 }
3260 end:
0f113f3e
MC
3261 /* make sure we re-use sessions */
3262 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
d02b48c6 3263
0f113f3e 3264 err:
0f113f3e
MC
3265 if (ret >= 0)
3266 BIO_printf(bio_s_out, "ACCEPT\n");
b548a1f1 3267 OPENSSL_free(buf);
ca3a82c3 3268 BIO_free_all(io);
0f113f3e
MC
3269 return (ret);
3270}
d02b48c6 3271
72d0bc84 3272static int rev_body(int s, int stype, int prot, unsigned char *context)
0f113f3e
MC
3273{
3274 char *buf = NULL;
3275 int i;
3276 int ret = 1;
3277 SSL *con;
3278 BIO *io, *ssl_bio, *sbio;
4f3df8be 3279
68dc6824 3280 buf = app_malloc(bufsize, "server rev buffer");
0f113f3e
MC
3281 io = BIO_new(BIO_f_buffer());
3282 ssl_bio = BIO_new(BIO_f_ssl());
3283 if ((io == NULL) || (ssl_bio == NULL))
3284 goto err;
4f3df8be 3285
0f113f3e
MC
3286 /* lets make the output buffer a reasonable size */
3287 if (!BIO_set_write_buffer_size(io, bufsize))
3288 goto err;
4f3df8be 3289
0f113f3e
MC
3290 if ((con = SSL_new(ctx)) == NULL)
3291 goto err;
e481f9b9 3292
0f113f3e
MC
3293 if (s_tlsextdebug) {
3294 SSL_set_tlsext_debug_callback(con, tlsext_cb);
3295 SSL_set_tlsext_debug_arg(con, bio_s_out);
3296 }
2234212c 3297 if (context != NULL
d6073e27
F
3298 && !SSL_set_session_id_context(con, context,
3299 strlen((char *)context))) {
ac59d705
MC
3300 ERR_print_errors(bio_err);
3301 goto err;
3302 }
0f113f3e
MC
3303
3304 sbio = BIO_new_socket(s, BIO_NOCLOSE);
3305 SSL_set_bio(con, sbio, sbio);
3306 SSL_set_accept_state(con);
3307
3308 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3309 BIO_push(io, ssl_bio);
4f3df8be 3310#ifdef CHARSET_EBCDIC
0f113f3e 3311 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
4f3df8be
DSH
3312#endif
3313
0f113f3e 3314 if (s_debug) {
0f113f3e
MC
3315 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3316 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3317 }
3318 if (s_msg) {
4f3df8be 3319#ifndef OPENSSL_NO_SSL_TRACE
0f113f3e
MC
3320 if (s_msg == 2)
3321 SSL_set_msg_callback(con, SSL_trace);
3322 else
3323#endif
3324 SSL_set_msg_callback(con, msg_cb);
3325 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3326 }
3327
3328 for (;;) {
3329 i = BIO_do_handshake(io);
3330 if (i > 0)
3331 break;
3332 if (!BIO_should_retry(io)) {
3333 BIO_puts(bio_err, "CONNECTION FAILURE\n");
3334 ERR_print_errors(bio_err);
3335 goto end;
3336 }
4e7e6230
DSH
3337#ifndef OPENSSL_NO_SRP
3338 if (BIO_should_io_special(io)
3339 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3340 BIO_printf(bio_s_out, "LOOKUP renego during accept\n");
380f18ed 3341 SRP_user_pwd_free(srp_callback_parm.user);
4e7e6230 3342 srp_callback_parm.user =
380f18ed
EK
3343 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3344 srp_callback_parm.login);
4e7e6230
DSH
3345 if (srp_callback_parm.user)
3346 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3347 srp_callback_parm.user->info);
3348 else
3349 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3350 continue;
3351 }
3352#endif
0f113f3e
MC
3353 }
3354 BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
ecf3a1fb 3355 print_ssl_summary(con);
0f113f3e
MC
3356
3357 for (;;) {
3358 i = BIO_gets(io, buf, bufsize - 1);
3359 if (i < 0) { /* error */
3360 if (!BIO_should_retry(io)) {
3361 if (!s_quiet)
3362 ERR_print_errors(bio_err);
3363 goto err;
3364 } else {
3365 BIO_printf(bio_s_out, "read R BLOCK\n");
4e7e6230
DSH
3366#ifndef OPENSSL_NO_SRP
3367 if (BIO_should_io_special(io)
3368 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3369 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
380f18ed 3370 SRP_user_pwd_free(srp_callback_parm.user);
4e7e6230 3371 srp_callback_parm.user =
380f18ed
EK
3372 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3373 srp_callback_parm.login);
4e7e6230
DSH
3374 if (srp_callback_parm.user)
3375 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3376 srp_callback_parm.user->info);
3377 else
3378 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3379 continue;
3380 }
3381#endif
1fbab1dc 3382#if !defined(OPENSSL_SYS_MSDOS)
0f113f3e
MC
3383 sleep(1);
3384#endif
3385 continue;
3386 }
3387 } else if (i == 0) { /* end of input */
3388 ret = 1;
3389 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3390 goto end;
3391 } else {
3392 char *p = buf + i - 1;
3393 while (i && (*p == '\n' || *p == '\r')) {
3394 p--;
3395 i--;
3396 }
86885c28 3397 if (!s_ign_eof && (i == 5) && (strncmp(buf, "CLOSE", 5) == 0)) {
0f113f3e
MC
3398 ret = 1;
3399 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3400 goto end;
3401 }
3402 BUF_reverse((unsigned char *)buf, NULL, i);
3403 buf[i] = '\n';
3404 BIO_write(io, buf, i + 1);
3405 for (;;) {
3406 i = BIO_flush(io);
3407 if (i > 0)
3408 break;
3409 if (!BIO_should_retry(io))
3410 goto end;
3411 }
3412 }
3413 }
3414 end:
3415 /* make sure we re-use sessions */
3416 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
3417
3418 err:
3419
b548a1f1 3420 OPENSSL_free(buf);
ca3a82c3 3421 BIO_free_all(io);
0f113f3e
MC
3422 return (ret);
3423}
4f3df8be 3424
1aa0d947
GT
3425#define MAX_SESSION_ID_ATTEMPTS 10
3426static int generate_session_id(const SSL *ssl, unsigned char *id,
0f113f3e
MC
3427 unsigned int *id_len)
3428{
3429 unsigned int count = 0;
3430 do {
266483d2
MC
3431 if (RAND_bytes(id, *id_len) <= 0)
3432 return 0;
0f113f3e
MC
3433 /*
3434 * Prefix the session_id with the required prefix. NB: If our prefix
3435 * is too long, clip it - but there will be worse effects anyway, eg.
3436 * the server could only possibly create 1 session ID (ie. the
3437 * prefix!) so all future session negotiations will fail due to
3438 * conflicts.
3439 */
3440 memcpy(id, session_id_prefix,
3441 (strlen(session_id_prefix) < *id_len) ?
3442 strlen(session_id_prefix) : *id_len);
3443 }
3444 while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3445 (++count < MAX_SESSION_ID_ATTEMPTS));
3446 if (count >= MAX_SESSION_ID_ATTEMPTS)
3447 return 0;
3448 return 1;
3449}
3450
3451/*
3452 * By default s_server uses an in-memory cache which caches SSL_SESSION
35b0ea4e
DSH
3453 * structures without any serialisation. This hides some bugs which only
3454 * become apparent in deployed servers. By implementing a basic external
3455 * session cache some issues can be debugged using s_server.
3456 */
3457
0f113f3e
MC
3458typedef struct simple_ssl_session_st {
3459 unsigned char *id;
3460 unsigned int idlen;
3461 unsigned char *der;
3462 int derlen;
3463 struct simple_ssl_session_st *next;
3464} simple_ssl_session;
35b0ea4e
DSH
3465
3466static simple_ssl_session *first = NULL;
3467
3468static int add_session(SSL *ssl, SSL_SESSION *session)
0f113f3e 3469{
b4faea50 3470 simple_ssl_session *sess = app_malloc(sizeof(*sess), "get session");
0f113f3e 3471 unsigned char *p;
35b0ea4e 3472
0f113f3e
MC
3473 SSL_SESSION_get_id(session, &sess->idlen);
3474 sess->derlen = i2d_SSL_SESSION(session, NULL);
7e1b7485
RS
3475 if (sess->derlen < 0) {
3476 BIO_printf(bio_err, "Error encoding session\n");
a194ee7b 3477 OPENSSL_free(sess);
7e1b7485
RS
3478 return 0;
3479 }
35b0ea4e 3480
7644a9ae 3481 sess->id = OPENSSL_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
68dc6824
RS
3482 sess->der = app_malloc(sess->derlen, "get session buffer");
3483 if (!sess->id) {
7e1b7485 3484 BIO_printf(bio_err, "Out of memory adding to external cache\n");
a194ee7b
RS
3485 OPENSSL_free(sess->id);
3486 OPENSSL_free(sess->der);
918bb865
MC
3487 OPENSSL_free(sess);
3488 return 0;
3489 }
0f113f3e 3490 p = sess->der;
7e1b7485
RS
3491
3492 /* Assume it still works. */
3493 if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
ce6766de 3494 BIO_printf(bio_err, "Unexpected session encoding length\n");
a194ee7b
RS
3495 OPENSSL_free(sess->id);
3496 OPENSSL_free(sess->der);
3497 OPENSSL_free(sess);
ac59d705
MC
3498 return 0;
3499 }
35b0ea4e 3500
0f113f3e
MC
3501 sess->next = first;
3502 first = sess;
3503 BIO_printf(bio_err, "New session added to external cache\n");
3504 return 0;
3505}
35b0ea4e 3506
b6981744 3507static SSL_SESSION *get_session(SSL *ssl, const unsigned char *id, int idlen,
0f113f3e
MC
3508 int *do_copy)
3509{
3510 simple_ssl_session *sess;
3511 *do_copy = 0;
3512 for (sess = first; sess; sess = sess->next) {
3513 if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3514 const unsigned char *p = sess->der;
3515 BIO_printf(bio_err, "Lookup session: cache hit\n");
3516 return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3517 }
3518 }
3519 BIO_printf(bio_err, "Lookup session: cache miss\n");
3520 return NULL;
3521}
35b0ea4e
DSH
3522
3523static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
0f113f3e
MC
3524{
3525 simple_ssl_session *sess, *prev = NULL;
3526 const unsigned char *id;
3527 unsigned int idlen;
3528 id = SSL_SESSION_get_id(session, &idlen);
3529 for (sess = first; sess; sess = sess->next) {
3530 if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3531 if (prev)
3532 prev->next = sess->next;
3533 else
3534 first = sess->next;
3535 OPENSSL_free(sess->id);
3536 OPENSSL_free(sess->der);
3537 OPENSSL_free(sess);
3538 return;
3539 }
3540 prev = sess;
3541 }
3542}
35b0ea4e
DSH
3543
3544static void init_session_cache_ctx(SSL_CTX *sctx)
0f113f3e
MC
3545{
3546 SSL_CTX_set_session_cache_mode(sctx,
3547 SSL_SESS_CACHE_NO_INTERNAL |
3548 SSL_SESS_CACHE_SERVER);
3549 SSL_CTX_sess_set_new_cb(sctx, add_session);
3550 SSL_CTX_sess_set_get_cb(sctx, get_session);
3551 SSL_CTX_sess_set_remove_cb(sctx, del_session);
3552}
35b0ea4e
DSH
3553
3554static void free_sessions(void)
0f113f3e
MC
3555{
3556 simple_ssl_session *sess, *tsess;
3557 for (sess = first; sess;) {
3558 OPENSSL_free(sess->id);
3559 OPENSSL_free(sess->der);
3560 tsess = sess;
3561 sess = sess->next;
3562 OPENSSL_free(tsess);
3563 }
3564 first = NULL;
3565}
f9e55034 3566
d6073e27 3567#endif /* OPENSSL_NO_SOCK */