ad237c3252fee6c263c320c5f855e8f1d18ccd35
[openssl.git] / apps / s_client.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /* ====================================================================
11  * Copyright 2005 Nokia. All rights reserved.
12  *
13  * The portions of the attached software ("Contribution") is developed by
14  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
15  * license.
16  *
17  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
18  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
19  * support (see RFC 4279) to OpenSSL.
20  *
21  * No patent licenses or other rights except those expressly stated in
22  * the OpenSSL open source license shall be deemed granted or received
23  * expressly, by implication, estoppel, or otherwise.
24  *
25  * No assurances are provided by Nokia that the Contribution does not
26  * infringe the patent or other intellectual property rights of any third
27  * party or that the license provides you with all the necessary rights
28  * to make use of the Contribution.
29  *
30  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
31  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
32  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
33  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
34  * OTHERWISE.
35  */
36
37 #include <ctype.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <errno.h>
42 #include <openssl/e_os2.h>
43
44 #ifndef OPENSSL_NO_SOCK
45
46 /*
47  * With IPv6, it looks like Digital has mixed up the proper order of
48  * recursive header file inclusion, resulting in the compiler complaining
49  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
50  * needed to have fileno() declared correctly...  So let's define u_int
51  */
52 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
53 # define __U_INT
54 typedef unsigned int u_int;
55 #endif
56
57 #define USE_SOCKETS
58 #include "apps.h"
59 #include <openssl/x509.h>
60 #include <openssl/ssl.h>
61 #include <openssl/err.h>
62 #include <openssl/pem.h>
63 #include <openssl/rand.h>
64 #include <openssl/ocsp.h>
65 #include <openssl/bn.h>
66 #include <openssl/async.h>
67 #ifndef OPENSSL_NO_SRP
68 # include <openssl/srp.h>
69 #endif
70 #ifndef OPENSSL_NO_CT
71 # include <openssl/ct.h>
72 #endif
73 #include "s_apps.h"
74 #include "timeouts.h"
75
76 #if defined(__has_feature)
77 # if __has_feature(memory_sanitizer)
78 #  include <sanitizer/msan_interface.h>
79 # endif
80 #endif
81
82 #undef BUFSIZZ
83 #define BUFSIZZ 1024*8
84 #define S_CLIENT_IRC_READ_TIMEOUT 8
85
86 static char *prog;
87 static int c_debug = 0;
88 static int c_showcerts = 0;
89 static char *keymatexportlabel = NULL;
90 static int keymatexportlen = 20;
91 static BIO *bio_c_out = NULL;
92 static int c_quiet = 0;
93 static char *sess_out = NULL;
94
95 static void print_stuff(BIO *berr, SSL *con, int full);
96 #ifndef OPENSSL_NO_OCSP
97 static int ocsp_resp_cb(SSL *s, void *arg);
98 #endif
99
100 static int saved_errno;
101
102 static void save_errno(void)
103 {
104     saved_errno = errno;
105     errno = 0;
106 }
107
108 static int restore_errno(void)
109 {
110     int ret = errno;
111     errno = saved_errno;
112     return ret;
113 }
114
115 static void do_ssl_shutdown(SSL *ssl)
116 {
117     int ret;
118
119     do {
120         /* We only do unidirectional shutdown */
121         ret = SSL_shutdown(ssl);
122         if (ret < 0) {
123             switch (SSL_get_error(ssl, ret)) {
124             case SSL_ERROR_WANT_READ:
125             case SSL_ERROR_WANT_WRITE:
126             case SSL_ERROR_WANT_ASYNC:
127             case SSL_ERROR_WANT_ASYNC_JOB:
128                 /* We just do busy waiting. Nothing clever */
129                 continue;
130             }
131             ret = 0;
132         }
133     } while (ret < 0);
134 }
135
136 #ifndef OPENSSL_NO_PSK
137 /* Default PSK identity and key */
138 static char *psk_identity = "Client_identity";
139 /*
140  * char *psk_key=NULL; by default PSK is not used
141  */
142
143 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
144                                   unsigned int max_identity_len,
145                                   unsigned char *psk,
146                                   unsigned int max_psk_len)
147 {
148     int ret;
149     long key_len;
150     unsigned char *key;
151
152     if (c_debug)
153         BIO_printf(bio_c_out, "psk_client_cb\n");
154     if (!hint) {
155         /* no ServerKeyExchange message */
156         if (c_debug)
157             BIO_printf(bio_c_out,
158                        "NULL received PSK identity hint, continuing anyway\n");
159     } else if (c_debug)
160         BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
161
162     /*
163      * lookup PSK identity and PSK key based on the given identity hint here
164      */
165     ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
166     if (ret < 0 || (unsigned int)ret > max_identity_len)
167         goto out_err;
168     if (c_debug)
169         BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
170                    ret);
171
172     /* convert the PSK key to binary */
173     key = OPENSSL_hexstr2buf(psk_key, &key_len);
174     if (key == NULL) {
175         BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
176                    psk_key);
177         return 0;
178     }
179     if (key_len > max_psk_len) {
180         BIO_printf(bio_err,
181                    "psk buffer of callback is too small (%d) for key (%ld)\n",
182                    max_psk_len, key_len);
183         OPENSSL_free(key);
184         return 0;
185     }
186
187     memcpy(psk, key, key_len);
188     OPENSSL_free(key);
189
190     if (c_debug)
191         BIO_printf(bio_c_out, "created PSK len=%ld\n", key_len);
192
193     return key_len;
194  out_err:
195     if (c_debug)
196         BIO_printf(bio_err, "Error in PSK client callback\n");
197     return 0;
198 }
199 #endif
200
201 /* This is a context that we pass to callbacks */
202 typedef struct tlsextctx_st {
203     BIO *biodebug;
204     int ack;
205 } tlsextctx;
206
207 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
208 {
209     tlsextctx *p = (tlsextctx *) arg;
210     const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
211     if (SSL_get_servername_type(s) != -1)
212         p->ack = !SSL_session_reused(s) && hn != NULL;
213     else
214         BIO_printf(bio_err, "Can't use SSL_get_servername\n");
215
216     return SSL_TLSEXT_ERR_OK;
217 }
218
219 #ifndef OPENSSL_NO_SRP
220
221 /* This is a context that we pass to all callbacks */
222 typedef struct srp_arg_st {
223     char *srppassin;
224     char *srplogin;
225     int msg;                    /* copy from c_msg */
226     int debug;                  /* copy from c_debug */
227     int amp;                    /* allow more groups */
228     int strength;               /* minimal size for N */
229 } SRP_ARG;
230
231 # define SRP_NUMBER_ITERATIONS_FOR_PRIME 64
232
233 static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
234 {
235     BN_CTX *bn_ctx = BN_CTX_new();
236     BIGNUM *p = BN_new();
237     BIGNUM *r = BN_new();
238     int ret =
239         g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
240         BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
241         p != NULL && BN_rshift1(p, N) &&
242         /* p = (N-1)/2 */
243         BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 &&
244         r != NULL &&
245         /* verify g^((N-1)/2) == -1 (mod N) */
246         BN_mod_exp(r, g, p, N, bn_ctx) &&
247         BN_add_word(r, 1) && BN_cmp(r, N) == 0;
248
249     BN_free(r);
250     BN_free(p);
251     BN_CTX_free(bn_ctx);
252     return ret;
253 }
254
255 /*-
256  * This callback is used here for two purposes:
257  * - extended debugging
258  * - making some primality tests for unknown groups
259  * The callback is only called for a non default group.
260  *
261  * An application does not need the call back at all if
262  * only the standard groups are used.  In real life situations,
263  * client and server already share well known groups,
264  * thus there is no need to verify them.
265  * Furthermore, in case that a server actually proposes a group that
266  * is not one of those defined in RFC 5054, it is more appropriate
267  * to add the group to a static list and then compare since
268  * primality tests are rather cpu consuming.
269  */
270
271 static int ssl_srp_verify_param_cb(SSL *s, void *arg)
272 {
273     SRP_ARG *srp_arg = (SRP_ARG *)arg;
274     BIGNUM *N = NULL, *g = NULL;
275
276     if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
277         return 0;
278     if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
279         BIO_printf(bio_err, "SRP parameters:\n");
280         BIO_printf(bio_err, "\tN=");
281         BN_print(bio_err, N);
282         BIO_printf(bio_err, "\n\tg=");
283         BN_print(bio_err, g);
284         BIO_printf(bio_err, "\n");
285     }
286
287     if (SRP_check_known_gN_param(g, N))
288         return 1;
289
290     if (srp_arg->amp == 1) {
291         if (srp_arg->debug)
292             BIO_printf(bio_err,
293                        "SRP param N and g are not known params, going to check deeper.\n");
294
295         /*
296          * The srp_moregroups is a real debugging feature. Implementors
297          * should rather add the value to the known ones. The minimal size
298          * has already been tested.
299          */
300         if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
301             return 1;
302     }
303     BIO_printf(bio_err, "SRP param N and g rejected.\n");
304     return 0;
305 }
306
307 # define PWD_STRLEN 1024
308
309 static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
310 {
311     SRP_ARG *srp_arg = (SRP_ARG *)arg;
312     char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
313     PW_CB_DATA cb_tmp;
314     int l;
315
316     cb_tmp.password = (char *)srp_arg->srppassin;
317     cb_tmp.prompt_info = "SRP user";
318     if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
319         BIO_printf(bio_err, "Can't read Password\n");
320         OPENSSL_free(pass);
321         return NULL;
322     }
323     *(pass + l) = '\0';
324
325     return pass;
326 }
327
328 #endif
329
330 static char *srtp_profiles = NULL;
331
332 #ifndef OPENSSL_NO_NEXTPROTONEG
333 /* This the context that we pass to next_proto_cb */
334 typedef struct tlsextnextprotoctx_st {
335     unsigned char *data;
336     size_t len;
337     int status;
338 } tlsextnextprotoctx;
339
340 static tlsextnextprotoctx next_proto;
341
342 static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
343                          const unsigned char *in, unsigned int inlen,
344                          void *arg)
345 {
346     tlsextnextprotoctx *ctx = arg;
347
348     if (!c_quiet) {
349         /* We can assume that |in| is syntactically valid. */
350         unsigned i;
351         BIO_printf(bio_c_out, "Protocols advertised by server: ");
352         for (i = 0; i < inlen;) {
353             if (i)
354                 BIO_write(bio_c_out, ", ", 2);
355             BIO_write(bio_c_out, &in[i + 1], in[i]);
356             i += in[i] + 1;
357         }
358         BIO_write(bio_c_out, "\n", 1);
359     }
360
361     ctx->status =
362         SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
363     return SSL_TLSEXT_ERR_OK;
364 }
365 #endif                         /* ndef OPENSSL_NO_NEXTPROTONEG */
366
367 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
368                                    const unsigned char *in, size_t inlen,
369                                    int *al, void *arg)
370 {
371     char pem_name[100];
372     unsigned char ext_buf[4 + 65536];
373
374     /* Reconstruct the type/len fields prior to extension data */
375     ext_buf[0] = ext_type >> 8;
376     ext_buf[1] = ext_type & 0xFF;
377     ext_buf[2] = inlen >> 8;
378     ext_buf[3] = inlen & 0xFF;
379     memcpy(ext_buf + 4, in, inlen);
380
381     BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
382                  ext_type);
383     PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
384     return 1;
385 }
386
387 /*
388  * Hex decoder that tolerates optional whitespace.  Returns number of bytes
389  * produced, advances inptr to end of input string.
390  */
391 static ossl_ssize_t hexdecode(const char **inptr, void *result)
392 {
393     unsigned char **out = (unsigned char **)result;
394     const char *in = *inptr;
395     unsigned char *ret = app_malloc(strlen(in) / 2, "hexdecode");
396     unsigned char *cp = ret;
397     uint8_t byte;
398     int nibble = 0;
399
400     if (ret == NULL)
401         return -1;
402
403     for (byte = 0; *in; ++in) {
404         int x;
405
406         if (isspace(_UC(*in)))
407             continue;
408         x = OPENSSL_hexchar2int(*in);
409         if (x < 0) {
410             OPENSSL_free(ret);
411             return 0;
412         }
413         byte |= (char)x;
414         if ((nibble ^= 1) == 0) {
415             *cp++ = byte;
416             byte = 0;
417         } else {
418             byte <<= 4;
419         }
420     }
421     if (nibble != 0) {
422         OPENSSL_free(ret);
423         return 0;
424     }
425     *inptr = in;
426
427     return cp - (*out = ret);
428 }
429
430 /*
431  * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances
432  * inptr to next field skipping leading whitespace.
433  */
434 static ossl_ssize_t checked_uint8(const char **inptr, void *out)
435 {
436     uint8_t *result = (uint8_t *)out;
437     const char *in = *inptr;
438     char *endp;
439     long v;
440     int e;
441
442     save_errno();
443     v = strtol(in, &endp, 10);
444     e = restore_errno();
445
446     if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) ||
447         endp == in || !isspace(_UC(*endp)) ||
448         v != (*result = (uint8_t) v)) {
449         return -1;
450     }
451     for (in = endp; isspace(_UC(*in)); ++in)
452         continue;
453
454     *inptr = in;
455     return 1;
456 }
457
458 struct tlsa_field {
459     void *var;
460     const char *name;
461     ossl_ssize_t (*parser)(const char **, void *);
462 };
463
464 static int tlsa_import_rr(SSL *con, const char *rrdata)
465 {
466     /* Not necessary to re-init these values; the "parsers" do that. */
467     static uint8_t usage;
468     static uint8_t selector;
469     static uint8_t mtype;
470     static unsigned char *data;
471     static struct tlsa_field tlsa_fields[] = {
472         { &usage, "usage", checked_uint8 },
473         { &selector, "selector", checked_uint8 },
474         { &mtype, "mtype", checked_uint8 },
475         { &data, "data", hexdecode },
476         { NULL, }
477     };
478     struct tlsa_field *f;
479     int ret;
480     const char *cp = rrdata;
481     ossl_ssize_t len = 0;
482
483     for (f = tlsa_fields; f->var; ++f) {
484         /* Returns number of bytes produced, advances cp to next field */
485         if ((len = f->parser(&cp, f->var)) <= 0) {
486             BIO_printf(bio_err, "%s: warning: bad TLSA %s field in: %s\n",
487                        prog, f->name, rrdata);
488             return 0;
489         }
490     }
491     /* The data field is last, so len is its length */
492     ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len);
493     OPENSSL_free(data);
494
495     if (ret == 0) {
496         ERR_print_errors(bio_err);
497         BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n",
498                    prog, rrdata);
499         return 0;
500     }
501     if (ret < 0) {
502         ERR_print_errors(bio_err);
503         BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n",
504                    prog, rrdata);
505         return 0;
506     }
507     return ret;
508 }
509
510 static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset)
511 {
512     int num = sk_OPENSSL_STRING_num(rrset);
513     int count = 0;
514     int i;
515
516     for (i = 0; i < num; ++i) {
517         char *rrdata = sk_OPENSSL_STRING_value(rrset, i);
518         if (tlsa_import_rr(con, rrdata) > 0)
519             ++count;
520     }
521     return count > 0;
522 }
523
524 typedef enum OPTION_choice {
525     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
526     OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_UNIX,
527     OPT_XMPPHOST, OPT_VERIFY,
528     OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
529     OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
530     OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
531     OPT_SSL_CLIENT_ENGINE, OPT_RAND, OPT_IGN_EOF, OPT_NO_IGN_EOF,
532     OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
533     OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
534     OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
535 #ifndef OPENSSL_NO_PSK
536     OPT_PSK_IDENTITY, OPT_PSK,
537 #endif
538 #ifndef OPENSSL_NO_SRP
539     OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER,
540     OPT_SRP_MOREGROUPS,
541 #endif
542     OPT_SSL3, OPT_SSL_CONFIG,
543     OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
544     OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
545     OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH,
546         OPT_VERIFYCAPATH,
547     OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE,
548     OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN,
549     OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME,
550     OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_SMTPHOST,
551     OPT_ASYNC, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES, OPT_READ_BUF,
552     OPT_KEYLOG_FILE,
553     OPT_V_ENUM,
554     OPT_X_ENUM,
555     OPT_S_ENUM,
556     OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_DANE_TLSA_DOMAIN,
557 #ifndef OPENSSL_NO_CT
558     OPT_CT, OPT_NOCT, OPT_CTLOG_FILE,
559 #endif
560     OPT_DANE_TLSA_RRDATA, OPT_DANE_EE_NO_NAME
561 } OPTION_CHOICE;
562
563 const OPTIONS s_client_options[] = {
564     {"help", OPT_HELP, '-', "Display this summary"},
565     {"host", OPT_HOST, 's', "Use -connect instead"},
566     {"port", OPT_PORT, 'p', "Use -connect instead"},
567     {"connect", OPT_CONNECT, 's',
568      "TCP/IP where to connect (default is :" PORT ")"},
569     {"proxy", OPT_PROXY, 's',
570      "Connect to via specified proxy to the real server"},
571 #ifdef AF_UNIX
572     {"unix", OPT_UNIX, 's', "Connect over the specified Unix-domain socket"},
573 #endif
574     {"4", OPT_4, '-', "Use IPv4 only"},
575 #ifdef AF_INET6
576     {"6", OPT_6, '-', "Use IPv6 only"},
577 #endif
578     {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
579     {"cert", OPT_CERT, '<', "Certificate file to use, PEM format assumed"},
580     {"certform", OPT_CERTFORM, 'F',
581      "Certificate format (PEM or DER) PEM default"},
582     {"key", OPT_KEY, 's', "Private key file to use, if not in -cert file"},
583     {"keyform", OPT_KEYFORM, 'E', "Key format (PEM, DER or engine) PEM default"},
584     {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
585     {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
586     {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
587     {"no-CAfile", OPT_NOCAFILE, '-',
588      "Do not load the default certificates file"},
589     {"no-CApath", OPT_NOCAPATH, '-',
590      "Do not load certificates from the default certificates directory"},
591     {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
592     {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
593      "DANE TLSA rrdata presentation form"},
594     {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-',
595      "Disable name checks when matching DANE-EE(3) TLSA records"},
596     {"reconnect", OPT_RECONNECT, '-',
597      "Drop and re-make the connection with the same Session-ID"},
598     {"showcerts", OPT_SHOWCERTS, '-', "Show all certificates in the chain"},
599     {"debug", OPT_DEBUG, '-', "Extra output"},
600     {"msg", OPT_MSG, '-', "Show protocol messages"},
601     {"msgfile", OPT_MSGFILE, '>',
602      "File to send output of -msg or -trace, instead of stdout"},
603     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
604     {"state", OPT_STATE, '-', "Print the ssl states"},
605     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
606     {"quiet", OPT_QUIET, '-', "No s_client output"},
607     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
608     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
609     {"starttls", OPT_STARTTLS, 's',
610      "Use the appropriate STARTTLS command before starting TLS"},
611     {"xmpphost", OPT_XMPPHOST, 's',
612      "Host to use with \"-starttls xmpp[-server]\""},
613     {"rand", OPT_RAND, 's',
614      "Load the file(s) into the random number generator"},
615     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
616     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
617     {"use_srtp", OPT_USE_SRTP, 's',
618      "Offer SRTP key management with a colon-separated profile list"},
619     {"keymatexport", OPT_KEYMATEXPORT, 's',
620      "Export keying material using label"},
621     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
622      "Export len bytes of keying material (default 20)"},
623     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
624     {"name", OPT_SMTPHOST, 's',
625      "Hostname to use for \"-starttls lmtp\" or \"-starttls smtp\""},
626     {"CRL", OPT_CRL, '<', "CRL file to use"},
627     {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
628     {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
629     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
630      "Close connection on verification error"},
631     {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
632     {"brief", OPT_BRIEF, '-',
633      "Restrict output to brief summary of connection parameters"},
634     {"prexit", OPT_PREXIT, '-',
635      "Print session information when the program exits"},
636     {"security_debug", OPT_SECURITY_DEBUG, '-',
637      "Enable security debug messages"},
638     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
639      "Output more security debug output"},
640     {"cert_chain", OPT_CERT_CHAIN, '<',
641      "Certificate chain file (in PEM format)"},
642     {"chainCApath", OPT_CHAINCAPATH, '/',
643      "Use dir as certificate store path to build CA certificate chain"},
644     {"verifyCApath", OPT_VERIFYCAPATH, '/',
645      "Use dir as certificate store path to verify CA certificate"},
646     {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
647     {"chainCAfile", OPT_CHAINCAFILE, '<',
648      "CA file for certificate chain (PEM format)"},
649     {"verifyCAfile", OPT_VERIFYCAFILE, '<',
650      "CA file for certificate verification (PEM format)"},
651     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
652     {"servername", OPT_SERVERNAME, 's',
653      "Set TLS extension servername in ClientHello"},
654     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
655      "Hex dump of all TLS extensions received"},
656 #ifndef OPENSSL_NO_OCSP
657     {"status", OPT_STATUS, '-', "Request certificate status from server"},
658 #endif
659     {"serverinfo", OPT_SERVERINFO, 's',
660      "types  Send empty ClientHello extensions (comma-separated numbers)"},
661     {"alpn", OPT_ALPN, 's',
662      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
663     {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
664     {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"},
665     {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'n',
666      "Size used to split data for encrypt pipelines"},
667     {"max_pipelines", OPT_MAX_PIPELINES, 'n',
668      "Maximum number of encrypt/decrypt pipelines to be used"},
669     {"read_buf", OPT_READ_BUF, 'n',
670      "Default read buffer size to be used for connections"},
671     OPT_S_OPTIONS,
672     OPT_V_OPTIONS,
673     OPT_X_OPTIONS,
674 #ifndef OPENSSL_NO_SSL3
675     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
676 #endif
677 #ifndef OPENSSL_NO_TLS1
678     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
679 #endif
680 #ifndef OPENSSL_NO_TLS1_1
681     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
682 #endif
683 #ifndef OPENSSL_NO_TLS1_2
684     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
685 #endif
686 #ifndef OPENSSL_NO_TLS1_3
687     {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
688 #endif
689 #ifndef OPENSSL_NO_DTLS
690     {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
691     {"timeout", OPT_TIMEOUT, '-',
692      "Enable send/receive timeout on DTLS connections"},
693     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
694 #endif
695 #ifndef OPENSSL_NO_DTLS1
696     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
697 #endif
698 #ifndef OPENSSL_NO_DTLS1_2
699     {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
700 #endif
701 #ifndef OPENSSL_NO_SSL_TRACE
702     {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"},
703 #endif
704 #ifdef WATT32
705     {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
706 #endif
707     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
708 #ifndef OPENSSL_NO_PSK
709     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
710     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
711 #endif
712 #ifndef OPENSSL_NO_SRP
713     {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"},
714     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
715     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
716      "SRP username into second ClientHello message"},
717     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
718      "Tolerate other than the known g N values."},
719     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
720 #endif
721 #ifndef OPENSSL_NO_NEXTPROTONEG
722     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
723      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
724 #endif
725 #ifndef OPENSSL_NO_ENGINE
726     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
727     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
728      "Specify engine to be used for client certificate operations"},
729 #endif
730 #ifndef OPENSSL_NO_CT
731     {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"},
732     {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"},
733     {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"},
734 #endif
735     {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
736     {NULL, OPT_EOF, 0x00, NULL}
737 };
738
739 typedef enum PROTOCOL_choice {
740     PROTO_OFF,
741     PROTO_SMTP,
742     PROTO_POP3,
743     PROTO_IMAP,
744     PROTO_FTP,
745     PROTO_TELNET,
746     PROTO_XMPP,
747     PROTO_XMPP_SERVER,
748     PROTO_CONNECT,
749     PROTO_IRC,
750     PROTO_POSTGRES,
751     PROTO_LMTP,
752     PROTO_NNTP
753 } PROTOCOL_CHOICE;
754
755 static const OPT_PAIR services[] = {
756     {"smtp", PROTO_SMTP},
757     {"pop3", PROTO_POP3},
758     {"imap", PROTO_IMAP},
759     {"ftp", PROTO_FTP},
760     {"xmpp", PROTO_XMPP},
761     {"xmpp-server", PROTO_XMPP_SERVER},
762     {"telnet", PROTO_TELNET},
763     {"irc", PROTO_IRC},
764     {"postgres", PROTO_POSTGRES},
765     {"lmtp", PROTO_LMTP},
766     {"nntp", PROTO_NNTP},
767     {NULL, 0}
768 };
769
770 #define IS_INET_FLAG(o) \
771  (o == OPT_4 || o == OPT_6 || o == OPT_HOST || o == OPT_PORT || o == OPT_CONNECT)
772 #define IS_UNIX_FLAG(o) (o == OPT_UNIX)
773
774 #define IS_PROT_FLAG(o) \
775  (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
776   || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
777
778 /* Free |*dest| and optionally set it to a copy of |source|. */
779 static void freeandcopy(char **dest, const char *source)
780 {
781     OPENSSL_free(*dest);
782     *dest = NULL;
783     if (source != NULL)
784         *dest = OPENSSL_strdup(source);
785 }
786
787 static int new_session_cb(SSL *S, SSL_SESSION *sess)
788 {
789     BIO *stmp = BIO_new_file(sess_out, "w");
790
791     if (stmp == NULL) {
792         BIO_printf(bio_err, "Error writing session file %s\n", sess_out);
793     } else {
794         PEM_write_bio_SSL_SESSION(stmp, sess);
795         BIO_free(stmp);
796     }
797
798     /*
799      * We always return a "fail" response so that the session gets freed again
800      * because we haven't used the reference.
801      */
802     return 0;
803 }
804
805 int s_client_main(int argc, char **argv)
806 {
807     BIO *sbio;
808     EVP_PKEY *key = NULL;
809     SSL *con = NULL;
810     SSL_CTX *ctx = NULL;
811     STACK_OF(X509) *chain = NULL;
812     X509 *cert = NULL;
813     X509_VERIFY_PARAM *vpm = NULL;
814     SSL_EXCERT *exc = NULL;
815     SSL_CONF_CTX *cctx = NULL;
816     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
817     char *dane_tlsa_domain = NULL;
818     STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
819     int dane_ee_no_name = 0;
820     STACK_OF(X509_CRL) *crls = NULL;
821     const SSL_METHOD *meth = TLS_client_method();
822     const char *CApath = NULL, *CAfile = NULL;
823     char *cbuf = NULL, *sbuf = NULL;
824     char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL;
825     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
826     char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
827     char *port = OPENSSL_strdup(PORT);
828     char *inrand = NULL;
829     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
830     char *sess_in = NULL, *crl_file = NULL, *p;
831     char *xmpphost = NULL;
832     const char *ehlo = "mail.example.com";
833     struct timeval timeout, *timeoutp;
834     fd_set readfds, writefds;
835     int noCApath = 0, noCAfile = 0;
836     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
837     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
838     int prexit = 0;
839     int sdebug = 0;
840     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
841     int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
842     int sbuf_len, sbuf_off, cmdletters = 1;
843     int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
844     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
845     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
846 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
847     int at_eof = 0;
848 #endif
849     int read_buf_len = 0;
850     int fallback_scsv = 0;
851     long randamt = 0;
852     OPTION_CHOICE o;
853 #ifndef OPENSSL_NO_DTLS
854     int enable_timeouts = 0;
855     long socket_mtu = 0;
856 #endif
857 #ifndef OPENSSL_NO_ENGINE
858     ENGINE *ssl_client_engine = NULL;
859 #endif
860     ENGINE *e = NULL;
861 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
862     struct timeval tv;
863 #endif
864     char *servername = NULL;
865     const char *alpn_in = NULL;
866     tlsextctx tlsextcbp = { NULL, 0 };
867     const char *ssl_config = NULL;
868 #define MAX_SI_TYPES 100
869     unsigned short serverinfo_types[MAX_SI_TYPES];
870     int serverinfo_count = 0, start = 0, len;
871 #ifndef OPENSSL_NO_NEXTPROTONEG
872     const char *next_proto_neg_in = NULL;
873 #endif
874 #ifndef OPENSSL_NO_SRP
875     char *srppass = NULL;
876     int srp_lateuser = 0;
877     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
878 #endif
879 #ifndef OPENSSL_NO_CT
880     char *ctlog_file = NULL;
881     int ct_validation = 0;
882 #endif
883     int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
884     int async = 0;
885     unsigned int split_send_fragment = 0;
886     unsigned int max_pipelines = 0;
887     enum { use_inet, use_unix, use_unknown } connect_type = use_unknown;
888     int count4or6 = 0;
889     int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0;
890     int c_tlsextdebug = 0;
891 #ifndef OPENSSL_NO_OCSP
892     int c_status_req = 0;
893 #endif
894     BIO *bio_c_msg = NULL;
895     const char *keylog_file = NULL;
896
897     FD_ZERO(&readfds);
898     FD_ZERO(&writefds);
899 /* Known false-positive of MemorySanitizer. */
900 #if defined(__has_feature)
901 # if __has_feature(memory_sanitizer)
902     __msan_unpoison(&readfds, sizeof(readfds));
903     __msan_unpoison(&writefds, sizeof(writefds));
904 # endif
905 #endif
906
907     prog = opt_progname(argv[0]);
908     c_quiet = 0;
909     c_debug = 0;
910     c_showcerts = 0;
911     c_nbio = 0;
912     vpm = X509_VERIFY_PARAM_new();
913     cctx = SSL_CONF_CTX_new();
914
915     if (vpm == NULL || cctx == NULL) {
916         BIO_printf(bio_err, "%s: out of memory\n", prog);
917         goto end;
918     }
919
920     cbuf = app_malloc(BUFSIZZ, "cbuf");
921     sbuf = app_malloc(BUFSIZZ, "sbuf");
922     mbuf = app_malloc(BUFSIZZ, "mbuf");
923
924     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
925
926     prog = opt_init(argc, argv, s_client_options);
927     while ((o = opt_next()) != OPT_EOF) {
928         /* Check for intermixing flags. */
929         if (connect_type == use_unix && IS_INET_FLAG(o)) {
930             BIO_printf(bio_err,
931                        "%s: Intermixed protocol flags (unix and internet domains)\n",
932                        prog);
933             goto end;
934         }
935         if (connect_type == use_inet && IS_UNIX_FLAG(o)) {
936             BIO_printf(bio_err,
937                        "%s: Intermixed protocol flags (internet and unix domains)\n",
938                        prog);
939             goto end;
940         }
941
942         if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
943             BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
944             goto end;
945         }
946         if (IS_NO_PROT_FLAG(o))
947             no_prot_opt++;
948         if (prot_opt == 1 && no_prot_opt) {
949             BIO_printf(bio_err,
950                        "Cannot supply both a protocol flag and '-no_<prot>'\n");
951             goto end;
952         }
953
954         switch (o) {
955         case OPT_EOF:
956         case OPT_ERR:
957  opthelp:
958             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
959             goto end;
960         case OPT_HELP:
961             opt_help(s_client_options);
962             ret = 0;
963             goto end;
964         case OPT_4:
965             connect_type = use_inet;
966             socket_family = AF_INET;
967             count4or6++;
968             break;
969 #ifdef AF_INET6
970         case OPT_6:
971             connect_type = use_inet;
972             socket_family = AF_INET6;
973             count4or6++;
974             break;
975 #endif
976         case OPT_HOST:
977             connect_type = use_inet;
978             freeandcopy(&host, opt_arg());
979             break;
980         case OPT_PORT:
981             connect_type = use_inet;
982             freeandcopy(&port, opt_arg());
983             break;
984         case OPT_CONNECT:
985             connect_type = use_inet;
986             freeandcopy(&connectstr, opt_arg());
987             break;
988         case OPT_PROXY:
989             proxystr = opt_arg();
990             starttls_proto = PROTO_CONNECT;
991             break;
992 #ifdef AF_UNIX
993         case OPT_UNIX:
994             connect_type = use_unix;
995             socket_family = AF_UNIX;
996             freeandcopy(&host, opt_arg());
997             break;
998 #endif
999         case OPT_XMPPHOST:
1000             xmpphost = opt_arg();
1001             break;
1002         case OPT_SMTPHOST:
1003             ehlo = opt_arg();
1004             break;
1005         case OPT_VERIFY:
1006             verify = SSL_VERIFY_PEER;
1007             verify_args.depth = atoi(opt_arg());
1008             if (!c_quiet)
1009                 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
1010             break;
1011         case OPT_CERT:
1012             cert_file = opt_arg();
1013             break;
1014         case OPT_CRL:
1015             crl_file = opt_arg();
1016             break;
1017         case OPT_CRL_DOWNLOAD:
1018             crl_download = 1;
1019             break;
1020         case OPT_SESS_OUT:
1021             sess_out = opt_arg();
1022             break;
1023         case OPT_SESS_IN:
1024             sess_in = opt_arg();
1025             break;
1026         case OPT_CERTFORM:
1027             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1028                 goto opthelp;
1029             break;
1030         case OPT_CRLFORM:
1031             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1032                 goto opthelp;
1033             break;
1034         case OPT_VERIFY_RET_ERROR:
1035             verify_args.return_error = 1;
1036             break;
1037         case OPT_VERIFY_QUIET:
1038             verify_args.quiet = 1;
1039             break;
1040         case OPT_BRIEF:
1041             c_brief = verify_args.quiet = c_quiet = 1;
1042             break;
1043         case OPT_S_CASES:
1044             if (ssl_args == NULL)
1045                 ssl_args = sk_OPENSSL_STRING_new_null();
1046             if (ssl_args == NULL
1047                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1048                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1049                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1050                 goto end;
1051             }
1052             break;
1053         case OPT_V_CASES:
1054             if (!opt_verify(o, vpm))
1055                 goto end;
1056             vpmtouched++;
1057             break;
1058         case OPT_X_CASES:
1059             if (!args_excert(o, &exc))
1060                 goto end;
1061             break;
1062         case OPT_PREXIT:
1063             prexit = 1;
1064             break;
1065         case OPT_CRLF:
1066             crlf = 1;
1067             break;
1068         case OPT_QUIET:
1069             c_quiet = c_ign_eof = 1;
1070             break;
1071         case OPT_NBIO:
1072             c_nbio = 1;
1073             break;
1074         case OPT_NOCMDS:
1075             cmdletters = 0;
1076             break;
1077         case OPT_ENGINE:
1078             e = setup_engine(opt_arg(), 1);
1079             break;
1080         case OPT_SSL_CLIENT_ENGINE:
1081 #ifndef OPENSSL_NO_ENGINE
1082             ssl_client_engine = ENGINE_by_id(opt_arg());
1083             if (ssl_client_engine == NULL) {
1084                 BIO_printf(bio_err, "Error getting client auth engine\n");
1085                 goto opthelp;
1086             }
1087 #endif
1088             break;
1089         case OPT_RAND:
1090             inrand = opt_arg();
1091             break;
1092         case OPT_IGN_EOF:
1093             c_ign_eof = 1;
1094             break;
1095         case OPT_NO_IGN_EOF:
1096             c_ign_eof = 0;
1097             break;
1098         case OPT_DEBUG:
1099             c_debug = 1;
1100             break;
1101         case OPT_TLSEXTDEBUG:
1102             c_tlsextdebug = 1;
1103             break;
1104         case OPT_STATUS:
1105 #ifndef OPENSSL_NO_OCSP
1106             c_status_req = 1;
1107 #endif
1108             break;
1109         case OPT_WDEBUG:
1110 #ifdef WATT32
1111             dbug_init();
1112 #endif
1113             break;
1114         case OPT_MSG:
1115             c_msg = 1;
1116             break;
1117         case OPT_MSGFILE:
1118             bio_c_msg = BIO_new_file(opt_arg(), "w");
1119             break;
1120         case OPT_TRACE:
1121 #ifndef OPENSSL_NO_SSL_TRACE
1122             c_msg = 2;
1123 #endif
1124             break;
1125         case OPT_SECURITY_DEBUG:
1126             sdebug = 1;
1127             break;
1128         case OPT_SECURITY_DEBUG_VERBOSE:
1129             sdebug = 2;
1130             break;
1131         case OPT_SHOWCERTS:
1132             c_showcerts = 1;
1133             break;
1134         case OPT_NBIO_TEST:
1135             nbio_test = 1;
1136             break;
1137         case OPT_STATE:
1138             state = 1;
1139             break;
1140 #ifndef OPENSSL_NO_PSK
1141         case OPT_PSK_IDENTITY:
1142             psk_identity = opt_arg();
1143             break;
1144         case OPT_PSK:
1145             for (p = psk_key = opt_arg(); *p; p++) {
1146                 if (isxdigit(_UC(*p)))
1147                     continue;
1148                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1149                 goto end;
1150             }
1151             break;
1152 #endif
1153 #ifndef OPENSSL_NO_SRP
1154         case OPT_SRPUSER:
1155             srp_arg.srplogin = opt_arg();
1156             if (min_version < TLS1_VERSION)
1157                 min_version = TLS1_VERSION;
1158             break;
1159         case OPT_SRPPASS:
1160             srppass = opt_arg();
1161             if (min_version < TLS1_VERSION)
1162                 min_version = TLS1_VERSION;
1163             break;
1164         case OPT_SRP_STRENGTH:
1165             srp_arg.strength = atoi(opt_arg());
1166             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1167                        srp_arg.strength);
1168             if (min_version < TLS1_VERSION)
1169                 min_version = TLS1_VERSION;
1170             break;
1171         case OPT_SRP_LATEUSER:
1172             srp_lateuser = 1;
1173             if (min_version < TLS1_VERSION)
1174                 min_version = TLS1_VERSION;
1175             break;
1176         case OPT_SRP_MOREGROUPS:
1177             srp_arg.amp = 1;
1178             if (min_version < TLS1_VERSION)
1179                 min_version = TLS1_VERSION;
1180             break;
1181 #endif
1182         case OPT_SSL_CONFIG:
1183             ssl_config = opt_arg();
1184             break;
1185         case OPT_SSL3:
1186             min_version = SSL3_VERSION;
1187             max_version = SSL3_VERSION;
1188             break;
1189         case OPT_TLS1_3:
1190             min_version = TLS1_3_VERSION;
1191             max_version = TLS1_3_VERSION;
1192             break;
1193         case OPT_TLS1_2:
1194             min_version = TLS1_2_VERSION;
1195             max_version = TLS1_2_VERSION;
1196             break;
1197         case OPT_TLS1_1:
1198             min_version = TLS1_1_VERSION;
1199             max_version = TLS1_1_VERSION;
1200             break;
1201         case OPT_TLS1:
1202             min_version = TLS1_VERSION;
1203             max_version = TLS1_VERSION;
1204             break;
1205         case OPT_DTLS:
1206 #ifndef OPENSSL_NO_DTLS
1207             meth = DTLS_client_method();
1208             socket_type = SOCK_DGRAM;
1209 #endif
1210             break;
1211         case OPT_DTLS1:
1212 #ifndef OPENSSL_NO_DTLS1
1213             meth = DTLS_client_method();
1214             min_version = DTLS1_VERSION;
1215             max_version = DTLS1_VERSION;
1216             socket_type = SOCK_DGRAM;
1217 #endif
1218             break;
1219         case OPT_DTLS1_2:
1220 #ifndef OPENSSL_NO_DTLS1_2
1221             meth = DTLS_client_method();
1222             min_version = DTLS1_2_VERSION;
1223             max_version = DTLS1_2_VERSION;
1224             socket_type = SOCK_DGRAM;
1225 #endif
1226             break;
1227         case OPT_TIMEOUT:
1228 #ifndef OPENSSL_NO_DTLS
1229             enable_timeouts = 1;
1230 #endif
1231             break;
1232         case OPT_MTU:
1233 #ifndef OPENSSL_NO_DTLS
1234             socket_mtu = atol(opt_arg());
1235 #endif
1236             break;
1237         case OPT_FALLBACKSCSV:
1238             fallback_scsv = 1;
1239             break;
1240         case OPT_KEYFORM:
1241             if (!opt_format(opt_arg(), OPT_FMT_PDE, &key_format))
1242                 goto opthelp;
1243             break;
1244         case OPT_PASS:
1245             passarg = opt_arg();
1246             break;
1247         case OPT_CERT_CHAIN:
1248             chain_file = opt_arg();
1249             break;
1250         case OPT_KEY:
1251             key_file = opt_arg();
1252             break;
1253         case OPT_RECONNECT:
1254             reconnect = 5;
1255             break;
1256         case OPT_CAPATH:
1257             CApath = opt_arg();
1258             break;
1259         case OPT_NOCAPATH:
1260             noCApath = 1;
1261             break;
1262         case OPT_CHAINCAPATH:
1263             chCApath = opt_arg();
1264             break;
1265         case OPT_VERIFYCAPATH:
1266             vfyCApath = opt_arg();
1267             break;
1268         case OPT_BUILD_CHAIN:
1269             build_chain = 1;
1270             break;
1271         case OPT_CAFILE:
1272             CAfile = opt_arg();
1273             break;
1274         case OPT_NOCAFILE:
1275             noCAfile = 1;
1276             break;
1277 #ifndef OPENSSL_NO_CT
1278         case OPT_NOCT:
1279             ct_validation = 0;
1280             break;
1281         case OPT_CT:
1282             ct_validation = 1;
1283             break;
1284         case OPT_CTLOG_FILE:
1285             ctlog_file = opt_arg();
1286             break;
1287 #endif
1288         case OPT_CHAINCAFILE:
1289             chCAfile = opt_arg();
1290             break;
1291         case OPT_VERIFYCAFILE:
1292             vfyCAfile = opt_arg();
1293             break;
1294         case OPT_DANE_TLSA_DOMAIN:
1295             dane_tlsa_domain = opt_arg();
1296             break;
1297         case OPT_DANE_TLSA_RRDATA:
1298             if (dane_tlsa_rrset == NULL)
1299                 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1300             if (dane_tlsa_rrset == NULL ||
1301                 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1302                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1303                 goto end;
1304             }
1305             break;
1306         case OPT_DANE_EE_NO_NAME:
1307             dane_ee_no_name = 1;
1308             break;
1309         case OPT_NEXTPROTONEG:
1310 #ifndef OPENSSL_NO_NEXTPROTONEG
1311             next_proto_neg_in = opt_arg();
1312 #endif
1313             break;
1314         case OPT_ALPN:
1315             alpn_in = opt_arg();
1316             break;
1317         case OPT_SERVERINFO:
1318             p = opt_arg();
1319             len = strlen(p);
1320             for (start = 0, i = 0; i <= len; ++i) {
1321                 if (i == len || p[i] == ',') {
1322                     serverinfo_types[serverinfo_count] = atoi(p + start);
1323                     if (++serverinfo_count == MAX_SI_TYPES)
1324                         break;
1325                     start = i + 1;
1326                 }
1327             }
1328             break;
1329         case OPT_STARTTLS:
1330             if (!opt_pair(opt_arg(), services, &starttls_proto))
1331                 goto end;
1332             break;
1333         case OPT_SERVERNAME:
1334             servername = opt_arg();
1335             break;
1336         case OPT_USE_SRTP:
1337             srtp_profiles = opt_arg();
1338             break;
1339         case OPT_KEYMATEXPORT:
1340             keymatexportlabel = opt_arg();
1341             break;
1342         case OPT_KEYMATEXPORTLEN:
1343             keymatexportlen = atoi(opt_arg());
1344             break;
1345         case OPT_ASYNC:
1346             async = 1;
1347             break;
1348         case OPT_SPLIT_SEND_FRAG:
1349             split_send_fragment = atoi(opt_arg());
1350             if (split_send_fragment == 0) {
1351                 /*
1352                  * Not allowed - set to a deliberately bad value so we get an
1353                  * error message below
1354                  */
1355                 split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH + 1;
1356             }
1357             break;
1358         case OPT_MAX_PIPELINES:
1359             max_pipelines = atoi(opt_arg());
1360             break;
1361         case OPT_READ_BUF:
1362             read_buf_len = atoi(opt_arg());
1363             break;
1364         case OPT_KEYLOG_FILE:
1365             keylog_file = opt_arg();
1366             break;
1367         }
1368     }
1369     if (count4or6 >= 2) {
1370         BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog);
1371         goto opthelp;
1372     }
1373     argc = opt_num_rest();
1374     if (argc != 0)
1375         goto opthelp;
1376
1377     if (proxystr) {
1378         int res;
1379         char *tmp_host = host, *tmp_port = port;
1380         if (connectstr == NULL) {
1381             BIO_printf(bio_err, "%s: -proxy requires use of -connect\n", prog);
1382             goto opthelp;
1383         }
1384         res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1385         if (tmp_host != host)
1386             OPENSSL_free(tmp_host);
1387         if (tmp_port != port)
1388             OPENSSL_free(tmp_port);
1389         if (!res) {
1390             BIO_printf(bio_err,
1391                        "%s: -proxy argument malformed or ambiguous\n", prog);
1392             goto end;
1393         }
1394     } else {
1395         int res = 1;
1396         char *tmp_host = host, *tmp_port = port;
1397         if (connectstr != NULL)
1398             res = BIO_parse_hostserv(connectstr, &host, &port,
1399                                      BIO_PARSE_PRIO_HOST);
1400         if (tmp_host != host)
1401             OPENSSL_free(tmp_host);
1402         if (tmp_port != port)
1403             OPENSSL_free(tmp_port);
1404         if (!res) {
1405             BIO_printf(bio_err,
1406                        "%s: -connect argument malformed or ambiguous\n",
1407                        prog);
1408             goto end;
1409         }
1410     }
1411
1412     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1413         BIO_printf(bio_err,
1414                    "Can't use unix sockets and datagrams together\n");
1415         goto end;
1416     }
1417
1418     if (split_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
1419         BIO_printf(bio_err, "Bad split send fragment size\n");
1420         goto end;
1421     }
1422
1423     if (max_pipelines > SSL_MAX_PIPELINES) {
1424         BIO_printf(bio_err, "Bad max pipelines value\n");
1425         goto end;
1426     }
1427
1428 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1429     next_proto.status = -1;
1430     if (next_proto_neg_in) {
1431         next_proto.data =
1432             next_protos_parse(&next_proto.len, next_proto_neg_in);
1433         if (next_proto.data == NULL) {
1434             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1435             goto end;
1436         }
1437     } else
1438         next_proto.data = NULL;
1439 #endif
1440
1441     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1442         BIO_printf(bio_err, "Error getting password\n");
1443         goto end;
1444     }
1445
1446     if (key_file == NULL)
1447         key_file = cert_file;
1448
1449     if (key_file) {
1450         key = load_key(key_file, key_format, 0, pass, e,
1451                        "client certificate private key file");
1452         if (key == NULL) {
1453             ERR_print_errors(bio_err);
1454             goto end;
1455         }
1456     }
1457
1458     if (cert_file) {
1459         cert = load_cert(cert_file, cert_format, "client certificate file");
1460         if (cert == NULL) {
1461             ERR_print_errors(bio_err);
1462             goto end;
1463         }
1464     }
1465
1466     if (chain_file) {
1467         if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL,
1468                         "client certificate chain"))
1469             goto end;
1470     }
1471
1472     if (crl_file) {
1473         X509_CRL *crl;
1474         crl = load_crl(crl_file, crl_format);
1475         if (crl == NULL) {
1476             BIO_puts(bio_err, "Error loading CRL\n");
1477             ERR_print_errors(bio_err);
1478             goto end;
1479         }
1480         crls = sk_X509_CRL_new_null();
1481         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1482             BIO_puts(bio_err, "Error adding CRL\n");
1483             ERR_print_errors(bio_err);
1484             X509_CRL_free(crl);
1485             goto end;
1486         }
1487     }
1488
1489     if (!load_excert(&exc))
1490         goto end;
1491
1492     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1493         && !RAND_status()) {
1494         BIO_printf(bio_err,
1495                    "warning, not much extra random data, consider using the -rand option\n");
1496     }
1497     if (inrand != NULL) {
1498         randamt = app_RAND_load_files(inrand);
1499         BIO_printf(bio_err, "%ld semi-random bytes loaded\n", randamt);
1500     }
1501
1502     if (bio_c_out == NULL) {
1503         if (c_quiet && !c_debug) {
1504             bio_c_out = BIO_new(BIO_s_null());
1505             if (c_msg && !bio_c_msg)
1506                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1507         } else if (bio_c_out == NULL)
1508             bio_c_out = dup_bio_out(FORMAT_TEXT);
1509     }
1510 #ifndef OPENSSL_NO_SRP
1511     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1512         BIO_printf(bio_err, "Error getting password\n");
1513         goto end;
1514     }
1515 #endif
1516
1517     ctx = SSL_CTX_new(meth);
1518     if (ctx == NULL) {
1519         ERR_print_errors(bio_err);
1520         goto end;
1521     }
1522
1523     if (sdebug)
1524         ssl_ctx_security_debug(ctx, sdebug);
1525
1526     if (ssl_config) {
1527         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1528             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1529                        ssl_config);
1530             ERR_print_errors(bio_err);
1531             goto end;
1532         }
1533     }
1534
1535     if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1536         goto end;
1537     if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1538         goto end;
1539
1540     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1541         BIO_printf(bio_err, "Error setting verify params\n");
1542         ERR_print_errors(bio_err);
1543         goto end;
1544     }
1545
1546     if (async) {
1547         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1548     }
1549     if (split_send_fragment > 0) {
1550         SSL_CTX_set_split_send_fragment(ctx, split_send_fragment);
1551     }
1552     if (max_pipelines > 0) {
1553         SSL_CTX_set_max_pipelines(ctx, max_pipelines);
1554     }
1555
1556     if (read_buf_len > 0) {
1557         SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1558     }
1559
1560     if (!config_ctx(cctx, ssl_args, ctx))
1561         goto end;
1562
1563     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1564                          crls, crl_download)) {
1565         BIO_printf(bio_err, "Error loading store locations\n");
1566         ERR_print_errors(bio_err);
1567         goto end;
1568     }
1569 #ifndef OPENSSL_NO_ENGINE
1570     if (ssl_client_engine) {
1571         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1572             BIO_puts(bio_err, "Error setting client auth engine\n");
1573             ERR_print_errors(bio_err);
1574             ENGINE_free(ssl_client_engine);
1575             goto end;
1576         }
1577         ENGINE_free(ssl_client_engine);
1578     }
1579 #endif
1580
1581 #ifndef OPENSSL_NO_PSK
1582     if (psk_key != NULL) {
1583         if (c_debug)
1584             BIO_printf(bio_c_out, "PSK key given, setting client callback\n");
1585         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1586     }
1587 #endif
1588 #ifndef OPENSSL_NO_SRTP
1589     if (srtp_profiles != NULL) {
1590         /* Returns 0 on success! */
1591         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1592             BIO_printf(bio_err, "Error setting SRTP profile\n");
1593             ERR_print_errors(bio_err);
1594             goto end;
1595         }
1596     }
1597 #endif
1598
1599     if (exc)
1600         ssl_ctx_set_excert(ctx, exc);
1601
1602 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1603     if (next_proto.data)
1604         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1605 #endif
1606     if (alpn_in) {
1607         size_t alpn_len;
1608         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1609
1610         if (alpn == NULL) {
1611             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1612             goto end;
1613         }
1614         /* Returns 0 on success! */
1615         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1616             BIO_printf(bio_err, "Error setting ALPN\n");
1617             goto end;
1618         }
1619         OPENSSL_free(alpn);
1620     }
1621
1622     for (i = 0; i < serverinfo_count; i++) {
1623         if (!SSL_CTX_add_client_custom_ext(ctx,
1624                                            serverinfo_types[i],
1625                                            NULL, NULL, NULL,
1626                                            serverinfo_cli_parse_cb, NULL)) {
1627             BIO_printf(bio_err,
1628                        "Warning: Unable to add custom extension %u, skipping\n",
1629                        serverinfo_types[i]);
1630         }
1631     }
1632
1633     if (state)
1634         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1635
1636 #ifndef OPENSSL_NO_CT
1637     /* Enable SCT processing, without early connection termination */
1638     if (ct_validation &&
1639         !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) {
1640         ERR_print_errors(bio_err);
1641         goto end;
1642     }
1643
1644     if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) {
1645         if (ct_validation) {
1646             ERR_print_errors(bio_err);
1647             goto end;
1648         }
1649
1650         /*
1651          * If CT validation is not enabled, the log list isn't needed so don't
1652          * show errors or abort. We try to load it regardless because then we
1653          * can show the names of the logs any SCTs came from (SCTs may be seen
1654          * even with validation disabled).
1655          */
1656         ERR_clear_error();
1657     }
1658 #endif
1659
1660     SSL_CTX_set_verify(ctx, verify, verify_callback);
1661
1662     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1663         ERR_print_errors(bio_err);
1664         goto end;
1665     }
1666
1667     ssl_ctx_add_crls(ctx, crls, crl_download);
1668
1669     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1670         goto end;
1671
1672     if (servername != NULL) {
1673         tlsextcbp.biodebug = bio_err;
1674         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1675         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1676     }
1677 # ifndef OPENSSL_NO_SRP
1678     if (srp_arg.srplogin) {
1679         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1680             BIO_printf(bio_err, "Unable to set SRP username\n");
1681             goto end;
1682         }
1683         srp_arg.msg = c_msg;
1684         srp_arg.debug = c_debug;
1685         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1686         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1687         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1688         if (c_msg || c_debug || srp_arg.amp == 0)
1689             SSL_CTX_set_srp_verify_param_callback(ctx,
1690                                                   ssl_srp_verify_param_cb);
1691     }
1692 # endif
1693
1694     if (dane_tlsa_domain != NULL) {
1695         if (SSL_CTX_dane_enable(ctx) <= 0) {
1696             BIO_printf(bio_err,
1697                        "%s: Error enabling DANE TLSA authentication.\n",
1698                        prog);
1699             ERR_print_errors(bio_err);
1700             goto end;
1701         }
1702     }
1703
1704     /*
1705      * In TLSv1.3 NewSessionTicket messages arrive after the handshake and can
1706      * come at any time. Therefore we use a callback to write out the session
1707      * when we know about it. This approach works for < TLSv1.3 as well.
1708      */
1709     if (sess_out) {
1710         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT
1711                                             | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1712         SSL_CTX_sess_set_new_cb(ctx, new_session_cb);
1713     }
1714
1715     if (set_keylog_file(ctx, keylog_file))
1716         goto end;
1717
1718     con = SSL_new(ctx);
1719     if (sess_in) {
1720         SSL_SESSION *sess;
1721         BIO *stmp = BIO_new_file(sess_in, "r");
1722         if (!stmp) {
1723             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1724             ERR_print_errors(bio_err);
1725             goto end;
1726         }
1727         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1728         BIO_free(stmp);
1729         if (!sess) {
1730             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1731             ERR_print_errors(bio_err);
1732             goto end;
1733         }
1734         if (!SSL_set_session(con, sess)) {
1735             BIO_printf(bio_err, "Can't set session\n");
1736             ERR_print_errors(bio_err);
1737             goto end;
1738         }
1739         SSL_SESSION_free(sess);
1740     }
1741
1742     if (fallback_scsv)
1743         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1744
1745     if (servername != NULL) {
1746         if (!SSL_set_tlsext_host_name(con, servername)) {
1747             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1748             ERR_print_errors(bio_err);
1749             goto end;
1750         }
1751     }
1752
1753     if (dane_tlsa_domain != NULL) {
1754         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1755             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1756                        "authentication.\n", prog);
1757             ERR_print_errors(bio_err);
1758             goto end;
1759         }
1760         if (dane_tlsa_rrset == NULL) {
1761             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1762                        "least one -dane_tlsa_rrdata option.\n", prog);
1763             goto end;
1764         }
1765         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1766             BIO_printf(bio_err, "%s: Failed to import any TLSA "
1767                        "records.\n", prog);
1768             goto end;
1769         }
1770         if (dane_ee_no_name)
1771             SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
1772     } else if (dane_tlsa_rrset != NULL) {
1773         BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1774                    "-dane_tlsa_domain option.\n", prog);
1775         goto end;
1776     }
1777
1778  re_start:
1779     if (init_client(&s, host, port, socket_family, socket_type) == 0) {
1780         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1781         BIO_closesocket(s);
1782         goto end;
1783     }
1784     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1785
1786     if (c_nbio) {
1787         if (!BIO_socket_nbio(s, 1)) {
1788             ERR_print_errors(bio_err);
1789             goto end;
1790         }
1791         BIO_printf(bio_c_out, "Turned on non blocking io\n");
1792     }
1793 #ifndef OPENSSL_NO_DTLS
1794     if (socket_type == SOCK_DGRAM) {
1795         union BIO_sock_info_u peer_info;
1796
1797         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1798         if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
1799             BIO_printf(bio_err, "memory allocation failure\n");
1800             BIO_closesocket(s);
1801             goto end;
1802         }
1803         if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
1804             BIO_printf(bio_err, "getsockname:errno=%d\n",
1805                        get_last_socket_error());
1806             BIO_ADDR_free(peer_info.addr);
1807             BIO_closesocket(s);
1808             goto end;
1809         }
1810
1811         (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
1812         BIO_ADDR_free(peer_info.addr);
1813         peer_info.addr = NULL;
1814
1815         if (enable_timeouts) {
1816             timeout.tv_sec = 0;
1817             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1818             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1819
1820             timeout.tv_sec = 0;
1821             timeout.tv_usec = DGRAM_SND_TIMEOUT;
1822             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
1823         }
1824
1825         if (socket_mtu) {
1826             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
1827                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
1828                            DTLS_get_link_min_mtu(con));
1829                 BIO_free(sbio);
1830                 goto shut;
1831             }
1832             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
1833             if (!DTLS_set_link_mtu(con, socket_mtu)) {
1834                 BIO_printf(bio_err, "Failed to set MTU\n");
1835                 BIO_free(sbio);
1836                 goto shut;
1837             }
1838         } else
1839             /* want to do MTU discovery */
1840             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
1841     } else
1842 #endif /* OPENSSL_NO_DTLS */
1843         sbio = BIO_new_socket(s, BIO_NOCLOSE);
1844
1845     if (nbio_test) {
1846         BIO *test;
1847
1848         test = BIO_new(BIO_f_nbio_test());
1849         sbio = BIO_push(test, sbio);
1850     }
1851
1852     if (c_debug) {
1853         BIO_set_callback(sbio, bio_dump_callback);
1854         BIO_set_callback_arg(sbio, (char *)bio_c_out);
1855     }
1856     if (c_msg) {
1857 #ifndef OPENSSL_NO_SSL_TRACE
1858         if (c_msg == 2)
1859             SSL_set_msg_callback(con, SSL_trace);
1860         else
1861 #endif
1862             SSL_set_msg_callback(con, msg_cb);
1863         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
1864     }
1865
1866     if (c_tlsextdebug) {
1867         SSL_set_tlsext_debug_callback(con, tlsext_cb);
1868         SSL_set_tlsext_debug_arg(con, bio_c_out);
1869     }
1870 #ifndef OPENSSL_NO_OCSP
1871     if (c_status_req) {
1872         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
1873         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
1874         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
1875     }
1876 #endif
1877
1878     SSL_set_bio(con, sbio, sbio);
1879     SSL_set_connect_state(con);
1880
1881     /* ok, lets connect */
1882     if (fileno_stdin() > SSL_get_fd(con))
1883         width = fileno_stdin() + 1;
1884     else
1885         width = SSL_get_fd(con) + 1;
1886
1887     read_tty = 1;
1888     write_tty = 0;
1889     tty_on = 0;
1890     read_ssl = 1;
1891     write_ssl = 1;
1892
1893     cbuf_len = 0;
1894     cbuf_off = 0;
1895     sbuf_len = 0;
1896     sbuf_off = 0;
1897
1898     switch ((PROTOCOL_CHOICE) starttls_proto) {
1899     case PROTO_OFF:
1900         break;
1901     case PROTO_LMTP:
1902     case PROTO_SMTP:
1903         {
1904             /*
1905              * This is an ugly hack that does a lot of assumptions. We do
1906              * have to handle multi-line responses which may come in a single
1907              * packet or not. We therefore have to use BIO_gets() which does
1908              * need a buffering BIO. So during the initial chitchat we do
1909              * push a buffering BIO into the chain that is removed again
1910              * later on to not disturb the rest of the s_client operation.
1911              */
1912             int foundit = 0;
1913             BIO *fbio = BIO_new(BIO_f_buffer());
1914             BIO_push(fbio, sbio);
1915             /* Wait for multi-line response to end from LMTP or SMTP */
1916             do {
1917                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1918             }
1919             while (mbuf_len > 3 && mbuf[3] == '-');
1920             if (starttls_proto == (int)PROTO_LMTP)
1921                 BIO_printf(fbio, "LHLO %s\r\n", ehlo);
1922             else
1923                 BIO_printf(fbio, "EHLO %s\r\n", ehlo);
1924             (void)BIO_flush(fbio);
1925             /*
1926              * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
1927              * response.
1928              */
1929             do {
1930                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1931                 if (strstr(mbuf, "STARTTLS"))
1932                     foundit = 1;
1933             }
1934             while (mbuf_len > 3 && mbuf[3] == '-');
1935             (void)BIO_flush(fbio);
1936             BIO_pop(fbio);
1937             BIO_free(fbio);
1938             if (!foundit)
1939                 BIO_printf(bio_err,
1940                            "didn't find starttls in server response,"
1941                            " trying anyway...\n");
1942             BIO_printf(sbio, "STARTTLS\r\n");
1943             BIO_read(sbio, sbuf, BUFSIZZ);
1944         }
1945         break;
1946     case PROTO_POP3:
1947         {
1948             BIO_read(sbio, mbuf, BUFSIZZ);
1949             BIO_printf(sbio, "STLS\r\n");
1950             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
1951             if (mbuf_len < 0) {
1952                 BIO_printf(bio_err, "BIO_read failed\n");
1953                 goto end;
1954             }
1955         }
1956         break;
1957     case PROTO_IMAP:
1958         {
1959             int foundit = 0;
1960             BIO *fbio = BIO_new(BIO_f_buffer());
1961             BIO_push(fbio, sbio);
1962             BIO_gets(fbio, mbuf, BUFSIZZ);
1963             /* STARTTLS command requires CAPABILITY... */
1964             BIO_printf(fbio, ". CAPABILITY\r\n");
1965             (void)BIO_flush(fbio);
1966             /* wait for multi-line CAPABILITY response */
1967             do {
1968                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1969                 if (strstr(mbuf, "STARTTLS"))
1970                     foundit = 1;
1971             }
1972             while (mbuf_len > 3 && mbuf[0] != '.');
1973             (void)BIO_flush(fbio);
1974             BIO_pop(fbio);
1975             BIO_free(fbio);
1976             if (!foundit)
1977                 BIO_printf(bio_err,
1978                            "didn't find STARTTLS in server response,"
1979                            " trying anyway...\n");
1980             BIO_printf(sbio, ". STARTTLS\r\n");
1981             BIO_read(sbio, sbuf, BUFSIZZ);
1982         }
1983         break;
1984     case PROTO_FTP:
1985         {
1986             BIO *fbio = BIO_new(BIO_f_buffer());
1987             BIO_push(fbio, sbio);
1988             /* wait for multi-line response to end from FTP */
1989             do {
1990                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1991             }
1992             while (mbuf_len > 3 && mbuf[3] == '-');
1993             (void)BIO_flush(fbio);
1994             BIO_pop(fbio);
1995             BIO_free(fbio);
1996             BIO_printf(sbio, "AUTH TLS\r\n");
1997             BIO_read(sbio, sbuf, BUFSIZZ);
1998         }
1999         break;
2000     case PROTO_XMPP:
2001     case PROTO_XMPP_SERVER:
2002         {
2003             int seen = 0;
2004             BIO_printf(sbio, "<stream:stream "
2005                        "xmlns:stream='http://etherx.jabber.org/streams' "
2006                        "xmlns='jabber:%s' to='%s' version='1.0'>",
2007                        starttls_proto == PROTO_XMPP ? "client" : "server",
2008                        xmpphost ? xmpphost : host);
2009             seen = BIO_read(sbio, mbuf, BUFSIZZ);
2010             mbuf[seen] = 0;
2011             while (!strstr
2012                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2013                    && !strstr(mbuf,
2014                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2015             {
2016                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2017
2018                 if (seen <= 0)
2019                     goto shut;
2020
2021                 mbuf[seen] = 0;
2022             }
2023             BIO_printf(sbio,
2024                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2025             seen = BIO_read(sbio, sbuf, BUFSIZZ);
2026             sbuf[seen] = 0;
2027             if (!strstr(sbuf, "<proceed"))
2028                 goto shut;
2029             mbuf[0] = 0;
2030         }
2031         break;
2032     case PROTO_TELNET:
2033         {
2034             static const unsigned char tls_do[] = {
2035                 /* IAC    DO   START_TLS */
2036                    255,   253, 46
2037             };
2038             static const unsigned char tls_will[] = {
2039                 /* IAC  WILL START_TLS */
2040                    255, 251, 46
2041             };
2042             static const unsigned char tls_follows[] = {
2043                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
2044                    255, 250, 46,       1,      255, 240
2045             };
2046             int bytes;
2047
2048             /* Telnet server should demand we issue START_TLS */
2049             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2050             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2051                 goto shut;
2052             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2053             BIO_write(sbio, tls_will, 3);
2054             BIO_write(sbio, tls_follows, 6);
2055             (void)BIO_flush(sbio);
2056             /* Telnet server also sent the FOLLOWS sub-command */
2057             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2058             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2059                 goto shut;
2060         }
2061         break;
2062     case PROTO_CONNECT:
2063         {
2064             enum {
2065                 error_proto,     /* Wrong protocol, not even HTTP */
2066                 error_connect,   /* CONNECT failed */
2067                 success
2068             } foundit = error_connect;
2069             BIO *fbio = BIO_new(BIO_f_buffer());
2070
2071             BIO_push(fbio, sbio);
2072             BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr);
2073             (void)BIO_flush(fbio);
2074             /*
2075              * The first line is the HTTP response.  According to RFC 7230,
2076              * it's formated exactly like this:
2077              *
2078              * HTTP/d.d ddd Reason text\r\n
2079              */
2080             mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2081             if (mbuf[8] != ' ') {
2082                 BIO_printf(bio_err,
2083                            "%s: HTTP CONNECT failed, incorrect response "
2084                            "from proxy\n", prog);
2085                 foundit = error_proto;
2086             } else if (mbuf[9] != '2') {
2087                 BIO_printf(bio_err, "%s: HTTP CONNECT failed: %s ", prog,
2088                            &mbuf[9]);
2089             } else {
2090                 foundit = success;
2091             }
2092             if (foundit != error_proto) {
2093                 /* Read past all following headers */
2094                 do {
2095                     mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2096                 } while (mbuf_len > 2);
2097             }
2098             (void)BIO_flush(fbio);
2099             BIO_pop(fbio);
2100             BIO_free(fbio);
2101             if (foundit != success) {
2102                 goto shut;
2103             }
2104         }
2105         break;
2106     case PROTO_IRC:
2107         {
2108             int numeric;
2109             BIO *fbio = BIO_new(BIO_f_buffer());
2110
2111             BIO_push(fbio, sbio);
2112             BIO_printf(fbio, "STARTTLS\r\n");
2113             (void)BIO_flush(fbio);
2114             width = SSL_get_fd(con) + 1;
2115
2116             do {
2117                 numeric = 0;
2118
2119                 FD_ZERO(&readfds);
2120                 openssl_fdset(SSL_get_fd(con), &readfds);
2121                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2122                 timeout.tv_usec = 0;
2123                 /*
2124                  * If the IRCd doesn't respond within
2125                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2126                  * it doesn't support STARTTLS. Many IRCds
2127                  * will not give _any_ sort of response to a
2128                  * STARTTLS command when it's not supported.
2129                  */
2130                 if (!BIO_get_buffer_num_lines(fbio)
2131                     && !BIO_pending(fbio)
2132                     && !BIO_pending(sbio)
2133                     && select(width, (void *)&readfds, NULL, NULL,
2134                               &timeout) < 1) {
2135                     BIO_printf(bio_err,
2136                                "Timeout waiting for response (%d seconds).\n",
2137                                S_CLIENT_IRC_READ_TIMEOUT);
2138                     break;
2139                 }
2140
2141                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2142                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2143                     break;
2144                 /* :example.net 451 STARTTLS :You have not registered */
2145                 /* :example.net 421 STARTTLS :Unknown command */
2146                 if ((numeric == 451 || numeric == 421)
2147                     && strstr(mbuf, "STARTTLS") != NULL) {
2148                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2149                     break;
2150                 }
2151                 if (numeric == 691) {
2152                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2153                     ERR_print_errors(bio_err);
2154                     break;
2155                 }
2156             } while (numeric != 670);
2157
2158             (void)BIO_flush(fbio);
2159             BIO_pop(fbio);
2160             BIO_free(fbio);
2161             if (numeric != 670) {
2162                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2163                 ret = 1;
2164                 goto shut;
2165             }
2166         }
2167         break;
2168     case PROTO_POSTGRES:
2169         {
2170             static const unsigned char ssl_request[] = {
2171                 /* Length        SSLRequest */
2172                    0, 0, 0, 8,   4, 210, 22, 47
2173             };
2174             int bytes;
2175
2176             /* Send SSLRequest packet */
2177             BIO_write(sbio, ssl_request, 8);
2178             (void)BIO_flush(sbio);
2179
2180             /* Reply will be a single S if SSL is enabled */
2181             bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2182             if (bytes != 1 || sbuf[0] != 'S')
2183                 goto shut;
2184         }
2185         break;
2186     case PROTO_NNTP:
2187         {
2188             int foundit = 0;
2189             BIO *fbio = BIO_new(BIO_f_buffer());
2190
2191             BIO_push(fbio, sbio);
2192             BIO_gets(fbio, mbuf, BUFSIZZ);
2193             /* STARTTLS command requires CAPABILITIES... */
2194             BIO_printf(fbio, "CAPABILITIES\r\n");
2195             (void)BIO_flush(fbio);
2196             /* wait for multi-line CAPABILITIES response */
2197             do {
2198                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2199                 if (strstr(mbuf, "STARTTLS"))
2200                     foundit = 1;
2201             } while (mbuf_len > 1 && mbuf[0] != '.');
2202             (void)BIO_flush(fbio);
2203             BIO_pop(fbio);
2204             BIO_free(fbio);
2205             if (!foundit)
2206                 BIO_printf(bio_err,
2207                            "Didn't find STARTTLS in server response,"
2208                            " trying anyway...\n");
2209             BIO_printf(sbio, "STARTTLS\r\n");
2210             BIO_read(sbio, sbuf, BUFSIZZ);
2211         }
2212         break;
2213     }
2214
2215     for (;;) {
2216         FD_ZERO(&readfds);
2217         FD_ZERO(&writefds);
2218
2219         if ((SSL_version(con) == DTLS1_VERSION) &&
2220             DTLSv1_get_timeout(con, &timeout))
2221             timeoutp = &timeout;
2222         else
2223             timeoutp = NULL;
2224
2225         if (SSL_in_init(con) && !SSL_total_renegotiations(con)) {
2226             in_init = 1;
2227             tty_on = 0;
2228         } else {
2229             tty_on = 1;
2230             if (in_init) {
2231                 in_init = 0;
2232
2233                 if (servername != NULL && !SSL_session_reused(con)) {
2234                     BIO_printf(bio_c_out,
2235                                "Server did %sacknowledge servername extension.\n",
2236                                tlsextcbp.ack ? "" : "not ");
2237                 }
2238
2239                 if (c_brief) {
2240                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2241                     print_ssl_summary(con);
2242                 }
2243
2244                 print_stuff(bio_c_out, con, full_log);
2245                 if (full_log > 0)
2246                     full_log--;
2247
2248                 if (starttls_proto) {
2249                     BIO_write(bio_err, mbuf, mbuf_len);
2250                     /* We don't need to know any more */
2251                     if (!reconnect)
2252                         starttls_proto = PROTO_OFF;
2253                 }
2254
2255                 if (reconnect) {
2256                     reconnect--;
2257                     BIO_printf(bio_c_out,
2258                                "drop connection and then reconnect\n");
2259                     do_ssl_shutdown(con);
2260                     SSL_set_connect_state(con);
2261                     BIO_closesocket(SSL_get_fd(con));
2262                     goto re_start;
2263                 }
2264             }
2265         }
2266
2267         ssl_pending = read_ssl && SSL_has_pending(con);
2268
2269         if (!ssl_pending) {
2270 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2271             if (tty_on) {
2272                 /*
2273                  * Note that select() returns when read _would not block_,
2274                  * and EOF satisfies that.  To avoid a CPU-hogging loop,
2275                  * set the flag so we exit.
2276                  */
2277                 if (read_tty && !at_eof)
2278                     openssl_fdset(fileno_stdin(), &readfds);
2279 #if !defined(OPENSSL_SYS_VMS)
2280                 if (write_tty)
2281                     openssl_fdset(fileno_stdout(), &writefds);
2282 #endif
2283             }
2284             if (read_ssl)
2285                 openssl_fdset(SSL_get_fd(con), &readfds);
2286             if (write_ssl)
2287                 openssl_fdset(SSL_get_fd(con), &writefds);
2288 #else
2289             if (!tty_on || !write_tty) {
2290                 if (read_ssl)
2291                     openssl_fdset(SSL_get_fd(con), &readfds);
2292                 if (write_ssl)
2293                     openssl_fdset(SSL_get_fd(con), &writefds);
2294             }
2295 #endif
2296
2297             /*
2298              * Note: under VMS with SOCKETSHR the second parameter is
2299              * currently of type (int *) whereas under other systems it is
2300              * (void *) if you don't have a cast it will choke the compiler:
2301              * if you do have a cast then you can either go for (int *) or
2302              * (void *).
2303              */
2304 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2305             /*
2306              * Under Windows/DOS we make the assumption that we can always
2307              * write to the tty: therefore if we need to write to the tty we
2308              * just fall through. Otherwise we timeout the select every
2309              * second and see if there are any keypresses. Note: this is a
2310              * hack, in a proper Windows application we wouldn't do this.
2311              */
2312             i = 0;
2313             if (!write_tty) {
2314                 if (read_tty) {
2315                     tv.tv_sec = 1;
2316                     tv.tv_usec = 0;
2317                     i = select(width, (void *)&readfds, (void *)&writefds,
2318                                NULL, &tv);
2319                     if (!i && (!has_stdin_waiting() || !read_tty))
2320                         continue;
2321                 } else
2322                     i = select(width, (void *)&readfds, (void *)&writefds,
2323                                NULL, timeoutp);
2324             }
2325 #else
2326             i = select(width, (void *)&readfds, (void *)&writefds,
2327                        NULL, timeoutp);
2328 #endif
2329             if (i < 0) {
2330                 BIO_printf(bio_err, "bad select %d\n",
2331                            get_last_socket_error());
2332                 goto shut;
2333                 /* goto end; */
2334             }
2335         }
2336
2337         if ((SSL_version(con) == DTLS1_VERSION)
2338             && DTLSv1_handle_timeout(con) > 0) {
2339             BIO_printf(bio_err, "TIMEOUT occurred\n");
2340         }
2341
2342         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2343             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2344             switch (SSL_get_error(con, k)) {
2345             case SSL_ERROR_NONE:
2346                 cbuf_off += k;
2347                 cbuf_len -= k;
2348                 if (k <= 0)
2349                     goto end;
2350                 /* we have done a  write(con,NULL,0); */
2351                 if (cbuf_len <= 0) {
2352                     read_tty = 1;
2353                     write_ssl = 0;
2354                 } else {        /* if (cbuf_len > 0) */
2355
2356                     read_tty = 0;
2357                     write_ssl = 1;
2358                 }
2359                 break;
2360             case SSL_ERROR_WANT_WRITE:
2361                 BIO_printf(bio_c_out, "write W BLOCK\n");
2362                 write_ssl = 1;
2363                 read_tty = 0;
2364                 break;
2365             case SSL_ERROR_WANT_ASYNC:
2366                 BIO_printf(bio_c_out, "write A BLOCK\n");
2367                 wait_for_async(con);
2368                 write_ssl = 1;
2369                 read_tty = 0;
2370                 break;
2371             case SSL_ERROR_WANT_READ:
2372                 BIO_printf(bio_c_out, "write R BLOCK\n");
2373                 write_tty = 0;
2374                 read_ssl = 1;
2375                 write_ssl = 0;
2376                 break;
2377             case SSL_ERROR_WANT_X509_LOOKUP:
2378                 BIO_printf(bio_c_out, "write X BLOCK\n");
2379                 break;
2380             case SSL_ERROR_ZERO_RETURN:
2381                 if (cbuf_len != 0) {
2382                     BIO_printf(bio_c_out, "shutdown\n");
2383                     ret = 0;
2384                     goto shut;
2385                 } else {
2386                     read_tty = 1;
2387                     write_ssl = 0;
2388                     break;
2389                 }
2390
2391             case SSL_ERROR_SYSCALL:
2392                 if ((k != 0) || (cbuf_len != 0)) {
2393                     BIO_printf(bio_err, "write:errno=%d\n",
2394                                get_last_socket_error());
2395                     goto shut;
2396                 } else {
2397                     read_tty = 1;
2398                     write_ssl = 0;
2399                 }
2400                 break;
2401             case SSL_ERROR_WANT_ASYNC_JOB:
2402                 /* This shouldn't ever happen in s_client - treat as an error */
2403             case SSL_ERROR_SSL:
2404                 ERR_print_errors(bio_err);
2405                 goto shut;
2406             }
2407         }
2408 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
2409         /* Assume Windows/DOS/BeOS can always write */
2410         else if (!ssl_pending && write_tty)
2411 #else
2412         else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2413 #endif
2414         {
2415 #ifdef CHARSET_EBCDIC
2416             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2417 #endif
2418             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2419
2420             if (i <= 0) {
2421                 BIO_printf(bio_c_out, "DONE\n");
2422                 ret = 0;
2423                 goto shut;
2424                 /* goto end; */
2425             }
2426
2427             sbuf_len -= i;
2428             sbuf_off += i;
2429             if (sbuf_len <= 0) {
2430                 read_ssl = 1;
2431                 write_tty = 0;
2432             }
2433         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2434 #ifdef RENEG
2435             {
2436                 static int iiii;
2437                 if (++iiii == 52) {
2438                     SSL_renegotiate(con);
2439                     iiii = 0;
2440                 }
2441             }
2442 #endif
2443             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2444
2445             switch (SSL_get_error(con, k)) {
2446             case SSL_ERROR_NONE:
2447                 if (k <= 0)
2448                     goto end;
2449                 sbuf_off = 0;
2450                 sbuf_len = k;
2451
2452                 read_ssl = 0;
2453                 write_tty = 1;
2454                 break;
2455             case SSL_ERROR_WANT_ASYNC:
2456                 BIO_printf(bio_c_out, "read A BLOCK\n");
2457                 wait_for_async(con);
2458                 write_tty = 0;
2459                 read_ssl = 1;
2460                 if ((read_tty == 0) && (write_ssl == 0))
2461                     write_ssl = 1;
2462                 break;
2463             case SSL_ERROR_WANT_WRITE:
2464                 BIO_printf(bio_c_out, "read W BLOCK\n");
2465                 write_ssl = 1;
2466                 read_tty = 0;
2467                 break;
2468             case SSL_ERROR_WANT_READ:
2469                 BIO_printf(bio_c_out, "read R BLOCK\n");
2470                 write_tty = 0;
2471                 read_ssl = 1;
2472                 if ((read_tty == 0) && (write_ssl == 0))
2473                     write_ssl = 1;
2474                 break;
2475             case SSL_ERROR_WANT_X509_LOOKUP:
2476                 BIO_printf(bio_c_out, "read X BLOCK\n");
2477                 break;
2478             case SSL_ERROR_SYSCALL:
2479                 ret = get_last_socket_error();
2480                 if (c_brief)
2481                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2482                 else
2483                     BIO_printf(bio_err, "read:errno=%d\n", ret);
2484                 goto shut;
2485             case SSL_ERROR_ZERO_RETURN:
2486                 BIO_printf(bio_c_out, "closed\n");
2487                 ret = 0;
2488                 goto shut;
2489             case SSL_ERROR_WANT_ASYNC_JOB:
2490                 /* This shouldn't ever happen in s_client. Treat as an error */
2491             case SSL_ERROR_SSL:
2492                 ERR_print_errors(bio_err);
2493                 goto shut;
2494                 /* break; */
2495             }
2496         }
2497 /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
2498 #if defined(OPENSSL_SYS_MSDOS)
2499         else if (has_stdin_waiting())
2500 #else
2501         else if (FD_ISSET(fileno_stdin(), &readfds))
2502 #endif
2503         {
2504             if (crlf) {
2505                 int j, lf_num;
2506
2507                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2508                 lf_num = 0;
2509                 /* both loops are skipped when i <= 0 */
2510                 for (j = 0; j < i; j++)
2511                     if (cbuf[j] == '\n')
2512                         lf_num++;
2513                 for (j = i - 1; j >= 0; j--) {
2514                     cbuf[j + lf_num] = cbuf[j];
2515                     if (cbuf[j] == '\n') {
2516                         lf_num--;
2517                         i++;
2518                         cbuf[j + lf_num] = '\r';
2519                     }
2520                 }
2521                 assert(lf_num == 0);
2522             } else
2523                 i = raw_read_stdin(cbuf, BUFSIZZ);
2524 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2525             if (i == 0)
2526                 at_eof = 1;
2527 #endif
2528
2529             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
2530                 BIO_printf(bio_err, "DONE\n");
2531                 ret = 0;
2532                 goto shut;
2533             }
2534
2535             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
2536                 BIO_printf(bio_err, "RENEGOTIATING\n");
2537                 SSL_renegotiate(con);
2538                 cbuf_len = 0;
2539             }
2540 #ifndef OPENSSL_NO_HEARTBEATS
2541             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
2542                 BIO_printf(bio_err, "HEARTBEATING\n");
2543                 SSL_heartbeat(con);
2544                 cbuf_len = 0;
2545             }
2546 #endif
2547             else {
2548                 cbuf_len = i;
2549                 cbuf_off = 0;
2550 #ifdef CHARSET_EBCDIC
2551                 ebcdic2ascii(cbuf, cbuf, i);
2552 #endif
2553             }
2554
2555             write_ssl = 1;
2556             read_tty = 0;
2557         }
2558     }
2559
2560     ret = 0;
2561  shut:
2562     if (in_init)
2563         print_stuff(bio_c_out, con, full_log);
2564     do_ssl_shutdown(con);
2565 #if defined(OPENSSL_SYS_WINDOWS)
2566     /*
2567      * Give the socket time to send its last data before we close it.
2568      * No amount of setting SO_LINGER etc on the socket seems to persuade
2569      * Windows to send the data before closing the socket...but sleeping
2570      * for a short time seems to do it (units in ms)
2571      * TODO: Find a better way to do this
2572      */
2573     Sleep(50);
2574 #endif
2575     BIO_closesocket(SSL_get_fd(con));
2576  end:
2577     if (con != NULL) {
2578         if (prexit != 0)
2579             print_stuff(bio_c_out, con, 1);
2580         SSL_free(con);
2581     }
2582 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2583     OPENSSL_free(next_proto.data);
2584 #endif
2585     SSL_CTX_free(ctx);
2586     set_keylog_file(NULL, NULL);
2587     X509_free(cert);
2588     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2589     EVP_PKEY_free(key);
2590     sk_X509_pop_free(chain, X509_free);
2591     OPENSSL_free(pass);
2592 #ifndef OPENSSL_NO_SRP
2593     OPENSSL_free(srp_arg.srppassin);
2594 #endif
2595     OPENSSL_free(connectstr);
2596     OPENSSL_free(host);
2597     OPENSSL_free(port);
2598     X509_VERIFY_PARAM_free(vpm);
2599     ssl_excert_free(exc);
2600     sk_OPENSSL_STRING_free(ssl_args);
2601     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
2602     SSL_CONF_CTX_free(cctx);
2603     OPENSSL_clear_free(cbuf, BUFSIZZ);
2604     OPENSSL_clear_free(sbuf, BUFSIZZ);
2605     OPENSSL_clear_free(mbuf, BUFSIZZ);
2606     release_engine(e);
2607     BIO_free(bio_c_out);
2608     bio_c_out = NULL;
2609     BIO_free(bio_c_msg);
2610     bio_c_msg = NULL;
2611     return (ret);
2612 }
2613
2614 static void print_stuff(BIO *bio, SSL *s, int full)
2615 {
2616     X509 *peer = NULL;
2617     char buf[BUFSIZ];
2618     STACK_OF(X509) *sk;
2619     STACK_OF(X509_NAME) *sk2;
2620     const SSL_CIPHER *c;
2621     X509_NAME *xn;
2622     int i;
2623 #ifndef OPENSSL_NO_COMP
2624     const COMP_METHOD *comp, *expansion;
2625 #endif
2626     unsigned char *exportedkeymat;
2627 #ifndef OPENSSL_NO_CT
2628     const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
2629 #endif
2630
2631     if (full) {
2632         int got_a_chain = 0;
2633
2634         sk = SSL_get_peer_cert_chain(s);
2635         if (sk != NULL) {
2636             got_a_chain = 1;
2637
2638             BIO_printf(bio, "---\nCertificate chain\n");
2639             for (i = 0; i < sk_X509_num(sk); i++) {
2640                 X509_NAME_oneline(X509_get_subject_name(sk_X509_value(sk, i)),
2641                                   buf, sizeof buf);
2642                 BIO_printf(bio, "%2d s:%s\n", i, buf);
2643                 X509_NAME_oneline(X509_get_issuer_name(sk_X509_value(sk, i)),
2644                                   buf, sizeof buf);
2645                 BIO_printf(bio, "   i:%s\n", buf);
2646                 if (c_showcerts)
2647                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
2648             }
2649         }
2650
2651         BIO_printf(bio, "---\n");
2652         peer = SSL_get_peer_certificate(s);
2653         if (peer != NULL) {
2654             BIO_printf(bio, "Server certificate\n");
2655
2656             /* Redundant if we showed the whole chain */
2657             if (!(c_showcerts && got_a_chain))
2658                 PEM_write_bio_X509(bio, peer);
2659             X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2660             BIO_printf(bio, "subject=%s\n", buf);
2661             X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2662             BIO_printf(bio, "issuer=%s\n", buf);
2663         } else
2664             BIO_printf(bio, "no peer certificate available\n");
2665
2666         sk2 = SSL_get_client_CA_list(s);
2667         if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0)) {
2668             BIO_printf(bio, "---\nAcceptable client certificate CA names\n");
2669             for (i = 0; i < sk_X509_NAME_num(sk2); i++) {
2670                 xn = sk_X509_NAME_value(sk2, i);
2671                 X509_NAME_oneline(xn, buf, sizeof(buf));
2672                 BIO_write(bio, buf, strlen(buf));
2673                 BIO_write(bio, "\n", 1);
2674             }
2675         } else {
2676             BIO_printf(bio, "---\nNo client certificate CA names sent\n");
2677         }
2678
2679         ssl_print_sigalgs(bio, s);
2680         ssl_print_tmp_key(bio, s);
2681
2682 #ifndef OPENSSL_NO_CT
2683         /*
2684          * When the SSL session is anonymous, or resumed via an abbreviated
2685          * handshake, no SCTs are provided as part of the handshake.  While in
2686          * a resumed session SCTs may be present in the session's certificate,
2687          * no callbacks are invoked to revalidate these, and in any case that
2688          * set of SCTs may be incomplete.  Thus it makes little sense to
2689          * attempt to display SCTs from a resumed session's certificate, and of
2690          * course none are associated with an anonymous peer.
2691          */
2692         if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
2693             const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
2694             int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
2695
2696             BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
2697             if (sct_count > 0) {
2698                 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
2699
2700                 BIO_printf(bio, "---\n");
2701                 for (i = 0; i < sct_count; ++i) {
2702                     SCT *sct = sk_SCT_value(scts, i);
2703
2704                     BIO_printf(bio, "SCT validation status: %s\n",
2705                                SCT_validation_status_string(sct));
2706                     SCT_print(sct, bio, 0, log_store);
2707                     if (i < sct_count - 1)
2708                         BIO_printf(bio, "\n---\n");
2709                 }
2710                 BIO_printf(bio, "\n");
2711             }
2712         }
2713 #endif
2714
2715         BIO_printf(bio,
2716                    "---\nSSL handshake has read %" PRIu64
2717                    " bytes and written %" PRIu64 " bytes\n",
2718                    BIO_number_read(SSL_get_rbio(s)),
2719                    BIO_number_written(SSL_get_wbio(s)));
2720     }
2721     print_verify_detail(s, bio);
2722     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
2723     c = SSL_get_current_cipher(s);
2724     BIO_printf(bio, "%s, Cipher is %s\n",
2725                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2726     if (peer != NULL) {
2727         EVP_PKEY *pktmp;
2728
2729         pktmp = X509_get0_pubkey(peer);
2730         BIO_printf(bio, "Server public key is %d bit\n",
2731                    EVP_PKEY_bits(pktmp));
2732     }
2733     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
2734                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
2735 #ifndef OPENSSL_NO_COMP
2736     comp = SSL_get_current_compression(s);
2737     expansion = SSL_get_current_expansion(s);
2738     BIO_printf(bio, "Compression: %s\n",
2739                comp ? SSL_COMP_get_name(comp) : "NONE");
2740     BIO_printf(bio, "Expansion: %s\n",
2741                expansion ? SSL_COMP_get_name(expansion) : "NONE");
2742 #endif
2743
2744 #ifdef SSL_DEBUG
2745     {
2746         /* Print out local port of connection: useful for debugging */
2747         int sock;
2748         union BIO_sock_info_u info;
2749
2750         sock = SSL_get_fd(s);
2751         if ((info.addr = BIO_ADDR_new()) != NULL
2752             && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
2753             BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
2754                        ntohs(BIO_ADDR_rawport(info.addr)));
2755         }
2756         BIO_ADDR_free(info.addr);
2757     }
2758 #endif
2759
2760 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2761     if (next_proto.status != -1) {
2762         const unsigned char *proto;
2763         unsigned int proto_len;
2764         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2765         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
2766         BIO_write(bio, proto, proto_len);
2767         BIO_write(bio, "\n", 1);
2768     }
2769 #endif
2770     {
2771         const unsigned char *proto;
2772         unsigned int proto_len;
2773         SSL_get0_alpn_selected(s, &proto, &proto_len);
2774         if (proto_len > 0) {
2775             BIO_printf(bio, "ALPN protocol: ");
2776             BIO_write(bio, proto, proto_len);
2777             BIO_write(bio, "\n", 1);
2778         } else
2779             BIO_printf(bio, "No ALPN negotiated\n");
2780     }
2781
2782 #ifndef OPENSSL_NO_SRTP
2783     {
2784         SRTP_PROTECTION_PROFILE *srtp_profile =
2785             SSL_get_selected_srtp_profile(s);
2786
2787         if (srtp_profile)
2788             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
2789                        srtp_profile->name);
2790     }
2791 #endif
2792
2793     SSL_SESSION_print(bio, SSL_get_session(s));
2794     if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
2795         BIO_printf(bio, "Keying material exporter:\n");
2796         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
2797         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
2798         exportedkeymat = app_malloc(keymatexportlen, "export key");
2799         if (!SSL_export_keying_material(s, exportedkeymat,
2800                                         keymatexportlen,
2801                                         keymatexportlabel,
2802                                         strlen(keymatexportlabel),
2803                                         NULL, 0, 0)) {
2804             BIO_printf(bio, "    Error\n");
2805         } else {
2806             BIO_printf(bio, "    Keying material: ");
2807             for (i = 0; i < keymatexportlen; i++)
2808                 BIO_printf(bio, "%02X", exportedkeymat[i]);
2809             BIO_printf(bio, "\n");
2810         }
2811         OPENSSL_free(exportedkeymat);
2812     }
2813     BIO_printf(bio, "---\n");
2814     X509_free(peer);
2815     /* flush, or debugging output gets mixed with http response */
2816     (void)BIO_flush(bio);
2817 }
2818
2819 # ifndef OPENSSL_NO_OCSP
2820 static int ocsp_resp_cb(SSL *s, void *arg)
2821 {
2822     const unsigned char *p;
2823     int len;
2824     OCSP_RESPONSE *rsp;
2825     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2826     BIO_puts(arg, "OCSP response: ");
2827     if (!p) {
2828         BIO_puts(arg, "no response sent\n");
2829         return 1;
2830     }
2831     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
2832     if (!rsp) {
2833         BIO_puts(arg, "response parse error\n");
2834         BIO_dump_indent(arg, (char *)p, len, 4);
2835         return 0;
2836     }
2837     BIO_puts(arg, "\n======================================\n");
2838     OCSP_RESPONSE_print(arg, rsp, 0);
2839     BIO_puts(arg, "======================================\n");
2840     OCSP_RESPONSE_free(rsp);
2841     return 1;
2842 }
2843 # endif
2844
2845 #endif                          /* OPENSSL_NO_SOCK */