blob: c28aa51d4058241583d49397574ff2113697bd85 [file] [log] [blame]
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00001/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002 * 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.
Matt Caswell0f113f32015-01-22 03:40:55 +00007 *
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00008 * 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).
Matt Caswell0f113f32015-01-22 03:40:55 +000014 *
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000015 * 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.
Matt Caswell0f113f32015-01-22 03:40:55 +000021 *
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000022 * 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 :-).
Matt Caswell0f113f32015-01-22 03:40:55 +000036 * 4. If you include any Windows specific code (or a derivative thereof) from
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000037 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
Matt Caswell0f113f32015-01-22 03:40:55 +000039 *
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000040 * 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.
Matt Caswell0f113f32015-01-22 03:40:55 +000051 *
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000052 * 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 */
Bodo Möllera661b652001-10-20 17:56:36 +000057/* ====================================================================
Bodo Möllerb1277b92006-01-02 23:29:12 +000058 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
Bodo Möllera661b652001-10-20 17:56:36 +000059 *
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
Matt Caswell0f113f32015-01-22 03:40:55 +000065 * notice, this list of conditions and the following disclaimer.
Bodo Möllera661b652001-10-20 17:56:36 +000066 *
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 */
Bodo Möllerea262262002-08-09 08:56:08 +0000110/* ====================================================================
111 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
Matt Caswell0f113f32015-01-22 03:40:55 +0000112 * ECC cipher suite support in OpenSSL originally developed by
Bodo Möllerea262262002-08-09 08:56:08 +0000113 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
114 */
Nils Larschddac1972006-03-10 23:06:27 +0000115/* ====================================================================
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 */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000141
Nils Larschddac1972006-03-10 23:06:27 +0000142#include <ctype.h>
Ulf Möller8c197cc1999-07-28 23:25:59 +0000143#include <stdio.h>
144#include <stdlib.h>
145#include <string.h>
Matt Caswell252d6d32015-07-22 17:50:51 +0100146#include <openssl/async.h>
Richard Levitte4d8743f2003-11-28 13:10:58 +0000147
Richard Levittebe1bd922001-02-20 14:07:03 +0000148#include <openssl/e_os2.h>
Ulf Möller8c197cc1999-07-28 23:25:59 +0000149
Matt Caswell68d39f32015-01-21 19:18:47 +0000150/* conflicts with winsock2 stuff on netware */
151#if !defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +0000152# include <sys/types.h>
Richard Levitte4d8743f2003-11-28 13:10:58 +0000153#endif
154
Matt Caswell0f113f32015-01-22 03:40:55 +0000155/*
156 * With IPv6, it looks like Digital has mixed up the proper order of
157 * recursive header file inclusion, resulting in the compiler complaining
158 * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
159 * needed to have fileno() declared correctly... So let's define u_int
160 */
Richard Levittebc36ee62001-02-20 08:13:47 +0000161#if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
Matt Caswell0f113f32015-01-22 03:40:55 +0000162# define __U_INT
Ulf Möller7d7d2cb1999-05-13 11:37:32 +0000163typedef unsigned int u_int;
164#endif
165
Bodo Möllerec577821999-04-23 22:13:45 +0000166#include <openssl/lhash.h>
167#include <openssl/bn.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000168#define USE_SOCKETS
169#include "apps.h"
Bodo Möllerec577821999-04-23 22:13:45 +0000170#include <openssl/err.h>
171#include <openssl/pem.h>
172#include <openssl/x509.h>
173#include <openssl/ssl.h>
Geoff Thorpe13729652001-09-12 02:39:06 +0000174#include <openssl/rand.h>
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000175#include <openssl/ocsp.h>
Nils Larsch3eeaab42005-07-16 12:37:36 +0000176#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +0000177# include <openssl/dh.h>
Nils Larsch3eeaab42005-07-16 12:37:36 +0000178#endif
179#ifndef OPENSSL_NO_RSA
Matt Caswell0f113f32015-01-22 03:40:55 +0000180# include <openssl/rsa.h>
Nils Larsch3eeaab42005-07-16 12:37:36 +0000181#endif
Ben Laurieedc032b2011-03-12 17:01:19 +0000182#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +0000183# include <openssl/srp.h>
Ben Laurieedc032b2011-03-12 17:01:19 +0000184#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000185#include "s_apps.h"
Ben Laurie36d16f82005-04-26 16:02:40 +0000186#include "timeouts.h"
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000187
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000188static int not_resumable_sess_cb(SSL *s, int is_forward_secure);
Rich Salza773b522016-02-13 22:33:56 -0500189static int sv_body(int s, int stype, unsigned char *context);
190static int www_body(int s, int stype, unsigned char *context);
191static int rev_body(int s, int stype, unsigned char *context);
Matt Caswell0f113f32015-01-22 03:40:55 +0000192static void close_accept_socket(void);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000193static int init_ssl_connection(SSL *s);
Matt Caswell0f113f32015-01-22 03:40:55 +0000194static void print_stats(BIO *bp, SSL_CTX *ctx);
Geoff Thorpe1aa0d942001-02-21 18:38:48 +0000195static int generate_session_id(const SSL *ssl, unsigned char *id,
Matt Caswell0f113f32015-01-22 03:40:55 +0000196 unsigned int *id_len);
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +0000197static void init_session_cache_ctx(SSL_CTX *sctx);
198static void free_sessions(void);
Richard Levittecf1b7d92001-02-19 16:06:34 +0000199#ifndef OPENSSL_NO_DH
Nils Larscheb3eab22005-04-07 22:48:33 +0000200static DH *load_dh_param(const char *dhfile);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000201#endif
Bodo Möllerea262262002-08-09 08:56:08 +0000202
Bodo Möllerb74ba291999-09-03 23:08:45 +0000203static void s_server_init(void);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000204
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000205/* static int load_CA(SSL_CTX *ctx, char *file);*/
206
207#undef BUFSIZZ
Matt Caswell0f113f32015-01-22 03:40:55 +0000208#define BUFSIZZ 16*1024
209static int bufsize = BUFSIZZ;
210static int accept_socket = -1;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000211
Matt Caswell0f113f32015-01-22 03:40:55 +0000212#define TEST_CERT "server.pem"
Matt Caswelle481f9b2015-05-15 10:49:56 +0100213#define TEST_CERT2 "server2.pem"
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000214
Dr. Stephen Henson2a7cbe72012-09-12 23:14:28 +0000215extern int verify_depth, verify_return_error, verify_quiet;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000216
Matt Caswell0f113f32015-01-22 03:40:55 +0000217static int s_server_verify = SSL_VERIFY_NONE;
Bodo Möllerb56bce41999-05-13 15:09:38 +0000218static int s_server_session_id_context = 1; /* anything will do */
Matt Caswell0f113f32015-01-22 03:40:55 +0000219static const char *s_cert_file = TEST_CERT, *s_key_file =
220 NULL, *s_chain_file = NULL;
Matt Caswell55614192015-05-12 10:35:51 +0100221
Matt Caswell0f113f32015-01-22 03:40:55 +0000222static const char *s_cert_file2 = TEST_CERT2, *s_key_file2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000223static char *s_dcert_file = NULL, *s_dkey_file = NULL, *s_dchain_file = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000224static int s_nbio = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000225static int s_nbio_test = 0;
Ben Lauriedf2ee0e2015-09-05 13:32:58 +0100226static int s_crlf = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000227static SSL_CTX *ctx = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000228static SSL_CTX *ctx2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000229static int www = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000230
Matt Caswell0f113f32015-01-22 03:40:55 +0000231static BIO *bio_s_out = NULL;
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +0000232static BIO *bio_s_msg = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000233static int s_debug = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000234static int s_tlsextdebug = 0;
235static int s_tlsextstatus = 0;
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000236static int cert_status_cb(SSL *s, void *arg);
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000237static int no_resume_ephemeral = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000238static int s_msg = 0;
239static int s_quiet = 0;
240static int s_ign_eof = 0;
241static int s_brief = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000242
Matt Caswell0f113f32015-01-22 03:40:55 +0000243static char *keymatexportlabel = NULL;
244static int keymatexportlen = 20;
Ben Lauriee0af0402011-11-15 23:50:52 +0000245
Matt Caswell7e25dd62015-02-13 23:33:12 +0000246static int async = 0;
247
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000248#ifndef OPENSSL_NO_ENGINE
Matt Caswell0f113f32015-01-22 03:40:55 +0000249static char *engine_id = NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000250#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000251static const char *session_id_prefix = NULL;
Bodo Möllerb74ba291999-09-03 23:08:45 +0000252
Ben Lauriea7a14a22015-12-16 13:25:07 +0000253#ifndef OPENSSL_NO_DTLS
Ben Laurie36d16f82005-04-26 16:02:40 +0000254static int enable_timeouts = 0;
Bodo Möllerb1277b92006-01-02 23:29:12 +0000255static long socket_mtu;
Ben Laurie36d16f82005-04-26 16:02:40 +0000256static int cert_chain = 0;
Dr. Stephen Henson58f41a92009-06-05 14:59:26 +0000257#endif
Matt Caswelld8249e92015-09-23 10:02:18 +0100258static int dtlslisten = 0;
Ben Laurie36d16f82005-04-26 16:02:40 +0000259
Trevora398f822013-05-12 18:55:27 -0700260static BIO *serverinfo_in = NULL;
261static const char *s_serverinfo_file = NULL;
Scott Deboy36086182013-06-18 14:34:38 -0700262
Nils Larschddac1972006-03-10 23:06:27 +0000263#ifndef OPENSSL_NO_PSK
Matt Caswell0f113f32015-01-22 03:40:55 +0000264static char *psk_identity = "Client_identity";
265char *psk_key = NULL; /* by default PSK is not used */
Nils Larschddac1972006-03-10 23:06:27 +0000266
267static unsigned int psk_server_cb(SSL *ssl, const char *identity,
Matt Caswell0f113f32015-01-22 03:40:55 +0000268 unsigned char *psk,
269 unsigned int max_psk_len)
270{
271 unsigned int psk_len = 0;
272 int ret;
273 BIGNUM *bn = NULL;
Nils Larschddac1972006-03-10 23:06:27 +0000274
Matt Caswell0f113f32015-01-22 03:40:55 +0000275 if (s_debug)
276 BIO_printf(bio_s_out, "psk_server_cb\n");
277 if (!identity) {
278 BIO_printf(bio_err, "Error: client did not send PSK identity\n");
279 goto out_err;
280 }
281 if (s_debug)
282 BIO_printf(bio_s_out, "identity_len=%d identity=%s\n",
Matt Caswell11abf922015-03-12 14:09:00 +0000283 (int)strlen(identity), identity);
Nils Larschddac1972006-03-10 23:06:27 +0000284
Matt Caswell0f113f32015-01-22 03:40:55 +0000285 /* here we could lookup the given identity e.g. from a database */
286 if (strcmp(identity, psk_identity) != 0) {
287 BIO_printf(bio_s_out, "PSK error: client identity not found"
288 " (got '%s' expected '%s')\n", identity, psk_identity);
289 goto out_err;
290 }
291 if (s_debug)
292 BIO_printf(bio_s_out, "PSK client identity found\n");
Nils Larschddac1972006-03-10 23:06:27 +0000293
Matt Caswell0f113f32015-01-22 03:40:55 +0000294 /* convert the PSK key to binary */
295 ret = BN_hex2bn(&bn, psk_key);
296 if (!ret) {
297 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
298 psk_key);
Rich Salz23a1d5e2015-04-30 21:37:06 -0400299 BN_free(bn);
Matt Caswell0f113f32015-01-22 03:40:55 +0000300 return 0;
301 }
302 if (BN_num_bytes(bn) > (int)max_psk_len) {
303 BIO_printf(bio_err,
304 "psk buffer of callback is too small (%d) for key (%d)\n",
305 max_psk_len, BN_num_bytes(bn));
306 BN_free(bn);
307 return 0;
308 }
Nils Larschddac1972006-03-10 23:06:27 +0000309
Matt Caswell0f113f32015-01-22 03:40:55 +0000310 ret = BN_bn2bin(bn, psk);
311 BN_free(bn);
Nils Larschddac1972006-03-10 23:06:27 +0000312
Matt Caswell0f113f32015-01-22 03:40:55 +0000313 if (ret < 0)
314 goto out_err;
315 psk_len = (unsigned int)ret;
Nils Larschddac1972006-03-10 23:06:27 +0000316
Matt Caswell0f113f32015-01-22 03:40:55 +0000317 if (s_debug)
318 BIO_printf(bio_s_out, "fetched PSK len=%d\n", psk_len);
319 return psk_len;
Nils Larschddac1972006-03-10 23:06:27 +0000320 out_err:
Matt Caswell0f113f32015-01-22 03:40:55 +0000321 if (s_debug)
322 BIO_printf(bio_err, "Error in PSK server callback\n");
Rich Salzc54cc2b2015-04-25 09:26:48 -0400323 (void)BIO_flush(bio_err);
324 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +0000325 return 0;
326}
Nils Larschddac1972006-03-10 23:06:27 +0000327#endif
Ben Laurie36d16f82005-04-26 16:02:40 +0000328
Ben Laurieedc032b2011-03-12 17:01:19 +0000329#ifndef OPENSSL_NO_SRP
330/* This is a context that we pass to callbacks */
Matt Caswell0f113f32015-01-22 03:40:55 +0000331typedef struct srpsrvparm_st {
332 char *login;
333 SRP_VBASE *vb;
334 SRP_user_pwd *user;
335} srpsrvparm;
Ben Laurieedc032b2011-03-12 17:01:19 +0000336
Matt Caswell0f113f32015-01-22 03:40:55 +0000337/*
338 * This callback pretends to require some asynchronous logic in order to
339 * obtain a verifier. When the callback is called for a new connection we
340 * return with a negative value. This will provoke the accept etc to return
341 * with an LOOKUP_X509. The main logic of the reinvokes the suspended call
342 * (which would normally occur after a worker has finished) and we set the
343 * user parameters.
344 */
Rich Salz6d23cf92015-01-12 17:29:26 -0500345static int ssl_srp_server_param_cb(SSL *s, int *ad, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000346{
347 srpsrvparm *p = (srpsrvparm *) arg;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100348 int ret = SSL3_AL_FATAL;
349
Matt Caswell0f113f32015-01-22 03:40:55 +0000350 if (p->login == NULL && p->user == NULL) {
351 p->login = SSL_get_srp_username(s);
352 BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
353 return (-1);
354 }
Ben Laurieedc032b2011-03-12 17:01:19 +0000355
Matt Caswell0f113f32015-01-22 03:40:55 +0000356 if (p->user == NULL) {
357 BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
Emilia Kasper380f18e2016-02-24 12:59:59 +0100358 goto err;
Matt Caswell0f113f32015-01-22 03:40:55 +0000359 }
Emilia Kasper380f18e2016-02-24 12:59:59 +0100360
Matt Caswell0f113f32015-01-22 03:40:55 +0000361 if (SSL_set_srp_server_param
362 (s, p->user->N, p->user->g, p->user->s, p->user->v,
363 p->user->info) < 0) {
364 *ad = SSL_AD_INTERNAL_ERROR;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100365 goto err;
Matt Caswell0f113f32015-01-22 03:40:55 +0000366 }
367 BIO_printf(bio_err,
368 "SRP parameters set: username = \"%s\" info=\"%s\" \n",
369 p->login, p->user->info);
Emilia Kasper380f18e2016-02-24 12:59:59 +0100370 ret = SSL_ERROR_NONE;
371
372err:
373 SRP_user_pwd_free(p->user);
Matt Caswell0f113f32015-01-22 03:40:55 +0000374 p->user = NULL;
375 p->login = NULL;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100376 return ret;
Matt Caswell0f113f32015-01-22 03:40:55 +0000377}
Ben Laurieedc032b2011-03-12 17:01:19 +0000378
379#endif
380
Ulf Möller6b691a51999-04-19 21:31:43 +0000381static void s_server_init(void)
Matt Caswell0f113f32015-01-22 03:40:55 +0000382{
383 accept_socket = -1;
Rich Salz7e1b7482015-04-24 15:26:15 -0400384 verify_depth = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000385 s_server_verify = SSL_VERIFY_NONE;
386 s_dcert_file = NULL;
387 s_dkey_file = NULL;
388 s_dchain_file = NULL;
389 s_cert_file = TEST_CERT;
390 s_key_file = NULL;
391 s_chain_file = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000392 s_cert_file2 = TEST_CERT2;
393 s_key_file2 = NULL;
394 ctx2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000395 s_nbio = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000396 s_nbio_test = 0;
397 ctx = NULL;
398 www = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000399 bio_s_out = NULL;
400 s_debug = 0;
401 s_msg = 0;
402 s_quiet = 0;
403 s_brief = 0;
Matt Caswell7e25dd62015-02-13 23:33:12 +0000404 async = 0;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000405#ifndef OPENSSL_NO_ENGINE
Rich Salz7e1b7482015-04-24 15:26:15 -0400406 engine_id = NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000407#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000408}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000409
Matt Caswell0f113f32015-01-22 03:40:55 +0000410static int local_argc = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000411static char **local_argv;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000412
Ulf Möllera53955d1999-06-04 21:35:58 +0000413#ifdef CHARSET_EBCDIC
414static int ebcdic_new(BIO *bi);
415static int ebcdic_free(BIO *a);
416static int ebcdic_read(BIO *b, char *out, int outl);
Bodo Möller0fd05a22002-08-15 14:52:54 +0000417static int ebcdic_write(BIO *b, const char *in, int inl);
418static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
Ulf Möllera53955d1999-06-04 21:35:58 +0000419static int ebcdic_gets(BIO *bp, char *buf, int size);
Bodo Möller0fd05a22002-08-15 14:52:54 +0000420static int ebcdic_puts(BIO *bp, const char *str);
Ulf Möllera53955d1999-06-04 21:35:58 +0000421
Matt Caswell0f113f32015-01-22 03:40:55 +0000422# define BIO_TYPE_EBCDIC_FILTER (18|0x0200)
423static BIO_METHOD methods_ebcdic = {
424 BIO_TYPE_EBCDIC_FILTER,
425 "EBCDIC/ASCII filter",
426 ebcdic_write,
427 ebcdic_read,
428 ebcdic_puts,
429 ebcdic_gets,
430 ebcdic_ctrl,
431 ebcdic_new,
432 ebcdic_free,
433};
Ulf Möllera53955d1999-06-04 21:35:58 +0000434
Rich Salz68dc6822015-04-30 17:48:31 -0400435/* This struct is "unwarranted chumminess with the compiler." */
Matt Caswell0f113f32015-01-22 03:40:55 +0000436typedef struct {
437 size_t alloced;
438 char buff[1];
Ulf Möllera53955d1999-06-04 21:35:58 +0000439} EBCDIC_OUTBUFF;
440
441BIO_METHOD *BIO_f_ebcdic_filter()
442{
Matt Caswell0f113f32015-01-22 03:40:55 +0000443 return (&methods_ebcdic);
Ulf Möllera53955d1999-06-04 21:35:58 +0000444}
445
446static int ebcdic_new(BIO *bi)
447{
Matt Caswell0f113f32015-01-22 03:40:55 +0000448 EBCDIC_OUTBUFF *wbuf;
Ulf Möllera53955d1999-06-04 21:35:58 +0000449
Rich Salzb4faea52015-05-01 23:10:31 -0400450 wbuf = app_malloc(sizeof(*wbuf) + 1024, "ebcdic wbuf");
Matt Caswell0f113f32015-01-22 03:40:55 +0000451 wbuf->alloced = 1024;
452 wbuf->buff[0] = '\0';
Ulf Möllera53955d1999-06-04 21:35:58 +0000453
Matt Caswell0f113f32015-01-22 03:40:55 +0000454 bi->ptr = (char *)wbuf;
455 bi->init = 1;
456 bi->flags = 0;
457 return (1);
Ulf Möllera53955d1999-06-04 21:35:58 +0000458}
459
460static int ebcdic_free(BIO *a)
461{
Matt Caswell0f113f32015-01-22 03:40:55 +0000462 if (a == NULL)
463 return (0);
Rich Salz25aaa982015-05-01 14:37:16 -0400464 OPENSSL_free(a->ptr);
Matt Caswell0f113f32015-01-22 03:40:55 +0000465 a->ptr = NULL;
466 a->init = 0;
467 a->flags = 0;
468 return (1);
Ulf Möllera53955d1999-06-04 21:35:58 +0000469}
Matt Caswell0f113f32015-01-22 03:40:55 +0000470
Ulf Möllera53955d1999-06-04 21:35:58 +0000471static int ebcdic_read(BIO *b, char *out, int outl)
472{
Matt Caswell0f113f32015-01-22 03:40:55 +0000473 int ret = 0;
Ulf Möllera53955d1999-06-04 21:35:58 +0000474
Matt Caswell0f113f32015-01-22 03:40:55 +0000475 if (out == NULL || outl == 0)
476 return (0);
477 if (b->next_bio == NULL)
478 return (0);
Ulf Möllera53955d1999-06-04 21:35:58 +0000479
Matt Caswell0f113f32015-01-22 03:40:55 +0000480 ret = BIO_read(b->next_bio, out, outl);
481 if (ret > 0)
482 ascii2ebcdic(out, out, ret);
483 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000484}
485
Bodo Möller0fd05a22002-08-15 14:52:54 +0000486static int ebcdic_write(BIO *b, const char *in, int inl)
Ulf Möllera53955d1999-06-04 21:35:58 +0000487{
Matt Caswell0f113f32015-01-22 03:40:55 +0000488 EBCDIC_OUTBUFF *wbuf;
489 int ret = 0;
490 int num;
491 unsigned char n;
Ulf Möllera53955d1999-06-04 21:35:58 +0000492
Matt Caswell0f113f32015-01-22 03:40:55 +0000493 if ((in == NULL) || (inl <= 0))
494 return (0);
495 if (b->next_bio == NULL)
496 return (0);
Ulf Möllera53955d1999-06-04 21:35:58 +0000497
Matt Caswell0f113f32015-01-22 03:40:55 +0000498 wbuf = (EBCDIC_OUTBUFF *) b->ptr;
Ulf Möllera53955d1999-06-04 21:35:58 +0000499
Matt Caswell0f113f32015-01-22 03:40:55 +0000500 if (inl > (num = wbuf->alloced)) {
501 num = num + num; /* double the size */
502 if (num < inl)
503 num = inl;
Rich Salzb4faea52015-05-01 23:10:31 -0400504 wbuf = app_malloc(sizeof(*wbuf) + num, "grow ebcdic wbuf");
Matt Caswell918bb862015-03-04 17:49:51 +0000505 OPENSSL_free(b->ptr);
Ulf Möllera53955d1999-06-04 21:35:58 +0000506
Matt Caswell0f113f32015-01-22 03:40:55 +0000507 wbuf->alloced = num;
508 wbuf->buff[0] = '\0';
Ulf Möllera53955d1999-06-04 21:35:58 +0000509
Matt Caswell0f113f32015-01-22 03:40:55 +0000510 b->ptr = (char *)wbuf;
511 }
Ulf Möllera53955d1999-06-04 21:35:58 +0000512
Matt Caswell0f113f32015-01-22 03:40:55 +0000513 ebcdic2ascii(wbuf->buff, in, inl);
Ulf Möllera53955d1999-06-04 21:35:58 +0000514
Matt Caswell0f113f32015-01-22 03:40:55 +0000515 ret = BIO_write(b->next_bio, wbuf->buff, inl);
Ulf Möllera53955d1999-06-04 21:35:58 +0000516
Matt Caswell0f113f32015-01-22 03:40:55 +0000517 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000518}
519
Bodo Möller0fd05a22002-08-15 14:52:54 +0000520static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr)
Ulf Möllera53955d1999-06-04 21:35:58 +0000521{
Matt Caswell0f113f32015-01-22 03:40:55 +0000522 long ret;
Ulf Möllera53955d1999-06-04 21:35:58 +0000523
Matt Caswell0f113f32015-01-22 03:40:55 +0000524 if (b->next_bio == NULL)
525 return (0);
526 switch (cmd) {
527 case BIO_CTRL_DUP:
528 ret = 0L;
529 break;
530 default:
531 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
532 break;
533 }
534 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000535}
536
537static int ebcdic_gets(BIO *bp, char *buf, int size)
538{
Matt Caswell0f113f32015-01-22 03:40:55 +0000539 int i, ret = 0;
540 if (bp->next_bio == NULL)
541 return (0);
542/* return(BIO_gets(bp->next_bio,buf,size));*/
543 for (i = 0; i < size - 1; ++i) {
544 ret = ebcdic_read(bp, &buf[i], 1);
545 if (ret <= 0)
546 break;
547 else if (buf[i] == '\n') {
548 ++i;
549 break;
550 }
551 }
552 if (i < size)
553 buf[i] = '\0';
554 return (ret < 0 && i == 0) ? ret : i;
Ulf Möllera53955d1999-06-04 21:35:58 +0000555}
556
Bodo Möller0fd05a22002-08-15 14:52:54 +0000557static int ebcdic_puts(BIO *bp, const char *str)
Ulf Möllera53955d1999-06-04 21:35:58 +0000558{
Matt Caswell0f113f32015-01-22 03:40:55 +0000559 if (bp->next_bio == NULL)
560 return (0);
561 return ebcdic_write(bp, str, strlen(str));
Ulf Möllera53955d1999-06-04 21:35:58 +0000562}
563#endif
564
Bodo Möllered3883d2006-01-02 23:14:37 +0000565/* This is a context that we pass to callbacks */
566typedef struct tlsextctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000567 char *servername;
568 BIO *biodebug;
569 int extension_error;
Bodo Möllered3883d2006-01-02 23:14:37 +0000570} tlsextctx;
571
Rich Salz6d23cf92015-01-12 17:29:26 -0500572static int ssl_servername_cb(SSL *s, int *ad, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000573{
574 tlsextctx *p = (tlsextctx *) arg;
575 const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
576 if (servername && p->biodebug)
577 BIO_printf(p->biodebug, "Hostname in TLS extension: \"%s\"\n",
578 servername);
579
580 if (!p->servername)
581 return SSL_TLSEXT_ERR_NOACK;
582
583 if (servername) {
584 if (strcasecmp(servername, p->servername))
585 return p->extension_error;
586 if (ctx2) {
587 BIO_printf(p->biodebug, "Switching server context.\n");
588 SSL_set_SSL_CTX(s, ctx2);
589 }
590 }
591 return SSL_TLSEXT_ERR_OK;
Bodo Möllered3883d2006-01-02 23:14:37 +0000592}
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000593
594/* Structure passed to cert status callback */
595
596typedef struct tlsextstatusctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000597 /* Default responder to use */
598 char *host, *path, *port;
599 int use_ssl;
600 int timeout;
Matt Caswell0f113f32015-01-22 03:40:55 +0000601 int verbose;
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000602} tlsextstatusctx;
603
Rich Salz7e1b7482015-04-24 15:26:15 -0400604static tlsextstatusctx tlscstatp = { NULL, NULL, NULL, 0, -1, 0 };
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000605
Matt Caswell0f113f32015-01-22 03:40:55 +0000606/*
607 * Certificate Status callback. This is called when a client includes a
608 * certificate status request extension. This is a simplified version. It
609 * examines certificates each time and makes one OCSP responder query for
610 * each request. A full version would store details such as the OCSP
611 * certificate IDs and minimise the number of OCSP responses by caching them
612 * until they were considered "expired".
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000613 */
614
615static int cert_status_cb(SSL *s, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000616{
617 tlsextstatusctx *srctx = arg;
Gunnar Kudrjavets4c9b0a02015-05-06 10:16:55 +0100618 char *host = NULL, *port = NULL, *path = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000619 int use_ssl;
620 unsigned char *rspder = NULL;
621 int rspderlen;
622 STACK_OF(OPENSSL_STRING) *aia = NULL;
623 X509 *x = NULL;
624 X509_STORE_CTX inctx;
625 X509_OBJECT obj;
626 OCSP_REQUEST *req = NULL;
627 OCSP_RESPONSE *resp = NULL;
628 OCSP_CERTID *id = NULL;
629 STACK_OF(X509_EXTENSION) *exts;
630 int ret = SSL_TLSEXT_ERR_NOACK;
631 int i;
Rich Salz7e1b7482015-04-24 15:26:15 -0400632
Matt Caswell0f113f32015-01-22 03:40:55 +0000633 if (srctx->verbose)
Rich Salz7e1b7482015-04-24 15:26:15 -0400634 BIO_puts(bio_err, "cert_status: callback called\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000635 /* Build up OCSP query from server certificate */
636 x = SSL_get_certificate(s);
637 aia = X509_get1_ocsp(x);
638 if (aia) {
639 if (!OCSP_parse_url(sk_OPENSSL_STRING_value(aia, 0),
640 &host, &port, &path, &use_ssl)) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400641 BIO_puts(bio_err, "cert_status: can't parse AIA URL\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000642 goto err;
643 }
644 if (srctx->verbose)
Rich Salz7e1b7482015-04-24 15:26:15 -0400645 BIO_printf(bio_err, "cert_status: AIA URL: %s\n",
Matt Caswell0f113f32015-01-22 03:40:55 +0000646 sk_OPENSSL_STRING_value(aia, 0));
647 } else {
648 if (!srctx->host) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400649 BIO_puts(bio_err,
Matt Caswell0f113f32015-01-22 03:40:55 +0000650 "cert_status: no AIA and no default responder URL\n");
651 goto done;
652 }
653 host = srctx->host;
654 path = srctx->path;
655 port = srctx->port;
656 use_ssl = srctx->use_ssl;
657 }
658
659 if (!X509_STORE_CTX_init(&inctx,
660 SSL_CTX_get_cert_store(SSL_get_SSL_CTX(s)),
661 NULL, NULL))
662 goto err;
663 if (X509_STORE_get_by_subject(&inctx, X509_LU_X509,
664 X509_get_issuer_name(x), &obj) <= 0) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400665 BIO_puts(bio_err, "cert_status: Can't retrieve issuer certificate.\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000666 X509_STORE_CTX_cleanup(&inctx);
667 goto done;
668 }
669 req = OCSP_REQUEST_new();
Matt Caswell96487cd2015-10-30 11:18:04 +0000670 if (req == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000671 goto err;
672 id = OCSP_cert_to_id(NULL, x, obj.data.x509);
673 X509_free(obj.data.x509);
674 X509_STORE_CTX_cleanup(&inctx);
675 if (!id)
676 goto err;
677 if (!OCSP_request_add0_id(req, id))
678 goto err;
679 id = NULL;
680 /* Add any extensions to the request */
681 SSL_get_tlsext_status_exts(s, &exts);
682 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
683 X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
684 if (!OCSP_REQUEST_add_ext(req, ext, -1))
685 goto err;
686 }
Rich Salz7e1b7482015-04-24 15:26:15 -0400687 resp = process_responder(req, host, path, port, use_ssl, NULL,
Matt Caswell0f113f32015-01-22 03:40:55 +0000688 srctx->timeout);
689 if (!resp) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400690 BIO_puts(bio_err, "cert_status: error querying responder\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000691 goto done;
692 }
693 rspderlen = i2d_OCSP_RESPONSE(resp, &rspder);
694 if (rspderlen <= 0)
695 goto err;
696 SSL_set_tlsext_status_ocsp_resp(s, rspder, rspderlen);
697 if (srctx->verbose) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400698 BIO_puts(bio_err, "cert_status: ocsp response sent:\n");
699 OCSP_RESPONSE_print(bio_err, resp, 2);
Matt Caswell0f113f32015-01-22 03:40:55 +0000700 }
701 ret = SSL_TLSEXT_ERR_OK;
702 done:
703 if (ret != SSL_TLSEXT_ERR_OK)
Rich Salz7e1b7482015-04-24 15:26:15 -0400704 ERR_print_errors(bio_err);
Matt Caswell0f113f32015-01-22 03:40:55 +0000705 if (aia) {
706 OPENSSL_free(host);
707 OPENSSL_free(path);
708 OPENSSL_free(port);
709 X509_email_free(aia);
710 }
Rich Salz25aaa982015-05-01 14:37:16 -0400711 OCSP_CERTID_free(id);
712 OCSP_REQUEST_free(req);
713 OCSP_RESPONSE_free(resp);
Matt Caswell0f113f32015-01-22 03:40:55 +0000714 return ret;
715 err:
716 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
717 goto done;
718}
Ben Laurieee2ffc22010-07-28 10:06:55 +0000719
Matt Caswelle481f9b2015-05-15 10:49:56 +0100720#ifndef OPENSSL_NO_NEXTPROTONEG
Ben Laurieee2ffc22010-07-28 10:06:55 +0000721/* This is the context that we pass to next_proto_cb */
722typedef struct tlsextnextprotoctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000723 unsigned char *data;
724 unsigned int len;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000725} tlsextnextprotoctx;
726
Matt Caswell0f113f32015-01-22 03:40:55 +0000727static int next_proto_cb(SSL *s, const unsigned char **data,
728 unsigned int *len, void *arg)
729{
730 tlsextnextprotoctx *next_proto = arg;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000731
Matt Caswell0f113f32015-01-22 03:40:55 +0000732 *data = next_proto->data;
733 *len = next_proto->len;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000734
Matt Caswell0f113f32015-01-22 03:40:55 +0000735 return SSL_TLSEXT_ERR_OK;
736}
Matt Caswelle481f9b2015-05-15 10:49:56 +0100737#endif /* ndef OPENSSL_NO_NEXTPROTONEG */
Adam Langley6f017a82013-04-15 18:07:47 -0400738
739/* This the context that we pass to alpn_cb */
740typedef struct tlsextalpnctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000741 unsigned char *data;
742 unsigned short len;
Adam Langley6f017a82013-04-15 18:07:47 -0400743} tlsextalpnctx;
744
Matt Caswell0f113f32015-01-22 03:40:55 +0000745static int alpn_cb(SSL *s, const unsigned char **out, unsigned char *outlen,
746 const unsigned char *in, unsigned int inlen, void *arg)
747{
748 tlsextalpnctx *alpn_ctx = arg;
Adam Langley6f017a82013-04-15 18:07:47 -0400749
Matt Caswell0f113f32015-01-22 03:40:55 +0000750 if (!s_quiet) {
751 /* We can assume that |in| is syntactically valid. */
752 unsigned i;
753 BIO_printf(bio_s_out, "ALPN protocols advertised by the client: ");
754 for (i = 0; i < inlen;) {
755 if (i)
756 BIO_write(bio_s_out, ", ", 2);
757 BIO_write(bio_s_out, &in[i + 1], in[i]);
758 i += in[i] + 1;
759 }
760 BIO_write(bio_s_out, "\n", 1);
761 }
Adam Langley6f017a82013-04-15 18:07:47 -0400762
Matt Caswell0f113f32015-01-22 03:40:55 +0000763 if (SSL_select_next_proto
764 ((unsigned char **)out, outlen, alpn_ctx->data, alpn_ctx->len, in,
765 inlen) != OPENSSL_NPN_NEGOTIATED) {
766 return SSL_TLSEXT_ERR_NOACK;
767 }
Adam Langley6f017a82013-04-15 18:07:47 -0400768
Matt Caswell0f113f32015-01-22 03:40:55 +0000769 if (!s_quiet) {
770 BIO_printf(bio_s_out, "ALPN protocols selected: ");
771 BIO_write(bio_s_out, *out, *outlen);
772 BIO_write(bio_s_out, "\n", 1);
773 }
Adam Langley6f017a82013-04-15 18:07:47 -0400774
Matt Caswell0f113f32015-01-22 03:40:55 +0000775 return SSL_TLSEXT_ERR_OK;
776}
Bodo Möllered3883d2006-01-02 23:14:37 +0000777
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000778static int not_resumable_sess_cb(SSL *s, int is_forward_secure)
Matt Caswell0f113f32015-01-22 03:40:55 +0000779{
780 /* disable resumption for sessions with forward secure ciphers */
781 return is_forward_secure;
782}
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000783
Dr. Stephen Hensonc79f22c2011-12-27 14:21:45 +0000784#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +0000785static srpsrvparm srp_callback_parm;
Dr. Stephen Hensonc79f22c2011-12-27 14:21:45 +0000786#endif
Piotr Sikorae783bae2014-12-22 11:15:51 +0000787#ifndef OPENSSL_NO_SRTP
Ben Laurie333f9262011-11-15 22:59:20 +0000788static char *srtp_profiles = NULL;
Piotr Sikorae783bae2014-12-22 11:15:51 +0000789#endif
Ben Laurie6caa4ed2008-10-26 18:40:52 +0000790
Rich Salz7e1b7482015-04-24 15:26:15 -0400791typedef enum OPTION_choice {
Richard Levitteab69ac02016-02-03 00:47:42 +0100792 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ENGINE,
793 OPT_4, OPT_6, OPT_ACCEPT, OPT_PORT, OPT_UNIX, OPT_UNLINK, OPT_NACCEPT,
Rich Salz7e1b7482015-04-24 15:26:15 -0400794 OPT_VERIFY, OPT_UPPER_V_VERIFY, OPT_CONTEXT, OPT_CERT, OPT_CRL,
795 OPT_CRL_DOWNLOAD, OPT_SERVERINFO, OPT_CERTFORM, OPT_KEY, OPT_KEYFORM,
796 OPT_PASS, OPT_CERT_CHAIN, OPT_DHPARAM, OPT_DCERTFORM, OPT_DCERT,
797 OPT_DKEYFORM, OPT_DPASS, OPT_DKEY, OPT_DCERT_CHAIN, OPT_NOCERT,
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100798 OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH, OPT_NO_CACHE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400799 OPT_EXT_CACHE, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100800 OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE, OPT_CHAINCAFILE,
801 OPT_VERIFYCAFILE, OPT_NBIO, OPT_NBIO_TEST, OPT_IGN_EOF, OPT_NO_IGN_EOF,
802 OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_STATUS_VERBOSE,
803 OPT_STATUS_TIMEOUT, OPT_STATUS_URL, OPT_MSG, OPT_MSGFILE, OPT_TRACE,
804 OPT_SECURITY_DEBUG, OPT_SECURITY_DEBUG_VERBOSE, OPT_STATE, OPT_CRLF,
Matt Caswell8caab742015-12-15 10:43:44 +0000805 OPT_QUIET, OPT_BRIEF, OPT_NO_DHE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400806 OPT_NO_RESUME_EPHEMERAL, OPT_PSK_HINT, OPT_PSK, OPT_SRPVFILE,
Matt Caswell7e25dd62015-02-13 23:33:12 +0000807 OPT_SRPUSERSEED, OPT_REV, OPT_WWW, OPT_UPPER_WWW, OPT_HTTP, OPT_ASYNC,
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +0100808 OPT_SSL_CONFIG, OPT_SSL3,
Rich Salz7e1b7482015-04-24 15:26:15 -0400809 OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
Matt Caswellfd4e98e2015-04-09 10:01:05 +0100810 OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_CHAIN, OPT_LISTEN,
Rich Salz7e1b7482015-04-24 15:26:15 -0400811 OPT_ID_PREFIX, OPT_RAND, OPT_SERVERNAME, OPT_SERVERNAME_FATAL,
Rich Salzdba31772016-02-14 00:17:59 -0500812 OPT_CERT2, OPT_KEY2, OPT_NEXTPROTONEG, OPT_ALPN,
Rich Salz7e1b7482015-04-24 15:26:15 -0400813 OPT_SRTP_PROFILES, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN,
814 OPT_S_ENUM,
815 OPT_V_ENUM,
Matt Caswell55614192015-05-12 10:35:51 +0100816 OPT_X_ENUM
Rich Salz7e1b7482015-04-24 15:26:15 -0400817} OPTION_CHOICE;
818
819OPTIONS s_server_options[] = {
820 {"help", OPT_HELP, '-', "Display this summary"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500821 {"port", OPT_PORT, 'p',
822 "TCP/IP port to listen on for connections (default is " PORT ")"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100823 {"accept", OPT_ACCEPT, 's',
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500824 "TCP/IP optional host and port to accept on (default is " PORT ")"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100825#ifdef AF_UNIX
Rich Salz7e1b7482015-04-24 15:26:15 -0400826 {"unix", OPT_UNIX, 's', "Unix domain socket to accept on"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100827#endif
828 {"4", OPT_4, '-', "Use IPv4 only"},
829 {"6", OPT_6, '-', "Use IPv6 only"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500830#ifdef AF_UNIX
Rich Salz7e1b7482015-04-24 15:26:15 -0400831 {"unlink", OPT_UNLINK, '-', "For -unix, unlink existing socket first"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500832#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400833 {"context", OPT_CONTEXT, 's', "Set session ID context"},
834 {"verify", OPT_VERIFY, 'n', "Turn on peer certificate verification"},
835 {"Verify", OPT_UPPER_V_VERIFY, 'n',
836 "Turn on peer certificate verification, must have a cert"},
837 {"cert", OPT_CERT, '<', "Certificate file to use; default is " TEST_CERT},
838 {"naccept", OPT_NACCEPT, 'p', "Terminate after pnum connections"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400839 {"serverinfo", OPT_SERVERINFO, 's',
840 "PEM serverinfo file for certificate"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400841 {"certform", OPT_CERTFORM, 'F',
842 "Certificate format (PEM or DER) PEM default"},
843 {"key", OPT_KEY, '<',
844 "Private Key if not in -cert; default is " TEST_CERT},
845 {"keyform", OPT_KEYFORM, 'f',
846 "Key format (PEM, DER or ENGINE) PEM default"},
847 {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
848 {"dcert", OPT_DCERT, '<',
849 "Second certificate file to use (usually for DSA)"},
850 {"dcertform", OPT_DCERTFORM, 'F',
851 "Second certificate format (PEM or DER) PEM default"},
852 {"dkey", OPT_DKEY, '<',
853 "Second private key file to use (usually for DSA)"},
854 {"dkeyform", OPT_DKEYFORM, 'F',
855 "Second key format (PEM, DER or ENGINE) PEM default"},
856 {"dpass", OPT_DPASS, 's', "Second private key file pass phrase source"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400857 {"nbio_test", OPT_NBIO_TEST, '-', "Test with the non-blocking test bio"},
858 {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
859 {"debug", OPT_DEBUG, '-', "Print more output"},
860 {"msg", OPT_MSG, '-', "Show protocol messages"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500861 {"msgfile", OPT_MSGFILE, '>',
862 "File to send output of -msg or -trace, instead of stdout"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400863 {"state", OPT_STATE, '-', "Print the SSL states"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400864 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100865 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
866 {"no-CAfile", OPT_NOCAFILE, '-',
867 "Do not load the default certificates file"},
868 {"no-CApath", OPT_NOCAPATH, '-',
869 "Do not load certificates from the default certificates directory"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400870 {"nocert", OPT_NOCERT, '-', "Don't use any certificates (Anon-DH)"},
871 {"quiet", OPT_QUIET, '-', "No server output"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400872 {"no_resume_ephemeral", OPT_NO_RESUME_EPHEMERAL, '-',
873 "Disable caching and tickets if ephemeral (EC)DH is used"},
874 {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
875 {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400876 {"servername", OPT_SERVERNAME, 's',
877 "Servername for HostName TLS extension"},
878 {"servername_fatal", OPT_SERVERNAME_FATAL, '-',
879 "mismatch send fatal alert (default warning alert)"},
880 {"cert2", OPT_CERT2, '<',
881 "Certificate file to use for servername; default is" TEST_CERT2},
882 {"key2", OPT_KEY2, '<',
883 "-Private Key file to use for servername if not in -cert2"},
884 {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
885 "Hex dump of all TLS extensions received"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400886 {"HTTP", OPT_HTTP, '-', "Like -WWW but ./path incluedes HTTP headers"},
887 {"id_prefix", OPT_ID_PREFIX, 's',
888 "Generate SSL/TLS session IDs prefixed by arg"},
889 {"rand", OPT_RAND, 's',
890 "Load the file(s) into the random number generator"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400891 {"keymatexport", OPT_KEYMATEXPORT, 's',
892 "Export keying material using label"},
893 {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
894 "Export len bytes of keying material (default 20)"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500895 {"CRL", OPT_CRL, '<', "CRL file to use"},
896 {"crl_download", OPT_CRL_DOWNLOAD, '-',
897 "Download CRL from distribution points"},
898 {"cert_chain", OPT_CERT_CHAIN, '<',
899 "certificate chain file in PEM format"},
900 {"dcert_chain", OPT_DCERT_CHAIN, '<',
901 "second certificate chain file in PEM format"},
902 {"chainCApath", OPT_CHAINCAPATH, '/',
903 "use dir as certificate store path to build CA certificate chain"},
904 {"verifyCApath", OPT_VERIFYCAPATH, '/',
905 "use dir as certificate store path to verify CA certificate"},
906 {"no_cache", OPT_NO_CACHE, '-', "Disable session cache"},
907 {"ext_cache", OPT_EXT_CACHE, '-',
908 "Disable internal cache, setup and use external cache"},
909 {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default" },
910 {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
911 "Close connection on verification error"},
912 {"verify_quiet", OPT_VERIFY_QUIET, '-',
913 "No verify output except verify errors"},
914 {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
915 {"chainCAfile", OPT_CHAINCAFILE, '<',
916 "CA file for certificate chain (PEM format)"},
917 {"verifyCAfile", OPT_VERIFYCAFILE, '<',
918 "CA file for certificate verification (PEM format)"},
919 {"ign_eof", OPT_IGN_EOF, '-', "ignore input eof (default when -quiet)"},
920 {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Do not ignore input eof"},
921 {"status", OPT_STATUS, '-', "Request certificate status from server"},
922 {"status_verbose", OPT_STATUS_VERBOSE, '-',
923 "Print more output in certificate status callback"},
924 {"status_timeout", OPT_STATUS_TIMEOUT, 'n',
925 "Status request responder timeout"},
926 {"status_url", OPT_STATUS_URL, 's', "Status request fallback URL"},
927#ifndef OPENSSL_NO_SSL_TRACE
928 {"trace", OPT_TRACE, '-', "trace protocol messages"},
929#endif
930 {"security_debug", OPT_SECURITY_DEBUG, '-',
931 "Print output from SSL/TLS security framework"},
932 {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
933 "Print more output from SSL/TLS security framework"},
934 {"brief", OPT_BRIEF, '-', \
935 "Restrict output to brief summary of connection parameters"},
936 {"rev", OPT_REV, '-',
937 "act as a simple test server which just sends back with the received text reversed"},
Matt Caswell7e25dd62015-02-13 23:33:12 +0000938 {"async", OPT_ASYNC, '-', "Operate in asynchronous mode"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500939 {"ssl_config", OPT_SSL_CONFIG, 's', \
940 "Configure SSL_CTX using the configuration 'val'"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400941 OPT_S_OPTIONS,
942 OPT_V_OPTIONS,
943 OPT_X_OPTIONS,
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400944 {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400945#ifndef OPENSSL_NO_PSK
946 {"psk_hint", OPT_PSK_HINT, 's', "PSK identity hint to use"},
947 {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400948#endif
949#ifndef OPENSSL_NO_SRP
950 {"srpvfile", OPT_SRPVFILE, '<', "The verifier file for SRP"},
951 {"srpuserseed", OPT_SRPUSERSEED, 's',
952 "A seed string for a default user salt"},
953#endif
954#ifndef OPENSSL_NO_SSL3
955 {"ssl3", OPT_SSL3, '-', "Just talk SSLv3"},
956#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500957#ifndef OPENSSL_NO_TLS1
958 {"tls1", OPT_TLS1, '-', "Just talk TLSv1"},
959#endif
960#ifndef OPENSSL_NO_TLS1_1
961 {"tls1_1", OPT_TLS1_1, '-', "Just talk TLSv1.1"},
962#endif
963#ifndef OPENSSL_NO_TLS1_2
964 {"tls1_2", OPT_TLS1_2, '-', "just talk TLSv1.2"},
965#endif
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +0100966#ifndef OPENSSL_NO_DTLS
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500967 {"dtls", OPT_DTLS, '-', "Use any DTLS version"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400968 {"timeout", OPT_TIMEOUT, '-', "Enable timeouts"},
969 {"mtu", OPT_MTU, 'p', "Set link layer MTU"},
970 {"chain", OPT_CHAIN, '-', "Read a certificate chain"},
Matt Caswellfd4e98e2015-04-09 10:01:05 +0100971 {"listen", OPT_LISTEN, '-',
972 "Listen for a DTLS ClientHello with a cookie and then connect"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400973#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500974#ifndef OPENSSL_NO_DTLS1
975 {"dtls1", OPT_DTLS1, '-', "Just talk DTLSv1"},
976#endif
977#ifndef OPENSSL_NO_DTLS1_2
978 {"dtls1_2", OPT_DTLS1_2, '-', "Just talk DTLSv1.2"},
979#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400980#ifndef OPENSSL_NO_DH
981 {"no_dhe", OPT_NO_DHE, '-', "Disable ephemeral DH"},
982#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400983#ifndef OPENSSL_NO_NEXTPROTONEG
984 {"nextprotoneg", OPT_NEXTPROTONEG, 's',
985 "Set the advertised protocols for the NPN extension (comma-separated list)"},
986#endif
987#ifndef OPENSSL_NO_SRTP
Matt Caswelle77bdc72015-08-04 19:18:02 +0100988 {"use_srtp", OPT_SRTP_PROFILES, 's',
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400989 "Offer SRTP key management with a colon-separated profile list"},
990 {"alpn", OPT_ALPN, 's',
991 "Set the advertised protocols for the ALPN extension (comma-separated list)"},
992#endif
993#ifndef OPENSSL_NO_ENGINE
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500994 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400995#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400996 {NULL}
997};
998
999int s_server_main(int argc, char *argv[])
Matt Caswell0f113f32015-01-22 03:40:55 +00001000{
Rich Salz7e1b7482015-04-24 15:26:15 -04001001 ENGINE *e = NULL;
1002 EVP_PKEY *s_key = NULL, *s_dkey = NULL;
1003 SSL_CONF_CTX *cctx = NULL;
Matt Caswell32ec4152015-03-27 23:01:51 +00001004 const SSL_METHOD *meth = TLS_server_method();
Rich Salz7e1b7482015-04-24 15:26:15 -04001005 SSL_EXCERT *exc = NULL;
1006 STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
1007 STACK_OF(X509) *s_chain = NULL, *s_dchain = NULL;
1008 STACK_OF(X509_CRL) *crls = NULL;
1009 X509 *s_cert = NULL, *s_dcert = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001010 X509_VERIFY_PARAM *vpm = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001011 char *CApath = NULL, *CAfile = NULL, *chCApath = NULL, *chCAfile = NULL;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001012#ifndef OPENSSL_NO_DH
1013 char *dhfile = NULL;
1014#endif
1015 char *dpassarg = NULL, *dpass = NULL, *inrand = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001016 char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
Matt Caswella7f82a12015-05-15 09:42:08 +01001017 char *crl_file = NULL, *prog;
1018#ifndef OPENSSL_NO_PSK
1019 char *p;
1020#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01001021#ifdef AF_UNIX
Matt Caswell0f113f32015-01-22 03:40:55 +00001022 int unlink_unix_path = 0;
Dr. Stephen Henson9cd86ab2014-07-01 12:44:00 +01001023#endif
Rich Salza773b522016-02-13 22:33:56 -05001024 do_server_cb server_cb;
Rich Salz7e1b7482015-04-24 15:26:15 -04001025 int vpmtouched = 0, build_chain = 0, no_cache = 0, ext_cache = 0;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001026#ifndef OPENSSL_NO_DH
1027 int no_dhe = 0;
1028#endif
Matt Caswell8caab742015-12-15 10:43:44 +00001029 int nocert = 0, ret = 1;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001030 int noCApath = 0, noCAfile = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +00001031 int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM;
Matt Caswell0f113f32015-01-22 03:40:55 +00001032 int s_dcert_format = FORMAT_PEM, s_dkey_format = FORMAT_PEM;
Richard Levitteab69ac02016-02-03 00:47:42 +01001033 int rev = 0, naccept = -1, sdebug = 0;
1034 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
Rich Salz7e1b7482015-04-24 15:26:15 -04001035 int state = 0, crl_format = FORMAT_PEM, crl_download = 0;
Richard Levitteab69ac02016-02-03 00:47:42 +01001036 char *host = NULL;
1037 char *port = BUF_strdup(PORT);
Rich Salz7e1b7482015-04-24 15:26:15 -04001038 unsigned char *context = NULL;
1039 OPTION_CHOICE o;
Matt Caswell0f113f32015-01-22 03:40:55 +00001040 EVP_PKEY *s_key2 = NULL;
1041 X509 *s_cert2 = NULL;
1042 tlsextctx tlsextcbp = { NULL, NULL, SSL_TLSEXT_ERR_ALERT_WARNING };
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001043 const char *ssl_config = NULL;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001044#ifndef OPENSSL_NO_NEXTPROTONEG
Matt Caswell0f113f32015-01-22 03:40:55 +00001045 const char *next_proto_neg_in = NULL;
1046 tlsextnextprotoctx next_proto = { NULL, 0 };
Matt Caswelle481f9b2015-05-15 10:49:56 +01001047#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001048 const char *alpn_in = NULL;
1049 tlsextalpnctx alpn_ctx = { NULL, 0 };
Nils Larschddac1972006-03-10 23:06:27 +00001050#ifndef OPENSSL_NO_PSK
Matt Caswell0f113f32015-01-22 03:40:55 +00001051 /* by default do not send a PSK identity hint */
1052 static char *psk_identity_hint = NULL;
Nils Larschddac1972006-03-10 23:06:27 +00001053#endif
Ben Laurieedc032b2011-03-12 17:01:19 +00001054#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00001055 char *srpuserseed = NULL;
1056 char *srp_verifier_file = NULL;
Ben Laurieedc032b2011-03-12 17:01:19 +00001057#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001058
Matt Caswell0f113f32015-01-22 03:40:55 +00001059 local_argc = argc;
1060 local_argv = argv;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001061
Matt Caswell0f113f32015-01-22 03:40:55 +00001062 s_server_init();
Matt Caswell0f113f32015-01-22 03:40:55 +00001063 cctx = SSL_CONF_CTX_new();
Rich Salz7e1b7482015-04-24 15:26:15 -04001064 vpm = X509_VERIFY_PARAM_new();
1065 if (cctx == NULL || vpm == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +00001066 goto end;
Rich Salz7e1b7482015-04-24 15:26:15 -04001067 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CMDLINE);
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001068
Rich Salz7e1b7482015-04-24 15:26:15 -04001069 prog = opt_init(argc, argv, s_server_options);
1070 while ((o = opt_next()) != OPT_EOF) {
1071 switch (o) {
1072 case OPT_EOF:
1073 case OPT_ERR:
1074 opthelp:
1075 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1076 goto end;
1077 case OPT_HELP:
1078 opt_help(s_server_options);
1079 ret = 0;
1080 goto end;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001081
Richard Levitteab69ac02016-02-03 00:47:42 +01001082 case OPT_4:
1083#ifdef AF_UNIX
1084 if (socket_family == AF_UNIX) {
1085 OPENSSL_free(host); host = NULL;
1086 OPENSSL_free(port); port = NULL;
1087 }
Geoff Thorpea9351322014-04-26 01:22:54 -04001088#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01001089 socket_family = AF_INET;
1090 break;
1091 case OPT_6:
1092 if (1) {
1093#ifdef AF_INET6
1094#ifdef AF_UNIX
1095 if (socket_family == AF_UNIX) {
1096 OPENSSL_free(host); host = NULL;
1097 OPENSSL_free(port); port = NULL;
1098 }
1099#endif
1100 socket_family = AF_INET6;
1101 } else {
1102#endif
1103 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
1104 goto end;
1105 }
1106 break;
1107 case OPT_PORT:
1108#ifdef AF_UNIX
1109 if (socket_family == AF_UNIX) {
1110 socket_family = AF_UNSPEC;
1111 }
1112#endif
1113 OPENSSL_free(port); port = NULL;
1114 OPENSSL_free(host); host = NULL;
1115 if (BIO_parse_hostserv(opt_arg(), NULL, &port, BIO_PARSE_PRIO_SERV) < 1) {
1116 BIO_printf(bio_err,
1117 "%s: -port argument malformed or ambiguous\n",
1118 port);
1119 goto end;
1120 }
1121 break;
1122 case OPT_ACCEPT:
1123#ifdef AF_UNIX
1124 if (socket_family == AF_UNIX) {
1125 socket_family = AF_UNSPEC;
1126 }
1127#endif
1128 OPENSSL_free(port); port = NULL;
1129 OPENSSL_free(host); host = NULL;
1130 if (BIO_parse_hostserv(opt_arg(), &host, &port, BIO_PARSE_PRIO_SERV) < 1) {
1131 BIO_printf(bio_err,
1132 "%s: -accept argument malformed or ambiguous\n",
1133 port);
1134 goto end;
1135 }
1136 break;
1137#ifdef AF_UNIX
1138 case OPT_UNIX:
1139 socket_family = AF_UNIX;
1140 OPENSSL_free(host); host = BUF_strdup(opt_arg());
1141 OPENSSL_free(port); port = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001142 break;
1143 case OPT_UNLINK:
Matt Caswell0f113f32015-01-22 03:40:55 +00001144 unlink_unix_path = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001145 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001146#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001147 case OPT_NACCEPT:
1148 naccept = atol(opt_arg());
1149 break;
1150 case OPT_VERIFY:
Matt Caswell0f113f32015-01-22 03:40:55 +00001151 s_server_verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
Rich Salz7e1b7482015-04-24 15:26:15 -04001152 verify_depth = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001153 if (!s_quiet)
1154 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
Rich Salz7e1b7482015-04-24 15:26:15 -04001155 break;
1156 case OPT_UPPER_V_VERIFY:
Matt Caswell0f113f32015-01-22 03:40:55 +00001157 s_server_verify =
1158 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1159 SSL_VERIFY_CLIENT_ONCE;
Rich Salz7e1b7482015-04-24 15:26:15 -04001160 verify_depth = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001161 if (!s_quiet)
1162 BIO_printf(bio_err,
1163 "verify depth is %d, must return a certificate\n",
1164 verify_depth);
Rich Salz7e1b7482015-04-24 15:26:15 -04001165 break;
1166 case OPT_CONTEXT:
1167 context = (unsigned char *)opt_arg();
1168 break;
1169 case OPT_CERT:
1170 s_cert_file = opt_arg();
1171 break;
1172 case OPT_CRL:
1173 crl_file = opt_arg();
1174 break;
1175 case OPT_CRL_DOWNLOAD:
Matt Caswell0f113f32015-01-22 03:40:55 +00001176 crl_download = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001177 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001178 case OPT_SERVERINFO:
1179 s_serverinfo_file = opt_arg();
1180 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001181 case OPT_CERTFORM:
1182 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_cert_format))
1183 goto opthelp;
1184 break;
1185 case OPT_KEY:
1186 s_key_file = opt_arg();
1187 break;
1188 case OPT_KEYFORM:
1189 if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_key_format))
1190 goto opthelp;
1191 break;
1192 case OPT_PASS:
1193 passarg = opt_arg();
1194 break;
1195 case OPT_CERT_CHAIN:
1196 s_chain_file = opt_arg();
1197 break;
1198 case OPT_DHPARAM:
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001199#ifndef OPENSSL_NO_DH
Rich Salz7e1b7482015-04-24 15:26:15 -04001200 dhfile = opt_arg();
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001201#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001202 break;
1203 case OPT_DCERTFORM:
1204 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dcert_format))
1205 goto opthelp;
1206 break;
1207 case OPT_DCERT:
1208 s_dcert_file = opt_arg();
1209 break;
1210 case OPT_DKEYFORM:
1211 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dkey_format))
1212 goto opthelp;
1213 break;
1214 case OPT_DPASS:
1215 dpassarg = opt_arg();
1216 break;
1217 case OPT_DKEY:
1218 s_dkey_file = opt_arg();
1219 break;
1220 case OPT_DCERT_CHAIN:
1221 s_dchain_file = opt_arg();
1222 break;
1223 case OPT_NOCERT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001224 nocert = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001225 break;
1226 case OPT_CAPATH:
1227 CApath = opt_arg();
1228 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001229 case OPT_NOCAPATH:
1230 noCApath = 1;
1231 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001232 case OPT_CHAINCAPATH:
1233 chCApath = opt_arg();
1234 break;
1235 case OPT_VERIFYCAPATH:
1236 vfyCApath = opt_arg();
1237 break;
1238 case OPT_NO_CACHE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001239 no_cache = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001240 break;
1241 case OPT_EXT_CACHE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001242 ext_cache = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001243 break;
1244 case OPT_CRLFORM:
1245 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1246 goto opthelp;
1247 break;
1248 case OPT_S_CASES:
1249 if (ssl_args == NULL)
1250 ssl_args = sk_OPENSSL_STRING_new_null();
1251 if (ssl_args == NULL
1252 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1253 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1254 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1255 goto end;
1256 }
1257 break;
1258 case OPT_V_CASES:
1259 if (!opt_verify(o, vpm))
1260 goto end;
1261 vpmtouched++;
1262 break;
1263 case OPT_X_CASES:
1264 if (!args_excert(o, &exc))
1265 goto end;
1266 break;
1267 case OPT_VERIFY_RET_ERROR:
Matt Caswell0f113f32015-01-22 03:40:55 +00001268 verify_return_error = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001269 break;
1270 case OPT_VERIFY_QUIET:
Matt Caswell0f113f32015-01-22 03:40:55 +00001271 verify_quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001272 break;
1273 case OPT_BUILD_CHAIN:
Matt Caswell0f113f32015-01-22 03:40:55 +00001274 build_chain = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001275 break;
1276 case OPT_CAFILE:
1277 CAfile = opt_arg();
1278 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001279 case OPT_NOCAFILE:
1280 noCAfile = 1;
1281 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001282 case OPT_CHAINCAFILE:
1283 chCAfile = opt_arg();
1284 break;
1285 case OPT_VERIFYCAFILE:
1286 vfyCAfile = opt_arg();
1287 break;
1288 case OPT_NBIO:
Matt Caswell0f113f32015-01-22 03:40:55 +00001289 s_nbio = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001290 break;
1291 case OPT_NBIO_TEST:
1292 s_nbio = s_nbio_test = 1;
1293 break;
1294 case OPT_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001295 s_ign_eof = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001296 break;
1297 case OPT_NO_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001298 s_ign_eof = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -04001299 break;
1300 case OPT_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001301 s_debug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001302 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001303 case OPT_TLSEXTDEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001304 s_tlsextdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001305 break;
1306 case OPT_STATUS:
Matt Caswell0f113f32015-01-22 03:40:55 +00001307 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001308 break;
1309 case OPT_STATUS_VERBOSE:
1310 s_tlsextstatus = tlscstatp.verbose = 1;
1311 break;
1312 case OPT_STATUS_TIMEOUT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001313 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001314 tlscstatp.timeout = atoi(opt_arg());
1315 break;
1316 case OPT_STATUS_URL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001317 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001318 if (!OCSP_parse_url(opt_arg(),
Matt Caswell0f113f32015-01-22 03:40:55 +00001319 &tlscstatp.host,
1320 &tlscstatp.port,
1321 &tlscstatp.path, &tlscstatp.use_ssl)) {
1322 BIO_printf(bio_err, "Error parsing URL\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04001323 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001324 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001325 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001326 case OPT_MSG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001327 s_msg = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001328 break;
1329 case OPT_MSGFILE:
1330 bio_s_msg = BIO_new_file(opt_arg(), "w");
1331 break;
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001332 case OPT_TRACE:
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00001333#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00001334 s_msg = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001335#else
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001336 break;
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00001337#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001338 case OPT_SECURITY_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001339 sdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001340 break;
1341 case OPT_SECURITY_DEBUG_VERBOSE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001342 sdebug = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001343 break;
1344 case OPT_STATE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001345 state = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001346 break;
1347 case OPT_CRLF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001348 s_crlf = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001349 break;
1350 case OPT_QUIET:
Matt Caswell0f113f32015-01-22 03:40:55 +00001351 s_quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001352 break;
1353 case OPT_BRIEF:
1354 s_quiet = s_brief = verify_quiet = 1;
1355 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001356 case OPT_NO_DHE:
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001357#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +00001358 no_dhe = 1;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001359#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001360 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001361 case OPT_NO_RESUME_EPHEMERAL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001362 no_resume_ephemeral = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001363 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001364 case OPT_PSK_HINT:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001365#ifndef OPENSSL_NO_PSK
Rich Salz7e1b7482015-04-24 15:26:15 -04001366 psk_identity_hint = opt_arg();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001367#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001368 break;
1369 case OPT_PSK:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001370#ifndef OPENSSL_NO_PSK
Rich Salz7e1b7482015-04-24 15:26:15 -04001371 for (p = psk_key = opt_arg(); *p; p++) {
Richard Levitte18295f02016-02-14 13:02:15 +01001372 if (isxdigit(_UC(*p)))
Matt Caswell0f113f32015-01-22 03:40:55 +00001373 continue;
1374 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
Rich Salz7e1b7482015-04-24 15:26:15 -04001375 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001376 }
Nils Larschddac1972006-03-10 23:06:27 +00001377#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001378 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001379 case OPT_SRPVFILE:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001380#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001381 srp_verifier_file = opt_arg();
Matt Caswell0f113f32015-01-22 03:40:55 +00001382 meth = TLSv1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001383#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001384 break;
1385 case OPT_SRPUSERSEED:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001386#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001387 srpuserseed = opt_arg();
Matt Caswell0f113f32015-01-22 03:40:55 +00001388 meth = TLSv1_server_method();
Ben Laurieedc032b2011-03-12 17:01:19 +00001389#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001390 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001391 case OPT_REV:
Matt Caswell0f113f32015-01-22 03:40:55 +00001392 rev = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001393 break;
1394 case OPT_WWW:
Matt Caswell0f113f32015-01-22 03:40:55 +00001395 www = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001396 break;
1397 case OPT_UPPER_WWW:
Matt Caswell0f113f32015-01-22 03:40:55 +00001398 www = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001399 break;
1400 case OPT_HTTP:
Matt Caswell0f113f32015-01-22 03:40:55 +00001401 www = 3;
Rich Salz7e1b7482015-04-24 15:26:15 -04001402 break;
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001403 case OPT_SSL_CONFIG:
1404 ssl_config = opt_arg();
1405 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001406 case OPT_SSL3:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001407#ifndef OPENSSL_NO_SSL3
Matt Caswell4407d072015-05-06 11:17:07 +01001408 meth = SSLv3_server_method();
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001409#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001410 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001411 case OPT_TLS1_2:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001412#ifndef OPENSSL_NO_TLS1_2
Matt Caswell4407d072015-05-06 11:17:07 +01001413 meth = TLSv1_2_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001414#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001415 break;
1416 case OPT_TLS1_1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001417#ifndef OPENSSL_NO_TLS1_1
Matt Caswell4407d072015-05-06 11:17:07 +01001418 meth = TLSv1_1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001419#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001420 break;
1421 case OPT_TLS1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001422#ifndef OPENSSL_NO_TLS1
Matt Caswell4407d072015-05-06 11:17:07 +01001423 meth = TLSv1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001424#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001425 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001426 case OPT_DTLS:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001427#ifndef OPENSSL_NO_DTLS
Matt Caswell4407d072015-05-06 11:17:07 +01001428 meth = DTLS_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001429 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001430#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001431 break;
1432 case OPT_DTLS1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001433#ifndef OPENSSL_NO_DTLS1
Matt Caswell4407d072015-05-06 11:17:07 +01001434 meth = DTLSv1_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001435 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001436#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001437 break;
1438 case OPT_DTLS1_2:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001439#ifndef OPENSSL_NO_DTLS1_2
Matt Caswell4407d072015-05-06 11:17:07 +01001440 meth = DTLSv1_2_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001441 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001442#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001443 break;
1444 case OPT_TIMEOUT:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001445#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001446 enable_timeouts = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001447#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001448 break;
1449 case OPT_MTU:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001450#ifndef OPENSSL_NO_DTLS
Rich Salz7e1b7482015-04-24 15:26:15 -04001451 socket_mtu = atol(opt_arg());
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001452#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001453 break;
1454 case OPT_CHAIN:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001455#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001456 cert_chain = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001457#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001458 break;
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001459 case OPT_LISTEN:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001460#ifndef OPENSSL_NO_DTLS
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001461 dtlslisten = 1;
Ben Laurie36d16f82005-04-26 16:02:40 +00001462#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001463 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001464 case OPT_ID_PREFIX:
1465 session_id_prefix = opt_arg();
1466 break;
1467 case OPT_ENGINE:
Rich Salz333b0702015-04-25 15:41:29 -04001468 e = setup_engine(opt_arg(), 1);
Rich Salz7e1b7482015-04-24 15:26:15 -04001469 break;
1470 case OPT_RAND:
1471 inrand = opt_arg();
1472 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001473 case OPT_SERVERNAME:
1474 tlsextcbp.servername = opt_arg();
1475 break;
1476 case OPT_SERVERNAME_FATAL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001477 tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001478 break;
1479 case OPT_CERT2:
1480 s_cert_file2 = opt_arg();
1481 break;
1482 case OPT_KEY2:
1483 s_key_file2 = opt_arg();
1484 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001485 case OPT_NEXTPROTONEG:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001486# ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz7e1b7482015-04-24 15:26:15 -04001487 next_proto_neg_in = opt_arg();
Matt Caswelle481f9b2015-05-15 10:49:56 +01001488#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001489 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001490 case OPT_ALPN:
1491 alpn_in = opt_arg();
1492 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001493 case OPT_SRTP_PROFILES:
1494 srtp_profiles = opt_arg();
1495 break;
1496 case OPT_KEYMATEXPORT:
1497 keymatexportlabel = opt_arg();
1498 break;
1499 case OPT_KEYMATEXPORTLEN:
1500 keymatexportlen = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001501 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00001502 case OPT_ASYNC:
1503 async = 1;
1504 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00001505 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001506 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001507 argc = opt_num_rest();
1508 argv = opt_rest();
1509
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +01001510#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001511 if (www && socket_type == SOCK_DGRAM) {
1512 BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1513 goto end;
1514 }
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001515
1516 if (dtlslisten && socket_type != SOCK_DGRAM) {
1517 BIO_printf(bio_err, "Can only use -listen with DTLS\n");
1518 goto end;
1519 }
Dr. Stephen Henson199772e2014-07-15 12:22:49 +01001520#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001521
Richard Levitteab69ac02016-02-03 00:47:42 +01001522#ifdef AF_UNIX
1523 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001524 BIO_printf(bio_err,
1525 "Can't use unix sockets and datagrams together\n");
1526 goto end;
1527 }
Richard Levitteab69ac02016-02-03 00:47:42 +01001528#endif
Dr. Stephen Henson2900fc82008-11-30 22:01:31 +00001529
Rich Salz7e1b7482015-04-24 15:26:15 -04001530 if (!app_passwd(passarg, dpassarg, &pass, &dpass)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001531 BIO_printf(bio_err, "Error getting password\n");
1532 goto end;
1533 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001534
Matt Caswell0f113f32015-01-22 03:40:55 +00001535 if (s_key_file == NULL)
1536 s_key_file = s_cert_file;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001537
Matt Caswell0f113f32015-01-22 03:40:55 +00001538 if (s_key_file2 == NULL)
1539 s_key_file2 = s_cert_file2;
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001540
Rich Salz7e1b7482015-04-24 15:26:15 -04001541 if (!load_excert(&exc))
Matt Caswell0f113f32015-01-22 03:40:55 +00001542 goto end;
Dr. Stephen Henson18d71582012-06-29 14:24:42 +00001543
Matt Caswell0f113f32015-01-22 03:40:55 +00001544 if (nocert == 0) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001545 s_key = load_key(s_key_file, s_key_format, 0, pass, e,
Matt Caswell0f113f32015-01-22 03:40:55 +00001546 "server certificate private key file");
1547 if (!s_key) {
1548 ERR_print_errors(bio_err);
1549 goto end;
1550 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001551
Rich Salz7e1b7482015-04-24 15:26:15 -04001552 s_cert = load_cert(s_cert_file, s_cert_format,
Rich Salza773b522016-02-13 22:33:56 -05001553 "server certificate file");
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001554
Matt Caswell0f113f32015-01-22 03:40:55 +00001555 if (!s_cert) {
1556 ERR_print_errors(bio_err);
1557 goto end;
1558 }
1559 if (s_chain_file) {
Rich Salza773b522016-02-13 22:33:56 -05001560 if (!load_certs(s_chain_file, &s_chain, FORMAT_PEM, NULL,
Viktor Dukhovni0996dc52016-01-16 00:08:38 -05001561 "server certificate chain"))
Matt Caswell0f113f32015-01-22 03:40:55 +00001562 goto end;
1563 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001564
Matt Caswell0f113f32015-01-22 03:40:55 +00001565 if (tlsextcbp.servername) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001566 s_key2 = load_key(s_key_file2, s_key_format, 0, pass, e,
Matt Caswell0f113f32015-01-22 03:40:55 +00001567 "second server certificate private key file");
1568 if (!s_key2) {
1569 ERR_print_errors(bio_err);
1570 goto end;
1571 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001572
Rich Salz7e1b7482015-04-24 15:26:15 -04001573 s_cert2 = load_cert(s_cert_file2, s_cert_format,
Rich Salza773b522016-02-13 22:33:56 -05001574 "second server certificate file");
Matt Caswell0f113f32015-01-22 03:40:55 +00001575
1576 if (!s_cert2) {
1577 ERR_print_errors(bio_err);
1578 goto end;
1579 }
1580 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001581 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001582#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00001583 if (next_proto_neg_in) {
1584 unsigned short len;
1585 next_proto.data = next_protos_parse(&len, next_proto_neg_in);
1586 if (next_proto.data == NULL)
1587 goto end;
1588 next_proto.len = len;
1589 } else {
1590 next_proto.data = NULL;
1591 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001592#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001593 alpn_ctx.data = NULL;
1594 if (alpn_in) {
1595 unsigned short len;
1596 alpn_ctx.data = next_protos_parse(&len, alpn_in);
1597 if (alpn_ctx.data == NULL)
1598 goto end;
1599 alpn_ctx.len = len;
1600 }
Dr. Stephen Hensondd251652012-07-03 16:37:50 +00001601
Matt Caswell0f113f32015-01-22 03:40:55 +00001602 if (crl_file) {
1603 X509_CRL *crl;
1604 crl = load_crl(crl_file, crl_format);
1605 if (!crl) {
1606 BIO_puts(bio_err, "Error loading CRL\n");
1607 ERR_print_errors(bio_err);
1608 goto end;
1609 }
1610 crls = sk_X509_CRL_new_null();
1611 if (!crls || !sk_X509_CRL_push(crls, crl)) {
1612 BIO_puts(bio_err, "Error adding CRL\n");
1613 ERR_print_errors(bio_err);
1614 X509_CRL_free(crl);
1615 goto end;
1616 }
1617 }
Dr. Stephen Hensonfdb78f32012-12-02 16:16:28 +00001618
Matt Caswell0f113f32015-01-22 03:40:55 +00001619 if (s_dcert_file) {
Bodo Möllered3883d2006-01-02 23:14:37 +00001620
Matt Caswell0f113f32015-01-22 03:40:55 +00001621 if (s_dkey_file == NULL)
1622 s_dkey_file = s_dcert_file;
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001623
Rich Salz7e1b7482015-04-24 15:26:15 -04001624 s_dkey = load_key(s_dkey_file, s_dkey_format,
Matt Caswell0f113f32015-01-22 03:40:55 +00001625 0, dpass, e, "second certificate private key file");
1626 if (!s_dkey) {
1627 ERR_print_errors(bio_err);
1628 goto end;
1629 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001630
Rich Salz7e1b7482015-04-24 15:26:15 -04001631 s_dcert = load_cert(s_dcert_file, s_dcert_format,
Rich Salza773b522016-02-13 22:33:56 -05001632 "second server certificate file");
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001633
Matt Caswell0f113f32015-01-22 03:40:55 +00001634 if (!s_dcert) {
1635 ERR_print_errors(bio_err);
1636 goto end;
1637 }
1638 if (s_dchain_file) {
Rich Salza773b522016-02-13 22:33:56 -05001639 if (!load_certs(s_dchain_file, &s_dchain, FORMAT_PEM, NULL,
Viktor Dukhovni0996dc52016-01-16 00:08:38 -05001640 "second server certificate chain"))
Matt Caswell0f113f32015-01-22 03:40:55 +00001641 goto end;
1642 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001643
Matt Caswell0f113f32015-01-22 03:40:55 +00001644 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001645
Rich Salz7e1b7482015-04-24 15:26:15 -04001646 if (!app_RAND_load_file(NULL, 1) && inrand == NULL
Matt Caswell0f113f32015-01-22 03:40:55 +00001647 && !RAND_status()) {
1648 BIO_printf(bio_err,
1649 "warning, not much extra random data, consider using the -rand option\n");
1650 }
1651 if (inrand != NULL)
1652 BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
1653 app_RAND_load_files(inrand));
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001654
Matt Caswell0f113f32015-01-22 03:40:55 +00001655 if (bio_s_out == NULL) {
1656 if (s_quiet && !s_debug) {
1657 bio_s_out = BIO_new(BIO_s_null());
1658 if (s_msg && !bio_s_msg)
Richard Levittea60994d2015-09-06 12:20:12 +02001659 bio_s_msg = dup_bio_out(FORMAT_TEXT);
Matt Caswell0f113f32015-01-22 03:40:55 +00001660 } else {
1661 if (bio_s_out == NULL)
Richard Levittea60994d2015-09-06 12:20:12 +02001662 bio_s_out = dup_bio_out(FORMAT_TEXT);
Matt Caswell0f113f32015-01-22 03:40:55 +00001663 }
1664 }
Rich Salz10bf4fc2015-03-10 19:09:27 -04001665#if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC)
Matt Caswell0f113f32015-01-22 03:40:55 +00001666 if (nocert)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001667#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001668 {
1669 s_cert_file = NULL;
1670 s_key_file = NULL;
1671 s_dcert_file = NULL;
1672 s_dkey_file = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001673 s_cert_file2 = NULL;
1674 s_key_file2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001675 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001676
Matt Caswell0f113f32015-01-22 03:40:55 +00001677 ctx = SSL_CTX_new(meth);
Matt Caswell0f113f32015-01-22 03:40:55 +00001678 if (ctx == NULL) {
1679 ERR_print_errors(bio_err);
1680 goto end;
1681 }
A J Mohan Rao32eabe32016-02-09 10:55:42 -05001682 if (sdebug)
1683 ssl_ctx_security_debug(ctx, sdebug);
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001684 if (ssl_config) {
1685 if (SSL_CTX_config(ctx, ssl_config) == 0) {
1686 BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1687 ssl_config);
1688 ERR_print_errors(bio_err);
1689 goto end;
1690 }
1691 }
1692
Matt Caswell0f113f32015-01-22 03:40:55 +00001693 if (session_id_prefix) {
1694 if (strlen(session_id_prefix) >= 32)
1695 BIO_printf(bio_err,
1696 "warning: id_prefix is too long, only one new session will be possible\n");
1697 if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1698 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1699 ERR_print_errors(bio_err);
1700 goto end;
1701 }
1702 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1703 }
1704 SSL_CTX_set_quiet_shutdown(ctx, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00001705 if (exc)
1706 ssl_ctx_set_excert(ctx, exc);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001707
Matt Caswell0f113f32015-01-22 03:40:55 +00001708 if (state)
1709 SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1710 if (no_cache)
1711 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1712 else if (ext_cache)
1713 init_session_cache_ctx(ctx);
1714 else
1715 SSL_CTX_sess_set_cache_size(ctx, 128);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00001716
Matt Caswell252d6d32015-07-22 17:50:51 +01001717 if (async) {
Matt Caswell7e25dd62015-02-13 23:33:12 +00001718 SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
Matt Caswell252d6d32015-07-22 17:50:51 +01001719 }
Matt Caswell7e25dd62015-02-13 23:33:12 +00001720
Piotr Sikorae783bae2014-12-22 11:15:51 +00001721#ifndef OPENSSL_NO_SRTP
Matt Caswellac59d702015-03-06 14:39:46 +00001722 if (srtp_profiles != NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001723 /* Returns 0 on success! */
1724 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
Matt Caswellac59d702015-03-06 14:39:46 +00001725 BIO_printf(bio_err, "Error setting SRTP profile\n");
1726 ERR_print_errors(bio_err);
1727 goto end;
1728 }
1729 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00001730#endif
Ben Laurie333f9262011-11-15 22:59:20 +00001731
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001732 if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001733 ERR_print_errors(bio_err);
Rich Salz7e1b7482015-04-24 15:26:15 -04001734 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001735 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001736 if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1737 BIO_printf(bio_err, "Error setting verify params\n");
Matt Caswellac59d702015-03-06 14:39:46 +00001738 ERR_print_errors(bio_err);
1739 goto end;
1740 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001741
Matt Caswell0f113f32015-01-22 03:40:55 +00001742 ssl_ctx_add_crls(ctx, crls, 0);
Rich Salzdba31772016-02-14 00:17:59 -05001743 if (!config_ctx(cctx, ssl_args, ctx))
Matt Caswell0f113f32015-01-22 03:40:55 +00001744 goto end;
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001745
Matt Caswell0f113f32015-01-22 03:40:55 +00001746 if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1747 crls, crl_download)) {
1748 BIO_printf(bio_err, "Error loading store locations\n");
1749 ERR_print_errors(bio_err);
1750 goto end;
1751 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001752
Matt Caswell0f113f32015-01-22 03:40:55 +00001753 if (s_cert2) {
1754 ctx2 = SSL_CTX_new(meth);
1755 if (ctx2 == NULL) {
1756 ERR_print_errors(bio_err);
1757 goto end;
1758 }
1759 }
Bodo Möllered3883d2006-01-02 23:14:37 +00001760
Matt Caswell0f113f32015-01-22 03:40:55 +00001761 if (ctx2) {
1762 BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
Dr. Stephen Hensone03c5b52014-02-17 00:10:00 +00001763
Matt Caswell0f113f32015-01-22 03:40:55 +00001764 if (sdebug)
Rich Salzecf3a1f2015-04-29 11:27:08 -04001765 ssl_ctx_security_debug(ctx, sdebug);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001766
Matt Caswell0f113f32015-01-22 03:40:55 +00001767 if (session_id_prefix) {
1768 if (strlen(session_id_prefix) >= 32)
1769 BIO_printf(bio_err,
1770 "warning: id_prefix is too long, only one new session will be possible\n");
1771 if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1772 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1773 ERR_print_errors(bio_err);
1774 goto end;
1775 }
1776 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1777 }
1778 SSL_CTX_set_quiet_shutdown(ctx2, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00001779 if (exc)
1780 ssl_ctx_set_excert(ctx2, exc);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001781
Matt Caswell0f113f32015-01-22 03:40:55 +00001782 if (state)
1783 SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001784
Matt Caswell0f113f32015-01-22 03:40:55 +00001785 if (no_cache)
1786 SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
1787 else if (ext_cache)
1788 init_session_cache_ctx(ctx2);
1789 else
1790 SSL_CTX_sess_set_cache_size(ctx2, 128);
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001791
Matt Caswell7e25dd62015-02-13 23:33:12 +00001792 if (async)
Matt Caswellf4da39d2015-07-24 08:15:31 +01001793 SSL_CTX_set_mode(ctx2, SSL_MODE_ASYNC);
Matt Caswell7e25dd62015-02-13 23:33:12 +00001794
Matt Caswell0f113f32015-01-22 03:40:55 +00001795 if ((!SSL_CTX_load_verify_locations(ctx2, CAfile, CApath)) ||
1796 (!SSL_CTX_set_default_verify_paths(ctx2))) {
1797 ERR_print_errors(bio_err);
1798 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001799 if (vpmtouched && !SSL_CTX_set1_param(ctx2, vpm)) {
1800 BIO_printf(bio_err, "Error setting verify params\n");
Matt Caswellac59d702015-03-06 14:39:46 +00001801 ERR_print_errors(bio_err);
1802 goto end;
1803 }
Ben Laurieee2ffc22010-07-28 10:06:55 +00001804
Matt Caswell0f113f32015-01-22 03:40:55 +00001805 ssl_ctx_add_crls(ctx2, crls, 0);
Rich Salzdba31772016-02-14 00:17:59 -05001806 if (!config_ctx(cctx, ssl_args, ctx2))
Matt Caswell0f113f32015-01-22 03:40:55 +00001807 goto end;
1808 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001809#ifndef OPENSSL_NO_NEXTPROTONEG
Matt Caswell0f113f32015-01-22 03:40:55 +00001810 if (next_proto.data)
1811 SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
1812 &next_proto);
Matt Caswelle481f9b2015-05-15 10:49:56 +01001813#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001814 if (alpn_ctx.data)
1815 SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001816
Richard Levittecf1b7d92001-02-19 16:06:34 +00001817#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +00001818 if (!no_dhe) {
1819 DH *dh = NULL;
Bodo Möller15d52dd2000-11-02 10:35:10 +00001820
Matt Caswell0f113f32015-01-22 03:40:55 +00001821 if (dhfile)
1822 dh = load_dh_param(dhfile);
1823 else if (s_cert_file)
1824 dh = load_dh_param(s_cert_file);
Bodo Möller15d52dd2000-11-02 10:35:10 +00001825
Matt Caswell0f113f32015-01-22 03:40:55 +00001826 if (dh != NULL) {
1827 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1828 } else {
1829 BIO_printf(bio_s_out, "Using default temp DH parameters\n");
1830 }
1831 (void)BIO_flush(bio_s_out);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001832
Matt Caswell0f113f32015-01-22 03:40:55 +00001833 if (dh == NULL)
1834 SSL_CTX_set_dh_auto(ctx, 1);
1835 else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
1836 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1837 ERR_print_errors(bio_err);
1838 DH_free(dh);
1839 goto end;
1840 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001841
Matt Caswell0f113f32015-01-22 03:40:55 +00001842 if (ctx2) {
1843 if (!dhfile) {
1844 DH *dh2 = load_dh_param(s_cert_file2);
1845 if (dh2 != NULL) {
1846 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1847 (void)BIO_flush(bio_s_out);
Bodo Möllered3883d2006-01-02 23:14:37 +00001848
Matt Caswell0f113f32015-01-22 03:40:55 +00001849 DH_free(dh);
1850 dh = dh2;
1851 }
1852 }
1853 if (dh == NULL)
1854 SSL_CTX_set_dh_auto(ctx2, 1);
1855 else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
1856 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1857 ERR_print_errors(bio_err);
1858 DH_free(dh);
1859 goto end;
1860 }
1861 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001862 DH_free(dh);
1863 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001864#endif
Bodo Möllerea262262002-08-09 08:56:08 +00001865
Matt Caswell0f113f32015-01-22 03:40:55 +00001866 if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
1867 goto end;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001868
Matt Caswell0f113f32015-01-22 03:40:55 +00001869 if (s_serverinfo_file != NULL
1870 && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
1871 ERR_print_errors(bio_err);
1872 goto end;
1873 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001874
Matt Caswell0f113f32015-01-22 03:40:55 +00001875 if (ctx2 && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
1876 goto end;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001877
Matt Caswell0f113f32015-01-22 03:40:55 +00001878 if (s_dcert != NULL) {
1879 if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
1880 goto end;
1881 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001882
1883 if (no_resume_ephemeral) {
1884 SSL_CTX_set_not_resumable_session_callback(ctx,
1885 not_resumable_sess_cb);
Matt Caswelle481f9b2015-05-15 10:49:56 +01001886
Matt Caswell0f113f32015-01-22 03:40:55 +00001887 if (ctx2)
1888 SSL_CTX_set_not_resumable_session_callback(ctx2,
1889 not_resumable_sess_cb);
Matt Caswell0f113f32015-01-22 03:40:55 +00001890 }
Nils Larschddac1972006-03-10 23:06:27 +00001891#ifndef OPENSSL_NO_PSK
Flavio Medeirosb5292f72016-01-30 20:14:39 -05001892 if (psk_key != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001893 if (s_debug)
1894 BIO_printf(bio_s_out,
Rich Salzdba31772016-02-14 00:17:59 -05001895 "PSK key given, setting server callback\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00001896 SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
1897 }
Nils Larschddac1972006-03-10 23:06:27 +00001898
Matt Caswell0f113f32015-01-22 03:40:55 +00001899 if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
1900 BIO_printf(bio_err, "error setting PSK identity hint to context\n");
1901 ERR_print_errors(bio_err);
1902 goto end;
1903 }
Nils Larschddac1972006-03-10 23:06:27 +00001904#endif
1905
Matt Caswell0f113f32015-01-22 03:40:55 +00001906 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001907 if (!SSL_CTX_set_session_id_context(ctx,
Rich Salz7e1b7482015-04-24 15:26:15 -04001908 (void *)&s_server_session_id_context,
1909 sizeof s_server_session_id_context)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001910 BIO_printf(bio_err, "error setting session id context\n");
1911 ERR_print_errors(bio_err);
1912 goto end;
1913 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001914
Matt Caswell0f113f32015-01-22 03:40:55 +00001915 /* Set DTLS cookie generation and verification callbacks */
1916 SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
1917 SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
Dr. Stephen Henson07a9d1a2009-09-04 17:42:53 +00001918
Matt Caswell0f113f32015-01-22 03:40:55 +00001919 if (ctx2) {
1920 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001921 if (!SSL_CTX_set_session_id_context(ctx2,
Rich Salz7e1b7482015-04-24 15:26:15 -04001922 (void *)&s_server_session_id_context,
1923 sizeof s_server_session_id_context)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001924 BIO_printf(bio_err, "error setting session id context\n");
1925 ERR_print_errors(bio_err);
1926 goto end;
1927 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001928 tlsextcbp.biodebug = bio_s_out;
1929 SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
1930 SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
1931 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1932 SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1933 }
Bodo Möllerf1fd4542006-01-03 03:27:19 +00001934
Ben Laurieedc032b2011-03-12 17:01:19 +00001935#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00001936 if (srp_verifier_file != NULL) {
1937 srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
1938 srp_callback_parm.user = NULL;
1939 srp_callback_parm.login = NULL;
1940 if ((ret =
1941 SRP_VBASE_init(srp_callback_parm.vb,
1942 srp_verifier_file)) != SRP_NO_ERROR) {
1943 BIO_printf(bio_err,
1944 "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
1945 srp_verifier_file, ret);
1946 goto end;
1947 }
1948 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
1949 SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
1950 SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
1951 } else
Ben Laurieedc032b2011-03-12 17:01:19 +00001952#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001953 if (CAfile != NULL) {
1954 SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
Matt Caswelle481f9b2015-05-15 10:49:56 +01001955
Matt Caswell0f113f32015-01-22 03:40:55 +00001956 if (ctx2)
1957 SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
Matt Caswell0f113f32015-01-22 03:40:55 +00001958 }
Adam Eijdenbergbe0c0362015-07-29 21:34:35 -04001959 if (s_tlsextstatus) {
1960 SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
1961 SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
1962 if (ctx2) {
1963 SSL_CTX_set_tlsext_status_cb(ctx2, cert_status_cb);
1964 SSL_CTX_set_tlsext_status_arg(ctx2, &tlscstatp);
1965 }
1966 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001967
Matt Caswell0f113f32015-01-22 03:40:55 +00001968 BIO_printf(bio_s_out, "ACCEPT\n");
1969 (void)BIO_flush(bio_s_out);
1970 if (rev)
1971 server_cb = rev_body;
1972 else if (www)
1973 server_cb = www_body;
1974 else
1975 server_cb = sv_body;
Richard Levitteab69ac02016-02-03 00:47:42 +01001976#ifdef AF_UNIX
1977 if (socket_family == AF_UNIX
1978 && unlink_unix_path)
1979 unlink(host);
Dr. Stephen Henson9cd86ab2014-07-01 12:44:00 +01001980#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01001981 do_server(&accept_socket, host, port, socket_family, socket_type,
1982 server_cb, context, naccept);
Matt Caswell0f113f32015-01-22 03:40:55 +00001983 print_stats(bio_s_out, ctx);
1984 ret = 0;
1985 end:
Rich Salz62adbce2015-04-11 10:22:36 -04001986 SSL_CTX_free(ctx);
Rich Salz222561f2015-04-30 17:33:59 -04001987 X509_free(s_cert);
1988 sk_X509_CRL_pop_free(crls, X509_CRL_free);
1989 X509_free(s_dcert);
Rich Salzc5ba2d92015-03-28 10:54:15 -04001990 EVP_PKEY_free(s_key);
1991 EVP_PKEY_free(s_dkey);
Rich Salz222561f2015-04-30 17:33:59 -04001992 sk_X509_pop_free(s_chain, X509_free);
1993 sk_X509_pop_free(s_dchain, X509_free);
Rich Salz25aaa982015-05-01 14:37:16 -04001994 OPENSSL_free(pass);
1995 OPENSSL_free(dpass);
Richard Levitteab69ac02016-02-03 00:47:42 +01001996 OPENSSL_free(host);
1997 OPENSSL_free(port);
Rich Salz222561f2015-04-30 17:33:59 -04001998 X509_VERIFY_PARAM_free(vpm);
Matt Caswell0f113f32015-01-22 03:40:55 +00001999 free_sessions();
Rich Salz25aaa982015-05-01 14:37:16 -04002000 OPENSSL_free(tlscstatp.host);
2001 OPENSSL_free(tlscstatp.port);
2002 OPENSSL_free(tlscstatp.path);
Rich Salz62adbce2015-04-11 10:22:36 -04002003 SSL_CTX_free(ctx2);
Rich Salz222561f2015-04-30 17:33:59 -04002004 X509_free(s_cert2);
Rich Salzc5ba2d92015-03-28 10:54:15 -04002005 EVP_PKEY_free(s_key2);
Rich Salzca3a82c2015-03-25 11:31:18 -04002006 BIO_free(serverinfo_in);
Matt Caswelle481f9b2015-05-15 10:49:56 +01002007#ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz25aaa982015-05-01 14:37:16 -04002008 OPENSSL_free(next_proto.data);
Bodo Möllered3883d2006-01-02 23:14:37 +00002009#endif
Matt Caswelle481f9b2015-05-15 10:49:56 +01002010 OPENSSL_free(alpn_ctx.data);
Matt Caswell0f113f32015-01-22 03:40:55 +00002011 ssl_excert_free(exc);
Rich Salz7e1b7482015-04-24 15:26:15 -04002012 sk_OPENSSL_STRING_free(ssl_args);
Rich Salz62adbce2015-04-11 10:22:36 -04002013 SSL_CONF_CTX_free(cctx);
Rich Salzca3a82c2015-03-25 11:31:18 -04002014 BIO_free(bio_s_out);
2015 bio_s_out = NULL;
2016 BIO_free(bio_s_msg);
2017 bio_s_msg = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04002018 return (ret);
Matt Caswell0f113f32015-01-22 03:40:55 +00002019}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002020
Ulf Möller6b691a51999-04-19 21:31:43 +00002021static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +00002022{
2023 BIO_printf(bio, "%4ld items in the session cache\n",
2024 SSL_CTX_sess_number(ssl_ctx));
2025 BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
2026 SSL_CTX_sess_connect(ssl_ctx));
2027 BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
2028 SSL_CTX_sess_connect_renegotiate(ssl_ctx));
2029 BIO_printf(bio, "%4ld client connects that finished\n",
2030 SSL_CTX_sess_connect_good(ssl_ctx));
2031 BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
2032 SSL_CTX_sess_accept(ssl_ctx));
2033 BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
2034 SSL_CTX_sess_accept_renegotiate(ssl_ctx));
2035 BIO_printf(bio, "%4ld server accepts that finished\n",
2036 SSL_CTX_sess_accept_good(ssl_ctx));
2037 BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
2038 BIO_printf(bio, "%4ld session cache misses\n",
2039 SSL_CTX_sess_misses(ssl_ctx));
2040 BIO_printf(bio, "%4ld session cache timeouts\n",
2041 SSL_CTX_sess_timeouts(ssl_ctx));
2042 BIO_printf(bio, "%4ld callback cache hits\n",
2043 SSL_CTX_sess_cb_hits(ssl_ctx));
2044 BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
2045 SSL_CTX_sess_cache_full(ssl_ctx),
2046 SSL_CTX_sess_get_cache_size(ssl_ctx));
2047}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002048
Rich Salza773b522016-02-13 22:33:56 -05002049static int sv_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00002050{
2051 char *buf = NULL;
2052 fd_set readfds;
2053 int ret = 1, width;
2054 int k, i;
2055 unsigned long l;
2056 SSL *con = NULL;
2057 BIO *sbio;
Matt Caswell0f113f32015-01-22 03:40:55 +00002058 struct timeval timeout;
Rich Salzb3178192014-12-17 17:24:51 -05002059#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002060 struct timeval tv;
Dr. Stephen Hensonba4526e2009-08-18 11:15:33 +00002061#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002062 struct timeval *timeoutp;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002063#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002064
Rich Salz68dc6822015-04-30 17:48:31 -04002065 buf = app_malloc(bufsize, "server buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00002066 if (s_nbio) {
Rich Salzba810812016-02-27 13:24:28 -05002067 if (!BIO_socket_nbio(s, 1))
Matt Caswell0f113f32015-01-22 03:40:55 +00002068 ERR_print_errors(bio_err);
Rich Salzba810812016-02-27 13:24:28 -05002069 else if (!s_quiet)
2070 BIO_printf(bio_err, "Turned on non blocking io\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002071 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002072
Matt Caswell0f113f32015-01-22 03:40:55 +00002073 if (con == NULL) {
2074 con = SSL_new(ctx);
Matt Caswelle481f9b2015-05-15 10:49:56 +01002075
Matt Caswell0f113f32015-01-22 03:40:55 +00002076 if (s_tlsextdebug) {
2077 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2078 SSL_set_tlsext_debug_arg(con, bio_s_out);
2079 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002080
Rich Salz7e1b7482015-04-24 15:26:15 -04002081 if (context
2082 && !SSL_set_session_id_context(con,
2083 context, strlen((char *)context))) {
Matt Caswellac59d702015-03-06 14:39:46 +00002084 BIO_printf(bio_err, "Error setting session id context\n");
2085 ret = -1;
2086 goto err;
2087 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002088 }
Viktor Dukhovni61986d32015-04-16 01:50:03 -04002089 if (!SSL_clear(con)) {
Matt Caswellac59d702015-03-06 14:39:46 +00002090 BIO_printf(bio_err, "Error clearing SSL connection\n");
2091 ret = -1;
2092 goto err;
2093 }
Ben Lauriea7a14a22015-12-16 13:25:07 +00002094#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00002095 if (stype == SOCK_DGRAM) {
Ben Laurie36d16f82005-04-26 16:02:40 +00002096
Matt Caswell0f113f32015-01-22 03:40:55 +00002097 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
Ben Laurie36d16f82005-04-26 16:02:40 +00002098
Matt Caswell0f113f32015-01-22 03:40:55 +00002099 if (enable_timeouts) {
2100 timeout.tv_sec = 0;
2101 timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2102 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
Ben Laurie36d16f82005-04-26 16:02:40 +00002103
Matt Caswell0f113f32015-01-22 03:40:55 +00002104 timeout.tv_sec = 0;
2105 timeout.tv_usec = DGRAM_SND_TIMEOUT;
2106 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2107 }
2108
2109 if (socket_mtu) {
2110 if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2111 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2112 DTLS_get_link_min_mtu(con));
2113 ret = -1;
2114 BIO_free(sbio);
2115 goto err;
2116 }
2117 SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2118 if (!DTLS_set_link_mtu(con, socket_mtu)) {
2119 BIO_printf(bio_err, "Failed to set MTU\n");
2120 ret = -1;
2121 BIO_free(sbio);
2122 goto err;
2123 }
2124 } else
2125 /* want to do MTU discovery */
2126 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
Ben Laurie36d16f82005-04-26 16:02:40 +00002127
2128 /* turn on cookie exchange */
2129 SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
Matt Caswell0f113f32015-01-22 03:40:55 +00002130 } else
Ben Lauriea7a14a22015-12-16 13:25:07 +00002131#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002132 sbio = BIO_new_socket(s, BIO_NOCLOSE);
Ben Laurie36d16f82005-04-26 16:02:40 +00002133
Matt Caswell0f113f32015-01-22 03:40:55 +00002134 if (s_nbio_test) {
2135 BIO *test;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002136
Matt Caswell0f113f32015-01-22 03:40:55 +00002137 test = BIO_new(BIO_f_nbio_test());
2138 sbio = BIO_push(test, sbio);
2139 }
Ben Laurie6caa4ed2008-10-26 18:40:52 +00002140
Matt Caswell0f113f32015-01-22 03:40:55 +00002141 SSL_set_bio(con, sbio, sbio);
2142 SSL_set_accept_state(con);
2143 /* SSL_set_fd(con,s); */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002144
Matt Caswell0f113f32015-01-22 03:40:55 +00002145 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002146 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2147 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2148 }
2149 if (s_msg) {
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002150#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00002151 if (s_msg == 2)
2152 SSL_set_msg_callback(con, SSL_trace);
2153 else
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002154#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002155 SSL_set_msg_callback(con, msg_cb);
2156 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2157 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002158
Matt Caswell0f113f32015-01-22 03:40:55 +00002159 if (s_tlsextdebug) {
2160 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2161 SSL_set_tlsext_debug_arg(con, bio_s_out);
2162 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002163
Matt Caswell0f113f32015-01-22 03:40:55 +00002164 width = s + 1;
2165 for (;;) {
2166 int read_from_terminal;
2167 int read_from_sslcon;
Bodo Möllera2a01582000-02-21 17:09:54 +00002168
Matt Caswell0f113f32015-01-22 03:40:55 +00002169 read_from_terminal = 0;
Matt Caswell64c07bd2015-09-16 22:54:54 +01002170 read_from_sslcon = SSL_pending(con)
2171 || (async && SSL_waiting_for_async(con));
Bodo Möllera2a01582000-02-21 17:09:54 +00002172
Matt Caswell0f113f32015-01-22 03:40:55 +00002173 if (!read_from_sslcon) {
2174 FD_ZERO(&readfds);
Rich Salzb3178192014-12-17 17:24:51 -05002175#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002176 openssl_fdset(fileno(stdin), &readfds);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002177#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002178 openssl_fdset(s, &readfds);
2179 /*
2180 * Note: under VMS with SOCKETSHR the second parameter is
2181 * currently of type (int *) whereas under other systems it is
2182 * (void *) if you don't have a cast it will choke the compiler:
2183 * if you do have a cast then you can either go for (int *) or
2184 * (void *).
2185 */
Richard Levitte4d8743f2003-11-28 13:10:58 +00002186#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002187 /*
2188 * Under DOS (non-djgpp) and Windows we can't select on stdin:
2189 * only on sockets. As a workaround we timeout the select every
2190 * second and check for any keypress. In a proper Windows
2191 * application we wouldn't do this because it is inefficient.
2192 */
2193 tv.tv_sec = 1;
2194 tv.tv_usec = 0;
2195 i = select(width, (void *)&readfds, NULL, NULL, &tv);
2196 if ((i < 0) || (!i && !_kbhit()))
2197 continue;
2198 if (_kbhit())
2199 read_from_terminal = 1;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002200#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002201 if ((SSL_version(con) == DTLS1_VERSION) &&
2202 DTLSv1_get_timeout(con, &timeout))
2203 timeoutp = &timeout;
2204 else
2205 timeoutp = NULL;
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002206
Matt Caswell0f113f32015-01-22 03:40:55 +00002207 i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002208
Matt Caswell0f113f32015-01-22 03:40:55 +00002209 if ((SSL_version(con) == DTLS1_VERSION)
2210 && DTLSv1_handle_timeout(con) > 0) {
2211 BIO_printf(bio_err, "TIMEOUT occurred\n");
2212 }
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002213
Matt Caswell0f113f32015-01-22 03:40:55 +00002214 if (i <= 0)
2215 continue;
2216 if (FD_ISSET(fileno(stdin), &readfds))
2217 read_from_terminal = 1;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002218#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002219 if (FD_ISSET(s, &readfds))
2220 read_from_sslcon = 1;
2221 }
2222 if (read_from_terminal) {
2223 if (s_crlf) {
2224 int j, lf_num;
Bodo Möller1bdb8631999-08-07 02:51:10 +00002225
Matt Caswell0f113f32015-01-22 03:40:55 +00002226 i = raw_read_stdin(buf, bufsize / 2);
2227 lf_num = 0;
2228 /* both loops are skipped when i <= 0 */
2229 for (j = 0; j < i; j++)
2230 if (buf[j] == '\n')
2231 lf_num++;
2232 for (j = i - 1; j >= 0; j--) {
2233 buf[j + lf_num] = buf[j];
2234 if (buf[j] == '\n') {
2235 lf_num--;
2236 i++;
2237 buf[j + lf_num] = '\r';
2238 }
2239 }
2240 assert(lf_num == 0);
2241 } else
2242 i = raw_read_stdin(buf, bufsize);
2243 if (!s_quiet && !s_brief) {
2244 if ((i <= 0) || (buf[0] == 'Q')) {
2245 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002246 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002247 SHUTDOWN(s);
2248 close_accept_socket();
2249 ret = -11;
2250 goto err;
2251 }
2252 if ((i <= 0) || (buf[0] == 'q')) {
2253 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002254 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002255 if (SSL_version(con) != DTLS1_VERSION)
Ben Laurie36d16f82005-04-26 16:02:40 +00002256 SHUTDOWN(s);
Matt Caswell0f113f32015-01-22 03:40:55 +00002257 /*
2258 * close_accept_socket(); ret= -11;
2259 */
2260 goto err;
2261 }
Dr. Stephen Henson48175042011-12-31 22:59:57 +00002262#ifndef OPENSSL_NO_HEARTBEATS
Matt Caswell0f113f32015-01-22 03:40:55 +00002263 if ((buf[0] == 'B') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2264 BIO_printf(bio_err, "HEARTBEATING\n");
2265 SSL_heartbeat(con);
2266 i = 0;
2267 continue;
2268 }
Dr. Stephen Henson48175042011-12-31 22:59:57 +00002269#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002270 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2271 SSL_renegotiate(con);
2272 i = SSL_do_handshake(con);
2273 printf("SSL_do_handshake -> %d\n", i);
2274 i = 0; /* 13; */
2275 continue;
2276 /*
2277 * strcpy(buf,"server side RE-NEGOTIATE\n");
2278 */
2279 }
2280 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2281 SSL_set_verify(con,
2282 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2283 NULL);
2284 SSL_renegotiate(con);
2285 i = SSL_do_handshake(con);
2286 printf("SSL_do_handshake -> %d\n", i);
2287 i = 0; /* 13; */
2288 continue;
2289 /*
2290 * strcpy(buf,"server side RE-NEGOTIATE asking for client
2291 * cert\n");
2292 */
2293 }
2294 if (buf[0] == 'P') {
2295 static const char *str = "Lets print some clear text\n";
2296 BIO_write(SSL_get_wbio(con), str, strlen(str));
2297 }
2298 if (buf[0] == 'S') {
2299 print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2300 }
2301 }
Ulf Möllera53955d1999-06-04 21:35:58 +00002302#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002303 ebcdic2ascii(buf, buf, i);
Ulf Möllera53955d1999-06-04 21:35:58 +00002304#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002305 l = k = 0;
2306 for (;;) {
2307 /* should do a select for the write */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002308#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00002309 {
2310 static count = 0;
2311 if (++count == 100) {
2312 count = 0;
2313 SSL_renegotiate(con);
2314 }
2315 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002316#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002317 k = SSL_write(con, &(buf[l]), (unsigned int)i);
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002318#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00002319 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2320 BIO_printf(bio_s_out, "LOOKUP renego during write\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002321 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell0f113f32015-01-22 03:40:55 +00002322 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002323 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2324 srp_callback_parm.login);
Matt Caswell0f113f32015-01-22 03:40:55 +00002325 if (srp_callback_parm.user)
2326 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2327 srp_callback_parm.user->info);
2328 else
2329 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2330 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2331 }
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002332#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002333 switch (SSL_get_error(con, k)) {
2334 case SSL_ERROR_NONE:
2335 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002336 case SSL_ERROR_WANT_ASYNC:
2337 BIO_printf(bio_s_out, "Write BLOCK (Async)\n");
Matt Caswellf4da39d2015-07-24 08:15:31 +01002338 wait_for_async(con);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002339 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002340 case SSL_ERROR_WANT_WRITE:
2341 case SSL_ERROR_WANT_READ:
2342 case SSL_ERROR_WANT_X509_LOOKUP:
2343 BIO_printf(bio_s_out, "Write BLOCK\n");
2344 break;
2345 case SSL_ERROR_SYSCALL:
2346 case SSL_ERROR_SSL:
2347 BIO_printf(bio_s_out, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002348 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002349 ERR_print_errors(bio_err);
2350 ret = 1;
2351 goto err;
2352 /* break; */
2353 case SSL_ERROR_ZERO_RETURN:
2354 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002355 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002356 ret = 1;
2357 goto err;
2358 }
Robert Swiecki00d565c2015-05-18 19:08:02 -04002359 if (k > 0) {
2360 l += k;
2361 i -= k;
2362 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002363 if (i <= 0)
2364 break;
2365 }
2366 }
2367 if (read_from_sslcon) {
Matt Caswell64c07bd2015-09-16 22:54:54 +01002368 /*
2369 * init_ssl_connection handles all async events itself so if we're
2370 * waiting for async then we shouldn't go back into
2371 * init_ssl_connection
2372 */
2373 if ((!async || !SSL_waiting_for_async(con))
2374 && !SSL_is_init_finished(con)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002375 i = init_ssl_connection(con);
2376
2377 if (i < 0) {
2378 ret = 0;
2379 goto err;
2380 } else if (i == 0) {
2381 ret = 1;
2382 goto err;
2383 }
2384 } else {
2385 again:
2386 i = SSL_read(con, (char *)buf, bufsize);
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002387#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00002388 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2389 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002390 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell0f113f32015-01-22 03:40:55 +00002391 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002392 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2393 srp_callback_parm.login);
Matt Caswell0f113f32015-01-22 03:40:55 +00002394 if (srp_callback_parm.user)
2395 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2396 srp_callback_parm.user->info);
2397 else
2398 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2399 i = SSL_read(con, (char *)buf, bufsize);
2400 }
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002401#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002402 switch (SSL_get_error(con, i)) {
2403 case SSL_ERROR_NONE:
Ulf Möllera53955d1999-06-04 21:35:58 +00002404#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002405 ascii2ebcdic(buf, buf, i);
Ulf Möllera53955d1999-06-04 21:35:58 +00002406#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002407 raw_write_stdout(buf, (unsigned int)i);
2408 if (SSL_pending(con))
2409 goto again;
2410 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002411 case SSL_ERROR_WANT_ASYNC:
Matt Caswellf4da39d2015-07-24 08:15:31 +01002412 BIO_printf(bio_s_out, "Read BLOCK (Async)\n");
2413 wait_for_async(con);
2414 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002415 case SSL_ERROR_WANT_WRITE:
2416 case SSL_ERROR_WANT_READ:
2417 BIO_printf(bio_s_out, "Read BLOCK\n");
2418 break;
2419 case SSL_ERROR_SYSCALL:
2420 case SSL_ERROR_SSL:
2421 BIO_printf(bio_s_out, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002422 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002423 ERR_print_errors(bio_err);
2424 ret = 1;
2425 goto err;
2426 case SSL_ERROR_ZERO_RETURN:
2427 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002428 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002429 ret = 1;
2430 goto err;
2431 }
2432 }
2433 }
2434 }
2435 err:
2436 if (con != NULL) {
2437 BIO_printf(bio_s_out, "shutting down SSL\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002438 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Matt Caswell0f113f32015-01-22 03:40:55 +00002439 SSL_free(con);
2440 }
2441 BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
Rich Salz4b45c6e2015-04-30 17:57:32 -04002442 OPENSSL_clear_free(buf, bufsize);
Matt Caswell0f113f32015-01-22 03:40:55 +00002443 if (ret >= 0)
2444 BIO_printf(bio_s_out, "ACCEPT\n");
Rich Salzc54cc2b2015-04-25 09:26:48 -04002445 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002446 return (ret);
2447}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002448
Ulf Möller6b691a51999-04-19 21:31:43 +00002449static void close_accept_socket(void)
Matt Caswell0f113f32015-01-22 03:40:55 +00002450{
2451 BIO_printf(bio_err, "shutdown accept socket\n");
2452 if (accept_socket >= 0) {
2453 SHUTDOWN2(accept_socket);
2454 }
2455}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002456
Ulf Möller6b691a51999-04-19 21:31:43 +00002457static int init_ssl_connection(SSL *con)
Matt Caswell0f113f32015-01-22 03:40:55 +00002458{
2459 int i;
2460 const char *str;
2461 X509 *peer;
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002462 long verify_err;
Rich Salz68b00c22015-01-23 11:58:26 -05002463 char buf[BUFSIZ];
Matt Caswelle481f9b2015-05-15 10:49:56 +01002464#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00002465 const unsigned char *next_proto_neg;
2466 unsigned next_proto_neg_len;
Ben Laurieee2ffc22010-07-28 10:06:55 +00002467#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002468 unsigned char *exportedkeymat;
Ben Lauriee0af0402011-11-15 23:50:52 +00002469
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +01002470#ifndef OPENSSL_NO_DTLS
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002471 if(dtlslisten) {
Richard Levitted858c872016-02-03 00:27:44 +01002472 BIO_ADDR *client = NULL;
2473
2474 if ((client = BIO_ADDR_new()) == NULL) {
2475 BIO_printf(bio_err, "ERROR - memory\n");
2476 return 0;
2477 }
Matt Caswell3edeb622016-02-05 10:59:42 +00002478 i = DTLSv1_listen(con, client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002479 if (i > 0) {
2480 BIO *wbio;
Emilia Kasper3a796182015-09-23 19:57:42 +02002481 int fd = -1;
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002482
2483 wbio = SSL_get_wbio(con);
2484 if(wbio) {
2485 BIO_get_fd(wbio, &fd);
2486 }
2487
Richard Levitted858c872016-02-03 00:27:44 +01002488 if(!wbio || BIO_connect(fd, client, 0) == 0) {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002489 BIO_printf(bio_err, "ERROR - unable to connect\n");
Richard Levitted858c872016-02-03 00:27:44 +01002490 BIO_ADDR_free(client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002491 return 0;
2492 }
Richard Levitted858c872016-02-03 00:27:44 +01002493 BIO_ADDR_free(client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002494 dtlslisten = 0;
2495 i = SSL_accept(con);
2496 }
2497 } else
2498#endif
Matt Caswell7e25dd62015-02-13 23:33:12 +00002499
2500 do {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002501 i = SSL_accept(con);
2502
Dr. Stephen Henson33233142014-01-26 00:51:09 +00002503#ifdef CERT_CB_TEST_RETRY
Matt Caswell7e25dd62015-02-13 23:33:12 +00002504 {
2505 while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
2506 && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) {
2507 BIO_printf(bio_err,
Rich Salz7768e112015-06-04 14:26:55 -04002508 "LOOKUP from certificate callback during accept\n");
Matt Caswell7e25dd62015-02-13 23:33:12 +00002509 i = SSL_accept(con);
2510 }
2511 }
2512#endif
2513
2514#ifndef OPENSSL_NO_SRP
2515 while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2516 BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2517 srp_callback_parm.login);
Emilia Kasper380f18e2016-02-24 12:59:59 +01002518 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002519 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002520 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2521 srp_callback_parm.login);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002522 if (srp_callback_parm.user)
2523 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2524 srp_callback_parm.user->info);
2525 else
2526 BIO_printf(bio_s_out, "LOOKUP not successful\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002527 i = SSL_accept(con);
2528 }
Dr. Stephen Henson33233142014-01-26 00:51:09 +00002529#endif
Matt Caswell7e25dd62015-02-13 23:33:12 +00002530 } while (i < 0 && SSL_waiting_for_async(con));
Scott Deboy67c408c2013-08-01 11:54:09 -07002531
Matt Caswell0f113f32015-01-22 03:40:55 +00002532 if (i <= 0) {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002533 if ((dtlslisten && i == 0)
2534 || (!dtlslisten && BIO_sock_should_retry(i))) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002535 BIO_printf(bio_s_out, "DELAY\n");
2536 return (1);
2537 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002538
Matt Caswell0f113f32015-01-22 03:40:55 +00002539 BIO_printf(bio_err, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002540
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002541 verify_err = SSL_get_verify_result(con);
2542 if (verify_err != X509_V_OK) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002543 BIO_printf(bio_err, "verify error:%s\n",
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002544 X509_verify_cert_error_string(verify_err));
Matt Caswell0f113f32015-01-22 03:40:55 +00002545 }
2546 /* Always print any error messages */
2547 ERR_print_errors(bio_err);
2548 return (0);
2549 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002550
Matt Caswell0f113f32015-01-22 03:40:55 +00002551 if (s_brief)
Rich Salzecf3a1f2015-04-29 11:27:08 -04002552 print_ssl_summary(con);
Dr. Stephen Henson2a7cbe72012-09-12 23:14:28 +00002553
Matt Caswell0f113f32015-01-22 03:40:55 +00002554 PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002555
Matt Caswell0f113f32015-01-22 03:40:55 +00002556 peer = SSL_get_peer_certificate(con);
2557 if (peer != NULL) {
2558 BIO_printf(bio_s_out, "Client certificate\n");
2559 PEM_write_bio_X509(bio_s_out, peer);
2560 X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2561 BIO_printf(bio_s_out, "subject=%s\n", buf);
2562 X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2563 BIO_printf(bio_s_out, "issuer=%s\n", buf);
2564 X509_free(peer);
2565 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002566
Matt Caswell0f113f32015-01-22 03:40:55 +00002567 if (SSL_get_shared_ciphers(con, buf, sizeof buf) != NULL)
2568 BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2569 str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2570 ssl_print_sigalgs(bio_s_out, con);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002571#ifndef OPENSSL_NO_EC
Matt Caswell0f113f32015-01-22 03:40:55 +00002572 ssl_print_point_formats(bio_s_out, con);
2573 ssl_print_curves(bio_s_out, con, 0);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002574#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002575 BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
Dr. Stephen Hensone7f8ff42012-03-06 14:28:21 +00002576
Matt Caswelle481f9b2015-05-15 10:49:56 +01002577#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00002578 SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2579 if (next_proto_neg) {
2580 BIO_printf(bio_s_out, "NEXTPROTO is ");
2581 BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2582 BIO_printf(bio_s_out, "\n");
2583 }
Ben Laurieee2ffc22010-07-28 10:06:55 +00002584#endif
Piotr Sikorae783bae2014-12-22 11:15:51 +00002585#ifndef OPENSSL_NO_SRTP
Matt Caswell0f113f32015-01-22 03:40:55 +00002586 {
2587 SRTP_PROTECTION_PROFILE *srtp_profile
2588 = SSL_get_selected_srtp_profile(con);
Ben Laurie333f9262011-11-15 22:59:20 +00002589
Matt Caswell0f113f32015-01-22 03:40:55 +00002590 if (srtp_profile)
2591 BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2592 srtp_profile->name);
2593 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00002594#endif
Dr. Stephen Hensonb577fd02016-02-08 16:18:26 +00002595 if (SSL_session_reused(con))
Matt Caswell0f113f32015-01-22 03:40:55 +00002596 BIO_printf(bio_s_out, "Reused session-id\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002597 BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2598 SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
2599 if (keymatexportlabel != NULL) {
2600 BIO_printf(bio_s_out, "Keying material exporter:\n");
2601 BIO_printf(bio_s_out, " Label: '%s'\n", keymatexportlabel);
2602 BIO_printf(bio_s_out, " Length: %i bytes\n", keymatexportlen);
Rich Salz68dc6822015-04-30 17:48:31 -04002603 exportedkeymat = app_malloc(keymatexportlen, "export key");
2604 if (!SSL_export_keying_material(con, exportedkeymat,
2605 keymatexportlen,
2606 keymatexportlabel,
2607 strlen(keymatexportlabel),
2608 NULL, 0, 0)) {
2609 BIO_printf(bio_s_out, " Error\n");
2610 } else {
2611 BIO_printf(bio_s_out, " Keying material: ");
2612 for (i = 0; i < keymatexportlen; i++)
2613 BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2614 BIO_printf(bio_s_out, "\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002615 }
Rich Salz68dc6822015-04-30 17:48:31 -04002616 OPENSSL_free(exportedkeymat);
Matt Caswell0f113f32015-01-22 03:40:55 +00002617 }
Ben Lauriee0af0402011-11-15 23:50:52 +00002618
Matt Caswell0f113f32015-01-22 03:40:55 +00002619 return (1);
2620}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002621
Richard Levittecf1b7d92001-02-19 16:06:34 +00002622#ifndef OPENSSL_NO_DH
Nils Larscheb3eab22005-04-07 22:48:33 +00002623static DH *load_dh_param(const char *dhfile)
Matt Caswell0f113f32015-01-22 03:40:55 +00002624{
2625 DH *ret = NULL;
2626 BIO *bio;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002627
Matt Caswell0f113f32015-01-22 03:40:55 +00002628 if ((bio = BIO_new_file(dhfile, "r")) == NULL)
2629 goto err;
2630 ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2631 err:
Rich Salzca3a82c2015-03-25 11:31:18 -04002632 BIO_free(bio);
Matt Caswell0f113f32015-01-22 03:40:55 +00002633 return (ret);
2634}
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002635#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002636
Rich Salza773b522016-02-13 22:33:56 -05002637static int www_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00002638{
2639 char *buf = NULL;
2640 int ret = 1;
2641 int i, j, k, dot;
2642 SSL *con;
2643 const SSL_CIPHER *c;
2644 BIO *io, *ssl_bio, *sbio;
Rich Salz7e1b7482015-04-24 15:26:15 -04002645#ifdef RENEG
2646 int total_bytes = 0;
2647#endif
Matt Caswell075c8792015-09-11 13:11:37 +01002648 int width;
2649 fd_set readfds;
2650
2651 /* Set width for a select call if needed */
2652 width = s + 1;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002653
Rich Salz68dc6822015-04-30 17:48:31 -04002654 buf = app_malloc(bufsize, "server www buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00002655 io = BIO_new(BIO_f_buffer());
2656 ssl_bio = BIO_new(BIO_f_ssl());
2657 if ((io == NULL) || (ssl_bio == NULL))
2658 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002659
Matt Caswell0f113f32015-01-22 03:40:55 +00002660 if (s_nbio) {
Rich Salzba810812016-02-27 13:24:28 -05002661 if (!BIO_socket_nbio(s, 1))
Matt Caswell0f113f32015-01-22 03:40:55 +00002662 ERR_print_errors(bio_err);
Rich Salzba810812016-02-27 13:24:28 -05002663 else if (!s_quiet)
2664 BIO_printf(bio_err, "Turned on non blocking io\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002665 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002666
Matt Caswell0f113f32015-01-22 03:40:55 +00002667 /* lets make the output buffer a reasonable size */
2668 if (!BIO_set_write_buffer_size(io, bufsize))
2669 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002670
Matt Caswell0f113f32015-01-22 03:40:55 +00002671 if ((con = SSL_new(ctx)) == NULL)
2672 goto err;
Matt Caswelle481f9b2015-05-15 10:49:56 +01002673
Matt Caswell0f113f32015-01-22 03:40:55 +00002674 if (s_tlsextdebug) {
2675 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2676 SSL_set_tlsext_debug_arg(con, bio_s_out);
2677 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002678
Matt Caswellac59d702015-03-06 14:39:46 +00002679 if (context && !SSL_set_session_id_context(con, context,
Rich Salz7e1b7482015-04-24 15:26:15 -04002680 strlen((char *)context)))
Matt Caswellac59d702015-03-06 14:39:46 +00002681 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002682
Matt Caswell0f113f32015-01-22 03:40:55 +00002683 sbio = BIO_new_socket(s, BIO_NOCLOSE);
2684 if (s_nbio_test) {
2685 BIO *test;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002686
Matt Caswell0f113f32015-01-22 03:40:55 +00002687 test = BIO_new(BIO_f_nbio_test());
2688 sbio = BIO_push(test, sbio);
2689 }
2690 SSL_set_bio(con, sbio, sbio);
2691 SSL_set_accept_state(con);
Ben Laurie71fa4512012-06-03 22:00:21 +00002692
Matt Caswell0f113f32015-01-22 03:40:55 +00002693 /* SSL_set_fd(con,s); */
2694 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
2695 BIO_push(io, ssl_bio);
Ulf Möllera53955d1999-06-04 21:35:58 +00002696#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002697 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
Ulf Möllera53955d1999-06-04 21:35:58 +00002698#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002699
Matt Caswell0f113f32015-01-22 03:40:55 +00002700 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002701 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2702 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2703 }
2704 if (s_msg) {
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002705#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00002706 if (s_msg == 2)
2707 SSL_set_msg_callback(con, SSL_trace);
2708 else
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002709#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002710 SSL_set_msg_callback(con, msg_cb);
2711 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2712 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002713
Matt Caswell0f113f32015-01-22 03:40:55 +00002714 for (;;) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002715 i = BIO_gets(io, buf, bufsize - 1);
2716 if (i < 0) { /* error */
Matt Caswell4cfa6202015-03-27 15:20:24 +00002717 if (!BIO_should_retry(io) && !SSL_waiting_for_async(con)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002718 if (!s_quiet)
2719 ERR_print_errors(bio_err);
2720 goto err;
2721 } else {
2722 BIO_printf(bio_s_out, "read R BLOCK\n");
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002723#ifndef OPENSSL_NO_SRP
2724 if (BIO_should_io_special(io)
2725 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
2726 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002727 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002728 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002729 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2730 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002731 if (srp_callback_parm.user)
2732 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2733 srp_callback_parm.user->info);
2734 else
2735 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2736 continue;
2737 }
2738#endif
Richard Levitte4d8743f2003-11-28 13:10:58 +00002739#if defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002740 delay(1000);
Rich Salzf642ebc2014-08-09 08:02:20 -04002741#elif !defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002742 sleep(1);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002743#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002744 continue;
2745 }
2746 } else if (i == 0) { /* end of input */
2747 ret = 1;
2748 goto end;
2749 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002750
Matt Caswell0f113f32015-01-22 03:40:55 +00002751 /* else we have data */
2752 if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
Dmitry-Me0b142f02014-06-01 21:30:52 +04002753 ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002754 char *p;
2755 X509 *peer;
2756 STACK_OF(SSL_CIPHER) *sk;
2757 static const char *space = " ";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002758
Matt Caswell0f113f32015-01-22 03:40:55 +00002759 if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
2760 if (strncmp("GET /renegcert", buf, 14) == 0)
2761 SSL_set_verify(con,
2762 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2763 NULL);
2764 i = SSL_renegotiate(con);
2765 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
Matt Caswell075c8792015-09-11 13:11:37 +01002766 /* Send the HelloRequest */
Matt Caswell0f113f32015-01-22 03:40:55 +00002767 i = SSL_do_handshake(con);
2768 if (i <= 0) {
2769 BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
2770 SSL_get_error(con, i));
2771 ERR_print_errors(bio_err);
2772 goto err;
2773 }
Matt Caswell075c8792015-09-11 13:11:37 +01002774 /* Wait for a ClientHello to come back */
2775 FD_ZERO(&readfds);
2776 openssl_fdset(s, &readfds);
2777 i = select(width, (void *)&readfds, NULL, NULL, NULL);
2778 if (i <= 0 || !FD_ISSET(s, &readfds)) {
2779 BIO_printf(bio_s_out, "Error waiting for client response\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002780 ERR_print_errors(bio_err);
2781 goto err;
2782 }
Matt Caswell075c8792015-09-11 13:11:37 +01002783 /*
2784 * We're not acutally expecting any data here and we ignore
2785 * any that is sent. This is just to force the handshake that
2786 * we're expecting to come from the client. If they haven't
2787 * sent one there's not much we can do.
2788 */
2789 BIO_gets(io, buf, bufsize - 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00002790 }
Dr. Stephen Henson08c23972010-01-28 19:48:36 +00002791
Matt Caswell0f113f32015-01-22 03:40:55 +00002792 BIO_puts(io,
2793 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2794 BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
2795 BIO_puts(io, "<pre>\n");
Rich Salzb0700d22015-10-27 15:11:48 -04002796/* BIO_puts(io,OpenSSL_version(OPENSSL_VERSION));*/
Matt Caswell0f113f32015-01-22 03:40:55 +00002797 BIO_puts(io, "\n");
2798 for (i = 0; i < local_argc; i++) {
Rich Salzf92beb92015-04-25 16:06:19 -04002799 const char *myp;
2800 for (myp = local_argv[i]; *myp; myp++)
2801 switch (*myp) {
2802 case '<':
2803 BIO_puts(io, "&lt;");
2804 break;
2805 case '>':
2806 BIO_puts(io, "&gt;");
2807 break;
2808 case '&':
2809 BIO_puts(io, "&amp;");
2810 break;
2811 default:
2812 BIO_write(io, myp, 1);
2813 break;
2814 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002815 BIO_write(io, " ", 1);
2816 }
2817 BIO_puts(io, "\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002818
Matt Caswell0f113f32015-01-22 03:40:55 +00002819 BIO_printf(io,
2820 "Secure Renegotiation IS%s supported\n",
2821 SSL_get_secure_renegotiation_support(con) ?
2822 "" : " NOT");
Dr. Stephen Henson08c23972010-01-28 19:48:36 +00002823
Matt Caswell0f113f32015-01-22 03:40:55 +00002824 /*
2825 * The following is evil and should not really be done
2826 */
2827 BIO_printf(io, "Ciphers supported in s_server binary\n");
2828 sk = SSL_get_ciphers(con);
2829 j = sk_SSL_CIPHER_num(sk);
2830 for (i = 0; i < j; i++) {
2831 c = sk_SSL_CIPHER_value(sk, i);
Rich Salz7e1b7482015-04-24 15:26:15 -04002832 BIO_printf(io, "%-11s:%-25s ",
Matt Caswell0f113f32015-01-22 03:40:55 +00002833 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2834 if ((((i + 1) % 2) == 0) && (i + 1 != j))
2835 BIO_puts(io, "\n");
2836 }
2837 BIO_puts(io, "\n");
2838 p = SSL_get_shared_ciphers(con, buf, bufsize);
2839 if (p != NULL) {
2840 BIO_printf(io,
2841 "---\nCiphers common between both SSL end points:\n");
2842 j = i = 0;
2843 while (*p) {
2844 if (*p == ':') {
2845 BIO_write(io, space, 26 - j);
2846 i++;
2847 j = 0;
2848 BIO_write(io, ((i % 3) ? " " : "\n"), 1);
2849 } else {
2850 BIO_write(io, p, 1);
2851 j++;
2852 }
2853 p++;
2854 }
2855 BIO_puts(io, "\n");
2856 }
2857 ssl_print_sigalgs(io, con);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002858#ifndef OPENSSL_NO_EC
Matt Caswell0f113f32015-01-22 03:40:55 +00002859 ssl_print_curves(io, con, 0);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002860#endif
Dr. Stephen Hensonb577fd02016-02-08 16:18:26 +00002861 BIO_printf(io, (SSL_session_reused(con)
Matt Caswell0f113f32015-01-22 03:40:55 +00002862 ? "---\nReused, " : "---\nNew, "));
2863 c = SSL_get_current_cipher(con);
2864 BIO_printf(io, "%s, Cipher is %s\n",
2865 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2866 SSL_SESSION_print(io, SSL_get_session(con));
2867 BIO_printf(io, "---\n");
2868 print_stats(io, SSL_get_SSL_CTX(con));
2869 BIO_printf(io, "---\n");
2870 peer = SSL_get_peer_certificate(con);
2871 if (peer != NULL) {
2872 BIO_printf(io, "Client certificate\n");
2873 X509_print(io, peer);
2874 PEM_write_bio_X509(io, peer);
2875 } else
2876 BIO_puts(io, "no client certificate available\n");
2877 BIO_puts(io, "</BODY></HTML>\r\n\r\n");
2878 break;
2879 } else if ((www == 2 || www == 3)
2880 && (strncmp("GET /", buf, 5) == 0)) {
2881 BIO *file;
2882 char *p, *e;
2883 static const char *text =
2884 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002885
Matt Caswell0f113f32015-01-22 03:40:55 +00002886 /* skip the '/' */
2887 p = &(buf[5]);
Bodo Möller5d3ab9b2001-03-30 10:47:21 +00002888
Matt Caswell0f113f32015-01-22 03:40:55 +00002889 dot = 1;
2890 for (e = p; *e != '\0'; e++) {
2891 if (e[0] == ' ')
2892 break;
Bodo Möller5d3ab9b2001-03-30 10:47:21 +00002893
Matt Caswell0f113f32015-01-22 03:40:55 +00002894 switch (dot) {
2895 case 1:
2896 dot = (e[0] == '.') ? 2 : 0;
2897 break;
2898 case 2:
2899 dot = (e[0] == '.') ? 3 : 0;
2900 break;
2901 case 3:
2902 dot = (e[0] == '/') ? -1 : 0;
2903 break;
2904 }
2905 if (dot == 0)
2906 dot = (e[0] == '/') ? 1 : 0;
2907 }
2908 dot = (dot == 3) || (dot == -1); /* filename contains ".."
2909 * component */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002910
Matt Caswell0f113f32015-01-22 03:40:55 +00002911 if (*e == '\0') {
2912 BIO_puts(io, text);
2913 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
2914 break;
2915 }
2916 *e = '\0';
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002917
Matt Caswell0f113f32015-01-22 03:40:55 +00002918 if (dot) {
2919 BIO_puts(io, text);
2920 BIO_printf(io, "'%s' contains '..' reference\r\n", p);
2921 break;
2922 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002923
Matt Caswell0f113f32015-01-22 03:40:55 +00002924 if (*p == '/') {
2925 BIO_puts(io, text);
2926 BIO_printf(io, "'%s' is an invalid path\r\n", p);
2927 break;
2928 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002929
Matt Caswell0f113f32015-01-22 03:40:55 +00002930 /* if a directory, do the index thang */
2931 if (app_isdir(p) > 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002932 BIO_puts(io, text);
2933 BIO_printf(io, "'%s' is a directory\r\n", p);
2934 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002935 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002936
Matt Caswell0f113f32015-01-22 03:40:55 +00002937 if ((file = BIO_new_file(p, "r")) == NULL) {
2938 BIO_puts(io, text);
2939 BIO_printf(io, "Error opening '%s'\r\n", p);
2940 ERR_print_errors(io);
2941 break;
2942 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002943
Matt Caswell0f113f32015-01-22 03:40:55 +00002944 if (!s_quiet)
2945 BIO_printf(bio_err, "FILE:%s\n", p);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002946
Matt Caswell0f113f32015-01-22 03:40:55 +00002947 if (www == 2) {
2948 i = strlen(p);
2949 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
2950 ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
2951 ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
2952 BIO_puts(io,
2953 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2954 else
2955 BIO_puts(io,
2956 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
2957 }
2958 /* send the file */
2959 for (;;) {
2960 i = BIO_read(file, buf, bufsize);
2961 if (i <= 0)
2962 break;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002963
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +00002964#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00002965 total_bytes += i;
Rich Salz7768e112015-06-04 14:26:55 -04002966 BIO_printf(bio_err, "%d\n", i);
Matt Caswell0f113f32015-01-22 03:40:55 +00002967 if (total_bytes > 3 * 1024) {
2968 total_bytes = 0;
Rich Salz7768e112015-06-04 14:26:55 -04002969 BIO_printf(bio_err, "RENEGOTIATE\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002970 SSL_renegotiate(con);
2971 }
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +00002972#endif
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002973
Matt Caswell0f113f32015-01-22 03:40:55 +00002974 for (j = 0; j < i;) {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002975#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00002976 {
2977 static count = 0;
2978 if (++count == 13) {
2979 SSL_renegotiate(con);
2980 }
2981 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002982#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002983 k = BIO_write(io, &(buf[j]), i - j);
2984 if (k <= 0) {
Matt Caswell4cfa6202015-03-27 15:20:24 +00002985 if (!BIO_should_retry(io) && !SSL_waiting_for_async(con))
Matt Caswell0f113f32015-01-22 03:40:55 +00002986 goto write_error;
2987 else {
2988 BIO_printf(bio_s_out, "rwrite W BLOCK\n");
2989 }
2990 } else {
2991 j += k;
2992 }
2993 }
2994 }
2995 write_error:
2996 BIO_free(file);
2997 break;
2998 }
2999 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003000
Matt Caswell0f113f32015-01-22 03:40:55 +00003001 for (;;) {
3002 i = (int)BIO_flush(io);
3003 if (i <= 0) {
3004 if (!BIO_should_retry(io))
3005 break;
3006 } else
3007 break;
3008 }
3009 end:
Matt Caswell0f113f32015-01-22 03:40:55 +00003010 /* make sure we re-use sessions */
3011 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003012
Matt Caswell0f113f32015-01-22 03:40:55 +00003013 err:
Matt Caswell0f113f32015-01-22 03:40:55 +00003014 if (ret >= 0)
3015 BIO_printf(bio_s_out, "ACCEPT\n");
Rich Salzb548a1f2015-05-01 10:02:07 -04003016 OPENSSL_free(buf);
Rich Salzca3a82c2015-03-25 11:31:18 -04003017 BIO_free_all(io);
Matt Caswell0f113f32015-01-22 03:40:55 +00003018 return (ret);
3019}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003020
Rich Salza773b522016-02-13 22:33:56 -05003021static int rev_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00003022{
3023 char *buf = NULL;
3024 int i;
3025 int ret = 1;
3026 SSL *con;
3027 BIO *io, *ssl_bio, *sbio;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003028
Rich Salz68dc6822015-04-30 17:48:31 -04003029 buf = app_malloc(bufsize, "server rev buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00003030 io = BIO_new(BIO_f_buffer());
3031 ssl_bio = BIO_new(BIO_f_ssl());
3032 if ((io == NULL) || (ssl_bio == NULL))
3033 goto err;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003034
Matt Caswell0f113f32015-01-22 03:40:55 +00003035 /* lets make the output buffer a reasonable size */
3036 if (!BIO_set_write_buffer_size(io, bufsize))
3037 goto err;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003038
Matt Caswell0f113f32015-01-22 03:40:55 +00003039 if ((con = SSL_new(ctx)) == NULL)
3040 goto err;
Matt Caswelle481f9b2015-05-15 10:49:56 +01003041
Matt Caswell0f113f32015-01-22 03:40:55 +00003042 if (s_tlsextdebug) {
3043 SSL_set_tlsext_debug_callback(con, tlsext_cb);
3044 SSL_set_tlsext_debug_arg(con, bio_s_out);
3045 }
Matt Caswellac59d702015-03-06 14:39:46 +00003046 if (context && !SSL_set_session_id_context(con, context,
Rich Salz7e1b7482015-04-24 15:26:15 -04003047 strlen((char *)context))) {
Matt Caswellac59d702015-03-06 14:39:46 +00003048 ERR_print_errors(bio_err);
3049 goto err;
3050 }
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003051
Matt Caswell0f113f32015-01-22 03:40:55 +00003052 sbio = BIO_new_socket(s, BIO_NOCLOSE);
3053 SSL_set_bio(con, sbio, sbio);
3054 SSL_set_accept_state(con);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003055
Matt Caswell0f113f32015-01-22 03:40:55 +00003056 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3057 BIO_push(io, ssl_bio);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003058#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00003059 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003060#endif
3061
Matt Caswell0f113f32015-01-22 03:40:55 +00003062 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003063 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3064 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3065 }
3066 if (s_msg) {
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003067#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00003068 if (s_msg == 2)
3069 SSL_set_msg_callback(con, SSL_trace);
3070 else
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003071#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003072 SSL_set_msg_callback(con, msg_cb);
3073 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3074 }
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003075
Matt Caswell0f113f32015-01-22 03:40:55 +00003076 for (;;) {
3077 i = BIO_do_handshake(io);
3078 if (i > 0)
3079 break;
3080 if (!BIO_should_retry(io)) {
3081 BIO_puts(bio_err, "CONNECTION FAILURE\n");
3082 ERR_print_errors(bio_err);
3083 goto end;
3084 }
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003085#ifndef OPENSSL_NO_SRP
3086 if (BIO_should_io_special(io)
3087 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3088 BIO_printf(bio_s_out, "LOOKUP renego during accept\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01003089 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003090 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01003091 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3092 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003093 if (srp_callback_parm.user)
3094 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3095 srp_callback_parm.user->info);
3096 else
3097 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3098 continue;
3099 }
3100#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003101 }
3102 BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
Rich Salzecf3a1f2015-04-29 11:27:08 -04003103 print_ssl_summary(con);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003104
Matt Caswell0f113f32015-01-22 03:40:55 +00003105 for (;;) {
3106 i = BIO_gets(io, buf, bufsize - 1);
3107 if (i < 0) { /* error */
3108 if (!BIO_should_retry(io)) {
3109 if (!s_quiet)
3110 ERR_print_errors(bio_err);
3111 goto err;
3112 } else {
3113 BIO_printf(bio_s_out, "read R BLOCK\n");
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003114#ifndef OPENSSL_NO_SRP
3115 if (BIO_should_io_special(io)
3116 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3117 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01003118 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003119 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01003120 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3121 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003122 if (srp_callback_parm.user)
3123 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3124 srp_callback_parm.user->info);
3125 else
3126 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3127 continue;
3128 }
3129#endif
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003130#if defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00003131 delay(1000);
Rich Salza9008152014-08-08 16:46:14 -04003132#elif !defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00003133 sleep(1);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003134#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003135 continue;
3136 }
3137 } else if (i == 0) { /* end of input */
3138 ret = 1;
3139 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3140 goto end;
3141 } else {
3142 char *p = buf + i - 1;
3143 while (i && (*p == '\n' || *p == '\r')) {
3144 p--;
3145 i--;
3146 }
Rich Salz86885c22015-05-06 14:56:14 -04003147 if (!s_ign_eof && (i == 5) && (strncmp(buf, "CLOSE", 5) == 0)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003148 ret = 1;
3149 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3150 goto end;
3151 }
3152 BUF_reverse((unsigned char *)buf, NULL, i);
3153 buf[i] = '\n';
3154 BIO_write(io, buf, i + 1);
3155 for (;;) {
3156 i = BIO_flush(io);
3157 if (i > 0)
3158 break;
3159 if (!BIO_should_retry(io))
3160 goto end;
3161 }
3162 }
3163 }
3164 end:
3165 /* make sure we re-use sessions */
3166 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003167
Matt Caswell0f113f32015-01-22 03:40:55 +00003168 err:
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003169
Rich Salzb548a1f2015-05-01 10:02:07 -04003170 OPENSSL_free(buf);
Rich Salzca3a82c2015-03-25 11:31:18 -04003171 BIO_free_all(io);
Matt Caswell0f113f32015-01-22 03:40:55 +00003172 return (ret);
3173}
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003174
Geoff Thorpe1aa0d942001-02-21 18:38:48 +00003175#define MAX_SESSION_ID_ATTEMPTS 10
3176static int generate_session_id(const SSL *ssl, unsigned char *id,
Matt Caswell0f113f32015-01-22 03:40:55 +00003177 unsigned int *id_len)
3178{
3179 unsigned int count = 0;
3180 do {
Matt Caswell266483d2015-02-26 11:57:37 +00003181 if (RAND_bytes(id, *id_len) <= 0)
3182 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +00003183 /*
3184 * Prefix the session_id with the required prefix. NB: If our prefix
3185 * is too long, clip it - but there will be worse effects anyway, eg.
3186 * the server could only possibly create 1 session ID (ie. the
3187 * prefix!) so all future session negotiations will fail due to
3188 * conflicts.
3189 */
3190 memcpy(id, session_id_prefix,
3191 (strlen(session_id_prefix) < *id_len) ?
3192 strlen(session_id_prefix) : *id_len);
3193 }
3194 while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3195 (++count < MAX_SESSION_ID_ATTEMPTS));
3196 if (count >= MAX_SESSION_ID_ATTEMPTS)
3197 return 0;
3198 return 1;
3199}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003200
Matt Caswell0f113f32015-01-22 03:40:55 +00003201/*
3202 * By default s_server uses an in-memory cache which caches SSL_SESSION
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003203 * structures without any serialisation. This hides some bugs which only
3204 * become apparent in deployed servers. By implementing a basic external
3205 * session cache some issues can be debugged using s_server.
3206 */
3207
Matt Caswell0f113f32015-01-22 03:40:55 +00003208typedef struct simple_ssl_session_st {
3209 unsigned char *id;
3210 unsigned int idlen;
3211 unsigned char *der;
3212 int derlen;
3213 struct simple_ssl_session_st *next;
3214} simple_ssl_session;
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003215
3216static simple_ssl_session *first = NULL;
3217
3218static int add_session(SSL *ssl, SSL_SESSION *session)
Matt Caswell0f113f32015-01-22 03:40:55 +00003219{
Rich Salzb4faea52015-05-01 23:10:31 -04003220 simple_ssl_session *sess = app_malloc(sizeof(*sess), "get session");
Matt Caswell0f113f32015-01-22 03:40:55 +00003221 unsigned char *p;
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003222
Matt Caswell0f113f32015-01-22 03:40:55 +00003223 SSL_SESSION_get_id(session, &sess->idlen);
3224 sess->derlen = i2d_SSL_SESSION(session, NULL);
Rich Salz7e1b7482015-04-24 15:26:15 -04003225 if (sess->derlen < 0) {
3226 BIO_printf(bio_err, "Error encoding session\n");
Rich Salza194ee72015-04-25 22:55:36 -04003227 OPENSSL_free(sess);
Rich Salz7e1b7482015-04-24 15:26:15 -04003228 return 0;
3229 }
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003230
Rich Salz7644a9a2015-12-16 16:12:24 -05003231 sess->id = OPENSSL_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
Rich Salz68dc6822015-04-30 17:48:31 -04003232 sess->der = app_malloc(sess->derlen, "get session buffer");
3233 if (!sess->id) {
Rich Salz7e1b7482015-04-24 15:26:15 -04003234 BIO_printf(bio_err, "Out of memory adding to external cache\n");
Rich Salza194ee72015-04-25 22:55:36 -04003235 OPENSSL_free(sess->id);
3236 OPENSSL_free(sess->der);
Matt Caswell918bb862015-03-04 17:49:51 +00003237 OPENSSL_free(sess);
3238 return 0;
3239 }
Matt Caswell0f113f32015-01-22 03:40:55 +00003240 p = sess->der;
Rich Salz7e1b7482015-04-24 15:26:15 -04003241
3242 /* Assume it still works. */
3243 if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
Rich Salzce6766d2015-04-26 16:43:18 -04003244 BIO_printf(bio_err, "Unexpected session encoding length\n");
Rich Salza194ee72015-04-25 22:55:36 -04003245 OPENSSL_free(sess->id);
3246 OPENSSL_free(sess->der);
3247 OPENSSL_free(sess);
Matt Caswellac59d702015-03-06 14:39:46 +00003248 return 0;
3249 }
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003250
Matt Caswell0f113f32015-01-22 03:40:55 +00003251 sess->next = first;
3252 first = sess;
3253 BIO_printf(bio_err, "New session added to external cache\n");
3254 return 0;
3255}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003256
Emilia Kasperb6981742016-02-01 15:26:18 +01003257static SSL_SESSION *get_session(SSL *ssl, const unsigned char *id, int idlen,
Matt Caswell0f113f32015-01-22 03:40:55 +00003258 int *do_copy)
3259{
3260 simple_ssl_session *sess;
3261 *do_copy = 0;
3262 for (sess = first; sess; sess = sess->next) {
3263 if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3264 const unsigned char *p = sess->der;
3265 BIO_printf(bio_err, "Lookup session: cache hit\n");
3266 return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3267 }
3268 }
3269 BIO_printf(bio_err, "Lookup session: cache miss\n");
3270 return NULL;
3271}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003272
3273static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
Matt Caswell0f113f32015-01-22 03:40:55 +00003274{
3275 simple_ssl_session *sess, *prev = NULL;
3276 const unsigned char *id;
3277 unsigned int idlen;
3278 id = SSL_SESSION_get_id(session, &idlen);
3279 for (sess = first; sess; sess = sess->next) {
3280 if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3281 if (prev)
3282 prev->next = sess->next;
3283 else
3284 first = sess->next;
3285 OPENSSL_free(sess->id);
3286 OPENSSL_free(sess->der);
3287 OPENSSL_free(sess);
3288 return;
3289 }
3290 prev = sess;
3291 }
3292}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003293
3294static void init_session_cache_ctx(SSL_CTX *sctx)
Matt Caswell0f113f32015-01-22 03:40:55 +00003295{
3296 SSL_CTX_set_session_cache_mode(sctx,
3297 SSL_SESS_CACHE_NO_INTERNAL |
3298 SSL_SESS_CACHE_SERVER);
3299 SSL_CTX_sess_set_new_cb(sctx, add_session);
3300 SSL_CTX_sess_set_get_cb(sctx, get_session);
3301 SSL_CTX_sess_set_remove_cb(sctx, del_session);
3302}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003303
3304static void free_sessions(void)
Matt Caswell0f113f32015-01-22 03:40:55 +00003305{
3306 simple_ssl_session *sess, *tsess;
3307 for (sess = first; sess;) {
3308 OPENSSL_free(sess->id);
3309 OPENSSL_free(sess->der);
3310 tsess = sess;
3311 sess = sess->next;
3312 OPENSSL_free(tsess);
3313 }
3314 first = NULL;
3315}