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