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