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