blob: 9122d489364c4ed012749e297534b83d2cea881f [file] [log] [blame]
Rich Salz846e33c2016-05-17 14:18:30 -04001/*
Richard Levitte48e51192018-01-19 10:49:22 +01002 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
Rich Salzc80149d2017-06-20 10:14:36 -04003 * Copyright 2005 Nokia. All rights reserved.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00004 *
Rich Salz846e33c2016-05-17 14:18:30 -04005 * Licensed under the OpenSSL license (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00009 */
Rich Salz846e33c2016-05-17 14:18:30 -040010
Pauli07016a82017-08-24 09:05:07 +100011#include "e_os.h"
Nils Larschddac1972006-03-10 23:06:27 +000012#include <ctype.h>
Ulf Möller8c197cc1999-07-28 23:25:59 +000013#include <stdio.h>
14#include <stdlib.h>
15#include <string.h>
Viktor Dukhovnicddd4242015-12-29 14:25:50 -050016#include <errno.h>
Richard Levittebe1bd922001-02-20 14:07:03 +000017#include <openssl/e_os2.h>
Rich Salz7e1b7482015-04-24 15:26:15 -040018
Matt Caswellf9e55032016-03-21 15:32:40 +000019#ifndef OPENSSL_NO_SOCK
20
Matt Caswell0f113f32015-01-22 03:40:55 +000021/*
22 * With IPv6, it looks like Digital has mixed up the proper order of
23 * recursive header file inclusion, resulting in the compiler complaining
24 * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
25 * needed to have fileno() declared correctly... So let's define u_int
26 */
Richard Levittebc36ee62001-02-20 08:13:47 +000027#if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
Matt Caswell0f113f32015-01-22 03:40:55 +000028# define __U_INT
Ulf Möller7d7d2cb1999-05-13 11:37:32 +000029typedef unsigned int u_int;
30#endif
31
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000032#include "apps.h"
Richard Levittedab2cd62018-01-31 11:13:10 +010033#include "progs.h"
Bodo Möllerec577821999-04-23 22:13:45 +000034#include <openssl/x509.h>
35#include <openssl/ssl.h>
36#include <openssl/err.h>
37#include <openssl/pem.h>
Geoff Thorpe13729652001-09-12 02:39:06 +000038#include <openssl/rand.h>
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +000039#include <openssl/ocsp.h>
Geoff Thorpe1e26a8b2008-03-16 21:05:46 +000040#include <openssl/bn.h>
Matt Caswell5e6f9772015-09-16 23:09:15 +010041#include <openssl/async.h>
Ben Laurieedc032b2011-03-12 17:01:19 +000042#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +000043# include <openssl/srp.h>
Ben Laurieedc032b2011-03-12 17:01:19 +000044#endif
Rob Percivaldd696a52016-03-02 13:34:05 +000045#ifndef OPENSSL_NO_CT
46# include <openssl/ct.h>
47#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000048#include "s_apps.h"
Ben Laurie36d16f82005-04-26 16:02:40 +000049#include "timeouts.h"
Rich Salz0e97f1e2017-08-21 17:22:19 -040050#include "internal/sockets.h"
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000051
Emilia Kasperefc943b2016-02-22 16:58:36 +010052#if defined(__has_feature)
53# if __has_feature(memory_sanitizer)
54# include <sanitizer/msan_interface.h>
55# endif
56#endif
57
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000058#undef BUFSIZZ
59#define BUFSIZZ 1024*8
Nathan Phillip Brinkcfb4f1e2015-05-13 16:00:21 -040060#define S_CLIENT_IRC_READ_TIMEOUT 8
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000061
Viktor Dukhovnicddd4242015-12-29 14:25:50 -050062static char *prog;
Rich Salz7e1b7482015-04-24 15:26:15 -040063static int c_debug = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +000064static int c_showcerts = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +000065static char *keymatexportlabel = NULL;
66static int keymatexportlen = 20;
Matt Caswell0f113f32015-01-22 03:40:55 +000067static BIO *bio_c_out = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +000068static int c_quiet = 0;
Matt Caswellbe62b222017-01-13 14:25:15 +000069static char *sess_out = NULL;
Matt Caswelle261bdd2017-06-12 16:57:06 +010070static SSL_SESSION *psksess = NULL;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000071
Rob Percival0d4d5ab2016-03-10 19:49:34 +000072static void print_stuff(BIO *berr, SSL *con, int full);
Matt Caswell3e41ac32016-03-21 16:54:53 +000073#ifndef OPENSSL_NO_OCSP
Rich Salz7e1b7482015-04-24 15:26:15 -040074static int ocsp_resp_cb(SSL *s, void *arg);
Matt Caswell3e41ac32016-03-21 16:54:53 +000075#endif
Robert Scheck398b0bb2017-02-27 00:44:14 +010076static int ldap_ExtendedResponse_parse(const char *buf, long rem);
Rich Salz7e1b7482015-04-24 15:26:15 -040077
Viktor Dukhovnicddd4242015-12-29 14:25:50 -050078static int saved_errno;
79
80static void save_errno(void)
81{
82 saved_errno = errno;
83 errno = 0;
84}
85
86static int restore_errno(void)
87{
88 int ret = errno;
89 errno = saved_errno;
90 return ret;
91}
92
Matt Caswellec447922016-01-25 15:00:10 +000093static void do_ssl_shutdown(SSL *ssl)
94{
95 int ret;
96
97 do {
98 /* We only do unidirectional shutdown */
99 ret = SSL_shutdown(ssl);
100 if (ret < 0) {
101 switch (SSL_get_error(ssl, ret)) {
102 case SSL_ERROR_WANT_READ:
103 case SSL_ERROR_WANT_WRITE:
104 case SSL_ERROR_WANT_ASYNC:
Matt Caswellfc7f1902016-05-03 17:55:00 +0100105 case SSL_ERROR_WANT_ASYNC_JOB:
Matt Caswellec447922016-01-25 15:00:10 +0000106 /* We just do busy waiting. Nothing clever */
107 continue;
108 }
109 ret = 0;
110 }
111 } while (ret < 0);
112}
113
Nils Larschddac1972006-03-10 23:06:27 +0000114/* Default PSK identity and key */
Matt Caswell0f113f32015-01-22 03:40:55 +0000115static char *psk_identity = "Client_identity";
Nils Larschddac1972006-03-10 23:06:27 +0000116
Matt Caswell14e35352017-06-13 14:28:45 +0100117#ifndef OPENSSL_NO_PSK
Nils Larschddac1972006-03-10 23:06:27 +0000118static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
Matt Caswell0f113f32015-01-22 03:40:55 +0000119 unsigned int max_identity_len,
120 unsigned char *psk,
121 unsigned int max_psk_len)
122{
Matt Caswell0f113f32015-01-22 03:40:55 +0000123 int ret;
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100124 long key_len;
125 unsigned char *key;
Nils Larschddac1972006-03-10 23:06:27 +0000126
Matt Caswell0f113f32015-01-22 03:40:55 +0000127 if (c_debug)
128 BIO_printf(bio_c_out, "psk_client_cb\n");
129 if (!hint) {
130 /* no ServerKeyExchange message */
131 if (c_debug)
132 BIO_printf(bio_c_out,
133 "NULL received PSK identity hint, continuing anyway\n");
Paul Yang22342122017-06-13 01:24:02 +0800134 } else if (c_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000135 BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
Paul Yang22342122017-06-13 01:24:02 +0800136 }
Nils Larschddac1972006-03-10 23:06:27 +0000137
Matt Caswell0f113f32015-01-22 03:40:55 +0000138 /*
139 * lookup PSK identity and PSK key based on the given identity hint here
140 */
141 ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
142 if (ret < 0 || (unsigned int)ret > max_identity_len)
143 goto out_err;
144 if (c_debug)
145 BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
146 ret);
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100147
148 /* convert the PSK key to binary */
149 key = OPENSSL_hexstr2buf(psk_key, &key_len);
150 if (key == NULL) {
151 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
Matt Caswell0f113f32015-01-22 03:40:55 +0000152 psk_key);
Nils Larschddac1972006-03-10 23:06:27 +0000153 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000154 }
Benjamin Kaduk96a5d7f2017-03-14 11:37:42 -0500155 if (max_psk_len > INT_MAX || key_len > (long)max_psk_len) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000156 BIO_printf(bio_err,
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100157 "psk buffer of callback is too small (%d) for key (%ld)\n",
158 max_psk_len, key_len);
159 OPENSSL_free(key);
Matt Caswell0f113f32015-01-22 03:40:55 +0000160 return 0;
161 }
162
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100163 memcpy(psk, key, key_len);
164 OPENSSL_free(key);
Matt Caswell0f113f32015-01-22 03:40:55 +0000165
166 if (c_debug)
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100167 BIO_printf(bio_c_out, "created PSK len=%ld\n", key_len);
Matt Caswell0f113f32015-01-22 03:40:55 +0000168
Dr. Stephen Henson6ec6d522016-06-08 19:01:42 +0100169 return key_len;
Matt Caswell0f113f32015-01-22 03:40:55 +0000170 out_err:
171 if (c_debug)
172 BIO_printf(bio_err, "Error in PSK client callback\n");
173 return 0;
174}
Nils Larschddac1972006-03-10 23:06:27 +0000175#endif
176
Matt Caswelladfc3782017-06-21 11:58:10 +0100177const unsigned char tls13_aes128gcmsha256_id[] = { 0x13, 0x01 };
178const unsigned char tls13_aes256gcmsha384_id[] = { 0x13, 0x02 };
Matt Caswell5ffff592017-06-12 19:12:13 +0100179
Matt Caswelle261bdd2017-06-12 16:57:06 +0100180static int psk_use_session_cb(SSL *s, const EVP_MD *md,
181 const unsigned char **id, size_t *idlen,
182 SSL_SESSION **sess)
183{
Matt Caswell5ffff592017-06-12 19:12:13 +0100184 SSL_SESSION *usesess = NULL;
185 const SSL_CIPHER *cipher = NULL;
186
187 if (psksess != NULL) {
188 SSL_SESSION_up_ref(psksess);
189 usesess = psksess;
190 } else {
191 long key_len;
192 unsigned char *key = OPENSSL_hexstr2buf(psk_key, &key_len);
193
194 if (key == NULL) {
195 BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
196 psk_key);
197 return 0;
198 }
199
Matt Caswelle73c6ea2018-03-06 14:12:10 +0000200 /* We default to SHA-256 */
201 cipher = SSL_CIPHER_find(s, tls13_aes128gcmsha256_id);
Matt Caswell5ffff592017-06-12 19:12:13 +0100202 if (cipher == NULL) {
Matt Caswelle73c6ea2018-03-06 14:12:10 +0000203 BIO_printf(bio_err, "Error finding suitable ciphersuite\n");
204 return 0;
Matt Caswell5ffff592017-06-12 19:12:13 +0100205 }
Matt Caswelle73c6ea2018-03-06 14:12:10 +0000206
Matt Caswell5ffff592017-06-12 19:12:13 +0100207 usesess = SSL_SESSION_new();
208 if (usesess == NULL
209 || !SSL_SESSION_set1_master_key(usesess, key, key_len)
210 || !SSL_SESSION_set_cipher(usesess, cipher)
211 || !SSL_SESSION_set_protocol_version(usesess, TLS1_3_VERSION)) {
212 OPENSSL_free(key);
213 goto err;
214 }
215 OPENSSL_free(key);
216 }
217
218 cipher = SSL_SESSION_get0_cipher(usesess);
Matt Caswelle261bdd2017-06-12 16:57:06 +0100219 if (cipher == NULL)
Matt Caswell5ffff592017-06-12 19:12:13 +0100220 goto err;
Matt Caswelle261bdd2017-06-12 16:57:06 +0100221
Matt Caswelldc87d5a2017-06-16 16:26:25 +0100222 if (md != NULL && SSL_CIPHER_get_handshake_digest(cipher) != md) {
223 /* PSK not usable, ignore it */
224 *id = NULL;
225 *idlen = 0;
226 *sess = NULL;
227 SSL_SESSION_free(usesess);
228 } else {
229 *sess = usesess;
230 *id = (unsigned char *)psk_identity;
231 *idlen = strlen(psk_identity);
232 }
Matt Caswelle261bdd2017-06-12 16:57:06 +0100233
234 return 1;
Matt Caswell5ffff592017-06-12 19:12:13 +0100235
236 err:
237 SSL_SESSION_free(usesess);
238 return 0;
Matt Caswelle261bdd2017-06-12 16:57:06 +0100239}
240
Bodo Möllered3883d2006-01-02 23:14:37 +0000241/* This is a context that we pass to callbacks */
242typedef struct tlsextctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000243 BIO *biodebug;
244 int ack;
Bodo Möllered3883d2006-01-02 23:14:37 +0000245} tlsextctx;
246
Rich Salz6d23cf92015-01-12 17:29:26 -0500247static int ssl_servername_cb(SSL *s, int *ad, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000248{
249 tlsextctx *p = (tlsextctx *) arg;
250 const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
251 if (SSL_get_servername_type(s) != -1)
252 p->ack = !SSL_session_reused(s) && hn != NULL;
253 else
254 BIO_printf(bio_err, "Can't use SSL_get_servername\n");
Ben Laurieee2ffc22010-07-28 10:06:55 +0000255
Matt Caswell0f113f32015-01-22 03:40:55 +0000256 return SSL_TLSEXT_ERR_OK;
257}
258
Matt Caswelle481f9b2015-05-15 10:49:56 +0100259#ifndef OPENSSL_NO_SRP
Ben Laurieedc032b2011-03-12 17:01:19 +0000260
261/* This is a context that we pass to all callbacks */
Matt Caswell0f113f32015-01-22 03:40:55 +0000262typedef struct srp_arg_st {
263 char *srppassin;
264 char *srplogin;
265 int msg; /* copy from c_msg */
266 int debug; /* copy from c_debug */
267 int amp; /* allow more groups */
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100268 int strength; /* minimal size for N */
Matt Caswell0f113f32015-01-22 03:40:55 +0000269} SRP_ARG;
Ben Laurieedc032b2011-03-12 17:01:19 +0000270
Matt Caswelle481f9b2015-05-15 10:49:56 +0100271# define SRP_NUMBER_ITERATIONS_FOR_PRIME 64
Ben Laurieedc032b2011-03-12 17:01:19 +0000272
Dr. Stephen Hensonf2fc3072011-12-14 22:17:06 +0000273static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
Matt Caswell0f113f32015-01-22 03:40:55 +0000274{
275 BN_CTX *bn_ctx = BN_CTX_new();
276 BIGNUM *p = BN_new();
277 BIGNUM *r = BN_new();
278 int ret =
279 g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
David Benjamin748e8532016-06-24 11:05:48 -0400280 BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
Matt Caswell0f113f32015-01-22 03:40:55 +0000281 p != NULL && BN_rshift1(p, N) &&
282 /* p = (N-1)/2 */
David Benjamin748e8532016-06-24 11:05:48 -0400283 BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
Matt Caswell0f113f32015-01-22 03:40:55 +0000284 r != NULL &&
285 /* verify g^((N-1)/2) == -1 (mod N) */
286 BN_mod_exp(r, g, p, N, bn_ctx) &&
287 BN_add_word(r, 1) && BN_cmp(r, N) == 0;
Ben Laurieedc032b2011-03-12 17:01:19 +0000288
Rich Salz23a1d5e2015-04-30 21:37:06 -0400289 BN_free(r);
290 BN_free(p);
291 BN_CTX_free(bn_ctx);
Matt Caswell0f113f32015-01-22 03:40:55 +0000292 return ret;
293}
Ben Laurieedc032b2011-03-12 17:01:19 +0000294
Matt Caswellc80fd6b2015-01-16 09:21:50 +0000295/*-
296 * This callback is used here for two purposes:
297 * - extended debugging
298 * - making some primality tests for unknown groups
299 * The callback is only called for a non default group.
300 *
301 * An application does not need the call back at all if
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100302 * only the standard groups are used. In real life situations,
Matt Caswell0f113f32015-01-22 03:40:55 +0000303 * client and server already share well known groups,
304 * thus there is no need to verify them.
Matt Caswellc80fd6b2015-01-16 09:21:50 +0000305 * Furthermore, in case that a server actually proposes a group that
Matt Caswell0f113f32015-01-22 03:40:55 +0000306 * is not one of those defined in RFC 5054, it is more appropriate
307 * to add the group to a static list and then compare since
Matt Caswellc80fd6b2015-01-16 09:21:50 +0000308 * primality tests are rather cpu consuming.
309 */
Dr. Stephen Hensonf2fc3072011-12-14 22:17:06 +0000310
Rich Salz6d23cf92015-01-12 17:29:26 -0500311static int ssl_srp_verify_param_cb(SSL *s, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +0000312{
313 SRP_ARG *srp_arg = (SRP_ARG *)arg;
314 BIGNUM *N = NULL, *g = NULL;
Rich Salz75ebbd92015-05-06 13:43:59 -0400315
316 if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
Matt Caswell0f113f32015-01-22 03:40:55 +0000317 return 0;
318 if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
319 BIO_printf(bio_err, "SRP parameters:\n");
320 BIO_printf(bio_err, "\tN=");
321 BN_print(bio_err, N);
322 BIO_printf(bio_err, "\n\tg=");
323 BN_print(bio_err, g);
324 BIO_printf(bio_err, "\n");
325 }
Ben Laurieedc032b2011-03-12 17:01:19 +0000326
Matt Caswell0f113f32015-01-22 03:40:55 +0000327 if (SRP_check_known_gN_param(g, N))
328 return 1;
Ben Laurieedc032b2011-03-12 17:01:19 +0000329
Matt Caswell0f113f32015-01-22 03:40:55 +0000330 if (srp_arg->amp == 1) {
331 if (srp_arg->debug)
332 BIO_printf(bio_err,
333 "SRP param N and g are not known params, going to check deeper.\n");
Ben Laurieedc032b2011-03-12 17:01:19 +0000334
Matt Caswell0f113f32015-01-22 03:40:55 +0000335 /*
336 * The srp_moregroups is a real debugging feature. Implementors
337 * should rather add the value to the known ones. The minimal size
338 * has already been tested.
339 */
340 if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
341 return 1;
342 }
343 BIO_printf(bio_err, "SRP param N and g rejected.\n");
344 return 0;
345}
Ben Laurieedc032b2011-03-12 17:01:19 +0000346
Matt Caswelle481f9b2015-05-15 10:49:56 +0100347# define PWD_STRLEN 1024
Ben Laurieedc032b2011-03-12 17:01:19 +0000348
Matt Caswell0f113f32015-01-22 03:40:55 +0000349static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
350{
351 SRP_ARG *srp_arg = (SRP_ARG *)arg;
Rich Salz68dc6822015-04-30 17:48:31 -0400352 char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
Matt Caswell0f113f32015-01-22 03:40:55 +0000353 PW_CB_DATA cb_tmp;
354 int l;
Ben Laurieedc032b2011-03-12 17:01:19 +0000355
Matt Caswell0f113f32015-01-22 03:40:55 +0000356 cb_tmp.password = (char *)srp_arg->srppassin;
357 cb_tmp.prompt_info = "SRP user";
358 if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
359 BIO_printf(bio_err, "Can't read Password\n");
360 OPENSSL_free(pass);
361 return NULL;
362 }
363 *(pass + l) = '\0';
Ben Laurieedc032b2011-03-12 17:01:19 +0000364
Matt Caswell0f113f32015-01-22 03:40:55 +0000365 return pass;
366}
Ben Laurieedc032b2011-03-12 17:01:19 +0000367
Matt Caswelle481f9b2015-05-15 10:49:56 +0100368#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400369
Matt Caswelle481f9b2015-05-15 10:49:56 +0100370#ifndef OPENSSL_NO_NEXTPROTONEG
Ben Laurieee2ffc22010-07-28 10:06:55 +0000371/* This the context that we pass to next_proto_cb */
372typedef struct tlsextnextprotoctx_st {
Matt Caswell0f113f32015-01-22 03:40:55 +0000373 unsigned char *data;
Todd Short817cd0d2016-03-05 08:47:55 -0500374 size_t len;
Matt Caswell0f113f32015-01-22 03:40:55 +0000375 int status;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000376} tlsextnextprotoctx;
377
378static tlsextnextprotoctx next_proto;
379
Matt Caswell0f113f32015-01-22 03:40:55 +0000380static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
381 const unsigned char *in, unsigned int inlen,
382 void *arg)
383{
384 tlsextnextprotoctx *ctx = arg;
Ben Laurieee2ffc22010-07-28 10:06:55 +0000385
Matt Caswell0f113f32015-01-22 03:40:55 +0000386 if (!c_quiet) {
387 /* We can assume that |in| is syntactically valid. */
388 unsigned i;
389 BIO_printf(bio_c_out, "Protocols advertised by server: ");
390 for (i = 0; i < inlen;) {
391 if (i)
392 BIO_write(bio_c_out, ", ", 2);
393 BIO_write(bio_c_out, &in[i + 1], in[i]);
394 i += in[i] + 1;
395 }
396 BIO_write(bio_c_out, "\n", 1);
397 }
Ben Laurieee2ffc22010-07-28 10:06:55 +0000398
Matt Caswell0f113f32015-01-22 03:40:55 +0000399 ctx->status =
400 SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
401 return SSL_TLSEXT_ERR_OK;
402}
Matt Caswelle481f9b2015-05-15 10:49:56 +0100403#endif /* ndef OPENSSL_NO_NEXTPROTONEG */
Trevora398f822013-05-12 18:55:27 -0700404
Matt Caswell0f113f32015-01-22 03:40:55 +0000405static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
406 const unsigned char *in, size_t inlen,
407 int *al, void *arg)
408{
409 char pem_name[100];
410 unsigned char ext_buf[4 + 65536];
Trevora398f822013-05-12 18:55:27 -0700411
Matt Caswell0f113f32015-01-22 03:40:55 +0000412 /* Reconstruct the type/len fields prior to extension data */
Andy Polyakov3a63c0e2017-11-11 22:23:12 +0100413 inlen &= 0xffff; /* for formal memcmpy correctness */
414 ext_buf[0] = (unsigned char)(ext_type >> 8);
415 ext_buf[1] = (unsigned char)(ext_type);
416 ext_buf[2] = (unsigned char)(inlen >> 8);
417 ext_buf[3] = (unsigned char)(inlen);
Matt Caswell0f113f32015-01-22 03:40:55 +0000418 memcpy(ext_buf + 4, in, inlen);
Trevora398f822013-05-12 18:55:27 -0700419
Matt Caswell0f113f32015-01-22 03:40:55 +0000420 BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
421 ext_type);
422 PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
423 return 1;
424}
Trevora398f822013-05-12 18:55:27 -0700425
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500426/*
427 * Hex decoder that tolerates optional whitespace. Returns number of bytes
428 * produced, advances inptr to end of input string.
429 */
430static ossl_ssize_t hexdecode(const char **inptr, void *result)
431{
432 unsigned char **out = (unsigned char **)result;
433 const char *in = *inptr;
FdaSilvaYYd6073e22016-08-07 12:04:26 +0200434 unsigned char *ret = app_malloc(strlen(in) / 2, "hexdecode");
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500435 unsigned char *cp = ret;
436 uint8_t byte;
437 int nibble = 0;
438
439 if (ret == NULL)
440 return -1;
441
442 for (byte = 0; *in; ++in) {
Rich Salz49445f22016-05-12 15:52:58 -0400443 int x;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500444
Richard Levitte18295f02016-02-14 13:02:15 +0100445 if (isspace(_UC(*in)))
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500446 continue;
Rich Salz49445f22016-05-12 15:52:58 -0400447 x = OPENSSL_hexchar2int(*in);
448 if (x < 0) {
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500449 OPENSSL_free(ret);
450 return 0;
451 }
Rich Salz49445f22016-05-12 15:52:58 -0400452 byte |= (char)x;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500453 if ((nibble ^= 1) == 0) {
454 *cp++ = byte;
455 byte = 0;
456 } else {
457 byte <<= 4;
458 }
459 }
460 if (nibble != 0) {
461 OPENSSL_free(ret);
462 return 0;
463 }
464 *inptr = in;
465
466 return cp - (*out = ret);
467}
468
469/*
470 * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances
471 * inptr to next field skipping leading whitespace.
472 */
473static ossl_ssize_t checked_uint8(const char **inptr, void *out)
474{
475 uint8_t *result = (uint8_t *)out;
476 const char *in = *inptr;
477 char *endp;
478 long v;
479 int e;
480
481 save_errno();
482 v = strtol(in, &endp, 10);
483 e = restore_errno();
484
485 if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) ||
Richard Levitte18295f02016-02-14 13:02:15 +0100486 endp == in || !isspace(_UC(*endp)) ||
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500487 v != (*result = (uint8_t) v)) {
488 return -1;
489 }
Richard Levitte18295f02016-02-14 13:02:15 +0100490 for (in = endp; isspace(_UC(*in)); ++in)
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500491 continue;
492
493 *inptr = in;
494 return 1;
495}
496
Rich Salz7ff970e2016-01-08 10:36:37 -0500497struct tlsa_field {
498 void *var;
499 const char *name;
500 ossl_ssize_t (*parser)(const char **, void *);
501};
502
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500503static int tlsa_import_rr(SSL *con, const char *rrdata)
504{
Rich Salz7ff970e2016-01-08 10:36:37 -0500505 /* Not necessary to re-init these values; the "parsers" do that. */
506 static uint8_t usage;
507 static uint8_t selector;
508 static uint8_t mtype;
509 static unsigned char *data;
Rich Salzf232d6e2016-01-08 13:06:01 -0500510 static struct tlsa_field tlsa_fields[] = {
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500511 { &usage, "usage", checked_uint8 },
512 { &selector, "selector", checked_uint8 },
513 { &mtype, "mtype", checked_uint8 },
514 { &data, "data", hexdecode },
515 { NULL, }
516 };
517 struct tlsa_field *f;
Rich Salz7ff970e2016-01-08 10:36:37 -0500518 int ret;
519 const char *cp = rrdata;
520 ossl_ssize_t len = 0;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500521
522 for (f = tlsa_fields; f->var; ++f) {
523 /* Returns number of bytes produced, advances cp to next field */
524 if ((len = f->parser(&cp, f->var)) <= 0) {
525 BIO_printf(bio_err, "%s: warning: bad TLSA %s field in: %s\n",
526 prog, f->name, rrdata);
527 return 0;
528 }
529 }
530 /* The data field is last, so len is its length */
531 ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len);
532 OPENSSL_free(data);
533
534 if (ret == 0) {
535 ERR_print_errors(bio_err);
536 BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n",
537 prog, rrdata);
538 return 0;
539 }
540 if (ret < 0) {
541 ERR_print_errors(bio_err);
542 BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n",
543 prog, rrdata);
544 return 0;
545 }
546 return ret;
547}
548
549static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset)
550{
551 int num = sk_OPENSSL_STRING_num(rrset);
552 int count = 0;
553 int i;
554
555 for (i = 0; i < num; ++i) {
556 char *rrdata = sk_OPENSSL_STRING_value(rrset, i);
557 if (tlsa_import_rr(con, rrdata) > 0)
558 ++count;
559 }
560 return count > 0;
561}
562
Rich Salz7e1b7482015-04-24 15:26:15 -0400563typedef enum OPTION_choice {
564 OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
John Hughesebc01682018-02-08 10:49:02 +0100565 OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_BIND, OPT_UNIX,
Dmitry Belyavskiya7c04f22017-02-21 14:22:55 +0300566 OPT_XMPPHOST, OPT_VERIFY, OPT_NAMEOPT,
Rich Salz7e1b7482015-04-24 15:26:15 -0400567 OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
568 OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
569 OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
Rich Salz3ee1eac2017-07-05 10:58:48 -0400570 OPT_SSL_CLIENT_ENGINE, OPT_IGN_EOF, OPT_NO_IGN_EOF,
Rich Salz3a4e9362016-01-13 23:11:01 -0500571 OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
Rich Salz7e1b7482015-04-24 15:26:15 -0400572 OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
573 OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
Matt Caswell72257202017-06-21 12:17:30 +0100574 OPT_PSK_IDENTITY, OPT_PSK, OPT_PSK_SESS,
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100575#ifndef OPENSSL_NO_SRP
576 OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER,
577 OPT_SRP_MOREGROUPS,
578#endif
579 OPT_SSL3, OPT_SSL_CONFIG,
Matt Caswell582a17d2016-10-21 17:39:33 +0100580 OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
Matt Caswell8ccc2372017-04-20 09:57:12 +0100581 OPT_DTLS1_2, OPT_SCTP, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
FdaSilvaYY28e5ea82017-04-06 23:47:18 +0200582 OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH,
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100583 OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400584 OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN,
FdaSilvaYY28e5ea82017-04-06 23:47:18 +0200585 OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME, OPT_NOSERVERNAME, OPT_ASYNC,
Paul Yang81764312017-10-16 15:32:24 -0400586 OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_PROTOHOST,
FdaSilvaYYcf72c752017-11-05 17:46:48 +0100587 OPT_MAXFRAGLEN, OPT_MAX_SEND_FRAG, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES,
588 OPT_READ_BUF, OPT_KEYLOG_FILE, OPT_EARLY_DATA, OPT_REQCAFILE,
Rich Salz7e1b7482015-04-24 15:26:15 -0400589 OPT_V_ENUM,
590 OPT_X_ENUM,
591 OPT_S_ENUM,
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500592 OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_DANE_TLSA_DOMAIN,
Rob Percivaldd696a52016-03-02 13:34:05 +0000593#ifndef OPENSSL_NO_CT
Viktor Dukhovni43341432016-04-07 14:17:37 -0400594 OPT_CT, OPT_NOCT, OPT_CTLOG_FILE,
Rob Percivaldd696a52016-03-02 13:34:05 +0000595#endif
Rich Salz3ee1eac2017-07-05 10:58:48 -0400596 OPT_DANE_TLSA_RRDATA, OPT_DANE_EE_NO_NAME,
Todd Short9d75dce2017-12-18 16:52:28 -0500597 OPT_FORCE_PHA,
Rich Salz3ee1eac2017-07-05 10:58:48 -0400598 OPT_R_ENUM
Rich Salz7e1b7482015-04-24 15:26:15 -0400599} OPTION_CHOICE;
600
FdaSilvaYY44c83eb2016-03-13 14:07:50 +0100601const OPTIONS s_client_options[] = {
Rich Salz7e1b7482015-04-24 15:26:15 -0400602 {"help", OPT_HELP, '-', "Display this summary"},
603 {"host", OPT_HOST, 's', "Use -connect instead"},
604 {"port", OPT_PORT, 'p', "Use -connect instead"},
605 {"connect", OPT_CONNECT, 's',
Richard Levitteab69ac02016-02-03 00:47:42 +0100606 "TCP/IP where to connect (default is :" PORT ")"},
John Hughesebc01682018-02-08 10:49:02 +0100607 {"bind", OPT_BIND, 's', "bind local address for connection"},
Michael Trapp552bf8e2015-05-08 15:34:07 -0400608 {"proxy", OPT_PROXY, 's',
609 "Connect to via specified proxy to the real server"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100610#ifdef AF_UNIX
EasySeca22f9c82016-11-12 21:08:32 +0100611 {"unix", OPT_UNIX, 's', "Connect over the specified Unix-domain socket"},
Richard Levitteab69ac02016-02-03 00:47:42 +0100612#endif
613 {"4", OPT_4, '-', "Use IPv4 only"},
Rich Salzfe08bd72016-06-08 12:22:14 -0400614#ifdef AF_INET6
Richard Levitteab69ac02016-02-03 00:47:42 +0100615 {"6", OPT_6, '-', "Use IPv6 only"},
Rich Salzfe08bd72016-06-08 12:22:14 -0400616#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400617 {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
618 {"cert", OPT_CERT, '<', "Certificate file to use, PEM format assumed"},
619 {"certform", OPT_CERTFORM, 'F',
620 "Certificate format (PEM or DER) PEM default"},
Dmitry Belyavskiya7c04f22017-02-21 14:22:55 +0300621 {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
David Woodhousea6972f32016-09-28 13:07:52 +0100622 {"key", OPT_KEY, 's', "Private key file to use, if not in -cert file"},
623 {"keyform", OPT_KEYFORM, 'E', "Key format (PEM, DER or engine) PEM default"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400624 {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
625 {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
626 {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100627 {"no-CAfile", OPT_NOCAFILE, '-',
628 "Do not load the default certificates file"},
629 {"no-CApath", OPT_NOCAPATH, '-',
630 "Do not load certificates from the default certificates directory"},
Dr. Stephen Hensond2add502017-03-20 18:32:43 +0000631 {"requestCAfile", OPT_REQCAFILE, '<',
Dr. Stephen Henson5969a2d2017-03-31 17:04:28 +0100632 "PEM format file of CA names to send to the server"},
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500633 {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
634 {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
635 "DANE TLSA rrdata presentation form"},
Viktor Dukhovnic4fbed62016-08-19 11:59:47 -0400636 {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-',
637 "Disable name checks when matching DANE-EE(3) TLSA records"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400638 {"reconnect", OPT_RECONNECT, '-',
639 "Drop and re-make the connection with the same Session-ID"},
Matt Caswellbdb59d92018-04-24 10:27:32 +0100640 {"showcerts", OPT_SHOWCERTS, '-',
641 "Show all certificates sent by the server"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400642 {"debug", OPT_DEBUG, '-', "Extra output"},
643 {"msg", OPT_MSG, '-', "Show protocol messages"},
Rich Salz9a13bb32016-02-18 12:23:27 -0500644 {"msgfile", OPT_MSGFILE, '>',
645 "File to send output of -msg or -trace, instead of stdout"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400646 {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
647 {"state", OPT_STATE, '-', "Print the ssl states"},
648 {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
649 {"quiet", OPT_QUIET, '-', "No s_client output"},
650 {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
651 {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400652 {"starttls", OPT_STARTTLS, 's',
Nathan Phillip Brinkcfb4f1e2015-05-13 16:00:21 -0400653 "Use the appropriate STARTTLS command before starting TLS"},
Kai Engert898ea7b2015-07-29 17:41:00 -0400654 {"xmpphost", OPT_XMPPHOST, 's',
Paul Yang81764312017-10-16 15:32:24 -0400655 "Alias of -name option for \"-starttls xmpp[-server]\""},
Rich Salz3ee1eac2017-07-05 10:58:48 -0400656 OPT_R_OPTIONS,
Rich Salz7e1b7482015-04-24 15:26:15 -0400657 {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
658 {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
FdaSilvaYY1fb6b0b2018-03-21 16:01:24 -0400659#ifndef OPENSSL_NO_SRTP
Matt Caswelle77bdc72015-08-04 19:18:02 +0100660 {"use_srtp", OPT_USE_SRTP, 's',
Rich Salz7e1b7482015-04-24 15:26:15 -0400661 "Offer SRTP key management with a colon-separated profile list"},
FdaSilvaYY1fb6b0b2018-03-21 16:01:24 -0400662#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400663 {"keymatexport", OPT_KEYMATEXPORT, 's',
664 "Export keying material using label"},
665 {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
666 "Export len bytes of keying material (default 20)"},
FdaSilvaYYcf72c752017-11-05 17:46:48 +0100667 {"maxfraglen", OPT_MAXFRAGLEN, 'p',
668 "Enable Maximum Fragment Length Negotiation (len values: 512, 1024, 2048 and 4096)"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400669 {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
Paul Yang81764312017-10-16 15:32:24 -0400670 {"name", OPT_PROTOHOST, 's',
671 "Hostname to use for \"-starttls lmtp\", \"-starttls smtp\" or \"-starttls xmpp[-server]\""},
Rich Salz9a13bb32016-02-18 12:23:27 -0500672 {"CRL", OPT_CRL, '<', "CRL file to use"},
673 {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
674 {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
675 {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
676 "Close connection on verification error"},
677 {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
678 {"brief", OPT_BRIEF, '-',
679 "Restrict output to brief summary of connection parameters"},
680 {"prexit", OPT_PREXIT, '-',
681 "Print session information when the program exits"},
682 {"security_debug", OPT_SECURITY_DEBUG, '-',
683 "Enable security debug messages"},
684 {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
685 "Output more security debug output"},
686 {"cert_chain", OPT_CERT_CHAIN, '<',
687 "Certificate chain file (in PEM format)"},
688 {"chainCApath", OPT_CHAINCAPATH, '/',
689 "Use dir as certificate store path to build CA certificate chain"},
690 {"verifyCApath", OPT_VERIFYCAPATH, '/',
691 "Use dir as certificate store path to verify CA certificate"},
692 {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
693 {"chainCAfile", OPT_CHAINCAFILE, '<',
694 "CA file for certificate chain (PEM format)"},
695 {"verifyCAfile", OPT_VERIFYCAFILE, '<',
696 "CA file for certificate verification (PEM format)"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400697 {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
698 {"servername", OPT_SERVERNAME, 's',
Paul Yang481afe22017-06-13 20:18:55 +0800699 "Set TLS extension servername (SNI) in ClientHello (default)"},
Matt Caswell11ba87f2017-02-13 13:26:37 +0000700 {"noservername", OPT_NOSERVERNAME, '-',
701 "Do not send the server name (SNI) extension in the ClientHello"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400702 {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
703 "Hex dump of all TLS extensions received"},
Matt Caswell3e41ac32016-03-21 16:54:53 +0000704#ifndef OPENSSL_NO_OCSP
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400705 {"status", OPT_STATUS, '-', "Request certificate status from server"},
Matt Caswell3e41ac32016-03-21 16:54:53 +0000706#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400707 {"serverinfo", OPT_SERVERINFO, 's',
708 "types Send empty ClientHello extensions (comma-separated numbers)"},
709 {"alpn", OPT_ALPN, 's',
710 "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
Matt Caswell7e25dd62015-02-13 23:33:12 +0000711 {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
Rich Salz9a13bb32016-02-18 12:23:27 -0500712 {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"},
FdaSilvaYY28e5ea82017-04-06 23:47:18 +0200713 {"max_send_frag", OPT_MAX_SEND_FRAG, 'p', "Maximum Size of send frames "},
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +0200714 {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p',
Matt Caswell0df80882016-02-16 11:13:33 +0000715 "Size used to split data for encrypt pipelines"},
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +0200716 {"max_pipelines", OPT_MAX_PIPELINES, 'p',
Matt Caswell032c6d22015-09-22 11:23:33 +0100717 "Maximum number of encrypt/decrypt pipelines to be used"},
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +0200718 {"read_buf", OPT_READ_BUF, 'p',
Matt Caswelldad78fb2016-01-13 14:20:25 +0000719 "Default read buffer size to be used for connections"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400720 OPT_S_OPTIONS,
721 OPT_V_OPTIONS,
722 OPT_X_OPTIONS,
723#ifndef OPENSSL_NO_SSL3
724 {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
725#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500726#ifndef OPENSSL_NO_TLS1
727 {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
728#endif
729#ifndef OPENSSL_NO_TLS1_1
730 {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
731#endif
732#ifndef OPENSSL_NO_TLS1_2
733 {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
734#endif
Matt Caswell582a17d2016-10-21 17:39:33 +0100735#ifndef OPENSSL_NO_TLS1_3
736 {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
737#endif
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +0100738#ifndef OPENSSL_NO_DTLS
Rich Salz9a13bb32016-02-18 12:23:27 -0500739 {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
740 {"timeout", OPT_TIMEOUT, '-',
741 "Enable send/receive timeout on DTLS connections"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400742 {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
743#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500744#ifndef OPENSSL_NO_DTLS1
745 {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
746#endif
747#ifndef OPENSSL_NO_DTLS1_2
Rich Salz9a13bb32016-02-18 12:23:27 -0500748 {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500749#endif
Matt Caswell8ccc2372017-04-20 09:57:12 +0100750#ifndef OPENSSL_NO_SCTP
751 {"sctp", OPT_SCTP, '-', "Use SCTP"},
752#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400753#ifndef OPENSSL_NO_SSL_TRACE
Rich Salz9a13bb32016-02-18 12:23:27 -0500754 {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"},
Rich Salz9c3bcfa2015-05-15 13:50:38 -0400755#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400756#ifdef WATT32
757 {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
758#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400759 {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400760 {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
761 {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
Matt Caswelle261bdd2017-06-12 16:57:06 +0100762 {"psk_session", OPT_PSK_SESS, '<', "File to read PSK SSL session from"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400763#ifndef OPENSSL_NO_SRP
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100764 {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400765 {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
766 {"srp_lateuser", OPT_SRP_LATEUSER, '-',
767 "SRP username into second ClientHello message"},
768 {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
769 "Tolerate other than the known g N values."},
Rich Salz740ceb52015-07-31 11:52:57 -0400770 {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400771#endif
Matt Caswelle481f9b2015-05-15 10:49:56 +0100772#ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz7e1b7482015-04-24 15:26:15 -0400773 {"nextprotoneg", OPT_NEXTPROTONEG, 's',
774 "Enable NPN extension, considering named protocols supported (comma-separated list)"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400775#endif
Rich Salz7e1b7482015-04-24 15:26:15 -0400776#ifndef OPENSSL_NO_ENGINE
777 {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
Rich Salz9a13bb32016-02-18 12:23:27 -0500778 {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
779 "Specify engine to be used for client certificate operations"},
Rich Salz7e1b7482015-04-24 15:26:15 -0400780#endif
Rob Percivaldd696a52016-03-02 13:34:05 +0000781#ifndef OPENSSL_NO_CT
Viktor Dukhovni43341432016-04-07 14:17:37 -0400782 {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"},
Rob Percivaldd696a52016-03-02 13:34:05 +0000783 {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"},
Rob Percivaldd696a52016-03-02 13:34:05 +0000784 {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"},
785#endif
Peter Wu4bf73e92017-02-01 19:14:27 +0100786 {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
Matt Caswell923ac822017-02-20 16:00:20 +0000787 {"early_data", OPT_EARLY_DATA, '<', "File to send as early data"},
Todd Short9d75dce2017-12-18 16:52:28 -0500788 {"force_pha", OPT_FORCE_PHA, '-', "Force-enable post-handshake-authentication"},
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100789 {NULL, OPT_EOF, 0x00, NULL}
Rich Salz7e1b7482015-04-24 15:26:15 -0400790};
791
792typedef enum PROTOCOL_choice {
793 PROTO_OFF,
Matt Caswell0f113f32015-01-22 03:40:55 +0000794 PROTO_SMTP,
795 PROTO_POP3,
796 PROTO_IMAP,
797 PROTO_FTP,
Rich Salzd8c25de2015-04-25 16:01:21 -0400798 PROTO_TELNET,
Michael Trapp552bf8e2015-05-08 15:34:07 -0400799 PROTO_XMPP,
Kai Engert898ea7b2015-07-29 17:41:00 -0400800 PROTO_XMPP_SERVER,
Nathan Phillip Brinkcfb4f1e2015-05-13 16:00:21 -0400801 PROTO_CONNECT,
Valentin Vidicb2e54eb2016-02-15 15:28:41 +0100802 PROTO_IRC,
Keigo Tanakaa2d9cfb2017-05-13 09:50:49 +0900803 PROTO_MYSQL,
Robert Scheck95765452016-11-17 17:16:50 +0100804 PROTO_POSTGRES,
Robert Scheck8f85aa62017-01-28 00:52:27 +0100805 PROTO_LMTP,
Robert Scheck20967af2017-02-09 22:20:59 +0100806 PROTO_NNTP,
Robert Scheck398b0bb2017-02-27 00:44:14 +0100807 PROTO_SIEVE,
808 PROTO_LDAP
Rich Salz7e1b7482015-04-24 15:26:15 -0400809} PROTOCOL_CHOICE;
810
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100811static const OPT_PAIR services[] = {
Rich Salz7e1b7482015-04-24 15:26:15 -0400812 {"smtp", PROTO_SMTP},
813 {"pop3", PROTO_POP3},
814 {"imap", PROTO_IMAP},
815 {"ftp", PROTO_FTP},
816 {"xmpp", PROTO_XMPP},
Kai Engert898ea7b2015-07-29 17:41:00 -0400817 {"xmpp-server", PROTO_XMPP_SERVER},
Rich Salzd8c25de2015-04-25 16:01:21 -0400818 {"telnet", PROTO_TELNET},
Nathan Phillip Brinkcfb4f1e2015-05-13 16:00:21 -0400819 {"irc", PROTO_IRC},
Keigo Tanakaa2d9cfb2017-05-13 09:50:49 +0900820 {"mysql", PROTO_MYSQL},
Valentin Vidicb2e54eb2016-02-15 15:28:41 +0100821 {"postgres", PROTO_POSTGRES},
Robert Scheck95765452016-11-17 17:16:50 +0100822 {"lmtp", PROTO_LMTP},
Robert Scheck8f85aa62017-01-28 00:52:27 +0100823 {"nntp", PROTO_NNTP},
Robert Scheck20967af2017-02-09 22:20:59 +0100824 {"sieve", PROTO_SIEVE},
Robert Scheck398b0bb2017-02-27 00:44:14 +0100825 {"ldap", PROTO_LDAP},
FdaSilvaYYbde136c2016-03-18 19:02:17 +0100826 {NULL, 0}
Richard Levitte85c67492007-02-16 18:12:16 +0000827};
828
Rich Salzfe08bd72016-06-08 12:22:14 -0400829#define IS_INET_FLAG(o) \
830 (o == OPT_4 || o == OPT_6 || o == OPT_HOST || o == OPT_PORT || o == OPT_CONNECT)
831#define IS_UNIX_FLAG(o) (o == OPT_UNIX)
832
Matt Caswell4bbd4ba2016-07-07 11:05:31 +0100833#define IS_PROT_FLAG(o) \
834 (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
Matt Caswell582a17d2016-10-21 17:39:33 +0100835 || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
Matt Caswell4bbd4ba2016-07-07 11:05:31 +0100836
Rich Salz7315ce82016-06-10 11:40:32 -0400837/* Free |*dest| and optionally set it to a copy of |source|. */
838static void freeandcopy(char **dest, const char *source)
839{
840 OPENSSL_free(*dest);
841 *dest = NULL;
842 if (source != NULL)
843 *dest = OPENSSL_strdup(source);
844}
845
Matt Caswellbe62b222017-01-13 14:25:15 +0000846static int new_session_cb(SSL *S, SSL_SESSION *sess)
847{
848 BIO *stmp = BIO_new_file(sess_out, "w");
849
Matt Caswell1f5b44e2017-01-20 16:02:07 +0000850 if (stmp == NULL) {
851 BIO_printf(bio_err, "Error writing session file %s\n", sess_out);
852 } else {
Matt Caswellbe62b222017-01-13 14:25:15 +0000853 PEM_write_bio_SSL_SESSION(stmp, sess);
854 BIO_free(stmp);
Matt Caswellbe62b222017-01-13 14:25:15 +0000855 }
856
857 /*
858 * We always return a "fail" response so that the session gets freed again
859 * because we haven't used the reference.
860 */
861 return 0;
862}
863
Rich Salz7e1b7482015-04-24 15:26:15 -0400864int s_client_main(int argc, char **argv)
Matt Caswell0f113f32015-01-22 03:40:55 +0000865{
Rich Salz7e1b7482015-04-24 15:26:15 -0400866 BIO *sbio;
867 EVP_PKEY *key = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000868 SSL *con = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -0400869 SSL_CTX *ctx = NULL;
870 STACK_OF(X509) *chain = NULL;
871 X509 *cert = NULL;
872 X509_VERIFY_PARAM *vpm = NULL;
873 SSL_EXCERT *exc = NULL;
874 SSL_CONF_CTX *cctx = NULL;
875 STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500876 char *dane_tlsa_domain = NULL;
877 STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
Viktor Dukhovnic4fbed62016-08-19 11:59:47 -0400878 int dane_ee_no_name = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400879 STACK_OF(X509_CRL) *crls = NULL;
Matt Caswell13c9bb32015-03-31 00:18:31 +0100880 const SSL_METHOD *meth = TLS_client_method();
FdaSilvaYYcc696292016-08-04 23:52:22 +0200881 const char *CApath = NULL, *CAfile = NULL;
882 char *cbuf = NULL, *sbuf = NULL;
John Hughesebc01682018-02-08 10:49:02 +0100883 char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL, *bindstr = NULL;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -0500884 char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
Richard Levitteab69ac02016-02-03 00:47:42 +0100885 char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
Rich Salz7315ce82016-06-10 11:40:32 -0400886 char *port = OPENSSL_strdup(PORT);
John Hughesebc01682018-02-08 10:49:02 +0100887 char *bindhost = NULL, *bindport = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -0400888 char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
Dr. Stephen Hensond2add502017-03-20 18:32:43 +0000889 char *ReqCAfile = NULL;
Matt Caswellbe62b222017-01-13 14:25:15 +0000890 char *sess_in = NULL, *crl_file = NULL, *p;
Paul Yang81764312017-10-16 15:32:24 -0400891 const char *protohost = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -0400892 struct timeval timeout, *timeoutp;
893 fd_set readfds, writefds;
Matt Caswell2b6bcb72015-09-22 16:00:52 +0100894 int noCApath = 0, noCAfile = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400895 int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
896 int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
897 int prexit = 0;
Matt Caswell40a8e9c2016-03-18 14:17:03 +0000898 int sdebug = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400899 int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
Ben Laurie480405e2015-08-02 02:45:44 +0100900 int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
Richard Levitteab69ac02016-02-03 00:47:42 +0100901 int sbuf_len, sbuf_off, cmdletters = 1;
Matt Caswell8ccc2372017-04-20 09:57:12 +0100902 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400903 int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
904 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
Viktor Szakatsd4856402016-08-30 03:01:16 +0200905#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
John Denkera3ef2c12016-06-10 14:46:07 -0400906 int at_eof = 0;
Viktor Szakatsd4856402016-08-30 03:01:16 +0200907#endif
Matt Caswelldad78fb2016-01-13 14:20:25 +0000908 int read_buf_len = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400909 int fallback_scsv = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400910 OPTION_CHOICE o;
Matt Caswell40a8e9c2016-03-18 14:17:03 +0000911#ifndef OPENSSL_NO_DTLS
912 int enable_timeouts = 0;
913 long socket_mtu = 0;
914#endif
Richard Levitte0b13e9f2003-01-30 17:39:26 +0000915#ifndef OPENSSL_NO_ENGINE
Matt Caswell0f113f32015-01-22 03:40:55 +0000916 ENGINE *ssl_client_engine = NULL;
Rich Salz7e1b7482015-04-24 15:26:15 -0400917#endif
Rich Salz333b0702015-04-25 15:41:29 -0400918 ENGINE *e = NULL;
Rich Salz1fbab1d2016-03-17 12:53:11 -0400919#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +0000920 struct timeval tv;
Dr. Stephen Henson06f45361999-09-20 22:09:17 +0000921#endif
Matt Caswell44f19af2017-11-08 13:22:59 +0000922 const char *servername = NULL;
Matt Caswell11ba87f2017-02-13 13:26:37 +0000923 int noservername = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400924 const char *alpn_in = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +0000925 tlsextctx tlsextcbp = { NULL, 0 };
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +0100926 const char *ssl_config = NULL;
Matt Caswelle481f9b2015-05-15 10:49:56 +0100927#define MAX_SI_TYPES 100
Rich Salz7e1b7482015-04-24 15:26:15 -0400928 unsigned short serverinfo_types[MAX_SI_TYPES];
929 int serverinfo_count = 0, start = 0, len;
Matt Caswelle481f9b2015-05-15 10:49:56 +0100930#ifndef OPENSSL_NO_NEXTPROTONEG
Matt Caswell0f113f32015-01-22 03:40:55 +0000931 const char *next_proto_neg_in = NULL;
Dr. Stephen Hensoned551cd2008-11-12 17:28:18 +0000932#endif
Ben Laurieedc032b2011-03-12 17:01:19 +0000933#ifndef OPENSSL_NO_SRP
Matt Caswell0f113f32015-01-22 03:40:55 +0000934 char *srppass = NULL;
935 int srp_lateuser = 0;
936 SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
Ben Laurieedc032b2011-03-12 17:01:19 +0000937#endif
Todd Shortdad88682018-05-14 10:41:06 -0400938#ifndef OPENSSL_NO_SRTP
FdaSilvaYY1fb6b0b2018-03-21 16:01:24 -0400939 char *srtp_profiles = NULL;
Todd Shortdad88682018-05-14 10:41:06 -0400940#endif
Rob Percivaldd696a52016-03-02 13:34:05 +0000941#ifndef OPENSSL_NO_CT
942 char *ctlog_file = NULL;
Viktor Dukhovni43341432016-04-07 14:17:37 -0400943 int ct_validation = 0;
Rob Percivaldd696a52016-03-02 13:34:05 +0000944#endif
Matt Caswell4bbd4ba2016-07-07 11:05:31 +0100945 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
FdaSilvaYYfba13662016-05-10 23:39:05 +0200946 int async = 0;
FdaSilvaYY28e5ea82017-04-06 23:47:18 +0200947 unsigned int max_send_fragment = 0;
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +0200948 unsigned int split_send_fragment = 0, max_pipelines = 0;
Rich Salzfe08bd72016-06-08 12:22:14 -0400949 enum { use_inet, use_unix, use_unknown } connect_type = use_unknown;
950 int count4or6 = 0;
FdaSilvaYYcf72c752017-11-05 17:46:48 +0100951 uint8_t maxfraglen = 0;
FdaSilvaYY54463e42016-08-03 22:49:25 +0200952 int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0;
Richard Levitte057c6762016-09-19 15:08:58 +0200953 int c_tlsextdebug = 0;
954#ifndef OPENSSL_NO_OCSP
955 int c_status_req = 0;
956#endif
FdaSilvaYY54463e42016-08-03 22:49:25 +0200957 BIO *bio_c_msg = NULL;
Matt Caswell923ac822017-02-20 16:00:20 +0000958 const char *keylog_file = NULL, *early_data_file = NULL;
Todd Short9ff2ceb2017-04-26 14:42:14 -0400959#ifndef OPENSSL_NO_DTLS
Matt Caswell8ccc2372017-04-20 09:57:12 +0100960 int isdtls = 0;
Todd Short9ff2ceb2017-04-26 14:42:14 -0400961#endif
Matt Caswelle261bdd2017-06-12 16:57:06 +0100962 char *psksessf = NULL;
Todd Short9d75dce2017-12-18 16:52:28 -0500963 int force_pha = 0;
Ben Laurie36d16f82005-04-26 16:02:40 +0000964
Emilia Kasperefc943b2016-02-22 16:58:36 +0100965 FD_ZERO(&readfds);
966 FD_ZERO(&writefds);
967/* Known false-positive of MemorySanitizer. */
968#if defined(__has_feature)
969# if __has_feature(memory_sanitizer)
970 __msan_unpoison(&readfds, sizeof(readfds));
971 __msan_unpoison(&writefds, sizeof(writefds));
972# endif
973#endif
974
Rich Salz7e1b7482015-04-24 15:26:15 -0400975 prog = opt_progname(argv[0]);
Matt Caswell0f113f32015-01-22 03:40:55 +0000976 c_quiet = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000977 c_debug = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000978 c_showcerts = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400979 c_nbio = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -0400980 vpm = X509_VERIFY_PARAM_new();
Matt Caswell0f113f32015-01-22 03:40:55 +0000981 cctx = SSL_CONF_CTX_new();
Dr. Stephen Henson3647bee2002-02-22 14:01:21 +0000982
Rich Salz68dc6822015-04-30 17:48:31 -0400983 if (vpm == NULL || cctx == NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -0400984 BIO_printf(bio_err, "%s: out of memory\n", prog);
Matt Caswell0f113f32015-01-22 03:40:55 +0000985 goto end;
986 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000987
FdaSilvaYYacc00492016-08-01 21:30:57 +0200988 cbuf = app_malloc(BUFSIZZ, "cbuf");
989 sbuf = app_malloc(BUFSIZZ, "sbuf");
990 mbuf = app_malloc(BUFSIZZ, "mbuf");
991
Rich Salz7e1b7482015-04-24 15:26:15 -0400992 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000993
Rich Salz7e1b7482015-04-24 15:26:15 -0400994 prog = opt_init(argc, argv, s_client_options);
995 while ((o = opt_next()) != OPT_EOF) {
Rich Salzfe08bd72016-06-08 12:22:14 -0400996 /* Check for intermixing flags. */
997 if (connect_type == use_unix && IS_INET_FLAG(o)) {
998 BIO_printf(bio_err,
FdaSilvaYYd6073e22016-08-07 12:04:26 +0200999 "%s: Intermixed protocol flags (unix and internet domains)\n",
1000 prog);
Rich Salzfe08bd72016-06-08 12:22:14 -04001001 goto end;
1002 }
1003 if (connect_type == use_inet && IS_UNIX_FLAG(o)) {
1004 BIO_printf(bio_err,
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001005 "%s: Intermixed protocol flags (internet and unix domains)\n",
1006 prog);
Rich Salzfe08bd72016-06-08 12:22:14 -04001007 goto end;
1008 }
Matt Caswell4bbd4ba2016-07-07 11:05:31 +01001009
1010 if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
1011 BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
1012 goto end;
1013 }
1014 if (IS_NO_PROT_FLAG(o))
1015 no_prot_opt++;
1016 if (prot_opt == 1 && no_prot_opt) {
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001017 BIO_printf(bio_err,
1018 "Cannot supply both a protocol flag and '-no_<prot>'\n");
Matt Caswell4bbd4ba2016-07-07 11:05:31 +01001019 goto end;
1020 }
1021
Rich Salz7e1b7482015-04-24 15:26:15 -04001022 switch (o) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001023 case OPT_EOF:
1024 case OPT_ERR:
1025 opthelp:
1026 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1027 goto end;
1028 case OPT_HELP:
1029 opt_help(s_client_options);
1030 ret = 0;
1031 goto end;
Richard Levitteab69ac02016-02-03 00:47:42 +01001032 case OPT_4:
Rich Salzfe08bd72016-06-08 12:22:14 -04001033 connect_type = use_inet;
Richard Levitteab69ac02016-02-03 00:47:42 +01001034 socket_family = AF_INET;
Rich Salzfe08bd72016-06-08 12:22:14 -04001035 count4or6++;
Richard Levitteab69ac02016-02-03 00:47:42 +01001036 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001037#ifdef AF_INET6
Rich Salzfe08bd72016-06-08 12:22:14 -04001038 case OPT_6:
1039 connect_type = use_inet;
1040 socket_family = AF_INET6;
1041 count4or6++;
Richard Levitteab69ac02016-02-03 00:47:42 +01001042 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001043#endif
Rich Salzfe08bd72016-06-08 12:22:14 -04001044 case OPT_HOST:
1045 connect_type = use_inet;
Rich Salz7315ce82016-06-10 11:40:32 -04001046 freeandcopy(&host, opt_arg());
Rich Salz7e1b7482015-04-24 15:26:15 -04001047 break;
1048 case OPT_PORT:
Rich Salzfe08bd72016-06-08 12:22:14 -04001049 connect_type = use_inet;
Rich Salz7315ce82016-06-10 11:40:32 -04001050 freeandcopy(&port, opt_arg());
Rich Salz7e1b7482015-04-24 15:26:15 -04001051 break;
1052 case OPT_CONNECT:
Rich Salzfe08bd72016-06-08 12:22:14 -04001053 connect_type = use_inet;
Rich Salz7315ce82016-06-10 11:40:32 -04001054 freeandcopy(&connectstr, opt_arg());
Michael Trapp552bf8e2015-05-08 15:34:07 -04001055 break;
John Hughesebc01682018-02-08 10:49:02 +01001056 case OPT_BIND:
1057 freeandcopy(&bindstr, opt_arg());
1058 break;
Michael Trapp552bf8e2015-05-08 15:34:07 -04001059 case OPT_PROXY:
1060 proxystr = opt_arg();
1061 starttls_proto = PROTO_CONNECT;
Rich Salz7e1b7482015-04-24 15:26:15 -04001062 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001063#ifdef AF_UNIX
Rich Salz7e1b7482015-04-24 15:26:15 -04001064 case OPT_UNIX:
Rich Salzfe08bd72016-06-08 12:22:14 -04001065 connect_type = use_unix;
Richard Levitteab69ac02016-02-03 00:47:42 +01001066 socket_family = AF_UNIX;
Rich Salz7315ce82016-06-10 11:40:32 -04001067 freeandcopy(&host, opt_arg());
Rich Salz7e1b7482015-04-24 15:26:15 -04001068 break;
Richard Levitteab69ac02016-02-03 00:47:42 +01001069#endif
Rich Salzd8c25de2015-04-25 16:01:21 -04001070 case OPT_XMPPHOST:
Paul Yang81764312017-10-16 15:32:24 -04001071 /* fall through, since this is an alias */
1072 case OPT_PROTOHOST:
1073 protohost = opt_arg();
Rich Salzd8c25de2015-04-25 16:01:21 -04001074 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001075 case OPT_VERIFY:
Matt Caswell0f113f32015-01-22 03:40:55 +00001076 verify = SSL_VERIFY_PEER;
FdaSilvaYYacc00492016-08-01 21:30:57 +02001077 verify_args.depth = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001078 if (!c_quiet)
FdaSilvaYYacc00492016-08-01 21:30:57 +02001079 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
Rich Salz7e1b7482015-04-24 15:26:15 -04001080 break;
1081 case OPT_CERT:
1082 cert_file = opt_arg();
1083 break;
Dmitry Belyavskiya7c04f22017-02-21 14:22:55 +03001084 case OPT_NAMEOPT:
1085 if (!set_nameopt(opt_arg()))
1086 goto end;
1087 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001088 case OPT_CRL:
1089 crl_file = opt_arg();
1090 break;
1091 case OPT_CRL_DOWNLOAD:
Matt Caswell0f113f32015-01-22 03:40:55 +00001092 crl_download = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001093 break;
1094 case OPT_SESS_OUT:
1095 sess_out = opt_arg();
1096 break;
1097 case OPT_SESS_IN:
1098 sess_in = opt_arg();
1099 break;
1100 case OPT_CERTFORM:
1101 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1102 goto opthelp;
1103 break;
1104 case OPT_CRLFORM:
1105 if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1106 goto opthelp;
1107 break;
1108 case OPT_VERIFY_RET_ERROR:
FdaSilvaYYacc00492016-08-01 21:30:57 +02001109 verify_args.return_error = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001110 break;
1111 case OPT_VERIFY_QUIET:
FdaSilvaYYacc00492016-08-01 21:30:57 +02001112 verify_args.quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001113 break;
1114 case OPT_BRIEF:
FdaSilvaYYacc00492016-08-01 21:30:57 +02001115 c_brief = verify_args.quiet = c_quiet = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001116 break;
1117 case OPT_S_CASES:
1118 if (ssl_args == NULL)
1119 ssl_args = sk_OPENSSL_STRING_new_null();
1120 if (ssl_args == NULL
1121 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1122 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1123 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1124 goto end;
1125 }
1126 break;
1127 case OPT_V_CASES:
1128 if (!opt_verify(o, vpm))
1129 goto end;
1130 vpmtouched++;
1131 break;
1132 case OPT_X_CASES:
1133 if (!args_excert(o, &exc))
1134 goto end;
1135 break;
1136 case OPT_PREXIT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001137 prexit = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001138 break;
1139 case OPT_CRLF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001140 crlf = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001141 break;
1142 case OPT_QUIET:
1143 c_quiet = c_ign_eof = 1;
1144 break;
1145 case OPT_NBIO:
1146 c_nbio = 1;
1147 break;
Rich Salz6ba8a5b2015-04-25 15:58:22 -04001148 case OPT_NOCMDS:
1149 cmdletters = 0;
1150 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001151 case OPT_ENGINE:
Rich Salz333b0702015-04-25 15:41:29 -04001152 e = setup_engine(opt_arg(), 1);
Rich Salz7e1b7482015-04-24 15:26:15 -04001153 break;
1154 case OPT_SSL_CLIENT_ENGINE:
Rich Salz333b0702015-04-25 15:41:29 -04001155#ifndef OPENSSL_NO_ENGINE
1156 ssl_client_engine = ENGINE_by_id(opt_arg());
1157 if (ssl_client_engine == NULL) {
1158 BIO_printf(bio_err, "Error getting client auth engine\n");
1159 goto opthelp;
1160 }
Rich Salz333b0702015-04-25 15:41:29 -04001161#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001162 break;
Rich Salz3ee1eac2017-07-05 10:58:48 -04001163 case OPT_R_CASES:
1164 if (!opt_rand(o))
1165 goto end;
Rich Salz7e1b7482015-04-24 15:26:15 -04001166 break;
1167 case OPT_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001168 c_ign_eof = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001169 break;
1170 case OPT_NO_IGN_EOF:
Matt Caswell0f113f32015-01-22 03:40:55 +00001171 c_ign_eof = 0;
Rich Salz7e1b7482015-04-24 15:26:15 -04001172 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001173 case OPT_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001174 c_debug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001175 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001176 case OPT_TLSEXTDEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001177 c_tlsextdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001178 break;
1179 case OPT_STATUS:
Richard Levitte057c6762016-09-19 15:08:58 +02001180#ifndef OPENSSL_NO_OCSP
Matt Caswell0f113f32015-01-22 03:40:55 +00001181 c_status_req = 1;
Richard Levitte057c6762016-09-19 15:08:58 +02001182#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001183 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001184 case OPT_WDEBUG:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001185#ifdef WATT32
Matt Caswell0f113f32015-01-22 03:40:55 +00001186 dbug_init();
Rich Salzf642ebc2014-08-09 08:02:20 -04001187#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001188 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001189 case OPT_MSG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001190 c_msg = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001191 break;
1192 case OPT_MSGFILE:
1193 bio_c_msg = BIO_new_file(opt_arg(), "w");
1194 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001195 case OPT_TRACE:
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001196#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00001197 c_msg = 2;
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00001198#endif
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001199 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001200 case OPT_SECURITY_DEBUG:
Matt Caswell0f113f32015-01-22 03:40:55 +00001201 sdebug = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001202 break;
1203 case OPT_SECURITY_DEBUG_VERBOSE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001204 sdebug = 2;
Rich Salz7e1b7482015-04-24 15:26:15 -04001205 break;
1206 case OPT_SHOWCERTS:
Matt Caswell0f113f32015-01-22 03:40:55 +00001207 c_showcerts = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001208 break;
1209 case OPT_NBIO_TEST:
Matt Caswell0f113f32015-01-22 03:40:55 +00001210 nbio_test = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001211 break;
1212 case OPT_STATE:
Matt Caswell0f113f32015-01-22 03:40:55 +00001213 state = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001214 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001215 case OPT_PSK_IDENTITY:
1216 psk_identity = opt_arg();
1217 break;
1218 case OPT_PSK:
1219 for (p = psk_key = opt_arg(); *p; p++) {
Richard Levitte18295f02016-02-14 13:02:15 +01001220 if (isxdigit(_UC(*p)))
Matt Caswell0f113f32015-01-22 03:40:55 +00001221 continue;
Rich Salz7e1b7482015-04-24 15:26:15 -04001222 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1223 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001224 }
Dr. Stephen Henson13cbe5e2015-06-25 04:05:07 +01001225 break;
Matt Caswelle261bdd2017-06-12 16:57:06 +01001226 case OPT_PSK_SESS:
1227 psksessf = opt_arg();
1228 break;
Ben Laurieedc032b2011-03-12 17:01:19 +00001229#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001230 case OPT_SRPUSER:
1231 srp_arg.srplogin = opt_arg();
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001232 if (min_version < TLS1_VERSION)
1233 min_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001234 break;
1235 case OPT_SRPPASS:
1236 srppass = opt_arg();
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001237 if (min_version < TLS1_VERSION)
1238 min_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001239 break;
1240 case OPT_SRP_STRENGTH:
1241 srp_arg.strength = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001242 BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1243 srp_arg.strength);
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001244 if (min_version < TLS1_VERSION)
1245 min_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001246 break;
1247 case OPT_SRP_LATEUSER:
Matt Caswell0f113f32015-01-22 03:40:55 +00001248 srp_lateuser = 1;
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001249 if (min_version < TLS1_VERSION)
1250 min_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001251 break;
1252 case OPT_SRP_MOREGROUPS:
Matt Caswell0f113f32015-01-22 03:40:55 +00001253 srp_arg.amp = 1;
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001254 if (min_version < TLS1_VERSION)
1255 min_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001256 break;
Ben Laurieedc032b2011-03-12 17:01:19 +00001257#endif
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001258 case OPT_SSL_CONFIG:
1259 ssl_config = opt_arg();
1260 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001261 case OPT_SSL3:
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001262 min_version = SSL3_VERSION;
1263 max_version = SSL3_VERSION;
Rich Salz9c3bcfa2015-05-15 13:50:38 -04001264 break;
Matt Caswell582a17d2016-10-21 17:39:33 +01001265 case OPT_TLS1_3:
1266 min_version = TLS1_3_VERSION;
1267 max_version = TLS1_3_VERSION;
1268 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001269 case OPT_TLS1_2:
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001270 min_version = TLS1_2_VERSION;
1271 max_version = TLS1_2_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001272 break;
1273 case OPT_TLS1_1:
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001274 min_version = TLS1_1_VERSION;
1275 max_version = TLS1_1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001276 break;
1277 case OPT_TLS1:
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001278 min_version = TLS1_VERSION;
1279 max_version = TLS1_VERSION;
Rich Salz7e1b7482015-04-24 15:26:15 -04001280 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001281 case OPT_DTLS:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001282#ifndef OPENSSL_NO_DTLS
Matt Caswell0f113f32015-01-22 03:40:55 +00001283 meth = DTLS_client_method();
1284 socket_type = SOCK_DGRAM;
Matt Caswell8ccc2372017-04-20 09:57:12 +01001285 isdtls = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001286#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001287 break;
1288 case OPT_DTLS1:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001289#ifndef OPENSSL_NO_DTLS1
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001290 meth = DTLS_client_method();
1291 min_version = DTLS1_VERSION;
1292 max_version = DTLS1_VERSION;
Matt Caswell0f113f32015-01-22 03:40:55 +00001293 socket_type = SOCK_DGRAM;
Matt Caswell8ccc2372017-04-20 09:57:12 +01001294 isdtls = 1;
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001295#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001296 break;
1297 case OPT_DTLS1_2:
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001298#ifndef OPENSSL_NO_DTLS1_2
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001299 meth = DTLS_client_method();
1300 min_version = DTLS1_2_VERSION;
1301 max_version = DTLS1_2_VERSION;
Matt Caswell0f113f32015-01-22 03:40:55 +00001302 socket_type = SOCK_DGRAM;
Matt Caswell8ccc2372017-04-20 09:57:12 +01001303 isdtls = 1;
1304#endif
1305 break;
1306 case OPT_SCTP:
1307#ifndef OPENSSL_NO_SCTP
1308 protocol = IPPROTO_SCTP;
Ben Laurie36d16f82005-04-26 16:02:40 +00001309#endif
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -05001310 break;
1311 case OPT_TIMEOUT:
1312#ifndef OPENSSL_NO_DTLS
1313 enable_timeouts = 1;
1314#endif
1315 break;
1316 case OPT_MTU:
1317#ifndef OPENSSL_NO_DTLS
1318 socket_mtu = atol(opt_arg());
1319#endif
1320 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001321 case OPT_FALLBACKSCSV:
Matt Caswell0f113f32015-01-22 03:40:55 +00001322 fallback_scsv = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001323 break;
1324 case OPT_KEYFORM:
David Woodhousea6972f32016-09-28 13:07:52 +01001325 if (!opt_format(opt_arg(), OPT_FMT_PDE, &key_format))
Rich Salz7e1b7482015-04-24 15:26:15 -04001326 goto opthelp;
1327 break;
1328 case OPT_PASS:
1329 passarg = opt_arg();
1330 break;
1331 case OPT_CERT_CHAIN:
1332 chain_file = opt_arg();
1333 break;
1334 case OPT_KEY:
1335 key_file = opt_arg();
1336 break;
1337 case OPT_RECONNECT:
Matt Caswell0f113f32015-01-22 03:40:55 +00001338 reconnect = 5;
Rich Salz7e1b7482015-04-24 15:26:15 -04001339 break;
1340 case OPT_CAPATH:
1341 CApath = opt_arg();
1342 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001343 case OPT_NOCAPATH:
1344 noCApath = 1;
1345 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001346 case OPT_CHAINCAPATH:
1347 chCApath = opt_arg();
1348 break;
1349 case OPT_VERIFYCAPATH:
1350 vfyCApath = opt_arg();
1351 break;
1352 case OPT_BUILD_CHAIN:
Matt Caswell0f113f32015-01-22 03:40:55 +00001353 build_chain = 1;
Rich Salz7e1b7482015-04-24 15:26:15 -04001354 break;
Dr. Stephen Hensond2add502017-03-20 18:32:43 +00001355 case OPT_REQCAFILE:
1356 ReqCAfile = opt_arg();
1357 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001358 case OPT_CAFILE:
1359 CAfile = opt_arg();
1360 break;
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001361 case OPT_NOCAFILE:
1362 noCAfile = 1;
1363 break;
Rob Percivaldd696a52016-03-02 13:34:05 +00001364#ifndef OPENSSL_NO_CT
1365 case OPT_NOCT:
Viktor Dukhovni43341432016-04-07 14:17:37 -04001366 ct_validation = 0;
Rob Percivaldd696a52016-03-02 13:34:05 +00001367 break;
Viktor Dukhovni43341432016-04-07 14:17:37 -04001368 case OPT_CT:
1369 ct_validation = 1;
Rob Percivaldd696a52016-03-02 13:34:05 +00001370 break;
1371 case OPT_CTLOG_FILE:
1372 ctlog_file = opt_arg();
1373 break;
1374#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001375 case OPT_CHAINCAFILE:
1376 chCAfile = opt_arg();
1377 break;
1378 case OPT_VERIFYCAFILE:
1379 vfyCAfile = opt_arg();
1380 break;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001381 case OPT_DANE_TLSA_DOMAIN:
1382 dane_tlsa_domain = opt_arg();
1383 break;
1384 case OPT_DANE_TLSA_RRDATA:
1385 if (dane_tlsa_rrset == NULL)
1386 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1387 if (dane_tlsa_rrset == NULL ||
1388 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1389 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1390 goto end;
1391 }
1392 break;
Viktor Dukhovnic4fbed62016-08-19 11:59:47 -04001393 case OPT_DANE_EE_NO_NAME:
1394 dane_ee_no_name = 1;
1395 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001396 case OPT_NEXTPROTONEG:
Matt Caswell1595ca02016-04-11 11:41:19 +01001397#ifndef OPENSSL_NO_NEXTPROTONEG
Rich Salz7e1b7482015-04-24 15:26:15 -04001398 next_proto_neg_in = opt_arg();
Matt Caswell1595ca02016-04-11 11:41:19 +01001399#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001400 break;
1401 case OPT_ALPN:
1402 alpn_in = opt_arg();
1403 break;
1404 case OPT_SERVERINFO:
1405 p = opt_arg();
1406 len = strlen(p);
1407 for (start = 0, i = 0; i <= len; ++i) {
1408 if (i == len || p[i] == ',') {
1409 serverinfo_types[serverinfo_count] = atoi(p + start);
1410 if (++serverinfo_count == MAX_SI_TYPES)
1411 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00001412 start = i + 1;
1413 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001414 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001415 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001416 case OPT_STARTTLS:
1417 if (!opt_pair(opt_arg(), services, &starttls_proto))
1418 goto end;
Matt Caswell46da5f92016-04-15 14:11:09 +01001419 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001420 case OPT_SERVERNAME:
1421 servername = opt_arg();
Rich Salz7e1b7482015-04-24 15:26:15 -04001422 break;
Matt Caswell11ba87f2017-02-13 13:26:37 +00001423 case OPT_NOSERVERNAME:
1424 noservername = 1;
1425 break;
Rich Salz7e1b7482015-04-24 15:26:15 -04001426 case OPT_USE_SRTP:
Todd Shortdad88682018-05-14 10:41:06 -04001427#ifndef OPENSSL_NO_SRTP
Rich Salz7e1b7482015-04-24 15:26:15 -04001428 srtp_profiles = opt_arg();
Todd Shortdad88682018-05-14 10:41:06 -04001429#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001430 break;
1431 case OPT_KEYMATEXPORT:
1432 keymatexportlabel = opt_arg();
1433 break;
1434 case OPT_KEYMATEXPORTLEN:
1435 keymatexportlen = atoi(opt_arg());
Matt Caswell0f113f32015-01-22 03:40:55 +00001436 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00001437 case OPT_ASYNC:
1438 async = 1;
1439 break;
FdaSilvaYYcf72c752017-11-05 17:46:48 +01001440 case OPT_MAXFRAGLEN:
1441 len = atoi(opt_arg());
1442 switch (len) {
1443 case 512:
1444 maxfraglen = TLSEXT_max_fragment_length_512;
1445 break;
1446 case 1024:
1447 maxfraglen = TLSEXT_max_fragment_length_1024;
1448 break;
1449 case 2048:
1450 maxfraglen = TLSEXT_max_fragment_length_2048;
1451 break;
1452 case 4096:
1453 maxfraglen = TLSEXT_max_fragment_length_4096;
1454 break;
1455 default:
1456 BIO_printf(bio_err,
1457 "%s: Max Fragment Len %u is out of permitted values",
1458 prog, len);
1459 goto opthelp;
1460 }
1461 break;
FdaSilvaYY28e5ea82017-04-06 23:47:18 +02001462 case OPT_MAX_SEND_FRAG:
1463 max_send_fragment = atoi(opt_arg());
FdaSilvaYY28e5ea82017-04-06 23:47:18 +02001464 break;
Matt Caswell032c6d22015-09-22 11:23:33 +01001465 case OPT_SPLIT_SEND_FRAG:
1466 split_send_fragment = atoi(opt_arg());
Matt Caswell032c6d22015-09-22 11:23:33 +01001467 break;
1468 case OPT_MAX_PIPELINES:
1469 max_pipelines = atoi(opt_arg());
1470 break;
Matt Caswelldad78fb2016-01-13 14:20:25 +00001471 case OPT_READ_BUF:
1472 read_buf_len = atoi(opt_arg());
1473 break;
Peter Wu4bf73e92017-02-01 19:14:27 +01001474 case OPT_KEYLOG_FILE:
1475 keylog_file = opt_arg();
1476 break;
Matt Caswell923ac822017-02-20 16:00:20 +00001477 case OPT_EARLY_DATA:
1478 early_data_file = opt_arg();
1479 break;
Todd Short9d75dce2017-12-18 16:52:28 -05001480 case OPT_FORCE_PHA:
1481 force_pha = 1;
1482 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00001483 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001484 }
Rich Salzfe08bd72016-06-08 12:22:14 -04001485 if (count4or6 >= 2) {
1486 BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog);
1487 goto opthelp;
1488 }
Matt Caswell11ba87f2017-02-13 13:26:37 +00001489 if (noservername) {
1490 if (servername != NULL) {
1491 BIO_printf(bio_err,
1492 "%s: Can't use -servername and -noservername together\n",
1493 prog);
1494 goto opthelp;
1495 }
1496 if (dane_tlsa_domain != NULL) {
1497 BIO_printf(bio_err,
1498 "%s: Can't use -dane_tlsa_domain and -noservername together\n",
1499 prog);
1500 goto opthelp;
1501 }
1502 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001503 argc = opt_num_rest();
Cory Benfield729ef852016-06-04 20:46:38 -07001504 if (argc == 1) {
1505 /* If there's a positional argument, it's the equivalent of
1506 * OPT_CONNECT.
1507 * Don't allow -connect and a separate argument.
1508 */
1509 if (connectstr != NULL) {
1510 BIO_printf(bio_err,
1511 "%s: must not provide both -connect option and target parameter\n",
1512 prog);
1513 goto opthelp;
1514 }
1515 connect_type = use_inet;
Matt Caswell222417e2017-07-07 15:51:02 +01001516 freeandcopy(&connectstr, *opt_rest());
Cory Benfield729ef852016-06-04 20:46:38 -07001517 } else if (argc != 0) {
Kurt Roeckx03358512016-02-14 20:45:02 +01001518 goto opthelp;
Cory Benfield729ef852016-06-04 20:46:38 -07001519 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001520
Paul Yang837f87c2017-06-16 18:12:02 +08001521#ifndef OPENSSL_NO_NEXTPROTONEG
1522 if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) {
1523 BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n");
1524 goto opthelp;
1525 }
1526#endif
Paul Yang22342122017-06-13 01:24:02 +08001527 if (proxystr != NULL) {
Richard Levitteab69ac02016-02-03 00:47:42 +01001528 int res;
1529 char *tmp_host = host, *tmp_port = port;
Michael Trapp552bf8e2015-05-08 15:34:07 -04001530 if (connectstr == NULL) {
Cory Benfield729ef852016-06-04 20:46:38 -07001531 BIO_printf(bio_err, "%s: -proxy requires use of -connect or target parameter\n", prog);
Michael Trapp552bf8e2015-05-08 15:34:07 -04001532 goto opthelp;
1533 }
Richard Levitteab69ac02016-02-03 00:47:42 +01001534 res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1535 if (tmp_host != host)
1536 OPENSSL_free(tmp_host);
1537 if (tmp_port != port)
1538 OPENSSL_free(tmp_port);
1539 if (!res) {
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001540 BIO_printf(bio_err,
1541 "%s: -proxy argument malformed or ambiguous\n", prog);
Michael Trapp552bf8e2015-05-08 15:34:07 -04001542 goto end;
Richard Levitteab69ac02016-02-03 00:47:42 +01001543 }
1544 } else {
1545 int res = 1;
1546 char *tmp_host = host, *tmp_port = port;
1547 if (connectstr != NULL)
1548 res = BIO_parse_hostserv(connectstr, &host, &port,
1549 BIO_PARSE_PRIO_HOST);
1550 if (tmp_host != host)
1551 OPENSSL_free(tmp_host);
1552 if (tmp_port != port)
1553 OPENSSL_free(tmp_port);
1554 if (!res) {
1555 BIO_printf(bio_err,
Cory Benfield729ef852016-06-04 20:46:38 -07001556 "%s: -connect argument or target parameter malformed or ambiguous\n",
Richard Levitteab69ac02016-02-03 00:47:42 +01001557 prog);
1558 goto end;
1559 }
Michael Trapp552bf8e2015-05-08 15:34:07 -04001560 }
Michael Trapp552bf8e2015-05-08 15:34:07 -04001561
John Hughesebc01682018-02-08 10:49:02 +01001562 if (bindstr != NULL) {
1563 int res;
1564 res = BIO_parse_hostserv(bindstr, &bindhost, &bindport,
1565 BIO_PARSE_PRIO_HOST);
1566 if (!res) {
1567 BIO_printf(bio_err,
1568 "%s: -bind argument parameter malformed or ambiguous\n",
1569 prog);
1570 goto end;
1571 }
1572 }
1573
Balaji Marisetti326eaa92017-08-01 16:54:13 +05301574#ifdef AF_UNIX
Richard Levitteab69ac02016-02-03 00:47:42 +01001575 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001576 BIO_printf(bio_err,
1577 "Can't use unix sockets and datagrams together\n");
1578 goto end;
1579 }
Balaji Marisetti326eaa92017-08-01 16:54:13 +05301580#endif
Ben Laurief3b7bda2008-11-16 12:47:12 +00001581
Matt Caswell8ccc2372017-04-20 09:57:12 +01001582#ifndef OPENSSL_NO_SCTP
1583 if (protocol == IPPROTO_SCTP) {
1584 if (socket_type != SOCK_DGRAM) {
1585 BIO_printf(bio_err, "Can't use -sctp without DTLS\n");
1586 goto end;
1587 }
1588 /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */
1589 socket_type = SOCK_STREAM;
1590 }
1591#endif
Matt Caswell032c6d22015-09-22 11:23:33 +01001592
Matt Caswelle481f9b2015-05-15 10:49:56 +01001593#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00001594 next_proto.status = -1;
1595 if (next_proto_neg_in) {
1596 next_proto.data =
1597 next_protos_parse(&next_proto.len, next_proto_neg_in);
1598 if (next_proto.data == NULL) {
1599 BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1600 goto end;
1601 }
1602 } else
1603 next_proto.data = NULL;
Ben Laurieee2ffc22010-07-28 10:06:55 +00001604#endif
1605
Rich Salz7e1b7482015-04-24 15:26:15 -04001606 if (!app_passwd(passarg, NULL, &pass, NULL)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001607 BIO_printf(bio_err, "Error getting password\n");
1608 goto end;
1609 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001610
Matt Caswell0f113f32015-01-22 03:40:55 +00001611 if (key_file == NULL)
1612 key_file = cert_file;
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001613
Paul Yang22342122017-06-13 01:24:02 +08001614 if (key_file != NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001615 key = load_key(key_file, key_format, 0, pass, e,
Matt Caswell0f113f32015-01-22 03:40:55 +00001616 "client certificate private key file");
Rich Salz7e1b7482015-04-24 15:26:15 -04001617 if (key == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001618 ERR_print_errors(bio_err);
1619 goto end;
1620 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001621 }
Dr. Stephen Hensonabbc1862004-12-13 18:02:23 +00001622
Paul Yang22342122017-06-13 01:24:02 +08001623 if (cert_file != NULL) {
Rich Salza773b522016-02-13 22:33:56 -05001624 cert = load_cert(cert_file, cert_format, "client certificate file");
Rich Salz7e1b7482015-04-24 15:26:15 -04001625 if (cert == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001626 ERR_print_errors(bio_err);
1627 goto end;
1628 }
1629 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001630
Paul Yang22342122017-06-13 01:24:02 +08001631 if (chain_file != NULL) {
Rich Salza773b522016-02-13 22:33:56 -05001632 if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL,
Viktor Dukhovni0996dc52016-01-16 00:08:38 -05001633 "client certificate chain"))
Matt Caswell0f113f32015-01-22 03:40:55 +00001634 goto end;
1635 }
Dr. Stephen Henson826a42a2004-11-16 17:30:59 +00001636
Paul Yang22342122017-06-13 01:24:02 +08001637 if (crl_file != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001638 X509_CRL *crl;
1639 crl = load_crl(crl_file, crl_format);
Rich Salz7e1b7482015-04-24 15:26:15 -04001640 if (crl == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001641 BIO_puts(bio_err, "Error loading CRL\n");
1642 ERR_print_errors(bio_err);
1643 goto end;
1644 }
1645 crls = sk_X509_CRL_new_null();
Rich Salz7e1b7482015-04-24 15:26:15 -04001646 if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001647 BIO_puts(bio_err, "Error adding CRL\n");
1648 ERR_print_errors(bio_err);
1649 X509_CRL_free(crl);
1650 goto end;
1651 }
1652 }
Dr. Stephen Hensonabbc1862004-12-13 18:02:23 +00001653
Rich Salz7e1b7482015-04-24 15:26:15 -04001654 if (!load_excert(&exc))
Matt Caswell0f113f32015-01-22 03:40:55 +00001655 goto end;
Richard Levittecead7f32002-07-16 06:52:03 +00001656
Matt Caswell0f113f32015-01-22 03:40:55 +00001657 if (bio_c_out == NULL) {
1658 if (c_quiet && !c_debug) {
1659 bio_c_out = BIO_new(BIO_s_null());
Paul Yang22342122017-06-13 01:24:02 +08001660 if (c_msg && bio_c_msg == NULL)
Richard Levittea60994d2015-09-06 12:20:12 +02001661 bio_c_msg = dup_bio_out(FORMAT_TEXT);
Rich Salz7e1b7482015-04-24 15:26:15 -04001662 } else if (bio_c_out == NULL)
Richard Levittea60994d2015-09-06 12:20:12 +02001663 bio_c_out = dup_bio_out(FORMAT_TEXT);
Matt Caswell0f113f32015-01-22 03:40:55 +00001664 }
Ben Laurieedc032b2011-03-12 17:01:19 +00001665#ifndef OPENSSL_NO_SRP
Rich Salz7e1b7482015-04-24 15:26:15 -04001666 if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001667 BIO_printf(bio_err, "Error getting password\n");
1668 goto end;
1669 }
Ben Laurieedc032b2011-03-12 17:01:19 +00001670#endif
1671
Matt Caswell0f113f32015-01-22 03:40:55 +00001672 ctx = SSL_CTX_new(meth);
1673 if (ctx == NULL) {
1674 ERR_print_errors(bio_err);
1675 goto end;
1676 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001677
Kurt Roeckx693cf802018-05-15 19:01:41 +02001678 SSL_CTX_clear_mode(ctx, SSL_MODE_AUTO_RETRY);
1679
Matt Caswell0f113f32015-01-22 03:40:55 +00001680 if (sdebug)
Rich Salzecf3a1f2015-04-29 11:27:08 -04001681 ssl_ctx_security_debug(ctx, sdebug);
Dr. Stephen Hensone03c5b52014-02-17 00:10:00 +00001682
Richard Levitte8f8be102018-03-19 20:33:50 +01001683 if (!config_ctx(cctx, ssl_args, ctx))
1684 goto end;
1685
Paul Yang22342122017-06-13 01:24:02 +08001686 if (ssl_config != NULL) {
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001687 if (SSL_CTX_config(ctx, ssl_config) == 0) {
1688 BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1689 ssl_config);
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001690 ERR_print_errors(bio_err);
1691 goto end;
Dr. Stephen Henson287d0b92015-07-08 23:09:52 +01001692 }
1693 }
1694
Richard Levitte8f8be102018-03-19 20:33:50 +01001695 if (min_version != 0
1696 && SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001697 goto end;
Richard Levitte8f8be102018-03-19 20:33:50 +01001698 if (max_version != 0
1699 && SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
Kurt Roeckx0d5301a2016-02-02 23:58:49 +01001700 goto end;
1701
Rich Salz7e1b7482015-04-24 15:26:15 -04001702 if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001703 BIO_printf(bio_err, "Error setting verify params\n");
1704 ERR_print_errors(bio_err);
1705 goto end;
1706 }
Dr. Stephen Hensondb997792009-06-30 15:56:35 +00001707
Matt Caswell5e6f9772015-09-16 23:09:15 +01001708 if (async) {
Matt Caswell7e25dd62015-02-13 23:33:12 +00001709 SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
Matt Caswell5e6f9772015-09-16 23:09:15 +01001710 }
FdaSilvaYY28e5ea82017-04-06 23:47:18 +02001711
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +02001712 if (max_send_fragment > 0
1713 && !SSL_CTX_set_max_send_fragment(ctx, max_send_fragment)) {
1714 BIO_printf(bio_err, "%s: Max send fragment size %u is out of permitted range\n",
1715 prog, max_send_fragment);
1716 goto end;
Matt Caswell032c6d22015-09-22 11:23:33 +01001717 }
FdaSilvaYY36b2cfb2017-04-07 19:15:38 +02001718
1719 if (split_send_fragment > 0
1720 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1721 BIO_printf(bio_err, "%s: Split send fragment size %u is out of permitted range\n",
1722 prog, split_send_fragment);
1723 goto end;
1724 }
1725
1726 if (max_pipelines > 0
1727 && !SSL_CTX_set_max_pipelines(ctx, max_pipelines)) {
1728 BIO_printf(bio_err, "%s: Max pipelines %u is out of permitted range\n",
1729 prog, max_pipelines);
1730 goto end;
Matt Caswell032c6d22015-09-22 11:23:33 +01001731 }
Matt Caswell7e25dd62015-02-13 23:33:12 +00001732
Matt Caswelldad78fb2016-01-13 14:20:25 +00001733 if (read_buf_len > 0) {
1734 SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1735 }
1736
FdaSilvaYYcf72c752017-11-05 17:46:48 +01001737 if (maxfraglen > 0
1738 && !SSL_CTX_set_tlsext_max_fragment_length(ctx, maxfraglen)) {
1739 BIO_printf(bio_err,
1740 "%s: Max Fragment Length code %u is out of permitted values"
1741 "\n", prog, maxfraglen);
1742 goto end;
1743 }
1744
Matt Caswell0f113f32015-01-22 03:40:55 +00001745 if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1746 crls, crl_download)) {
1747 BIO_printf(bio_err, "Error loading store locations\n");
1748 ERR_print_errors(bio_err);
1749 goto end;
1750 }
Dr. Stephen Hensond2add502017-03-20 18:32:43 +00001751 if (ReqCAfile != NULL) {
1752 STACK_OF(X509_NAME) *nm = sk_X509_NAME_new_null();
Dr. Stephen Henson5969a2d2017-03-31 17:04:28 +01001753
Dr. Stephen Hensond2add502017-03-20 18:32:43 +00001754 if (nm == NULL || !SSL_add_file_cert_subjects_to_stack(nm, ReqCAfile)) {
1755 sk_X509_NAME_pop_free(nm, X509_NAME_free);
1756 BIO_printf(bio_err, "Error loading CA names\n");
1757 ERR_print_errors(bio_err);
1758 goto end;
1759 }
1760 SSL_CTX_set0_CA_list(ctx, nm);
1761 }
Dr. Stephen Henson59d2d482008-06-03 11:26:27 +00001762#ifndef OPENSSL_NO_ENGINE
Matt Caswell0f113f32015-01-22 03:40:55 +00001763 if (ssl_client_engine) {
1764 if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1765 BIO_puts(bio_err, "Error setting client auth engine\n");
1766 ERR_print_errors(bio_err);
1767 ENGINE_free(ssl_client_engine);
1768 goto end;
1769 }
1770 ENGINE_free(ssl_client_engine);
1771 }
Dr. Stephen Henson59d2d482008-06-03 11:26:27 +00001772#endif
1773
Nils Larschddac1972006-03-10 23:06:27 +00001774#ifndef OPENSSL_NO_PSK
Rich Salzdba31772016-02-14 00:17:59 -05001775 if (psk_key != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001776 if (c_debug)
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001777 BIO_printf(bio_c_out, "PSK key given, setting client callback\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00001778 SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1779 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00001780#endif
Matt Caswelle261bdd2017-06-12 16:57:06 +01001781 if (psksessf != NULL) {
1782 BIO *stmp = BIO_new_file(psksessf, "r");
1783
1784 if (stmp == NULL) {
1785 BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
1786 ERR_print_errors(bio_err);
1787 goto end;
1788 }
1789 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1790 BIO_free(stmp);
1791 if (psksess == NULL) {
1792 BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
1793 ERR_print_errors(bio_err);
1794 goto end;
1795 }
Matt Caswelle261bdd2017-06-12 16:57:06 +01001796 }
Matt Caswell5ffff592017-06-12 19:12:13 +01001797 if (psk_key != NULL || psksess != NULL)
1798 SSL_CTX_set_psk_use_session_callback(ctx, psk_use_session_cb);
1799
Piotr Sikorae783bae2014-12-22 11:15:51 +00001800#ifndef OPENSSL_NO_SRTP
Matt Caswellac59d702015-03-06 14:39:46 +00001801 if (srtp_profiles != NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -04001802 /* Returns 0 on success! */
1803 if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
Matt Caswellac59d702015-03-06 14:39:46 +00001804 BIO_printf(bio_err, "Error setting SRTP profile\n");
1805 ERR_print_errors(bio_err);
1806 goto end;
1807 }
1808 }
Nils Larschddac1972006-03-10 23:06:27 +00001809#endif
Rich Salz7e1b7482015-04-24 15:26:15 -04001810
Paul Yang22342122017-06-13 01:24:02 +08001811 if (exc != NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +00001812 ssl_ctx_set_excert(ctx, exc);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001813
Matt Caswelle481f9b2015-05-15 10:49:56 +01001814#if !defined(OPENSSL_NO_NEXTPROTONEG)
Paul Yang22342122017-06-13 01:24:02 +08001815 if (next_proto.data != NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +00001816 SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
Matt Caswelle481f9b2015-05-15 10:49:56 +01001817#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00001818 if (alpn_in) {
Todd Short817cd0d2016-03-05 08:47:55 -05001819 size_t alpn_len;
Matt Caswell0f113f32015-01-22 03:40:55 +00001820 unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
Adam Langley6f017a82013-04-15 18:07:47 -04001821
Matt Caswell0f113f32015-01-22 03:40:55 +00001822 if (alpn == NULL) {
1823 BIO_printf(bio_err, "Error parsing -alpn argument\n");
1824 goto end;
1825 }
Rich Salz7e1b7482015-04-24 15:26:15 -04001826 /* Returns 0 on success! */
1827 if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001828 BIO_printf(bio_err, "Error setting ALPN\n");
Matt Caswellac59d702015-03-06 14:39:46 +00001829 goto end;
1830 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001831 OPENSSL_free(alpn);
1832 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01001833
Rich Salz7e1b7482015-04-24 15:26:15 -04001834 for (i = 0; i < serverinfo_count; i++) {
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001835 if (!SSL_CTX_add_client_custom_ext(ctx,
Rich Salz7e1b7482015-04-24 15:26:15 -04001836 serverinfo_types[i],
1837 NULL, NULL, NULL,
1838 serverinfo_cli_parse_cb, NULL)) {
1839 BIO_printf(bio_err,
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001840 "Warning: Unable to add custom extension %u, skipping\n",
1841 serverinfo_types[i]);
Matt Caswellac59d702015-03-06 14:39:46 +00001842 }
Matt Caswell0f113f32015-01-22 03:40:55 +00001843 }
Ben Laurieee2ffc22010-07-28 10:06:55 +00001844
Matt Caswell0f113f32015-01-22 03:40:55 +00001845 if (state)
1846 SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001847
Rob Percivaldd696a52016-03-02 13:34:05 +00001848#ifndef OPENSSL_NO_CT
Viktor Dukhovni43341432016-04-07 14:17:37 -04001849 /* Enable SCT processing, without early connection termination */
1850 if (ct_validation &&
1851 !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) {
Rob Percivaldd696a52016-03-02 13:34:05 +00001852 ERR_print_errors(bio_err);
1853 goto end;
1854 }
1855
Rob Percival70073f32016-03-07 18:38:06 +00001856 if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) {
Viktor Dukhovni43341432016-04-07 14:17:37 -04001857 if (ct_validation) {
Rob Percival328f36c2016-03-04 19:06:43 +00001858 ERR_print_errors(bio_err);
1859 goto end;
1860 }
1861
1862 /*
1863 * If CT validation is not enabled, the log list isn't needed so don't
1864 * show errors or abort. We try to load it regardless because then we
1865 * can show the names of the logs any SCTs came from (SCTs may be seen
1866 * even with validation disabled).
1867 */
1868 ERR_clear_error();
Rob Percivaldd696a52016-03-02 13:34:05 +00001869 }
1870#endif
1871
Matt Caswell0f113f32015-01-22 03:40:55 +00001872 SSL_CTX_set_verify(ctx, verify, verify_callback);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001873
Matt Caswell2b6bcb72015-09-22 16:00:52 +01001874 if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001875 ERR_print_errors(bio_err);
Rich Salz7e1b7482015-04-24 15:26:15 -04001876 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +00001877 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001878
Matt Caswell0f113f32015-01-22 03:40:55 +00001879 ssl_ctx_add_crls(ctx, crls, crl_download);
Dr. Stephen Hensonfdb78f32012-12-02 16:16:28 +00001880
Matt Caswell0f113f32015-01-22 03:40:55 +00001881 if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1882 goto end;
Dr. Stephen Henson74ecfab2012-07-23 23:34:28 +00001883
Matt Caswell11ba87f2017-02-13 13:26:37 +00001884 if (!noservername) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001885 tlsextcbp.biodebug = bio_err;
1886 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1887 SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1888 }
1889# ifndef OPENSSL_NO_SRP
1890 if (srp_arg.srplogin) {
1891 if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1892 BIO_printf(bio_err, "Unable to set SRP username\n");
1893 goto end;
1894 }
1895 srp_arg.msg = c_msg;
1896 srp_arg.debug = c_debug;
1897 SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1898 SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1899 SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1900 if (c_msg || c_debug || srp_arg.amp == 0)
1901 SSL_CTX_set_srp_verify_param_callback(ctx,
1902 ssl_srp_verify_param_cb);
1903 }
1904# endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001905
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001906 if (dane_tlsa_domain != NULL) {
1907 if (SSL_CTX_dane_enable(ctx) <= 0) {
1908 BIO_printf(bio_err,
FdaSilvaYYd6073e22016-08-07 12:04:26 +02001909 "%s: Error enabling DANE TLSA authentication.\n",
1910 prog);
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001911 ERR_print_errors(bio_err);
1912 goto end;
1913 }
1914 }
1915
Matt Caswellbe62b222017-01-13 14:25:15 +00001916 /*
1917 * In TLSv1.3 NewSessionTicket messages arrive after the handshake and can
1918 * come at any time. Therefore we use a callback to write out the session
1919 * when we know about it. This approach works for < TLSv1.3 as well.
1920 */
Paul Yang22342122017-06-13 01:24:02 +08001921 if (sess_out != NULL) {
Matt Caswellbe62b222017-01-13 14:25:15 +00001922 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT
1923 | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1924 SSL_CTX_sess_set_new_cb(ctx, new_session_cb);
1925 }
1926
Peter Wu4bf73e92017-02-01 19:14:27 +01001927 if (set_keylog_file(ctx, keylog_file))
1928 goto end;
1929
Matt Caswell0f113f32015-01-22 03:40:55 +00001930 con = SSL_new(ctx);
KaoruTodaf84a6482017-10-19 23:41:03 +09001931 if (con == NULL)
1932 goto end;
1933
Todd Short9d75dce2017-12-18 16:52:28 -05001934 if (force_pha)
1935 SSL_force_post_handshake_auth(con);
1936
Paul Yang22342122017-06-13 01:24:02 +08001937 if (sess_in != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001938 SSL_SESSION *sess;
1939 BIO *stmp = BIO_new_file(sess_in, "r");
Paul Yang22342122017-06-13 01:24:02 +08001940 if (stmp == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001941 BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1942 ERR_print_errors(bio_err);
1943 goto end;
1944 }
1945 sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1946 BIO_free(stmp);
Paul Yang22342122017-06-13 01:24:02 +08001947 if (sess == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00001948 BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1949 ERR_print_errors(bio_err);
1950 goto end;
1951 }
Viktor Dukhovni61986d32015-04-16 01:50:03 -04001952 if (!SSL_set_session(con, sess)) {
Matt Caswellac59d702015-03-06 14:39:46 +00001953 BIO_printf(bio_err, "Can't set session\n");
1954 ERR_print_errors(bio_err);
1955 goto end;
1956 }
Matt Caswellc5de99a2017-07-21 11:39:01 +01001957
Matt Caswell0f113f32015-01-22 03:40:55 +00001958 SSL_SESSION_free(sess);
1959 }
Bodo Moellercf6da052014-10-15 04:03:28 +02001960
Matt Caswell0f113f32015-01-22 03:40:55 +00001961 if (fallback_scsv)
1962 SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
Bodo Moellercf6da052014-10-15 04:03:28 +02001963
Matt Caswell11ba87f2017-02-13 13:26:37 +00001964 if (!noservername && (servername != NULL || dane_tlsa_domain == NULL)) {
1965 if (servername == NULL)
1966 servername = (host == NULL) ? "localhost" : host;
Matt Caswell0f113f32015-01-22 03:40:55 +00001967 if (!SSL_set_tlsext_host_name(con, servername)) {
1968 BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1969 ERR_print_errors(bio_err);
1970 goto end;
1971 }
1972 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001973
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001974 if (dane_tlsa_domain != NULL) {
1975 if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1976 BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1977 "authentication.\n", prog);
1978 ERR_print_errors(bio_err);
1979 goto end;
1980 }
1981 if (dane_tlsa_rrset == NULL) {
1982 BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
Viktor Dukhovnibc87fb62016-08-18 16:57:55 -04001983 "least one -dane_tlsa_rrdata option.\n", prog);
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001984 goto end;
1985 }
1986 if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1987 BIO_printf(bio_err, "%s: Failed to import any TLSA "
1988 "records.\n", prog);
1989 goto end;
1990 }
Viktor Dukhovnic4fbed62016-08-19 11:59:47 -04001991 if (dane_ee_no_name)
1992 SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001993 } else if (dane_tlsa_rrset != NULL) {
FdaSilvaYYbde136c2016-03-18 19:02:17 +01001994 BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1995 "-dane_tlsa_domain option.\n", prog);
1996 goto end;
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05001997 }
1998
Matt Caswell0f113f32015-01-22 03:40:55 +00001999 re_start:
John Hughesebc01682018-02-08 10:49:02 +01002000 if (init_client(&s, host, port, bindhost, bindport, socket_family,
2001 socket_type, protocol) == 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002002 BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
Rich Salz8731a4f2016-03-02 16:12:46 -05002003 BIO_closesocket(s);
Matt Caswell0f113f32015-01-22 03:40:55 +00002004 goto end;
2005 }
2006 BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002007
Matt Caswell0f113f32015-01-22 03:40:55 +00002008 if (c_nbio) {
Rich Salzba810812016-02-27 13:24:28 -05002009 if (!BIO_socket_nbio(s, 1)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002010 ERR_print_errors(bio_err);
2011 goto end;
2012 }
Rich Salzba810812016-02-27 13:24:28 -05002013 BIO_printf(bio_c_out, "Turned on non blocking io\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00002014 }
Matt Caswell40a8e9c2016-03-18 14:17:03 +00002015#ifndef OPENSSL_NO_DTLS
Matt Caswell8ccc2372017-04-20 09:57:12 +01002016 if (isdtls) {
Richard Levitte642a1662016-07-19 13:52:26 +02002017 union BIO_sock_info_u peer_info;
Ben Laurie36d16f82005-04-26 16:02:40 +00002018
Matt Caswell8ccc2372017-04-20 09:57:12 +01002019#ifndef OPENSSL_NO_SCTP
2020 if (protocol == IPPROTO_SCTP)
2021 sbio = BIO_new_dgram_sctp(s, BIO_NOCLOSE);
2022 else
2023#endif
2024 sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2025
Richard Levitte642a1662016-07-19 13:52:26 +02002026 if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
2027 BIO_printf(bio_err, "memory allocation failure\n");
2028 BIO_closesocket(s);
Richard Levitted6accd52016-07-19 15:20:00 +02002029 goto end;
Richard Levitte642a1662016-07-19 13:52:26 +02002030 }
2031 if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002032 BIO_printf(bio_err, "getsockname:errno=%d\n",
2033 get_last_socket_error());
Richard Levitte642a1662016-07-19 13:52:26 +02002034 BIO_ADDR_free(peer_info.addr);
Rich Salz8731a4f2016-03-02 16:12:46 -05002035 BIO_closesocket(s);
Matt Caswell0f113f32015-01-22 03:40:55 +00002036 goto end;
2037 }
Ben Laurie36d16f82005-04-26 16:02:40 +00002038
Richard Levitte642a1662016-07-19 13:52:26 +02002039 (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
2040 BIO_ADDR_free(peer_info.addr);
2041 peer_info.addr = NULL;
Ben Laurie36d16f82005-04-26 16:02:40 +00002042
Matt Caswell0f113f32015-01-22 03:40:55 +00002043 if (enable_timeouts) {
2044 timeout.tv_sec = 0;
2045 timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2046 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
Ben Laurie36d16f82005-04-26 16:02:40 +00002047
Matt Caswell0f113f32015-01-22 03:40:55 +00002048 timeout.tv_sec = 0;
2049 timeout.tv_usec = DGRAM_SND_TIMEOUT;
2050 BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2051 }
Ben Laurie36d16f82005-04-26 16:02:40 +00002052
Matt Caswell0f113f32015-01-22 03:40:55 +00002053 if (socket_mtu) {
2054 if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2055 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2056 DTLS_get_link_min_mtu(con));
2057 BIO_free(sbio);
2058 goto shut;
2059 }
2060 SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2061 if (!DTLS_set_link_mtu(con, socket_mtu)) {
2062 BIO_printf(bio_err, "Failed to set MTU\n");
2063 BIO_free(sbio);
2064 goto shut;
2065 }
Paul Yang22342122017-06-13 01:24:02 +08002066 } else {
Matt Caswell0f113f32015-01-22 03:40:55 +00002067 /* want to do MTU discovery */
2068 BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
Paul Yang22342122017-06-13 01:24:02 +08002069 }
Matt Caswell0f113f32015-01-22 03:40:55 +00002070 } else
Matt Caswell40a8e9c2016-03-18 14:17:03 +00002071#endif /* OPENSSL_NO_DTLS */
Matt Caswell0f113f32015-01-22 03:40:55 +00002072 sbio = BIO_new_socket(s, BIO_NOCLOSE);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002073
Matt Caswell0f113f32015-01-22 03:40:55 +00002074 if (nbio_test) {
2075 BIO *test;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002076
Matt Caswell0f113f32015-01-22 03:40:55 +00002077 test = BIO_new(BIO_f_nbio_test());
2078 sbio = BIO_push(test, sbio);
2079 }
2080
2081 if (c_debug) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002082 BIO_set_callback(sbio, bio_dump_callback);
2083 BIO_set_callback_arg(sbio, (char *)bio_c_out);
2084 }
2085 if (c_msg) {
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002086#ifndef OPENSSL_NO_SSL_TRACE
Matt Caswell0f113f32015-01-22 03:40:55 +00002087 if (c_msg == 2)
2088 SSL_set_msg_callback(con, SSL_trace);
2089 else
Dr. Stephen Henson93ab9e42012-06-15 12:46:09 +00002090#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002091 SSL_set_msg_callback(con, msg_cb);
2092 SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
2093 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01002094
Matt Caswell0f113f32015-01-22 03:40:55 +00002095 if (c_tlsextdebug) {
2096 SSL_set_tlsext_debug_callback(con, tlsext_cb);
2097 SSL_set_tlsext_debug_arg(con, bio_c_out);
2098 }
Matt Caswell3e41ac32016-03-21 16:54:53 +00002099#ifndef OPENSSL_NO_OCSP
Matt Caswell0f113f32015-01-22 03:40:55 +00002100 if (c_status_req) {
2101 SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
2102 SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
2103 SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
Matt Caswell0f113f32015-01-22 03:40:55 +00002104 }
Matt Caswell3e41ac32016-03-21 16:54:53 +00002105#endif
Ben Laurie6caa4ed2008-10-26 18:40:52 +00002106
Matt Caswell0f113f32015-01-22 03:40:55 +00002107 SSL_set_bio(con, sbio, sbio);
2108 SSL_set_connect_state(con);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002109
Matt Caswell0f113f32015-01-22 03:40:55 +00002110 /* ok, lets connect */
Richard Levitte51e51332016-09-15 11:20:18 +02002111 if (fileno_stdin() > SSL_get_fd(con))
2112 width = fileno_stdin() + 1;
Richard Levitte0d3b6582016-08-03 21:16:43 +02002113 else
2114 width = SSL_get_fd(con) + 1;
Richard Levitte51e51332016-09-15 11:20:18 +02002115
Matt Caswell0f113f32015-01-22 03:40:55 +00002116 read_tty = 1;
2117 write_tty = 0;
2118 tty_on = 0;
2119 read_ssl = 1;
2120 write_ssl = 1;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002121
Matt Caswell0f113f32015-01-22 03:40:55 +00002122 cbuf_len = 0;
2123 cbuf_off = 0;
2124 sbuf_len = 0;
2125 sbuf_off = 0;
Carlos Alberto Lopez Perez4249d4b2012-08-06 02:00:07 +02002126
Rich Salz7e1b7482015-04-24 15:26:15 -04002127 switch ((PROTOCOL_CHOICE) starttls_proto) {
2128 case PROTO_OFF:
2129 break;
Robert Scheck95765452016-11-17 17:16:50 +01002130 case PROTO_LMTP:
Rich Salz7e1b7482015-04-24 15:26:15 -04002131 case PROTO_SMTP:
Matt Caswell0f113f32015-01-22 03:40:55 +00002132 {
Rich Salz7e1b7482015-04-24 15:26:15 -04002133 /*
2134 * This is an ugly hack that does a lot of assumptions. We do
2135 * have to handle multi-line responses which may come in a single
2136 * packet or not. We therefore have to use BIO_gets() which does
2137 * need a buffering BIO. So during the initial chitchat we do
2138 * push a buffering BIO into the chain that is removed again
2139 * later on to not disturb the rest of the s_client operation.
2140 */
2141 int foundit = 0;
2142 BIO *fbio = BIO_new(BIO_f_buffer());
Robert Scheck20967af2017-02-09 22:20:59 +01002143
Rich Salz7e1b7482015-04-24 15:26:15 -04002144 BIO_push(fbio, sbio);
Robert Scheck95765452016-11-17 17:16:50 +01002145 /* Wait for multi-line response to end from LMTP or SMTP */
Rich Salz7e1b7482015-04-24 15:26:15 -04002146 do {
2147 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
Robert Scheck20967af2017-02-09 22:20:59 +01002148 } while (mbuf_len > 3 && mbuf[3] == '-');
Paul Yang81764312017-10-16 15:32:24 -04002149 if (protohost == NULL)
2150 protohost = "mail.example.com";
Robert Scheck7524c522016-11-18 00:01:28 +01002151 if (starttls_proto == (int)PROTO_LMTP)
Paul Yang81764312017-10-16 15:32:24 -04002152 BIO_printf(fbio, "LHLO %s\r\n", protohost);
Robert Scheck7524c522016-11-18 00:01:28 +01002153 else
Paul Yang81764312017-10-16 15:32:24 -04002154 BIO_printf(fbio, "EHLO %s\r\n", protohost);
Rich Salz7e1b7482015-04-24 15:26:15 -04002155 (void)BIO_flush(fbio);
Robert Scheck95765452016-11-17 17:16:50 +01002156 /*
2157 * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
2158 * response.
2159 */
Rich Salz7e1b7482015-04-24 15:26:15 -04002160 do {
2161 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2162 if (strstr(mbuf, "STARTTLS"))
2163 foundit = 1;
Robert Scheck20967af2017-02-09 22:20:59 +01002164 } while (mbuf_len > 3 && mbuf[3] == '-');
Rich Salz7e1b7482015-04-24 15:26:15 -04002165 (void)BIO_flush(fbio);
2166 BIO_pop(fbio);
2167 BIO_free(fbio);
2168 if (!foundit)
2169 BIO_printf(bio_err,
Robert Scheck20967af2017-02-09 22:20:59 +01002170 "Didn't find STARTTLS in server response,"
Quanah Gibson-Mountc7944cf2015-11-22 21:35:15 -06002171 " trying anyway...\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002172 BIO_printf(sbio, "STARTTLS\r\n");
2173 BIO_read(sbio, sbuf, BUFSIZZ);
Matt Caswell0f113f32015-01-22 03:40:55 +00002174 }
Rich Salz7e1b7482015-04-24 15:26:15 -04002175 break;
2176 case PROTO_POP3:
2177 {
2178 BIO_read(sbio, mbuf, BUFSIZZ);
2179 BIO_printf(sbio, "STLS\r\n");
2180 mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
2181 if (mbuf_len < 0) {
2182 BIO_printf(bio_err, "BIO_read failed\n");
2183 goto end;
2184 }
2185 }
2186 break;
2187 case PROTO_IMAP:
2188 {
2189 int foundit = 0;
2190 BIO *fbio = BIO_new(BIO_f_buffer());
Robert Scheck20967af2017-02-09 22:20:59 +01002191
Rich Salz7e1b7482015-04-24 15:26:15 -04002192 BIO_push(fbio, sbio);
2193 BIO_gets(fbio, mbuf, BUFSIZZ);
2194 /* STARTTLS command requires CAPABILITY... */
2195 BIO_printf(fbio, ". CAPABILITY\r\n");
2196 (void)BIO_flush(fbio);
2197 /* wait for multi-line CAPABILITY response */
2198 do {
2199 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2200 if (strstr(mbuf, "STARTTLS"))
2201 foundit = 1;
2202 }
2203 while (mbuf_len > 3 && mbuf[0] != '.');
2204 (void)BIO_flush(fbio);
2205 BIO_pop(fbio);
2206 BIO_free(fbio);
2207 if (!foundit)
2208 BIO_printf(bio_err,
Robert Scheck20967af2017-02-09 22:20:59 +01002209 "Didn't find STARTTLS in server response,"
Quanah Gibson-Mountc7944cf2015-11-22 21:35:15 -06002210 " trying anyway...\n");
Rich Salz7e1b7482015-04-24 15:26:15 -04002211 BIO_printf(sbio, ". STARTTLS\r\n");
2212 BIO_read(sbio, sbuf, BUFSIZZ);
2213 }
2214 break;
2215 case PROTO_FTP:
2216 {
2217 BIO *fbio = BIO_new(BIO_f_buffer());
Robert Scheck20967af2017-02-09 22:20:59 +01002218
Rich Salz7e1b7482015-04-24 15:26:15 -04002219 BIO_push(fbio, sbio);
2220 /* wait for multi-line response to end from FTP */
2221 do {
2222 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2223 }
2224 while (mbuf_len > 3 && mbuf[3] == '-');
2225 (void)BIO_flush(fbio);
2226 BIO_pop(fbio);
2227 BIO_free(fbio);
2228 BIO_printf(sbio, "AUTH TLS\r\n");
2229 BIO_read(sbio, sbuf, BUFSIZZ);
2230 }
2231 break;
2232 case PROTO_XMPP:
Kai Engert898ea7b2015-07-29 17:41:00 -04002233 case PROTO_XMPP_SERVER:
Rich Salz7e1b7482015-04-24 15:26:15 -04002234 {
2235 int seen = 0;
2236 BIO_printf(sbio, "<stream:stream "
2237 "xmlns:stream='http://etherx.jabber.org/streams' "
Kai Engert898ea7b2015-07-29 17:41:00 -04002238 "xmlns='jabber:%s' to='%s' version='1.0'>",
2239 starttls_proto == PROTO_XMPP ? "client" : "server",
Paul Yang81764312017-10-16 15:32:24 -04002240 protohost ? protohost : host);
Rich Salz7e1b7482015-04-24 15:26:15 -04002241 seen = BIO_read(sbio, mbuf, BUFSIZZ);
Robert Scheck20967af2017-02-09 22:20:59 +01002242 if (seen < 0) {
2243 BIO_printf(bio_err, "BIO_read failed\n");
2244 goto end;
2245 }
2246 mbuf[seen] = '\0';
Rich Salz7e1b7482015-04-24 15:26:15 -04002247 while (!strstr
2248 (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2249 && !strstr(mbuf,
2250 "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2251 {
2252 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2253
2254 if (seen <= 0)
2255 goto shut;
2256
Robert Scheck20967af2017-02-09 22:20:59 +01002257 mbuf[seen] = '\0';
Rich Salz7e1b7482015-04-24 15:26:15 -04002258 }
2259 BIO_printf(sbio,
2260 "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2261 seen = BIO_read(sbio, sbuf, BUFSIZZ);
Robert Scheck20967af2017-02-09 22:20:59 +01002262 if (seen < 0) {
2263 BIO_printf(bio_err, "BIO_read failed\n");
2264 goto shut;
2265 }
2266 sbuf[seen] = '\0';
Rich Salz7e1b7482015-04-24 15:26:15 -04002267 if (!strstr(sbuf, "<proceed"))
2268 goto shut;
Robert Scheck20967af2017-02-09 22:20:59 +01002269 mbuf[0] = '\0';
Rich Salz7e1b7482015-04-24 15:26:15 -04002270 }
2271 break;
Rich Salzd8c25de2015-04-25 16:01:21 -04002272 case PROTO_TELNET:
2273 {
2274 static const unsigned char tls_do[] = {
2275 /* IAC DO START_TLS */
2276 255, 253, 46
2277 };
2278 static const unsigned char tls_will[] = {
2279 /* IAC WILL START_TLS */
2280 255, 251, 46
2281 };
2282 static const unsigned char tls_follows[] = {
2283 /* IAC SB START_TLS FOLLOWS IAC SE */
2284 255, 250, 46, 1, 255, 240
2285 };
2286 int bytes;
2287
2288 /* Telnet server should demand we issue START_TLS */
2289 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2290 if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2291 goto shut;
2292 /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2293 BIO_write(sbio, tls_will, 3);
2294 BIO_write(sbio, tls_follows, 6);
2295 (void)BIO_flush(sbio);
2296 /* Telnet server also sent the FOLLOWS sub-command */
2297 bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2298 if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2299 goto shut;
2300 }
Michael Trapp552bf8e2015-05-08 15:34:07 -04002301 break;
2302 case PROTO_CONNECT:
2303 {
Richard Levitteec2a0e62016-10-05 12:37:58 +02002304 enum {
2305 error_proto, /* Wrong protocol, not even HTTP */
2306 error_connect, /* CONNECT failed */
2307 success
2308 } foundit = error_connect;
Michael Trapp552bf8e2015-05-08 15:34:07 -04002309 BIO *fbio = BIO_new(BIO_f_buffer());
2310
2311 BIO_push(fbio, sbio);
Rich Salz8230f6c2016-03-19 12:40:02 -04002312 BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr);
Michael Trapp552bf8e2015-05-08 15:34:07 -04002313 (void)BIO_flush(fbio);
Richard Levitteec2a0e62016-10-05 12:37:58 +02002314 /*
2315 * The first line is the HTTP response. According to RFC 7230,
2316 * it's formated exactly like this:
2317 *
2318 * HTTP/d.d ddd Reason text\r\n
2319 */
2320 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
Rich Salz3dce1092017-06-08 09:26:20 -04002321 if (mbuf_len < (int)strlen("HTTP/1.0 200")) {
2322 BIO_printf(bio_err,
2323 "%s: HTTP CONNECT failed, insufficient response "
2324 "from proxy (got %d octets)\n", prog, mbuf_len);
2325 (void)BIO_flush(fbio);
2326 BIO_pop(fbio);
2327 BIO_free(fbio);
2328 goto shut;
2329 }
Richard Levitteec2a0e62016-10-05 12:37:58 +02002330 if (mbuf[8] != ' ') {
2331 BIO_printf(bio_err,
2332 "%s: HTTP CONNECT failed, incorrect response "
2333 "from proxy\n", prog);
2334 foundit = error_proto;
2335 } else if (mbuf[9] != '2') {
2336 BIO_printf(bio_err, "%s: HTTP CONNECT failed: %s ", prog,
2337 &mbuf[9]);
2338 } else {
2339 foundit = success;
2340 }
2341 if (foundit != error_proto) {
2342 /* Read past all following headers */
2343 do {
2344 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2345 } while (mbuf_len > 2);
2346 }
Michael Trapp552bf8e2015-05-08 15:34:07 -04002347 (void)BIO_flush(fbio);
2348 BIO_pop(fbio);
2349 BIO_free(fbio);
Richard Levitteec2a0e62016-10-05 12:37:58 +02002350 if (foundit != success) {
Michael Trapp552bf8e2015-05-08 15:34:07 -04002351 goto shut;
2352 }
2353 }
2354 break;
Nathan Phillip Brinkcfb4f1e2015-05-13 16:00:21 -04002355 case PROTO_IRC:
2356 {
2357 int numeric;
2358 BIO *fbio = BIO_new(BIO_f_buffer());
2359
2360 BIO_push(fbio, sbio);
2361 BIO_printf(fbio, "STARTTLS\r\n");
2362 (void)BIO_flush(fbio);
2363 width = SSL_get_fd(con) + 1;
2364
2365 do {
2366 numeric = 0;
2367
2368 FD_ZERO(&readfds);
2369 openssl_fdset(SSL_get_fd(con), &readfds);
2370 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2371 timeout.tv_usec = 0;
2372 /*
2373 * If the IRCd doesn't respond within
2374 * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2375 * it doesn't support STARTTLS. Many IRCds
2376 * will not give _any_ sort of response to a
2377 * STARTTLS command when it's not supported.
2378 */
2379 if (!BIO_get_buffer_num_lines(fbio)
2380 && !BIO_pending(fbio)
2381 && !BIO_pending(sbio)
2382 && select(width, (void *)&readfds, NULL, NULL,
2383 &timeout) < 1) {
2384 BIO_printf(bio_err,
2385 "Timeout waiting for response (%d seconds).\n",
2386 S_CLIENT_IRC_READ_TIMEOUT);
2387 break;
2388 }
2389
2390 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2391 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2392 break;
2393 /* :example.net 451 STARTTLS :You have not registered */
2394 /* :example.net 421 STARTTLS :Unknown command */
2395 if ((numeric == 451 || numeric == 421)
2396 && strstr(mbuf, "STARTTLS") != NULL) {
2397 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2398 break;
2399 }
2400 if (numeric == 691) {
2401 BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2402 ERR_print_errors(bio_err);
2403 break;
2404 }
2405 } while (numeric != 670);
2406
2407 (void)BIO_flush(fbio);
2408 BIO_pop(fbio);
2409 BIO_free(fbio);
2410 if (numeric != 670) {
2411 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2412 ret = 1;
2413 goto shut;
2414 }
2415 }
Valentin Vidicb2e54eb2016-02-15 15:28:41 +01002416 break;
Keigo Tanakaa2d9cfb2017-05-13 09:50:49 +09002417 case PROTO_MYSQL:
2418 {
2419 /* SSL request packet */
2420 static const unsigned char ssl_req[] = {
2421 /* payload_length, sequence_id */
2422 0x20, 0x00, 0x00, 0x01,
2423 /* payload */
2424 /* capability flags, CLIENT_SSL always set */
2425 0x85, 0xae, 0x7f, 0x00,
2426 /* max-packet size */
2427 0x00, 0x00, 0x00, 0x01,
2428 /* character set */
2429 0x21,
2430 /* string[23] reserved (all [0]) */
2431 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2432 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2433 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2434 };
2435 int bytes = 0;
2436 int ssl_flg = 0x800;
2437 int pos;
2438 const unsigned char *packet = (const unsigned char *)sbuf;
2439
2440 /* Receiving Initial Handshake packet. */
2441 bytes = BIO_read(sbio, (void *)packet, BUFSIZZ);
2442 if (bytes < 0) {
2443 BIO_printf(bio_err, "BIO_read failed\n");
2444 goto shut;
2445 /* Packet length[3], Packet number[1] + minimum payload[17] */
2446 } else if (bytes < 21) {
2447 BIO_printf(bio_err, "MySQL packet too short.\n");
2448 goto shut;
2449 } else if (bytes != (4 + packet[0] +
2450 (packet[1] << 8) +
2451 (packet[2] << 16))) {
2452 BIO_printf(bio_err, "MySQL packet length does not match.\n");
2453 goto shut;
2454 /* protocol version[1] */
2455 } else if (packet[4] != 0xA) {
2456 BIO_printf(bio_err,
2457 "Only MySQL protocol version 10 is supported.\n");
2458 goto shut;
2459 }
2460
2461 pos = 5;
2462 /* server version[string+NULL] */
2463 for (;;) {
2464 if (pos >= bytes) {
2465 BIO_printf(bio_err, "Cannot confirm server version. ");
2466 goto shut;
2467 } else if (packet[pos++] == '\0') {
2468 break;
2469 }
Keigo Tanakaa2d9cfb2017-05-13 09:50:49 +09002470 }
2471
Steven Danneman85300392017-06-27 15:53:11 -07002472 /* make sure we have at least 15 bytes left in the packet */
Keigo Tanakaa2d9cfb2017-05-13 09:50:49 +09002473 if (pos + 15 > bytes) {
2474 BIO_printf(bio_err,
2475 "MySQL server handshake packet is broken.\n");
2476 goto shut;
2477 }
2478
2479 pos += 12; /* skip over conn id[4] + SALT[8] */
2480 if (packet[pos++] != '\0') { /* verify filler */
2481 BIO_printf(bio_err,
2482 "MySQL packet is broken.\n");
2483 goto shut;
2484 }
2485
2486 /* capability flags[2] */
2487 if (!((packet[pos] + (packet[pos + 1] << 8)) & ssl_flg)) {
2488 BIO_printf(bio_err, "MySQL server does not support SSL.\n");
2489 goto shut;
2490 }
2491
2492 /* Sending SSL Handshake packet. */
2493 BIO_write(sbio, ssl_req, sizeof(ssl_req));
2494 (void)BIO_flush(sbio);
2495 }
2496 break;
Valentin Vidicb2e54eb2016-02-15 15:28:41 +01002497 case PROTO_POSTGRES:
2498 {
2499 static const unsigned char ssl_request[] = {
2500 /* Length SSLRequest */
2501 0, 0, 0, 8, 4, 210, 22, 47
2502 };
2503 int bytes;
2504
2505 /* Send SSLRequest packet */
2506 BIO_write(sbio, ssl_request, 8);
2507 (void)BIO_flush(sbio);
2508
2509 /* Reply will be a single S if SSL is enabled */
2510 bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2511 if (bytes != 1 || sbuf[0] != 'S')
2512 goto shut;
2513 }
2514 break;
Robert Scheck8f85aa62017-01-28 00:52:27 +01002515 case PROTO_NNTP:
2516 {
2517 int foundit = 0;
2518 BIO *fbio = BIO_new(BIO_f_buffer());
2519
2520 BIO_push(fbio, sbio);
2521 BIO_gets(fbio, mbuf, BUFSIZZ);
2522 /* STARTTLS command requires CAPABILITIES... */
2523 BIO_printf(fbio, "CAPABILITIES\r\n");
2524 (void)BIO_flush(fbio);
2525 /* wait for multi-line CAPABILITIES response */
2526 do {
2527 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2528 if (strstr(mbuf, "STARTTLS"))
2529 foundit = 1;
2530 } while (mbuf_len > 1 && mbuf[0] != '.');
2531 (void)BIO_flush(fbio);
2532 BIO_pop(fbio);
2533 BIO_free(fbio);
2534 if (!foundit)
2535 BIO_printf(bio_err,
2536 "Didn't find STARTTLS in server response,"
2537 " trying anyway...\n");
2538 BIO_printf(sbio, "STARTTLS\r\n");
Robert Scheckaf7e05c2017-02-14 21:47:25 +01002539 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2540 if (mbuf_len < 0) {
2541 BIO_printf(bio_err, "BIO_read failed\n");
2542 goto end;
2543 }
2544 mbuf[mbuf_len] = '\0';
2545 if (strstr(mbuf, "382") == NULL) {
2546 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2547 goto shut;
2548 }
Robert Scheck8f85aa62017-01-28 00:52:27 +01002549 }
2550 break;
Robert Scheck20967af2017-02-09 22:20:59 +01002551 case PROTO_SIEVE:
2552 {
2553 int foundit = 0;
2554 BIO *fbio = BIO_new(BIO_f_buffer());
2555
2556 BIO_push(fbio, sbio);
2557 /* wait for multi-line response to end from Sieve */
2558 do {
2559 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2560 /*
2561 * According to RFC 5804 § 1.7, capability
2562 * is case-insensitive, make it uppercase
2563 */
2564 if (mbuf_len > 1 && mbuf[0] == '"') {
2565 make_uppercase(mbuf);
2566 if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0)
2567 foundit = 1;
2568 }
2569 } while (mbuf_len > 1 && mbuf[0] == '"');
2570 (void)BIO_flush(fbio);
2571 BIO_pop(fbio);
2572 BIO_free(fbio);
2573 if (!foundit)
2574 BIO_printf(bio_err,
2575 "Didn't find STARTTLS in server response,"
2576 " trying anyway...\n");
2577 BIO_printf(sbio, "STARTTLS\r\n");
2578 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2579 if (mbuf_len < 0) {
2580 BIO_printf(bio_err, "BIO_read failed\n");
2581 goto end;
Robert Scheckaf7e05c2017-02-14 21:47:25 +01002582 }
2583 mbuf[mbuf_len] = '\0';
2584 if (mbuf_len < 2) {
2585 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
Robert Scheck20967af2017-02-09 22:20:59 +01002586 goto shut;
2587 }
2588 /*
2589 * According to RFC 5804 § 2.2, response codes are case-
2590 * insensitive, make it uppercase but preserve the response.
2591 */
Robert Scheck20967af2017-02-09 22:20:59 +01002592 strncpy(sbuf, mbuf, 2);
2593 make_uppercase(sbuf);
2594 if (strncmp(sbuf, "OK", 2) != 0) {
2595 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2596 goto shut;
2597 }
2598 }
2599 break;
Robert Scheck398b0bb2017-02-27 00:44:14 +01002600 case PROTO_LDAP:
2601 {
2602 /* StartTLS Operation according to RFC 4511 */
2603 static char ldap_tls_genconf[] = "asn1=SEQUENCE:LDAPMessage\n"
2604 "[LDAPMessage]\n"
2605 "messageID=INTEGER:1\n"
2606 "extendedReq=EXPLICIT:23A,IMPLICIT:0C,"
2607 "FORMAT:ASCII,OCT:1.3.6.1.4.1.1466.20037\n";
2608 long errline = -1;
2609 char *genstr = NULL;
2610 int result = -1;
2611 ASN1_TYPE *atyp = NULL;
2612 BIO *ldapbio = BIO_new(BIO_s_mem());
2613 CONF *cnf = NCONF_new(NULL);
2614
2615 if (cnf == NULL) {
2616 BIO_free(ldapbio);
2617 goto end;
2618 }
2619 BIO_puts(ldapbio, ldap_tls_genconf);
2620 if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) {
2621 BIO_free(ldapbio);
2622 NCONF_free(cnf);
2623 if (errline <= 0) {
2624 BIO_printf(bio_err, "NCONF_load_bio failed\n");
2625 goto end;
2626 } else {
2627 BIO_printf(bio_err, "Error on line %ld\n", errline);
2628 goto end;
2629 }
2630 }
2631 BIO_free(ldapbio);
2632 genstr = NCONF_get_string(cnf, "default", "asn1");
2633 if (genstr == NULL) {
2634 NCONF_free(cnf);
2635 BIO_printf(bio_err, "NCONF_get_string failed\n");
2636 goto end;
2637 }
2638 atyp = ASN1_generate_nconf(genstr, cnf);
2639 if (atyp == NULL) {
2640 NCONF_free(cnf);
2641 BIO_printf(bio_err, "ASN1_generate_nconf failed\n");
2642 goto end;
2643 }
2644 NCONF_free(cnf);
2645
2646 /* Send SSLRequest packet */
2647 BIO_write(sbio, atyp->value.sequence->data,
2648 atyp->value.sequence->length);
2649 (void)BIO_flush(sbio);
2650 ASN1_TYPE_free(atyp);
2651
2652 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2653 if (mbuf_len < 0) {
2654 BIO_printf(bio_err, "BIO_read failed\n");
2655 goto end;
2656 }
2657 result = ldap_ExtendedResponse_parse(mbuf, mbuf_len);
2658 if (result < 0) {
2659 BIO_printf(bio_err, "ldap_ExtendedResponse_parse failed\n");
2660 goto shut;
2661 } else if (result > 0) {
2662 BIO_printf(bio_err, "STARTTLS failed, LDAP Result Code: %i\n",
2663 result);
2664 goto shut;
2665 }
2666 mbuf_len = 0;
2667 }
2668 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002669 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002670
Matt Caswell0a5ece52017-02-24 16:11:03 +00002671 if (early_data_file != NULL
Matt Caswelladd8d0e2017-07-05 20:53:03 +01002672 && ((SSL_get0_session(con) != NULL
2673 && SSL_SESSION_get_max_early_data(SSL_get0_session(con)) > 0)
2674 || (psksess != NULL
2675 && SSL_SESSION_get_max_early_data(psksess) > 0))) {
Matt Caswell923ac822017-02-20 16:00:20 +00002676 BIO *edfile = BIO_new_file(early_data_file, "r");
2677 size_t readbytes, writtenbytes;
2678 int finish = 0;
2679
2680 if (edfile == NULL) {
2681 BIO_printf(bio_err, "Cannot open early data file\n");
2682 goto shut;
2683 }
2684
2685 while (!finish) {
2686 if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes))
2687 finish = 1;
2688
Matt Caswell0665b4e2017-03-02 15:05:36 +00002689 while (!SSL_write_early_data(con, cbuf, readbytes, &writtenbytes)) {
Matt Caswell923ac822017-02-20 16:00:20 +00002690 switch (SSL_get_error(con, 0)) {
2691 case SSL_ERROR_WANT_WRITE:
2692 case SSL_ERROR_WANT_ASYNC:
2693 case SSL_ERROR_WANT_READ:
2694 /* Just keep trying - busy waiting */
2695 continue;
2696 default:
2697 BIO_printf(bio_err, "Error writing early data\n");
2698 BIO_free(edfile);
Matt Caswelldd5b98c2017-07-21 11:40:28 +01002699 ERR_print_errors(bio_err);
Matt Caswell923ac822017-02-20 16:00:20 +00002700 goto shut;
2701 }
2702 }
2703 }
2704
2705 BIO_free(edfile);
2706 }
2707
Matt Caswell0f113f32015-01-22 03:40:55 +00002708 for (;;) {
2709 FD_ZERO(&readfds);
2710 FD_ZERO(&writefds);
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002711
Matt Caswell6f6da2f2018-05-03 15:59:31 +01002712 if (SSL_is_dtls(con) && DTLSv1_get_timeout(con, &timeout))
Matt Caswell0f113f32015-01-22 03:40:55 +00002713 timeoutp = &timeout;
2714 else
2715 timeoutp = NULL;
2716
Matt Caswell12557a32017-03-30 16:06:29 +01002717 if (!SSL_is_init_finished(con) && SSL_total_renegotiations(con) == 0
Matt Caswellb07b2a12017-02-09 13:33:09 +00002718 && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) {
Matt Caswell0f113f32015-01-22 03:40:55 +00002719 in_init = 1;
2720 tty_on = 0;
2721 } else {
2722 tty_on = 1;
2723 if (in_init) {
2724 in_init = 0;
Matt Caswelle481f9b2015-05-15 10:49:56 +01002725
Matt Caswell0f113f32015-01-22 03:40:55 +00002726 if (c_brief) {
2727 BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
Rich Salzecf3a1f2015-04-29 11:27:08 -04002728 print_ssl_summary(con);
Matt Caswell0f113f32015-01-22 03:40:55 +00002729 }
Scott Deboy67c408c2013-08-01 11:54:09 -07002730
Rob Percival0d4d5ab2016-03-10 19:49:34 +00002731 print_stuff(bio_c_out, con, full_log);
Matt Caswell0f113f32015-01-22 03:40:55 +00002732 if (full_log > 0)
2733 full_log--;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002734
Matt Caswell0f113f32015-01-22 03:40:55 +00002735 if (starttls_proto) {
Rich Salz7e1b7482015-04-24 15:26:15 -04002736 BIO_write(bio_err, mbuf, mbuf_len);
Matt Caswell0f113f32015-01-22 03:40:55 +00002737 /* We don't need to know any more */
Rich Salz7e1b7482015-04-24 15:26:15 -04002738 if (!reconnect)
2739 starttls_proto = PROTO_OFF;
Matt Caswell0f113f32015-01-22 03:40:55 +00002740 }
Richard Levitte135c0af2001-11-14 13:57:52 +00002741
Matt Caswell0f113f32015-01-22 03:40:55 +00002742 if (reconnect) {
2743 reconnect--;
2744 BIO_printf(bio_c_out,
2745 "drop connection and then reconnect\n");
Matt Caswellec447922016-01-25 15:00:10 +00002746 do_ssl_shutdown(con);
Matt Caswell0f113f32015-01-22 03:40:55 +00002747 SSL_set_connect_state(con);
Rich Salz8731a4f2016-03-02 16:12:46 -05002748 BIO_closesocket(SSL_get_fd(con));
Matt Caswell0f113f32015-01-22 03:40:55 +00002749 goto re_start;
2750 }
2751 }
2752 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002753
Matt Caswellfd068d52016-02-12 13:33:45 +00002754 ssl_pending = read_ssl && SSL_has_pending(con);
Bodo Möllerc7ac31e1999-04-09 20:54:25 +00002755
Matt Caswell0f113f32015-01-22 03:40:55 +00002756 if (!ssl_pending) {
Rich Salz1fbab1d2016-03-17 12:53:11 -04002757#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002758 if (tty_on) {
John Denkera3ef2c12016-06-10 14:46:07 -04002759 /*
2760 * Note that select() returns when read _would not block_,
2761 * and EOF satisfies that. To avoid a CPU-hogging loop,
2762 * set the flag so we exit.
2763 */
Richard Levitte0d3b6582016-08-03 21:16:43 +02002764 if (read_tty && !at_eof)
Richard Levitte51e51332016-09-15 11:20:18 +02002765 openssl_fdset(fileno_stdin(), &readfds);
2766#if !defined(OPENSSL_SYS_VMS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002767 if (write_tty)
Richard Levitte51e51332016-09-15 11:20:18 +02002768 openssl_fdset(fileno_stdout(), &writefds);
Richard Levitte0d3b6582016-08-03 21:16:43 +02002769#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002770 }
2771 if (read_ssl)
2772 openssl_fdset(SSL_get_fd(con), &readfds);
2773 if (write_ssl)
2774 openssl_fdset(SSL_get_fd(con), &writefds);
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002775#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002776 if (!tty_on || !write_tty) {
2777 if (read_ssl)
2778 openssl_fdset(SSL_get_fd(con), &readfds);
2779 if (write_ssl)
2780 openssl_fdset(SSL_get_fd(con), &writefds);
2781 }
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002782#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002783
Matt Caswell0f113f32015-01-22 03:40:55 +00002784 /*
2785 * Note: under VMS with SOCKETSHR the second parameter is
2786 * currently of type (int *) whereas under other systems it is
2787 * (void *) if you don't have a cast it will choke the compiler:
2788 * if you do have a cast then you can either go for (int *) or
2789 * (void *).
2790 */
Richard Levitte3d7c4a52003-09-27 21:56:08 +00002791#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002792 /*
2793 * Under Windows/DOS we make the assumption that we can always
2794 * write to the tty: therefore if we need to write to the tty we
2795 * just fall through. Otherwise we timeout the select every
2796 * second and see if there are any keypresses. Note: this is a
2797 * hack, in a proper Windows application we wouldn't do this.
2798 */
2799 i = 0;
2800 if (!write_tty) {
2801 if (read_tty) {
2802 tv.tv_sec = 1;
2803 tv.tv_usec = 0;
2804 i = select(width, (void *)&readfds, (void *)&writefds,
2805 NULL, &tv);
Matt Caswell75dd6c12016-05-20 11:53:26 +01002806 if (!i && (!has_stdin_waiting() || !read_tty))
Matt Caswell0f113f32015-01-22 03:40:55 +00002807 continue;
Matt Caswell0f113f32015-01-22 03:40:55 +00002808 } else
2809 i = select(width, (void *)&readfds, (void *)&writefds,
2810 NULL, timeoutp);
2811 }
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002812#else
Matt Caswell0f113f32015-01-22 03:40:55 +00002813 i = select(width, (void *)&readfds, (void *)&writefds,
2814 NULL, timeoutp);
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002815#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002816 if (i < 0) {
2817 BIO_printf(bio_err, "bad select %d\n",
2818 get_last_socket_error());
2819 goto shut;
Matt Caswell0f113f32015-01-22 03:40:55 +00002820 }
2821 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002822
Matt Caswell6f6da2f2018-05-03 15:59:31 +01002823 if (SSL_is_dtls(con) && DTLSv1_handle_timeout(con) > 0)
Matt Caswell0f113f32015-01-22 03:40:55 +00002824 BIO_printf(bio_err, "TIMEOUT occurred\n");
Dr. Stephen Hensonb972fba2009-08-12 13:19:54 +00002825
Matt Caswell0f113f32015-01-22 03:40:55 +00002826 if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2827 k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2828 switch (SSL_get_error(con, k)) {
2829 case SSL_ERROR_NONE:
2830 cbuf_off += k;
2831 cbuf_len -= k;
2832 if (k <= 0)
2833 goto end;
2834 /* we have done a write(con,NULL,0); */
2835 if (cbuf_len <= 0) {
2836 read_tty = 1;
2837 write_ssl = 0;
2838 } else { /* if (cbuf_len > 0) */
2839
2840 read_tty = 0;
2841 write_ssl = 1;
2842 }
2843 break;
2844 case SSL_ERROR_WANT_WRITE:
2845 BIO_printf(bio_c_out, "write W BLOCK\n");
2846 write_ssl = 1;
2847 read_tty = 0;
2848 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002849 case SSL_ERROR_WANT_ASYNC:
2850 BIO_printf(bio_c_out, "write A BLOCK\n");
Matt Caswelle1b98402015-10-06 14:04:11 +01002851 wait_for_async(con);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002852 write_ssl = 1;
2853 read_tty = 0;
2854 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002855 case SSL_ERROR_WANT_READ:
2856 BIO_printf(bio_c_out, "write R BLOCK\n");
2857 write_tty = 0;
2858 read_ssl = 1;
2859 write_ssl = 0;
2860 break;
2861 case SSL_ERROR_WANT_X509_LOOKUP:
2862 BIO_printf(bio_c_out, "write X BLOCK\n");
2863 break;
2864 case SSL_ERROR_ZERO_RETURN:
2865 if (cbuf_len != 0) {
2866 BIO_printf(bio_c_out, "shutdown\n");
2867 ret = 0;
2868 goto shut;
2869 } else {
2870 read_tty = 1;
2871 write_ssl = 0;
2872 break;
2873 }
2874
2875 case SSL_ERROR_SYSCALL:
2876 if ((k != 0) || (cbuf_len != 0)) {
2877 BIO_printf(bio_err, "write:errno=%d\n",
2878 get_last_socket_error());
2879 goto shut;
2880 } else {
2881 read_tty = 1;
2882 write_ssl = 0;
2883 }
2884 break;
Matt Caswellfc7f1902016-05-03 17:55:00 +01002885 case SSL_ERROR_WANT_ASYNC_JOB:
2886 /* This shouldn't ever happen in s_client - treat as an error */
Matt Caswell0f113f32015-01-22 03:40:55 +00002887 case SSL_ERROR_SSL:
2888 ERR_print_errors(bio_err);
2889 goto shut;
2890 }
2891 }
Richard Levittec7bdb6a2016-09-14 20:54:30 +02002892#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
Matt Caswell0f113f32015-01-22 03:40:55 +00002893 /* Assume Windows/DOS/BeOS can always write */
2894 else if (!ssl_pending && write_tty)
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002895#else
Richard Levitte51e51332016-09-15 11:20:18 +02002896 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002897#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002898 {
Ulf Möllera53955d1999-06-04 21:35:58 +00002899#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00002900 ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
Ulf Möllera53955d1999-06-04 21:35:58 +00002901#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002902 i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002903
Matt Caswell0f113f32015-01-22 03:40:55 +00002904 if (i <= 0) {
2905 BIO_printf(bio_c_out, "DONE\n");
2906 ret = 0;
2907 goto shut;
Matt Caswell0f113f32015-01-22 03:40:55 +00002908 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002909
FdaSilvaYY0fe2a0a2016-12-28 19:22:25 +01002910 sbuf_len -= i;
Matt Caswell0f113f32015-01-22 03:40:55 +00002911 sbuf_off += i;
2912 if (sbuf_len <= 0) {
2913 read_ssl = 1;
2914 write_tty = 0;
2915 }
2916 } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002917#ifdef RENEG
Matt Caswell0f113f32015-01-22 03:40:55 +00002918 {
2919 static int iiii;
2920 if (++iiii == 52) {
2921 SSL_renegotiate(con);
2922 iiii = 0;
2923 }
2924 }
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00002925#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002926 k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002927
Matt Caswell0f113f32015-01-22 03:40:55 +00002928 switch (SSL_get_error(con, k)) {
2929 case SSL_ERROR_NONE:
2930 if (k <= 0)
2931 goto end;
2932 sbuf_off = 0;
2933 sbuf_len = k;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002934
Matt Caswell0f113f32015-01-22 03:40:55 +00002935 read_ssl = 0;
2936 write_tty = 1;
2937 break;
Matt Caswell7e25dd62015-02-13 23:33:12 +00002938 case SSL_ERROR_WANT_ASYNC:
2939 BIO_printf(bio_c_out, "read A BLOCK\n");
Matt Caswelle1b98402015-10-06 14:04:11 +01002940 wait_for_async(con);
Matt Caswell7e25dd62015-02-13 23:33:12 +00002941 write_tty = 0;
2942 read_ssl = 1;
2943 if ((read_tty == 0) && (write_ssl == 0))
2944 write_ssl = 1;
2945 break;
Matt Caswell0f113f32015-01-22 03:40:55 +00002946 case SSL_ERROR_WANT_WRITE:
2947 BIO_printf(bio_c_out, "read W BLOCK\n");
2948 write_ssl = 1;
2949 read_tty = 0;
2950 break;
2951 case SSL_ERROR_WANT_READ:
2952 BIO_printf(bio_c_out, "read R BLOCK\n");
2953 write_tty = 0;
2954 read_ssl = 1;
2955 if ((read_tty == 0) && (write_ssl == 0))
2956 write_ssl = 1;
2957 break;
2958 case SSL_ERROR_WANT_X509_LOOKUP:
2959 BIO_printf(bio_c_out, "read X BLOCK\n");
2960 break;
2961 case SSL_ERROR_SYSCALL:
2962 ret = get_last_socket_error();
2963 if (c_brief)
2964 BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2965 else
2966 BIO_printf(bio_err, "read:errno=%d\n", ret);
2967 goto shut;
2968 case SSL_ERROR_ZERO_RETURN:
2969 BIO_printf(bio_c_out, "closed\n");
2970 ret = 0;
2971 goto shut;
Matt Caswellfc7f1902016-05-03 17:55:00 +01002972 case SSL_ERROR_WANT_ASYNC_JOB:
2973 /* This shouldn't ever happen in s_client. Treat as an error */
Matt Caswell0f113f32015-01-22 03:40:55 +00002974 case SSL_ERROR_SSL:
2975 ERR_print_errors(bio_err);
2976 goto shut;
Matt Caswell0f113f32015-01-22 03:40:55 +00002977 }
2978 }
Matt Caswell75dd6c12016-05-20 11:53:26 +01002979/* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
2980#if defined(OPENSSL_SYS_MSDOS)
2981 else if (has_stdin_waiting())
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002982#else
Richard Levitte51e51332016-09-15 11:20:18 +02002983 else if (FD_ISSET(fileno_stdin(), &readfds))
Dr. Stephen Henson06f45361999-09-20 22:09:17 +00002984#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00002985 {
2986 if (crlf) {
2987 int j, lf_num;
Bodo Möller1bdb8631999-08-07 02:51:10 +00002988
Matt Caswell0f113f32015-01-22 03:40:55 +00002989 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2990 lf_num = 0;
2991 /* both loops are skipped when i <= 0 */
2992 for (j = 0; j < i; j++)
2993 if (cbuf[j] == '\n')
2994 lf_num++;
2995 for (j = i - 1; j >= 0; j--) {
2996 cbuf[j + lf_num] = cbuf[j];
2997 if (cbuf[j] == '\n') {
2998 lf_num--;
2999 i++;
3000 cbuf[j + lf_num] = '\r';
3001 }
3002 }
3003 assert(lf_num == 0);
Richard Levitte51e51332016-09-15 11:20:18 +02003004 } else
Richard Levittec7bdb6a2016-09-14 20:54:30 +02003005 i = raw_read_stdin(cbuf, BUFSIZZ);
Viktor Szakatsd4856402016-08-30 03:01:16 +02003006#if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
John Denkera3ef2c12016-06-10 14:46:07 -04003007 if (i == 0)
3008 at_eof = 1;
Viktor Szakatsd4856402016-08-30 03:01:16 +02003009#endif
John Denkera3ef2c12016-06-10 14:46:07 -04003010
Rich Salz6ba8a5b2015-04-25 15:58:22 -04003011 if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003012 BIO_printf(bio_err, "DONE\n");
3013 ret = 0;
3014 goto shut;
3015 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003016
Rich Salz6ba8a5b2015-04-25 15:58:22 -04003017 if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003018 BIO_printf(bio_err, "RENEGOTIATING\n");
3019 SSL_renegotiate(con);
3020 cbuf_len = 0;
3021 }
Matt Caswellb07b2a12017-02-09 13:33:09 +00003022
Matt Caswellf14afca2017-02-14 11:20:44 +00003023 if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
3024 && cmdletters) {
Matt Caswellb07b2a12017-02-09 13:33:09 +00003025 BIO_printf(bio_err, "KEYUPDATE\n");
3026 SSL_key_update(con,
3027 cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED
3028 : SSL_KEY_UPDATE_NOT_REQUESTED);
3029 cbuf_len = 0;
3030 }
Richard Levitteb6127992016-11-15 14:53:33 +01003031#ifndef OPENSSL_NO_HEARTBEATS
3032 else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
3033 BIO_printf(bio_err, "HEARTBEATING\n");
3034 SSL_heartbeat(con);
3035 cbuf_len = 0;
3036 }
3037#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003038 else {
3039 cbuf_len = i;
3040 cbuf_off = 0;
Ulf Möllera53955d1999-06-04 21:35:58 +00003041#ifdef CHARSET_EBCDIC
Matt Caswell0f113f32015-01-22 03:40:55 +00003042 ebcdic2ascii(cbuf, cbuf, i);
Ulf Möllera53955d1999-06-04 21:35:58 +00003043#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003044 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003045
Matt Caswell0f113f32015-01-22 03:40:55 +00003046 write_ssl = 1;
3047 read_tty = 0;
3048 }
3049 }
Dr. Stephen Henson0e1dba92007-10-26 12:06:36 +00003050
Matt Caswell0f113f32015-01-22 03:40:55 +00003051 ret = 0;
3052 shut:
3053 if (in_init)
Rob Percival0d4d5ab2016-03-10 19:49:34 +00003054 print_stuff(bio_c_out, con, full_log);
Matt Caswellec447922016-01-25 15:00:10 +00003055 do_ssl_shutdown(con);
Richard Levitte27da42d2018-01-14 17:15:32 +01003056
Matt Caswellcb2e10f2016-05-20 16:34:24 +01003057 /*
Bernd Edlinger26ec9432018-01-13 18:41:08 +01003058 * If we ended with an alert being sent, but still with data in the
3059 * network buffer to be read, then calling BIO_closesocket() will
3060 * result in a TCP-RST being sent. On some platforms (notably
3061 * Windows) then this will result in the peer immediately abandoning
3062 * the connection including any buffered alert data before it has
3063 * had a chance to be read. Shutting down the sending side first,
3064 * and then closing the socket sends TCP-FIN first followed by
3065 * TCP-RST. This seems to allow the peer to read the alert data.
3066 */
3067 shutdown(SSL_get_fd(con), 1); /* SHUT_WR */
Andy Polyakovf69d0502018-04-05 19:19:35 +02003068 /*
3069 * We just said we have nothing else to say, but it doesn't mean that
3070 * the other side has nothing. It's even recommended to consume incoming
3071 * data. [In testing context this ensures that alerts are passed on...]
3072 */
3073 timeout.tv_sec = 0;
3074 timeout.tv_usec = 500000; /* some extreme round-trip */
3075 do {
3076 FD_ZERO(&readfds);
3077 openssl_fdset(s, &readfds);
3078 } while (select(s + 1, &readfds, NULL, NULL, &timeout) > 0
3079 && BIO_read(sbio, sbuf, BUFSIZZ) > 0);
3080
Rich Salz8731a4f2016-03-02 16:12:46 -05003081 BIO_closesocket(SSL_get_fd(con));
Matt Caswell0f113f32015-01-22 03:40:55 +00003082 end:
3083 if (con != NULL) {
3084 if (prexit != 0)
Rob Percival0d4d5ab2016-03-10 19:49:34 +00003085 print_stuff(bio_c_out, con, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +00003086 SSL_free(con);
3087 }
Matt Caswell9561e2a2017-07-05 10:32:33 +01003088 SSL_SESSION_free(psksess);
Matt Caswelle481f9b2015-05-15 10:49:56 +01003089#if !defined(OPENSSL_NO_NEXTPROTONEG)
Rich Salzb548a1f2015-05-01 10:02:07 -04003090 OPENSSL_free(next_proto.data);
Dr. Stephen Hensondd251652012-07-03 16:37:50 +00003091#endif
Rich Salz62adbce2015-04-11 10:22:36 -04003092 SSL_CTX_free(ctx);
Peter Wu4bf73e92017-02-01 19:14:27 +01003093 set_keylog_file(NULL, NULL);
Rich Salz222561f2015-04-30 17:33:59 -04003094 X509_free(cert);
Rich Salz4b45c6e2015-04-30 17:57:32 -04003095 sk_X509_CRL_pop_free(crls, X509_CRL_free);
Rich Salzc5ba2d92015-03-28 10:54:15 -04003096 EVP_PKEY_free(key);
Rich Salz222561f2015-04-30 17:33:59 -04003097 sk_X509_pop_free(chain, X509_free);
Rich Salzb548a1f2015-05-01 10:02:07 -04003098 OPENSSL_free(pass);
Dr. Stephen Hensond40a1f72015-09-20 13:59:49 +01003099#ifndef OPENSSL_NO_SRP
3100 OPENSSL_free(srp_arg.srppassin);
3101#endif
Dr. Stephen Hensoneb671722016-10-01 15:16:59 +01003102 OPENSSL_free(connectstr);
John Hughesebc01682018-02-08 10:49:02 +01003103 OPENSSL_free(bindstr);
Richard Levitteab69ac02016-02-03 00:47:42 +01003104 OPENSSL_free(host);
3105 OPENSSL_free(port);
Rich Salz222561f2015-04-30 17:33:59 -04003106 X509_VERIFY_PARAM_free(vpm);
Matt Caswell0f113f32015-01-22 03:40:55 +00003107 ssl_excert_free(exc);
Rich Salz7e1b7482015-04-24 15:26:15 -04003108 sk_OPENSSL_STRING_free(ssl_args);
Viktor Dukhovnicddd4242015-12-29 14:25:50 -05003109 sk_OPENSSL_STRING_free(dane_tlsa_rrset);
Rich Salz62adbce2015-04-11 10:22:36 -04003110 SSL_CONF_CTX_free(cctx);
Rich Salz4b45c6e2015-04-30 17:57:32 -04003111 OPENSSL_clear_free(cbuf, BUFSIZZ);
3112 OPENSSL_clear_free(sbuf, BUFSIZZ);
3113 OPENSSL_clear_free(mbuf, BUFSIZZ);
Richard Levittedd1abd42016-09-28 23:39:18 +02003114 release_engine(e);
Rich Salzca3a82c2015-03-25 11:31:18 -04003115 BIO_free(bio_c_out);
3116 bio_c_out = NULL;
3117 BIO_free(bio_c_msg);
3118 bio_c_msg = NULL;
KaoruToda26a7d932017-10-17 23:04:09 +09003119 return ret;
Matt Caswell0f113f32015-01-22 03:40:55 +00003120}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003121
Rob Percival0d4d5ab2016-03-10 19:49:34 +00003122static void print_stuff(BIO *bio, SSL *s, int full)
Matt Caswell0f113f32015-01-22 03:40:55 +00003123{
3124 X509 *peer = NULL;
Matt Caswell0f113f32015-01-22 03:40:55 +00003125 STACK_OF(X509) *sk;
Matt Caswell0f113f32015-01-22 03:40:55 +00003126 const SSL_CIPHER *c;
Matt Caswell0f113f32015-01-22 03:40:55 +00003127 int i;
Dr. Stephen Henson09b6c2e2005-09-30 23:35:33 +00003128#ifndef OPENSSL_NO_COMP
Matt Caswell0f113f32015-01-22 03:40:55 +00003129 const COMP_METHOD *comp, *expansion;
Dr. Stephen Henson09b6c2e2005-09-30 23:35:33 +00003130#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003131 unsigned char *exportedkeymat;
Rob Percivaldd696a52016-03-02 13:34:05 +00003132#ifndef OPENSSL_NO_CT
Rob Percival0d4d5ab2016-03-10 19:49:34 +00003133 const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
Rob Percivalb5369582016-03-10 23:10:02 +00003134#endif
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003135
Matt Caswell0f113f32015-01-22 03:40:55 +00003136 if (full) {
3137 int got_a_chain = 0;
Bodo Möllerbc2e5191999-05-17 20:46:43 +00003138
Matt Caswell0f113f32015-01-22 03:40:55 +00003139 sk = SSL_get_peer_cert_chain(s);
3140 if (sk != NULL) {
Rich Salz7e1b7482015-04-24 15:26:15 -04003141 got_a_chain = 1;
Bodo Möllerbc2e5191999-05-17 20:46:43 +00003142
Matt Caswell0f113f32015-01-22 03:40:55 +00003143 BIO_printf(bio, "---\nCertificate chain\n");
3144 for (i = 0; i < sk_X509_num(sk); i++) {
Dmitry Belyavskiyb5c42092017-04-25 12:25:42 -04003145 BIO_printf(bio, "%2d s:", i);
3146 X509_NAME_print_ex(bio, X509_get_subject_name(sk_X509_value(sk, i)), 0, get_nameopt());
3147 BIO_puts(bio, "\n");
3148 BIO_printf(bio, " i:");
3149 X509_NAME_print_ex(bio, X509_get_issuer_name(sk_X509_value(sk, i)), 0, get_nameopt());
3150 BIO_puts(bio, "\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00003151 if (c_showcerts)
3152 PEM_write_bio_X509(bio, sk_X509_value(sk, i));
3153 }
3154 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003155
Matt Caswell0f113f32015-01-22 03:40:55 +00003156 BIO_printf(bio, "---\n");
3157 peer = SSL_get_peer_certificate(s);
3158 if (peer != NULL) {
3159 BIO_printf(bio, "Server certificate\n");
Matt Caswelldbd87ff2015-01-21 11:09:58 +00003160
Matt Caswell0f113f32015-01-22 03:40:55 +00003161 /* Redundant if we showed the whole chain */
3162 if (!(c_showcerts && got_a_chain))
3163 PEM_write_bio_X509(bio, peer);
Dmitry Belyavskiyb5c42092017-04-25 12:25:42 -04003164 dump_cert_text(bio, peer);
Matt Caswell0f113f32015-01-22 03:40:55 +00003165 } else {
Dr. Stephen Henson5969a2d2017-03-31 17:04:28 +01003166 BIO_printf(bio, "no peer certificate available\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00003167 }
Dr. Stephen Henson5969a2d2017-03-31 17:04:28 +01003168 print_ca_names(bio, s);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003169
Matt Caswell0f113f32015-01-22 03:40:55 +00003170 ssl_print_sigalgs(bio, s);
3171 ssl_print_tmp_key(bio, s);
Dr. Stephen Hensone7f8ff42012-03-06 14:28:21 +00003172
Rob Percivaldd696a52016-03-02 13:34:05 +00003173#ifndef OPENSSL_NO_CT
Viktor Dukhovni43341432016-04-07 14:17:37 -04003174 /*
3175 * When the SSL session is anonymous, or resumed via an abbreviated
3176 * handshake, no SCTs are provided as part of the handshake. While in
3177 * a resumed session SCTs may be present in the session's certificate,
3178 * no callbacks are invoked to revalidate these, and in any case that
3179 * set of SCTs may be incomplete. Thus it makes little sense to
3180 * attempt to display SCTs from a resumed session's certificate, and of
3181 * course none are associated with an anonymous peer.
3182 */
3183 if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
3184 const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
3185 int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
Rob Percival6bea2a72016-03-04 19:07:25 +00003186
Viktor Dukhovni43341432016-04-07 14:17:37 -04003187 BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
3188 if (sct_count > 0) {
3189 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
Rob Percival6bea2a72016-03-04 19:07:25 +00003190
Viktor Dukhovni43341432016-04-07 14:17:37 -04003191 BIO_printf(bio, "---\n");
3192 for (i = 0; i < sct_count; ++i) {
3193 SCT *sct = sk_SCT_value(scts, i);
Rob Percival0d4d5ab2016-03-10 19:49:34 +00003194
Viktor Dukhovni43341432016-04-07 14:17:37 -04003195 BIO_printf(bio, "SCT validation status: %s\n",
3196 SCT_validation_status_string(sct));
3197 SCT_print(sct, bio, 0, log_store);
3198 if (i < sct_count - 1)
3199 BIO_printf(bio, "\n---\n");
3200 }
3201 BIO_printf(bio, "\n");
3202 }
Rob Percival6bea2a72016-03-04 19:07:25 +00003203 }
Rob Percivaldd696a52016-03-02 13:34:05 +00003204#endif
3205
Matt Caswell0f113f32015-01-22 03:40:55 +00003206 BIO_printf(bio,
Andy Polyakov7d672982017-03-29 23:23:56 +02003207 "---\nSSL handshake has read %ju bytes "
3208 "and written %ju bytes\n",
Rich Salz12997aa2017-08-15 09:42:38 -04003209 BIO_number_read(SSL_get_rbio(s)),
3210 BIO_number_written(SSL_get_wbio(s)));
Matt Caswell0f113f32015-01-22 03:40:55 +00003211 }
Viktor Dukhovnic0a445a2016-02-07 19:07:57 -05003212 print_verify_detail(s, bio);
Dr. Stephen Hensonb577fd02016-02-08 16:18:26 +00003213 BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
Matt Caswell0f113f32015-01-22 03:40:55 +00003214 c = SSL_get_current_cipher(s);
3215 BIO_printf(bio, "%s, Cipher is %s\n",
3216 SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3217 if (peer != NULL) {
3218 EVP_PKEY *pktmp;
FdaSilvaYYbde136c2016-03-18 19:02:17 +01003219
Dr. Stephen Hensonc01ff882015-12-14 13:13:32 +00003220 pktmp = X509_get0_pubkey(peer);
Matt Caswell0f113f32015-01-22 03:40:55 +00003221 BIO_printf(bio, "Server public key is %d bit\n",
3222 EVP_PKEY_bits(pktmp));
Matt Caswell0f113f32015-01-22 03:40:55 +00003223 }
3224 BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
3225 SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
Dr. Stephen Henson09b6c2e2005-09-30 23:35:33 +00003226#ifndef OPENSSL_NO_COMP
Matt Caswell0f113f32015-01-22 03:40:55 +00003227 comp = SSL_get_current_compression(s);
3228 expansion = SSL_get_current_expansion(s);
3229 BIO_printf(bio, "Compression: %s\n",
3230 comp ? SSL_COMP_get_name(comp) : "NONE");
3231 BIO_printf(bio, "Expansion: %s\n",
3232 expansion ? SSL_COMP_get_name(expansion) : "NONE");
Dr. Stephen Henson09b6c2e2005-09-30 23:35:33 +00003233#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003234
Dr. Stephen Henson57559472012-02-09 15:43:58 +00003235#ifdef SSL_DEBUG
Matt Caswell0f113f32015-01-22 03:40:55 +00003236 {
3237 /* Print out local port of connection: useful for debugging */
3238 int sock;
Richard Levitte642a1662016-07-19 13:52:26 +02003239 union BIO_sock_info_u info;
3240
Matt Caswell0f113f32015-01-22 03:40:55 +00003241 sock = SSL_get_fd(s);
Richard Levitte642a1662016-07-19 13:52:26 +02003242 if ((info.addr = BIO_ADDR_new()) != NULL
3243 && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
3244 BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
Jon Loeliger1abd2922016-07-26 12:48:20 -04003245 ntohs(BIO_ADDR_rawport(info.addr)));
Richard Levitte642a1662016-07-19 13:52:26 +02003246 }
3247 BIO_ADDR_free(info.addr);
Matt Caswell0f113f32015-01-22 03:40:55 +00003248 }
Dr. Stephen Hensona2f92002011-05-09 15:44:01 +00003249#endif
3250
Matt Caswelle481f9b2015-05-15 10:49:56 +01003251#if !defined(OPENSSL_NO_NEXTPROTONEG)
Matt Caswell0f113f32015-01-22 03:40:55 +00003252 if (next_proto.status != -1) {
3253 const unsigned char *proto;
3254 unsigned int proto_len;
3255 SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
3256 BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
3257 BIO_write(bio, proto, proto_len);
3258 BIO_write(bio, "\n", 1);
3259 }
Matt Caswelle481f9b2015-05-15 10:49:56 +01003260#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003261 {
3262 const unsigned char *proto;
3263 unsigned int proto_len;
3264 SSL_get0_alpn_selected(s, &proto, &proto_len);
3265 if (proto_len > 0) {
3266 BIO_printf(bio, "ALPN protocol: ");
3267 BIO_write(bio, proto, proto_len);
3268 BIO_write(bio, "\n", 1);
3269 } else
3270 BIO_printf(bio, "No ALPN negotiated\n");
3271 }
Ben Laurie71fa4512012-06-03 22:00:21 +00003272
Piotr Sikorae783bae2014-12-22 11:15:51 +00003273#ifndef OPENSSL_NO_SRTP
Matt Caswell0f113f32015-01-22 03:40:55 +00003274 {
3275 SRTP_PROTECTION_PROFILE *srtp_profile =
3276 SSL_get_selected_srtp_profile(s);
3277
3278 if (srtp_profile)
3279 BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
3280 srtp_profile->name);
3281 }
Piotr Sikorae783bae2014-12-22 11:15:51 +00003282#endif
Matt Caswell0f113f32015-01-22 03:40:55 +00003283
Matt Caswell576eb392017-02-23 11:52:43 +00003284 if (SSL_version(s) == TLS1_3_VERSION) {
3285 switch (SSL_get_early_data_status(s)) {
3286 case SSL_EARLY_DATA_NOT_SENT:
3287 BIO_printf(bio, "Early data was not sent\n");
3288 break;
3289
3290 case SSL_EARLY_DATA_REJECTED:
3291 BIO_printf(bio, "Early data was rejected\n");
3292 break;
3293
3294 case SSL_EARLY_DATA_ACCEPTED:
3295 BIO_printf(bio, "Early data was accepted\n");
3296 break;
3297
3298 }
3299 }
3300
Matt Caswell0f113f32015-01-22 03:40:55 +00003301 SSL_SESSION_print(bio, SSL_get_session(s));
FdaSilvaYYd6073e22016-08-07 12:04:26 +02003302 if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003303 BIO_printf(bio, "Keying material exporter:\n");
3304 BIO_printf(bio, " Label: '%s'\n", keymatexportlabel);
3305 BIO_printf(bio, " Length: %i bytes\n", keymatexportlen);
Rich Salz68dc6822015-04-30 17:48:31 -04003306 exportedkeymat = app_malloc(keymatexportlen, "export key");
3307 if (!SSL_export_keying_material(s, exportedkeymat,
3308 keymatexportlen,
3309 keymatexportlabel,
3310 strlen(keymatexportlabel),
3311 NULL, 0, 0)) {
3312 BIO_printf(bio, " Error\n");
3313 } else {
3314 BIO_printf(bio, " Keying material: ");
3315 for (i = 0; i < keymatexportlen; i++)
3316 BIO_printf(bio, "%02X", exportedkeymat[i]);
3317 BIO_printf(bio, "\n");
Matt Caswell0f113f32015-01-22 03:40:55 +00003318 }
Rich Salz68dc6822015-04-30 17:48:31 -04003319 OPENSSL_free(exportedkeymat);
Matt Caswell0f113f32015-01-22 03:40:55 +00003320 }
3321 BIO_printf(bio, "---\n");
Rich Salz222561f2015-04-30 17:33:59 -04003322 X509_free(peer);
Matt Caswell0f113f32015-01-22 03:40:55 +00003323 /* flush, or debugging output gets mixed with http response */
3324 (void)BIO_flush(bio);
3325}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003326
Matt Caswell3e41ac32016-03-21 16:54:53 +00003327# ifndef OPENSSL_NO_OCSP
Dr. Stephen Henson67c8e7f2007-09-26 21:56:59 +00003328static int ocsp_resp_cb(SSL *s, void *arg)
Matt Caswell0f113f32015-01-22 03:40:55 +00003329{
3330 const unsigned char *p;
3331 int len;
3332 OCSP_RESPONSE *rsp;
3333 len = SSL_get_tlsext_status_ocsp_resp(s, &p);
3334 BIO_puts(arg, "OCSP response: ");
Paul Yang22342122017-06-13 01:24:02 +08003335 if (p == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003336 BIO_puts(arg, "no response sent\n");
3337 return 1;
3338 }
3339 rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
Paul Yang22342122017-06-13 01:24:02 +08003340 if (rsp == NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +00003341 BIO_puts(arg, "response parse error\n");
3342 BIO_dump_indent(arg, (char *)p, len, 4);
3343 return 0;
3344 }
3345 BIO_puts(arg, "\n======================================\n");
3346 OCSP_RESPONSE_print(arg, rsp, 0);
3347 BIO_puts(arg, "======================================\n");
3348 OCSP_RESPONSE_free(rsp);
3349 return 1;
3350}
Matt Caswell3e41ac32016-03-21 16:54:53 +00003351# endif
Matt Caswellf9e55032016-03-21 15:32:40 +00003352
Robert Scheck398b0bb2017-02-27 00:44:14 +01003353static int ldap_ExtendedResponse_parse(const char *buf, long rem)
3354{
3355 const unsigned char *cur, *end;
3356 long len;
3357 int tag, xclass, inf, ret = -1;
3358
3359 cur = (const unsigned char *)buf;
3360 end = cur + rem;
3361
3362 /*
3363 * From RFC 4511:
3364 *
3365 * LDAPMessage ::= SEQUENCE {
3366 * messageID MessageID,
3367 * protocolOp CHOICE {
3368 * ...
3369 * extendedResp ExtendedResponse,
3370 * ... },
3371 * controls [0] Controls OPTIONAL }
3372 *
3373 * ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
3374 * COMPONENTS OF LDAPResult,
3375 * responseName [10] LDAPOID OPTIONAL,
3376 * responseValue [11] OCTET STRING OPTIONAL }
3377 *
3378 * LDAPResult ::= SEQUENCE {
3379 * resultCode ENUMERATED {
3380 * success (0),
3381 * ...
3382 * other (80),
3383 * ... },
3384 * matchedDN LDAPDN,
3385 * diagnosticMessage LDAPString,
3386 * referral [3] Referral OPTIONAL }
3387 */
3388
3389 /* pull SEQUENCE */
3390 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3391 if (inf != V_ASN1_CONSTRUCTED || tag != V_ASN1_SEQUENCE ||
3392 (rem = end - cur, len > rem)) {
3393 BIO_printf(bio_err, "Unexpected LDAP response\n");
3394 goto end;
3395 }
3396
Andy Polyakov8b0d4242017-03-02 16:56:44 +01003397 rem = len; /* ensure that we don't overstep the SEQUENCE */
3398
Robert Scheck398b0bb2017-02-27 00:44:14 +01003399 /* pull MessageID */
3400 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3401 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_INTEGER ||
3402 (rem = end - cur, len > rem)) {
3403 BIO_printf(bio_err, "No MessageID\n");
3404 goto end;
3405 }
3406
3407 cur += len; /* shall we check for MessageId match or just skip? */
3408
3409 /* pull [APPLICATION 24] */
3410 rem = end - cur;
3411 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3412 if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION ||
3413 tag != 24) {
3414 BIO_printf(bio_err, "Not ExtendedResponse\n");
3415 goto end;
3416 }
3417
3418 /* pull resultCode */
3419 rem = end - cur;
3420 inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3421 if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_ENUMERATED || len == 0 ||
3422 (rem = end - cur, len > rem)) {
3423 BIO_printf(bio_err, "Not LDAPResult\n");
3424 goto end;
3425 }
3426
3427 /* len should always be one, but just in case... */
3428 for (ret = 0, inf = 0; inf < len; inf++) {
3429 ret <<= 8;
3430 ret |= cur[inf];
3431 }
3432 /* There is more data, but we don't care... */
3433 end:
3434 return ret;
3435}
3436
FdaSilvaYYd6073e22016-08-07 12:04:26 +02003437#endif /* OPENSSL_NO_SOCK */