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