blob: f544be15961c5a04a95879763db4283d81313819 [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;
Matt Caswell032c6d22015-09-22 11:23:33 +0100247static unsigned int split_send_fragment = 0;
248static unsigned int max_pipelines = 0;
Matt Caswell7e25dd62015-02-13 23:33:12 +0000249
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000250#ifndef OPENSSL_NO_ENGINE
Matt Caswell0f113f32015-01-22 03:40:55 +0000251static char *engine_id = NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000252#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000253static const char *session_id_prefix = NULL;
Bodo Möllerb74ba291999-09-03 23:08:45 +0000254
Ben Lauriea7a14a22015-12-16 13:25:07 +0000255#ifndef OPENSSL_NO_DTLS
Ben Laurie36d16f82005-04-26 16:02:40 +0000256static int enable_timeouts = 0;
Bodo Möllerb1277b92006-01-02 23:29:12 +0000257static long socket_mtu;
Ben Laurie36d16f82005-04-26 16:02:40 +0000258static int cert_chain = 0;
Dr. Stephen Henson58f41a92009-06-05 14:59:26 +0000259#endif
Matt Caswelld8249e92015-09-23 10:02:18 +0100260static int dtlslisten = 0;
Ben Laurie36d16f82005-04-26 16:02:40 +0000261
Trevora398f822013-05-12 18:55:27 -0700262static BIO *serverinfo_in = NULL;
263static const char *s_serverinfo_file = NULL;
Scott Deboy36086182013-06-18 14:34:38 -0700264
Nils Larschddac1972006-03-10 23:06:27 +0000265#ifndef OPENSSL_NO_PSK
Matt Caswell0f113f32015-01-22 03:40:55 +0000266static char *psk_identity = "Client_identity";
267char *psk_key = NULL; /* by default PSK is not used */
Nils Larschddac1972006-03-10 23:06:27 +0000268
269static unsigned int psk_server_cb(SSL *ssl, const char *identity,
Matt Caswell0f113f32015-01-22 03:40:55 +0000270 unsigned char *psk,
271 unsigned int max_psk_len)
272{
273 unsigned int psk_len = 0;
274 int ret;
275 BIGNUM *bn = NULL;
Nils Larschddac1972006-03-10 23:06:27 +0000276
Matt Caswell0f113f32015-01-22 03:40:55 +0000277 if (s_debug)
278 BIO_printf(bio_s_out, "psk_server_cb\n");
279 if (!identity) {
280 BIO_printf(bio_err, "Error: client did not send PSK identity\n");
281 goto out_err;
282 }
283 if (s_debug)
284 BIO_printf(bio_s_out, "identity_len=%d identity=%s\n",
Matt Caswell11abf922015-03-12 14:09:00 +0000285 (int)strlen(identity), identity);
Nils Larschddac1972006-03-10 23:06:27 +0000286
Matt Caswell0f113f32015-01-22 03:40:55 +0000287 /* here we could lookup the given identity e.g. from a database */
288 if (strcmp(identity, psk_identity) != 0) {
289 BIO_printf(bio_s_out, "PSK error: client identity not found"
290 " (got '%s' expected '%s')\n", identity, psk_identity);
291 goto out_err;
292 }
293 if (s_debug)
294 BIO_printf(bio_s_out, "PSK client identity found\n");
Nils Larschddac1972006-03-10 23:06:27 +0000295
Matt Caswell0f113f32015-01-22 03:40:55 +0000296 /* convert the PSK key to binary */
297 ret = BN_hex2bn(&bn, psk_key);
298 if (!ret) {
299 BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
300 psk_key);
Rich Salz23a1d5e2015-04-30 21:37:06 -0400301 BN_free(bn);
Matt Caswell0f113f32015-01-22 03:40:55 +0000302 return 0;
303 }
304 if (BN_num_bytes(bn) > (int)max_psk_len) {
305 BIO_printf(bio_err,
306 "psk buffer of callback is too small (%d) for key (%d)\n",
307 max_psk_len, BN_num_bytes(bn));
308 BN_free(bn);
309 return 0;
310 }
Nils Larschddac1972006-03-10 23:06:27 +0000311
Matt Caswell0f113f32015-01-22 03:40:55 +0000312 ret = BN_bn2bin(bn, psk);
313 BN_free(bn);
Nils Larschddac1972006-03-10 23:06:27 +0000314
Matt Caswell0f113f32015-01-22 03:40:55 +0000315 if (ret < 0)
316 goto out_err;
317 psk_len = (unsigned int)ret;
Nils Larschddac1972006-03-10 23:06:27 +0000318
Matt Caswell0f113f32015-01-22 03:40:55 +0000319 if (s_debug)
320 BIO_printf(bio_s_out, "fetched PSK len=%d\n", psk_len);
321 return psk_len;
Nils Larschddac1972006-03-10 23:06:27 +0000322 out_err:
Matt Caswell0f113f32015-01-22 03:40:55 +0000323 if (s_debug)
324 BIO_printf(bio_err, "Error in PSK server callback\n");
Rich Salzc54cc2b2015-04-25 09:26:48 -0400325 (void)BIO_flush(bio_err);
326 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +0000327 return 0;
328}
Nils Larschddac1972006-03-10 23:06:27 +0000329#endif
Ben Laurie36d16f82005-04-26 16:02:40 +0000330
Ben Laurieedc032b2011-03-12 17:01:19 +0000331#ifndef OPENSSL_NO_SRP
332/* This is a context that we pass to callbacks */
Matt Caswell0f113f32015-01-22 03:40:55 +0000333typedef struct srpsrvparm_st {
334 char *login;
335 SRP_VBASE *vb;
336 SRP_user_pwd *user;
337} srpsrvparm;
Ben Laurieedc032b2011-03-12 17:01:19 +0000338
Matt Caswell0f113f32015-01-22 03:40:55 +0000339/*
340 * This callback pretends to require some asynchronous logic in order to
341 * obtain a verifier. When the callback is called for a new connection we
342 * return with a negative value. This will provoke the accept etc to return
343 * with an LOOKUP_X509. The main logic of the reinvokes the suspended call
344 * (which would normally occur after a worker has finished) and we set the
345 * user parameters.
346 */
Rich Salz6d23cf92015-01-12 17:29:26 -0500347static int ssl_srp_server_param_cb(SSL *s, int *ad, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000348{
349 srpsrvparm *p = (srpsrvparm *) arg;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100350 int ret = SSL3_AL_FATAL;
351
Matt Caswell0f113f32015-01-22 03:40:55 +0000352 if (p->login == NULL && p->user == NULL) {
353 p->login = SSL_get_srp_username(s);
354 BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
355 return (-1);
356 }
Ben Laurieedc032b2011-03-12 17:01:19 +0000357
Matt Caswell0f113f32015-01-22 03:40:55 +0000358 if (p->user == NULL) {
359 BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
Emilia Kasper380f18e2016-02-24 12:59:59 +0100360 goto err;
Matt Caswell0f113f32015-01-22 03:40:55 +0000361 }
Emilia Kasper380f18e2016-02-24 12:59:59 +0100362
Matt Caswell0f113f32015-01-22 03:40:55 +0000363 if (SSL_set_srp_server_param
364 (s, p->user->N, p->user->g, p->user->s, p->user->v,
365 p->user->info) < 0) {
366 *ad = SSL_AD_INTERNAL_ERROR;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100367 goto err;
Matt Caswell0f113f32015-01-22 03:40:55 +0000368 }
369 BIO_printf(bio_err,
370 "SRP parameters set: username = \"%s\" info=\"%s\" \n",
371 p->login, p->user->info);
Emilia Kasper380f18e2016-02-24 12:59:59 +0100372 ret = SSL_ERROR_NONE;
373
374err:
375 SRP_user_pwd_free(p->user);
Matt Caswell0f113f32015-01-22 03:40:55 +0000376 p->user = NULL;
377 p->login = NULL;
Emilia Kasper380f18e2016-02-24 12:59:59 +0100378 return ret;
Matt Caswell0f113f32015-01-22 03:40:55 +0000379}
Ben Laurieedc032b2011-03-12 17:01:19 +0000380
381#endif
382
Ulf Möller6b691a51999-04-19 21:31:43 +0000383static void s_server_init(void)
Matt Caswell0f113f32015-01-22 03:40:55 +0000384{
385 accept_socket = -1;
Rich Salz7e1b7482015-04-24 15:26:15 -0400386 verify_depth = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000387 s_server_verify = SSL_VERIFY_NONE;
388 s_dcert_file = NULL;
389 s_dkey_file = NULL;
390 s_dchain_file = NULL;
391 s_cert_file = TEST_CERT;
392 s_key_file = NULL;
393 s_chain_file = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000394 s_cert_file2 = TEST_CERT2;
395 s_key_file2 = NULL;
396 ctx2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000397 s_nbio = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000398 s_nbio_test = 0;
399 ctx = NULL;
400 www = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000401 bio_s_out = NULL;
402 s_debug = 0;
403 s_msg = 0;
404 s_quiet = 0;
405 s_brief = 0;
Matt Caswell7e25dd62015-02-13 23:33:12 +0000406 async = 0;
Matt Caswell032c6d22015-09-22 11:23:33 +0100407 split_send_fragment = 0;
408 max_pipelines = 0;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000409#ifndef OPENSSL_NO_ENGINE
Rich Salz7e1b7482015-04-24 15:26:15 -0400410 engine_id = NULL;
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000411#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000412}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000413
Matt Caswell0f113f32015-01-22 03:40:55 +0000414static int local_argc = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000415static char **local_argv;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000416
Ulf Möllera53955d1999-06-04 21:35:58 +0000417#ifdef CHARSET_EBCDIC
418static int ebcdic_new(BIO *bi);
419static int ebcdic_free(BIO *a);
420static int ebcdic_read(BIO *b, char *out, int outl);
Bodo Möller0fd05a22002-08-15 14:52:54 +0000421static int ebcdic_write(BIO *b, const char *in, int inl);
422static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
Ulf Möllera53955d1999-06-04 21:35:58 +0000423static int ebcdic_gets(BIO *bp, char *buf, int size);
Bodo Möller0fd05a22002-08-15 14:52:54 +0000424static int ebcdic_puts(BIO *bp, const char *str);
Ulf Möllera53955d1999-06-04 21:35:58 +0000425
Matt Caswell0f113f32015-01-22 03:40:55 +0000426# define BIO_TYPE_EBCDIC_FILTER (18|0x0200)
427static BIO_METHOD methods_ebcdic = {
428 BIO_TYPE_EBCDIC_FILTER,
429 "EBCDIC/ASCII filter",
430 ebcdic_write,
431 ebcdic_read,
432 ebcdic_puts,
433 ebcdic_gets,
434 ebcdic_ctrl,
435 ebcdic_new,
436 ebcdic_free,
437};
Ulf Möllera53955d1999-06-04 21:35:58 +0000438
Rich Salz68dc6822015-04-30 17:48:31 -0400439/* This struct is "unwarranted chumminess with the compiler." */
Matt Caswell0f113f32015-01-22 03:40:55 +0000440typedef struct {
441 size_t alloced;
442 char buff[1];
Ulf Möllera53955d1999-06-04 21:35:58 +0000443} EBCDIC_OUTBUFF;
444
445BIO_METHOD *BIO_f_ebcdic_filter()
446{
Matt Caswell0f113f32015-01-22 03:40:55 +0000447 return (&methods_ebcdic);
Ulf Möllera53955d1999-06-04 21:35:58 +0000448}
449
450static int ebcdic_new(BIO *bi)
451{
Matt Caswell0f113f32015-01-22 03:40:55 +0000452 EBCDIC_OUTBUFF *wbuf;
Ulf Möllera53955d1999-06-04 21:35:58 +0000453
Rich Salzb4faea52015-05-01 23:10:31 -0400454 wbuf = app_malloc(sizeof(*wbuf) + 1024, "ebcdic wbuf");
Matt Caswell0f113f32015-01-22 03:40:55 +0000455 wbuf->alloced = 1024;
456 wbuf->buff[0] = '\0';
Ulf Möllera53955d1999-06-04 21:35:58 +0000457
Matt Caswell0f113f32015-01-22 03:40:55 +0000458 bi->ptr = (char *)wbuf;
459 bi->init = 1;
460 bi->flags = 0;
461 return (1);
Ulf Möllera53955d1999-06-04 21:35:58 +0000462}
463
464static int ebcdic_free(BIO *a)
465{
Matt Caswell0f113f32015-01-22 03:40:55 +0000466 if (a == NULL)
467 return (0);
Rich Salz25aaa982015-05-01 14:37:16 -0400468 OPENSSL_free(a->ptr);
Matt Caswell0f113f32015-01-22 03:40:55 +0000469 a->ptr = NULL;
470 a->init = 0;
471 a->flags = 0;
472 return (1);
Ulf Möllera53955d1999-06-04 21:35:58 +0000473}
Matt Caswell0f113f32015-01-22 03:40:55 +0000474
Ulf Möllera53955d1999-06-04 21:35:58 +0000475static int ebcdic_read(BIO *b, char *out, int outl)
476{
Matt Caswell0f113f32015-01-22 03:40:55 +0000477 int ret = 0;
Ulf Möllera53955d1999-06-04 21:35:58 +0000478
Matt Caswell0f113f32015-01-22 03:40:55 +0000479 if (out == NULL || outl == 0)
480 return (0);
481 if (b->next_bio == NULL)
482 return (0);
Ulf Möllera53955d1999-06-04 21:35:58 +0000483
Matt Caswell0f113f32015-01-22 03:40:55 +0000484 ret = BIO_read(b->next_bio, out, outl);
485 if (ret > 0)
486 ascii2ebcdic(out, out, ret);
487 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000488}
489
Bodo Möller0fd05a22002-08-15 14:52:54 +0000490static int ebcdic_write(BIO *b, const char *in, int inl)
Ulf Möllera53955d1999-06-04 21:35:58 +0000491{
Matt Caswell0f113f32015-01-22 03:40:55 +0000492 EBCDIC_OUTBUFF *wbuf;
493 int ret = 0;
494 int num;
495 unsigned char n;
Ulf Möllera53955d1999-06-04 21:35:58 +0000496
Matt Caswell0f113f32015-01-22 03:40:55 +0000497 if ((in == NULL) || (inl <= 0))
498 return (0);
499 if (b->next_bio == NULL)
500 return (0);
Ulf Möllera53955d1999-06-04 21:35:58 +0000501
Matt Caswell0f113f32015-01-22 03:40:55 +0000502 wbuf = (EBCDIC_OUTBUFF *) b->ptr;
Ulf Möllera53955d1999-06-04 21:35:58 +0000503
Matt Caswell0f113f32015-01-22 03:40:55 +0000504 if (inl > (num = wbuf->alloced)) {
505 num = num + num; /* double the size */
506 if (num < inl)
507 num = inl;
Rich Salzb4faea52015-05-01 23:10:31 -0400508 wbuf = app_malloc(sizeof(*wbuf) + num, "grow ebcdic wbuf");
Matt Caswell918bb862015-03-04 17:49:51 +0000509 OPENSSL_free(b->ptr);
Ulf Möllera53955d1999-06-04 21:35:58 +0000510
Matt Caswell0f113f32015-01-22 03:40:55 +0000511 wbuf->alloced = num;
512 wbuf->buff[0] = '\0';
Ulf Möllera53955d1999-06-04 21:35:58 +0000513
Matt Caswell0f113f32015-01-22 03:40:55 +0000514 b->ptr = (char *)wbuf;
515 }
Ulf Möllera53955d1999-06-04 21:35:58 +0000516
Matt Caswell0f113f32015-01-22 03:40:55 +0000517 ebcdic2ascii(wbuf->buff, in, inl);
Ulf Möllera53955d1999-06-04 21:35:58 +0000518
Matt Caswell0f113f32015-01-22 03:40:55 +0000519 ret = BIO_write(b->next_bio, wbuf->buff, inl);
Ulf Möllera53955d1999-06-04 21:35:58 +0000520
Matt Caswell0f113f32015-01-22 03:40:55 +0000521 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000522}
523
Bodo Möller0fd05a22002-08-15 14:52:54 +0000524static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr)
Ulf Möllera53955d1999-06-04 21:35:58 +0000525{
Matt Caswell0f113f32015-01-22 03:40:55 +0000526 long ret;
Ulf Möllera53955d1999-06-04 21:35:58 +0000527
Matt Caswell0f113f32015-01-22 03:40:55 +0000528 if (b->next_bio == NULL)
529 return (0);
530 switch (cmd) {
531 case BIO_CTRL_DUP:
532 ret = 0L;
533 break;
534 default:
535 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
536 break;
537 }
538 return (ret);
Ulf Möllera53955d1999-06-04 21:35:58 +0000539}
540
541static int ebcdic_gets(BIO *bp, char *buf, int size)
542{
Matt Caswell0f113f32015-01-22 03:40:55 +0000543 int i, ret = 0;
544 if (bp->next_bio == NULL)
545 return (0);
546/* return(BIO_gets(bp->next_bio,buf,size));*/
547 for (i = 0; i < size - 1; ++i) {
548 ret = ebcdic_read(bp, &buf[i], 1);
549 if (ret <= 0)
550 break;
551 else if (buf[i] == '\n') {
552 ++i;
553 break;
554 }
555 }
556 if (i < size)
557 buf[i] = '\0';
558 return (ret < 0 && i == 0) ? ret : i;
Ulf Möllera53955d1999-06-04 21:35:58 +0000559}
560
Bodo Möller0fd05a22002-08-15 14:52:54 +0000561static int ebcdic_puts(BIO *bp, const char *str)
Ulf Möllera53955d1999-06-04 21:35:58 +0000562{
Matt Caswell0f113f32015-01-22 03:40:55 +0000563 if (bp->next_bio == NULL)
564 return (0);
565 return ebcdic_write(bp, str, strlen(str));
Ulf Möllera53955d1999-06-04 21:35:58 +0000566}
567#endif
568
Bodo Möllered3883d2006-01-02 23:14:37 +0000569/* This is a context that we pass to callbacks */
570typedef struct tlsextctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000571 char *servername;
572 BIO *biodebug;
573 int extension_error;
Bodo Möllered3883d2006-01-02 23:14:37 +0000574} tlsextctx;
575
Rich Salz6d23cf92015-01-12 17:29:26 -0500576static int ssl_servername_cb(SSL *s, int *ad, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000577{
578 tlsextctx *p = (tlsextctx *) arg;
579 const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
580 if (servername && p->biodebug)
581 BIO_printf(p->biodebug, "Hostname in TLS extension: \"%s\"\n",
582 servername);
583
584 if (!p->servername)
585 return SSL_TLSEXT_ERR_NOACK;
586
587 if (servername) {
588 if (strcasecmp(servername, p->servername))
589 return p->extension_error;
590 if (ctx2) {
591 BIO_printf(p->biodebug, "Switching server context.\n");
592 SSL_set_SSL_CTX(s, ctx2);
593 }
594 }
595 return SSL_TLSEXT_ERR_OK;
Bodo Möllered3883d2006-01-02 23:14:37 +0000596}
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000597
598/* Structure passed to cert status callback */
599
600typedef struct tlsextstatusctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000601 /* Default responder to use */
602 char *host, *path, *port;
603 int use_ssl;
604 int timeout;
Matt Caswell0f113f32015-01-22 03:40:55 +0000605 int verbose;
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000606} tlsextstatusctx;
607
Rich Salz7e1b7482015-04-24 15:26:15 -0400608static tlsextstatusctx tlscstatp = { NULL, NULL, NULL, 0, -1, 0 };
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000609
Matt Caswell0f113f32015-01-22 03:40:55 +0000610/*
611 * Certificate Status callback. This is called when a client includes a
612 * certificate status request extension. This is a simplified version. It
613 * examines certificates each time and makes one OCSP responder query for
614 * each request. A full version would store details such as the OCSP
615 * certificate IDs and minimise the number of OCSP responses by caching them
616 * until they were considered "expired".
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +0000617 */
618
619static int cert_status_cb(SSL *s, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000620{
621 tlsextstatusctx *srctx = arg;
Gunnar Kudrjavets4c9b0a02015-05-06 10:16:55 +0100622 char *host = NULL, *port = NULL, *path = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000623 int use_ssl;
624 unsigned char *rspder = NULL;
625 int rspderlen;
626 STACK_OF(OPENSSL_STRING) *aia = NULL;
627 X509 *x = NULL;
628 X509_STORE_CTX inctx;
629 X509_OBJECT obj;
630 OCSP_REQUEST *req = NULL;
631 OCSP_RESPONSE *resp = NULL;
632 OCSP_CERTID *id = NULL;
633 STACK_OF(X509_EXTENSION) *exts;
634 int ret = SSL_TLSEXT_ERR_NOACK;
635 int i;
Rich Salz7e1b7482015-04-24 15:26:15 -0400636
Matt Caswell0f113f32015-01-22 03:40:55 +0000637 if (srctx->verbose)
Rich Salz7e1b7482015-04-24 15:26:15 -0400638 BIO_puts(bio_err, "cert_status: callback called\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000639 /* Build up OCSP query from server certificate */
640 x = SSL_get_certificate(s);
641 aia = X509_get1_ocsp(x);
642 if (aia) {
643 if (!OCSP_parse_url(sk_OPENSSL_STRING_value(aia, 0),
644 &host, &port, &path, &use_ssl)) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400645 BIO_puts(bio_err, "cert_status: can't parse AIA URL\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000646 goto err;
647 }
648 if (srctx->verbose)
Rich Salz7e1b7482015-04-24 15:26:15 -0400649 BIO_printf(bio_err, "cert_status: AIA URL: %s\n",
Matt Caswell0f113f32015-01-22 03:40:55 +0000650 sk_OPENSSL_STRING_value(aia, 0));
651 } else {
652 if (!srctx->host) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400653 BIO_puts(bio_err,
Matt Caswell0f113f32015-01-22 03:40:55 +0000654 "cert_status: no AIA and no default responder URL\n");
655 goto done;
656 }
657 host = srctx->host;
658 path = srctx->path;
659 port = srctx->port;
660 use_ssl = srctx->use_ssl;
661 }
662
663 if (!X509_STORE_CTX_init(&inctx,
664 SSL_CTX_get_cert_store(SSL_get_SSL_CTX(s)),
665 NULL, NULL))
666 goto err;
667 if (X509_STORE_get_by_subject(&inctx, X509_LU_X509,
668 X509_get_issuer_name(x), &obj) <= 0) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400669 BIO_puts(bio_err, "cert_status: Can't retrieve issuer certificate.\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000670 X509_STORE_CTX_cleanup(&inctx);
671 goto done;
672 }
673 req = OCSP_REQUEST_new();
Matt Caswell96487cd2015-10-30 11:18:04 +0000674 if (req == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000675 goto err;
676 id = OCSP_cert_to_id(NULL, x, obj.data.x509);
677 X509_free(obj.data.x509);
678 X509_STORE_CTX_cleanup(&inctx);
679 if (!id)
680 goto err;
681 if (!OCSP_request_add0_id(req, id))
682 goto err;
683 id = NULL;
684 /* Add any extensions to the request */
685 SSL_get_tlsext_status_exts(s, &exts);
686 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
687 X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
688 if (!OCSP_REQUEST_add_ext(req, ext, -1))
689 goto err;
690 }
Rich Salz7e1b7482015-04-24 15:26:15 -0400691 resp = process_responder(req, host, path, port, use_ssl, NULL,
Matt Caswell0f113f32015-01-22 03:40:55 +0000692 srctx->timeout);
693 if (!resp) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400694 BIO_puts(bio_err, "cert_status: error querying responder\n");
Matt Caswell0f113f32015-01-22 03:40:55 +0000695 goto done;
696 }
697 rspderlen = i2d_OCSP_RESPONSE(resp, &rspder);
698 if (rspderlen <= 0)
699 goto err;
700 SSL_set_tlsext_status_ocsp_resp(s, rspder, rspderlen);
701 if (srctx->verbose) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400702 BIO_puts(bio_err, "cert_status: ocsp response sent:\n");
703 OCSP_RESPONSE_print(bio_err, resp, 2);
Matt Caswell0f113f32015-01-22 03:40:55 +0000704 }
705 ret = SSL_TLSEXT_ERR_OK;
706 done:
707 if (ret != SSL_TLSEXT_ERR_OK)
Rich Salz7e1b7482015-04-24 15:26:15 -0400708 ERR_print_errors(bio_err);
Matt Caswell0f113f32015-01-22 03:40:55 +0000709 if (aia) {
710 OPENSSL_free(host);
711 OPENSSL_free(path);
712 OPENSSL_free(port);
713 X509_email_free(aia);
714 }
Rich Salz25aaa982015-05-01 14:37:16 -0400715 OCSP_CERTID_free(id);
716 OCSP_REQUEST_free(req);
717 OCSP_RESPONSE_free(resp);
Matt Caswell0f113f32015-01-22 03:40:55 +0000718 return ret;
719 err:
720 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
721 goto done;
722}
Ben Laurieee2ffc22010-07-28 10:06:55 +0000723
Matt Caswelle481f9b2015-05-15 10:49:56 +0100724#ifndef OPENSSL_NO_NEXTPROTONEG
Ben Laurieee2ffc22010-07-28 10:06:55 +0000725/* This is the context that we pass to next_proto_cb */
726typedef struct tlsextnextprotoctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000727 unsigned char *data;
728 unsigned int len;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000729} tlsextnextprotoctx;
730
Matt Caswell0f113f32015-01-22 03:40:55 +0000731static int next_proto_cb(SSL *s, const unsigned char **data,
732 unsigned int *len, void *arg)
733{
734 tlsextnextprotoctx *next_proto = arg;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000735
Matt Caswell0f113f32015-01-22 03:40:55 +0000736 *data = next_proto->data;
737 *len = next_proto->len;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000738
Matt Caswell0f113f32015-01-22 03:40:55 +0000739 return SSL_TLSEXT_ERR_OK;
740}
Matt Caswelle481f9b2015-05-15 10:49:56 +0100741#endif /* ndef OPENSSL_NO_NEXTPROTONEG */
Adam Langley6f017a82013-04-15 18:07:47 -0400742
743/* This the context that we pass to alpn_cb */
744typedef struct tlsextalpnctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000745 unsigned char *data;
746 unsigned short len;
Adam Langley6f017a82013-04-15 18:07:47 -0400747} tlsextalpnctx;
748
Matt Caswell0f113f32015-01-22 03:40:55 +0000749static int alpn_cb(SSL *s, const unsigned char **out, unsigned char *outlen,
750 const unsigned char *in, unsigned int inlen, void *arg)
751{
752 tlsextalpnctx *alpn_ctx = arg;
Adam Langley6f017a82013-04-15 18:07:47 -0400753
Matt Caswell0f113f32015-01-22 03:40:55 +0000754 if (!s_quiet) {
755 /* We can assume that |in| is syntactically valid. */
756 unsigned i;
757 BIO_printf(bio_s_out, "ALPN protocols advertised by the client: ");
758 for (i = 0; i < inlen;) {
759 if (i)
760 BIO_write(bio_s_out, ", ", 2);
761 BIO_write(bio_s_out, &in[i + 1], in[i]);
762 i += in[i] + 1;
763 }
764 BIO_write(bio_s_out, "\n", 1);
765 }
Adam Langley6f017a82013-04-15 18:07:47 -0400766
Matt Caswell0f113f32015-01-22 03:40:55 +0000767 if (SSL_select_next_proto
768 ((unsigned char **)out, outlen, alpn_ctx->data, alpn_ctx->len, in,
769 inlen) != OPENSSL_NPN_NEGOTIATED) {
770 return SSL_TLSEXT_ERR_NOACK;
771 }
Adam Langley6f017a82013-04-15 18:07:47 -0400772
Matt Caswell0f113f32015-01-22 03:40:55 +0000773 if (!s_quiet) {
774 BIO_printf(bio_s_out, "ALPN protocols selected: ");
775 BIO_write(bio_s_out, *out, *outlen);
776 BIO_write(bio_s_out, "\n", 1);
777 }
Adam Langley6f017a82013-04-15 18:07:47 -0400778
Matt Caswell0f113f32015-01-22 03:40:55 +0000779 return SSL_TLSEXT_ERR_OK;
780}
Bodo Möllered3883d2006-01-02 23:14:37 +0000781
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000782static int not_resumable_sess_cb(SSL *s, int is_forward_secure)
Matt Caswell0f113f32015-01-22 03:40:55 +0000783{
784 /* disable resumption for sessions with forward secure ciphers */
785 return is_forward_secure;
786}
Bodo Möller7c2d4fe2010-08-26 15:15:47 +0000787
Dr. Stephen Hensonc79f22c2011-12-27 14:21:45 +0000788#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +0000789static srpsrvparm srp_callback_parm;
Dr. Stephen Hensonc79f22c2011-12-27 14:21:45 +0000790#endif
Piotr Sikorae783bae2014-12-22 11:15:51 +0000791#ifndef OPENSSL_NO_SRTP
Ben Laurie333f9262011-11-15 22:59:20 +0000792static char *srtp_profiles = NULL;
Piotr Sikorae783bae2014-12-22 11:15:51 +0000793#endif
Ben Laurie6caa4ed2008-10-26 18:40:52 +0000794
Rich Salz7e1b7482015-04-24 15:26:15 -0400795typedef enum OPTION_choice {
Richard Levitteab69ac02016-02-03 00:47:42 +0100796 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, OPT_ENGINE,
797 OPT_4, OPT_6, OPT_ACCEPT, OPT_PORT, OPT_UNIX, OPT_UNLINK, OPT_NACCEPT,
Rich Salz7e1b7482015-04-24 15:26:15 -0400798 OPT_VERIFY, OPT_UPPER_V_VERIFY, OPT_CONTEXT, OPT_CERT, OPT_CRL,
799 OPT_CRL_DOWNLOAD, OPT_SERVERINFO, OPT_CERTFORM, OPT_KEY, OPT_KEYFORM,
800 OPT_PASS, OPT_CERT_CHAIN, OPT_DHPARAM, OPT_DCERTFORM, OPT_DCERT,
801 OPT_DKEYFORM, OPT_DPASS, OPT_DKEY, OPT_DCERT_CHAIN, OPT_NOCERT,
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100802 OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH, OPT_NO_CACHE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400803 OPT_EXT_CACHE, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100804 OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE, OPT_CHAINCAFILE,
805 OPT_VERIFYCAFILE, OPT_NBIO, OPT_NBIO_TEST, OPT_IGN_EOF, OPT_NO_IGN_EOF,
806 OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_STATUS_VERBOSE,
807 OPT_STATUS_TIMEOUT, OPT_STATUS_URL, OPT_MSG, OPT_MSGFILE, OPT_TRACE,
808 OPT_SECURITY_DEBUG, OPT_SECURITY_DEBUG_VERBOSE, OPT_STATE, OPT_CRLF,
Matt Caswell8caab742015-12-15 10:43:44 +0000809 OPT_QUIET, OPT_BRIEF, OPT_NO_DHE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400810 OPT_NO_RESUME_EPHEMERAL, OPT_PSK_HINT, OPT_PSK, OPT_SRPVFILE,
Matt Caswell7e25dd62015-02-13 23:33:12 +0000811 OPT_SRPUSERSEED, OPT_REV, OPT_WWW, OPT_UPPER_WWW, OPT_HTTP, OPT_ASYNC,
Matt Caswell032c6d22015-09-22 11:23:33 +0100812 OPT_SSL_CONFIG, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES, OPT_SSL3,
Rich Salz7e1b7482015-04-24 15:26:15 -0400813 OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
Matt Caswellfd4e98e2015-04-09 10:01:05 +0100814 OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_CHAIN, OPT_LISTEN,
Rich Salz7e1b7482015-04-24 15:26:15 -0400815 OPT_ID_PREFIX, OPT_RAND, OPT_SERVERNAME, OPT_SERVERNAME_FATAL,
Rich Salzdba31772016-02-14 00:17:59 -0500816 OPT_CERT2, OPT_KEY2, OPT_NEXTPROTONEG, OPT_ALPN,
Rich Salz7e1b7482015-04-24 15:26:15 -0400817 OPT_SRTP_PROFILES, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN,
818 OPT_S_ENUM,
819 OPT_V_ENUM,
Matt Caswell55614192015-05-12 10:35:51 +0100820 OPT_X_ENUM
Rich Salz7e1b7482015-04-24 15:26:15 -0400821} OPTION_CHOICE;
822
823OPTIONS s_server_options[] = {
824 {"help", OPT_HELP, '-', "Display this summary"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500825 {"port", OPT_PORT, 'p',
826 "TCP/IP port to listen on for connections (default is " PORT ")"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100827 {"accept", OPT_ACCEPT, 's',
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500828 "TCP/IP optional host and port to accept on (default is " PORT ")"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100829#ifdef AF_UNIX
Rich Salz7e1b7482015-04-24 15:26:15 -0400830 {"unix", OPT_UNIX, 's', "Unix domain socket to accept on"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100831#endif
832 {"4", OPT_4, '-', "Use IPv4 only"},
833 {"6", OPT_6, '-', "Use IPv6 only"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500834#ifdef AF_UNIX
Rich Salz7e1b7482015-04-24 15:26:15 -0400835 {"unlink", OPT_UNLINK, '-', "For -unix, unlink existing socket first"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500836#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400837 {"context", OPT_CONTEXT, 's', "Set session ID context"},
838 {"verify", OPT_VERIFY, 'n', "Turn on peer certificate verification"},
839 {"Verify", OPT_UPPER_V_VERIFY, 'n',
840 "Turn on peer certificate verification, must have a cert"},
841 {"cert", OPT_CERT, '<', "Certificate file to use; default is " TEST_CERT},
842 {"naccept", OPT_NACCEPT, 'p', "Terminate after pnum connections"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400843 {"serverinfo", OPT_SERVERINFO, 's',
844 "PEM serverinfo file for certificate"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400845 {"certform", OPT_CERTFORM, 'F',
846 "Certificate format (PEM or DER) PEM default"},
847 {"key", OPT_KEY, '<',
848 "Private Key if not in -cert; default is " TEST_CERT},
849 {"keyform", OPT_KEYFORM, 'f',
850 "Key format (PEM, DER or ENGINE) PEM default"},
851 {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
852 {"dcert", OPT_DCERT, '<',
853 "Second certificate file to use (usually for DSA)"},
854 {"dcertform", OPT_DCERTFORM, 'F',
855 "Second certificate format (PEM or DER) PEM default"},
856 {"dkey", OPT_DKEY, '<',
857 "Second private key file to use (usually for DSA)"},
858 {"dkeyform", OPT_DKEYFORM, 'F',
859 "Second key format (PEM, DER or ENGINE) PEM default"},
860 {"dpass", OPT_DPASS, 's', "Second private key file pass phrase source"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400861 {"nbio_test", OPT_NBIO_TEST, '-', "Test with the non-blocking test bio"},
862 {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
863 {"debug", OPT_DEBUG, '-', "Print more output"},
864 {"msg", OPT_MSG, '-', "Show protocol messages"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500865 {"msgfile", OPT_MSGFILE, '>',
866 "File to send output of -msg or -trace, instead of stdout"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400867 {"state", OPT_STATE, '-', "Print the SSL states"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400868 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100869 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
870 {"no-CAfile", OPT_NOCAFILE, '-',
871 "Do not load the default certificates file"},
872 {"no-CApath", OPT_NOCAPATH, '-',
873 "Do not load certificates from the default certificates directory"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400874 {"nocert", OPT_NOCERT, '-', "Don't use any certificates (Anon-DH)"},
875 {"quiet", OPT_QUIET, '-', "No server output"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400876 {"no_resume_ephemeral", OPT_NO_RESUME_EPHEMERAL, '-',
877 "Disable caching and tickets if ephemeral (EC)DH is used"},
878 {"www", OPT_WWW, '-', "Respond to a 'GET /' with a status page"},
879 {"WWW", OPT_UPPER_WWW, '-', "Respond to a 'GET with the file ./path"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400880 {"servername", OPT_SERVERNAME, 's',
881 "Servername for HostName TLS extension"},
882 {"servername_fatal", OPT_SERVERNAME_FATAL, '-',
883 "mismatch send fatal alert (default warning alert)"},
884 {"cert2", OPT_CERT2, '<',
885 "Certificate file to use for servername; default is" TEST_CERT2},
886 {"key2", OPT_KEY2, '<',
887 "-Private Key file to use for servername if not in -cert2"},
888 {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
889 "Hex dump of all TLS extensions received"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400890 {"HTTP", OPT_HTTP, '-', "Like -WWW but ./path incluedes HTTP headers"},
891 {"id_prefix", OPT_ID_PREFIX, 's',
892 "Generate SSL/TLS session IDs prefixed by arg"},
893 {"rand", OPT_RAND, 's',
894 "Load the file(s) into the random number generator"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400895 {"keymatexport", OPT_KEYMATEXPORT, 's',
896 "Export keying material using label"},
897 {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
898 "Export len bytes of keying material (default 20)"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500899 {"CRL", OPT_CRL, '<', "CRL file to use"},
900 {"crl_download", OPT_CRL_DOWNLOAD, '-',
901 "Download CRL from distribution points"},
902 {"cert_chain", OPT_CERT_CHAIN, '<',
903 "certificate chain file in PEM format"},
904 {"dcert_chain", OPT_DCERT_CHAIN, '<',
905 "second certificate chain file in PEM format"},
906 {"chainCApath", OPT_CHAINCAPATH, '/',
907 "use dir as certificate store path to build CA certificate chain"},
908 {"verifyCApath", OPT_VERIFYCAPATH, '/',
909 "use dir as certificate store path to verify CA certificate"},
910 {"no_cache", OPT_NO_CACHE, '-', "Disable session cache"},
911 {"ext_cache", OPT_EXT_CACHE, '-',
912 "Disable internal cache, setup and use external cache"},
913 {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default" },
914 {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
915 "Close connection on verification error"},
916 {"verify_quiet", OPT_VERIFY_QUIET, '-',
917 "No verify output except verify errors"},
918 {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
919 {"chainCAfile", OPT_CHAINCAFILE, '<',
920 "CA file for certificate chain (PEM format)"},
921 {"verifyCAfile", OPT_VERIFYCAFILE, '<',
922 "CA file for certificate verification (PEM format)"},
923 {"ign_eof", OPT_IGN_EOF, '-', "ignore input eof (default when -quiet)"},
924 {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Do not ignore input eof"},
925 {"status", OPT_STATUS, '-', "Request certificate status from server"},
926 {"status_verbose", OPT_STATUS_VERBOSE, '-',
927 "Print more output in certificate status callback"},
928 {"status_timeout", OPT_STATUS_TIMEOUT, 'n',
929 "Status request responder timeout"},
930 {"status_url", OPT_STATUS_URL, 's', "Status request fallback URL"},
931#ifndef OPENSSL_NO_SSL_TRACE
932 {"trace", OPT_TRACE, '-', "trace protocol messages"},
933#endif
934 {"security_debug", OPT_SECURITY_DEBUG, '-',
935 "Print output from SSL/TLS security framework"},
936 {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
937 "Print more output from SSL/TLS security framework"},
938 {"brief", OPT_BRIEF, '-', \
939 "Restrict output to brief summary of connection parameters"},
940 {"rev", OPT_REV, '-',
941 "act as a simple test server which just sends back with the received text reversed"},
Matt Caswell7e25dd62015-02-13 23:33:12 +0000942 {"async", OPT_ASYNC, '-', "Operate in asynchronous mode"},
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500943 {"ssl_config", OPT_SSL_CONFIG, 's', \
944 "Configure SSL_CTX using the configuration 'val'"},
Matt Caswell032c6d22015-09-22 11:23:33 +0100945 {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'n',
946 "Size used to split data for encrypt/decrypt pipelines"},
947 {"max_pipelines", OPT_MAX_PIPELINES, 'n',
948 "Maximum number of encrypt/decrypt pipelines to be used"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400949 OPT_S_OPTIONS,
950 OPT_V_OPTIONS,
951 OPT_X_OPTIONS,
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400952 {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400953#ifndef OPENSSL_NO_PSK
954 {"psk_hint", OPT_PSK_HINT, 's', "PSK identity hint to use"},
955 {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400956#endif
957#ifndef OPENSSL_NO_SRP
958 {"srpvfile", OPT_SRPVFILE, '<', "The verifier file for SRP"},
959 {"srpuserseed", OPT_SRPUSERSEED, 's',
960 "A seed string for a default user salt"},
961#endif
962#ifndef OPENSSL_NO_SSL3
963 {"ssl3", OPT_SSL3, '-', "Just talk SSLv3"},
964#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500965#ifndef OPENSSL_NO_TLS1
966 {"tls1", OPT_TLS1, '-', "Just talk TLSv1"},
967#endif
968#ifndef OPENSSL_NO_TLS1_1
969 {"tls1_1", OPT_TLS1_1, '-', "Just talk TLSv1.1"},
970#endif
971#ifndef OPENSSL_NO_TLS1_2
972 {"tls1_2", OPT_TLS1_2, '-', "just talk TLSv1.2"},
973#endif
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +0100974#ifndef OPENSSL_NO_DTLS
A J Mohan Rao32eabe32016-02-09 10:55:42 -0500975 {"dtls", OPT_DTLS, '-', "Use any DTLS version"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400976 {"timeout", OPT_TIMEOUT, '-', "Enable timeouts"},
977 {"mtu", OPT_MTU, 'p', "Set link layer MTU"},
978 {"chain", OPT_CHAIN, '-', "Read a certificate chain"},
Matt Caswellfd4e98e2015-04-09 10:01:05 +0100979 {"listen", OPT_LISTEN, '-',
980 "Listen for a DTLS ClientHello with a cookie and then connect"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400981#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500982#ifndef OPENSSL_NO_DTLS1
983 {"dtls1", OPT_DTLS1, '-', "Just talk DTLSv1"},
984#endif
985#ifndef OPENSSL_NO_DTLS1_2
986 {"dtls1_2", OPT_DTLS1_2, '-', "Just talk DTLSv1.2"},
987#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400988#ifndef OPENSSL_NO_DH
989 {"no_dhe", OPT_NO_DHE, '-', "Disable ephemeral DH"},
990#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400991#ifndef OPENSSL_NO_NEXTPROTONEG
992 {"nextprotoneg", OPT_NEXTPROTONEG, 's',
993 "Set the advertised protocols for the NPN extension (comma-separated list)"},
994#endif
995#ifndef OPENSSL_NO_SRTP
Matt Caswelle77bdc72015-08-04 19:18:02 +0100996 {"use_srtp", OPT_SRTP_PROFILES, 's',
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400997 "Offer SRTP key management with a colon-separated profile list"},
J Mohan Rao Arisankalab07c7032016-02-27 08:50:07 +0530998#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400999 {"alpn", OPT_ALPN, 's',
1000 "Set the advertised protocols for the ALPN extension (comma-separated list)"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001001#ifndef OPENSSL_NO_ENGINE
A J Mohan Rao32eabe32016-02-09 10:55:42 -05001002 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001003#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001004 {NULL}
1005};
1006
1007int s_server_main(int argc, char *argv[])
Matt Caswell0f113f32015-01-22 03:40:55 +00001008{
Rich Salz7e1b7482015-04-24 15:26:15 -04001009 ENGINE *e = NULL;
1010 EVP_PKEY *s_key = NULL, *s_dkey = NULL;
1011 SSL_CONF_CTX *cctx = NULL;
Matt Caswell32ec4152015-03-27 23:01:51 +00001012 const SSL_METHOD *meth = TLS_server_method();
Rich Salz7e1b7482015-04-24 15:26:15 -04001013 SSL_EXCERT *exc = NULL;
1014 STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
1015 STACK_OF(X509) *s_chain = NULL, *s_dchain = NULL;
1016 STACK_OF(X509_CRL) *crls = NULL;
1017 X509 *s_cert = NULL, *s_dcert = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001018 X509_VERIFY_PARAM *vpm = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001019 char *CApath = NULL, *CAfile = NULL, *chCApath = NULL, *chCAfile = NULL;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001020#ifndef OPENSSL_NO_DH
1021 char *dhfile = NULL;
1022#endif
1023 char *dpassarg = NULL, *dpass = NULL, *inrand = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001024 char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
Matt Caswella7f82a12015-05-15 09:42:08 +01001025 char *crl_file = NULL, *prog;
1026#ifndef OPENSSL_NO_PSK
1027 char *p;
1028#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01001029#ifdef AF_UNIX
Matt Caswell0f113f32015-01-22 03:40:55 +00001030 int unlink_unix_path = 0;
Dr. Stephen Henson9cd86ab2014-07-01 12:44:00 +01001031#endif
Rich Salza773b522016-02-13 22:33:56 -05001032 do_server_cb server_cb;
Rich Salz7e1b7482015-04-24 15:26:15 -04001033 int vpmtouched = 0, build_chain = 0, no_cache = 0, ext_cache = 0;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001034#ifndef OPENSSL_NO_DH
1035 int no_dhe = 0;
1036#endif
Matt Caswell8caab742015-12-15 10:43:44 +00001037 int nocert = 0, ret = 1;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001038 int noCApath = 0, noCAfile = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +00001039 int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM;
Matt Caswell0f113f32015-01-22 03:40:55 +00001040 int s_dcert_format = FORMAT_PEM, s_dkey_format = FORMAT_PEM;
Richard Levitteab69ac02016-02-03 00:47:42 +01001041 int rev = 0, naccept = -1, sdebug = 0;
1042 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
Rich Salz7e1b7482015-04-24 15:26:15 -04001043 int state = 0, crl_format = FORMAT_PEM, crl_download = 0;
Richard Levitteab69ac02016-02-03 00:47:42 +01001044 char *host = NULL;
1045 char *port = BUF_strdup(PORT);
Rich Salz7e1b7482015-04-24 15:26:15 -04001046 unsigned char *context = NULL;
1047 OPTION_CHOICE o;
Matt Caswell0f113f32015-01-22 03:40:55 +00001048 EVP_PKEY *s_key2 = NULL;
1049 X509 *s_cert2 = NULL;
1050 tlsextctx tlsextcbp = { NULL, NULL, SSL_TLSEXT_ERR_ALERT_WARNING };
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001051 const char *ssl_config = NULL;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001052#ifndef OPENSSL_NO_NEXTPROTONEG
Matt Caswell0f113f32015-01-22 03:40:55 +00001053 const char *next_proto_neg_in = NULL;
1054 tlsextnextprotoctx next_proto = { NULL, 0 };
Matt Caswelle481f9b2015-05-15 10:49:56 +01001055#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001056 const char *alpn_in = NULL;
1057 tlsextalpnctx alpn_ctx = { NULL, 0 };
Nils Larschddac1972006-03-10 23:06:27 +00001058#ifndef OPENSSL_NO_PSK
Matt Caswell0f113f32015-01-22 03:40:55 +00001059 /* by default do not send a PSK identity hint */
1060 static char *psk_identity_hint = NULL;
Nils Larschddac1972006-03-10 23:06:27 +00001061#endif
Ben Laurieedc032b2011-03-12 17:01:19 +00001062#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00001063 char *srpuserseed = NULL;
1064 char *srp_verifier_file = NULL;
Ben Laurieedc032b2011-03-12 17:01:19 +00001065#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001066
Matt Caswell0f113f32015-01-22 03:40:55 +00001067 local_argc = argc;
1068 local_argv = argv;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001069
Matt Caswell0f113f32015-01-22 03:40:55 +00001070 s_server_init();
Matt Caswell0f113f32015-01-22 03:40:55 +00001071 cctx = SSL_CONF_CTX_new();
Rich Salz7e1b7482015-04-24 15:26:15 -04001072 vpm = X509_VERIFY_PARAM_new();
1073 if (cctx == NULL || vpm == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +00001074 goto end;
Rich Salz7e1b7482015-04-24 15:26:15 -04001075 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER | SSL_CONF_FLAG_CMDLINE);
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001076
Rich Salz7e1b7482015-04-24 15:26:15 -04001077 prog = opt_init(argc, argv, s_server_options);
1078 while ((o = opt_next()) != OPT_EOF) {
1079 switch (o) {
1080 case OPT_EOF:
1081 case OPT_ERR:
1082 opthelp:
1083 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1084 goto end;
1085 case OPT_HELP:
1086 opt_help(s_server_options);
1087 ret = 0;
1088 goto end;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001089
Richard Levitteab69ac02016-02-03 00:47:42 +01001090 case OPT_4:
1091#ifdef AF_UNIX
1092 if (socket_family == AF_UNIX) {
1093 OPENSSL_free(host); host = NULL;
1094 OPENSSL_free(port); port = NULL;
1095 }
Geoff Thorpea9351322014-04-26 01:22:54 -04001096#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01001097 socket_family = AF_INET;
1098 break;
1099 case OPT_6:
1100 if (1) {
1101#ifdef AF_INET6
1102#ifdef AF_UNIX
1103 if (socket_family == AF_UNIX) {
1104 OPENSSL_free(host); host = NULL;
1105 OPENSSL_free(port); port = NULL;
1106 }
1107#endif
1108 socket_family = AF_INET6;
1109 } else {
1110#endif
1111 BIO_printf(bio_err, "%s: IPv6 domain sockets unsupported\n", prog);
1112 goto end;
1113 }
1114 break;
1115 case OPT_PORT:
1116#ifdef AF_UNIX
1117 if (socket_family == AF_UNIX) {
1118 socket_family = AF_UNSPEC;
1119 }
1120#endif
1121 OPENSSL_free(port); port = NULL;
1122 OPENSSL_free(host); host = NULL;
1123 if (BIO_parse_hostserv(opt_arg(), NULL, &port, BIO_PARSE_PRIO_SERV) < 1) {
1124 BIO_printf(bio_err,
1125 "%s: -port argument malformed or ambiguous\n",
1126 port);
1127 goto end;
1128 }
1129 break;
1130 case OPT_ACCEPT:
1131#ifdef AF_UNIX
1132 if (socket_family == AF_UNIX) {
1133 socket_family = AF_UNSPEC;
1134 }
1135#endif
1136 OPENSSL_free(port); port = NULL;
1137 OPENSSL_free(host); host = NULL;
1138 if (BIO_parse_hostserv(opt_arg(), &host, &port, BIO_PARSE_PRIO_SERV) < 1) {
1139 BIO_printf(bio_err,
1140 "%s: -accept argument malformed or ambiguous\n",
1141 port);
1142 goto end;
1143 }
1144 break;
1145#ifdef AF_UNIX
1146 case OPT_UNIX:
1147 socket_family = AF_UNIX;
1148 OPENSSL_free(host); host = BUF_strdup(opt_arg());
1149 OPENSSL_free(port); port = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001150 break;
1151 case OPT_UNLINK:
Matt Caswell0f113f32015-01-22 03:40:55 +00001152 unlink_unix_path = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001153 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001154#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001155 case OPT_NACCEPT:
1156 naccept = atol(opt_arg());
1157 break;
1158 case OPT_VERIFY:
Matt Caswell0f113f32015-01-22 03:40:55 +00001159 s_server_verify = SSL_VERIFY_PEER | 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, "verify depth is %d\n", verify_depth);
Rich Salz7e1b7482015-04-24 15:26:15 -04001163 break;
1164 case OPT_UPPER_V_VERIFY:
Matt Caswell0f113f32015-01-22 03:40:55 +00001165 s_server_verify =
1166 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1167 SSL_VERIFY_CLIENT_ONCE;
Rich Salz7e1b7482015-04-24 15:26:15 -04001168 verify_depth = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001169 if (!s_quiet)
1170 BIO_printf(bio_err,
1171 "verify depth is %d, must return a certificate\n",
1172 verify_depth);
Rich Salz7e1b7482015-04-24 15:26:15 -04001173 break;
1174 case OPT_CONTEXT:
1175 context = (unsigned char *)opt_arg();
1176 break;
1177 case OPT_CERT:
1178 s_cert_file = opt_arg();
1179 break;
1180 case OPT_CRL:
1181 crl_file = opt_arg();
1182 break;
1183 case OPT_CRL_DOWNLOAD:
Matt Caswell0f113f32015-01-22 03:40:55 +00001184 crl_download = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001185 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001186 case OPT_SERVERINFO:
1187 s_serverinfo_file = opt_arg();
1188 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001189 case OPT_CERTFORM:
1190 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_cert_format))
1191 goto opthelp;
1192 break;
1193 case OPT_KEY:
1194 s_key_file = opt_arg();
1195 break;
1196 case OPT_KEYFORM:
1197 if (!opt_format(opt_arg(), OPT_FMT_ANY, &s_key_format))
1198 goto opthelp;
1199 break;
1200 case OPT_PASS:
1201 passarg = opt_arg();
1202 break;
1203 case OPT_CERT_CHAIN:
1204 s_chain_file = opt_arg();
1205 break;
1206 case OPT_DHPARAM:
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001207#ifndef OPENSSL_NO_DH
Rich Salz7e1b7482015-04-24 15:26:15 -04001208 dhfile = opt_arg();
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001209#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001210 break;
1211 case OPT_DCERTFORM:
1212 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dcert_format))
1213 goto opthelp;
1214 break;
1215 case OPT_DCERT:
1216 s_dcert_file = opt_arg();
1217 break;
1218 case OPT_DKEYFORM:
1219 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &s_dkey_format))
1220 goto opthelp;
1221 break;
1222 case OPT_DPASS:
1223 dpassarg = opt_arg();
1224 break;
1225 case OPT_DKEY:
1226 s_dkey_file = opt_arg();
1227 break;
1228 case OPT_DCERT_CHAIN:
1229 s_dchain_file = opt_arg();
1230 break;
1231 case OPT_NOCERT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001232 nocert = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001233 break;
1234 case OPT_CAPATH:
1235 CApath = opt_arg();
1236 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001237 case OPT_NOCAPATH:
1238 noCApath = 1;
1239 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001240 case OPT_CHAINCAPATH:
1241 chCApath = opt_arg();
1242 break;
1243 case OPT_VERIFYCAPATH:
1244 vfyCApath = opt_arg();
1245 break;
1246 case OPT_NO_CACHE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001247 no_cache = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001248 break;
1249 case OPT_EXT_CACHE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001250 ext_cache = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001251 break;
1252 case OPT_CRLFORM:
1253 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1254 goto opthelp;
1255 break;
1256 case OPT_S_CASES:
1257 if (ssl_args == NULL)
1258 ssl_args = sk_OPENSSL_STRING_new_null();
1259 if (ssl_args == NULL
1260 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1261 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1262 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1263 goto end;
1264 }
1265 break;
1266 case OPT_V_CASES:
1267 if (!opt_verify(o, vpm))
1268 goto end;
1269 vpmtouched++;
1270 break;
1271 case OPT_X_CASES:
1272 if (!args_excert(o, &exc))
1273 goto end;
1274 break;
1275 case OPT_VERIFY_RET_ERROR:
Matt Caswell0f113f32015-01-22 03:40:55 +00001276 verify_return_error = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001277 break;
1278 case OPT_VERIFY_QUIET:
Matt Caswell0f113f32015-01-22 03:40:55 +00001279 verify_quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001280 break;
1281 case OPT_BUILD_CHAIN:
Matt Caswell0f113f32015-01-22 03:40:55 +00001282 build_chain = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001283 break;
1284 case OPT_CAFILE:
1285 CAfile = opt_arg();
1286 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001287 case OPT_NOCAFILE:
1288 noCAfile = 1;
1289 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001290 case OPT_CHAINCAFILE:
1291 chCAfile = opt_arg();
1292 break;
1293 case OPT_VERIFYCAFILE:
1294 vfyCAfile = opt_arg();
1295 break;
1296 case OPT_NBIO:
Matt Caswell0f113f32015-01-22 03:40:55 +00001297 s_nbio = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001298 break;
1299 case OPT_NBIO_TEST:
1300 s_nbio = s_nbio_test = 1;
1301 break;
1302 case OPT_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001303 s_ign_eof = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001304 break;
1305 case OPT_NO_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001306 s_ign_eof = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -04001307 break;
1308 case OPT_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001309 s_debug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001310 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001311 case OPT_TLSEXTDEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001312 s_tlsextdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001313 break;
1314 case OPT_STATUS:
Matt Caswell0f113f32015-01-22 03:40:55 +00001315 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001316 break;
1317 case OPT_STATUS_VERBOSE:
1318 s_tlsextstatus = tlscstatp.verbose = 1;
1319 break;
1320 case OPT_STATUS_TIMEOUT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001321 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001322 tlscstatp.timeout = atoi(opt_arg());
1323 break;
1324 case OPT_STATUS_URL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001325 s_tlsextstatus = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001326 if (!OCSP_parse_url(opt_arg(),
Matt Caswell0f113f32015-01-22 03:40:55 +00001327 &tlscstatp.host,
1328 &tlscstatp.port,
1329 &tlscstatp.path, &tlscstatp.use_ssl)) {
1330 BIO_printf(bio_err, "Error parsing URL\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04001331 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001332 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001333 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001334 case OPT_MSG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001335 s_msg = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001336 break;
1337 case OPT_MSGFILE:
1338 bio_s_msg = BIO_new_file(opt_arg(), "w");
1339 break;
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001340 case OPT_TRACE:
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00001341#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00001342 s_msg = 2;
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00001343#endif
J Mohan Rao Arisankala1c03c812016-02-29 22:23:18 +05301344 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001345 case OPT_SECURITY_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001346 sdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001347 break;
1348 case OPT_SECURITY_DEBUG_VERBOSE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001349 sdebug = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001350 break;
1351 case OPT_STATE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001352 state = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001353 break;
1354 case OPT_CRLF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001355 s_crlf = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001356 break;
1357 case OPT_QUIET:
Matt Caswell0f113f32015-01-22 03:40:55 +00001358 s_quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001359 break;
1360 case OPT_BRIEF:
1361 s_quiet = s_brief = verify_quiet = 1;
1362 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001363 case OPT_NO_DHE:
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001364#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +00001365 no_dhe = 1;
Dr. Stephen Henson37f3a3b2015-09-19 22:03:15 +01001366#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001367 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001368 case OPT_NO_RESUME_EPHEMERAL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001369 no_resume_ephemeral = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001370 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001371 case OPT_PSK_HINT:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001372#ifndef OPENSSL_NO_PSK
Rich Salz7e1b7482015-04-24 15:26:15 -04001373 psk_identity_hint = opt_arg();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001374#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001375 break;
1376 case OPT_PSK:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001377#ifndef OPENSSL_NO_PSK
Rich Salz7e1b7482015-04-24 15:26:15 -04001378 for (p = psk_key = opt_arg(); *p; p++) {
Richard Levitte18295f02016-02-14 13:02:15 +01001379 if (isxdigit(_UC(*p)))
Matt Caswell0f113f32015-01-22 03:40:55 +00001380 continue;
1381 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
Rich Salz7e1b7482015-04-24 15:26:15 -04001382 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001383 }
Nils Larschddac1972006-03-10 23:06:27 +00001384#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001385 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001386 case OPT_SRPVFILE:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001387#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001388 srp_verifier_file = opt_arg();
Matt Caswell0f113f32015-01-22 03:40:55 +00001389 meth = TLSv1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001390#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001391 break;
1392 case OPT_SRPUSERSEED:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001393#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001394 srpuserseed = opt_arg();
Matt Caswell0f113f32015-01-22 03:40:55 +00001395 meth = TLSv1_server_method();
Ben Laurieedc032b2011-03-12 17:01:19 +00001396#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001397 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001398 case OPT_REV:
Matt Caswell0f113f32015-01-22 03:40:55 +00001399 rev = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001400 break;
1401 case OPT_WWW:
Matt Caswell0f113f32015-01-22 03:40:55 +00001402 www = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001403 break;
1404 case OPT_UPPER_WWW:
Matt Caswell0f113f32015-01-22 03:40:55 +00001405 www = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001406 break;
1407 case OPT_HTTP:
Matt Caswell0f113f32015-01-22 03:40:55 +00001408 www = 3;
Rich Salz7e1b7482015-04-24 15:26:15 -04001409 break;
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001410 case OPT_SSL_CONFIG:
1411 ssl_config = opt_arg();
1412 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001413 case OPT_SSL3:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001414#ifndef OPENSSL_NO_SSL3
Matt Caswell4407d072015-05-06 11:17:07 +01001415 meth = SSLv3_server_method();
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001416#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001417 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001418 case OPT_TLS1_2:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001419#ifndef OPENSSL_NO_TLS1_2
Matt Caswell4407d072015-05-06 11:17:07 +01001420 meth = TLSv1_2_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001421#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001422 break;
1423 case OPT_TLS1_1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001424#ifndef OPENSSL_NO_TLS1_1
Matt Caswell4407d072015-05-06 11:17:07 +01001425 meth = TLSv1_1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001426#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001427 break;
1428 case OPT_TLS1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001429#ifndef OPENSSL_NO_TLS1
Matt Caswell4407d072015-05-06 11:17:07 +01001430 meth = TLSv1_server_method();
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001431#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001432 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001433 case OPT_DTLS:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001434#ifndef OPENSSL_NO_DTLS
Matt Caswell4407d072015-05-06 11:17:07 +01001435 meth = DTLS_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001436 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001437#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001438 break;
1439 case OPT_DTLS1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001440#ifndef OPENSSL_NO_DTLS1
Matt Caswell4407d072015-05-06 11:17:07 +01001441 meth = DTLSv1_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001442 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001443#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001444 break;
1445 case OPT_DTLS1_2:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001446#ifndef OPENSSL_NO_DTLS1_2
Matt Caswell4407d072015-05-06 11:17:07 +01001447 meth = DTLSv1_2_server_method();
Matt Caswell0f113f32015-01-22 03:40:55 +00001448 socket_type = SOCK_DGRAM;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001449#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001450 break;
1451 case OPT_TIMEOUT:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001452#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001453 enable_timeouts = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001454#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001455 break;
1456 case OPT_MTU:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001457#ifndef OPENSSL_NO_DTLS
Rich Salz7e1b7482015-04-24 15:26:15 -04001458 socket_mtu = atol(opt_arg());
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001459#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001460 break;
1461 case OPT_CHAIN:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001462#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001463 cert_chain = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001464#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001465 break;
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001466 case OPT_LISTEN:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001467#ifndef OPENSSL_NO_DTLS
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001468 dtlslisten = 1;
Ben Laurie36d16f82005-04-26 16:02:40 +00001469#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001470 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001471 case OPT_ID_PREFIX:
1472 session_id_prefix = opt_arg();
1473 break;
1474 case OPT_ENGINE:
Rich Salz333b0702015-04-25 15:41:29 -04001475 e = setup_engine(opt_arg(), 1);
Rich Salz7e1b7482015-04-24 15:26:15 -04001476 break;
1477 case OPT_RAND:
1478 inrand = opt_arg();
1479 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001480 case OPT_SERVERNAME:
1481 tlsextcbp.servername = opt_arg();
1482 break;
1483 case OPT_SERVERNAME_FATAL:
Matt Caswell0f113f32015-01-22 03:40:55 +00001484 tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
Rich Salz7e1b7482015-04-24 15:26:15 -04001485 break;
1486 case OPT_CERT2:
1487 s_cert_file2 = opt_arg();
1488 break;
1489 case OPT_KEY2:
1490 s_key_file2 = opt_arg();
1491 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001492 case OPT_NEXTPROTONEG:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001493# ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz7e1b7482015-04-24 15:26:15 -04001494 next_proto_neg_in = opt_arg();
Matt Caswelle481f9b2015-05-15 10:49:56 +01001495#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001496 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001497 case OPT_ALPN:
1498 alpn_in = opt_arg();
1499 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001500 case OPT_SRTP_PROFILES:
J Mohan Rao Arisankalad6316022016-02-27 09:05:51 +05301501#ifndef OPENSSL_NO_SRTP
Rich Salz7e1b7482015-04-24 15:26:15 -04001502 srtp_profiles = opt_arg();
J Mohan Rao Arisankalab07c7032016-02-27 08:50:07 +05301503#endif
J Mohan Rao Arisankalad6316022016-02-27 09:05:51 +05301504 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001505 case OPT_KEYMATEXPORT:
1506 keymatexportlabel = opt_arg();
1507 break;
1508 case OPT_KEYMATEXPORTLEN:
1509 keymatexportlen = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001510 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00001511 case OPT_ASYNC:
1512 async = 1;
1513 break;
Matt Caswell032c6d22015-09-22 11:23:33 +01001514 case OPT_SPLIT_SEND_FRAG:
1515 split_send_fragment = atoi(opt_arg());
1516 if (split_send_fragment == 0) {
1517 /* Not allowed - set to a deliberately bad value */
1518 split_send_fragment = -1;
1519 }
1520 break;
1521 case OPT_MAX_PIPELINES:
1522 max_pipelines = atoi(opt_arg());
1523 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00001524 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001525 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001526 argc = opt_num_rest();
1527 argv = opt_rest();
1528
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +01001529#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001530 if (www && socket_type == SOCK_DGRAM) {
1531 BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1532 goto end;
1533 }
Matt Caswellfd4e98e2015-04-09 10:01:05 +01001534
1535 if (dtlslisten && socket_type != SOCK_DGRAM) {
1536 BIO_printf(bio_err, "Can only use -listen with DTLS\n");
1537 goto end;
1538 }
Dr. Stephen Henson199772e2014-07-15 12:22:49 +01001539#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001540
Richard Levitteab69ac02016-02-03 00:47:42 +01001541#ifdef AF_UNIX
1542 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001543 BIO_printf(bio_err,
1544 "Can't use unix sockets and datagrams together\n");
1545 goto end;
1546 }
Richard Levitteab69ac02016-02-03 00:47:42 +01001547#endif
Dr. Stephen Henson2900fc82008-11-30 22:01:31 +00001548
Matt Caswell032c6d22015-09-22 11:23:33 +01001549 if (split_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
1550 BIO_printf(bio_err, "Bad split send fragment size\n");
1551 goto end;
1552 }
1553
1554 if (max_pipelines > SSL_MAX_PIPELINES) {
1555 BIO_printf(bio_err, "Bad max pipelines value\n");
1556 goto end;
1557 }
1558
Rich Salz7e1b7482015-04-24 15:26:15 -04001559 if (!app_passwd(passarg, dpassarg, &pass, &dpass)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001560 BIO_printf(bio_err, "Error getting password\n");
1561 goto end;
1562 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001563
Matt Caswell0f113f32015-01-22 03:40:55 +00001564 if (s_key_file == NULL)
1565 s_key_file = s_cert_file;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001566
Matt Caswell0f113f32015-01-22 03:40:55 +00001567 if (s_key_file2 == NULL)
1568 s_key_file2 = s_cert_file2;
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001569
Rich Salz7e1b7482015-04-24 15:26:15 -04001570 if (!load_excert(&exc))
Matt Caswell0f113f32015-01-22 03:40:55 +00001571 goto end;
Dr. Stephen Henson18d71582012-06-29 14:24:42 +00001572
Matt Caswell0f113f32015-01-22 03:40:55 +00001573 if (nocert == 0) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001574 s_key = load_key(s_key_file, s_key_format, 0, pass, e,
Matt Caswell0f113f32015-01-22 03:40:55 +00001575 "server certificate private key file");
1576 if (!s_key) {
1577 ERR_print_errors(bio_err);
1578 goto end;
1579 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001580
Rich Salz7e1b7482015-04-24 15:26:15 -04001581 s_cert = load_cert(s_cert_file, s_cert_format,
Rich Salza773b522016-02-13 22:33:56 -05001582 "server certificate file");
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001583
Matt Caswell0f113f32015-01-22 03:40:55 +00001584 if (!s_cert) {
1585 ERR_print_errors(bio_err);
1586 goto end;
1587 }
1588 if (s_chain_file) {
Rich Salza773b522016-02-13 22:33:56 -05001589 if (!load_certs(s_chain_file, &s_chain, FORMAT_PEM, NULL,
Viktor Dukhovni0996dc52016-01-16 00:08:38 -05001590 "server certificate chain"))
Matt Caswell0f113f32015-01-22 03:40:55 +00001591 goto end;
1592 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001593
Matt Caswell0f113f32015-01-22 03:40:55 +00001594 if (tlsextcbp.servername) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001595 s_key2 = load_key(s_key_file2, s_key_format, 0, pass, e,
Matt Caswell0f113f32015-01-22 03:40:55 +00001596 "second server certificate private key file");
1597 if (!s_key2) {
1598 ERR_print_errors(bio_err);
1599 goto end;
1600 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001601
Rich Salz7e1b7482015-04-24 15:26:15 -04001602 s_cert2 = load_cert(s_cert_file2, s_cert_format,
Rich Salza773b522016-02-13 22:33:56 -05001603 "second server certificate file");
Matt Caswell0f113f32015-01-22 03:40:55 +00001604
1605 if (!s_cert2) {
1606 ERR_print_errors(bio_err);
1607 goto end;
1608 }
1609 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001610 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001611#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00001612 if (next_proto_neg_in) {
1613 unsigned short len;
1614 next_proto.data = next_protos_parse(&len, next_proto_neg_in);
1615 if (next_proto.data == NULL)
1616 goto end;
1617 next_proto.len = len;
1618 } else {
1619 next_proto.data = NULL;
1620 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001621#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001622 alpn_ctx.data = NULL;
1623 if (alpn_in) {
1624 unsigned short len;
1625 alpn_ctx.data = next_protos_parse(&len, alpn_in);
1626 if (alpn_ctx.data == NULL)
1627 goto end;
1628 alpn_ctx.len = len;
1629 }
Dr. Stephen Hensondd251652012-07-03 16:37:50 +00001630
Matt Caswell0f113f32015-01-22 03:40:55 +00001631 if (crl_file) {
1632 X509_CRL *crl;
1633 crl = load_crl(crl_file, crl_format);
1634 if (!crl) {
1635 BIO_puts(bio_err, "Error loading CRL\n");
1636 ERR_print_errors(bio_err);
1637 goto end;
1638 }
1639 crls = sk_X509_CRL_new_null();
1640 if (!crls || !sk_X509_CRL_push(crls, crl)) {
1641 BIO_puts(bio_err, "Error adding CRL\n");
1642 ERR_print_errors(bio_err);
1643 X509_CRL_free(crl);
1644 goto end;
1645 }
1646 }
Dr. Stephen Hensonfdb78f32012-12-02 16:16:28 +00001647
Matt Caswell0f113f32015-01-22 03:40:55 +00001648 if (s_dcert_file) {
Bodo Möllered3883d2006-01-02 23:14:37 +00001649
Matt Caswell0f113f32015-01-22 03:40:55 +00001650 if (s_dkey_file == NULL)
1651 s_dkey_file = s_dcert_file;
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001652
Rich Salz7e1b7482015-04-24 15:26:15 -04001653 s_dkey = load_key(s_dkey_file, s_dkey_format,
Matt Caswell0f113f32015-01-22 03:40:55 +00001654 0, dpass, e, "second certificate private key file");
1655 if (!s_dkey) {
1656 ERR_print_errors(bio_err);
1657 goto end;
1658 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001659
Rich Salz7e1b7482015-04-24 15:26:15 -04001660 s_dcert = load_cert(s_dcert_file, s_dcert_format,
Rich Salza773b522016-02-13 22:33:56 -05001661 "second server certificate file");
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001662
Matt Caswell0f113f32015-01-22 03:40:55 +00001663 if (!s_dcert) {
1664 ERR_print_errors(bio_err);
1665 goto end;
1666 }
1667 if (s_dchain_file) {
Rich Salza773b522016-02-13 22:33:56 -05001668 if (!load_certs(s_dchain_file, &s_dchain, FORMAT_PEM, NULL,
Viktor Dukhovni0996dc52016-01-16 00:08:38 -05001669 "second server certificate chain"))
Matt Caswell0f113f32015-01-22 03:40:55 +00001670 goto end;
1671 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001672
Matt Caswell0f113f32015-01-22 03:40:55 +00001673 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001674
Rich Salz7e1b7482015-04-24 15:26:15 -04001675 if (!app_RAND_load_file(NULL, 1) && inrand == NULL
Matt Caswell0f113f32015-01-22 03:40:55 +00001676 && !RAND_status()) {
1677 BIO_printf(bio_err,
1678 "warning, not much extra random data, consider using the -rand option\n");
1679 }
1680 if (inrand != NULL)
1681 BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
1682 app_RAND_load_files(inrand));
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001683
Matt Caswell0f113f32015-01-22 03:40:55 +00001684 if (bio_s_out == NULL) {
1685 if (s_quiet && !s_debug) {
1686 bio_s_out = BIO_new(BIO_s_null());
1687 if (s_msg && !bio_s_msg)
Richard Levittea60994d2015-09-06 12:20:12 +02001688 bio_s_msg = dup_bio_out(FORMAT_TEXT);
Matt Caswell0f113f32015-01-22 03:40:55 +00001689 } else {
1690 if (bio_s_out == NULL)
Richard Levittea60994d2015-09-06 12:20:12 +02001691 bio_s_out = dup_bio_out(FORMAT_TEXT);
Matt Caswell0f113f32015-01-22 03:40:55 +00001692 }
1693 }
Rich Salz10bf4fc2015-03-10 19:09:27 -04001694#if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_EC)
Matt Caswell0f113f32015-01-22 03:40:55 +00001695 if (nocert)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001696#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001697 {
1698 s_cert_file = NULL;
1699 s_key_file = NULL;
1700 s_dcert_file = NULL;
1701 s_dkey_file = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001702 s_cert_file2 = NULL;
1703 s_key_file2 = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00001704 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001705
Matt Caswell0f113f32015-01-22 03:40:55 +00001706 ctx = SSL_CTX_new(meth);
Matt Caswell0f113f32015-01-22 03:40:55 +00001707 if (ctx == NULL) {
1708 ERR_print_errors(bio_err);
1709 goto end;
1710 }
A J Mohan Rao32eabe32016-02-09 10:55:42 -05001711 if (sdebug)
1712 ssl_ctx_security_debug(ctx, sdebug);
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001713 if (ssl_config) {
1714 if (SSL_CTX_config(ctx, ssl_config) == 0) {
1715 BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1716 ssl_config);
1717 ERR_print_errors(bio_err);
1718 goto end;
1719 }
1720 }
1721
Matt Caswell0f113f32015-01-22 03:40:55 +00001722 if (session_id_prefix) {
1723 if (strlen(session_id_prefix) >= 32)
1724 BIO_printf(bio_err,
1725 "warning: id_prefix is too long, only one new session will be possible\n");
1726 if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1727 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1728 ERR_print_errors(bio_err);
1729 goto end;
1730 }
1731 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1732 }
1733 SSL_CTX_set_quiet_shutdown(ctx, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00001734 if (exc)
1735 ssl_ctx_set_excert(ctx, exc);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001736
Matt Caswell0f113f32015-01-22 03:40:55 +00001737 if (state)
1738 SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1739 if (no_cache)
1740 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1741 else if (ext_cache)
1742 init_session_cache_ctx(ctx);
1743 else
1744 SSL_CTX_sess_set_cache_size(ctx, 128);
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00001745
Matt Caswell252d6d32015-07-22 17:50:51 +01001746 if (async) {
Matt Caswell7e25dd62015-02-13 23:33:12 +00001747 SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
Matt Caswell252d6d32015-07-22 17:50:51 +01001748 }
Matt Caswell032c6d22015-09-22 11:23:33 +01001749 if (split_send_fragment > 0) {
1750 SSL_CTX_set_split_send_fragment(ctx, split_send_fragment);
1751 }
1752 if (max_pipelines > 0) {
1753 SSL_CTX_set_max_pipelines(ctx, max_pipelines);
1754 }
Matt Caswell7e25dd62015-02-13 23:33:12 +00001755
Piotr Sikorae783bae2014-12-22 11:15:51 +00001756#ifndef OPENSSL_NO_SRTP
Matt Caswellac59d702015-03-06 14:39:46 +00001757 if (srtp_profiles != NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001758 /* Returns 0 on success! */
1759 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
Matt Caswellac59d702015-03-06 14:39:46 +00001760 BIO_printf(bio_err, "Error setting SRTP profile\n");
1761 ERR_print_errors(bio_err);
1762 goto end;
1763 }
1764 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00001765#endif
Ben Laurie333f9262011-11-15 22:59:20 +00001766
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001767 if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001768 ERR_print_errors(bio_err);
Rich Salz7e1b7482015-04-24 15:26:15 -04001769 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001770 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001771 if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1772 BIO_printf(bio_err, "Error setting verify params\n");
Matt Caswellac59d702015-03-06 14:39:46 +00001773 ERR_print_errors(bio_err);
1774 goto end;
1775 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001776
Matt Caswell0f113f32015-01-22 03:40:55 +00001777 ssl_ctx_add_crls(ctx, crls, 0);
Rich Salzdba31772016-02-14 00:17:59 -05001778 if (!config_ctx(cctx, ssl_args, ctx))
Matt Caswell0f113f32015-01-22 03:40:55 +00001779 goto end;
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001780
Matt Caswell0f113f32015-01-22 03:40:55 +00001781 if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1782 crls, crl_download)) {
1783 BIO_printf(bio_err, "Error loading store locations\n");
1784 ERR_print_errors(bio_err);
1785 goto end;
1786 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001787
Matt Caswell0f113f32015-01-22 03:40:55 +00001788 if (s_cert2) {
1789 ctx2 = SSL_CTX_new(meth);
1790 if (ctx2 == NULL) {
1791 ERR_print_errors(bio_err);
1792 goto end;
1793 }
1794 }
Bodo Möllered3883d2006-01-02 23:14:37 +00001795
Matt Caswell0f113f32015-01-22 03:40:55 +00001796 if (ctx2) {
1797 BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
Dr. Stephen Hensone03c5b52014-02-17 00:10:00 +00001798
Matt Caswell0f113f32015-01-22 03:40:55 +00001799 if (sdebug)
Rich Salzecf3a1f2015-04-29 11:27:08 -04001800 ssl_ctx_security_debug(ctx, sdebug);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001801
Matt Caswell0f113f32015-01-22 03:40:55 +00001802 if (session_id_prefix) {
1803 if (strlen(session_id_prefix) >= 32)
1804 BIO_printf(bio_err,
1805 "warning: id_prefix is too long, only one new session will be possible\n");
1806 if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1807 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1808 ERR_print_errors(bio_err);
1809 goto end;
1810 }
1811 BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1812 }
1813 SSL_CTX_set_quiet_shutdown(ctx2, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00001814 if (exc)
1815 ssl_ctx_set_excert(ctx2, exc);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001816
Matt Caswell0f113f32015-01-22 03:40:55 +00001817 if (state)
1818 SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001819
Matt Caswell0f113f32015-01-22 03:40:55 +00001820 if (no_cache)
1821 SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
1822 else if (ext_cache)
1823 init_session_cache_ctx(ctx2);
1824 else
1825 SSL_CTX_sess_set_cache_size(ctx2, 128);
Dr. Stephen Henson5d2e07f2012-11-17 14:42:22 +00001826
Matt Caswell7e25dd62015-02-13 23:33:12 +00001827 if (async)
Matt Caswellf4da39d2015-07-24 08:15:31 +01001828 SSL_CTX_set_mode(ctx2, SSL_MODE_ASYNC);
Matt Caswell7e25dd62015-02-13 23:33:12 +00001829
Matt Caswell0f113f32015-01-22 03:40:55 +00001830 if ((!SSL_CTX_load_verify_locations(ctx2, CAfile, CApath)) ||
1831 (!SSL_CTX_set_default_verify_paths(ctx2))) {
1832 ERR_print_errors(bio_err);
1833 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001834 if (vpmtouched && !SSL_CTX_set1_param(ctx2, vpm)) {
1835 BIO_printf(bio_err, "Error setting verify params\n");
Matt Caswellac59d702015-03-06 14:39:46 +00001836 ERR_print_errors(bio_err);
1837 goto end;
1838 }
Ben Laurieee2ffc22010-07-28 10:06:55 +00001839
Matt Caswell0f113f32015-01-22 03:40:55 +00001840 ssl_ctx_add_crls(ctx2, crls, 0);
Rich Salzdba31772016-02-14 00:17:59 -05001841 if (!config_ctx(cctx, ssl_args, ctx2))
Matt Caswell0f113f32015-01-22 03:40:55 +00001842 goto end;
1843 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001844#ifndef OPENSSL_NO_NEXTPROTONEG
Matt Caswell0f113f32015-01-22 03:40:55 +00001845 if (next_proto.data)
1846 SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
1847 &next_proto);
Matt Caswelle481f9b2015-05-15 10:49:56 +01001848#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001849 if (alpn_ctx.data)
1850 SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
Bodo Möllerb1277b92006-01-02 23:29:12 +00001851
Richard Levittecf1b7d92001-02-19 16:06:34 +00001852#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +00001853 if (!no_dhe) {
1854 DH *dh = NULL;
Bodo Möller15d52dd2000-11-02 10:35:10 +00001855
Matt Caswell0f113f32015-01-22 03:40:55 +00001856 if (dhfile)
1857 dh = load_dh_param(dhfile);
1858 else if (s_cert_file)
1859 dh = load_dh_param(s_cert_file);
Bodo Möller15d52dd2000-11-02 10:35:10 +00001860
Matt Caswell0f113f32015-01-22 03:40:55 +00001861 if (dh != NULL) {
1862 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1863 } else {
1864 BIO_printf(bio_s_out, "Using default temp DH parameters\n");
1865 }
1866 (void)BIO_flush(bio_s_out);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001867
Matt Caswell0f113f32015-01-22 03:40:55 +00001868 if (dh == NULL)
1869 SSL_CTX_set_dh_auto(ctx, 1);
1870 else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
1871 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1872 ERR_print_errors(bio_err);
1873 DH_free(dh);
1874 goto end;
1875 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001876
Matt Caswell0f113f32015-01-22 03:40:55 +00001877 if (ctx2) {
1878 if (!dhfile) {
1879 DH *dh2 = load_dh_param(s_cert_file2);
1880 if (dh2 != NULL) {
1881 BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1882 (void)BIO_flush(bio_s_out);
Bodo Möllered3883d2006-01-02 23:14:37 +00001883
Matt Caswell0f113f32015-01-22 03:40:55 +00001884 DH_free(dh);
1885 dh = dh2;
1886 }
1887 }
1888 if (dh == NULL)
1889 SSL_CTX_set_dh_auto(ctx2, 1);
1890 else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
1891 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1892 ERR_print_errors(bio_err);
1893 DH_free(dh);
1894 goto end;
1895 }
1896 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001897 DH_free(dh);
1898 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001899#endif
Bodo Möllerea262262002-08-09 08:56:08 +00001900
Matt Caswell0f113f32015-01-22 03:40:55 +00001901 if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
1902 goto end;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001903
Matt Caswell0f113f32015-01-22 03:40:55 +00001904 if (s_serverinfo_file != NULL
1905 && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
1906 ERR_print_errors(bio_err);
1907 goto end;
1908 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001909
Matt Caswell0f113f32015-01-22 03:40:55 +00001910 if (ctx2 && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
1911 goto end;
Matt Caswelle481f9b2015-05-15 10:49:56 +01001912
Matt Caswell0f113f32015-01-22 03:40:55 +00001913 if (s_dcert != NULL) {
1914 if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
1915 goto end;
1916 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001917
1918 if (no_resume_ephemeral) {
1919 SSL_CTX_set_not_resumable_session_callback(ctx,
1920 not_resumable_sess_cb);
Matt Caswelle481f9b2015-05-15 10:49:56 +01001921
Matt Caswell0f113f32015-01-22 03:40:55 +00001922 if (ctx2)
1923 SSL_CTX_set_not_resumable_session_callback(ctx2,
1924 not_resumable_sess_cb);
Matt Caswell0f113f32015-01-22 03:40:55 +00001925 }
Nils Larschddac1972006-03-10 23:06:27 +00001926#ifndef OPENSSL_NO_PSK
Flavio Medeirosb5292f72016-01-30 20:14:39 -05001927 if (psk_key != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001928 if (s_debug)
1929 BIO_printf(bio_s_out,
Rich Salzdba31772016-02-14 00:17:59 -05001930 "PSK key given, setting server callback\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00001931 SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
1932 }
Nils Larschddac1972006-03-10 23:06:27 +00001933
Matt Caswell0f113f32015-01-22 03:40:55 +00001934 if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
1935 BIO_printf(bio_err, "error setting PSK identity hint to context\n");
1936 ERR_print_errors(bio_err);
1937 goto end;
1938 }
Nils Larschddac1972006-03-10 23:06:27 +00001939#endif
1940
Matt Caswell0f113f32015-01-22 03:40:55 +00001941 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001942 if (!SSL_CTX_set_session_id_context(ctx,
Rich Salz7e1b7482015-04-24 15:26:15 -04001943 (void *)&s_server_session_id_context,
1944 sizeof s_server_session_id_context)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001945 BIO_printf(bio_err, "error setting session id context\n");
1946 ERR_print_errors(bio_err);
1947 goto end;
1948 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001949
Matt Caswell0f113f32015-01-22 03:40:55 +00001950 /* Set DTLS cookie generation and verification callbacks */
1951 SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
1952 SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
Dr. Stephen Henson07a9d1a2009-09-04 17:42:53 +00001953
Matt Caswell0f113f32015-01-22 03:40:55 +00001954 if (ctx2) {
1955 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001956 if (!SSL_CTX_set_session_id_context(ctx2,
Rich Salz7e1b7482015-04-24 15:26:15 -04001957 (void *)&s_server_session_id_context,
1958 sizeof s_server_session_id_context)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001959 BIO_printf(bio_err, "error setting session id context\n");
1960 ERR_print_errors(bio_err);
1961 goto end;
1962 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001963 tlsextcbp.biodebug = bio_s_out;
1964 SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
1965 SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
1966 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1967 SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1968 }
Bodo Möllerf1fd4542006-01-03 03:27:19 +00001969
Ben Laurieedc032b2011-03-12 17:01:19 +00001970#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00001971 if (srp_verifier_file != NULL) {
1972 srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
1973 srp_callback_parm.user = NULL;
1974 srp_callback_parm.login = NULL;
1975 if ((ret =
1976 SRP_VBASE_init(srp_callback_parm.vb,
1977 srp_verifier_file)) != SRP_NO_ERROR) {
1978 BIO_printf(bio_err,
1979 "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
1980 srp_verifier_file, ret);
1981 goto end;
1982 }
1983 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
1984 SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
1985 SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
1986 } else
Ben Laurieedc032b2011-03-12 17:01:19 +00001987#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001988 if (CAfile != NULL) {
1989 SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
Matt Caswelle481f9b2015-05-15 10:49:56 +01001990
Matt Caswell0f113f32015-01-22 03:40:55 +00001991 if (ctx2)
1992 SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
Matt Caswell0f113f32015-01-22 03:40:55 +00001993 }
Adam Eijdenbergbe0c0362015-07-29 21:34:35 -04001994 if (s_tlsextstatus) {
1995 SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
1996 SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
1997 if (ctx2) {
1998 SSL_CTX_set_tlsext_status_cb(ctx2, cert_status_cb);
1999 SSL_CTX_set_tlsext_status_arg(ctx2, &tlscstatp);
2000 }
2001 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002002
Matt Caswell0f113f32015-01-22 03:40:55 +00002003 BIO_printf(bio_s_out, "ACCEPT\n");
2004 (void)BIO_flush(bio_s_out);
2005 if (rev)
2006 server_cb = rev_body;
2007 else if (www)
2008 server_cb = www_body;
2009 else
2010 server_cb = sv_body;
Richard Levitteab69ac02016-02-03 00:47:42 +01002011#ifdef AF_UNIX
2012 if (socket_family == AF_UNIX
2013 && unlink_unix_path)
2014 unlink(host);
Dr. Stephen Henson9cd86ab2014-07-01 12:44:00 +01002015#endif
Richard Levitteab69ac02016-02-03 00:47:42 +01002016 do_server(&accept_socket, host, port, socket_family, socket_type,
2017 server_cb, context, naccept);
Matt Caswell0f113f32015-01-22 03:40:55 +00002018 print_stats(bio_s_out, ctx);
2019 ret = 0;
2020 end:
Rich Salz62adbce2015-04-11 10:22:36 -04002021 SSL_CTX_free(ctx);
Rich Salz222561f2015-04-30 17:33:59 -04002022 X509_free(s_cert);
2023 sk_X509_CRL_pop_free(crls, X509_CRL_free);
2024 X509_free(s_dcert);
Rich Salzc5ba2d92015-03-28 10:54:15 -04002025 EVP_PKEY_free(s_key);
2026 EVP_PKEY_free(s_dkey);
Rich Salz222561f2015-04-30 17:33:59 -04002027 sk_X509_pop_free(s_chain, X509_free);
2028 sk_X509_pop_free(s_dchain, X509_free);
Rich Salz25aaa982015-05-01 14:37:16 -04002029 OPENSSL_free(pass);
2030 OPENSSL_free(dpass);
Richard Levitteab69ac02016-02-03 00:47:42 +01002031 OPENSSL_free(host);
2032 OPENSSL_free(port);
Rich Salz222561f2015-04-30 17:33:59 -04002033 X509_VERIFY_PARAM_free(vpm);
Matt Caswell0f113f32015-01-22 03:40:55 +00002034 free_sessions();
Rich Salz25aaa982015-05-01 14:37:16 -04002035 OPENSSL_free(tlscstatp.host);
2036 OPENSSL_free(tlscstatp.port);
2037 OPENSSL_free(tlscstatp.path);
Rich Salz62adbce2015-04-11 10:22:36 -04002038 SSL_CTX_free(ctx2);
Rich Salz222561f2015-04-30 17:33:59 -04002039 X509_free(s_cert2);
Rich Salzc5ba2d92015-03-28 10:54:15 -04002040 EVP_PKEY_free(s_key2);
Rich Salzca3a82c2015-03-25 11:31:18 -04002041 BIO_free(serverinfo_in);
Matt Caswelle481f9b2015-05-15 10:49:56 +01002042#ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz25aaa982015-05-01 14:37:16 -04002043 OPENSSL_free(next_proto.data);
Bodo Möllered3883d2006-01-02 23:14:37 +00002044#endif
Matt Caswelle481f9b2015-05-15 10:49:56 +01002045 OPENSSL_free(alpn_ctx.data);
Matt Caswell0f113f32015-01-22 03:40:55 +00002046 ssl_excert_free(exc);
Rich Salz7e1b7482015-04-24 15:26:15 -04002047 sk_OPENSSL_STRING_free(ssl_args);
Rich Salz62adbce2015-04-11 10:22:36 -04002048 SSL_CONF_CTX_free(cctx);
Rich Salzca3a82c2015-03-25 11:31:18 -04002049 BIO_free(bio_s_out);
2050 bio_s_out = NULL;
2051 BIO_free(bio_s_msg);
2052 bio_s_msg = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -04002053 return (ret);
Matt Caswell0f113f32015-01-22 03:40:55 +00002054}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002055
Ulf Möller6b691a51999-04-19 21:31:43 +00002056static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
Matt Caswell0f113f32015-01-22 03:40:55 +00002057{
2058 BIO_printf(bio, "%4ld items in the session cache\n",
2059 SSL_CTX_sess_number(ssl_ctx));
2060 BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
2061 SSL_CTX_sess_connect(ssl_ctx));
2062 BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
2063 SSL_CTX_sess_connect_renegotiate(ssl_ctx));
2064 BIO_printf(bio, "%4ld client connects that finished\n",
2065 SSL_CTX_sess_connect_good(ssl_ctx));
2066 BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
2067 SSL_CTX_sess_accept(ssl_ctx));
2068 BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
2069 SSL_CTX_sess_accept_renegotiate(ssl_ctx));
2070 BIO_printf(bio, "%4ld server accepts that finished\n",
2071 SSL_CTX_sess_accept_good(ssl_ctx));
2072 BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
2073 BIO_printf(bio, "%4ld session cache misses\n",
2074 SSL_CTX_sess_misses(ssl_ctx));
2075 BIO_printf(bio, "%4ld session cache timeouts\n",
2076 SSL_CTX_sess_timeouts(ssl_ctx));
2077 BIO_printf(bio, "%4ld callback cache hits\n",
2078 SSL_CTX_sess_cb_hits(ssl_ctx));
2079 BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
2080 SSL_CTX_sess_cache_full(ssl_ctx),
2081 SSL_CTX_sess_get_cache_size(ssl_ctx));
2082}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002083
Rich Salza773b522016-02-13 22:33:56 -05002084static int sv_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00002085{
2086 char *buf = NULL;
2087 fd_set readfds;
2088 int ret = 1, width;
2089 int k, i;
2090 unsigned long l;
2091 SSL *con = NULL;
2092 BIO *sbio;
Matt Caswell0f113f32015-01-22 03:40:55 +00002093 struct timeval timeout;
Rich Salzb3178192014-12-17 17:24:51 -05002094#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002095 struct timeval tv;
Dr. Stephen Hensonba4526e2009-08-18 11:15:33 +00002096#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002097 struct timeval *timeoutp;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002098#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002099
Rich Salz68dc6822015-04-30 17:48:31 -04002100 buf = app_malloc(bufsize, "server buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00002101 if (s_nbio) {
Rich Salzba810812016-02-27 13:24:28 -05002102 if (!BIO_socket_nbio(s, 1))
Matt Caswell0f113f32015-01-22 03:40:55 +00002103 ERR_print_errors(bio_err);
Rich Salzba810812016-02-27 13:24:28 -05002104 else if (!s_quiet)
2105 BIO_printf(bio_err, "Turned on non blocking io\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002106 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002107
Matt Caswell0f113f32015-01-22 03:40:55 +00002108 if (con == NULL) {
2109 con = SSL_new(ctx);
Matt Caswelle481f9b2015-05-15 10:49:56 +01002110
Matt Caswell0f113f32015-01-22 03:40:55 +00002111 if (s_tlsextdebug) {
2112 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2113 SSL_set_tlsext_debug_arg(con, bio_s_out);
2114 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002115
Rich Salz7e1b7482015-04-24 15:26:15 -04002116 if (context
2117 && !SSL_set_session_id_context(con,
2118 context, strlen((char *)context))) {
Matt Caswellac59d702015-03-06 14:39:46 +00002119 BIO_printf(bio_err, "Error setting session id context\n");
2120 ret = -1;
2121 goto err;
2122 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002123 }
Viktor Dukhovni61986d32015-04-16 01:50:03 -04002124 if (!SSL_clear(con)) {
Matt Caswellac59d702015-03-06 14:39:46 +00002125 BIO_printf(bio_err, "Error clearing SSL connection\n");
2126 ret = -1;
2127 goto err;
2128 }
Ben Lauriea7a14a22015-12-16 13:25:07 +00002129#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00002130 if (stype == SOCK_DGRAM) {
Ben Laurie36d16f82005-04-26 16:02:40 +00002131
Matt Caswell0f113f32015-01-22 03:40:55 +00002132 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
Ben Laurie36d16f82005-04-26 16:02:40 +00002133
Matt Caswell0f113f32015-01-22 03:40:55 +00002134 if (enable_timeouts) {
2135 timeout.tv_sec = 0;
2136 timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2137 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
Ben Laurie36d16f82005-04-26 16:02:40 +00002138
Matt Caswell0f113f32015-01-22 03:40:55 +00002139 timeout.tv_sec = 0;
2140 timeout.tv_usec = DGRAM_SND_TIMEOUT;
2141 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2142 }
2143
2144 if (socket_mtu) {
2145 if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2146 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2147 DTLS_get_link_min_mtu(con));
2148 ret = -1;
2149 BIO_free(sbio);
2150 goto err;
2151 }
2152 SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2153 if (!DTLS_set_link_mtu(con, socket_mtu)) {
2154 BIO_printf(bio_err, "Failed to set MTU\n");
2155 ret = -1;
2156 BIO_free(sbio);
2157 goto err;
2158 }
2159 } else
2160 /* want to do MTU discovery */
2161 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
Ben Laurie36d16f82005-04-26 16:02:40 +00002162
2163 /* turn on cookie exchange */
2164 SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
Matt Caswell0f113f32015-01-22 03:40:55 +00002165 } else
Ben Lauriea7a14a22015-12-16 13:25:07 +00002166#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002167 sbio = BIO_new_socket(s, BIO_NOCLOSE);
Ben Laurie36d16f82005-04-26 16:02:40 +00002168
Matt Caswell0f113f32015-01-22 03:40:55 +00002169 if (s_nbio_test) {
2170 BIO *test;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002171
Matt Caswell0f113f32015-01-22 03:40:55 +00002172 test = BIO_new(BIO_f_nbio_test());
2173 sbio = BIO_push(test, sbio);
2174 }
Ben Laurie6caa4ed2008-10-26 18:40:52 +00002175
Matt Caswell0f113f32015-01-22 03:40:55 +00002176 SSL_set_bio(con, sbio, sbio);
2177 SSL_set_accept_state(con);
2178 /* SSL_set_fd(con,s); */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002179
Matt Caswell0f113f32015-01-22 03:40:55 +00002180 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002181 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2182 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2183 }
2184 if (s_msg) {
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002185#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00002186 if (s_msg == 2)
2187 SSL_set_msg_callback(con, SSL_trace);
2188 else
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002189#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002190 SSL_set_msg_callback(con, msg_cb);
2191 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2192 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002193
Matt Caswell0f113f32015-01-22 03:40:55 +00002194 if (s_tlsextdebug) {
2195 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2196 SSL_set_tlsext_debug_arg(con, bio_s_out);
2197 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002198
Matt Caswell0f113f32015-01-22 03:40:55 +00002199 width = s + 1;
2200 for (;;) {
2201 int read_from_terminal;
2202 int read_from_sslcon;
Bodo Möllera2a01582000-02-21 17:09:54 +00002203
Matt Caswell0f113f32015-01-22 03:40:55 +00002204 read_from_terminal = 0;
Matt Caswell64c07bd2015-09-16 22:54:54 +01002205 read_from_sslcon = SSL_pending(con)
2206 || (async && SSL_waiting_for_async(con));
Bodo Möllera2a01582000-02-21 17:09:54 +00002207
Matt Caswell0f113f32015-01-22 03:40:55 +00002208 if (!read_from_sslcon) {
2209 FD_ZERO(&readfds);
Rich Salzb3178192014-12-17 17:24:51 -05002210#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002211 openssl_fdset(fileno(stdin), &readfds);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002212#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002213 openssl_fdset(s, &readfds);
2214 /*
2215 * Note: under VMS with SOCKETSHR the second parameter is
2216 * currently of type (int *) whereas under other systems it is
2217 * (void *) if you don't have a cast it will choke the compiler:
2218 * if you do have a cast then you can either go for (int *) or
2219 * (void *).
2220 */
Richard Levitte4d8743f2003-11-28 13:10:58 +00002221#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002222 /*
2223 * Under DOS (non-djgpp) and Windows we can't select on stdin:
2224 * only on sockets. As a workaround we timeout the select every
2225 * second and check for any keypress. In a proper Windows
2226 * application we wouldn't do this because it is inefficient.
2227 */
2228 tv.tv_sec = 1;
2229 tv.tv_usec = 0;
2230 i = select(width, (void *)&readfds, NULL, NULL, &tv);
2231 if ((i < 0) || (!i && !_kbhit()))
2232 continue;
2233 if (_kbhit())
2234 read_from_terminal = 1;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002235#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002236 if ((SSL_version(con) == DTLS1_VERSION) &&
2237 DTLSv1_get_timeout(con, &timeout))
2238 timeoutp = &timeout;
2239 else
2240 timeoutp = NULL;
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002241
Matt Caswell0f113f32015-01-22 03:40:55 +00002242 i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002243
Matt Caswell0f113f32015-01-22 03:40:55 +00002244 if ((SSL_version(con) == DTLS1_VERSION)
2245 && DTLSv1_handle_timeout(con) > 0) {
2246 BIO_printf(bio_err, "TIMEOUT occurred\n");
2247 }
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002248
Matt Caswell0f113f32015-01-22 03:40:55 +00002249 if (i <= 0)
2250 continue;
2251 if (FD_ISSET(fileno(stdin), &readfds))
2252 read_from_terminal = 1;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002253#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002254 if (FD_ISSET(s, &readfds))
2255 read_from_sslcon = 1;
2256 }
2257 if (read_from_terminal) {
2258 if (s_crlf) {
2259 int j, lf_num;
Bodo Möller1bdb8631999-08-07 02:51:10 +00002260
Matt Caswell0f113f32015-01-22 03:40:55 +00002261 i = raw_read_stdin(buf, bufsize / 2);
2262 lf_num = 0;
2263 /* both loops are skipped when i <= 0 */
2264 for (j = 0; j < i; j++)
2265 if (buf[j] == '\n')
2266 lf_num++;
2267 for (j = i - 1; j >= 0; j--) {
2268 buf[j + lf_num] = buf[j];
2269 if (buf[j] == '\n') {
2270 lf_num--;
2271 i++;
2272 buf[j + lf_num] = '\r';
2273 }
2274 }
2275 assert(lf_num == 0);
2276 } else
2277 i = raw_read_stdin(buf, bufsize);
2278 if (!s_quiet && !s_brief) {
2279 if ((i <= 0) || (buf[0] == 'Q')) {
2280 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002281 (void)BIO_flush(bio_s_out);
Rich Salz8731a4f2016-03-02 16:12:46 -05002282 BIO_closesocket(s);
Matt Caswell0f113f32015-01-22 03:40:55 +00002283 close_accept_socket();
2284 ret = -11;
2285 goto err;
2286 }
2287 if ((i <= 0) || (buf[0] == 'q')) {
2288 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002289 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002290 if (SSL_version(con) != DTLS1_VERSION)
Rich Salz8731a4f2016-03-02 16:12:46 -05002291 BIO_closesocket(s);
Matt Caswell0f113f32015-01-22 03:40:55 +00002292 /*
2293 * close_accept_socket(); ret= -11;
2294 */
2295 goto err;
2296 }
Dr. Stephen Henson48175042011-12-31 22:59:57 +00002297#ifndef OPENSSL_NO_HEARTBEATS
Matt Caswell0f113f32015-01-22 03:40:55 +00002298 if ((buf[0] == 'B') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2299 BIO_printf(bio_err, "HEARTBEATING\n");
2300 SSL_heartbeat(con);
2301 i = 0;
2302 continue;
2303 }
Dr. Stephen Henson48175042011-12-31 22:59:57 +00002304#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002305 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2306 SSL_renegotiate(con);
2307 i = SSL_do_handshake(con);
2308 printf("SSL_do_handshake -> %d\n", i);
2309 i = 0; /* 13; */
2310 continue;
2311 /*
2312 * strcpy(buf,"server side RE-NEGOTIATE\n");
2313 */
2314 }
2315 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2316 SSL_set_verify(con,
2317 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2318 NULL);
2319 SSL_renegotiate(con);
2320 i = SSL_do_handshake(con);
2321 printf("SSL_do_handshake -> %d\n", i);
2322 i = 0; /* 13; */
2323 continue;
2324 /*
2325 * strcpy(buf,"server side RE-NEGOTIATE asking for client
2326 * cert\n");
2327 */
2328 }
2329 if (buf[0] == 'P') {
2330 static const char *str = "Lets print some clear text\n";
2331 BIO_write(SSL_get_wbio(con), str, strlen(str));
2332 }
2333 if (buf[0] == 'S') {
2334 print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2335 }
2336 }
Ulf Möllera53955d1999-06-04 21:35:58 +00002337#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002338 ebcdic2ascii(buf, buf, i);
Ulf Möllera53955d1999-06-04 21:35:58 +00002339#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002340 l = k = 0;
2341 for (;;) {
2342 /* should do a select for the write */
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002343#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00002344 {
2345 static count = 0;
2346 if (++count == 100) {
2347 count = 0;
2348 SSL_renegotiate(con);
2349 }
2350 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002351#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002352 k = SSL_write(con, &(buf[l]), (unsigned int)i);
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002353#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00002354 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2355 BIO_printf(bio_s_out, "LOOKUP renego during write\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002356 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell0f113f32015-01-22 03:40:55 +00002357 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002358 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2359 srp_callback_parm.login);
Matt Caswell0f113f32015-01-22 03:40:55 +00002360 if (srp_callback_parm.user)
2361 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2362 srp_callback_parm.user->info);
2363 else
2364 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2365 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2366 }
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002367#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002368 switch (SSL_get_error(con, k)) {
2369 case SSL_ERROR_NONE:
2370 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002371 case SSL_ERROR_WANT_ASYNC:
2372 BIO_printf(bio_s_out, "Write BLOCK (Async)\n");
Matt Caswellf4da39d2015-07-24 08:15:31 +01002373 wait_for_async(con);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002374 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002375 case SSL_ERROR_WANT_WRITE:
2376 case SSL_ERROR_WANT_READ:
2377 case SSL_ERROR_WANT_X509_LOOKUP:
2378 BIO_printf(bio_s_out, "Write BLOCK\n");
2379 break;
2380 case SSL_ERROR_SYSCALL:
2381 case SSL_ERROR_SSL:
2382 BIO_printf(bio_s_out, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002383 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002384 ERR_print_errors(bio_err);
2385 ret = 1;
2386 goto err;
2387 /* break; */
2388 case SSL_ERROR_ZERO_RETURN:
2389 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002390 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002391 ret = 1;
2392 goto err;
2393 }
Robert Swiecki00d565c2015-05-18 19:08:02 -04002394 if (k > 0) {
2395 l += k;
2396 i -= k;
2397 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002398 if (i <= 0)
2399 break;
2400 }
2401 }
2402 if (read_from_sslcon) {
Matt Caswell64c07bd2015-09-16 22:54:54 +01002403 /*
2404 * init_ssl_connection handles all async events itself so if we're
2405 * waiting for async then we shouldn't go back into
2406 * init_ssl_connection
2407 */
2408 if ((!async || !SSL_waiting_for_async(con))
2409 && !SSL_is_init_finished(con)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002410 i = init_ssl_connection(con);
2411
2412 if (i < 0) {
2413 ret = 0;
2414 goto err;
2415 } else if (i == 0) {
2416 ret = 1;
2417 goto err;
2418 }
2419 } else {
2420 again:
2421 i = SSL_read(con, (char *)buf, bufsize);
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002422#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +00002423 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2424 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002425 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell0f113f32015-01-22 03:40:55 +00002426 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002427 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2428 srp_callback_parm.login);
Matt Caswell0f113f32015-01-22 03:40:55 +00002429 if (srp_callback_parm.user)
2430 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2431 srp_callback_parm.user->info);
2432 else
2433 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2434 i = SSL_read(con, (char *)buf, bufsize);
2435 }
Dr. Stephen Henson9641be22012-02-10 19:43:14 +00002436#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002437 switch (SSL_get_error(con, i)) {
2438 case SSL_ERROR_NONE:
Ulf Möllera53955d1999-06-04 21:35:58 +00002439#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002440 ascii2ebcdic(buf, buf, i);
Ulf Möllera53955d1999-06-04 21:35:58 +00002441#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002442 raw_write_stdout(buf, (unsigned int)i);
2443 if (SSL_pending(con))
2444 goto again;
2445 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002446 case SSL_ERROR_WANT_ASYNC:
Matt Caswellf4da39d2015-07-24 08:15:31 +01002447 BIO_printf(bio_s_out, "Read BLOCK (Async)\n");
2448 wait_for_async(con);
2449 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002450 case SSL_ERROR_WANT_WRITE:
2451 case SSL_ERROR_WANT_READ:
2452 BIO_printf(bio_s_out, "Read BLOCK\n");
2453 break;
2454 case SSL_ERROR_SYSCALL:
2455 case SSL_ERROR_SSL:
2456 BIO_printf(bio_s_out, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002457 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002458 ERR_print_errors(bio_err);
2459 ret = 1;
2460 goto err;
2461 case SSL_ERROR_ZERO_RETURN:
2462 BIO_printf(bio_s_out, "DONE\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002463 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002464 ret = 1;
2465 goto err;
2466 }
2467 }
2468 }
2469 }
2470 err:
2471 if (con != NULL) {
2472 BIO_printf(bio_s_out, "shutting down SSL\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002473 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Matt Caswell0f113f32015-01-22 03:40:55 +00002474 SSL_free(con);
2475 }
2476 BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
Rich Salz4b45c6e2015-04-30 17:57:32 -04002477 OPENSSL_clear_free(buf, bufsize);
Matt Caswell0f113f32015-01-22 03:40:55 +00002478 if (ret >= 0)
2479 BIO_printf(bio_s_out, "ACCEPT\n");
Rich Salzc54cc2b2015-04-25 09:26:48 -04002480 (void)BIO_flush(bio_s_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002481 return (ret);
2482}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002483
Ulf Möller6b691a51999-04-19 21:31:43 +00002484static void close_accept_socket(void)
Matt Caswell0f113f32015-01-22 03:40:55 +00002485{
2486 BIO_printf(bio_err, "shutdown accept socket\n");
2487 if (accept_socket >= 0) {
Rich Salz8731a4f2016-03-02 16:12:46 -05002488 BIO_closesocket(accept_socket);
Matt Caswell0f113f32015-01-22 03:40:55 +00002489 }
2490}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002491
Ulf Möller6b691a51999-04-19 21:31:43 +00002492static int init_ssl_connection(SSL *con)
Matt Caswell0f113f32015-01-22 03:40:55 +00002493{
2494 int i;
2495 const char *str;
2496 X509 *peer;
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002497 long verify_err;
Rich Salz68b00c22015-01-23 11:58:26 -05002498 char buf[BUFSIZ];
Matt Caswelle481f9b2015-05-15 10:49:56 +01002499#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00002500 const unsigned char *next_proto_neg;
2501 unsigned next_proto_neg_len;
Ben Laurieee2ffc22010-07-28 10:06:55 +00002502#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002503 unsigned char *exportedkeymat;
Ben Lauriee0af0402011-11-15 23:50:52 +00002504
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +01002505#ifndef OPENSSL_NO_DTLS
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002506 if(dtlslisten) {
Richard Levitted858c872016-02-03 00:27:44 +01002507 BIO_ADDR *client = NULL;
2508
2509 if ((client = BIO_ADDR_new()) == NULL) {
2510 BIO_printf(bio_err, "ERROR - memory\n");
2511 return 0;
2512 }
Matt Caswell3edeb622016-02-05 10:59:42 +00002513 i = DTLSv1_listen(con, client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002514 if (i > 0) {
2515 BIO *wbio;
Emilia Kasper3a796182015-09-23 19:57:42 +02002516 int fd = -1;
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002517
2518 wbio = SSL_get_wbio(con);
2519 if(wbio) {
2520 BIO_get_fd(wbio, &fd);
2521 }
2522
Richard Levitted858c872016-02-03 00:27:44 +01002523 if(!wbio || BIO_connect(fd, client, 0) == 0) {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002524 BIO_printf(bio_err, "ERROR - unable to connect\n");
Richard Levitted858c872016-02-03 00:27:44 +01002525 BIO_ADDR_free(client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002526 return 0;
2527 }
Richard Levitted858c872016-02-03 00:27:44 +01002528 BIO_ADDR_free(client);
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002529 dtlslisten = 0;
2530 i = SSL_accept(con);
2531 }
2532 } else
2533#endif
Matt Caswell7e25dd62015-02-13 23:33:12 +00002534
2535 do {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002536 i = SSL_accept(con);
2537
Dr. Stephen Henson33233142014-01-26 00:51:09 +00002538#ifdef CERT_CB_TEST_RETRY
Matt Caswell7e25dd62015-02-13 23:33:12 +00002539 {
2540 while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
2541 && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) {
2542 BIO_printf(bio_err,
Rich Salz7768e112015-06-04 14:26:55 -04002543 "LOOKUP from certificate callback during accept\n");
Matt Caswell7e25dd62015-02-13 23:33:12 +00002544 i = SSL_accept(con);
2545 }
2546 }
2547#endif
2548
2549#ifndef OPENSSL_NO_SRP
2550 while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2551 BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2552 srp_callback_parm.login);
Emilia Kasper380f18e2016-02-24 12:59:59 +01002553 SRP_user_pwd_free(srp_callback_parm.user);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002554 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002555 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2556 srp_callback_parm.login);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002557 if (srp_callback_parm.user)
2558 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2559 srp_callback_parm.user->info);
2560 else
2561 BIO_printf(bio_s_out, "LOOKUP not successful\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002562 i = SSL_accept(con);
2563 }
Dr. Stephen Henson33233142014-01-26 00:51:09 +00002564#endif
Matt Caswell7e25dd62015-02-13 23:33:12 +00002565 } while (i < 0 && SSL_waiting_for_async(con));
Scott Deboy67c408c2013-08-01 11:54:09 -07002566
Matt Caswell0f113f32015-01-22 03:40:55 +00002567 if (i <= 0) {
Matt Caswellfd4e98e2015-04-09 10:01:05 +01002568 if ((dtlslisten && i == 0)
2569 || (!dtlslisten && BIO_sock_should_retry(i))) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002570 BIO_printf(bio_s_out, "DELAY\n");
2571 return (1);
2572 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002573
Matt Caswell0f113f32015-01-22 03:40:55 +00002574 BIO_printf(bio_err, "ERROR\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002575
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002576 verify_err = SSL_get_verify_result(con);
2577 if (verify_err != X509_V_OK) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002578 BIO_printf(bio_err, "verify error:%s\n",
Ben Lauriedf2ee0e2015-09-05 13:32:58 +01002579 X509_verify_cert_error_string(verify_err));
Matt Caswell0f113f32015-01-22 03:40:55 +00002580 }
2581 /* Always print any error messages */
2582 ERR_print_errors(bio_err);
2583 return (0);
2584 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002585
Matt Caswell0f113f32015-01-22 03:40:55 +00002586 if (s_brief)
Rich Salzecf3a1f2015-04-29 11:27:08 -04002587 print_ssl_summary(con);
Dr. Stephen Henson2a7cbe72012-09-12 23:14:28 +00002588
Matt Caswell0f113f32015-01-22 03:40:55 +00002589 PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002590
Matt Caswell0f113f32015-01-22 03:40:55 +00002591 peer = SSL_get_peer_certificate(con);
2592 if (peer != NULL) {
2593 BIO_printf(bio_s_out, "Client certificate\n");
2594 PEM_write_bio_X509(bio_s_out, peer);
2595 X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2596 BIO_printf(bio_s_out, "subject=%s\n", buf);
2597 X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2598 BIO_printf(bio_s_out, "issuer=%s\n", buf);
2599 X509_free(peer);
2600 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002601
Matt Caswell0f113f32015-01-22 03:40:55 +00002602 if (SSL_get_shared_ciphers(con, buf, sizeof buf) != NULL)
2603 BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2604 str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2605 ssl_print_sigalgs(bio_s_out, con);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002606#ifndef OPENSSL_NO_EC
Matt Caswell0f113f32015-01-22 03:40:55 +00002607 ssl_print_point_formats(bio_s_out, con);
2608 ssl_print_curves(bio_s_out, con, 0);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002609#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002610 BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
Dr. Stephen Hensone7f8ff42012-03-06 14:28:21 +00002611
Matt Caswelle481f9b2015-05-15 10:49:56 +01002612#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00002613 SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2614 if (next_proto_neg) {
2615 BIO_printf(bio_s_out, "NEXTPROTO is ");
2616 BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2617 BIO_printf(bio_s_out, "\n");
2618 }
Ben Laurieee2ffc22010-07-28 10:06:55 +00002619#endif
Piotr Sikorae783bae2014-12-22 11:15:51 +00002620#ifndef OPENSSL_NO_SRTP
Matt Caswell0f113f32015-01-22 03:40:55 +00002621 {
2622 SRTP_PROTECTION_PROFILE *srtp_profile
2623 = SSL_get_selected_srtp_profile(con);
Ben Laurie333f9262011-11-15 22:59:20 +00002624
Matt Caswell0f113f32015-01-22 03:40:55 +00002625 if (srtp_profile)
2626 BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2627 srtp_profile->name);
2628 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00002629#endif
Dr. Stephen Hensonb577fd02016-02-08 16:18:26 +00002630 if (SSL_session_reused(con))
Matt Caswell0f113f32015-01-22 03:40:55 +00002631 BIO_printf(bio_s_out, "Reused session-id\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002632 BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2633 SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
2634 if (keymatexportlabel != NULL) {
2635 BIO_printf(bio_s_out, "Keying material exporter:\n");
2636 BIO_printf(bio_s_out, " Label: '%s'\n", keymatexportlabel);
2637 BIO_printf(bio_s_out, " Length: %i bytes\n", keymatexportlen);
Rich Salz68dc6822015-04-30 17:48:31 -04002638 exportedkeymat = app_malloc(keymatexportlen, "export key");
2639 if (!SSL_export_keying_material(con, exportedkeymat,
2640 keymatexportlen,
2641 keymatexportlabel,
2642 strlen(keymatexportlabel),
2643 NULL, 0, 0)) {
2644 BIO_printf(bio_s_out, " Error\n");
2645 } else {
2646 BIO_printf(bio_s_out, " Keying material: ");
2647 for (i = 0; i < keymatexportlen; i++)
2648 BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2649 BIO_printf(bio_s_out, "\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002650 }
Rich Salz68dc6822015-04-30 17:48:31 -04002651 OPENSSL_free(exportedkeymat);
Matt Caswell0f113f32015-01-22 03:40:55 +00002652 }
Ben Lauriee0af0402011-11-15 23:50:52 +00002653
Matt Caswell0f113f32015-01-22 03:40:55 +00002654 return (1);
2655}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002656
Richard Levittecf1b7d92001-02-19 16:06:34 +00002657#ifndef OPENSSL_NO_DH
Nils Larscheb3eab22005-04-07 22:48:33 +00002658static DH *load_dh_param(const char *dhfile)
Matt Caswell0f113f32015-01-22 03:40:55 +00002659{
2660 DH *ret = NULL;
2661 BIO *bio;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002662
Matt Caswell0f113f32015-01-22 03:40:55 +00002663 if ((bio = BIO_new_file(dhfile, "r")) == NULL)
2664 goto err;
2665 ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2666 err:
Rich Salzca3a82c2015-03-25 11:31:18 -04002667 BIO_free(bio);
Matt Caswell0f113f32015-01-22 03:40:55 +00002668 return (ret);
2669}
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002670#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002671
Rich Salza773b522016-02-13 22:33:56 -05002672static int www_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00002673{
2674 char *buf = NULL;
2675 int ret = 1;
2676 int i, j, k, dot;
2677 SSL *con;
2678 const SSL_CIPHER *c;
2679 BIO *io, *ssl_bio, *sbio;
Rich Salz7e1b7482015-04-24 15:26:15 -04002680#ifdef RENEG
2681 int total_bytes = 0;
2682#endif
Matt Caswell075c8792015-09-11 13:11:37 +01002683 int width;
2684 fd_set readfds;
2685
2686 /* Set width for a select call if needed */
2687 width = s + 1;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002688
Rich Salz68dc6822015-04-30 17:48:31 -04002689 buf = app_malloc(bufsize, "server www buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00002690 io = BIO_new(BIO_f_buffer());
2691 ssl_bio = BIO_new(BIO_f_ssl());
2692 if ((io == NULL) || (ssl_bio == NULL))
2693 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002694
Matt Caswell0f113f32015-01-22 03:40:55 +00002695 if (s_nbio) {
Rich Salzba810812016-02-27 13:24:28 -05002696 if (!BIO_socket_nbio(s, 1))
Matt Caswell0f113f32015-01-22 03:40:55 +00002697 ERR_print_errors(bio_err);
Rich Salzba810812016-02-27 13:24:28 -05002698 else if (!s_quiet)
2699 BIO_printf(bio_err, "Turned on non blocking io\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002700 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002701
Matt Caswell0f113f32015-01-22 03:40:55 +00002702 /* lets make the output buffer a reasonable size */
2703 if (!BIO_set_write_buffer_size(io, bufsize))
2704 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002705
Matt Caswell0f113f32015-01-22 03:40:55 +00002706 if ((con = SSL_new(ctx)) == NULL)
2707 goto err;
Matt Caswelle481f9b2015-05-15 10:49:56 +01002708
Matt Caswell0f113f32015-01-22 03:40:55 +00002709 if (s_tlsextdebug) {
2710 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2711 SSL_set_tlsext_debug_arg(con, bio_s_out);
2712 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002713
Matt Caswellac59d702015-03-06 14:39:46 +00002714 if (context && !SSL_set_session_id_context(con, context,
Rich Salz7e1b7482015-04-24 15:26:15 -04002715 strlen((char *)context)))
Matt Caswellac59d702015-03-06 14:39:46 +00002716 goto err;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002717
Matt Caswell0f113f32015-01-22 03:40:55 +00002718 sbio = BIO_new_socket(s, BIO_NOCLOSE);
2719 if (s_nbio_test) {
2720 BIO *test;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002721
Matt Caswell0f113f32015-01-22 03:40:55 +00002722 test = BIO_new(BIO_f_nbio_test());
2723 sbio = BIO_push(test, sbio);
2724 }
2725 SSL_set_bio(con, sbio, sbio);
2726 SSL_set_accept_state(con);
Ben Laurie71fa4512012-06-03 22:00:21 +00002727
Matt Caswell0f113f32015-01-22 03:40:55 +00002728 /* SSL_set_fd(con,s); */
2729 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
2730 BIO_push(io, ssl_bio);
Ulf Möllera53955d1999-06-04 21:35:58 +00002731#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002732 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
Ulf Möllera53955d1999-06-04 21:35:58 +00002733#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002734
Matt Caswell0f113f32015-01-22 03:40:55 +00002735 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002736 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2737 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2738 }
2739 if (s_msg) {
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002740#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00002741 if (s_msg == 2)
2742 SSL_set_msg_callback(con, SSL_trace);
2743 else
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002744#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002745 SSL_set_msg_callback(con, msg_cb);
2746 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2747 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002748
Matt Caswell0f113f32015-01-22 03:40:55 +00002749 for (;;) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002750 i = BIO_gets(io, buf, bufsize - 1);
2751 if (i < 0) { /* error */
Matt Caswell4cfa6202015-03-27 15:20:24 +00002752 if (!BIO_should_retry(io) && !SSL_waiting_for_async(con)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002753 if (!s_quiet)
2754 ERR_print_errors(bio_err);
2755 goto err;
2756 } else {
2757 BIO_printf(bio_s_out, "read R BLOCK\n");
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002758#ifndef OPENSSL_NO_SRP
2759 if (BIO_should_io_special(io)
2760 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
2761 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01002762 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002763 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01002764 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
2765 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01002766 if (srp_callback_parm.user)
2767 BIO_printf(bio_s_out, "LOOKUP done %s\n",
2768 srp_callback_parm.user->info);
2769 else
2770 BIO_printf(bio_s_out, "LOOKUP not successful\n");
2771 continue;
2772 }
2773#endif
Richard Levitte4d8743f2003-11-28 13:10:58 +00002774#if defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00002775 delay(1000);
Rich Salzf642ebc2014-08-09 08:02:20 -04002776#elif !defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002777 sleep(1);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002778#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002779 continue;
2780 }
2781 } else if (i == 0) { /* end of input */
2782 ret = 1;
2783 goto end;
2784 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002785
Matt Caswell0f113f32015-01-22 03:40:55 +00002786 /* else we have data */
2787 if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
Dmitry-Me0b142f02014-06-01 21:30:52 +04002788 ((www == 2) && (strncmp("GET /stats ", buf, 11) == 0))) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002789 char *p;
2790 X509 *peer;
2791 STACK_OF(SSL_CIPHER) *sk;
2792 static const char *space = " ";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002793
Matt Caswell0f113f32015-01-22 03:40:55 +00002794 if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
2795 if (strncmp("GET /renegcert", buf, 14) == 0)
2796 SSL_set_verify(con,
2797 SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2798 NULL);
2799 i = SSL_renegotiate(con);
2800 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
Matt Caswell075c8792015-09-11 13:11:37 +01002801 /* Send the HelloRequest */
Matt Caswell0f113f32015-01-22 03:40:55 +00002802 i = SSL_do_handshake(con);
2803 if (i <= 0) {
2804 BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
2805 SSL_get_error(con, i));
2806 ERR_print_errors(bio_err);
2807 goto err;
2808 }
Matt Caswell075c8792015-09-11 13:11:37 +01002809 /* Wait for a ClientHello to come back */
2810 FD_ZERO(&readfds);
2811 openssl_fdset(s, &readfds);
2812 i = select(width, (void *)&readfds, NULL, NULL, NULL);
2813 if (i <= 0 || !FD_ISSET(s, &readfds)) {
2814 BIO_printf(bio_s_out, "Error waiting for client response\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002815 ERR_print_errors(bio_err);
2816 goto err;
2817 }
Matt Caswell075c8792015-09-11 13:11:37 +01002818 /*
2819 * We're not acutally expecting any data here and we ignore
2820 * any that is sent. This is just to force the handshake that
2821 * we're expecting to come from the client. If they haven't
2822 * sent one there's not much we can do.
2823 */
2824 BIO_gets(io, buf, bufsize - 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00002825 }
Dr. Stephen Henson08c23972010-01-28 19:48:36 +00002826
Matt Caswell0f113f32015-01-22 03:40:55 +00002827 BIO_puts(io,
2828 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2829 BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
2830 BIO_puts(io, "<pre>\n");
Rich Salzb0700d22015-10-27 15:11:48 -04002831/* BIO_puts(io,OpenSSL_version(OPENSSL_VERSION));*/
Matt Caswell0f113f32015-01-22 03:40:55 +00002832 BIO_puts(io, "\n");
2833 for (i = 0; i < local_argc; i++) {
Rich Salzf92beb92015-04-25 16:06:19 -04002834 const char *myp;
2835 for (myp = local_argv[i]; *myp; myp++)
2836 switch (*myp) {
2837 case '<':
2838 BIO_puts(io, "&lt;");
2839 break;
2840 case '>':
2841 BIO_puts(io, "&gt;");
2842 break;
2843 case '&':
2844 BIO_puts(io, "&amp;");
2845 break;
2846 default:
2847 BIO_write(io, myp, 1);
2848 break;
2849 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002850 BIO_write(io, " ", 1);
2851 }
2852 BIO_puts(io, "\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002853
Matt Caswell0f113f32015-01-22 03:40:55 +00002854 BIO_printf(io,
2855 "Secure Renegotiation IS%s supported\n",
2856 SSL_get_secure_renegotiation_support(con) ?
2857 "" : " NOT");
Dr. Stephen Henson08c23972010-01-28 19:48:36 +00002858
Matt Caswell0f113f32015-01-22 03:40:55 +00002859 /*
2860 * The following is evil and should not really be done
2861 */
2862 BIO_printf(io, "Ciphers supported in s_server binary\n");
2863 sk = SSL_get_ciphers(con);
2864 j = sk_SSL_CIPHER_num(sk);
2865 for (i = 0; i < j; i++) {
2866 c = sk_SSL_CIPHER_value(sk, i);
Rich Salz7e1b7482015-04-24 15:26:15 -04002867 BIO_printf(io, "%-11s:%-25s ",
Matt Caswell0f113f32015-01-22 03:40:55 +00002868 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2869 if ((((i + 1) % 2) == 0) && (i + 1 != j))
2870 BIO_puts(io, "\n");
2871 }
2872 BIO_puts(io, "\n");
2873 p = SSL_get_shared_ciphers(con, buf, bufsize);
2874 if (p != NULL) {
2875 BIO_printf(io,
2876 "---\nCiphers common between both SSL end points:\n");
2877 j = i = 0;
2878 while (*p) {
2879 if (*p == ':') {
2880 BIO_write(io, space, 26 - j);
2881 i++;
2882 j = 0;
2883 BIO_write(io, ((i % 3) ? " " : "\n"), 1);
2884 } else {
2885 BIO_write(io, p, 1);
2886 j++;
2887 }
2888 p++;
2889 }
2890 BIO_puts(io, "\n");
2891 }
2892 ssl_print_sigalgs(io, con);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002893#ifndef OPENSSL_NO_EC
Matt Caswell0f113f32015-01-22 03:40:55 +00002894 ssl_print_curves(io, con, 0);
Dr. Stephen Henson14536c82013-08-17 17:40:08 +01002895#endif
Dr. Stephen Hensonb577fd02016-02-08 16:18:26 +00002896 BIO_printf(io, (SSL_session_reused(con)
Matt Caswell0f113f32015-01-22 03:40:55 +00002897 ? "---\nReused, " : "---\nNew, "));
2898 c = SSL_get_current_cipher(con);
2899 BIO_printf(io, "%s, Cipher is %s\n",
2900 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2901 SSL_SESSION_print(io, SSL_get_session(con));
2902 BIO_printf(io, "---\n");
2903 print_stats(io, SSL_get_SSL_CTX(con));
2904 BIO_printf(io, "---\n");
2905 peer = SSL_get_peer_certificate(con);
2906 if (peer != NULL) {
2907 BIO_printf(io, "Client certificate\n");
2908 X509_print(io, peer);
2909 PEM_write_bio_X509(io, peer);
2910 } else
2911 BIO_puts(io, "no client certificate available\n");
2912 BIO_puts(io, "</BODY></HTML>\r\n\r\n");
2913 break;
2914 } else if ((www == 2 || www == 3)
2915 && (strncmp("GET /", buf, 5) == 0)) {
2916 BIO *file;
2917 char *p, *e;
2918 static const char *text =
2919 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002920
Matt Caswell0f113f32015-01-22 03:40:55 +00002921 /* skip the '/' */
2922 p = &(buf[5]);
Bodo Möller5d3ab9b2001-03-30 10:47:21 +00002923
Matt Caswell0f113f32015-01-22 03:40:55 +00002924 dot = 1;
2925 for (e = p; *e != '\0'; e++) {
2926 if (e[0] == ' ')
2927 break;
Bodo Möller5d3ab9b2001-03-30 10:47:21 +00002928
Matt Caswell0f113f32015-01-22 03:40:55 +00002929 switch (dot) {
2930 case 1:
2931 dot = (e[0] == '.') ? 2 : 0;
2932 break;
2933 case 2:
2934 dot = (e[0] == '.') ? 3 : 0;
2935 break;
2936 case 3:
2937 dot = (e[0] == '/') ? -1 : 0;
2938 break;
2939 }
2940 if (dot == 0)
2941 dot = (e[0] == '/') ? 1 : 0;
2942 }
2943 dot = (dot == 3) || (dot == -1); /* filename contains ".."
2944 * component */
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002945
Matt Caswell0f113f32015-01-22 03:40:55 +00002946 if (*e == '\0') {
2947 BIO_puts(io, text);
2948 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
2949 break;
2950 }
2951 *e = '\0';
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002952
Matt Caswell0f113f32015-01-22 03:40:55 +00002953 if (dot) {
2954 BIO_puts(io, text);
2955 BIO_printf(io, "'%s' contains '..' reference\r\n", p);
2956 break;
2957 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002958
Matt Caswell0f113f32015-01-22 03:40:55 +00002959 if (*p == '/') {
2960 BIO_puts(io, text);
2961 BIO_printf(io, "'%s' is an invalid path\r\n", p);
2962 break;
2963 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002964
Matt Caswell0f113f32015-01-22 03:40:55 +00002965 /* if a directory, do the index thang */
2966 if (app_isdir(p) > 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002967 BIO_puts(io, text);
2968 BIO_printf(io, "'%s' is a directory\r\n", p);
2969 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002970 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002971
Matt Caswell0f113f32015-01-22 03:40:55 +00002972 if ((file = BIO_new_file(p, "r")) == NULL) {
2973 BIO_puts(io, text);
2974 BIO_printf(io, "Error opening '%s'\r\n", p);
2975 ERR_print_errors(io);
2976 break;
2977 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002978
Matt Caswell0f113f32015-01-22 03:40:55 +00002979 if (!s_quiet)
2980 BIO_printf(bio_err, "FILE:%s\n", p);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002981
Matt Caswell0f113f32015-01-22 03:40:55 +00002982 if (www == 2) {
2983 i = strlen(p);
2984 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
2985 ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
2986 ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
2987 BIO_puts(io,
2988 "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2989 else
2990 BIO_puts(io,
2991 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
2992 }
2993 /* send the file */
2994 for (;;) {
2995 i = BIO_read(file, buf, bufsize);
2996 if (i <= 0)
2997 break;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002998
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +00002999#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00003000 total_bytes += i;
Rich Salz7768e112015-06-04 14:26:55 -04003001 BIO_printf(bio_err, "%d\n", i);
Matt Caswell0f113f32015-01-22 03:40:55 +00003002 if (total_bytes > 3 * 1024) {
3003 total_bytes = 0;
Rich Salz7768e112015-06-04 14:26:55 -04003004 BIO_printf(bio_err, "RENEGOTIATE\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00003005 SSL_renegotiate(con);
3006 }
Ralf S. Engelschalldfeab061998-12-21 11:00:56 +00003007#endif
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00003008
Matt Caswell0f113f32015-01-22 03:40:55 +00003009 for (j = 0; j < i;) {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00003010#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00003011 {
3012 static count = 0;
3013 if (++count == 13) {
3014 SSL_renegotiate(con);
3015 }
3016 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00003017#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003018 k = BIO_write(io, &(buf[j]), i - j);
3019 if (k <= 0) {
Matt Caswell4cfa6202015-03-27 15:20:24 +00003020 if (!BIO_should_retry(io) && !SSL_waiting_for_async(con))
Matt Caswell0f113f32015-01-22 03:40:55 +00003021 goto write_error;
3022 else {
3023 BIO_printf(bio_s_out, "rwrite W BLOCK\n");
3024 }
3025 } else {
3026 j += k;
3027 }
3028 }
3029 }
3030 write_error:
3031 BIO_free(file);
3032 break;
3033 }
3034 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003035
Matt Caswell0f113f32015-01-22 03:40:55 +00003036 for (;;) {
3037 i = (int)BIO_flush(io);
3038 if (i <= 0) {
3039 if (!BIO_should_retry(io))
3040 break;
3041 } else
3042 break;
3043 }
3044 end:
Matt Caswell0f113f32015-01-22 03:40:55 +00003045 /* make sure we re-use sessions */
3046 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003047
Matt Caswell0f113f32015-01-22 03:40:55 +00003048 err:
Matt Caswell0f113f32015-01-22 03:40:55 +00003049 if (ret >= 0)
3050 BIO_printf(bio_s_out, "ACCEPT\n");
Rich Salzb548a1f2015-05-01 10:02:07 -04003051 OPENSSL_free(buf);
Rich Salzca3a82c2015-03-25 11:31:18 -04003052 BIO_free_all(io);
Matt Caswell0f113f32015-01-22 03:40:55 +00003053 return (ret);
3054}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003055
Rich Salza773b522016-02-13 22:33:56 -05003056static int rev_body(int s, int stype, unsigned char *context)
Matt Caswell0f113f32015-01-22 03:40:55 +00003057{
3058 char *buf = NULL;
3059 int i;
3060 int ret = 1;
3061 SSL *con;
3062 BIO *io, *ssl_bio, *sbio;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003063
Rich Salz68dc6822015-04-30 17:48:31 -04003064 buf = app_malloc(bufsize, "server rev buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +00003065 io = BIO_new(BIO_f_buffer());
3066 ssl_bio = BIO_new(BIO_f_ssl());
3067 if ((io == NULL) || (ssl_bio == NULL))
3068 goto err;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003069
Matt Caswell0f113f32015-01-22 03:40:55 +00003070 /* lets make the output buffer a reasonable size */
3071 if (!BIO_set_write_buffer_size(io, bufsize))
3072 goto err;
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003073
Matt Caswell0f113f32015-01-22 03:40:55 +00003074 if ((con = SSL_new(ctx)) == NULL)
3075 goto err;
Matt Caswelle481f9b2015-05-15 10:49:56 +01003076
Matt Caswell0f113f32015-01-22 03:40:55 +00003077 if (s_tlsextdebug) {
3078 SSL_set_tlsext_debug_callback(con, tlsext_cb);
3079 SSL_set_tlsext_debug_arg(con, bio_s_out);
3080 }
Matt Caswellac59d702015-03-06 14:39:46 +00003081 if (context && !SSL_set_session_id_context(con, context,
Rich Salz7e1b7482015-04-24 15:26:15 -04003082 strlen((char *)context))) {
Matt Caswellac59d702015-03-06 14:39:46 +00003083 ERR_print_errors(bio_err);
3084 goto err;
3085 }
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003086
Matt Caswell0f113f32015-01-22 03:40:55 +00003087 sbio = BIO_new_socket(s, BIO_NOCLOSE);
3088 SSL_set_bio(con, sbio, sbio);
3089 SSL_set_accept_state(con);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003090
Matt Caswell0f113f32015-01-22 03:40:55 +00003091 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3092 BIO_push(io, ssl_bio);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003093#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00003094 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003095#endif
3096
Matt Caswell0f113f32015-01-22 03:40:55 +00003097 if (s_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003098 BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3099 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3100 }
3101 if (s_msg) {
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003102#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00003103 if (s_msg == 2)
3104 SSL_set_msg_callback(con, SSL_trace);
3105 else
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003106#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003107 SSL_set_msg_callback(con, msg_cb);
3108 SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3109 }
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003110
Matt Caswell0f113f32015-01-22 03:40:55 +00003111 for (;;) {
3112 i = BIO_do_handshake(io);
3113 if (i > 0)
3114 break;
3115 if (!BIO_should_retry(io)) {
3116 BIO_puts(bio_err, "CONNECTION FAILURE\n");
3117 ERR_print_errors(bio_err);
3118 goto end;
3119 }
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003120#ifndef OPENSSL_NO_SRP
3121 if (BIO_should_io_special(io)
3122 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3123 BIO_printf(bio_s_out, "LOOKUP renego during accept\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01003124 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003125 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01003126 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3127 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003128 if (srp_callback_parm.user)
3129 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3130 srp_callback_parm.user->info);
3131 else
3132 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3133 continue;
3134 }
3135#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003136 }
3137 BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
Rich Salzecf3a1f2015-04-29 11:27:08 -04003138 print_ssl_summary(con);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003139
Matt Caswell0f113f32015-01-22 03:40:55 +00003140 for (;;) {
3141 i = BIO_gets(io, buf, bufsize - 1);
3142 if (i < 0) { /* error */
3143 if (!BIO_should_retry(io)) {
3144 if (!s_quiet)
3145 ERR_print_errors(bio_err);
3146 goto err;
3147 } else {
3148 BIO_printf(bio_s_out, "read R BLOCK\n");
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003149#ifndef OPENSSL_NO_SRP
3150 if (BIO_should_io_special(io)
3151 && BIO_get_retry_reason(io) == BIO_RR_SSL_X509_LOOKUP) {
3152 BIO_printf(bio_s_out, "LOOKUP renego during read\n");
Emilia Kasper380f18e2016-02-24 12:59:59 +01003153 SRP_user_pwd_free(srp_callback_parm.user);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003154 srp_callback_parm.user =
Emilia Kasper380f18e2016-02-24 12:59:59 +01003155 SRP_VBASE_get1_by_user(srp_callback_parm.vb,
3156 srp_callback_parm.login);
Dr. Stephen Henson4e7e6232015-09-12 02:37:48 +01003157 if (srp_callback_parm.user)
3158 BIO_printf(bio_s_out, "LOOKUP done %s\n",
3159 srp_callback_parm.user->info);
3160 else
3161 BIO_printf(bio_s_out, "LOOKUP not successful\n");
3162 continue;
3163 }
3164#endif
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003165#if defined(OPENSSL_SYS_NETWARE)
Matt Caswell0f113f32015-01-22 03:40:55 +00003166 delay(1000);
Rich Salza9008152014-08-08 16:46:14 -04003167#elif !defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00003168 sleep(1);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003169#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003170 continue;
3171 }
3172 } else if (i == 0) { /* end of input */
3173 ret = 1;
3174 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3175 goto end;
3176 } else {
3177 char *p = buf + i - 1;
3178 while (i && (*p == '\n' || *p == '\r')) {
3179 p--;
3180 i--;
3181 }
Rich Salz86885c22015-05-06 14:56:14 -04003182 if (!s_ign_eof && (i == 5) && (strncmp(buf, "CLOSE", 5) == 0)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003183 ret = 1;
3184 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3185 goto end;
3186 }
3187 BUF_reverse((unsigned char *)buf, NULL, i);
3188 buf[i] = '\n';
3189 BIO_write(io, buf, i + 1);
3190 for (;;) {
3191 i = BIO_flush(io);
3192 if (i > 0)
3193 break;
3194 if (!BIO_should_retry(io))
3195 goto end;
3196 }
3197 }
3198 }
3199 end:
3200 /* make sure we re-use sessions */
3201 SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003202
Matt Caswell0f113f32015-01-22 03:40:55 +00003203 err:
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003204
Rich Salzb548a1f2015-05-01 10:02:07 -04003205 OPENSSL_free(buf);
Rich Salzca3a82c2015-03-25 11:31:18 -04003206 BIO_free_all(io);
Matt Caswell0f113f32015-01-22 03:40:55 +00003207 return (ret);
3208}
Dr. Stephen Henson4f3df8b2012-09-14 13:27:05 +00003209
Geoff Thorpe1aa0d942001-02-21 18:38:48 +00003210#define MAX_SESSION_ID_ATTEMPTS 10
3211static int generate_session_id(const SSL *ssl, unsigned char *id,
Matt Caswell0f113f32015-01-22 03:40:55 +00003212 unsigned int *id_len)
3213{
3214 unsigned int count = 0;
3215 do {
Matt Caswell266483d2015-02-26 11:57:37 +00003216 if (RAND_bytes(id, *id_len) <= 0)
3217 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +00003218 /*
3219 * Prefix the session_id with the required prefix. NB: If our prefix
3220 * is too long, clip it - but there will be worse effects anyway, eg.
3221 * the server could only possibly create 1 session ID (ie. the
3222 * prefix!) so all future session negotiations will fail due to
3223 * conflicts.
3224 */
3225 memcpy(id, session_id_prefix,
3226 (strlen(session_id_prefix) < *id_len) ?
3227 strlen(session_id_prefix) : *id_len);
3228 }
3229 while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3230 (++count < MAX_SESSION_ID_ATTEMPTS));
3231 if (count >= MAX_SESSION_ID_ATTEMPTS)
3232 return 0;
3233 return 1;
3234}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003235
Matt Caswell0f113f32015-01-22 03:40:55 +00003236/*
3237 * By default s_server uses an in-memory cache which caches SSL_SESSION
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003238 * structures without any serialisation. This hides some bugs which only
3239 * become apparent in deployed servers. By implementing a basic external
3240 * session cache some issues can be debugged using s_server.
3241 */
3242
Matt Caswell0f113f32015-01-22 03:40:55 +00003243typedef struct simple_ssl_session_st {
3244 unsigned char *id;
3245 unsigned int idlen;
3246 unsigned char *der;
3247 int derlen;
3248 struct simple_ssl_session_st *next;
3249} simple_ssl_session;
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003250
3251static simple_ssl_session *first = NULL;
3252
3253static int add_session(SSL *ssl, SSL_SESSION *session)
Matt Caswell0f113f32015-01-22 03:40:55 +00003254{
Rich Salzb4faea52015-05-01 23:10:31 -04003255 simple_ssl_session *sess = app_malloc(sizeof(*sess), "get session");
Matt Caswell0f113f32015-01-22 03:40:55 +00003256 unsigned char *p;
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003257
Matt Caswell0f113f32015-01-22 03:40:55 +00003258 SSL_SESSION_get_id(session, &sess->idlen);
3259 sess->derlen = i2d_SSL_SESSION(session, NULL);
Rich Salz7e1b7482015-04-24 15:26:15 -04003260 if (sess->derlen < 0) {
3261 BIO_printf(bio_err, "Error encoding session\n");
Rich Salza194ee72015-04-25 22:55:36 -04003262 OPENSSL_free(sess);
Rich Salz7e1b7482015-04-24 15:26:15 -04003263 return 0;
3264 }
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003265
Rich Salz7644a9a2015-12-16 16:12:24 -05003266 sess->id = OPENSSL_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
Rich Salz68dc6822015-04-30 17:48:31 -04003267 sess->der = app_malloc(sess->derlen, "get session buffer");
3268 if (!sess->id) {
Rich Salz7e1b7482015-04-24 15:26:15 -04003269 BIO_printf(bio_err, "Out of memory adding to external cache\n");
Rich Salza194ee72015-04-25 22:55:36 -04003270 OPENSSL_free(sess->id);
3271 OPENSSL_free(sess->der);
Matt Caswell918bb862015-03-04 17:49:51 +00003272 OPENSSL_free(sess);
3273 return 0;
3274 }
Matt Caswell0f113f32015-01-22 03:40:55 +00003275 p = sess->der;
Rich Salz7e1b7482015-04-24 15:26:15 -04003276
3277 /* Assume it still works. */
3278 if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
Rich Salzce6766d2015-04-26 16:43:18 -04003279 BIO_printf(bio_err, "Unexpected session encoding length\n");
Rich Salza194ee72015-04-25 22:55:36 -04003280 OPENSSL_free(sess->id);
3281 OPENSSL_free(sess->der);
3282 OPENSSL_free(sess);
Matt Caswellac59d702015-03-06 14:39:46 +00003283 return 0;
3284 }
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003285
Matt Caswell0f113f32015-01-22 03:40:55 +00003286 sess->next = first;
3287 first = sess;
3288 BIO_printf(bio_err, "New session added to external cache\n");
3289 return 0;
3290}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003291
Emilia Kasperb6981742016-02-01 15:26:18 +01003292static SSL_SESSION *get_session(SSL *ssl, const unsigned char *id, int idlen,
Matt Caswell0f113f32015-01-22 03:40:55 +00003293 int *do_copy)
3294{
3295 simple_ssl_session *sess;
3296 *do_copy = 0;
3297 for (sess = first; sess; sess = sess->next) {
3298 if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3299 const unsigned char *p = sess->der;
3300 BIO_printf(bio_err, "Lookup session: cache hit\n");
3301 return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3302 }
3303 }
3304 BIO_printf(bio_err, "Lookup session: cache miss\n");
3305 return NULL;
3306}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003307
3308static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
Matt Caswell0f113f32015-01-22 03:40:55 +00003309{
3310 simple_ssl_session *sess, *prev = NULL;
3311 const unsigned char *id;
3312 unsigned int idlen;
3313 id = SSL_SESSION_get_id(session, &idlen);
3314 for (sess = first; sess; sess = sess->next) {
3315 if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3316 if (prev)
3317 prev->next = sess->next;
3318 else
3319 first = sess->next;
3320 OPENSSL_free(sess->id);
3321 OPENSSL_free(sess->der);
3322 OPENSSL_free(sess);
3323 return;
3324 }
3325 prev = sess;
3326 }
3327}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003328
3329static void init_session_cache_ctx(SSL_CTX *sctx)
Matt Caswell0f113f32015-01-22 03:40:55 +00003330{
3331 SSL_CTX_set_session_cache_mode(sctx,
3332 SSL_SESS_CACHE_NO_INTERNAL |
3333 SSL_SESS_CACHE_SERVER);
3334 SSL_CTX_sess_set_new_cb(sctx, add_session);
3335 SSL_CTX_sess_set_get_cb(sctx, get_session);
3336 SSL_CTX_sess_set_remove_cb(sctx, del_session);
3337}
Dr. Stephen Henson35b0ea42009-12-27 23:24:45 +00003338
3339static void free_sessions(void)
Matt Caswell0f113f32015-01-22 03:40:55 +00003340{
3341 simple_ssl_session *sess, *tsess;
3342 for (sess = first; sess;) {
3343 OPENSSL_free(sess->id);
3344 OPENSSL_free(sess->der);
3345 tsess = sess;
3346 sess = sess->next;
3347 OPENSSL_free(tsess);
3348 }
3349 first = NULL;
3350}