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