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