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