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