Adapt the rest of the source to the opaque HMAC_CTX
[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 static int enable_timeouts = 0;
261 static long socket_mtu;
262 #ifndef OPENSSL_NO_DTLS1
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, OPT_NO_ECDHE,
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_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     {"tls1_2", OPT_TLS1_2, '-', "just talk TLSv1.2"},
867     {"tls1_1", OPT_TLS1_1, '-', "Just talk TLSv1.1"},
868     {"tls1", OPT_TLS1, '-', "Just talk TLSv1"},
869     {"no_resume_ephemeral", OPT_NO_RESUME_EPHEMERAL, '-',
870      "Disable caching and tickets if ephemeral (EC)DH is used"},
871     {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
872     {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
873     {"servername", OPT_SERVERNAME, 's',
874      "Servername for HostName TLS extension"},
875     {"servername_fatal", OPT_SERVERNAME_FATAL, '-',
876      "mismatch send fatal alert (default warning alert)"},
877     {"cert2", OPT_CERT2, '<',
878      "Certificate file to use for servername; default is" TEST_CERT2},
879     {"key2", OPT_KEY2, '<',
880      "-Private Key file to use for servername if not in -cert2"},
881     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
882      "Hex dump of all TLS extensions received"},
883     {"HTTP", OPT_HTTP, '-', "Like -WWW but ./path incluedes HTTP headers"},
884     {"id_prefix", OPT_ID_PREFIX, 's',
885      "Generate SSL/TLS session IDs prefixed by arg"},
886     {"rand", OPT_RAND, 's',
887      "Load the file(s) into the random number generator"},
888     {"keymatexport", OPT_KEYMATEXPORT, 's',
889      "Export keying material using label"},
890     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
891      "Export len bytes of keying material (default 20)"},
892     {"CRL", OPT_CRL, '<'},
893     {"crl_download", OPT_CRL_DOWNLOAD, '-'},
894     {"cert_chain", OPT_CERT_CHAIN, '<'},
895     {"dcert_chain", OPT_DCERT_CHAIN, '<'},
896     {"chainCApath", OPT_CHAINCAPATH, '/'},
897     {"verifyCApath", OPT_VERIFYCAPATH, '/'},
898     {"no_cache", OPT_NO_CACHE, '-'},
899     {"ext_cache", OPT_EXT_CACHE, '-'},
900     {"CRLform", OPT_CRLFORM, 'F'},
901     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-'},
902     {"verify_quiet", OPT_VERIFY_QUIET, '-'},
903     {"build_chain", OPT_BUILD_CHAIN, '-'},
904     {"chainCAfile", OPT_CHAINCAFILE, '<'},
905     {"verifyCAfile", OPT_VERIFYCAFILE, '<'},
906     {"ign_eof", OPT_IGN_EOF, '-'},
907     {"no_ign_eof", OPT_NO_IGN_EOF, '-'},
908     {"status", OPT_STATUS, '-'},
909     {"status_verbose", OPT_STATUS_VERBOSE, '-'},
910     {"status_timeout", OPT_STATUS_TIMEOUT, 'n'},
911     {"status_url", OPT_STATUS_URL, 's'},
912     {"trace", OPT_TRACE, '-'},
913     {"security_debug", OPT_SECURITY_DEBUG, '-'},
914     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-'},
915     {"brief", OPT_BRIEF, '-'},
916     {"rev", OPT_REV, '-'},
917     {"async", OPT_ASYNC, '-', "Operate in asynchronous mode"},
918     OPT_S_OPTIONS,
919     OPT_V_OPTIONS,
920     OPT_X_OPTIONS,
921 #ifdef FIONBIO
922     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
923 #endif
924 #ifndef OPENSSL_NO_PSK
925     {"psk_hint", OPT_PSK_HINT, 's', "PSK identity hint to use"},
926     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
927 # ifndef OPENSSL_NO_JPAKE
928     {"jpake", OPT_JPAKE, 's', "JPAKE secret to use"},
929 # endif
930 #endif
931 #ifndef OPENSSL_NO_SRP
932     {"srpvfile", OPT_SRPVFILE, '<', "The verifier file for SRP"},
933     {"srpuserseed", OPT_SRPUSERSEED, 's',
934      "A seed string for a default user salt"},
935 #endif
936 #ifndef OPENSSL_NO_SSL3
937     {"ssl3", OPT_SSL3, '-', "Just talk SSLv3"},
938 #endif
939 #ifndef OPENSSL_NO_DTLS1
940     {"dtls", OPT_DTLS, '-'},
941     {"dtls1", OPT_DTLS1, '-', "Just talk DTLSv1"},
942     {"dtls1_2", OPT_DTLS1_2, '-', "Just talk DTLSv1.2"},
943     {"timeout", OPT_TIMEOUT, '-', "Enable timeouts"},
944     {"mtu", OPT_MTU, 'p', "Set link layer MTU"},
945     {"chain", OPT_CHAIN, '-', "Read a certificate chain"},
946     {"listen", OPT_LISTEN, '-',
947      "Listen for a DTLS ClientHello with a cookie and then connect"},
948 #endif
949 #ifndef OPENSSL_NO_DH
950     {"no_dhe", OPT_NO_DHE, '-', "Disable ephemeral DH"},
951 #endif
952 #ifndef OPENSSL_NO_EC
953     {"no_ecdhe", OPT_NO_ECDHE, '-', "Disable ephemeral ECDH"},
954 #endif
955 #ifndef OPENSSL_NO_NEXTPROTONEG
956     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
957      "Set the advertised protocols for the NPN extension (comma-separated list)"},
958 #endif
959 #ifndef OPENSSL_NO_SRTP
960     {"use_srtp", OPT_SRTP_PROFILES, 's',
961      "Offer SRTP key management with a colon-separated profile list"},
962     {"alpn", OPT_ALPN, 's',
963      "Set the advertised protocols for the ALPN extension (comma-separated list)"},
964 #endif
965 #ifndef OPENSSL_NO_ENGINE
966     {"engine", OPT_ENGINE, 's'},
967 #endif
968     {NULL}
969 };
970
971 int s_server_main(int argc, char *argv[])
972 {
973     ENGINE *e = NULL;
974     EVP_PKEY *s_key = NULL, *s_dkey = NULL;
975     SSL_CONF_CTX *cctx = NULL;
976     const SSL_METHOD *meth = TLS_server_method();
977     SSL_EXCERT *exc = NULL;
978     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
979     STACK_OF(X509) *s_chain = NULL, *s_dchain = NULL;
980     STACK_OF(X509_CRL) *crls = NULL;
981     X509 *s_cert = NULL, *s_dcert = NULL;
982     X509_VERIFY_PARAM *vpm = NULL;
983     char *CApath = NULL, *CAfile = NULL, *chCApath = NULL, *chCAfile = NULL;
984 #ifndef OPENSSL_NO_DH
985     char *dhfile = NULL;
986 #endif
987     char *dpassarg = NULL, *dpass = NULL, *inrand = NULL;
988     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
989     char *crl_file = NULL, *prog;
990 #ifndef OPENSSL_NO_PSK
991     char *p;
992 #endif
993     const char *unix_path = NULL;
994 #ifndef NO_SYS_UN_H
995     int unlink_unix_path = 0;
996 #endif
997     int (*server_cb) (char *hostname, int s, int stype,
998                       unsigned char *context);
999     int vpmtouched = 0, build_chain = 0, no_cache = 0, ext_cache = 0;
1000 #ifndef OPENSSL_NO_DH
1001     int no_dhe = 0;
1002 #endif
1003     int no_ecdhe = 0, nocert = 0, ret = 1;
1004     int noCApath = 0, noCAfile = 0;
1005     int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM;
1006     int s_dcert_format = FORMAT_PEM, s_dkey_format = FORMAT_PEM;
1007     int rev = 0, naccept = -1, sdebug = 0, socket_type = SOCK_STREAM;
1008     int state = 0, crl_format = FORMAT_PEM, crl_download = 0;
1009     unsigned short port = PORT;
1010     unsigned char *context = NULL;
1011     OPTION_CHOICE o;
1012     EVP_PKEY *s_key2 = NULL;
1013     X509 *s_cert2 = NULL;
1014     tlsextctx tlsextcbp = { NULL, NULL, SSL_TLSEXT_ERR_ALERT_WARNING };
1015 #ifndef OPENSSL_NO_NEXTPROTONEG
1016     const char *next_proto_neg_in = NULL;
1017     tlsextnextprotoctx next_proto = { NULL, 0 };
1018 #endif
1019     const char *alpn_in = NULL;
1020     tlsextalpnctx alpn_ctx = { NULL, 0 };
1021 #ifndef OPENSSL_NO_PSK
1022     /* by default do not send a PSK identity hint */
1023     static char *psk_identity_hint = NULL;
1024 #endif
1025 #ifndef OPENSSL_NO_SRP
1026     char *srpuserseed = NULL;
1027     char *srp_verifier_file = NULL;
1028 #endif
1029
1030     local_argc = argc;
1031     local_argv = argv;
1032
1033     s_server_init();
1034     cctx = SSL_CONF_CTX_new();
1035     vpm = X509_VERIFY_PARAM_new();
1036     if (cctx == NULL || vpm == NULL)
1037         goto end;
1038     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CMDLINE);
1039
1040     prog = opt_init(argc, argv, s_server_options);
1041     while ((o = opt_next()) != OPT_EOF) {
1042         switch (o) {
1043 #ifdef OPENSSL_NO_PSK
1044         case OPT_PSK_HINT:
1045         case OPT_PSK:
1046 #endif
1047 #ifdef OPENSSL_NO_DTLS1
1048         case OPT_DTLS:
1049         case OPT_DTLS1:
1050         case OPT_DTLS1_2:
1051         case OPT_TIMEOUT:
1052         case OPT_MTU:
1053         case OPT_CHAIN:
1054 #endif
1055         case OPT_EOF:
1056         case OPT_ERR:
1057  opthelp:
1058             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1059             goto end;
1060         case OPT_HELP:
1061             opt_help(s_server_options);
1062             ret = 0;
1063             goto end;
1064
1065         case OPT_PORT:
1066             if (!extract_port(opt_arg(), &port))
1067                 goto end;
1068             break;
1069         case OPT_UNIX:
1070 #ifdef NO_SYS_UN_H
1071             BIO_printf(bio_err, "unix domain sockets unsupported\n");
1072             goto end;
1073 #else
1074             unix_path = opt_arg();
1075 #endif
1076             break;
1077         case OPT_UNLINK:
1078 #ifdef NO_SYS_UN_H
1079             BIO_printf(bio_err, "unix domain sockets unsupported\n");
1080             goto end;
1081 #else
1082             unlink_unix_path = 1;
1083 #endif
1084             break;
1085         case OPT_NACCEPT:
1086             naccept = atol(opt_arg());
1087             break;
1088         case OPT_VERIFY:
1089             s_server_verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
1090             verify_depth = atoi(opt_arg());
1091             if (!s_quiet)
1092                 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
1093             break;
1094         case OPT_UPPER_V_VERIFY:
1095             s_server_verify =
1096                 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1097                 SSL_VERIFY_CLIENT_ONCE;
1098             verify_depth = atoi(opt_arg());
1099             if (!s_quiet)
1100                 BIO_printf(bio_err,
1101                            "verify depth is %d, must return a certificate\n",
1102                            verify_depth);
1103             break;
1104         case OPT_CONTEXT:
1105             context = (unsigned char *)opt_arg();
1106             break;
1107         case OPT_CERT:
1108             s_cert_file = opt_arg();
1109             break;
1110         case OPT_CRL:
1111             crl_file = opt_arg();
1112             break;
1113         case OPT_CRL_DOWNLOAD:
1114             crl_download = 1;
1115             break;
1116         case OPT_SERVERINFO:
1117             s_serverinfo_file = opt_arg();
1118             break;
1119         case OPT_CERTFORM:
1120             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_cert_format))
1121                 goto opthelp;
1122             break;
1123         case OPT_KEY:
1124             s_key_file = opt_arg();
1125             break;
1126         case OPT_KEYFORM:
1127             if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_key_format))
1128                 goto opthelp;
1129             break;
1130         case OPT_PASS:
1131             passarg = opt_arg();
1132             break;
1133         case OPT_CERT_CHAIN:
1134             s_chain_file = opt_arg();
1135             break;
1136         case OPT_DHPARAM:
1137 #ifndef OPENSSL_NO_DH
1138             dhfile = opt_arg();
1139 #endif
1140             break;
1141         case OPT_DCERTFORM:
1142             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dcert_format))
1143                 goto opthelp;
1144             break;
1145         case OPT_DCERT:
1146             s_dcert_file = opt_arg();
1147             break;
1148         case OPT_DKEYFORM:
1149             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dkey_format))
1150                 goto opthelp;
1151             break;
1152         case OPT_DPASS:
1153             dpassarg = opt_arg();
1154             break;
1155         case OPT_DKEY:
1156             s_dkey_file = opt_arg();
1157             break;
1158         case OPT_DCERT_CHAIN:
1159             s_dchain_file = opt_arg();
1160             break;
1161         case OPT_NOCERT:
1162             nocert = 1;
1163             break;
1164         case OPT_CAPATH:
1165             CApath = opt_arg();
1166             break;
1167         case OPT_NOCAPATH:
1168             noCApath = 1;
1169             break;
1170         case OPT_CHAINCAPATH:
1171             chCApath = opt_arg();
1172             break;
1173         case OPT_VERIFYCAPATH:
1174             vfyCApath = opt_arg();
1175             break;
1176         case OPT_NO_CACHE:
1177             no_cache = 1;
1178             break;
1179         case OPT_EXT_CACHE:
1180             ext_cache = 1;
1181             break;
1182         case OPT_CRLFORM:
1183             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1184                 goto opthelp;
1185             break;
1186         case OPT_S_CASES:
1187             if (ssl_args == NULL)
1188                 ssl_args = sk_OPENSSL_STRING_new_null();
1189             if (ssl_args == NULL
1190                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1191                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1192                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1193                 goto end;
1194             }
1195             break;
1196         case OPT_V_CASES:
1197             if (!opt_verify(o, vpm))
1198                 goto end;
1199             vpmtouched++;
1200             break;
1201         case OPT_X_CASES:
1202             if (!args_excert(o, &exc))
1203                 goto end;
1204             break;
1205         case OPT_VERIFY_RET_ERROR:
1206             verify_return_error = 1;
1207             break;
1208         case OPT_VERIFY_QUIET:
1209             verify_quiet = 1;
1210             break;
1211         case OPT_BUILD_CHAIN:
1212             build_chain = 1;
1213             break;
1214         case OPT_CAFILE:
1215             CAfile = opt_arg();
1216             break;
1217         case OPT_NOCAFILE:
1218             noCAfile = 1;
1219             break;
1220         case OPT_CHAINCAFILE:
1221             chCAfile = opt_arg();
1222             break;
1223         case OPT_VERIFYCAFILE:
1224             vfyCAfile = opt_arg();
1225             break;
1226         case OPT_NBIO:
1227             s_nbio = 1;
1228             break;
1229         case OPT_NBIO_TEST:
1230             s_nbio = s_nbio_test = 1;
1231             break;
1232         case OPT_IGN_EOF:
1233             s_ign_eof = 1;
1234             break;
1235         case OPT_NO_IGN_EOF:
1236             s_ign_eof = 0;
1237             break;
1238         case OPT_DEBUG:
1239             s_debug = 1;
1240             break;
1241         case OPT_TLSEXTDEBUG:
1242             s_tlsextdebug = 1;
1243             break;
1244         case OPT_STATUS:
1245             s_tlsextstatus = 1;
1246             break;
1247         case OPT_STATUS_VERBOSE:
1248             s_tlsextstatus = tlscstatp.verbose = 1;
1249             break;
1250         case OPT_STATUS_TIMEOUT:
1251             s_tlsextstatus = 1;
1252             tlscstatp.timeout = atoi(opt_arg());
1253             break;
1254         case OPT_STATUS_URL:
1255             s_tlsextstatus = 1;
1256             if (!OCSP_parse_url(opt_arg(),
1257                                 &tlscstatp.host,
1258                                 &tlscstatp.port,
1259                                 &tlscstatp.path, &tlscstatp.use_ssl)) {
1260                 BIO_printf(bio_err, "Error parsing URL\n");
1261                 goto end;
1262             }
1263             break;
1264         case OPT_MSG:
1265             s_msg = 1;
1266             break;
1267         case OPT_MSGFILE:
1268             bio_s_msg = BIO_new_file(opt_arg(), "w");
1269             break;
1270         case OPT_TRACE:
1271 #ifndef OPENSSL_NO_SSL_TRACE
1272             s_msg = 2;
1273 #else
1274             break;
1275 #endif
1276         case OPT_SECURITY_DEBUG:
1277             sdebug = 1;
1278             break;
1279         case OPT_SECURITY_DEBUG_VERBOSE:
1280             sdebug = 2;
1281             break;
1282         case OPT_STATE:
1283             state = 1;
1284             break;
1285         case OPT_CRLF:
1286             s_crlf = 1;
1287             break;
1288         case OPT_QUIET:
1289             s_quiet = 1;
1290             break;
1291         case OPT_BRIEF:
1292             s_quiet = s_brief = verify_quiet = 1;
1293             break;
1294         case OPT_NO_DHE:
1295 #ifndef OPENSSL_NO_DH
1296             no_dhe = 1;
1297 #endif
1298             break;
1299         case OPT_NO_ECDHE:
1300             no_ecdhe = 1;
1301             break;
1302         case OPT_NO_RESUME_EPHEMERAL:
1303             no_resume_ephemeral = 1;
1304             break;
1305 #ifndef OPENSSL_NO_PSK
1306         case OPT_PSK_HINT:
1307             psk_identity_hint = opt_arg();
1308             break;
1309         case OPT_PSK:
1310             for (p = psk_key = opt_arg(); *p; p++) {
1311                 if (isxdigit(*p))
1312                     continue;
1313                 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
1314                 goto end;
1315             }
1316             break;
1317 #endif
1318 #ifndef OPENSSL_NO_SRP
1319         case OPT_SRPVFILE:
1320             srp_verifier_file = opt_arg();
1321             meth = TLSv1_server_method();
1322             break;
1323         case OPT_SRPUSERSEED:
1324             srpuserseed = opt_arg();
1325             meth = TLSv1_server_method();
1326             break;
1327 #else
1328         case OPT_SRPVFILE:
1329         case OPT_SRPUSERSEED:
1330             break;
1331 #endif
1332         case OPT_REV:
1333             rev = 1;
1334             break;
1335         case OPT_WWW:
1336             www = 1;
1337             break;
1338         case OPT_UPPER_WWW:
1339             www = 2;
1340             break;
1341         case OPT_HTTP:
1342             www = 3;
1343             break;
1344         case OPT_SSL3:
1345 #ifndef OPENSSL_NO_SSL3
1346             meth = SSLv3_server_method();
1347 #endif
1348             break;
1349         case OPT_TLS1_2:
1350             meth = TLSv1_2_server_method();
1351             break;
1352         case OPT_TLS1_1:
1353             meth = TLSv1_1_server_method();
1354             break;
1355         case OPT_TLS1:
1356             meth = TLSv1_server_method();
1357             break;
1358 #ifndef OPENSSL_NO_DTLS1
1359         case OPT_DTLS:
1360             meth = DTLS_server_method();
1361             socket_type = SOCK_DGRAM;
1362             break;
1363         case OPT_DTLS1:
1364             meth = DTLSv1_server_method();
1365             socket_type = SOCK_DGRAM;
1366             break;
1367         case OPT_DTLS1_2:
1368             meth = DTLSv1_2_server_method();
1369             socket_type = SOCK_DGRAM;
1370             break;
1371         case OPT_TIMEOUT:
1372             enable_timeouts = 1;
1373             break;
1374         case OPT_MTU:
1375             socket_mtu = atol(opt_arg());
1376             break;
1377         case OPT_CHAIN:
1378             cert_chain = 1;
1379             break;
1380         case OPT_LISTEN:
1381             dtlslisten = 1;
1382             break;
1383 #else
1384         case OPT_DTLS:
1385         case OPT_DTLS1:
1386         case OPT_DTLS1_2:
1387         case OPT_TIMEOUT:
1388         case OPT_MTU:
1389         case OPT_CHAIN:
1390         case OPT_LISTEN:
1391             break;
1392 #endif
1393         case OPT_ID_PREFIX:
1394             session_id_prefix = opt_arg();
1395             break;
1396         case OPT_ENGINE:
1397             e = setup_engine(opt_arg(), 1);
1398             break;
1399         case OPT_RAND:
1400             inrand = opt_arg();
1401             break;
1402         case OPT_SERVERNAME:
1403             tlsextcbp.servername = opt_arg();
1404             break;
1405         case OPT_SERVERNAME_FATAL:
1406             tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
1407             break;
1408         case OPT_CERT2:
1409             s_cert_file2 = opt_arg();
1410             break;
1411         case OPT_KEY2:
1412             s_key_file2 = opt_arg();
1413             break;
1414         case OPT_NEXTPROTONEG:
1415 # ifndef OPENSSL_NO_NEXTPROTONEG
1416             next_proto_neg_in = opt_arg();
1417 #endif
1418             break;
1419         case OPT_ALPN:
1420             alpn_in = opt_arg();
1421             break;
1422 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1423         case OPT_JPAKE:
1424             jpake_secret = opt_arg();
1425             break;
1426 #else
1427         case OPT_JPAKE:
1428             goto opthelp;
1429 #endif
1430         case OPT_SRTP_PROFILES:
1431             srtp_profiles = opt_arg();
1432             break;
1433         case OPT_KEYMATEXPORT:
1434             keymatexportlabel = opt_arg();
1435             break;
1436         case OPT_KEYMATEXPORTLEN:
1437             keymatexportlen = atoi(opt_arg());
1438             break;
1439         case OPT_ASYNC:
1440             async = 1;
1441             break;
1442         }
1443     }
1444     argc = opt_num_rest();
1445     argv = opt_rest();
1446
1447 #ifndef OPENSSL_NO_DTLS1
1448     if (www && socket_type == SOCK_DGRAM) {
1449         BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1450         goto end;
1451     }
1452
1453     if (dtlslisten && socket_type != SOCK_DGRAM) {
1454         BIO_printf(bio_err, "Can only use -listen with DTLS\n");
1455         goto end;
1456     }
1457 #endif
1458
1459     if (unix_path && (socket_type != SOCK_STREAM)) {
1460         BIO_printf(bio_err,
1461                    "Can't use unix sockets and datagrams together\n");
1462         goto end;
1463     }
1464 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1465     if (jpake_secret) {
1466         if (psk_key) {
1467             BIO_printf(bio_err, "Can't use JPAKE and PSK together\n");
1468             goto end;
1469         }
1470         psk_identity = "JPAKE";
1471     }
1472 #endif
1473
1474     if (!app_passwd(passarg, dpassarg, &pass, &dpass)) {
1475         BIO_printf(bio_err, "Error getting password\n");
1476         goto end;
1477     }
1478
1479     if (s_key_file == NULL)
1480         s_key_file = s_cert_file;
1481
1482     if (s_key_file2 == NULL)
1483         s_key_file2 = s_cert_file2;
1484
1485     if (!load_excert(&exc))
1486         goto end;
1487
1488     if (nocert == 0) {
1489         s_key = load_key(s_key_file, s_key_format, 0, pass, e,
1490                          "server certificate private key file");
1491         if (!s_key) {
1492             ERR_print_errors(bio_err);
1493             goto end;
1494         }
1495
1496         s_cert = load_cert(s_cert_file, s_cert_format,
1497                            NULL, e, "server certificate file");
1498
1499         if (!s_cert) {
1500             ERR_print_errors(bio_err);
1501             goto end;
1502         }
1503         if (s_chain_file) {
1504             s_chain = load_certs(s_chain_file, FORMAT_PEM,
1505                                  NULL, e, "server certificate chain");
1506             if (!s_chain)
1507                 goto end;
1508         }
1509
1510         if (tlsextcbp.servername) {
1511             s_key2 = load_key(s_key_file2, s_key_format, 0, pass, e,
1512                               "second server certificate private key file");
1513             if (!s_key2) {
1514                 ERR_print_errors(bio_err);
1515                 goto end;
1516             }
1517
1518             s_cert2 = load_cert(s_cert_file2, s_cert_format,
1519                                 NULL, e, "second server certificate file");
1520
1521             if (!s_cert2) {
1522                 ERR_print_errors(bio_err);
1523                 goto end;
1524             }
1525         }
1526     }
1527 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1528     if (next_proto_neg_in) {
1529         unsigned short len;
1530         next_proto.data = next_protos_parse(&len, next_proto_neg_in);
1531         if (next_proto.data == NULL)
1532             goto end;
1533         next_proto.len = len;
1534     } else {
1535         next_proto.data = NULL;
1536     }
1537 #endif
1538     alpn_ctx.data = NULL;
1539     if (alpn_in) {
1540         unsigned short len;
1541         alpn_ctx.data = next_protos_parse(&len, alpn_in);
1542         if (alpn_ctx.data == NULL)
1543             goto end;
1544         alpn_ctx.len = len;
1545     }
1546
1547     if (crl_file) {
1548         X509_CRL *crl;
1549         crl = load_crl(crl_file, crl_format);
1550         if (!crl) {
1551             BIO_puts(bio_err, "Error loading CRL\n");
1552             ERR_print_errors(bio_err);
1553             goto end;
1554         }
1555         crls = sk_X509_CRL_new_null();
1556         if (!crls || !sk_X509_CRL_push(crls, crl)) {
1557             BIO_puts(bio_err, "Error adding CRL\n");
1558             ERR_print_errors(bio_err);
1559             X509_CRL_free(crl);
1560             goto end;
1561         }
1562     }
1563
1564     if (s_dcert_file) {
1565
1566         if (s_dkey_file == NULL)
1567             s_dkey_file = s_dcert_file;
1568
1569         s_dkey = load_key(s_dkey_file, s_dkey_format,
1570                           0, dpass, e, "second certificate private key file");
1571         if (!s_dkey) {
1572             ERR_print_errors(bio_err);
1573             goto end;
1574         }
1575
1576         s_dcert = load_cert(s_dcert_file, s_dcert_format,
1577                             NULL, e, "second server certificate file");
1578
1579         if (!s_dcert) {
1580             ERR_print_errors(bio_err);
1581             goto end;
1582         }
1583         if (s_dchain_file) {
1584             s_dchain = load_certs(s_dchain_file, FORMAT_PEM,
1585                                   NULL, e, "second server certificate chain");
1586             if (!s_dchain)
1587                 goto end;
1588         }
1589
1590     }
1591
1592     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1593         && !RAND_status()) {
1594         BIO_printf(bio_err,
1595                    "warning, not much extra random data, consider using the -rand option\n");
1596     }
1597     if (inrand != NULL)
1598         BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
1599                    app_RAND_load_files(inrand));
1600
1601     if (bio_s_out == NULL) {
1602         if (s_quiet && !s_debug) {
1603             bio_s_out = BIO_new(BIO_s_null());
1604             if (s_msg && !bio_s_msg)
1605                 bio_s_msg = dup_bio_out(FORMAT_TEXT);
1606         } else {
1607             if (bio_s_out == NULL)
1608                 bio_s_out = dup_bio_out(FORMAT_TEXT);
1609         }
1610     }
1611 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC)
1612     if (nocert)
1613 #endif
1614     {
1615         s_cert_file = NULL;
1616         s_key_file = NULL;
1617         s_dcert_file = NULL;
1618         s_dkey_file = NULL;
1619         s_cert_file2 = NULL;
1620         s_key_file2 = NULL;
1621     }
1622
1623     ctx = SSL_CTX_new(meth);
1624     if (sdebug)
1625         ssl_ctx_security_debug(ctx, sdebug);
1626     if (ctx == NULL) {
1627         ERR_print_errors(bio_err);
1628         goto end;
1629     }
1630     if (session_id_prefix) {
1631         if (strlen(session_id_prefix) >= 32)
1632             BIO_printf(bio_err,
1633                        "warning: id_prefix is too long, only one new session will be possible\n");
1634         if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1635             BIO_printf(bio_err, "error setting 'id_prefix'\n");
1636             ERR_print_errors(bio_err);
1637             goto end;
1638         }
1639         BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1640     }
1641     SSL_CTX_set_quiet_shutdown(ctx, 1);
1642     if (exc)
1643         ssl_ctx_set_excert(ctx, exc);
1644
1645     if (state)
1646         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1647     if (no_cache)
1648         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1649     else if (ext_cache)
1650         init_session_cache_ctx(ctx);
1651     else
1652         SSL_CTX_sess_set_cache_size(ctx, 128);
1653
1654     if (async) {
1655         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1656         ASYNC_init(1, 0, 0);
1657     }
1658
1659 #ifndef OPENSSL_NO_SRTP
1660     if (srtp_profiles != NULL) {
1661         /* Returns 0 on success! */
1662         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1663             BIO_printf(bio_err, "Error setting SRTP profile\n");
1664             ERR_print_errors(bio_err);
1665             goto end;
1666         }
1667     }
1668 #endif
1669
1670     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1671         ERR_print_errors(bio_err);
1672         goto end;
1673     }
1674     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1675         BIO_printf(bio_err, "Error setting verify params\n");
1676         ERR_print_errors(bio_err);
1677         goto end;
1678     }
1679
1680     ssl_ctx_add_crls(ctx, crls, 0);
1681     if (!config_ctx(cctx, ssl_args, ctx, no_ecdhe, jpake_secret == NULL))
1682         goto end;
1683
1684     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1685                          crls, crl_download)) {
1686         BIO_printf(bio_err, "Error loading store locations\n");
1687         ERR_print_errors(bio_err);
1688         goto end;
1689     }
1690
1691     if (s_cert2) {
1692         ctx2 = SSL_CTX_new(meth);
1693         if (ctx2 == NULL) {
1694             ERR_print_errors(bio_err);
1695             goto end;
1696         }
1697     }
1698
1699     if (ctx2) {
1700         BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
1701
1702         if (sdebug)
1703             ssl_ctx_security_debug(ctx, sdebug);
1704
1705         if (session_id_prefix) {
1706             if (strlen(session_id_prefix) >= 32)
1707                 BIO_printf(bio_err,
1708                            "warning: id_prefix is too long, only one new session will be possible\n");
1709             if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1710                 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1711                 ERR_print_errors(bio_err);
1712                 goto end;
1713             }
1714             BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1715         }
1716         SSL_CTX_set_quiet_shutdown(ctx2, 1);
1717         if (exc)
1718             ssl_ctx_set_excert(ctx2, exc);
1719
1720         if (state)
1721             SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
1722
1723         if (no_cache)
1724             SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
1725         else if (ext_cache)
1726             init_session_cache_ctx(ctx2);
1727         else
1728             SSL_CTX_sess_set_cache_size(ctx2, 128);
1729
1730         if (async)
1731             SSL_CTX_set_mode(ctx2, SSL_MODE_ASYNC);
1732
1733         if ((!SSL_CTX_load_verify_locations(ctx2, CAfile, CApath)) ||
1734             (!SSL_CTX_set_default_verify_paths(ctx2))) {
1735             ERR_print_errors(bio_err);
1736         }
1737         if (vpmtouched && !SSL_CTX_set1_param(ctx2, vpm)) {
1738             BIO_printf(bio_err, "Error setting verify params\n");
1739             ERR_print_errors(bio_err);
1740             goto end;
1741         }
1742
1743         ssl_ctx_add_crls(ctx2, crls, 0);
1744         if (!config_ctx(cctx, ssl_args, ctx2, no_ecdhe, jpake_secret == NULL))
1745             goto end;
1746     }
1747 #ifndef OPENSSL_NO_NEXTPROTONEG
1748     if (next_proto.data)
1749         SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
1750                                               &next_proto);
1751 #endif
1752     if (alpn_ctx.data)
1753         SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
1754
1755 #ifndef OPENSSL_NO_DH
1756     if (!no_dhe) {
1757         DH *dh = NULL;
1758
1759         if (dhfile)
1760             dh = load_dh_param(dhfile);
1761         else if (s_cert_file)
1762             dh = load_dh_param(s_cert_file);
1763
1764         if (dh != NULL) {
1765             BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1766         } else {
1767             BIO_printf(bio_s_out, "Using default temp DH parameters\n");
1768         }
1769         (void)BIO_flush(bio_s_out);
1770
1771         if (dh == NULL)
1772             SSL_CTX_set_dh_auto(ctx, 1);
1773         else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
1774             BIO_puts(bio_err, "Error setting temp DH parameters\n");
1775             ERR_print_errors(bio_err);
1776             DH_free(dh);
1777             goto end;
1778         }
1779
1780         if (ctx2) {
1781             if (!dhfile) {
1782                 DH *dh2 = load_dh_param(s_cert_file2);
1783                 if (dh2 != NULL) {
1784                     BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1785                     (void)BIO_flush(bio_s_out);
1786
1787                     DH_free(dh);
1788                     dh = dh2;
1789                 }
1790             }
1791             if (dh == NULL)
1792                 SSL_CTX_set_dh_auto(ctx2, 1);
1793             else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
1794                 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1795                 ERR_print_errors(bio_err);
1796                 DH_free(dh);
1797                 goto end;
1798             }
1799         }
1800         DH_free(dh);
1801     }
1802 #endif
1803
1804     if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
1805         goto end;
1806
1807     if (s_serverinfo_file != NULL
1808         && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
1809         ERR_print_errors(bio_err);
1810         goto end;
1811     }
1812
1813     if (ctx2 && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
1814         goto end;
1815
1816     if (s_dcert != NULL) {
1817         if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
1818             goto end;
1819     }
1820
1821     if (no_resume_ephemeral) {
1822         SSL_CTX_set_not_resumable_session_callback(ctx,
1823                                                    not_resumable_sess_cb);
1824
1825         if (ctx2)
1826             SSL_CTX_set_not_resumable_session_callback(ctx2,
1827                                                        not_resumable_sess_cb);
1828     }
1829 #ifndef OPENSSL_NO_PSK
1830 # ifdef OPENSSL_NO_JPAKE
1831     if (psk_key != NULL)
1832 # else
1833     if (psk_key != NULL || jpake_secret)
1834 # endif
1835     {
1836         if (s_debug)
1837             BIO_printf(bio_s_out,
1838                        "PSK key given or JPAKE in use, setting server callback\n");
1839         SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
1840     }
1841
1842     if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
1843         BIO_printf(bio_err, "error setting PSK identity hint to context\n");
1844         ERR_print_errors(bio_err);
1845         goto end;
1846     }
1847 #endif
1848
1849     SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
1850     if (!SSL_CTX_set_session_id_context(ctx,
1851                 (void *)&s_server_session_id_context,
1852                 sizeof s_server_session_id_context)) {
1853         BIO_printf(bio_err, "error setting session id context\n");
1854         ERR_print_errors(bio_err);
1855         goto end;
1856     }
1857
1858     /* Set DTLS cookie generation and verification callbacks */
1859     SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
1860     SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
1861
1862     if (ctx2) {
1863         SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
1864         if (!SSL_CTX_set_session_id_context(ctx2,
1865                     (void *)&s_server_session_id_context,
1866                     sizeof s_server_session_id_context)) {
1867             BIO_printf(bio_err, "error setting session id context\n");
1868             ERR_print_errors(bio_err);
1869             goto end;
1870         }
1871         tlsextcbp.biodebug = bio_s_out;
1872         SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
1873         SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
1874         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1875         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1876     }
1877
1878 #ifndef OPENSSL_NO_SRP
1879     if (srp_verifier_file != NULL) {
1880         srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
1881         srp_callback_parm.user = NULL;
1882         srp_callback_parm.login = NULL;
1883         if ((ret =
1884              SRP_VBASE_init(srp_callback_parm.vb,
1885                             srp_verifier_file)) != SRP_NO_ERROR) {
1886             BIO_printf(bio_err,
1887                        "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
1888                        srp_verifier_file, ret);
1889             goto end;
1890         }
1891         SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
1892         SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
1893         SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
1894     } else
1895 #endif
1896     if (CAfile != NULL) {
1897         SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
1898
1899         if (ctx2)
1900             SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
1901     }
1902     if (s_tlsextstatus) {
1903         SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
1904         SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
1905         if (ctx2) {
1906             SSL_CTX_set_tlsext_status_cb(ctx2, cert_status_cb);
1907             SSL_CTX_set_tlsext_status_arg(ctx2, &tlscstatp);
1908         }
1909     }
1910
1911     BIO_printf(bio_s_out, "ACCEPT\n");
1912     (void)BIO_flush(bio_s_out);
1913     if (rev)
1914         server_cb = rev_body;
1915     else if (www)
1916         server_cb = www_body;
1917     else
1918         server_cb = sv_body;
1919 #ifndef NO_SYS_UN_H
1920     if (unix_path) {
1921         if (unlink_unix_path)
1922             unlink(unix_path);
1923         do_server_unix(unix_path, &accept_socket, server_cb, context,
1924                        naccept);
1925     } else
1926 #endif
1927         do_server(port, socket_type, &accept_socket, server_cb, context,
1928                   naccept);
1929     print_stats(bio_s_out, ctx);
1930     ret = 0;
1931  end:
1932     SSL_CTX_free(ctx);
1933     X509_free(s_cert);
1934     sk_X509_CRL_pop_free(crls, X509_CRL_free);
1935     X509_free(s_dcert);
1936     EVP_PKEY_free(s_key);
1937     EVP_PKEY_free(s_dkey);
1938     sk_X509_pop_free(s_chain, X509_free);
1939     sk_X509_pop_free(s_dchain, X509_free);
1940     OPENSSL_free(pass);
1941     OPENSSL_free(dpass);
1942     X509_VERIFY_PARAM_free(vpm);
1943     free_sessions();
1944     OPENSSL_free(tlscstatp.host);
1945     OPENSSL_free(tlscstatp.port);
1946     OPENSSL_free(tlscstatp.path);
1947     SSL_CTX_free(ctx2);
1948     X509_free(s_cert2);
1949     EVP_PKEY_free(s_key2);
1950     BIO_free(serverinfo_in);
1951 #ifndef OPENSSL_NO_NEXTPROTONEG
1952     OPENSSL_free(next_proto.data);
1953 #endif
1954     OPENSSL_free(alpn_ctx.data);
1955     ssl_excert_free(exc);
1956     sk_OPENSSL_STRING_free(ssl_args);
1957     SSL_CONF_CTX_free(cctx);
1958     BIO_free(bio_s_out);
1959     bio_s_out = NULL;
1960     BIO_free(bio_s_msg);
1961     bio_s_msg = NULL;
1962     if (async) {
1963         ASYNC_cleanup(1);
1964     }
1965     return (ret);
1966 }
1967
1968 static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
1969 {
1970     BIO_printf(bio, "%4ld items in the session cache\n",
1971                SSL_CTX_sess_number(ssl_ctx));
1972     BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
1973                SSL_CTX_sess_connect(ssl_ctx));
1974     BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
1975                SSL_CTX_sess_connect_renegotiate(ssl_ctx));
1976     BIO_printf(bio, "%4ld client connects that finished\n",
1977                SSL_CTX_sess_connect_good(ssl_ctx));
1978     BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
1979                SSL_CTX_sess_accept(ssl_ctx));
1980     BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
1981                SSL_CTX_sess_accept_renegotiate(ssl_ctx));
1982     BIO_printf(bio, "%4ld server accepts that finished\n",
1983                SSL_CTX_sess_accept_good(ssl_ctx));
1984     BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
1985     BIO_printf(bio, "%4ld session cache misses\n",
1986                SSL_CTX_sess_misses(ssl_ctx));
1987     BIO_printf(bio, "%4ld session cache timeouts\n",
1988                SSL_CTX_sess_timeouts(ssl_ctx));
1989     BIO_printf(bio, "%4ld callback cache hits\n",
1990                SSL_CTX_sess_cb_hits(ssl_ctx));
1991     BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
1992                SSL_CTX_sess_cache_full(ssl_ctx),
1993                SSL_CTX_sess_get_cache_size(ssl_ctx));
1994 }
1995
1996 static int sv_body(char *hostname, int s, int stype, unsigned char *context)
1997 {
1998     char *buf = NULL;
1999     fd_set readfds;
2000     int ret = 1, width;
2001     int k, i;
2002     unsigned long l;
2003     SSL *con = NULL;
2004     BIO *sbio;
2005     struct timeval timeout;
2006 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2007     struct timeval tv;
2008 #else
2009     struct timeval *timeoutp;
2010 #endif
2011
2012     buf = app_malloc(bufsize, "server buffer");
2013 #ifdef FIONBIO
2014     if (s_nbio) {
2015         unsigned long sl = 1;
2016
2017         if (!s_quiet)
2018             BIO_printf(bio_err, "turning on non blocking io\n");
2019         if (BIO_socket_ioctl(s, FIONBIO, &sl) < 0)
2020             ERR_print_errors(bio_err);
2021     }
2022 #endif
2023
2024     if (con == NULL) {
2025         con = SSL_new(ctx);
2026
2027         if (s_tlsextdebug) {
2028             SSL_set_tlsext_debug_callback(con, tlsext_cb);
2029             SSL_set_tlsext_debug_arg(con, bio_s_out);
2030         }
2031
2032         if (context
2033                 && !SSL_set_session_id_context(con,
2034                         context, strlen((char *)context))) {
2035             BIO_printf(bio_err, "Error setting session id context\n");
2036             ret = -1;
2037             goto err;
2038         }
2039     }
2040     if (!SSL_clear(con)) {
2041         BIO_printf(bio_err, "Error clearing SSL connection\n");
2042         ret = -1;
2043         goto err;
2044     }
2045
2046     if (stype == SOCK_DGRAM) {
2047
2048         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2049
2050         if (enable_timeouts) {
2051             timeout.tv_sec = 0;
2052             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2053             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2054
2055             timeout.tv_sec = 0;
2056             timeout.tv_usec = DGRAM_SND_TIMEOUT;
2057             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2058         }
2059
2060         if (socket_mtu) {
2061             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2062                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2063                            DTLS_get_link_min_mtu(con));
2064                 ret = -1;
2065                 BIO_free(sbio);
2066                 goto err;
2067             }
2068             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2069             if (!DTLS_set_link_mtu(con, socket_mtu)) {
2070                 BIO_printf(bio_err, "Failed to set MTU\n");
2071                 ret = -1;
2072                 BIO_free(sbio);
2073                 goto err;
2074             }
2075         } else
2076             /* want to do MTU discovery */
2077             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2078
2079         /* turn on cookie exchange */
2080         SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
2081     } else
2082         sbio = BIO_new_socket(s, BIO_NOCLOSE);
2083
2084     if (s_nbio_test) {
2085         BIO *test;
2086
2087         test = BIO_new(BIO_f_nbio_test());
2088         sbio = BIO_push(test, sbio);
2089     }
2090 #ifndef OPENSSL_NO_JPAKE
2091     if (jpake_secret)
2092         jpake_server_auth(bio_s_out, sbio, jpake_secret);
2093 #endif
2094
2095     SSL_set_bio(con, sbio, sbio);
2096     SSL_set_accept_state(con);
2097     /* SSL_set_fd(con,s); */
2098
2099     if (s_debug) {
2100         SSL_set_debug(con, 1);
2101         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2102         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2103     }
2104     if (s_msg) {
2105 #ifndef OPENSSL_NO_SSL_TRACE
2106         if (s_msg == 2)
2107             SSL_set_msg_callback(con, SSL_trace);
2108         else
2109 #endif
2110             SSL_set_msg_callback(con, msg_cb);
2111         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2112     }
2113
2114     if (s_tlsextdebug) {
2115         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2116         SSL_set_tlsext_debug_arg(con, bio_s_out);
2117     }
2118
2119     width = s + 1;
2120     for (;;) {
2121         int read_from_terminal;
2122         int read_from_sslcon;
2123
2124         read_from_terminal = 0;
2125         read_from_sslcon = SSL_pending(con)
2126                            || (async && SSL_waiting_for_async(con));
2127
2128         if (!read_from_sslcon) {
2129             FD_ZERO(&readfds);
2130 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
2131             openssl_fdset(fileno(stdin), &readfds);
2132 #endif
2133             openssl_fdset(s, &readfds);
2134             /*
2135              * Note: under VMS with SOCKETSHR the second parameter is
2136              * currently of type (int *) whereas under other systems it is
2137              * (void *) if you don't have a cast it will choke the compiler:
2138              * if you do have a cast then you can either go for (int *) or
2139              * (void *).
2140              */
2141 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2142             /*
2143              * Under DOS (non-djgpp) and Windows we can't select on stdin:
2144              * only on sockets. As a workaround we timeout the select every
2145              * second and check for any keypress. In a proper Windows
2146              * application we wouldn't do this because it is inefficient.
2147              */
2148             tv.tv_sec = 1;
2149             tv.tv_usec = 0;
2150             i = select(width, (void *)&readfds, NULL, NULL, &tv);
2151             if ((i < 0) || (!i && !_kbhit()))
2152                 continue;
2153             if (_kbhit())
2154                 read_from_terminal = 1;
2155 #else
2156             if ((SSL_version(con) == DTLS1_VERSION) &&
2157                 DTLSv1_get_timeout(con, &timeout))
2158                 timeoutp = &timeout;
2159             else
2160                 timeoutp = NULL;
2161
2162             i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
2163
2164             if ((SSL_version(con) == DTLS1_VERSION)
2165                 && DTLSv1_handle_timeout(con) > 0) {
2166                 BIO_printf(bio_err, "TIMEOUT occurred\n");
2167             }
2168
2169             if (i <= 0)
2170                 continue;
2171             if (FD_ISSET(fileno(stdin), &readfds))
2172                 read_from_terminal = 1;
2173 #endif
2174             if (FD_ISSET(s, &readfds))
2175                 read_from_sslcon = 1;
2176         }
2177         if (read_from_terminal) {
2178             if (s_crlf) {
2179                 int j, lf_num;
2180
2181                 i = raw_read_stdin(buf, bufsize / 2);
2182                 lf_num = 0;
2183                 /* both loops are skipped when i <= 0 */
2184                 for (j = 0; j < i; j++)
2185                     if (buf[j] == '\n')
2186                         lf_num++;
2187                 for (j = i - 1; j >= 0; j--) {
2188                     buf[j + lf_num] = buf[j];
2189                     if (buf[j] == '\n') {
2190                         lf_num--;
2191                         i++;
2192                         buf[j + lf_num] = '\r';
2193                     }
2194                 }
2195                 assert(lf_num == 0);
2196             } else
2197                 i = raw_read_stdin(buf, bufsize);
2198             if (!s_quiet && !s_brief) {
2199                 if ((i <= 0) || (buf[0] == 'Q')) {
2200                     BIO_printf(bio_s_out, "DONE\n");
2201                     (void)BIO_flush(bio_s_out);
2202                     SHUTDOWN(s);
2203                     close_accept_socket();
2204                     ret = -11;
2205                     goto err;
2206                 }
2207                 if ((i <= 0) || (buf[0] == 'q')) {
2208                     BIO_printf(bio_s_out, "DONE\n");
2209                     (void)BIO_flush(bio_s_out);
2210                     if (SSL_version(con) != DTLS1_VERSION)
2211                         SHUTDOWN(s);
2212                     /*
2213                      * close_accept_socket(); ret= -11;
2214                      */
2215                     goto err;
2216                 }
2217 #ifndef OPENSSL_NO_HEARTBEATS
2218                 if ((buf[0] == 'B') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2219                     BIO_printf(bio_err, "HEARTBEATING\n");
2220                     SSL_heartbeat(con);
2221                     i = 0;
2222                     continue;
2223                 }
2224 #endif
2225                 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2226                     SSL_renegotiate(con);
2227                     i = SSL_do_handshake(con);
2228                     printf("SSL_do_handshake -> %d\n", i);
2229                     i = 0;      /* 13; */
2230                     continue;
2231                     /*
2232                      * strcpy(buf,"server side RE-NEGOTIATE\n");
2233                      */
2234                 }
2235                 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2236                     SSL_set_verify(con,
2237                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2238                                    NULL);
2239                     SSL_renegotiate(con);
2240                     i = SSL_do_handshake(con);
2241                     printf("SSL_do_handshake -> %d\n", i);
2242                     i = 0;      /* 13; */
2243                     continue;
2244                     /*
2245                      * strcpy(buf,"server side RE-NEGOTIATE asking for client
2246                      * cert\n");
2247                      */
2248                 }
2249                 if (buf[0] == 'P') {
2250                     static const char *str = "Lets print some clear text\n";
2251                     BIO_write(SSL_get_wbio(con), str, strlen(str));
2252                 }
2253                 if (buf[0] == 'S') {
2254                     print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2255                 }
2256             }
2257 #ifdef CHARSET_EBCDIC
2258             ebcdic2ascii(buf, buf, i);
2259 #endif
2260             l = k = 0;
2261             for (;;) {
2262                 /* should do a select for the write */
2263 #ifdef RENEG
2264                 {
2265                     static count = 0;
2266                     if (++count == 100) {
2267                         count = 0;
2268                         SSL_renegotiate(con);
2269                     }
2270                 }
2271 #endif
2272                 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2273 #ifndef OPENSSL_NO_SRP
2274                 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2275                     BIO_printf(bio_s_out, "LOOKUP renego during write\n");
2276                     srp_callback_parm.user =
2277                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
2278                                               srp_callback_parm.login);
2279                     if (srp_callback_parm.user)
2280                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2281                                    srp_callback_parm.user->info);
2282                     else
2283                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2284                     k = SSL_write(con, &(buf[l]), (unsigned int)i);
2285                 }
2286 #endif
2287                 switch (SSL_get_error(con, k)) {
2288                 case SSL_ERROR_NONE:
2289                     break;
2290                 case SSL_ERROR_WANT_ASYNC:
2291                     BIO_printf(bio_s_out, "Write BLOCK (Async)\n");
2292                     wait_for_async(con);
2293                     break;
2294                 case SSL_ERROR_WANT_WRITE:
2295                 case SSL_ERROR_WANT_READ:
2296                 case SSL_ERROR_WANT_X509_LOOKUP:
2297                     BIO_printf(bio_s_out, "Write BLOCK\n");
2298                     break;
2299                 case SSL_ERROR_SYSCALL:
2300                 case SSL_ERROR_SSL:
2301                     BIO_printf(bio_s_out, "ERROR\n");
2302                     (void)BIO_flush(bio_s_out);
2303                     ERR_print_errors(bio_err);
2304                     ret = 1;
2305                     goto err;
2306                     /* break; */
2307                 case SSL_ERROR_ZERO_RETURN:
2308                     BIO_printf(bio_s_out, "DONE\n");
2309                     (void)BIO_flush(bio_s_out);
2310                     ret = 1;
2311                     goto err;
2312                 }
2313                 if (k > 0) {
2314                     l += k;
2315                     i -= k;
2316                 }
2317                 if (i <= 0)
2318                     break;
2319             }
2320         }
2321         if (read_from_sslcon) {
2322             /*
2323              * init_ssl_connection handles all async events itself so if we're
2324              * waiting for async then we shouldn't go back into
2325              * init_ssl_connection
2326              */
2327             if ((!async || !SSL_waiting_for_async(con))
2328                     && !SSL_is_init_finished(con)) {
2329                 i = init_ssl_connection(con);
2330
2331                 if (i < 0) {
2332                     ret = 0;
2333                     goto err;
2334                 } else if (i == 0) {
2335                     ret = 1;
2336                     goto err;
2337                 }
2338             } else {
2339  again:
2340                 i = SSL_read(con, (char *)buf, bufsize);
2341 #ifndef OPENSSL_NO_SRP
2342                 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2343                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
2344                     srp_callback_parm.user =
2345                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
2346                                               srp_callback_parm.login);
2347                     if (srp_callback_parm.user)
2348                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2349                                    srp_callback_parm.user->info);
2350                     else
2351                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2352                     i = SSL_read(con, (char *)buf, bufsize);
2353                 }
2354 #endif
2355                 switch (SSL_get_error(con, i)) {
2356                 case SSL_ERROR_NONE:
2357 #ifdef CHARSET_EBCDIC
2358                     ascii2ebcdic(buf, buf, i);
2359 #endif
2360                     raw_write_stdout(buf, (unsigned int)i);
2361                     if (SSL_pending(con))
2362                         goto again;
2363                     break;
2364                 case SSL_ERROR_WANT_ASYNC:
2365                     BIO_printf(bio_s_out, "Read BLOCK (Async)\n");
2366                     wait_for_async(con);
2367                     break;
2368                 case SSL_ERROR_WANT_WRITE:
2369                 case SSL_ERROR_WANT_READ:
2370                     BIO_printf(bio_s_out, "Read BLOCK\n");
2371                     break;
2372                 case SSL_ERROR_SYSCALL:
2373                 case SSL_ERROR_SSL:
2374                     BIO_printf(bio_s_out, "ERROR\n");
2375                     (void)BIO_flush(bio_s_out);
2376                     ERR_print_errors(bio_err);
2377                     ret = 1;
2378                     goto err;
2379                 case SSL_ERROR_ZERO_RETURN:
2380                     BIO_printf(bio_s_out, "DONE\n");
2381                     (void)BIO_flush(bio_s_out);
2382                     ret = 1;
2383                     goto err;
2384                 }
2385             }
2386         }
2387     }
2388  err:
2389     if (con != NULL) {
2390         BIO_printf(bio_s_out, "shutting down SSL\n");
2391         SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
2392         SSL_free(con);
2393     }
2394     BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
2395     OPENSSL_clear_free(buf, bufsize);
2396     if (ret >= 0)
2397         BIO_printf(bio_s_out, "ACCEPT\n");
2398     (void)BIO_flush(bio_s_out);
2399     return (ret);
2400 }
2401
2402 static void close_accept_socket(void)
2403 {
2404     BIO_printf(bio_err, "shutdown accept socket\n");
2405     if (accept_socket >= 0) {
2406         SHUTDOWN2(accept_socket);
2407     }
2408 }
2409
2410 static int init_ssl_connection(SSL *con)
2411 {
2412     int i;
2413     const char *str;
2414     X509 *peer;
2415     long verify_err;
2416     char buf[BUFSIZ];
2417 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2418     const unsigned char *next_proto_neg;
2419     unsigned next_proto_neg_len;
2420 #endif
2421     unsigned char *exportedkeymat;
2422     struct sockaddr_storage client;
2423
2424 #ifndef OPENSSL_NO_DTLS1
2425     if(dtlslisten) {
2426         i = DTLSv1_listen(con, &client);
2427         if (i > 0) {
2428             BIO *wbio;
2429             int fd = -1;
2430
2431             wbio = SSL_get_wbio(con);
2432             if(wbio) {
2433                 BIO_get_fd(wbio, &fd);
2434             }
2435
2436             if(!wbio || connect(fd, (struct sockaddr *)&client,
2437                                 sizeof(struct sockaddr_storage))) {
2438                 BIO_printf(bio_err, "ERROR - unable to connect\n");
2439                 return 0;
2440             }
2441             dtlslisten = 0;
2442             i = SSL_accept(con);
2443         }
2444     } else
2445 #endif
2446
2447     do {
2448         i = SSL_accept(con);
2449
2450 #ifdef CERT_CB_TEST_RETRY
2451         {
2452             while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
2453                     && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) {
2454                 BIO_printf(bio_err,
2455                        "LOOKUP from certificate callback during accept\n");
2456                 i = SSL_accept(con);
2457             }
2458         }
2459 #endif
2460
2461 #ifndef OPENSSL_NO_SRP
2462         while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2463             BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2464                        srp_callback_parm.login);
2465             srp_callback_parm.user =
2466                 SRP_VBASE_get_by_user(srp_callback_parm.vb,
2467                                       srp_callback_parm.login);
2468             if (srp_callback_parm.user)
2469                 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2470                            srp_callback_parm.user->info);
2471             else
2472                 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2473             i = SSL_accept(con);
2474         }
2475 #endif
2476     } while (i < 0 && SSL_waiting_for_async(con));
2477
2478     if (i <= 0) {
2479         if ((dtlslisten && i == 0)
2480                 || (!dtlslisten && BIO_sock_should_retry(i))) {
2481             BIO_printf(bio_s_out, "DELAY\n");
2482             return (1);
2483         }
2484
2485         BIO_printf(bio_err, "ERROR\n");
2486
2487         verify_err = SSL_get_verify_result(con);
2488         if (verify_err != X509_V_OK) {
2489             BIO_printf(bio_err, "verify error:%s\n",
2490                        X509_verify_cert_error_string(verify_err));
2491         }
2492         /* Always print any error messages */
2493         ERR_print_errors(bio_err);
2494         return (0);
2495     }
2496
2497     if (s_brief)
2498         print_ssl_summary(con);
2499
2500     PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
2501
2502     peer = SSL_get_peer_certificate(con);
2503     if (peer != NULL) {
2504         BIO_printf(bio_s_out, "Client certificate\n");
2505         PEM_write_bio_X509(bio_s_out, peer);
2506         X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2507         BIO_printf(bio_s_out, "subject=%s\n", buf);
2508         X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2509         BIO_printf(bio_s_out, "issuer=%s\n", buf);
2510         X509_free(peer);
2511     }
2512
2513     if (SSL_get_shared_ciphers(con, buf, sizeof buf) != NULL)
2514         BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2515     str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2516     ssl_print_sigalgs(bio_s_out, con);
2517 #ifndef OPENSSL_NO_EC
2518     ssl_print_point_formats(bio_s_out, con);
2519     ssl_print_curves(bio_s_out, con, 0);
2520 #endif
2521     BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
2522
2523 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2524     SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2525     if (next_proto_neg) {
2526         BIO_printf(bio_s_out, "NEXTPROTO is ");
2527         BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2528         BIO_printf(bio_s_out, "\n");
2529     }
2530 #endif
2531 #ifndef OPENSSL_NO_SRTP
2532     {
2533         SRTP_PROTECTION_PROFILE *srtp_profile
2534             = SSL_get_selected_srtp_profile(con);
2535
2536         if (srtp_profile)
2537             BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2538                        srtp_profile->name);
2539     }
2540 #endif
2541     if (SSL_cache_hit(con))
2542         BIO_printf(bio_s_out, "Reused session-id\n");
2543     BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2544                SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
2545     if (keymatexportlabel != NULL) {
2546         BIO_printf(bio_s_out, "Keying material exporter:\n");
2547         BIO_printf(bio_s_out, "    Label: '%s'\n", keymatexportlabel);
2548         BIO_printf(bio_s_out, "    Length: %i bytes\n", keymatexportlen);
2549         exportedkeymat = app_malloc(keymatexportlen, "export key");
2550         if (!SSL_export_keying_material(con, exportedkeymat,
2551                                         keymatexportlen,
2552                                         keymatexportlabel,
2553                                         strlen(keymatexportlabel),
2554                                         NULL, 0, 0)) {
2555             BIO_printf(bio_s_out, "    Error\n");
2556         } else {
2557             BIO_printf(bio_s_out, "    Keying material: ");
2558             for (i = 0; i < keymatexportlen; i++)
2559                 BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2560             BIO_printf(bio_s_out, "\n");
2561         }
2562         OPENSSL_free(exportedkeymat);
2563     }
2564
2565     return (1);
2566 }
2567
2568 #ifndef OPENSSL_NO_DH
2569 static DH *load_dh_param(const char *dhfile)
2570 {
2571     DH *ret = NULL;
2572     BIO *bio;
2573
2574     if ((bio = BIO_new_file(dhfile, "r")) == NULL)
2575         goto err;
2576     ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2577  err:
2578     BIO_free(bio);
2579     return (ret);
2580 }
2581 #endif
2582
2583 static int www_body(char *hostname, int s, int stype, unsigned char *context)
2584 {
2585     char *buf = NULL;
2586     int ret = 1;
2587     int i, j, k, dot;
2588     SSL *con;
2589     const SSL_CIPHER *c;
2590     BIO *io, *ssl_bio, *sbio;
2591 #ifdef RENEG
2592     int total_bytes = 0;
2593 #endif
2594     int width;
2595     fd_set readfds;
2596
2597     /* Set width for a select call if needed */
2598     width = s + 1;
2599
2600     buf = app_malloc(bufsize, "server www buffer");
2601     io = BIO_new(BIO_f_buffer());
2602     ssl_bio = BIO_new(BIO_f_ssl());
2603     if ((io == NULL) || (ssl_bio == NULL))
2604         goto err;
2605
2606 #ifdef FIONBIO
2607     if (s_nbio) {
2608         unsigned long sl = 1;
2609
2610         if (!s_quiet)
2611             BIO_printf(bio_err, "turning on non blocking io\n");
2612         if (BIO_socket_ioctl(s, FIONBIO, &sl) < 0)
2613             ERR_print_errors(bio_err);
2614     }
2615 #endif
2616
2617     /* lets make the output buffer a reasonable size */
2618     if (!BIO_set_write_buffer_size(io, bufsize))
2619         goto err;
2620
2621     if ((con = SSL_new(ctx)) == NULL)
2622         goto err;
2623
2624     if (s_tlsextdebug) {
2625         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2626         SSL_set_tlsext_debug_arg(con, bio_s_out);
2627     }
2628
2629     if (context && !SSL_set_session_id_context(con, context,
2630                         strlen((char *)context)))
2631         goto err;
2632
2633     sbio = BIO_new_socket(s, BIO_NOCLOSE);
2634     if (s_nbio_test) {
2635         BIO *test;
2636
2637         test = BIO_new(BIO_f_nbio_test());
2638         sbio = BIO_push(test, sbio);
2639     }
2640     SSL_set_bio(con, sbio, sbio);
2641     SSL_set_accept_state(con);
2642
2643     /* SSL_set_fd(con,s); */
2644     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
2645     BIO_push(io, ssl_bio);
2646 #ifdef CHARSET_EBCDIC
2647     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
2648 #endif
2649
2650     if (s_debug) {
2651         SSL_set_debug(con, 1);
2652         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2653         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2654     }
2655     if (s_msg) {
2656 #ifndef OPENSSL_NO_SSL_TRACE
2657         if (s_msg == 2)
2658             SSL_set_msg_callback(con, SSL_trace);
2659         else
2660 #endif
2661             SSL_set_msg_callback(con, msg_cb);
2662         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2663     }
2664
2665     for (;;) {
2666         i = BIO_gets(io, buf, bufsize - 1);
2667         if (i < 0) {            /* error */
2668             if (!BIO_should_retry(io) && !SSL_waiting_for_async(con)) {
2669                 if (!s_quiet)
2670                     ERR_print_errors(bio_err);
2671                 goto err;
2672             } else {
2673                 BIO_printf(bio_s_out, "read R BLOCK\n");
2674 #ifndef OPENSSL_NO_SRP
2675                 if (BIO_should_io_special(io)
2676                     && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
2677                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
2678                     srp_callback_parm.user =
2679                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
2680                                               srp_callback_parm.login);
2681                     if (srp_callback_parm.user)
2682                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2683                                    srp_callback_parm.user->info);
2684                     else
2685                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2686                     continue;
2687                 }
2688 #endif
2689 #if defined(OPENSSL_SYS_NETWARE)
2690                 delay(1000);
2691 #elif !defined(OPENSSL_SYS_MSDOS)
2692                 sleep(1);
2693 #endif
2694                 continue;
2695             }
2696         } else if (i == 0) {    /* end of input */
2697             ret = 1;
2698             goto end;
2699         }
2700
2701         /* else we have data */
2702         if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
2703             ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
2704             char *p;
2705             X509 *peer;
2706             STACK_OF(SSL_CIPHER) *sk;
2707             static const char *space = "                          ";
2708
2709             if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
2710                 if (strncmp("GET /renegcert", buf, 14) == 0)
2711                     SSL_set_verify(con,
2712                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2713                                    NULL);
2714                 i = SSL_renegotiate(con);
2715                 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
2716                 /* Send the HelloRequest */
2717                 i = SSL_do_handshake(con);
2718                 if (i <= 0) {
2719                     BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
2720                                SSL_get_error(con, i));
2721                     ERR_print_errors(bio_err);
2722                     goto err;
2723                 }
2724                 /* Wait for a ClientHello to come back */
2725                 FD_ZERO(&readfds);
2726                 openssl_fdset(s, &readfds);
2727                 i = select(width, (void *)&readfds, NULL, NULL, NULL);
2728                 if (i <= 0 || !FD_ISSET(s, &readfds)) {
2729                     BIO_printf(bio_s_out, "Error waiting for client response\n");
2730                     ERR_print_errors(bio_err);
2731                     goto err;
2732                 }
2733                 /*
2734                  * We're not acutally expecting any data here and we ignore
2735                  * any that is sent. This is just to force the handshake that
2736                  * we're expecting to come from the client. If they haven't
2737                  * sent one there's not much we can do.
2738                  */
2739                 BIO_gets(io, buf, bufsize - 1);
2740             }
2741
2742             BIO_puts(io,
2743                      "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2744             BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
2745             BIO_puts(io, "<pre>\n");
2746 /*                      BIO_puts(io,OpenSSL_version(OPENSSL_VERSION));*/
2747             BIO_puts(io, "\n");
2748             for (i = 0; i < local_argc; i++) {
2749                 const char *myp;
2750                 for (myp = local_argv[i]; *myp; myp++)
2751                     switch (*myp) {
2752                     case '<':
2753                         BIO_puts(io, "&lt;");
2754                         break;
2755                     case '>':
2756                         BIO_puts(io, "&gt;");
2757                         break;
2758                     case '&':
2759                         BIO_puts(io, "&amp;");
2760                         break;
2761                     default:
2762                         BIO_write(io, myp, 1);
2763                         break;
2764                     }
2765                 BIO_write(io, " ", 1);
2766             }
2767             BIO_puts(io, "\n");
2768
2769             BIO_printf(io,
2770                        "Secure Renegotiation IS%s supported\n",
2771                        SSL_get_secure_renegotiation_support(con) ?
2772                        "" : " NOT");
2773
2774             /*
2775              * The following is evil and should not really be done
2776              */
2777             BIO_printf(io, "Ciphers supported in s_server binary\n");
2778             sk = SSL_get_ciphers(con);
2779             j = sk_SSL_CIPHER_num(sk);
2780             for (i = 0; i < j; i++) {
2781                 c = sk_SSL_CIPHER_value(sk, i);
2782                 BIO_printf(io, "%-11s:%-25s ",
2783                            SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2784                 if ((((i + 1) % 2) == 0) && (i + 1 != j))
2785                     BIO_puts(io, "\n");
2786             }
2787             BIO_puts(io, "\n");
2788             p = SSL_get_shared_ciphers(con, buf, bufsize);
2789             if (p != NULL) {
2790                 BIO_printf(io,
2791                            "---\nCiphers common between both SSL end points:\n");
2792                 j = i = 0;
2793                 while (*p) {
2794                     if (*p == ':') {
2795                         BIO_write(io, space, 26 - j);
2796                         i++;
2797                         j = 0;
2798                         BIO_write(io, ((i % 3) ? " " : "\n"), 1);
2799                     } else {
2800                         BIO_write(io, p, 1);
2801                         j++;
2802                     }
2803                     p++;
2804                 }
2805                 BIO_puts(io, "\n");
2806             }
2807             ssl_print_sigalgs(io, con);
2808 #ifndef OPENSSL_NO_EC
2809             ssl_print_curves(io, con, 0);
2810 #endif
2811             BIO_printf(io, (SSL_cache_hit(con)
2812                             ? "---\nReused, " : "---\nNew, "));
2813             c = SSL_get_current_cipher(con);
2814             BIO_printf(io, "%s, Cipher is %s\n",
2815                        SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2816             SSL_SESSION_print(io, SSL_get_session(con));
2817             BIO_printf(io, "---\n");
2818             print_stats(io, SSL_get_SSL_CTX(con));
2819             BIO_printf(io, "---\n");
2820             peer = SSL_get_peer_certificate(con);
2821             if (peer != NULL) {
2822                 BIO_printf(io, "Client certificate\n");
2823                 X509_print(io, peer);
2824                 PEM_write_bio_X509(io, peer);
2825             } else
2826                 BIO_puts(io, "no client certificate available\n");
2827             BIO_puts(io, "</BODY></HTML>\r\n\r\n");
2828             break;
2829         } else if ((www == 2 || www == 3)
2830                    && (strncmp("GET /", buf, 5) == 0)) {
2831             BIO *file;
2832             char *p, *e;
2833             static const char *text =
2834                 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
2835
2836             /* skip the '/' */
2837             p = &(buf[5]);
2838
2839             dot = 1;
2840             for (e = p; *e != '\0'; e++) {
2841                 if (e[0] == ' ')
2842                     break;
2843
2844                 switch (dot) {
2845                 case 1:
2846                     dot = (e[0] == '.') ? 2 : 0;
2847                     break;
2848                 case 2:
2849                     dot = (e[0] == '.') ? 3 : 0;
2850                     break;
2851                 case 3:
2852                     dot = (e[0] == '/') ? -1 : 0;
2853                     break;
2854                 }
2855                 if (dot == 0)
2856                     dot = (e[0] == '/') ? 1 : 0;
2857             }
2858             dot = (dot == 3) || (dot == -1); /* filename contains ".."
2859                                               * component */
2860
2861             if (*e == '\0') {
2862                 BIO_puts(io, text);
2863                 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
2864                 break;
2865             }
2866             *e = '\0';
2867
2868             if (dot) {
2869                 BIO_puts(io, text);
2870                 BIO_printf(io, "'%s' contains '..' reference\r\n", p);
2871                 break;
2872             }
2873
2874             if (*p == '/') {
2875                 BIO_puts(io, text);
2876                 BIO_printf(io, "'%s' is an invalid path\r\n", p);
2877                 break;
2878             }
2879
2880             /* if a directory, do the index thang */
2881             if (app_isdir(p) > 0) {
2882                 BIO_puts(io, text);
2883                 BIO_printf(io, "'%s' is a directory\r\n", p);
2884                 break;
2885             }
2886
2887             if ((file = BIO_new_file(p, "r")) == NULL) {
2888                 BIO_puts(io, text);
2889                 BIO_printf(io, "Error opening '%s'\r\n", p);
2890                 ERR_print_errors(io);
2891                 break;
2892             }
2893
2894             if (!s_quiet)
2895                 BIO_printf(bio_err, "FILE:%s\n", p);
2896
2897             if (www == 2) {
2898                 i = strlen(p);
2899                 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
2900                     ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
2901                     ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
2902                     BIO_puts(io,
2903                              "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2904                 else
2905                     BIO_puts(io,
2906                              "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
2907             }
2908             /* send the file */
2909             for (;;) {
2910                 i = BIO_read(file, buf, bufsize);
2911                 if (i <= 0)
2912                     break;
2913
2914 #ifdef RENEG
2915                 total_bytes += i;
2916                 BIO_printf(bio_err, "%d\n", i);
2917                 if (total_bytes > 3 * 1024) {
2918                     total_bytes = 0;
2919                     BIO_printf(bio_err, "RENEGOTIATE\n");
2920                     SSL_renegotiate(con);
2921                 }
2922 #endif
2923
2924                 for (j = 0; j < i;) {
2925 #ifdef RENEG
2926                     {
2927                         static count = 0;
2928                         if (++count == 13) {
2929                             SSL_renegotiate(con);
2930                         }
2931                     }
2932 #endif
2933                     k = BIO_write(io, &(buf[j]), i - j);
2934                     if (k <= 0) {
2935                         if (!BIO_should_retry(io)  && !SSL_waiting_for_async(con))
2936                             goto write_error;
2937                         else {
2938                             BIO_printf(bio_s_out, "rwrite W BLOCK\n");
2939                         }
2940                     } else {
2941                         j += k;
2942                     }
2943                 }
2944             }
2945  write_error:
2946             BIO_free(file);
2947             break;
2948         }
2949     }
2950
2951     for (;;) {
2952         i = (int)BIO_flush(io);
2953         if (i <= 0) {
2954             if (!BIO_should_retry(io))
2955                 break;
2956         } else
2957             break;
2958     }
2959  end:
2960     /* make sure we re-use sessions */
2961     SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
2962
2963  err:
2964     if (ret >= 0)
2965         BIO_printf(bio_s_out, "ACCEPT\n");
2966     OPENSSL_free(buf);
2967     BIO_free_all(io);
2968     return (ret);
2969 }
2970
2971 static int rev_body(char *hostname, int s, int stype, unsigned char *context)
2972 {
2973     char *buf = NULL;
2974     int i;
2975     int ret = 1;
2976     SSL *con;
2977     BIO *io, *ssl_bio, *sbio;
2978
2979     buf = app_malloc(bufsize, "server rev buffer");
2980     io = BIO_new(BIO_f_buffer());
2981     ssl_bio = BIO_new(BIO_f_ssl());
2982     if ((io == NULL) || (ssl_bio == NULL))
2983         goto err;
2984
2985     /* lets make the output buffer a reasonable size */
2986     if (!BIO_set_write_buffer_size(io, bufsize))
2987         goto err;
2988
2989     if ((con = SSL_new(ctx)) == NULL)
2990         goto err;
2991
2992     if (s_tlsextdebug) {
2993         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2994         SSL_set_tlsext_debug_arg(con, bio_s_out);
2995     }
2996     if (context && !SSL_set_session_id_context(con, context,
2997                         strlen((char *)context))) {
2998         ERR_print_errors(bio_err);
2999         goto err;
3000     }
3001
3002     sbio = BIO_new_socket(s, BIO_NOCLOSE);
3003     SSL_set_bio(con, sbio, sbio);
3004     SSL_set_accept_state(con);
3005
3006     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3007     BIO_push(io, ssl_bio);
3008 #ifdef CHARSET_EBCDIC
3009     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
3010 #endif
3011
3012     if (s_debug) {
3013         SSL_set_debug(con, 1);
3014         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3015         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3016     }
3017     if (s_msg) {
3018 #ifndef OPENSSL_NO_SSL_TRACE
3019         if (s_msg == 2)
3020             SSL_set_msg_callback(con, SSL_trace);
3021         else
3022 #endif
3023             SSL_set_msg_callback(con, msg_cb);
3024         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3025     }
3026
3027     for (;;) {
3028         i = BIO_do_handshake(io);
3029         if (i > 0)
3030             break;
3031         if (!BIO_should_retry(io)) {
3032             BIO_puts(bio_err, "CONNECTION FAILURE\n");
3033             ERR_print_errors(bio_err);
3034             goto end;
3035         }
3036 #ifndef OPENSSL_NO_SRP
3037         if (BIO_should_io_special(io)
3038             && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3039             BIO_printf(bio_s_out, "LOOKUP renego during accept\n");
3040             srp_callback_parm.user =
3041                 SRP_VBASE_get_by_user(srp_callback_parm.vb,
3042                                       srp_callback_parm.login);
3043             if (srp_callback_parm.user)
3044                 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3045                            srp_callback_parm.user->info);
3046             else
3047                 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3048             continue;
3049         }
3050 #endif
3051     }
3052     BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
3053     print_ssl_summary(con);
3054
3055     for (;;) {
3056         i = BIO_gets(io, buf, bufsize - 1);
3057         if (i < 0) {            /* error */
3058             if (!BIO_should_retry(io)) {
3059                 if (!s_quiet)
3060                     ERR_print_errors(bio_err);
3061                 goto err;
3062             } else {
3063                 BIO_printf(bio_s_out, "read R BLOCK\n");
3064 #ifndef OPENSSL_NO_SRP
3065                 if (BIO_should_io_special(io)
3066                     && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3067                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
3068                     srp_callback_parm.user =
3069                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
3070                                               srp_callback_parm.login);
3071                     if (srp_callback_parm.user)
3072                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
3073                                    srp_callback_parm.user->info);
3074                     else
3075                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
3076                     continue;
3077                 }
3078 #endif
3079 #if defined(OPENSSL_SYS_NETWARE)
3080                 delay(1000);
3081 #elif !defined(OPENSSL_SYS_MSDOS)
3082                 sleep(1);
3083 #endif
3084                 continue;
3085             }
3086         } else if (i == 0) {    /* end of input */
3087             ret = 1;
3088             BIO_printf(bio_err, "CONNECTION CLOSED\n");
3089             goto end;
3090         } else {
3091             char *p = buf + i - 1;
3092             while (i && (*p == '\n' || *p == '\r')) {
3093                 p--;
3094                 i--;
3095             }
3096             if (!s_ign_eof && (i == 5) && (strncmp(buf, "CLOSE", 5) == 0)) {
3097                 ret = 1;
3098                 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3099                 goto end;
3100             }
3101             BUF_reverse((unsigned char *)buf, NULL, i);
3102             buf[i] = '\n';
3103             BIO_write(io, buf, i + 1);
3104             for (;;) {
3105                 i = BIO_flush(io);
3106                 if (i > 0)
3107                     break;
3108                 if (!BIO_should_retry(io))
3109                     goto end;
3110             }
3111         }
3112     }
3113  end:
3114     /* make sure we re-use sessions */
3115     SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
3116
3117  err:
3118
3119     OPENSSL_free(buf);
3120     BIO_free_all(io);
3121     return (ret);
3122 }
3123
3124 #define MAX_SESSION_ID_ATTEMPTS 10
3125 static int generate_session_id(const SSL *ssl, unsigned char *id,
3126                                unsigned int *id_len)
3127 {
3128     unsigned int count = 0;
3129     do {
3130         if (RAND_bytes(id, *id_len) <= 0)
3131             return 0;
3132         /*
3133          * Prefix the session_id with the required prefix. NB: If our prefix
3134          * is too long, clip it - but there will be worse effects anyway, eg.
3135          * the server could only possibly create 1 session ID (ie. the
3136          * prefix!) so all future session negotiations will fail due to
3137          * conflicts.
3138          */
3139         memcpy(id, session_id_prefix,
3140                (strlen(session_id_prefix) < *id_len) ?
3141                strlen(session_id_prefix) : *id_len);
3142     }
3143     while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3144            (++count < MAX_SESSION_ID_ATTEMPTS));
3145     if (count >= MAX_SESSION_ID_ATTEMPTS)
3146         return 0;
3147     return 1;
3148 }
3149
3150 /*
3151  * By default s_server uses an in-memory cache which caches SSL_SESSION
3152  * structures without any serialisation. This hides some bugs which only
3153  * become apparent in deployed servers. By implementing a basic external
3154  * session cache some issues can be debugged using s_server.
3155  */
3156
3157 typedef struct simple_ssl_session_st {
3158     unsigned char *id;
3159     unsigned int idlen;
3160     unsigned char *der;
3161     int derlen;
3162     struct simple_ssl_session_st *next;
3163 } simple_ssl_session;
3164
3165 static simple_ssl_session *first = NULL;
3166
3167 static int add_session(SSL *ssl, SSL_SESSION *session)
3168 {
3169     simple_ssl_session *sess = app_malloc(sizeof(*sess), "get session");
3170     unsigned char *p;
3171
3172     SSL_SESSION_get_id(session, &sess->idlen);
3173     sess->derlen = i2d_SSL_SESSION(session, NULL);
3174     if (sess->derlen < 0) {
3175         BIO_printf(bio_err, "Error encoding session\n");
3176         OPENSSL_free(sess);
3177         return 0;
3178     }
3179
3180     sess->id = BUF_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
3181     sess->der = app_malloc(sess->derlen, "get session buffer");
3182     if (!sess->id) {
3183         BIO_printf(bio_err, "Out of memory adding to external cache\n");
3184         OPENSSL_free(sess->id);
3185         OPENSSL_free(sess->der);
3186         OPENSSL_free(sess);
3187         return 0;
3188     }
3189     p = sess->der;
3190
3191     /* Assume it still works. */
3192     if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
3193         BIO_printf(bio_err, "Unexpected session encoding length\n");
3194         OPENSSL_free(sess->id);
3195         OPENSSL_free(sess->der);
3196         OPENSSL_free(sess);
3197         return 0;
3198     }
3199
3200     sess->next = first;
3201     first = sess;
3202     BIO_printf(bio_err, "New session added to external cache\n");
3203     return 0;
3204 }
3205
3206 static SSL_SESSION *get_session(SSL *ssl, unsigned char *id, int idlen,
3207                                 int *do_copy)
3208 {
3209     simple_ssl_session *sess;
3210     *do_copy = 0;
3211     for (sess = first; sess; sess = sess->next) {
3212         if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3213             const unsigned char *p = sess->der;
3214             BIO_printf(bio_err, "Lookup session: cache hit\n");
3215             return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3216         }
3217     }
3218     BIO_printf(bio_err, "Lookup session: cache miss\n");
3219     return NULL;
3220 }
3221
3222 static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
3223 {
3224     simple_ssl_session *sess, *prev = NULL;
3225     const unsigned char *id;
3226     unsigned int idlen;
3227     id = SSL_SESSION_get_id(session, &idlen);
3228     for (sess = first; sess; sess = sess->next) {
3229         if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3230             if (prev)
3231                 prev->next = sess->next;
3232             else
3233                 first = sess->next;
3234             OPENSSL_free(sess->id);
3235             OPENSSL_free(sess->der);
3236             OPENSSL_free(sess);
3237             return;
3238         }
3239         prev = sess;
3240     }
3241 }
3242
3243 static void init_session_cache_ctx(SSL_CTX *sctx)
3244 {
3245     SSL_CTX_set_session_cache_mode(sctx,
3246                                    SSL_SESS_CACHE_NO_INTERNAL |
3247                                    SSL_SESS_CACHE_SERVER);
3248     SSL_CTX_sess_set_new_cb(sctx, add_session);
3249     SSL_CTX_sess_set_get_cb(sctx, get_session);
3250     SSL_CTX_sess_set_remove_cb(sctx, del_session);
3251 }
3252
3253 static void free_sessions(void)
3254 {
3255     simple_ssl_session *sess, *tsess;
3256     for (sess = first; sess;) {
3257         OPENSSL_free(sess->id);
3258         OPENSSL_free(sess->der);
3259         tsess = sess;
3260         sess = sess->next;
3261         OPENSSL_free(tsess);
3262     }
3263     first = NULL;
3264 }