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