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