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