Revert "TEST: separate out NIST ECC tests from non-NIST"
[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, OPT_IGNORE_UNEXPECTED_EOF,
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 " TEST_CERT},
813     {"cert2", OPT_CERT2, '<',
814      "Certificate file to use for servername; default " 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 and cert 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 and cert 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     {"nbio_test", OPT_NBIO_TEST, '-', "Test with the non-blocking test bio"},
845     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
846     {"quiet", OPT_QUIET, '-', "No server output"},
847     {"no_resume_ephemeral", OPT_NO_RESUME_EPHEMERAL, '-',
848      "Disable caching and tickets if ephemeral (EC)DH is used"},
849     {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
850     {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
851     {"ignore_unexpected_eof", OPT_IGNORE_UNEXPECTED_EOF, '-',
852      "Do not treat lack of close_notify from a peer as an error"},
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     int ignore_unexpected_eof = 0;
1098
1099     /* Init of few remaining global variables */
1100     local_argc = argc;
1101     local_argv = argv;
1102
1103     ctx = ctx2 = NULL;
1104     s_nbio = s_nbio_test = 0;
1105     www = 0;
1106     bio_s_out = NULL;
1107     s_debug = 0;
1108     s_msg = 0;
1109     s_quiet = 0;
1110     s_brief = 0;
1111     async = 0;
1112     use_sendfile = 0;
1113
1114     cctx = SSL_CONF_CTX_new();
1115     vpm = X509_VERIFY_PARAM_new();
1116     if (cctx == NULL || vpm == NULL)
1117         goto end;
1118     SSL_CONF_CTX_set_flags(cctx,
1119                            SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CMDLINE);
1120
1121     prog = opt_init(argc, argv, s_server_options);
1122     while ((o = opt_next()) != OPT_EOF) {
1123         if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
1124             BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
1125             goto end;
1126         }
1127         if (IS_NO_PROT_FLAG(o))
1128             no_prot_opt++;
1129         if (prot_opt == 1 && no_prot_opt) {
1130             BIO_printf(bio_err,
1131                        "Cannot supply both a protocol flag and '-no_<prot>'\n");
1132             goto end;
1133         }
1134         switch (o) {
1135         case OPT_EOF:
1136         case OPT_ERR:
1137  opthelp:
1138             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1139             goto end;
1140         case OPT_HELP:
1141             opt_help(s_server_options);
1142             ret = 0;
1143             goto end;
1144
1145         case OPT_4:
1146 #ifdef AF_UNIX
1147             if (socket_family == AF_UNIX) {
1148                 OPENSSL_free(host); host = NULL;
1149                 OPENSSL_free(port); port = NULL;
1150             }
1151 #endif
1152             socket_family = AF_INET;
1153             break;
1154         case OPT_6:
1155             if (1) {
1156 #ifdef AF_INET6
1157 #ifdef AF_UNIX
1158                 if (socket_family == AF_UNIX) {
1159                     OPENSSL_free(host); host = NULL;
1160                     OPENSSL_free(port); port = NULL;
1161                 }
1162 #endif
1163                 socket_family = AF_INET6;
1164             } else {
1165 #endif
1166                 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
1167                 goto end;
1168             }
1169             break;
1170         case OPT_PORT:
1171 #ifdef AF_UNIX
1172             if (socket_family == AF_UNIX) {
1173                 socket_family = AF_UNSPEC;
1174             }
1175 #endif
1176             OPENSSL_free(port); port = NULL;
1177             OPENSSL_free(host); host = NULL;
1178             if (BIO_parse_hostserv(opt_arg(), NULL, &port, BIO_PARSE_PRIO_SERV) < 1) {
1179                 BIO_printf(bio_err,
1180                            "%s: -port argument malformed or ambiguous\n",
1181                            port);
1182                 goto end;
1183             }
1184             break;
1185         case OPT_ACCEPT:
1186 #ifdef AF_UNIX
1187             if (socket_family == AF_UNIX) {
1188                 socket_family = AF_UNSPEC;
1189             }
1190 #endif
1191             OPENSSL_free(port); port = NULL;
1192             OPENSSL_free(host); host = NULL;
1193             if (BIO_parse_hostserv(opt_arg(), &host, &port, BIO_PARSE_PRIO_SERV) < 1) {
1194                 BIO_printf(bio_err,
1195                            "%s: -accept argument malformed or ambiguous\n",
1196                            port);
1197                 goto end;
1198             }
1199             break;
1200 #ifdef AF_UNIX
1201         case OPT_UNIX:
1202             socket_family = AF_UNIX;
1203             OPENSSL_free(host); host = OPENSSL_strdup(opt_arg());
1204             OPENSSL_free(port); port = NULL;
1205             break;
1206         case OPT_UNLINK:
1207             unlink_unix_path = 1;
1208             break;
1209 #endif
1210         case OPT_NACCEPT:
1211             naccept = atol(opt_arg());
1212             break;
1213         case OPT_VERIFY:
1214             s_server_verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
1215             verify_args.depth = atoi(opt_arg());
1216             if (!s_quiet)
1217                 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
1218             break;
1219         case OPT_UPPER_V_VERIFY:
1220             s_server_verify =
1221                 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1222                 SSL_VERIFY_CLIENT_ONCE;
1223             verify_args.depth = atoi(opt_arg());
1224             if (!s_quiet)
1225                 BIO_printf(bio_err,
1226                            "verify depth is %d, must return a certificate\n",
1227                            verify_args.depth);
1228             break;
1229         case OPT_CONTEXT:
1230             context = (unsigned char *)opt_arg();
1231             break;
1232         case OPT_CERT:
1233             s_cert_file = opt_arg();
1234             break;
1235         case OPT_NAMEOPT:
1236             if (!set_nameopt(opt_arg()))
1237                 goto end;
1238             break;
1239         case OPT_CRL:
1240             crl_file = opt_arg();
1241             break;
1242         case OPT_CRL_DOWNLOAD:
1243             crl_download = 1;
1244             break;
1245         case OPT_SERVERINFO:
1246             s_serverinfo_file = opt_arg();
1247             break;
1248         case OPT_CERTFORM:
1249             if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_cert_format))
1250                 goto opthelp;
1251             break;
1252         case OPT_KEY:
1253             s_key_file = opt_arg();
1254             break;
1255         case OPT_KEYFORM:
1256             if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_key_format))
1257                 goto opthelp;
1258             break;
1259         case OPT_PASS:
1260             passarg = opt_arg();
1261             break;
1262         case OPT_CERT_CHAIN:
1263             s_chain_file = opt_arg();
1264             break;
1265         case OPT_DHPARAM:
1266 #ifndef OPENSSL_NO_DH
1267             dhfile = opt_arg();
1268 #endif
1269             break;
1270         case OPT_DCERTFORM:
1271             if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_dcert_format))
1272                 goto opthelp;
1273             break;
1274         case OPT_DCERT:
1275             s_dcert_file = opt_arg();
1276             break;
1277         case OPT_DKEYFORM:
1278             if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_dkey_format))
1279                 goto opthelp;
1280             break;
1281         case OPT_DPASS:
1282             dpassarg = opt_arg();
1283             break;
1284         case OPT_DKEY:
1285             s_dkey_file = opt_arg();
1286             break;
1287         case OPT_DCERT_CHAIN:
1288             s_dchain_file = opt_arg();
1289             break;
1290         case OPT_NOCERT:
1291             nocert = 1;
1292             break;
1293         case OPT_CAPATH:
1294             CApath = opt_arg();
1295             break;
1296         case OPT_NOCAPATH:
1297             noCApath = 1;
1298             break;
1299         case OPT_CHAINCAPATH:
1300             chCApath = opt_arg();
1301             break;
1302         case OPT_VERIFYCAPATH:
1303             vfyCApath = opt_arg();
1304             break;
1305         case OPT_CASTORE:
1306             CAstore = opt_arg();
1307             break;
1308         case OPT_NOCASTORE:
1309             noCAstore = 1;
1310             break;
1311         case OPT_CHAINCASTORE:
1312             chCAstore = opt_arg();
1313             break;
1314         case OPT_VERIFYCASTORE:
1315             vfyCAstore = opt_arg();
1316             break;
1317         case OPT_NO_CACHE:
1318             no_cache = 1;
1319             break;
1320         case OPT_EXT_CACHE:
1321             ext_cache = 1;
1322             break;
1323         case OPT_CRLFORM:
1324             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1325                 goto opthelp;
1326             break;
1327         case OPT_S_CASES:
1328         case OPT_S_NUM_TICKETS:
1329         case OPT_ANTI_REPLAY:
1330         case OPT_NO_ANTI_REPLAY:
1331             if (ssl_args == NULL)
1332                 ssl_args = sk_OPENSSL_STRING_new_null();
1333             if (ssl_args == NULL
1334                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1335                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1336                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1337                 goto end;
1338             }
1339             break;
1340         case OPT_V_CASES:
1341             if (!opt_verify(o, vpm))
1342                 goto end;
1343             vpmtouched++;
1344             break;
1345         case OPT_X_CASES:
1346             if (!args_excert(o, &exc))
1347                 goto end;
1348             break;
1349         case OPT_VERIFY_RET_ERROR:
1350             verify_args.return_error = 1;
1351             break;
1352         case OPT_VERIFY_QUIET:
1353             verify_args.quiet = 1;
1354             break;
1355         case OPT_BUILD_CHAIN:
1356             build_chain = 1;
1357             break;
1358         case OPT_CAFILE:
1359             CAfile = opt_arg();
1360             break;
1361         case OPT_NOCAFILE:
1362             noCAfile = 1;
1363             break;
1364         case OPT_CHAINCAFILE:
1365             chCAfile = opt_arg();
1366             break;
1367         case OPT_VERIFYCAFILE:
1368             vfyCAfile = opt_arg();
1369             break;
1370         case OPT_NBIO:
1371             s_nbio = 1;
1372             break;
1373         case OPT_NBIO_TEST:
1374             s_nbio = s_nbio_test = 1;
1375             break;
1376         case OPT_IGN_EOF:
1377             s_ign_eof = 1;
1378             break;
1379         case OPT_NO_IGN_EOF:
1380             s_ign_eof = 0;
1381             break;
1382         case OPT_DEBUG:
1383             s_debug = 1;
1384             break;
1385         case OPT_TLSEXTDEBUG:
1386             s_tlsextdebug = 1;
1387             break;
1388         case OPT_STATUS:
1389 #ifndef OPENSSL_NO_OCSP
1390             s_tlsextstatus = 1;
1391 #endif
1392             break;
1393         case OPT_STATUS_VERBOSE:
1394 #ifndef OPENSSL_NO_OCSP
1395             s_tlsextstatus = tlscstatp.verbose = 1;
1396 #endif
1397             break;
1398         case OPT_STATUS_TIMEOUT:
1399 #ifndef OPENSSL_NO_OCSP
1400             s_tlsextstatus = 1;
1401             tlscstatp.timeout = atoi(opt_arg());
1402 #endif
1403             break;
1404         case OPT_STATUS_URL:
1405 #ifndef OPENSSL_NO_OCSP
1406             s_tlsextstatus = 1;
1407             if (!OSSL_HTTP_parse_url(opt_arg(),
1408                                      &tlscstatp.host, &tlscstatp.port,
1409                                      &tlscstatp.path, &tlscstatp.use_ssl)) {
1410                 BIO_printf(bio_err, "Error parsing URL\n");
1411                 goto end;
1412             }
1413 #endif
1414             break;
1415         case OPT_STATUS_FILE:
1416 #ifndef OPENSSL_NO_OCSP
1417             s_tlsextstatus = 1;
1418             tlscstatp.respin = opt_arg();
1419 #endif
1420             break;
1421         case OPT_MSG:
1422             s_msg = 1;
1423             break;
1424         case OPT_MSGFILE:
1425             bio_s_msg = BIO_new_file(opt_arg(), "w");
1426             break;
1427         case OPT_TRACE:
1428 #ifndef OPENSSL_NO_SSL_TRACE
1429             s_msg = 2;
1430 #endif
1431             break;
1432         case OPT_SECURITY_DEBUG:
1433             sdebug = 1;
1434             break;
1435         case OPT_SECURITY_DEBUG_VERBOSE:
1436             sdebug = 2;
1437             break;
1438         case OPT_STATE:
1439             state = 1;
1440             break;
1441         case OPT_CRLF:
1442             s_crlf = 1;
1443             break;
1444         case OPT_QUIET:
1445             s_quiet = 1;
1446             break;
1447         case OPT_BRIEF:
1448             s_quiet = s_brief = verify_args.quiet = 1;
1449             break;
1450         case OPT_NO_DHE:
1451 #ifndef OPENSSL_NO_DH
1452             no_dhe = 1;
1453 #endif
1454             break;
1455         case OPT_NO_RESUME_EPHEMERAL:
1456             no_resume_ephemeral = 1;
1457             break;
1458         case OPT_PSK_IDENTITY:
1459             psk_identity = opt_arg();
1460             break;
1461         case OPT_PSK_HINT:
1462 #ifndef OPENSSL_NO_PSK
1463             psk_identity_hint = opt_arg();
1464 #endif
1465             break;
1466         case OPT_PSK:
1467             for (p = psk_key = opt_arg(); *p; p++) {
1468                 if (isxdigit(_UC(*p)))
1469                     continue;
1470                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1471                 goto end;
1472             }
1473             break;
1474         case OPT_PSK_SESS:
1475             psksessf = opt_arg();
1476             break;
1477         case OPT_SRPVFILE:
1478 #ifndef OPENSSL_NO_SRP
1479             srp_verifier_file = opt_arg();
1480             if (min_version < TLS1_VERSION)
1481                 min_version = TLS1_VERSION;
1482 #endif
1483             break;
1484         case OPT_SRPUSERSEED:
1485 #ifndef OPENSSL_NO_SRP
1486             srpuserseed = opt_arg();
1487             if (min_version < TLS1_VERSION)
1488                 min_version = TLS1_VERSION;
1489 #endif
1490             break;
1491         case OPT_REV:
1492             rev = 1;
1493             break;
1494         case OPT_WWW:
1495             www = 1;
1496             break;
1497         case OPT_UPPER_WWW:
1498             www = 2;
1499             break;
1500         case OPT_HTTP:
1501             www = 3;
1502             break;
1503         case OPT_SSL_CONFIG:
1504             ssl_config = opt_arg();
1505             break;
1506         case OPT_SSL3:
1507             min_version = SSL3_VERSION;
1508             max_version = SSL3_VERSION;
1509             break;
1510         case OPT_TLS1_3:
1511             min_version = TLS1_3_VERSION;
1512             max_version = TLS1_3_VERSION;
1513             break;
1514         case OPT_TLS1_2:
1515             min_version = TLS1_2_VERSION;
1516             max_version = TLS1_2_VERSION;
1517             break;
1518         case OPT_TLS1_1:
1519             min_version = TLS1_1_VERSION;
1520             max_version = TLS1_1_VERSION;
1521             break;
1522         case OPT_TLS1:
1523             min_version = TLS1_VERSION;
1524             max_version = TLS1_VERSION;
1525             break;
1526         case OPT_DTLS:
1527 #ifndef OPENSSL_NO_DTLS
1528             meth = DTLS_server_method();
1529             socket_type = SOCK_DGRAM;
1530 #endif
1531             break;
1532         case OPT_DTLS1:
1533 #ifndef OPENSSL_NO_DTLS
1534             meth = DTLS_server_method();
1535             min_version = DTLS1_VERSION;
1536             max_version = DTLS1_VERSION;
1537             socket_type = SOCK_DGRAM;
1538 #endif
1539             break;
1540         case OPT_DTLS1_2:
1541 #ifndef OPENSSL_NO_DTLS
1542             meth = DTLS_server_method();
1543             min_version = DTLS1_2_VERSION;
1544             max_version = DTLS1_2_VERSION;
1545             socket_type = SOCK_DGRAM;
1546 #endif
1547             break;
1548         case OPT_SCTP:
1549 #ifndef OPENSSL_NO_SCTP
1550             protocol = IPPROTO_SCTP;
1551 #endif
1552             break;
1553         case OPT_SCTP_LABEL_BUG:
1554 #ifndef OPENSSL_NO_SCTP
1555             sctp_label_bug = 1;
1556 #endif
1557             break;
1558         case OPT_TIMEOUT:
1559 #ifndef OPENSSL_NO_DTLS
1560             enable_timeouts = 1;
1561 #endif
1562             break;
1563         case OPT_MTU:
1564 #ifndef OPENSSL_NO_DTLS
1565             socket_mtu = atol(opt_arg());
1566 #endif
1567             break;
1568         case OPT_LISTEN:
1569 #ifndef OPENSSL_NO_DTLS
1570             dtlslisten = 1;
1571 #endif
1572             break;
1573         case OPT_STATELESS:
1574             stateless = 1;
1575             break;
1576         case OPT_ID_PREFIX:
1577             session_id_prefix = opt_arg();
1578             break;
1579         case OPT_ENGINE:
1580 #ifndef OPENSSL_NO_ENGINE
1581             engine = setup_engine(opt_arg(), s_debug);
1582 #endif
1583             break;
1584         case OPT_R_CASES:
1585             if (!opt_rand(o))
1586                 goto end;
1587             break;
1588         case OPT_PROV_CASES:
1589             if (!opt_provider(o))
1590                 goto end;
1591             break;
1592         case OPT_SERVERNAME:
1593             tlsextcbp.servername = opt_arg();
1594             break;
1595         case OPT_SERVERNAME_FATAL:
1596             tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
1597             break;
1598         case OPT_CERT2:
1599             s_cert_file2 = opt_arg();
1600             break;
1601         case OPT_KEY2:
1602             s_key_file2 = opt_arg();
1603             break;
1604         case OPT_NEXTPROTONEG:
1605 # ifndef OPENSSL_NO_NEXTPROTONEG
1606             next_proto_neg_in = opt_arg();
1607 #endif
1608             break;
1609         case OPT_ALPN:
1610             alpn_in = opt_arg();
1611             break;
1612         case OPT_SRTP_PROFILES:
1613 #ifndef OPENSSL_NO_SRTP
1614             srtp_profiles = opt_arg();
1615 #endif
1616             break;
1617         case OPT_KEYMATEXPORT:
1618             keymatexportlabel = opt_arg();
1619             break;
1620         case OPT_KEYMATEXPORTLEN:
1621             keymatexportlen = atoi(opt_arg());
1622             break;
1623         case OPT_ASYNC:
1624             async = 1;
1625             break;
1626         case OPT_MAX_SEND_FRAG:
1627             max_send_fragment = atoi(opt_arg());
1628             break;
1629         case OPT_SPLIT_SEND_FRAG:
1630             split_send_fragment = atoi(opt_arg());
1631             break;
1632         case OPT_MAX_PIPELINES:
1633             max_pipelines = atoi(opt_arg());
1634             break;
1635         case OPT_READ_BUF:
1636             read_buf_len = atoi(opt_arg());
1637             break;
1638         case OPT_KEYLOG_FILE:
1639             keylog_file = opt_arg();
1640             break;
1641         case OPT_MAX_EARLY:
1642             max_early_data = atoi(opt_arg());
1643             if (max_early_data < 0) {
1644                 BIO_printf(bio_err, "Invalid value for max_early_data\n");
1645                 goto end;
1646             }
1647             break;
1648         case OPT_RECV_MAX_EARLY:
1649             recv_max_early_data = atoi(opt_arg());
1650             if (recv_max_early_data < 0) {
1651                 BIO_printf(bio_err, "Invalid value for recv_max_early_data\n");
1652                 goto end;
1653             }
1654             break;
1655         case OPT_EARLY_DATA:
1656             early_data = 1;
1657             if (max_early_data == -1)
1658                 max_early_data = SSL3_RT_MAX_PLAIN_LENGTH;
1659             break;
1660         case OPT_HTTP_SERVER_BINMODE:
1661             http_server_binmode = 1;
1662             break;
1663         case OPT_NOCANAMES:
1664             no_ca_names = 1;
1665             break;
1666         case OPT_SENDFILE:
1667 #ifndef OPENSSL_NO_KTLS
1668             use_sendfile = 1;
1669 #endif
1670             break;
1671         case OPT_IGNORE_UNEXPECTED_EOF:
1672             ignore_unexpected_eof = 1;
1673             break;
1674         }
1675     }
1676     argc = opt_num_rest();
1677     argv = opt_rest();
1678
1679 #ifndef OPENSSL_NO_NEXTPROTONEG
1680     if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) {
1681         BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n");
1682         goto opthelp;
1683     }
1684 #endif
1685 #ifndef OPENSSL_NO_DTLS
1686     if (www && socket_type == SOCK_DGRAM) {
1687         BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1688         goto end;
1689     }
1690
1691     if (dtlslisten && socket_type != SOCK_DGRAM) {
1692         BIO_printf(bio_err, "Can only use -listen with DTLS\n");
1693         goto end;
1694     }
1695 #endif
1696
1697     if (stateless && socket_type != SOCK_STREAM) {
1698         BIO_printf(bio_err, "Can only use --stateless with TLS\n");
1699         goto end;
1700     }
1701
1702 #ifdef AF_UNIX
1703     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1704         BIO_printf(bio_err,
1705                    "Can't use unix sockets and datagrams together\n");
1706         goto end;
1707     }
1708 #endif
1709     if (early_data && (www > 0 || rev)) {
1710         BIO_printf(bio_err,
1711                    "Can't use -early_data in combination with -www, -WWW, -HTTP, or -rev\n");
1712         goto end;
1713     }
1714
1715 #ifndef OPENSSL_NO_SCTP
1716     if (protocol == IPPROTO_SCTP) {
1717         if (socket_type != SOCK_DGRAM) {
1718             BIO_printf(bio_err, "Can't use -sctp without DTLS\n");
1719             goto end;
1720         }
1721         /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */
1722         socket_type = SOCK_STREAM;
1723     }
1724 #endif
1725
1726 #ifndef OPENSSL_NO_KTLS
1727     if (use_sendfile && www <= 1) {
1728         BIO_printf(bio_err, "Can't use -sendfile without -WWW or -HTTP\n");
1729         goto end;
1730     }
1731 #endif
1732
1733     if (!app_passwd(passarg, dpassarg, &pass, &dpass)) {
1734         BIO_printf(bio_err, "Error getting password\n");
1735         goto end;
1736     }
1737
1738     if (s_key_file == NULL)
1739         s_key_file = s_cert_file;
1740
1741     if (s_key_file2 == NULL)
1742         s_key_file2 = s_cert_file2;
1743
1744     if (!load_excert(&exc))
1745         goto end;
1746
1747     if (nocert == 0) {
1748         s_key = load_key(s_key_file, s_key_format, 0, pass, engine,
1749                          "server certificate private key file");
1750         if (s_key == NULL)
1751             goto end;
1752
1753         s_cert = load_cert_pass(s_cert_file, s_cert_format, pass,
1754                            "server certificate file");
1755
1756         if (s_cert == NULL)
1757             goto end;
1758         if (s_chain_file != NULL) {
1759             if (!load_certs(s_chain_file, &s_chain, NULL,
1760                             "server certificate chain"))
1761                 goto end;
1762         }
1763
1764         if (tlsextcbp.servername != NULL) {
1765             s_key2 = load_key(s_key_file2, s_key_format, 0, pass, engine,
1766                               "second server certificate private key file");
1767             if (s_key2 == NULL)
1768                 goto end;
1769
1770             s_cert2 = load_cert_pass(s_cert_file2, s_cert_format, pass,
1771                                 "second server certificate file");
1772
1773             if (s_cert2 == NULL)
1774                 goto end;
1775         }
1776     }
1777 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1778     if (next_proto_neg_in) {
1779         next_proto.data = next_protos_parse(&next_proto.len, next_proto_neg_in);
1780         if (next_proto.data == NULL)
1781             goto end;
1782     }
1783 #endif
1784     alpn_ctx.data = NULL;
1785     if (alpn_in) {
1786         alpn_ctx.data = next_protos_parse(&alpn_ctx.len, alpn_in);
1787         if (alpn_ctx.data == NULL)
1788             goto end;
1789     }
1790
1791     if (crl_file != NULL) {
1792         X509_CRL *crl;
1793         crl = load_crl(crl_file, crl_format, "CRL");
1794         if (crl == NULL)
1795             goto end;
1796         crls = sk_X509_CRL_new_null();
1797         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1798             BIO_puts(bio_err, "Error adding CRL\n");
1799             ERR_print_errors(bio_err);
1800             X509_CRL_free(crl);
1801             goto end;
1802         }
1803     }
1804
1805     if (s_dcert_file != NULL) {
1806
1807         if (s_dkey_file == NULL)
1808             s_dkey_file = s_dcert_file;
1809
1810         s_dkey = load_key(s_dkey_file, s_dkey_format,
1811                           0, dpass, engine, "second certificate private key file");
1812         if (s_dkey == NULL)
1813             goto end;
1814
1815         s_dcert = load_cert_pass(s_dcert_file, s_dcert_format, dpass,
1816                             "second server certificate file");
1817
1818         if (s_dcert == NULL) {
1819             ERR_print_errors(bio_err);
1820             goto end;
1821         }
1822         if (s_dchain_file != NULL) {
1823             if (!load_certs(s_dchain_file, &s_dchain, NULL,
1824                             "second server certificate chain"))
1825                 goto end;
1826         }
1827
1828     }
1829
1830     if (bio_s_out == NULL) {
1831         if (s_quiet && !s_debug) {
1832             bio_s_out = BIO_new(BIO_s_null());
1833             if (s_msg && bio_s_msg == NULL)
1834                 bio_s_msg = dup_bio_out(FORMAT_TEXT);
1835         } else {
1836             if (bio_s_out == NULL)
1837                 bio_s_out = dup_bio_out(FORMAT_TEXT);
1838         }
1839     }
1840 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC)
1841     if (nocert)
1842 #endif
1843     {
1844         s_cert_file = NULL;
1845         s_key_file = NULL;
1846         s_dcert_file = NULL;
1847         s_dkey_file = NULL;
1848         s_cert_file2 = NULL;
1849         s_key_file2 = NULL;
1850     }
1851
1852     ctx = SSL_CTX_new(meth);
1853     if (ctx == NULL) {
1854         ERR_print_errors(bio_err);
1855         goto end;
1856     }
1857
1858     SSL_CTX_clear_mode(ctx, SSL_MODE_AUTO_RETRY);
1859
1860     if (sdebug)
1861         ssl_ctx_security_debug(ctx, sdebug);
1862
1863     if (!config_ctx(cctx, ssl_args, ctx))
1864         goto end;
1865
1866     if (ssl_config) {
1867         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1868             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1869                        ssl_config);
1870             ERR_print_errors(bio_err);
1871             goto end;
1872         }
1873     }
1874 #ifndef OPENSSL_NO_SCTP
1875     if (protocol == IPPROTO_SCTP && sctp_label_bug == 1)
1876         SSL_CTX_set_mode(ctx, SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG);
1877 #endif
1878
1879     if (min_version != 0
1880         && SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1881         goto end;
1882     if (max_version != 0
1883         && SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1884         goto end;
1885
1886     if (session_id_prefix) {
1887         if (strlen(session_id_prefix) >= 32)
1888             BIO_printf(bio_err,
1889                        "warning: id_prefix is too long, only one new session will be possible\n");
1890         if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1891             BIO_printf(bio_err, "error setting 'id_prefix'\n");
1892             ERR_print_errors(bio_err);
1893             goto end;
1894         }
1895         BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1896     }
1897     if (exc != NULL)
1898         ssl_ctx_set_excert(ctx, exc);
1899
1900     if (state)
1901         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1902     if (no_cache)
1903         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1904     else if (ext_cache)
1905         init_session_cache_ctx(ctx);
1906     else
1907         SSL_CTX_sess_set_cache_size(ctx, 128);
1908
1909     if (async) {
1910         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1911     }
1912
1913     if (no_ca_names) {
1914         SSL_CTX_set_options(ctx, SSL_OP_DISABLE_TLSEXT_CA_NAMES);
1915     }
1916
1917     if (ignore_unexpected_eof)
1918         SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF);
1919
1920     if (max_send_fragment > 0
1921         && !SSL_CTX_set_max_send_fragment(ctx, max_send_fragment)) {
1922         BIO_printf(bio_err, "%s: Max send fragment size %u is out of permitted range\n",
1923                    prog, max_send_fragment);
1924         goto end;
1925     }
1926
1927     if (split_send_fragment > 0
1928         && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1929         BIO_printf(bio_err, "%s: Split send fragment size %u is out of permitted range\n",
1930                    prog, split_send_fragment);
1931         goto end;
1932     }
1933     if (max_pipelines > 0
1934         && !SSL_CTX_set_max_pipelines(ctx, max_pipelines)) {
1935         BIO_printf(bio_err, "%s: Max pipelines %u is out of permitted range\n",
1936                    prog, max_pipelines);
1937         goto end;
1938     }
1939
1940     if (read_buf_len > 0) {
1941         SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1942     }
1943 #ifndef OPENSSL_NO_SRTP
1944     if (srtp_profiles != NULL) {
1945         /* Returns 0 on success! */
1946         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1947             BIO_printf(bio_err, "Error setting SRTP profile\n");
1948             ERR_print_errors(bio_err);
1949             goto end;
1950         }
1951     }
1952 #endif
1953
1954     if (!ctx_set_verify_locations(ctx, CAfile, noCAfile, CApath, noCApath,
1955                                   CAstore, noCAstore)) {
1956         ERR_print_errors(bio_err);
1957         goto end;
1958     }
1959     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1960         BIO_printf(bio_err, "Error setting verify params\n");
1961         ERR_print_errors(bio_err);
1962         goto end;
1963     }
1964
1965     ssl_ctx_add_crls(ctx, crls, 0);
1966
1967     if (!ssl_load_stores(ctx,
1968                          vfyCApath, vfyCAfile, vfyCAstore,
1969                          chCApath, chCAfile, chCAstore,
1970                          crls, crl_download)) {
1971         BIO_printf(bio_err, "Error loading store locations\n");
1972         ERR_print_errors(bio_err);
1973         goto end;
1974     }
1975
1976     if (s_cert2) {
1977         ctx2 = SSL_CTX_new(meth);
1978         if (ctx2 == NULL) {
1979             ERR_print_errors(bio_err);
1980             goto end;
1981         }
1982     }
1983
1984     if (ctx2 != NULL) {
1985         BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
1986
1987         if (sdebug)
1988             ssl_ctx_security_debug(ctx2, sdebug);
1989
1990         if (session_id_prefix) {
1991             if (strlen(session_id_prefix) >= 32)
1992                 BIO_printf(bio_err,
1993                            "warning: id_prefix is too long, only one new session will be possible\n");
1994             if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1995                 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1996                 ERR_print_errors(bio_err);
1997                 goto end;
1998             }
1999             BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
2000         }
2001         if (exc != NULL)
2002             ssl_ctx_set_excert(ctx2, exc);
2003
2004         if (state)
2005             SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
2006
2007         if (no_cache)
2008             SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
2009         else if (ext_cache)
2010             init_session_cache_ctx(ctx2);
2011         else
2012             SSL_CTX_sess_set_cache_size(ctx2, 128);
2013
2014         if (async)
2015             SSL_CTX_set_mode(ctx2, SSL_MODE_ASYNC);
2016
2017         if (!ctx_set_verify_locations(ctx2, CAfile, noCAfile, CApath,
2018                                       noCApath, CAstore, noCAstore)) {
2019             ERR_print_errors(bio_err);
2020             goto end;
2021         }
2022         if (vpmtouched && !SSL_CTX_set1_param(ctx2, vpm)) {
2023             BIO_printf(bio_err, "Error setting verify params\n");
2024             ERR_print_errors(bio_err);
2025             goto end;
2026         }
2027
2028         ssl_ctx_add_crls(ctx2, crls, 0);
2029         if (!config_ctx(cctx, ssl_args, ctx2))
2030             goto end;
2031     }
2032 #ifndef OPENSSL_NO_NEXTPROTONEG
2033     if (next_proto.data)
2034         SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
2035                                               &next_proto);
2036 #endif
2037     if (alpn_ctx.data)
2038         SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
2039
2040 #ifndef OPENSSL_NO_DH
2041     if (!no_dhe) {
2042         DH *dh = NULL;
2043
2044         if (dhfile != NULL)
2045             dh = load_dh_param(dhfile);
2046         else if (s_cert_file != NULL)
2047             dh = load_dh_param(s_cert_file);
2048
2049         if (dh != NULL) {
2050             BIO_printf(bio_s_out, "Setting temp DH parameters\n");
2051         } else {
2052             BIO_printf(bio_s_out, "Using default temp DH parameters\n");
2053         }
2054         (void)BIO_flush(bio_s_out);
2055
2056         if (dh == NULL) {
2057             SSL_CTX_set_dh_auto(ctx, 1);
2058         } else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
2059             BIO_puts(bio_err, "Error setting temp DH parameters\n");
2060             ERR_print_errors(bio_err);
2061             DH_free(dh);
2062             goto end;
2063         }
2064
2065         if (ctx2 != NULL) {
2066             if (!dhfile) {
2067                 DH *dh2 = load_dh_param(s_cert_file2);
2068                 if (dh2 != NULL) {
2069                     BIO_printf(bio_s_out, "Setting temp DH parameters\n");
2070                     (void)BIO_flush(bio_s_out);
2071
2072                     DH_free(dh);
2073                     dh = dh2;
2074                 }
2075             }
2076             if (dh == NULL) {
2077                 SSL_CTX_set_dh_auto(ctx2, 1);
2078             } else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
2079                 BIO_puts(bio_err, "Error setting temp DH parameters\n");
2080                 ERR_print_errors(bio_err);
2081                 DH_free(dh);
2082                 goto end;
2083             }
2084         }
2085         DH_free(dh);
2086     }
2087 #endif
2088
2089     if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
2090         goto end;
2091
2092     if (s_serverinfo_file != NULL
2093         && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
2094         ERR_print_errors(bio_err);
2095         goto end;
2096     }
2097
2098     if (ctx2 != NULL
2099         && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
2100         goto end;
2101
2102     if (s_dcert != NULL) {
2103         if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
2104             goto end;
2105     }
2106
2107     if (no_resume_ephemeral) {
2108         SSL_CTX_set_not_resumable_session_callback(ctx,
2109                                                    not_resumable_sess_cb);
2110
2111         if (ctx2 != NULL)
2112             SSL_CTX_set_not_resumable_session_callback(ctx2,
2113                                                        not_resumable_sess_cb);
2114     }
2115 #ifndef OPENSSL_NO_PSK
2116     if (psk_key != NULL) {
2117         if (s_debug)
2118             BIO_printf(bio_s_out, "PSK key given, setting server callback\n");
2119         SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
2120     }
2121
2122     if (psk_identity_hint != NULL) {
2123         if (min_version == TLS1_3_VERSION) {
2124             BIO_printf(bio_s_out, "PSK warning: there is NO identity hint in TLSv1.3\n");
2125         } else {
2126             if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
2127                 BIO_printf(bio_err, "error setting PSK identity hint to context\n");
2128                 ERR_print_errors(bio_err);
2129                 goto end;
2130             }
2131         }
2132     }
2133 #endif
2134     if (psksessf != NULL) {
2135         BIO *stmp = BIO_new_file(psksessf, "r");
2136
2137         if (stmp == NULL) {
2138             BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
2139             ERR_print_errors(bio_err);
2140             goto end;
2141         }
2142         psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
2143         BIO_free(stmp);
2144         if (psksess == NULL) {
2145             BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
2146             ERR_print_errors(bio_err);
2147             goto end;
2148         }
2149
2150     }
2151
2152     if (psk_key != NULL || psksess != NULL)
2153         SSL_CTX_set_psk_find_session_callback(ctx, psk_find_session_cb);
2154
2155     SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
2156     if (!SSL_CTX_set_session_id_context(ctx,
2157                                         (void *)&s_server_session_id_context,
2158                                         sizeof(s_server_session_id_context))) {
2159         BIO_printf(bio_err, "error setting session id context\n");
2160         ERR_print_errors(bio_err);
2161         goto end;
2162     }
2163
2164     /* Set DTLS cookie generation and verification callbacks */
2165     SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
2166     SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
2167
2168     /* Set TLS1.3 cookie generation and verification callbacks */
2169     SSL_CTX_set_stateless_cookie_generate_cb(ctx, generate_stateless_cookie_callback);
2170     SSL_CTX_set_stateless_cookie_verify_cb(ctx, verify_stateless_cookie_callback);
2171
2172     if (ctx2 != NULL) {
2173         SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
2174         if (!SSL_CTX_set_session_id_context(ctx2,
2175                     (void *)&s_server_session_id_context,
2176                     sizeof(s_server_session_id_context))) {
2177             BIO_printf(bio_err, "error setting session id context\n");
2178             ERR_print_errors(bio_err);
2179             goto end;
2180         }
2181         tlsextcbp.biodebug = bio_s_out;
2182         SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
2183         SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
2184         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
2185         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
2186     }
2187
2188 #ifndef OPENSSL_NO_SRP
2189     if (srp_verifier_file != NULL) {
2190         srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
2191         srp_callback_parm.user = NULL;
2192         srp_callback_parm.login = NULL;
2193         if ((ret =
2194              SRP_VBASE_init(srp_callback_parm.vb,
2195                             srp_verifier_file)) != SRP_NO_ERROR) {
2196             BIO_printf(bio_err,
2197                        "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
2198                        srp_verifier_file, ret);
2199             goto end;
2200         }
2201         SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
2202         SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
2203         SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
2204     } else
2205 #endif
2206     if (CAfile != NULL) {
2207         SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
2208
2209         if (ctx2)
2210             SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
2211     }
2212 #ifndef OPENSSL_NO_OCSP
2213     if (s_tlsextstatus) {
2214         SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
2215         SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
2216         if (ctx2) {
2217             SSL_CTX_set_tlsext_status_cb(ctx2, cert_status_cb);
2218             SSL_CTX_set_tlsext_status_arg(ctx2, &tlscstatp);
2219         }
2220     }
2221 #endif
2222     if (set_keylog_file(ctx, keylog_file))
2223         goto end;
2224
2225     if (max_early_data >= 0)
2226         SSL_CTX_set_max_early_data(ctx, max_early_data);
2227     if (recv_max_early_data >= 0)
2228         SSL_CTX_set_recv_max_early_data(ctx, recv_max_early_data);
2229
2230     if (rev)
2231         server_cb = rev_body;
2232     else if (www)
2233         server_cb = www_body;
2234     else
2235         server_cb = sv_body;
2236 #ifdef AF_UNIX
2237     if (socket_family == AF_UNIX
2238         && unlink_unix_path)
2239         unlink(host);
2240 #endif
2241     do_server(&accept_socket, host, port, socket_family, socket_type, protocol,
2242               server_cb, context, naccept, bio_s_out);
2243     print_stats(bio_s_out, ctx);
2244     ret = 0;
2245  end:
2246     SSL_CTX_free(ctx);
2247     SSL_SESSION_free(psksess);
2248     set_keylog_file(NULL, NULL);
2249     X509_free(s_cert);
2250     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2251     X509_free(s_dcert);
2252     EVP_PKEY_free(s_key);
2253     EVP_PKEY_free(s_dkey);
2254     sk_X509_pop_free(s_chain, X509_free);
2255     sk_X509_pop_free(s_dchain, X509_free);
2256     OPENSSL_free(pass);
2257     OPENSSL_free(dpass);
2258     OPENSSL_free(host);
2259     OPENSSL_free(port);
2260     X509_VERIFY_PARAM_free(vpm);
2261     free_sessions();
2262     OPENSSL_free(tlscstatp.host);
2263     OPENSSL_free(tlscstatp.port);
2264     OPENSSL_free(tlscstatp.path);
2265     SSL_CTX_free(ctx2);
2266     X509_free(s_cert2);
2267     EVP_PKEY_free(s_key2);
2268 #ifndef OPENSSL_NO_NEXTPROTONEG
2269     OPENSSL_free(next_proto.data);
2270 #endif
2271     OPENSSL_free(alpn_ctx.data);
2272     ssl_excert_free(exc);
2273     sk_OPENSSL_STRING_free(ssl_args);
2274     SSL_CONF_CTX_free(cctx);
2275     release_engine(engine);
2276     BIO_free(bio_s_out);
2277     bio_s_out = NULL;
2278     BIO_free(bio_s_msg);
2279     bio_s_msg = NULL;
2280 #ifdef CHARSET_EBCDIC
2281     BIO_meth_free(methods_ebcdic);
2282 #endif
2283     return ret;
2284 }
2285
2286 static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
2287 {
2288     BIO_printf(bio, "%4ld items in the session cache\n",
2289                SSL_CTX_sess_number(ssl_ctx));
2290     BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
2291                SSL_CTX_sess_connect(ssl_ctx));
2292     BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
2293                SSL_CTX_sess_connect_renegotiate(ssl_ctx));
2294     BIO_printf(bio, "%4ld client connects that finished\n",
2295                SSL_CTX_sess_connect_good(ssl_ctx));
2296     BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
2297                SSL_CTX_sess_accept(ssl_ctx));
2298     BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
2299                SSL_CTX_sess_accept_renegotiate(ssl_ctx));
2300     BIO_printf(bio, "%4ld server accepts that finished\n",
2301                SSL_CTX_sess_accept_good(ssl_ctx));
2302     BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
2303     BIO_printf(bio, "%4ld session cache misses\n",
2304                SSL_CTX_sess_misses(ssl_ctx));
2305     BIO_printf(bio, "%4ld session cache timeouts\n",
2306                SSL_CTX_sess_timeouts(ssl_ctx));
2307     BIO_printf(bio, "%4ld callback cache hits\n",
2308                SSL_CTX_sess_cb_hits(ssl_ctx));
2309     BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
2310                SSL_CTX_sess_cache_full(ssl_ctx),
2311                SSL_CTX_sess_get_cache_size(ssl_ctx));
2312 }
2313
2314 static int sv_body(int s, int stype, int prot, unsigned char *context)
2315 {
2316     char *buf = NULL;
2317     fd_set readfds;
2318     int ret = 1, width;
2319     int k, i;
2320     unsigned long l;
2321     SSL *con = NULL;
2322     BIO *sbio;
2323     struct timeval timeout;
2324 #if !(defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS))
2325     struct timeval *timeoutp;
2326 #endif
2327 #ifndef OPENSSL_NO_DTLS
2328 # ifndef OPENSSL_NO_SCTP
2329     int isdtls = (stype == SOCK_DGRAM || prot == IPPROTO_SCTP);
2330 # else
2331     int isdtls = (stype == SOCK_DGRAM);
2332 # endif
2333 #endif
2334
2335     buf = app_malloc(bufsize, "server buffer");
2336     if (s_nbio) {
2337         if (!BIO_socket_nbio(s, 1))
2338             ERR_print_errors(bio_err);
2339         else if (!s_quiet)
2340             BIO_printf(bio_err, "Turned on non blocking io\n");
2341     }
2342
2343     con = SSL_new(ctx);
2344     if (con == NULL) {
2345         ret = -1;
2346         goto err;
2347     }
2348
2349     if (s_tlsextdebug) {
2350         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2351         SSL_set_tlsext_debug_arg(con, bio_s_out);
2352     }
2353
2354     if (context != NULL
2355         && !SSL_set_session_id_context(con, context,
2356                                        strlen((char *)context))) {
2357         BIO_printf(bio_err, "Error setting session id context\n");
2358         ret = -1;
2359         goto err;
2360     }
2361
2362     if (!SSL_clear(con)) {
2363         BIO_printf(bio_err, "Error clearing SSL connection\n");
2364         ret = -1;
2365         goto err;
2366     }
2367 #ifndef OPENSSL_NO_DTLS
2368     if (isdtls) {
2369 # ifndef OPENSSL_NO_SCTP
2370         if (prot == IPPROTO_SCTP)
2371             sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
2372         else
2373 # endif
2374             sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2375
2376         if (enable_timeouts) {
2377             timeout.tv_sec = 0;
2378             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2379             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2380
2381             timeout.tv_sec = 0;
2382             timeout.tv_usec = DGRAM_SND_TIMEOUT;
2383             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2384         }
2385
2386         if (socket_mtu) {
2387             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2388                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2389                            DTLS_get_link_min_mtu(con));
2390                 ret = -1;
2391                 BIO_free(sbio);
2392                 goto err;
2393             }
2394             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2395             if (!DTLS_set_link_mtu(con, socket_mtu)) {
2396                 BIO_printf(bio_err, "Failed to set MTU\n");
2397                 ret = -1;
2398                 BIO_free(sbio);
2399                 goto err;
2400             }
2401         } else
2402             /* want to do MTU discovery */
2403             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2404
2405 # ifndef OPENSSL_NO_SCTP
2406         if (prot != IPPROTO_SCTP)
2407 # endif
2408             /* Turn on cookie exchange. Not necessary for SCTP */
2409             SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
2410     } else
2411 #endif
2412         sbio = BIO_new_socket(s, BIO_NOCLOSE);
2413
2414     if (sbio == NULL) {
2415         BIO_printf(bio_err, "Unable to create BIO\n");
2416         ERR_print_errors(bio_err);
2417         goto err;
2418     }
2419
2420     if (s_nbio_test) {
2421         BIO *test;
2422
2423         test = BIO_new(BIO_f_nbio_test());
2424         sbio = BIO_push(test, sbio);
2425     }
2426
2427     SSL_set_bio(con, sbio, sbio);
2428     SSL_set_accept_state(con);
2429     /* SSL_set_fd(con,s); */
2430
2431     if (s_debug) {
2432         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2433         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2434     }
2435     if (s_msg) {
2436 #ifndef OPENSSL_NO_SSL_TRACE
2437         if (s_msg == 2)
2438             SSL_set_msg_callback(con, SSL_trace);
2439         else
2440 #endif
2441             SSL_set_msg_callback(con, msg_cb);
2442         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2443     }
2444
2445     if (s_tlsextdebug) {
2446         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2447         SSL_set_tlsext_debug_arg(con, bio_s_out);
2448     }
2449
2450     if (early_data) {
2451         int write_header = 1, edret = SSL_READ_EARLY_DATA_ERROR;
2452         size_t readbytes;
2453
2454         while (edret != SSL_READ_EARLY_DATA_FINISH) {
2455             for (;;) {
2456                 edret = SSL_read_early_data(con, buf, bufsize, &readbytes);
2457                 if (edret != SSL_READ_EARLY_DATA_ERROR)
2458                     break;
2459
2460                 switch (SSL_get_error(con, 0)) {
2461                 case SSL_ERROR_WANT_WRITE:
2462                 case SSL_ERROR_WANT_ASYNC:
2463                 case SSL_ERROR_WANT_READ:
2464                     /* Just keep trying - busy waiting */
2465                     continue;
2466                 default:
2467                     BIO_printf(bio_err, "Error reading early data\n");
2468                     ERR_print_errors(bio_err);
2469                     goto err;
2470                 }
2471             }
2472             if (readbytes > 0) {
2473                 if (write_header) {
2474                     BIO_printf(bio_s_out, "Early data received:\n");
2475                     write_header = 0;
2476                 }
2477                 raw_write_stdout(buf, (unsigned int)readbytes);
2478                 (void)BIO_flush(bio_s_out);
2479             }
2480         }
2481         if (write_header) {
2482             if (SSL_get_early_data_status(con) == SSL_EARLY_DATA_NOT_SENT)
2483                 BIO_printf(bio_s_out, "No early data received\n");
2484             else
2485                 BIO_printf(bio_s_out, "Early data was rejected\n");
2486         } else {
2487             BIO_printf(bio_s_out, "\nEnd of early data\n");
2488         }
2489         if (SSL_is_init_finished(con))
2490             print_connection_info(con);
2491     }
2492
2493     if (fileno_stdin() > s)
2494         width = fileno_stdin() + 1;
2495     else
2496         width = s + 1;
2497     for (;;) {
2498         int read_from_terminal;
2499         int read_from_sslcon;
2500
2501         read_from_terminal = 0;
2502         read_from_sslcon = SSL_has_pending(con)
2503                            || (async && SSL_waiting_for_async(con));
2504
2505         if (!read_from_sslcon) {
2506             FD_ZERO(&readfds);
2507 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2508             openssl_fdset(fileno_stdin(), &readfds);
2509 #endif
2510             openssl_fdset(s, &readfds);
2511             /*
2512              * Note: under VMS with SOCKETSHR the second parameter is
2513              * currently of type (int *) whereas under other systems it is
2514              * (void *) if you don't have a cast it will choke the compiler:
2515              * if you do have a cast then you can either go for (int *) or
2516              * (void *).
2517              */
2518 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2519             /*
2520              * Under DOS (non-djgpp) and Windows we can't select on stdin:
2521              * only on sockets. As a workaround we timeout the select every
2522              * second and check for any keypress. In a proper Windows
2523              * application we wouldn't do this because it is inefficient.
2524              */
2525             timeout.tv_sec = 1;
2526             timeout.tv_usec = 0;
2527             i = select(width, (void *)&readfds, NULL, NULL, &timeout);
2528             if (has_stdin_waiting())
2529                 read_from_terminal = 1;
2530             if ((i < 0) || (!i && !read_from_terminal))
2531                 continue;
2532 #else
2533             if (SSL_is_dtls(con) && DTLSv1_get_timeout(con, &timeout))
2534                 timeoutp = &timeout;
2535             else
2536                 timeoutp = NULL;
2537
2538             i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
2539
2540             if ((SSL_is_dtls(con)) && DTLSv1_handle_timeout(con) > 0)
2541                 BIO_printf(bio_err, "TIMEOUT occurred\n");
2542
2543             if (i <= 0)
2544                 continue;
2545             if (FD_ISSET(fileno_stdin(), &readfds))
2546                 read_from_terminal = 1;
2547 #endif
2548             if (FD_ISSET(s, &readfds))
2549                 read_from_sslcon = 1;
2550         }
2551         if (read_from_terminal) {
2552             if (s_crlf) {
2553                 int j, lf_num;
2554
2555                 i = raw_read_stdin(buf, bufsize / 2);
2556                 lf_num = 0;
2557                 /* both loops are skipped when i <= 0 */
2558                 for (j = 0; j < i; j++)
2559                     if (buf[j] == '\n')
2560                         lf_num++;
2561                 for (j = i - 1; j >= 0; j--) {
2562                     buf[j + lf_num] = buf[j];
2563                     if (buf[j] == '\n') {
2564                         lf_num--;
2565                         i++;
2566                         buf[j + lf_num] = '\r';
2567                     }
2568                 }
2569                 assert(lf_num == 0);
2570             } else {
2571                 i = raw_read_stdin(buf, bufsize);
2572             }
2573
2574             if (!s_quiet && !s_brief) {
2575                 if ((i <= 0) || (buf[0] == 'Q')) {
2576                     BIO_printf(bio_s_out, "DONE\n");
2577                     (void)BIO_flush(bio_s_out);
2578                     BIO_closesocket(s);
2579                     close_accept_socket();
2580                     ret = -11;
2581                     goto err;
2582                 }
2583                 if ((i <= 0) || (buf[0] == 'q')) {
2584                     BIO_printf(bio_s_out, "DONE\n");
2585                     (void)BIO_flush(bio_s_out);
2586                     if (SSL_version(con) != DTLS1_VERSION)
2587                         BIO_closesocket(s);
2588                     /*
2589                      * close_accept_socket(); ret= -11;
2590                      */
2591                     goto err;
2592                 }
2593                 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2594                     SSL_renegotiate(con);
2595                     i = SSL_do_handshake(con);
2596                     printf("SSL_do_handshake -> %d\n", i);
2597                     i = 0;      /* 13; */
2598                     continue;
2599                 }
2600                 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2601                     SSL_set_verify(con,
2602                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2603                                    NULL);
2604                     SSL_renegotiate(con);
2605                     i = SSL_do_handshake(con);
2606                     printf("SSL_do_handshake -> %d\n", i);
2607                     i = 0;      /* 13; */
2608                     continue;
2609                 }
2610                 if ((buf[0] == 'K' || buf[0] == 'k')
2611                         && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2612                     SSL_key_update(con, buf[0] == 'K' ?
2613                                         SSL_KEY_UPDATE_REQUESTED
2614                                         : SSL_KEY_UPDATE_NOT_REQUESTED);
2615                     i = SSL_do_handshake(con);
2616                     printf("SSL_do_handshake -> %d\n", i);
2617                     i = 0;
2618                     continue;
2619                 }
2620                 if (buf[0] == 'c' && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2621                     SSL_set_verify(con, SSL_VERIFY_PEER, NULL);
2622                     i = SSL_verify_client_post_handshake(con);
2623                     if (i == 0) {
2624                         printf("Failed to initiate request\n");
2625                         ERR_print_errors(bio_err);
2626                     } else {
2627                         i = SSL_do_handshake(con);
2628                         printf("SSL_do_handshake -> %d\n", i);
2629                         i = 0;
2630                     }
2631                     continue;
2632                 }
2633                 if (buf[0] == 'P') {
2634                     static const char str[] = "Lets print some clear text\n";
2635                     BIO_write(SSL_get_wbio(con), str, sizeof(str) -1);
2636                 }
2637                 if (buf[0] == 'S') {
2638                     print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2639                 }
2640             }
2641 #ifdef CHARSET_EBCDIC
2642             ebcdic2ascii(buf, buf, i);
2643 #endif
2644             l = k = 0;
2645             for (;;) {
2646                 /* should do a select for the write */
2647 #ifdef RENEG
2648                 static count = 0;
2649                 if (++count == 100) {
2650                     count = 0;
2651                     SSL_renegotiate(con);
2652                 }
2653 #endif
2654                 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2655 #ifndef OPENSSL_NO_SRP
2656                 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2657                     BIO_printf(bio_s_out, "LOOKUP renego during write\n");
2658                     SRP_user_pwd_free(srp_callback_parm.user);
2659                     srp_callback_parm.user =
2660                         SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2661                                                srp_callback_parm.login);
2662                     if (srp_callback_parm.user)
2663                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2664                                    srp_callback_parm.user->info);
2665                     else
2666                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2667                     k = SSL_write(con, &(buf[l]), (unsigned int)i);
2668                 }
2669 #endif
2670                 switch (SSL_get_error(con, k)) {
2671                 case SSL_ERROR_NONE:
2672                     break;
2673                 case SSL_ERROR_WANT_ASYNC:
2674                     BIO_printf(bio_s_out, "Write BLOCK (Async)\n");
2675                     (void)BIO_flush(bio_s_out);
2676                     wait_for_async(con);
2677                     break;
2678                 case SSL_ERROR_WANT_WRITE:
2679                 case SSL_ERROR_WANT_READ:
2680                 case SSL_ERROR_WANT_X509_LOOKUP:
2681                     BIO_printf(bio_s_out, "Write BLOCK\n");
2682                     (void)BIO_flush(bio_s_out);
2683                     break;
2684                 case SSL_ERROR_WANT_ASYNC_JOB:
2685                     /*
2686                      * This shouldn't ever happen in s_server. Treat as an error
2687                      */
2688                 case SSL_ERROR_SYSCALL:
2689                 case SSL_ERROR_SSL:
2690                     BIO_printf(bio_s_out, "ERROR\n");
2691                     (void)BIO_flush(bio_s_out);
2692                     ERR_print_errors(bio_err);
2693                     ret = 1;
2694                     goto err;
2695                     /* break; */
2696                 case SSL_ERROR_ZERO_RETURN:
2697                     BIO_printf(bio_s_out, "DONE\n");
2698                     (void)BIO_flush(bio_s_out);
2699                     ret = 1;
2700                     goto err;
2701                 }
2702                 if (k > 0) {
2703                     l += k;
2704                     i -= k;
2705                 }
2706                 if (i <= 0)
2707                     break;
2708             }
2709         }
2710         if (read_from_sslcon) {
2711             /*
2712              * init_ssl_connection handles all async events itself so if we're
2713              * waiting for async then we shouldn't go back into
2714              * init_ssl_connection
2715              */
2716             if ((!async || !SSL_waiting_for_async(con))
2717                     && !SSL_is_init_finished(con)) {
2718                 i = init_ssl_connection(con);
2719
2720                 if (i < 0) {
2721                     ret = 0;
2722                     goto err;
2723                 } else if (i == 0) {
2724                     ret = 1;
2725                     goto err;
2726                 }
2727             } else {
2728  again:
2729                 i = SSL_read(con, (char *)buf, bufsize);
2730 #ifndef OPENSSL_NO_SRP
2731                 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2732                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
2733                     SRP_user_pwd_free(srp_callback_parm.user);
2734                     srp_callback_parm.user =
2735                         SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2736                                                srp_callback_parm.login);
2737                     if (srp_callback_parm.user)
2738                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2739                                    srp_callback_parm.user->info);
2740                     else
2741                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2742                     i = SSL_read(con, (char *)buf, bufsize);
2743                 }
2744 #endif
2745                 switch (SSL_get_error(con, i)) {
2746                 case SSL_ERROR_NONE:
2747 #ifdef CHARSET_EBCDIC
2748                     ascii2ebcdic(buf, buf, i);
2749 #endif
2750                     raw_write_stdout(buf, (unsigned int)i);
2751                     (void)BIO_flush(bio_s_out);
2752                     if (SSL_has_pending(con))
2753                         goto again;
2754                     break;
2755                 case SSL_ERROR_WANT_ASYNC:
2756                     BIO_printf(bio_s_out, "Read BLOCK (Async)\n");
2757                     (void)BIO_flush(bio_s_out);
2758                     wait_for_async(con);
2759                     break;
2760                 case SSL_ERROR_WANT_WRITE:
2761                 case SSL_ERROR_WANT_READ:
2762                     BIO_printf(bio_s_out, "Read BLOCK\n");
2763                     (void)BIO_flush(bio_s_out);
2764                     break;
2765                 case SSL_ERROR_WANT_ASYNC_JOB:
2766                     /*
2767                      * This shouldn't ever happen in s_server. Treat as an error
2768                      */
2769                 case SSL_ERROR_SYSCALL:
2770                 case SSL_ERROR_SSL:
2771                     BIO_printf(bio_s_out, "ERROR\n");
2772                     (void)BIO_flush(bio_s_out);
2773                     ERR_print_errors(bio_err);
2774                     ret = 1;
2775                     goto err;
2776                 case SSL_ERROR_ZERO_RETURN:
2777                     BIO_printf(bio_s_out, "DONE\n");
2778                     (void)BIO_flush(bio_s_out);
2779                     ret = 1;
2780                     goto err;
2781                 }
2782             }
2783         }
2784     }
2785  err:
2786     if (con != NULL) {
2787         BIO_printf(bio_s_out, "shutting down SSL\n");
2788         do_ssl_shutdown(con);
2789         SSL_free(con);
2790     }
2791     BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
2792     OPENSSL_clear_free(buf, bufsize);
2793     return ret;
2794 }
2795
2796 static void close_accept_socket(void)
2797 {
2798     BIO_printf(bio_err, "shutdown accept socket\n");
2799     if (accept_socket >= 0) {
2800         BIO_closesocket(accept_socket);
2801     }
2802 }
2803
2804 static int is_retryable(SSL *con, int i)
2805 {
2806     int err = SSL_get_error(con, i);
2807
2808     /* If it's not a fatal error, it must be retryable */
2809     return (err != SSL_ERROR_SSL)
2810            && (err != SSL_ERROR_SYSCALL)
2811            && (err != SSL_ERROR_ZERO_RETURN);
2812 }
2813
2814 static int init_ssl_connection(SSL *con)
2815 {
2816     int i;
2817     long verify_err;
2818     int retry = 0;
2819
2820     if (dtlslisten || stateless) {
2821         BIO_ADDR *client = NULL;
2822
2823         if (dtlslisten) {
2824             if ((client = BIO_ADDR_new()) == NULL) {
2825                 BIO_printf(bio_err, "ERROR - memory\n");
2826                 return 0;
2827             }
2828             i = DTLSv1_listen(con, client);
2829         } else {
2830             i = SSL_stateless(con);
2831         }
2832         if (i > 0) {
2833             BIO *wbio;
2834             int fd = -1;
2835
2836             if (dtlslisten) {
2837                 wbio = SSL_get_wbio(con);
2838                 if (wbio) {
2839                     BIO_get_fd(wbio, &fd);
2840                 }
2841
2842                 if (!wbio || BIO_connect(fd, client, 0) == 0) {
2843                     BIO_printf(bio_err, "ERROR - unable to connect\n");
2844                     BIO_ADDR_free(client);
2845                     return 0;
2846                 }
2847
2848                 (void)BIO_ctrl_set_connected(wbio, client);
2849                 BIO_ADDR_free(client);
2850                 dtlslisten = 0;
2851             } else {
2852                 stateless = 0;
2853             }
2854             i = SSL_accept(con);
2855         } else {
2856             BIO_ADDR_free(client);
2857         }
2858     } else {
2859         do {
2860             i = SSL_accept(con);
2861
2862             if (i <= 0)
2863                 retry = is_retryable(con, i);
2864 #ifdef CERT_CB_TEST_RETRY
2865             {
2866                 while (i <= 0
2867                         && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
2868                         && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) {
2869                     BIO_printf(bio_err,
2870                                "LOOKUP from certificate callback during accept\n");
2871                     i = SSL_accept(con);
2872                     if (i <= 0)
2873                         retry = is_retryable(con, i);
2874                 }
2875             }
2876 #endif
2877
2878 #ifndef OPENSSL_NO_SRP
2879             while (i <= 0
2880                    && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2881                 BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2882                            srp_callback_parm.login);
2883                 SRP_user_pwd_free(srp_callback_parm.user);
2884                 srp_callback_parm.user =
2885                     SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2886                                            srp_callback_parm.login);
2887                 if (srp_callback_parm.user)
2888                     BIO_printf(bio_s_out, "LOOKUP done %s\n",
2889                                srp_callback_parm.user->info);
2890                 else
2891                     BIO_printf(bio_s_out, "LOOKUP not successful\n");
2892                 i = SSL_accept(con);
2893                 if (i <= 0)
2894                     retry = is_retryable(con, i);
2895             }
2896 #endif
2897         } while (i < 0 && SSL_waiting_for_async(con));
2898     }
2899
2900     if (i <= 0) {
2901         if (((dtlslisten || stateless) && i == 0)
2902                 || (!dtlslisten && !stateless && retry)) {
2903             BIO_printf(bio_s_out, "DELAY\n");
2904             return 1;
2905         }
2906
2907         BIO_printf(bio_err, "ERROR\n");
2908
2909         verify_err = SSL_get_verify_result(con);
2910         if (verify_err != X509_V_OK) {
2911             BIO_printf(bio_err, "verify error:%s\n",
2912                        X509_verify_cert_error_string(verify_err));
2913         }
2914         /* Always print any error messages */
2915         ERR_print_errors(bio_err);
2916         return 0;
2917     }
2918
2919     print_connection_info(con);
2920     return 1;
2921 }
2922
2923 static void print_connection_info(SSL *con)
2924 {
2925     const char *str;
2926     X509 *peer;
2927     char buf[BUFSIZ];
2928 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2929     const unsigned char *next_proto_neg;
2930     unsigned next_proto_neg_len;
2931 #endif
2932     unsigned char *exportedkeymat;
2933     int i;
2934
2935     if (s_brief)
2936         print_ssl_summary(con);
2937
2938     PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
2939
2940     peer = SSL_get0_peer_certificate(con);
2941     if (peer != NULL) {
2942         BIO_printf(bio_s_out, "Client certificate\n");
2943         PEM_write_bio_X509(bio_s_out, peer);
2944         dump_cert_text(bio_s_out, peer);
2945         peer = NULL;
2946     }
2947
2948     if (SSL_get_shared_ciphers(con, buf, sizeof(buf)) != NULL)
2949         BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2950     str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2951     ssl_print_sigalgs(bio_s_out, con);
2952 #ifndef OPENSSL_NO_EC
2953     ssl_print_point_formats(bio_s_out, con);
2954     ssl_print_groups(bio_s_out, con, 0);
2955 #endif
2956     print_ca_names(bio_s_out, con);
2957     BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
2958
2959 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2960     SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2961     if (next_proto_neg) {
2962         BIO_printf(bio_s_out, "NEXTPROTO is ");
2963         BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2964         BIO_printf(bio_s_out, "\n");
2965     }
2966 #endif
2967 #ifndef OPENSSL_NO_SRTP
2968     {
2969         SRTP_PROTECTION_PROFILE *srtp_profile
2970             = SSL_get_selected_srtp_profile(con);
2971
2972         if (srtp_profile)
2973             BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2974                        srtp_profile->name);
2975     }
2976 #endif
2977     if (SSL_session_reused(con))
2978         BIO_printf(bio_s_out, "Reused session-id\n");
2979     BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2980                SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
2981     if ((SSL_get_options(con) & SSL_OP_NO_RENEGOTIATION))
2982         BIO_printf(bio_s_out, "Renegotiation is DISABLED\n");
2983
2984     if (keymatexportlabel != NULL) {
2985         BIO_printf(bio_s_out, "Keying material exporter:\n");
2986         BIO_printf(bio_s_out, "    Label: '%s'\n", keymatexportlabel);
2987         BIO_printf(bio_s_out, "    Length: %i bytes\n", keymatexportlen);
2988         exportedkeymat = app_malloc(keymatexportlen, "export key");
2989         if (!SSL_export_keying_material(con, exportedkeymat,
2990                                         keymatexportlen,
2991                                         keymatexportlabel,
2992                                         strlen(keymatexportlabel),
2993                                         NULL, 0, 0)) {
2994             BIO_printf(bio_s_out, "    Error\n");
2995         } else {
2996             BIO_printf(bio_s_out, "    Keying material: ");
2997             for (i = 0; i < keymatexportlen; i++)
2998                 BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2999             BIO_printf(bio_s_out, "\n");
3000         }
3001         OPENSSL_free(exportedkeymat);
3002     }
3003 #ifndef OPENSSL_NO_KTLS
3004     if (BIO_get_ktls_send(SSL_get_wbio(con)))
3005         BIO_printf(bio_err, "Using Kernel TLS for sending\n");
3006     if (BIO_get_ktls_recv(SSL_get_rbio(con)))
3007         BIO_printf(bio_err, "Using Kernel TLS for receiving\n");
3008 #endif
3009
3010     (void)BIO_flush(bio_s_out);
3011 }
3012
3013 #ifndef OPENSSL_NO_DH
3014 static DH *load_dh_param(const char *dhfile)
3015 {
3016     DH *ret = NULL;
3017     BIO *bio;
3018
3019     if ((bio = BIO_new_file(dhfile, "r")) == NULL)
3020         goto err;
3021     ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
3022  err:
3023     BIO_free(bio);
3024     return ret;
3025 }
3026 #endif
3027
3028 static int www_body(int s, int stype, int prot, unsigned char *context)
3029 {
3030     char *buf = NULL;
3031     int ret = 1;
3032     int i, j, k, dot;
3033     SSL *con;
3034     const SSL_CIPHER *c;
3035     BIO *io, *ssl_bio, *sbio;
3036 #ifdef RENEG
3037     int total_bytes = 0;
3038 #endif
3039     int width;
3040     fd_set readfds;
3041     const char *opmode;
3042
3043     /* Set width for a select call if needed */
3044     width = s + 1;
3045
3046     buf = app_malloc(bufsize, "server www buffer");
3047     io = BIO_new(BIO_f_buffer());
3048     ssl_bio = BIO_new(BIO_f_ssl());
3049     if ((io == NULL) || (ssl_bio == NULL))
3050         goto err;
3051
3052     if (s_nbio) {
3053         if (!BIO_socket_nbio(s, 1))
3054             ERR_print_errors(bio_err);
3055         else if (!s_quiet)
3056             BIO_printf(bio_err, "Turned on non blocking io\n");
3057     }
3058
3059     /* lets make the output buffer a reasonable size */
3060     if (!BIO_set_write_buffer_size(io, bufsize))
3061         goto err;
3062
3063     if ((con = SSL_new(ctx)) == NULL)
3064         goto err;
3065
3066     if (s_tlsextdebug) {
3067         SSL_set_tlsext_debug_callback(con, tlsext_cb);
3068         SSL_set_tlsext_debug_arg(con, bio_s_out);
3069     }
3070
3071     if (context != NULL
3072         && !SSL_set_session_id_context(con, context,
3073                                        strlen((char *)context))) {
3074         SSL_free(con);
3075         goto err;
3076     }
3077
3078     sbio = BIO_new_socket(s, BIO_NOCLOSE);
3079     if (s_nbio_test) {
3080         BIO *test;
3081
3082         test = BIO_new(BIO_f_nbio_test());
3083         sbio = BIO_push(test, sbio);
3084     }
3085     SSL_set_bio(con, sbio, sbio);
3086     SSL_set_accept_state(con);
3087
3088     /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
3089     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3090     BIO_push(io, ssl_bio);
3091 #ifdef CHARSET_EBCDIC
3092     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
3093 #endif
3094
3095     if (s_debug) {
3096         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3097         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3098     }
3099     if (s_msg) {
3100 #ifndef OPENSSL_NO_SSL_TRACE
3101         if (s_msg == 2)
3102             SSL_set_msg_callback(con, SSL_trace);
3103         else
3104 #endif
3105             SSL_set_msg_callback(con, msg_cb);
3106         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3107     }
3108
3109     for (;;) {
3110         i = BIO_gets(io, buf, bufsize - 1);
3111         if (i < 0) {            /* error */
3112             if (!BIO_should_retry(io) && !SSL_waiting_for_async(con)) {
3113                 if (!s_quiet)
3114                     ERR_print_errors(bio_err);
3115                 goto err;
3116             } else {
3117                 BIO_printf(bio_s_out, "read R BLOCK\n");
3118 #ifndef OPENSSL_NO_SRP
3119                 if (BIO_should_io_special(io)
3120                     && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3121                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
3122                     SRP_user_pwd_free(srp_callback_parm.user);
3123                     srp_callback_parm.user =
3124                         SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3125                                                srp_callback_parm.login);
3126                     if (srp_callback_parm.user)
3127                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
3128                                    srp_callback_parm.user->info);
3129                     else
3130                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
3131                     continue;
3132                 }
3133 #endif
3134 #if !defined(OPENSSL_SYS_MSDOS)
3135                 sleep(1);
3136 #endif
3137                 continue;
3138             }
3139         } else if (i == 0) {    /* end of input */
3140             ret = 1;
3141             goto end;
3142         }
3143
3144         /* else we have data */
3145         if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
3146             ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
3147             char *p;
3148             X509 *peer = NULL;
3149             STACK_OF(SSL_CIPHER) *sk;
3150             static const char *space = "                          ";
3151
3152             if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
3153                 if (strncmp("GET /renegcert", buf, 14) == 0)
3154                     SSL_set_verify(con,
3155                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
3156                                    NULL);
3157                 i = SSL_renegotiate(con);
3158                 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
3159                 /* Send the HelloRequest */
3160                 i = SSL_do_handshake(con);
3161                 if (i <= 0) {
3162                     BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
3163                                SSL_get_error(con, i));
3164                     ERR_print_errors(bio_err);
3165                     goto err;
3166                 }
3167                 /* Wait for a ClientHello to come back */
3168                 FD_ZERO(&readfds);
3169                 openssl_fdset(s, &readfds);
3170                 i = select(width, (void *)&readfds, NULL, NULL, NULL);
3171                 if (i <= 0 || !FD_ISSET(s, &readfds)) {
3172                     BIO_printf(bio_s_out,
3173                                "Error waiting for client response\n");
3174                     ERR_print_errors(bio_err);
3175                     goto err;
3176                 }
3177                 /*
3178                  * We're not actually expecting any data here and we ignore
3179                  * any that is sent. This is just to force the handshake that
3180                  * we're expecting to come from the client. If they haven't
3181                  * sent one there's not much we can do.
3182                  */
3183                 BIO_gets(io, buf, bufsize - 1);
3184             }
3185
3186             BIO_puts(io,
3187                      "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
3188             BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
3189             BIO_puts(io, "<pre>\n");
3190             /* BIO_puts(io, OpenSSL_version(OPENSSL_VERSION)); */
3191             BIO_puts(io, "\n");
3192             for (i = 0; i < local_argc; i++) {
3193                 const char *myp;
3194                 for (myp = local_argv[i]; *myp; myp++)
3195                     switch (*myp) {
3196                     case '<':
3197                         BIO_puts(io, "&lt;");
3198                         break;
3199                     case '>':
3200                         BIO_puts(io, "&gt;");
3201                         break;
3202                     case '&':
3203                         BIO_puts(io, "&amp;");
3204                         break;
3205                     default:
3206                         BIO_write(io, myp, 1);
3207                         break;
3208                     }
3209                 BIO_write(io, " ", 1);
3210             }
3211             BIO_puts(io, "\n");
3212
3213             BIO_printf(io,
3214                        "Secure Renegotiation IS%s supported\n",
3215                        SSL_get_secure_renegotiation_support(con) ?
3216                        "" : " NOT");
3217
3218             /*
3219              * The following is evil and should not really be done
3220              */
3221             BIO_printf(io, "Ciphers supported in s_server binary\n");
3222             sk = SSL_get_ciphers(con);
3223             j = sk_SSL_CIPHER_num(sk);
3224             for (i = 0; i < j; i++) {
3225                 c = sk_SSL_CIPHER_value(sk, i);
3226                 BIO_printf(io, "%-11s:%-25s ",
3227                            SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3228                 if ((((i + 1) % 2) == 0) && (i + 1 != j))
3229                     BIO_puts(io, "\n");
3230             }
3231             BIO_puts(io, "\n");
3232             p = SSL_get_shared_ciphers(con, buf, bufsize);
3233             if (p != NULL) {
3234                 BIO_printf(io,
3235                            "---\nCiphers common between both SSL end points:\n");
3236                 j = i = 0;
3237                 while (*p) {
3238                     if (*p == ':') {
3239                         BIO_write(io, space, 26 - j);
3240                         i++;
3241                         j = 0;
3242                         BIO_write(io, ((i % 3) ? " " : "\n"), 1);
3243                     } else {
3244                         BIO_write(io, p, 1);
3245                         j++;
3246                     }
3247                     p++;
3248                 }
3249                 BIO_puts(io, "\n");
3250             }
3251             ssl_print_sigalgs(io, con);
3252 #ifndef OPENSSL_NO_EC
3253             ssl_print_groups(io, con, 0);
3254 #endif
3255             print_ca_names(io, con);
3256             BIO_printf(io, (SSL_session_reused(con)
3257                             ? "---\nReused, " : "---\nNew, "));
3258             c = SSL_get_current_cipher(con);
3259             BIO_printf(io, "%s, Cipher is %s\n",
3260                        SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3261             SSL_SESSION_print(io, SSL_get_session(con));
3262             BIO_printf(io, "---\n");
3263             print_stats(io, SSL_get_SSL_CTX(con));
3264             BIO_printf(io, "---\n");
3265             peer = SSL_get0_peer_certificate(con);
3266             if (peer != NULL) {
3267                 BIO_printf(io, "Client certificate\n");
3268                 X509_print(io, peer);
3269                 PEM_write_bio_X509(io, peer);
3270                 peer = NULL;
3271             } else {
3272                 BIO_puts(io, "no client certificate available\n");
3273             }
3274             BIO_puts(io, "</pre></BODY></HTML>\r\n\r\n");
3275             break;
3276         } else if ((www == 2 || www == 3)
3277                    && (strncmp("GET /", buf, 5) == 0)) {
3278             BIO *file;
3279             char *p, *e;
3280             static const char *text =
3281                 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
3282
3283             /* skip the '/' */
3284             p = &(buf[5]);
3285
3286             dot = 1;
3287             for (e = p; *e != '\0'; e++) {
3288                 if (e[0] == ' ')
3289                     break;
3290
3291                 if (e[0] == ':') {
3292                     /* Windows drive. We treat this the same way as ".." */
3293                     dot = -1;
3294                     break;
3295                 }
3296
3297                 switch (dot) {
3298                 case 1:
3299                     dot = (e[0] == '.') ? 2 : 0;
3300                     break;
3301                 case 2:
3302                     dot = (e[0] == '.') ? 3 : 0;
3303                     break;
3304                 case 3:
3305                     dot = (e[0] == '/' || e[0] == '\\') ? -1 : 0;
3306                     break;
3307                 }
3308                 if (dot == 0)
3309                     dot = (e[0] == '/' || e[0] == '\\') ? 1 : 0;
3310             }
3311             dot = (dot == 3) || (dot == -1); /* filename contains ".."
3312                                               * component */
3313
3314             if (*e == '\0') {
3315                 BIO_puts(io, text);
3316                 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
3317                 break;
3318             }
3319             *e = '\0';
3320
3321             if (dot) {
3322                 BIO_puts(io, text);
3323                 BIO_printf(io, "'%s' contains '..' or ':'\r\n", p);
3324                 break;
3325             }
3326
3327             if (*p == '/' || *p == '\\') {
3328                 BIO_puts(io, text);
3329                 BIO_printf(io, "'%s' is an invalid path\r\n", p);
3330                 break;
3331             }
3332
3333             /* if a directory, do the index thang */
3334             if (app_isdir(p) > 0) {
3335                 BIO_puts(io, text);
3336                 BIO_printf(io, "'%s' is a directory\r\n", p);
3337                 break;
3338             }
3339
3340             opmode = (http_server_binmode == 1) ? "rb" : "r";
3341             if ((file = BIO_new_file(p, opmode)) == NULL) {
3342                 BIO_puts(io, text);
3343                 BIO_printf(io, "Error opening '%s' mode='%s'\r\n", p, opmode);
3344                 ERR_print_errors(io);
3345                 break;
3346             }
3347
3348             if (!s_quiet)
3349                 BIO_printf(bio_err, "FILE:%s\n", p);
3350
3351             if (www == 2) {
3352                 i = strlen(p);
3353                 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
3354                     ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
3355                     ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
3356                     BIO_puts(io,
3357                              "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
3358                 else
3359                     BIO_puts(io,
3360                              "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
3361             }
3362             /* send the file */
3363 #ifndef OPENSSL_NO_KTLS
3364             if (use_sendfile) {
3365                 FILE *fp = NULL;
3366                 int fd;
3367                 struct stat st;
3368                 off_t offset = 0;
3369                 size_t filesize;
3370
3371                 BIO_get_fp(file, &fp);
3372                 fd = fileno(fp);
3373                 if (fstat(fd, &st) < 0) {
3374                     BIO_printf(io, "Error fstat '%s'\r\n", p);
3375                     ERR_print_errors(io);
3376                     goto write_error;
3377                 }
3378
3379                 filesize = st.st_size;
3380                 if (((int)BIO_flush(io)) < 0)
3381                     goto write_error;
3382
3383                 for (;;) {
3384                     i = SSL_sendfile(con, fd, offset, filesize, 0);
3385                     if (i < 0) {
3386                         BIO_printf(io, "Error SSL_sendfile '%s'\r\n", p);
3387                         ERR_print_errors(io);
3388                         break;
3389                     } else {
3390                         offset += i;
3391                         filesize -= i;
3392                     }
3393
3394                     if (filesize <= 0) {
3395                         if (!s_quiet)
3396                             BIO_printf(bio_err, "KTLS SENDFILE '%s' OK\n", p);
3397
3398                         break;
3399                     }
3400                 }
3401             } else
3402 #endif
3403             {
3404                 for (;;) {
3405                     i = BIO_read(file, buf, bufsize);
3406                     if (i <= 0)
3407                         break;
3408
3409 #ifdef RENEG
3410                     total_bytes += i;
3411                     BIO_printf(bio_err, "%d\n", i);
3412                     if (total_bytes > 3 * 1024) {
3413                         total_bytes = 0;
3414                         BIO_printf(bio_err, "RENEGOTIATE\n");
3415                         SSL_renegotiate(con);
3416                     }
3417 #endif
3418
3419                     for (j = 0; j < i;) {
3420 #ifdef RENEG
3421                         static count = 0;
3422                         if (++count == 13)
3423                             SSL_renegotiate(con);
3424 #endif
3425                         k = BIO_write(io, &(buf[j]), i - j);
3426                         if (k <= 0) {
3427                             if (!BIO_should_retry(io)
3428                                 && !SSL_waiting_for_async(con)) {
3429                                 goto write_error;
3430                             } else {
3431                                 BIO_printf(bio_s_out, "rwrite W BLOCK\n");
3432                             }
3433                         } else {
3434                             j += k;
3435                         }
3436                     }
3437                 }
3438             }
3439  write_error:
3440             BIO_free(file);
3441             break;
3442         }
3443     }
3444
3445     for (;;) {
3446         i = (int)BIO_flush(io);
3447         if (i <= 0) {
3448             if (!BIO_should_retry(io))
3449                 break;
3450         } else
3451             break;
3452     }
3453  end:
3454     /* make sure we re-use sessions */
3455     do_ssl_shutdown(con);
3456
3457  err:
3458     OPENSSL_free(buf);
3459     BIO_free_all(io);
3460     return ret;
3461 }
3462
3463 static int rev_body(int s, int stype, int prot, unsigned char *context)
3464 {
3465     char *buf = NULL;
3466     int i;
3467     int ret = 1;
3468     SSL *con;
3469     BIO *io, *ssl_bio, *sbio;
3470
3471     buf = app_malloc(bufsize, "server rev buffer");
3472     io = BIO_new(BIO_f_buffer());
3473     ssl_bio = BIO_new(BIO_f_ssl());
3474     if ((io == NULL) || (ssl_bio == NULL))
3475         goto err;
3476
3477     /* lets make the output buffer a reasonable size */
3478     if (!BIO_set_write_buffer_size(io, bufsize))
3479         goto err;
3480
3481     if ((con = SSL_new(ctx)) == NULL)
3482         goto err;
3483
3484     if (s_tlsextdebug) {
3485         SSL_set_tlsext_debug_callback(con, tlsext_cb);
3486         SSL_set_tlsext_debug_arg(con, bio_s_out);
3487     }
3488     if (context != NULL
3489         && !SSL_set_session_id_context(con, context,
3490                                        strlen((char *)context))) {
3491         SSL_free(con);
3492         ERR_print_errors(bio_err);
3493         goto err;
3494     }
3495
3496     sbio = BIO_new_socket(s, BIO_NOCLOSE);
3497     SSL_set_bio(con, sbio, sbio);
3498     SSL_set_accept_state(con);
3499
3500     /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
3501     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3502     BIO_push(io, ssl_bio);
3503 #ifdef CHARSET_EBCDIC
3504     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
3505 #endif
3506
3507     if (s_debug) {
3508         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3509         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3510     }
3511     if (s_msg) {
3512 #ifndef OPENSSL_NO_SSL_TRACE
3513         if (s_msg == 2)
3514             SSL_set_msg_callback(con, SSL_trace);
3515         else
3516 #endif
3517             SSL_set_msg_callback(con, msg_cb);
3518         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3519     }
3520
3521     for (;;) {
3522         i = BIO_do_handshake(io);
3523         if (i > 0)
3524             break;
3525         if (!BIO_should_retry(io)) {
3526             BIO_puts(bio_err, "CONNECTION FAILURE\n");
3527             ERR_print_errors(bio_err);
3528             goto end;
3529         }
3530 #ifndef OPENSSL_NO_SRP
3531         if (BIO_should_io_special(io)
3532             && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3533             BIO_printf(bio_s_out, "LOOKUP renego during accept\n");
3534             SRP_user_pwd_free(srp_callback_parm.user);
3535             srp_callback_parm.user =
3536                 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3537                                        srp_callback_parm.login);
3538             if (srp_callback_parm.user)
3539                 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3540                            srp_callback_parm.user->info);
3541             else
3542                 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3543             continue;
3544         }
3545 #endif
3546     }
3547     BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
3548     print_ssl_summary(con);
3549
3550     for (;;) {
3551         i = BIO_gets(io, buf, bufsize - 1);
3552         if (i < 0) {            /* error */
3553             if (!BIO_should_retry(io)) {
3554                 if (!s_quiet)
3555                     ERR_print_errors(bio_err);
3556                 goto err;
3557             } else {
3558                 BIO_printf(bio_s_out, "read R BLOCK\n");
3559 #ifndef OPENSSL_NO_SRP
3560                 if (BIO_should_io_special(io)
3561                     && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3562                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
3563                     SRP_user_pwd_free(srp_callback_parm.user);
3564                     srp_callback_parm.user =
3565                         SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3566                                                srp_callback_parm.login);
3567                     if (srp_callback_parm.user)
3568                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
3569                                    srp_callback_parm.user->info);
3570                     else
3571                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
3572                     continue;
3573                 }
3574 #endif
3575 #if !defined(OPENSSL_SYS_MSDOS)
3576                 sleep(1);
3577 #endif
3578                 continue;
3579             }
3580         } else if (i == 0) {    /* end of input */
3581             ret = 1;
3582             BIO_printf(bio_err, "CONNECTION CLOSED\n");
3583             goto end;
3584         } else {
3585             char *p = buf + i - 1;
3586             while (i && (*p == '\n' || *p == '\r')) {
3587                 p--;
3588                 i--;
3589             }
3590             if (!s_ign_eof && (i == 5) && (strncmp(buf, "CLOSE", 5) == 0)) {
3591                 ret = 1;
3592                 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3593                 goto end;
3594             }
3595             BUF_reverse((unsigned char *)buf, NULL, i);
3596             buf[i] = '\n';
3597             BIO_write(io, buf, i + 1);
3598             for (;;) {
3599                 i = BIO_flush(io);
3600                 if (i > 0)
3601                     break;
3602                 if (!BIO_should_retry(io))
3603                     goto end;
3604             }
3605         }
3606     }
3607  end:
3608     /* make sure we re-use sessions */
3609     do_ssl_shutdown(con);
3610
3611  err:
3612
3613     OPENSSL_free(buf);
3614     BIO_free_all(io);
3615     return ret;
3616 }
3617
3618 #define MAX_SESSION_ID_ATTEMPTS 10
3619 static int generate_session_id(SSL *ssl, unsigned char *id,
3620                                unsigned int *id_len)
3621 {
3622     unsigned int count = 0;
3623     unsigned int session_id_prefix_len = strlen(session_id_prefix);
3624
3625     do {
3626         if (RAND_bytes(id, *id_len) <= 0)
3627             return 0;
3628         /*
3629          * Prefix the session_id with the required prefix. NB: If our prefix
3630          * is too long, clip it - but there will be worse effects anyway, eg.
3631          * the server could only possibly create 1 session ID (ie. the
3632          * prefix!) so all future session negotiations will fail due to
3633          * conflicts.
3634          */
3635         memcpy(id, session_id_prefix,
3636                (session_id_prefix_len < *id_len) ?
3637                 session_id_prefix_len : *id_len);
3638     }
3639     while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3640            (++count < MAX_SESSION_ID_ATTEMPTS));
3641     if (count >= MAX_SESSION_ID_ATTEMPTS)
3642         return 0;
3643     return 1;
3644 }
3645
3646 /*
3647  * By default s_server uses an in-memory cache which caches SSL_SESSION
3648  * structures without any serialization. This hides some bugs which only
3649  * become apparent in deployed servers. By implementing a basic external
3650  * session cache some issues can be debugged using s_server.
3651  */
3652
3653 typedef struct simple_ssl_session_st {
3654     unsigned char *id;
3655     unsigned int idlen;
3656     unsigned char *der;
3657     int derlen;
3658     struct simple_ssl_session_st *next;
3659 } simple_ssl_session;
3660
3661 static simple_ssl_session *first = NULL;
3662
3663 static int add_session(SSL *ssl, SSL_SESSION *session)
3664 {
3665     simple_ssl_session *sess = app_malloc(sizeof(*sess), "get session");
3666     unsigned char *p;
3667
3668     SSL_SESSION_get_id(session, &sess->idlen);
3669     sess->derlen = i2d_SSL_SESSION(session, NULL);
3670     if (sess->derlen < 0) {
3671         BIO_printf(bio_err, "Error encoding session\n");
3672         OPENSSL_free(sess);
3673         return 0;
3674     }
3675
3676     sess->id = OPENSSL_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
3677     sess->der = app_malloc(sess->derlen, "get session buffer");
3678     if (!sess->id) {
3679         BIO_printf(bio_err, "Out of memory adding to external cache\n");
3680         OPENSSL_free(sess->id);
3681         OPENSSL_free(sess->der);
3682         OPENSSL_free(sess);
3683         return 0;
3684     }
3685     p = sess->der;
3686
3687     /* Assume it still works. */
3688     if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
3689         BIO_printf(bio_err, "Unexpected session encoding length\n");
3690         OPENSSL_free(sess->id);
3691         OPENSSL_free(sess->der);
3692         OPENSSL_free(sess);
3693         return 0;
3694     }
3695
3696     sess->next = first;
3697     first = sess;
3698     BIO_printf(bio_err, "New session added to external cache\n");
3699     return 0;
3700 }
3701
3702 static SSL_SESSION *get_session(SSL *ssl, const unsigned char *id, int idlen,
3703                                 int *do_copy)
3704 {
3705     simple_ssl_session *sess;
3706     *do_copy = 0;
3707     for (sess = first; sess; sess = sess->next) {
3708         if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3709             const unsigned char *p = sess->der;
3710             BIO_printf(bio_err, "Lookup session: cache hit\n");
3711             return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3712         }
3713     }
3714     BIO_printf(bio_err, "Lookup session: cache miss\n");
3715     return NULL;
3716 }
3717
3718 static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
3719 {
3720     simple_ssl_session *sess, *prev = NULL;
3721     const unsigned char *id;
3722     unsigned int idlen;
3723     id = SSL_SESSION_get_id(session, &idlen);
3724     for (sess = first; sess; sess = sess->next) {
3725         if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3726             if (prev)
3727                 prev->next = sess->next;
3728             else
3729                 first = sess->next;
3730             OPENSSL_free(sess->id);
3731             OPENSSL_free(sess->der);
3732             OPENSSL_free(sess);
3733             return;
3734         }
3735         prev = sess;
3736     }
3737 }
3738
3739 static void init_session_cache_ctx(SSL_CTX *sctx)
3740 {
3741     SSL_CTX_set_session_cache_mode(sctx,
3742                                    SSL_SESS_CACHE_NO_INTERNAL |
3743                                    SSL_SESS_CACHE_SERVER);
3744     SSL_CTX_sess_set_new_cb(sctx, add_session);
3745     SSL_CTX_sess_set_get_cb(sctx, get_session);
3746     SSL_CTX_sess_set_remove_cb(sctx, del_session);
3747 }
3748
3749 static void free_sessions(void)
3750 {
3751     simple_ssl_session *sess, *tsess;
3752     for (sess = first; sess;) {
3753         OPENSSL_free(sess->id);
3754         OPENSSL_free(sess->der);
3755         tsess = sess;
3756         sess = sess->next;
3757         OPENSSL_free(tsess);
3758     }
3759     first = NULL;
3760 }
3761
3762 #endif                          /* OPENSSL_NO_SOCK */