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