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