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