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