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