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