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