Provided support for the -nameopt flag in s_client, s_server and s_time
[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, OPT_NAMEOPT,
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     {"nameopt", OPT_NAMEOPT, 's', "Various certificate name options"},
583     {"key", OPT_KEY, 's', "Private key file to use, if not in -cert file"},
584     {"keyform", OPT_KEYFORM, 'E', "Key format (PEM, DER or engine) PEM default"},
585     {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
586     {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
587     {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
588     {"no-CAfile", OPT_NOCAFILE, '-',
589      "Do not load the default certificates file"},
590     {"no-CApath", OPT_NOCAPATH, '-',
591      "Do not load certificates from the default certificates directory"},
592     {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
593     {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
594      "DANE TLSA rrdata presentation form"},
595     {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-',
596      "Disable name checks when matching DANE-EE(3) TLSA records"},
597     {"reconnect", OPT_RECONNECT, '-',
598      "Drop and re-make the connection with the same Session-ID"},
599     {"showcerts", OPT_SHOWCERTS, '-', "Show all certificates in the chain"},
600     {"debug", OPT_DEBUG, '-', "Extra output"},
601     {"msg", OPT_MSG, '-', "Show protocol messages"},
602     {"msgfile", OPT_MSGFILE, '>',
603      "File to send output of -msg or -trace, instead of stdout"},
604     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
605     {"state", OPT_STATE, '-', "Print the ssl states"},
606     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
607     {"quiet", OPT_QUIET, '-', "No s_client output"},
608     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
609     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
610     {"starttls", OPT_STARTTLS, 's',
611      "Use the appropriate STARTTLS command before starting TLS"},
612     {"xmpphost", OPT_XMPPHOST, 's',
613      "Host to use with \"-starttls xmpp[-server]\""},
614     {"rand", OPT_RAND, 's',
615      "Load the file(s) into the random number generator"},
616     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
617     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
618     {"use_srtp", OPT_USE_SRTP, 's',
619      "Offer SRTP key management with a colon-separated profile list"},
620     {"keymatexport", OPT_KEYMATEXPORT, 's',
621      "Export keying material using label"},
622     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
623      "Export len bytes of keying material (default 20)"},
624     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
625     {"name", OPT_SMTPHOST, 's',
626      "Hostname to use for \"-starttls lmtp\" or \"-starttls smtp\""},
627     {"CRL", OPT_CRL, '<', "CRL file to use"},
628     {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
629     {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER) PEM is default"},
630     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
631      "Close connection on verification error"},
632     {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
633     {"brief", OPT_BRIEF, '-',
634      "Restrict output to brief summary of connection parameters"},
635     {"prexit", OPT_PREXIT, '-',
636      "Print session information when the program exits"},
637     {"security_debug", OPT_SECURITY_DEBUG, '-',
638      "Enable security debug messages"},
639     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
640      "Output more security debug output"},
641     {"cert_chain", OPT_CERT_CHAIN, '<',
642      "Certificate chain file (in PEM format)"},
643     {"chainCApath", OPT_CHAINCAPATH, '/',
644      "Use dir as certificate store path to build CA certificate chain"},
645     {"verifyCApath", OPT_VERIFYCAPATH, '/',
646      "Use dir as certificate store path to verify CA certificate"},
647     {"build_chain", OPT_BUILD_CHAIN, '-', "Build certificate chain"},
648     {"chainCAfile", OPT_CHAINCAFILE, '<',
649      "CA file for certificate chain (PEM format)"},
650     {"verifyCAfile", OPT_VERIFYCAFILE, '<',
651      "CA file for certificate verification (PEM format)"},
652     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
653     {"servername", OPT_SERVERNAME, 's',
654      "Set TLS extension servername in ClientHello"},
655     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
656      "Hex dump of all TLS extensions received"},
657 #ifndef OPENSSL_NO_OCSP
658     {"status", OPT_STATUS, '-', "Request certificate status from server"},
659 #endif
660     {"serverinfo", OPT_SERVERINFO, 's',
661      "types  Send empty ClientHello extensions (comma-separated numbers)"},
662     {"alpn", OPT_ALPN, 's',
663      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
664     {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
665     {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified configuration file"},
666     {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'n',
667      "Size used to split data for encrypt pipelines"},
668     {"max_pipelines", OPT_MAX_PIPELINES, 'n',
669      "Maximum number of encrypt/decrypt pipelines to be used"},
670     {"read_buf", OPT_READ_BUF, 'n',
671      "Default read buffer size to be used for connections"},
672     OPT_S_OPTIONS,
673     OPT_V_OPTIONS,
674     OPT_X_OPTIONS,
675 #ifndef OPENSSL_NO_SSL3
676     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
677 #endif
678 #ifndef OPENSSL_NO_TLS1
679     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
680 #endif
681 #ifndef OPENSSL_NO_TLS1_1
682     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
683 #endif
684 #ifndef OPENSSL_NO_TLS1_2
685     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
686 #endif
687 #ifndef OPENSSL_NO_TLS1_3
688     {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
689 #endif
690 #ifndef OPENSSL_NO_DTLS
691     {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
692     {"timeout", OPT_TIMEOUT, '-',
693      "Enable send/receive timeout on DTLS connections"},
694     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
695 #endif
696 #ifndef OPENSSL_NO_DTLS1
697     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
698 #endif
699 #ifndef OPENSSL_NO_DTLS1_2
700     {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
701 #endif
702 #ifndef OPENSSL_NO_SSL_TRACE
703     {"trace", OPT_TRACE, '-', "Show trace output of protocol messages"},
704 #endif
705 #ifdef WATT32
706     {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
707 #endif
708     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
709 #ifndef OPENSSL_NO_PSK
710     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
711     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
712 #endif
713 #ifndef OPENSSL_NO_SRP
714     {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"},
715     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
716     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
717      "SRP username into second ClientHello message"},
718     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
719      "Tolerate other than the known g N values."},
720     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
721 #endif
722 #ifndef OPENSSL_NO_NEXTPROTONEG
723     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
724      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
725 #endif
726 #ifndef OPENSSL_NO_ENGINE
727     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
728     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
729      "Specify engine to be used for client certificate operations"},
730 #endif
731 #ifndef OPENSSL_NO_CT
732     {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"},
733     {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"},
734     {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"},
735 #endif
736     {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
737     {NULL, OPT_EOF, 0x00, NULL}
738 };
739
740 typedef enum PROTOCOL_choice {
741     PROTO_OFF,
742     PROTO_SMTP,
743     PROTO_POP3,
744     PROTO_IMAP,
745     PROTO_FTP,
746     PROTO_TELNET,
747     PROTO_XMPP,
748     PROTO_XMPP_SERVER,
749     PROTO_CONNECT,
750     PROTO_IRC,
751     PROTO_POSTGRES,
752     PROTO_LMTP,
753     PROTO_NNTP,
754     PROTO_SIEVE
755 } PROTOCOL_CHOICE;
756
757 static const OPT_PAIR services[] = {
758     {"smtp", PROTO_SMTP},
759     {"pop3", PROTO_POP3},
760     {"imap", PROTO_IMAP},
761     {"ftp", PROTO_FTP},
762     {"xmpp", PROTO_XMPP},
763     {"xmpp-server", PROTO_XMPP_SERVER},
764     {"telnet", PROTO_TELNET},
765     {"irc", PROTO_IRC},
766     {"postgres", PROTO_POSTGRES},
767     {"lmtp", PROTO_LMTP},
768     {"nntp", PROTO_NNTP},
769     {"sieve", PROTO_SIEVE},
770     {NULL, 0}
771 };
772
773 #define IS_INET_FLAG(o) \
774  (o == OPT_4 || o == OPT_6 || o == OPT_HOST || o == OPT_PORT || o == OPT_CONNECT)
775 #define IS_UNIX_FLAG(o) (o == OPT_UNIX)
776
777 #define IS_PROT_FLAG(o) \
778  (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
779   || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
780
781 /* Free |*dest| and optionally set it to a copy of |source|. */
782 static void freeandcopy(char **dest, const char *source)
783 {
784     OPENSSL_free(*dest);
785     *dest = NULL;
786     if (source != NULL)
787         *dest = OPENSSL_strdup(source);
788 }
789
790 static int new_session_cb(SSL *S, SSL_SESSION *sess)
791 {
792     BIO *stmp = BIO_new_file(sess_out, "w");
793
794     if (stmp == NULL) {
795         BIO_printf(bio_err, "Error writing session file %s\n", sess_out);
796     } else {
797         PEM_write_bio_SSL_SESSION(stmp, sess);
798         BIO_free(stmp);
799     }
800
801     /*
802      * We always return a "fail" response so that the session gets freed again
803      * because we haven't used the reference.
804      */
805     return 0;
806 }
807
808 int s_client_main(int argc, char **argv)
809 {
810     BIO *sbio;
811     EVP_PKEY *key = NULL;
812     SSL *con = NULL;
813     SSL_CTX *ctx = NULL;
814     STACK_OF(X509) *chain = NULL;
815     X509 *cert = NULL;
816     X509_VERIFY_PARAM *vpm = NULL;
817     SSL_EXCERT *exc = NULL;
818     SSL_CONF_CTX *cctx = NULL;
819     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
820     char *dane_tlsa_domain = NULL;
821     STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
822     int dane_ee_no_name = 0;
823     STACK_OF(X509_CRL) *crls = NULL;
824     const SSL_METHOD *meth = TLS_client_method();
825     const char *CApath = NULL, *CAfile = NULL;
826     char *cbuf = NULL, *sbuf = NULL;
827     char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL;
828     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
829     char *chCApath = NULL, *chCAfile = NULL, *host = NULL;
830     char *port = OPENSSL_strdup(PORT);
831     char *inrand = NULL;
832     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
833     char *sess_in = NULL, *crl_file = NULL, *p;
834     char *xmpphost = NULL;
835     const char *ehlo = "mail.example.com";
836     struct timeval timeout, *timeoutp;
837     fd_set readfds, writefds;
838     int noCApath = 0, noCAfile = 0;
839     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
840     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
841     int prexit = 0;
842     int sdebug = 0;
843     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
844     int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
845     int sbuf_len, sbuf_off, cmdletters = 1;
846     int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM;
847     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
848     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
849 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
850     int at_eof = 0;
851 #endif
852     int read_buf_len = 0;
853     int fallback_scsv = 0;
854     long randamt = 0;
855     OPTION_CHOICE o;
856 #ifndef OPENSSL_NO_DTLS
857     int enable_timeouts = 0;
858     long socket_mtu = 0;
859 #endif
860 #ifndef OPENSSL_NO_ENGINE
861     ENGINE *ssl_client_engine = NULL;
862 #endif
863     ENGINE *e = NULL;
864 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
865     struct timeval tv;
866 #endif
867     char *servername = NULL;
868     const char *alpn_in = NULL;
869     tlsextctx tlsextcbp = { NULL, 0 };
870     const char *ssl_config = NULL;
871 #define MAX_SI_TYPES 100
872     unsigned short serverinfo_types[MAX_SI_TYPES];
873     int serverinfo_count = 0, start = 0, len;
874 #ifndef OPENSSL_NO_NEXTPROTONEG
875     const char *next_proto_neg_in = NULL;
876 #endif
877 #ifndef OPENSSL_NO_SRP
878     char *srppass = NULL;
879     int srp_lateuser = 0;
880     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
881 #endif
882 #ifndef OPENSSL_NO_CT
883     char *ctlog_file = NULL;
884     int ct_validation = 0;
885 #endif
886     int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
887     int async = 0;
888     unsigned int split_send_fragment = 0;
889     unsigned int max_pipelines = 0;
890     enum { use_inet, use_unix, use_unknown } connect_type = use_unknown;
891     int count4or6 = 0;
892     int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0;
893     int c_tlsextdebug = 0;
894 #ifndef OPENSSL_NO_OCSP
895     int c_status_req = 0;
896 #endif
897     BIO *bio_c_msg = NULL;
898     const char *keylog_file = NULL;
899
900     FD_ZERO(&readfds);
901     FD_ZERO(&writefds);
902 /* Known false-positive of MemorySanitizer. */
903 #if defined(__has_feature)
904 # if __has_feature(memory_sanitizer)
905     __msan_unpoison(&readfds, sizeof(readfds));
906     __msan_unpoison(&writefds, sizeof(writefds));
907 # endif
908 #endif
909
910     prog = opt_progname(argv[0]);
911     c_quiet = 0;
912     c_debug = 0;
913     c_showcerts = 0;
914     c_nbio = 0;
915     vpm = X509_VERIFY_PARAM_new();
916     cctx = SSL_CONF_CTX_new();
917
918     if (vpm == NULL || cctx == NULL) {
919         BIO_printf(bio_err, "%s: out of memory\n", prog);
920         goto end;
921     }
922
923     cbuf = app_malloc(BUFSIZZ, "cbuf");
924     sbuf = app_malloc(BUFSIZZ, "sbuf");
925     mbuf = app_malloc(BUFSIZZ, "mbuf");
926
927     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
928
929     prog = opt_init(argc, argv, s_client_options);
930     while ((o = opt_next()) != OPT_EOF) {
931         /* Check for intermixing flags. */
932         if (connect_type == use_unix && IS_INET_FLAG(o)) {
933             BIO_printf(bio_err,
934                        "%s: Intermixed protocol flags (unix and internet domains)\n",
935                        prog);
936             goto end;
937         }
938         if (connect_type == use_inet && IS_UNIX_FLAG(o)) {
939             BIO_printf(bio_err,
940                        "%s: Intermixed protocol flags (internet and unix domains)\n",
941                        prog);
942             goto end;
943         }
944
945         if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
946             BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
947             goto end;
948         }
949         if (IS_NO_PROT_FLAG(o))
950             no_prot_opt++;
951         if (prot_opt == 1 && no_prot_opt) {
952             BIO_printf(bio_err,
953                        "Cannot supply both a protocol flag and '-no_<prot>'\n");
954             goto end;
955         }
956
957         switch (o) {
958         case OPT_EOF:
959         case OPT_ERR:
960  opthelp:
961             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
962             goto end;
963         case OPT_HELP:
964             opt_help(s_client_options);
965             ret = 0;
966             goto end;
967         case OPT_4:
968             connect_type = use_inet;
969             socket_family = AF_INET;
970             count4or6++;
971             break;
972 #ifdef AF_INET6
973         case OPT_6:
974             connect_type = use_inet;
975             socket_family = AF_INET6;
976             count4or6++;
977             break;
978 #endif
979         case OPT_HOST:
980             connect_type = use_inet;
981             freeandcopy(&host, opt_arg());
982             break;
983         case OPT_PORT:
984             connect_type = use_inet;
985             freeandcopy(&port, opt_arg());
986             break;
987         case OPT_CONNECT:
988             connect_type = use_inet;
989             freeandcopy(&connectstr, opt_arg());
990             break;
991         case OPT_PROXY:
992             proxystr = opt_arg();
993             starttls_proto = PROTO_CONNECT;
994             break;
995 #ifdef AF_UNIX
996         case OPT_UNIX:
997             connect_type = use_unix;
998             socket_family = AF_UNIX;
999             freeandcopy(&host, opt_arg());
1000             break;
1001 #endif
1002         case OPT_XMPPHOST:
1003             xmpphost = opt_arg();
1004             break;
1005         case OPT_SMTPHOST:
1006             ehlo = opt_arg();
1007             break;
1008         case OPT_VERIFY:
1009             verify = SSL_VERIFY_PEER;
1010             verify_args.depth = atoi(opt_arg());
1011             if (!c_quiet)
1012                 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
1013             break;
1014         case OPT_CERT:
1015             cert_file = opt_arg();
1016             break;
1017         case OPT_NAMEOPT:
1018             if (!set_nameopt(opt_arg()))
1019                 goto end;
1020             break;
1021         case OPT_CRL:
1022             crl_file = opt_arg();
1023             break;
1024         case OPT_CRL_DOWNLOAD:
1025             crl_download = 1;
1026             break;
1027         case OPT_SESS_OUT:
1028             sess_out = opt_arg();
1029             break;
1030         case OPT_SESS_IN:
1031             sess_in = opt_arg();
1032             break;
1033         case OPT_CERTFORM:
1034             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
1035                 goto opthelp;
1036             break;
1037         case OPT_CRLFORM:
1038             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1039                 goto opthelp;
1040             break;
1041         case OPT_VERIFY_RET_ERROR:
1042             verify_args.return_error = 1;
1043             break;
1044         case OPT_VERIFY_QUIET:
1045             verify_args.quiet = 1;
1046             break;
1047         case OPT_BRIEF:
1048             c_brief = verify_args.quiet = c_quiet = 1;
1049             break;
1050         case OPT_S_CASES:
1051             if (ssl_args == NULL)
1052                 ssl_args = sk_OPENSSL_STRING_new_null();
1053             if (ssl_args == NULL
1054                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1055                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1056                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1057                 goto end;
1058             }
1059             break;
1060         case OPT_V_CASES:
1061             if (!opt_verify(o, vpm))
1062                 goto end;
1063             vpmtouched++;
1064             break;
1065         case OPT_X_CASES:
1066             if (!args_excert(o, &exc))
1067                 goto end;
1068             break;
1069         case OPT_PREXIT:
1070             prexit = 1;
1071             break;
1072         case OPT_CRLF:
1073             crlf = 1;
1074             break;
1075         case OPT_QUIET:
1076             c_quiet = c_ign_eof = 1;
1077             break;
1078         case OPT_NBIO:
1079             c_nbio = 1;
1080             break;
1081         case OPT_NOCMDS:
1082             cmdletters = 0;
1083             break;
1084         case OPT_ENGINE:
1085             e = setup_engine(opt_arg(), 1);
1086             break;
1087         case OPT_SSL_CLIENT_ENGINE:
1088 #ifndef OPENSSL_NO_ENGINE
1089             ssl_client_engine = ENGINE_by_id(opt_arg());
1090             if (ssl_client_engine == NULL) {
1091                 BIO_printf(bio_err, "Error getting client auth engine\n");
1092                 goto opthelp;
1093             }
1094 #endif
1095             break;
1096         case OPT_RAND:
1097             inrand = opt_arg();
1098             break;
1099         case OPT_IGN_EOF:
1100             c_ign_eof = 1;
1101             break;
1102         case OPT_NO_IGN_EOF:
1103             c_ign_eof = 0;
1104             break;
1105         case OPT_DEBUG:
1106             c_debug = 1;
1107             break;
1108         case OPT_TLSEXTDEBUG:
1109             c_tlsextdebug = 1;
1110             break;
1111         case OPT_STATUS:
1112 #ifndef OPENSSL_NO_OCSP
1113             c_status_req = 1;
1114 #endif
1115             break;
1116         case OPT_WDEBUG:
1117 #ifdef WATT32
1118             dbug_init();
1119 #endif
1120             break;
1121         case OPT_MSG:
1122             c_msg = 1;
1123             break;
1124         case OPT_MSGFILE:
1125             bio_c_msg = BIO_new_file(opt_arg(), "w");
1126             break;
1127         case OPT_TRACE:
1128 #ifndef OPENSSL_NO_SSL_TRACE
1129             c_msg = 2;
1130 #endif
1131             break;
1132         case OPT_SECURITY_DEBUG:
1133             sdebug = 1;
1134             break;
1135         case OPT_SECURITY_DEBUG_VERBOSE:
1136             sdebug = 2;
1137             break;
1138         case OPT_SHOWCERTS:
1139             c_showcerts = 1;
1140             break;
1141         case OPT_NBIO_TEST:
1142             nbio_test = 1;
1143             break;
1144         case OPT_STATE:
1145             state = 1;
1146             break;
1147 #ifndef OPENSSL_NO_PSK
1148         case OPT_PSK_IDENTITY:
1149             psk_identity = opt_arg();
1150             break;
1151         case OPT_PSK:
1152             for (p = psk_key = opt_arg(); *p; p++) {
1153                 if (isxdigit(_UC(*p)))
1154                     continue;
1155                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1156                 goto end;
1157             }
1158             break;
1159 #endif
1160 #ifndef OPENSSL_NO_SRP
1161         case OPT_SRPUSER:
1162             srp_arg.srplogin = opt_arg();
1163             if (min_version < TLS1_VERSION)
1164                 min_version = TLS1_VERSION;
1165             break;
1166         case OPT_SRPPASS:
1167             srppass = opt_arg();
1168             if (min_version < TLS1_VERSION)
1169                 min_version = TLS1_VERSION;
1170             break;
1171         case OPT_SRP_STRENGTH:
1172             srp_arg.strength = atoi(opt_arg());
1173             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1174                        srp_arg.strength);
1175             if (min_version < TLS1_VERSION)
1176                 min_version = TLS1_VERSION;
1177             break;
1178         case OPT_SRP_LATEUSER:
1179             srp_lateuser = 1;
1180             if (min_version < TLS1_VERSION)
1181                 min_version = TLS1_VERSION;
1182             break;
1183         case OPT_SRP_MOREGROUPS:
1184             srp_arg.amp = 1;
1185             if (min_version < TLS1_VERSION)
1186                 min_version = TLS1_VERSION;
1187             break;
1188 #endif
1189         case OPT_SSL_CONFIG:
1190             ssl_config = opt_arg();
1191             break;
1192         case OPT_SSL3:
1193             min_version = SSL3_VERSION;
1194             max_version = SSL3_VERSION;
1195             break;
1196         case OPT_TLS1_3:
1197             min_version = TLS1_3_VERSION;
1198             max_version = TLS1_3_VERSION;
1199             break;
1200         case OPT_TLS1_2:
1201             min_version = TLS1_2_VERSION;
1202             max_version = TLS1_2_VERSION;
1203             break;
1204         case OPT_TLS1_1:
1205             min_version = TLS1_1_VERSION;
1206             max_version = TLS1_1_VERSION;
1207             break;
1208         case OPT_TLS1:
1209             min_version = TLS1_VERSION;
1210             max_version = TLS1_VERSION;
1211             break;
1212         case OPT_DTLS:
1213 #ifndef OPENSSL_NO_DTLS
1214             meth = DTLS_client_method();
1215             socket_type = SOCK_DGRAM;
1216 #endif
1217             break;
1218         case OPT_DTLS1:
1219 #ifndef OPENSSL_NO_DTLS1
1220             meth = DTLS_client_method();
1221             min_version = DTLS1_VERSION;
1222             max_version = DTLS1_VERSION;
1223             socket_type = SOCK_DGRAM;
1224 #endif
1225             break;
1226         case OPT_DTLS1_2:
1227 #ifndef OPENSSL_NO_DTLS1_2
1228             meth = DTLS_client_method();
1229             min_version = DTLS1_2_VERSION;
1230             max_version = DTLS1_2_VERSION;
1231             socket_type = SOCK_DGRAM;
1232 #endif
1233             break;
1234         case OPT_TIMEOUT:
1235 #ifndef OPENSSL_NO_DTLS
1236             enable_timeouts = 1;
1237 #endif
1238             break;
1239         case OPT_MTU:
1240 #ifndef OPENSSL_NO_DTLS
1241             socket_mtu = atol(opt_arg());
1242 #endif
1243             break;
1244         case OPT_FALLBACKSCSV:
1245             fallback_scsv = 1;
1246             break;
1247         case OPT_KEYFORM:
1248             if (!opt_format(opt_arg(), OPT_FMT_PDE, &key_format))
1249                 goto opthelp;
1250             break;
1251         case OPT_PASS:
1252             passarg = opt_arg();
1253             break;
1254         case OPT_CERT_CHAIN:
1255             chain_file = opt_arg();
1256             break;
1257         case OPT_KEY:
1258             key_file = opt_arg();
1259             break;
1260         case OPT_RECONNECT:
1261             reconnect = 5;
1262             break;
1263         case OPT_CAPATH:
1264             CApath = opt_arg();
1265             break;
1266         case OPT_NOCAPATH:
1267             noCApath = 1;
1268             break;
1269         case OPT_CHAINCAPATH:
1270             chCApath = opt_arg();
1271             break;
1272         case OPT_VERIFYCAPATH:
1273             vfyCApath = opt_arg();
1274             break;
1275         case OPT_BUILD_CHAIN:
1276             build_chain = 1;
1277             break;
1278         case OPT_CAFILE:
1279             CAfile = opt_arg();
1280             break;
1281         case OPT_NOCAFILE:
1282             noCAfile = 1;
1283             break;
1284 #ifndef OPENSSL_NO_CT
1285         case OPT_NOCT:
1286             ct_validation = 0;
1287             break;
1288         case OPT_CT:
1289             ct_validation = 1;
1290             break;
1291         case OPT_CTLOG_FILE:
1292             ctlog_file = opt_arg();
1293             break;
1294 #endif
1295         case OPT_CHAINCAFILE:
1296             chCAfile = opt_arg();
1297             break;
1298         case OPT_VERIFYCAFILE:
1299             vfyCAfile = opt_arg();
1300             break;
1301         case OPT_DANE_TLSA_DOMAIN:
1302             dane_tlsa_domain = opt_arg();
1303             break;
1304         case OPT_DANE_TLSA_RRDATA:
1305             if (dane_tlsa_rrset == NULL)
1306                 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1307             if (dane_tlsa_rrset == NULL ||
1308                 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1309                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1310                 goto end;
1311             }
1312             break;
1313         case OPT_DANE_EE_NO_NAME:
1314             dane_ee_no_name = 1;
1315             break;
1316         case OPT_NEXTPROTONEG:
1317 #ifndef OPENSSL_NO_NEXTPROTONEG
1318             next_proto_neg_in = opt_arg();
1319 #endif
1320             break;
1321         case OPT_ALPN:
1322             alpn_in = opt_arg();
1323             break;
1324         case OPT_SERVERINFO:
1325             p = opt_arg();
1326             len = strlen(p);
1327             for (start = 0, i = 0; i <= len; ++i) {
1328                 if (i == len || p[i] == ',') {
1329                     serverinfo_types[serverinfo_count] = atoi(p + start);
1330                     if (++serverinfo_count == MAX_SI_TYPES)
1331                         break;
1332                     start = i + 1;
1333                 }
1334             }
1335             break;
1336         case OPT_STARTTLS:
1337             if (!opt_pair(opt_arg(), services, &starttls_proto))
1338                 goto end;
1339             break;
1340         case OPT_SERVERNAME:
1341             servername = opt_arg();
1342             break;
1343         case OPT_USE_SRTP:
1344             srtp_profiles = opt_arg();
1345             break;
1346         case OPT_KEYMATEXPORT:
1347             keymatexportlabel = opt_arg();
1348             break;
1349         case OPT_KEYMATEXPORTLEN:
1350             keymatexportlen = atoi(opt_arg());
1351             break;
1352         case OPT_ASYNC:
1353             async = 1;
1354             break;
1355         case OPT_SPLIT_SEND_FRAG:
1356             split_send_fragment = atoi(opt_arg());
1357             if (split_send_fragment == 0) {
1358                 /*
1359                  * Not allowed - set to a deliberately bad value so we get an
1360                  * error message below
1361                  */
1362                 split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH + 1;
1363             }
1364             break;
1365         case OPT_MAX_PIPELINES:
1366             max_pipelines = atoi(opt_arg());
1367             break;
1368         case OPT_READ_BUF:
1369             read_buf_len = atoi(opt_arg());
1370             break;
1371         case OPT_KEYLOG_FILE:
1372             keylog_file = opt_arg();
1373             break;
1374         }
1375     }
1376     if (count4or6 >= 2) {
1377         BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog);
1378         goto opthelp;
1379     }
1380     argc = opt_num_rest();
1381     if (argc != 0)
1382         goto opthelp;
1383
1384     if (proxystr) {
1385         int res;
1386         char *tmp_host = host, *tmp_port = port;
1387         if (connectstr == NULL) {
1388             BIO_printf(bio_err, "%s: -proxy requires use of -connect\n", prog);
1389             goto opthelp;
1390         }
1391         res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1392         if (tmp_host != host)
1393             OPENSSL_free(tmp_host);
1394         if (tmp_port != port)
1395             OPENSSL_free(tmp_port);
1396         if (!res) {
1397             BIO_printf(bio_err,
1398                        "%s: -proxy argument malformed or ambiguous\n", prog);
1399             goto end;
1400         }
1401     } else {
1402         int res = 1;
1403         char *tmp_host = host, *tmp_port = port;
1404         if (connectstr != NULL)
1405             res = BIO_parse_hostserv(connectstr, &host, &port,
1406                                      BIO_PARSE_PRIO_HOST);
1407         if (tmp_host != host)
1408             OPENSSL_free(tmp_host);
1409         if (tmp_port != port)
1410             OPENSSL_free(tmp_port);
1411         if (!res) {
1412             BIO_printf(bio_err,
1413                        "%s: -connect argument malformed or ambiguous\n",
1414                        prog);
1415             goto end;
1416         }
1417     }
1418
1419     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1420         BIO_printf(bio_err,
1421                    "Can't use unix sockets and datagrams together\n");
1422         goto end;
1423     }
1424
1425     if (split_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
1426         BIO_printf(bio_err, "Bad split send fragment size\n");
1427         goto end;
1428     }
1429
1430     if (max_pipelines > SSL_MAX_PIPELINES) {
1431         BIO_printf(bio_err, "Bad max pipelines value\n");
1432         goto end;
1433     }
1434
1435 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1436     next_proto.status = -1;
1437     if (next_proto_neg_in) {
1438         next_proto.data =
1439             next_protos_parse(&next_proto.len, next_proto_neg_in);
1440         if (next_proto.data == NULL) {
1441             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1442             goto end;
1443         }
1444     } else
1445         next_proto.data = NULL;
1446 #endif
1447
1448     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1449         BIO_printf(bio_err, "Error getting password\n");
1450         goto end;
1451     }
1452
1453     if (key_file == NULL)
1454         key_file = cert_file;
1455
1456     if (key_file) {
1457         key = load_key(key_file, key_format, 0, pass, e,
1458                        "client certificate private key file");
1459         if (key == NULL) {
1460             ERR_print_errors(bio_err);
1461             goto end;
1462         }
1463     }
1464
1465     if (cert_file) {
1466         cert = load_cert(cert_file, cert_format, "client certificate file");
1467         if (cert == NULL) {
1468             ERR_print_errors(bio_err);
1469             goto end;
1470         }
1471     }
1472
1473     if (chain_file) {
1474         if (!load_certs(chain_file, &chain, FORMAT_PEM, NULL,
1475                         "client certificate chain"))
1476             goto end;
1477     }
1478
1479     if (crl_file) {
1480         X509_CRL *crl;
1481         crl = load_crl(crl_file, crl_format);
1482         if (crl == NULL) {
1483             BIO_puts(bio_err, "Error loading CRL\n");
1484             ERR_print_errors(bio_err);
1485             goto end;
1486         }
1487         crls = sk_X509_CRL_new_null();
1488         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1489             BIO_puts(bio_err, "Error adding CRL\n");
1490             ERR_print_errors(bio_err);
1491             X509_CRL_free(crl);
1492             goto end;
1493         }
1494     }
1495
1496     if (!load_excert(&exc))
1497         goto end;
1498
1499     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1500         && !RAND_status()) {
1501         BIO_printf(bio_err,
1502                    "warning, not much extra random data, consider using the -rand option\n");
1503     }
1504     if (inrand != NULL) {
1505         randamt = app_RAND_load_files(inrand);
1506         BIO_printf(bio_err, "%ld semi-random bytes loaded\n", randamt);
1507     }
1508
1509     if (bio_c_out == NULL) {
1510         if (c_quiet && !c_debug) {
1511             bio_c_out = BIO_new(BIO_s_null());
1512             if (c_msg && !bio_c_msg)
1513                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1514         } else if (bio_c_out == NULL)
1515             bio_c_out = dup_bio_out(FORMAT_TEXT);
1516     }
1517 #ifndef OPENSSL_NO_SRP
1518     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1519         BIO_printf(bio_err, "Error getting password\n");
1520         goto end;
1521     }
1522 #endif
1523
1524     ctx = SSL_CTX_new(meth);
1525     if (ctx == NULL) {
1526         ERR_print_errors(bio_err);
1527         goto end;
1528     }
1529
1530     if (sdebug)
1531         ssl_ctx_security_debug(ctx, sdebug);
1532
1533     if (ssl_config) {
1534         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1535             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1536                        ssl_config);
1537             ERR_print_errors(bio_err);
1538             goto end;
1539         }
1540     }
1541
1542     if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1543         goto end;
1544     if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1545         goto end;
1546
1547     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1548         BIO_printf(bio_err, "Error setting verify params\n");
1549         ERR_print_errors(bio_err);
1550         goto end;
1551     }
1552
1553     if (async) {
1554         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1555     }
1556     if (split_send_fragment > 0) {
1557         SSL_CTX_set_split_send_fragment(ctx, split_send_fragment);
1558     }
1559     if (max_pipelines > 0) {
1560         SSL_CTX_set_max_pipelines(ctx, max_pipelines);
1561     }
1562
1563     if (read_buf_len > 0) {
1564         SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1565     }
1566
1567     if (!config_ctx(cctx, ssl_args, ctx))
1568         goto end;
1569
1570     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1571                          crls, crl_download)) {
1572         BIO_printf(bio_err, "Error loading store locations\n");
1573         ERR_print_errors(bio_err);
1574         goto end;
1575     }
1576 #ifndef OPENSSL_NO_ENGINE
1577     if (ssl_client_engine) {
1578         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1579             BIO_puts(bio_err, "Error setting client auth engine\n");
1580             ERR_print_errors(bio_err);
1581             ENGINE_free(ssl_client_engine);
1582             goto end;
1583         }
1584         ENGINE_free(ssl_client_engine);
1585     }
1586 #endif
1587
1588 #ifndef OPENSSL_NO_PSK
1589     if (psk_key != NULL) {
1590         if (c_debug)
1591             BIO_printf(bio_c_out, "PSK key given, setting client callback\n");
1592         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1593     }
1594 #endif
1595 #ifndef OPENSSL_NO_SRTP
1596     if (srtp_profiles != NULL) {
1597         /* Returns 0 on success! */
1598         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1599             BIO_printf(bio_err, "Error setting SRTP profile\n");
1600             ERR_print_errors(bio_err);
1601             goto end;
1602         }
1603     }
1604 #endif
1605
1606     if (exc)
1607         ssl_ctx_set_excert(ctx, exc);
1608
1609 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1610     if (next_proto.data)
1611         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1612 #endif
1613     if (alpn_in) {
1614         size_t alpn_len;
1615         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1616
1617         if (alpn == NULL) {
1618             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1619             goto end;
1620         }
1621         /* Returns 0 on success! */
1622         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1623             BIO_printf(bio_err, "Error setting ALPN\n");
1624             goto end;
1625         }
1626         OPENSSL_free(alpn);
1627     }
1628
1629     for (i = 0; i < serverinfo_count; i++) {
1630         if (!SSL_CTX_add_client_custom_ext(ctx,
1631                                            serverinfo_types[i],
1632                                            NULL, NULL, NULL,
1633                                            serverinfo_cli_parse_cb, NULL)) {
1634             BIO_printf(bio_err,
1635                        "Warning: Unable to add custom extension %u, skipping\n",
1636                        serverinfo_types[i]);
1637         }
1638     }
1639
1640     if (state)
1641         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1642
1643 #ifndef OPENSSL_NO_CT
1644     /* Enable SCT processing, without early connection termination */
1645     if (ct_validation &&
1646         !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) {
1647         ERR_print_errors(bio_err);
1648         goto end;
1649     }
1650
1651     if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) {
1652         if (ct_validation) {
1653             ERR_print_errors(bio_err);
1654             goto end;
1655         }
1656
1657         /*
1658          * If CT validation is not enabled, the log list isn't needed so don't
1659          * show errors or abort. We try to load it regardless because then we
1660          * can show the names of the logs any SCTs came from (SCTs may be seen
1661          * even with validation disabled).
1662          */
1663         ERR_clear_error();
1664     }
1665 #endif
1666
1667     SSL_CTX_set_verify(ctx, verify, verify_callback);
1668
1669     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1670         ERR_print_errors(bio_err);
1671         goto end;
1672     }
1673
1674     ssl_ctx_add_crls(ctx, crls, crl_download);
1675
1676     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1677         goto end;
1678
1679     if (servername != NULL) {
1680         tlsextcbp.biodebug = bio_err;
1681         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1682         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1683     }
1684 # ifndef OPENSSL_NO_SRP
1685     if (srp_arg.srplogin) {
1686         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1687             BIO_printf(bio_err, "Unable to set SRP username\n");
1688             goto end;
1689         }
1690         srp_arg.msg = c_msg;
1691         srp_arg.debug = c_debug;
1692         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1693         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1694         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1695         if (c_msg || c_debug || srp_arg.amp == 0)
1696             SSL_CTX_set_srp_verify_param_callback(ctx,
1697                                                   ssl_srp_verify_param_cb);
1698     }
1699 # endif
1700
1701     if (dane_tlsa_domain != NULL) {
1702         if (SSL_CTX_dane_enable(ctx) <= 0) {
1703             BIO_printf(bio_err,
1704                        "%s: Error enabling DANE TLSA authentication.\n",
1705                        prog);
1706             ERR_print_errors(bio_err);
1707             goto end;
1708         }
1709     }
1710
1711     /*
1712      * In TLSv1.3 NewSessionTicket messages arrive after the handshake and can
1713      * come at any time. Therefore we use a callback to write out the session
1714      * when we know about it. This approach works for < TLSv1.3 as well.
1715      */
1716     if (sess_out) {
1717         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT
1718                                             | SSL_SESS_CACHE_NO_INTERNAL_STORE);
1719         SSL_CTX_sess_set_new_cb(ctx, new_session_cb);
1720     }
1721
1722     if (set_keylog_file(ctx, keylog_file))
1723         goto end;
1724
1725     con = SSL_new(ctx);
1726     if (sess_in) {
1727         SSL_SESSION *sess;
1728         BIO *stmp = BIO_new_file(sess_in, "r");
1729         if (!stmp) {
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         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1735         BIO_free(stmp);
1736         if (!sess) {
1737             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1738             ERR_print_errors(bio_err);
1739             goto end;
1740         }
1741         if (!SSL_set_session(con, sess)) {
1742             BIO_printf(bio_err, "Can't set session\n");
1743             ERR_print_errors(bio_err);
1744             goto end;
1745         }
1746         SSL_SESSION_free(sess);
1747     }
1748
1749     if (fallback_scsv)
1750         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1751
1752     if (servername != NULL) {
1753         if (!SSL_set_tlsext_host_name(con, servername)) {
1754             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1755             ERR_print_errors(bio_err);
1756             goto end;
1757         }
1758     }
1759
1760     if (dane_tlsa_domain != NULL) {
1761         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
1762             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
1763                        "authentication.\n", prog);
1764             ERR_print_errors(bio_err);
1765             goto end;
1766         }
1767         if (dane_tlsa_rrset == NULL) {
1768             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
1769                        "least one -dane_tlsa_rrdata option.\n", prog);
1770             goto end;
1771         }
1772         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
1773             BIO_printf(bio_err, "%s: Failed to import any TLSA "
1774                        "records.\n", prog);
1775             goto end;
1776         }
1777         if (dane_ee_no_name)
1778             SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
1779     } else if (dane_tlsa_rrset != NULL) {
1780         BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
1781                    "-dane_tlsa_domain option.\n", prog);
1782         goto end;
1783     }
1784
1785  re_start:
1786     if (init_client(&s, host, port, socket_family, socket_type) == 0) {
1787         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1788         BIO_closesocket(s);
1789         goto end;
1790     }
1791     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1792
1793     if (c_nbio) {
1794         if (!BIO_socket_nbio(s, 1)) {
1795             ERR_print_errors(bio_err);
1796             goto end;
1797         }
1798         BIO_printf(bio_c_out, "Turned on non blocking io\n");
1799     }
1800 #ifndef OPENSSL_NO_DTLS
1801     if (socket_type == SOCK_DGRAM) {
1802         union BIO_sock_info_u peer_info;
1803
1804         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1805         if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
1806             BIO_printf(bio_err, "memory allocation failure\n");
1807             BIO_closesocket(s);
1808             goto end;
1809         }
1810         if (!BIO_sock_info(s, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
1811             BIO_printf(bio_err, "getsockname:errno=%d\n",
1812                        get_last_socket_error());
1813             BIO_ADDR_free(peer_info.addr);
1814             BIO_closesocket(s);
1815             goto end;
1816         }
1817
1818         (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
1819         BIO_ADDR_free(peer_info.addr);
1820         peer_info.addr = NULL;
1821
1822         if (enable_timeouts) {
1823             timeout.tv_sec = 0;
1824             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1825             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1826
1827             timeout.tv_sec = 0;
1828             timeout.tv_usec = DGRAM_SND_TIMEOUT;
1829             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
1830         }
1831
1832         if (socket_mtu) {
1833             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
1834                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
1835                            DTLS_get_link_min_mtu(con));
1836                 BIO_free(sbio);
1837                 goto shut;
1838             }
1839             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
1840             if (!DTLS_set_link_mtu(con, socket_mtu)) {
1841                 BIO_printf(bio_err, "Failed to set MTU\n");
1842                 BIO_free(sbio);
1843                 goto shut;
1844             }
1845         } else
1846             /* want to do MTU discovery */
1847             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
1848     } else
1849 #endif /* OPENSSL_NO_DTLS */
1850         sbio = BIO_new_socket(s, BIO_NOCLOSE);
1851
1852     if (nbio_test) {
1853         BIO *test;
1854
1855         test = BIO_new(BIO_f_nbio_test());
1856         sbio = BIO_push(test, sbio);
1857     }
1858
1859     if (c_debug) {
1860         BIO_set_callback(sbio, bio_dump_callback);
1861         BIO_set_callback_arg(sbio, (char *)bio_c_out);
1862     }
1863     if (c_msg) {
1864 #ifndef OPENSSL_NO_SSL_TRACE
1865         if (c_msg == 2)
1866             SSL_set_msg_callback(con, SSL_trace);
1867         else
1868 #endif
1869             SSL_set_msg_callback(con, msg_cb);
1870         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
1871     }
1872
1873     if (c_tlsextdebug) {
1874         SSL_set_tlsext_debug_callback(con, tlsext_cb);
1875         SSL_set_tlsext_debug_arg(con, bio_c_out);
1876     }
1877 #ifndef OPENSSL_NO_OCSP
1878     if (c_status_req) {
1879         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
1880         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
1881         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
1882     }
1883 #endif
1884
1885     SSL_set_bio(con, sbio, sbio);
1886     SSL_set_connect_state(con);
1887
1888     /* ok, lets connect */
1889     if (fileno_stdin() > SSL_get_fd(con))
1890         width = fileno_stdin() + 1;
1891     else
1892         width = SSL_get_fd(con) + 1;
1893
1894     read_tty = 1;
1895     write_tty = 0;
1896     tty_on = 0;
1897     read_ssl = 1;
1898     write_ssl = 1;
1899
1900     cbuf_len = 0;
1901     cbuf_off = 0;
1902     sbuf_len = 0;
1903     sbuf_off = 0;
1904
1905     switch ((PROTOCOL_CHOICE) starttls_proto) {
1906     case PROTO_OFF:
1907         break;
1908     case PROTO_LMTP:
1909     case PROTO_SMTP:
1910         {
1911             /*
1912              * This is an ugly hack that does a lot of assumptions. We do
1913              * have to handle multi-line responses which may come in a single
1914              * packet or not. We therefore have to use BIO_gets() which does
1915              * need a buffering BIO. So during the initial chitchat we do
1916              * push a buffering BIO into the chain that is removed again
1917              * later on to not disturb the rest of the s_client operation.
1918              */
1919             int foundit = 0;
1920             BIO *fbio = BIO_new(BIO_f_buffer());
1921
1922             BIO_push(fbio, sbio);
1923             /* Wait for multi-line response to end from LMTP or SMTP */
1924             do {
1925                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1926             } while (mbuf_len > 3 && mbuf[3] == '-');
1927             if (starttls_proto == (int)PROTO_LMTP)
1928                 BIO_printf(fbio, "LHLO %s\r\n", ehlo);
1929             else
1930                 BIO_printf(fbio, "EHLO %s\r\n", ehlo);
1931             (void)BIO_flush(fbio);
1932             /*
1933              * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
1934              * response.
1935              */
1936             do {
1937                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1938                 if (strstr(mbuf, "STARTTLS"))
1939                     foundit = 1;
1940             } while (mbuf_len > 3 && mbuf[3] == '-');
1941             (void)BIO_flush(fbio);
1942             BIO_pop(fbio);
1943             BIO_free(fbio);
1944             if (!foundit)
1945                 BIO_printf(bio_err,
1946                            "Didn't find STARTTLS in server response,"
1947                            " trying anyway...\n");
1948             BIO_printf(sbio, "STARTTLS\r\n");
1949             BIO_read(sbio, sbuf, BUFSIZZ);
1950         }
1951         break;
1952     case PROTO_POP3:
1953         {
1954             BIO_read(sbio, mbuf, BUFSIZZ);
1955             BIO_printf(sbio, "STLS\r\n");
1956             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
1957             if (mbuf_len < 0) {
1958                 BIO_printf(bio_err, "BIO_read failed\n");
1959                 goto end;
1960             }
1961         }
1962         break;
1963     case PROTO_IMAP:
1964         {
1965             int foundit = 0;
1966             BIO *fbio = BIO_new(BIO_f_buffer());
1967
1968             BIO_push(fbio, sbio);
1969             BIO_gets(fbio, mbuf, BUFSIZZ);
1970             /* STARTTLS command requires CAPABILITY... */
1971             BIO_printf(fbio, ". CAPABILITY\r\n");
1972             (void)BIO_flush(fbio);
1973             /* wait for multi-line CAPABILITY response */
1974             do {
1975                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1976                 if (strstr(mbuf, "STARTTLS"))
1977                     foundit = 1;
1978             }
1979             while (mbuf_len > 3 && mbuf[0] != '.');
1980             (void)BIO_flush(fbio);
1981             BIO_pop(fbio);
1982             BIO_free(fbio);
1983             if (!foundit)
1984                 BIO_printf(bio_err,
1985                            "Didn't find STARTTLS in server response,"
1986                            " trying anyway...\n");
1987             BIO_printf(sbio, ". STARTTLS\r\n");
1988             BIO_read(sbio, sbuf, BUFSIZZ);
1989         }
1990         break;
1991     case PROTO_FTP:
1992         {
1993             BIO *fbio = BIO_new(BIO_f_buffer());
1994
1995             BIO_push(fbio, sbio);
1996             /* wait for multi-line response to end from FTP */
1997             do {
1998                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1999             }
2000             while (mbuf_len > 3 && mbuf[3] == '-');
2001             (void)BIO_flush(fbio);
2002             BIO_pop(fbio);
2003             BIO_free(fbio);
2004             BIO_printf(sbio, "AUTH TLS\r\n");
2005             BIO_read(sbio, sbuf, BUFSIZZ);
2006         }
2007         break;
2008     case PROTO_XMPP:
2009     case PROTO_XMPP_SERVER:
2010         {
2011             int seen = 0;
2012             BIO_printf(sbio, "<stream:stream "
2013                        "xmlns:stream='http://etherx.jabber.org/streams' "
2014                        "xmlns='jabber:%s' to='%s' version='1.0'>",
2015                        starttls_proto == PROTO_XMPP ? "client" : "server",
2016                        xmpphost ? xmpphost : host);
2017             seen = BIO_read(sbio, mbuf, BUFSIZZ);
2018             if (seen < 0) {
2019                 BIO_printf(bio_err, "BIO_read failed\n");
2020                 goto end;
2021             }
2022             mbuf[seen] = '\0';
2023             while (!strstr
2024                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2025                    && !strstr(mbuf,
2026                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2027             {
2028                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2029
2030                 if (seen <= 0)
2031                     goto shut;
2032
2033                 mbuf[seen] = '\0';
2034             }
2035             BIO_printf(sbio,
2036                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2037             seen = BIO_read(sbio, sbuf, BUFSIZZ);
2038             if (seen < 0) {
2039                 BIO_printf(bio_err, "BIO_read failed\n");
2040                 goto shut;
2041             }
2042             sbuf[seen] = '\0';
2043             if (!strstr(sbuf, "<proceed"))
2044                 goto shut;
2045             mbuf[0] = '\0';
2046         }
2047         break;
2048     case PROTO_TELNET:
2049         {
2050             static const unsigned char tls_do[] = {
2051                 /* IAC    DO   START_TLS */
2052                    255,   253, 46
2053             };
2054             static const unsigned char tls_will[] = {
2055                 /* IAC  WILL START_TLS */
2056                    255, 251, 46
2057             };
2058             static const unsigned char tls_follows[] = {
2059                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
2060                    255, 250, 46,       1,      255, 240
2061             };
2062             int bytes;
2063
2064             /* Telnet server should demand we issue START_TLS */
2065             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2066             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2067                 goto shut;
2068             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2069             BIO_write(sbio, tls_will, 3);
2070             BIO_write(sbio, tls_follows, 6);
2071             (void)BIO_flush(sbio);
2072             /* Telnet server also sent the FOLLOWS sub-command */
2073             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2074             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2075                 goto shut;
2076         }
2077         break;
2078     case PROTO_CONNECT:
2079         {
2080             enum {
2081                 error_proto,     /* Wrong protocol, not even HTTP */
2082                 error_connect,   /* CONNECT failed */
2083                 success
2084             } foundit = error_connect;
2085             BIO *fbio = BIO_new(BIO_f_buffer());
2086
2087             BIO_push(fbio, sbio);
2088             BIO_printf(fbio, "CONNECT %s HTTP/1.0\r\n\r\n", connectstr);
2089             (void)BIO_flush(fbio);
2090             /*
2091              * The first line is the HTTP response.  According to RFC 7230,
2092              * it's formated exactly like this:
2093              *
2094              * HTTP/d.d ddd Reason text\r\n
2095              */
2096             mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2097             if (mbuf[8] != ' ') {
2098                 BIO_printf(bio_err,
2099                            "%s: HTTP CONNECT failed, incorrect response "
2100                            "from proxy\n", prog);
2101                 foundit = error_proto;
2102             } else if (mbuf[9] != '2') {
2103                 BIO_printf(bio_err, "%s: HTTP CONNECT failed: %s ", prog,
2104                            &mbuf[9]);
2105             } else {
2106                 foundit = success;
2107             }
2108             if (foundit != error_proto) {
2109                 /* Read past all following headers */
2110                 do {
2111                     mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2112                 } while (mbuf_len > 2);
2113             }
2114             (void)BIO_flush(fbio);
2115             BIO_pop(fbio);
2116             BIO_free(fbio);
2117             if (foundit != success) {
2118                 goto shut;
2119             }
2120         }
2121         break;
2122     case PROTO_IRC:
2123         {
2124             int numeric;
2125             BIO *fbio = BIO_new(BIO_f_buffer());
2126
2127             BIO_push(fbio, sbio);
2128             BIO_printf(fbio, "STARTTLS\r\n");
2129             (void)BIO_flush(fbio);
2130             width = SSL_get_fd(con) + 1;
2131
2132             do {
2133                 numeric = 0;
2134
2135                 FD_ZERO(&readfds);
2136                 openssl_fdset(SSL_get_fd(con), &readfds);
2137                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2138                 timeout.tv_usec = 0;
2139                 /*
2140                  * If the IRCd doesn't respond within
2141                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2142                  * it doesn't support STARTTLS. Many IRCds
2143                  * will not give _any_ sort of response to a
2144                  * STARTTLS command when it's not supported.
2145                  */
2146                 if (!BIO_get_buffer_num_lines(fbio)
2147                     && !BIO_pending(fbio)
2148                     && !BIO_pending(sbio)
2149                     && select(width, (void *)&readfds, NULL, NULL,
2150                               &timeout) < 1) {
2151                     BIO_printf(bio_err,
2152                                "Timeout waiting for response (%d seconds).\n",
2153                                S_CLIENT_IRC_READ_TIMEOUT);
2154                     break;
2155                 }
2156
2157                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2158                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2159                     break;
2160                 /* :example.net 451 STARTTLS :You have not registered */
2161                 /* :example.net 421 STARTTLS :Unknown command */
2162                 if ((numeric == 451 || numeric == 421)
2163                     && strstr(mbuf, "STARTTLS") != NULL) {
2164                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2165                     break;
2166                 }
2167                 if (numeric == 691) {
2168                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2169                     ERR_print_errors(bio_err);
2170                     break;
2171                 }
2172             } while (numeric != 670);
2173
2174             (void)BIO_flush(fbio);
2175             BIO_pop(fbio);
2176             BIO_free(fbio);
2177             if (numeric != 670) {
2178                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2179                 ret = 1;
2180                 goto shut;
2181             }
2182         }
2183         break;
2184     case PROTO_POSTGRES:
2185         {
2186             static const unsigned char ssl_request[] = {
2187                 /* Length        SSLRequest */
2188                    0, 0, 0, 8,   4, 210, 22, 47
2189             };
2190             int bytes;
2191
2192             /* Send SSLRequest packet */
2193             BIO_write(sbio, ssl_request, 8);
2194             (void)BIO_flush(sbio);
2195
2196             /* Reply will be a single S if SSL is enabled */
2197             bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2198             if (bytes != 1 || sbuf[0] != 'S')
2199                 goto shut;
2200         }
2201         break;
2202     case PROTO_NNTP:
2203         {
2204             int foundit = 0;
2205             BIO *fbio = BIO_new(BIO_f_buffer());
2206
2207             BIO_push(fbio, sbio);
2208             BIO_gets(fbio, mbuf, BUFSIZZ);
2209             /* STARTTLS command requires CAPABILITIES... */
2210             BIO_printf(fbio, "CAPABILITIES\r\n");
2211             (void)BIO_flush(fbio);
2212             /* wait for multi-line CAPABILITIES response */
2213             do {
2214                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2215                 if (strstr(mbuf, "STARTTLS"))
2216                     foundit = 1;
2217             } while (mbuf_len > 1 && mbuf[0] != '.');
2218             (void)BIO_flush(fbio);
2219             BIO_pop(fbio);
2220             BIO_free(fbio);
2221             if (!foundit)
2222                 BIO_printf(bio_err,
2223                            "Didn't find STARTTLS in server response,"
2224                            " trying anyway...\n");
2225             BIO_printf(sbio, "STARTTLS\r\n");
2226             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2227             if (mbuf_len < 0) {
2228                 BIO_printf(bio_err, "BIO_read failed\n");
2229                 goto end;
2230             }
2231             mbuf[mbuf_len] = '\0';
2232             if (strstr(mbuf, "382") == NULL) {
2233                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2234                 goto shut;
2235             }
2236         }
2237         break;
2238     case PROTO_SIEVE:
2239         {
2240             int foundit = 0;
2241             BIO *fbio = BIO_new(BIO_f_buffer());
2242
2243             BIO_push(fbio, sbio);
2244             /* wait for multi-line response to end from Sieve */
2245             do {
2246                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2247                 /*
2248                  * According to RFC 5804 Â§ 1.7, capability
2249                  * is case-insensitive, make it uppercase
2250                  */
2251                 if (mbuf_len > 1 && mbuf[0] == '"') {
2252                     make_uppercase(mbuf);
2253                     if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0)
2254                         foundit = 1;
2255                 }
2256             } while (mbuf_len > 1 && mbuf[0] == '"');
2257             (void)BIO_flush(fbio);
2258             BIO_pop(fbio);
2259             BIO_free(fbio);
2260             if (!foundit)
2261                 BIO_printf(bio_err,
2262                            "Didn't find STARTTLS in server response,"
2263                            " trying anyway...\n");
2264             BIO_printf(sbio, "STARTTLS\r\n");
2265             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2266             if (mbuf_len < 0) {
2267                 BIO_printf(bio_err, "BIO_read failed\n");
2268                 goto end;
2269             }
2270             mbuf[mbuf_len] = '\0';
2271             if (mbuf_len < 2) {
2272                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2273                 goto shut;
2274             }
2275             /*
2276              * According to RFC 5804 Â§ 2.2, response codes are case-
2277              * insensitive, make it uppercase but preserve the response.
2278              */
2279             strncpy(sbuf, mbuf, 2);
2280             make_uppercase(sbuf);
2281             if (strncmp(sbuf, "OK", 2) != 0) {
2282                 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2283                 goto shut;
2284             }
2285         }
2286         break;
2287     }
2288
2289     for (;;) {
2290         FD_ZERO(&readfds);
2291         FD_ZERO(&writefds);
2292
2293         if ((SSL_version(con) == DTLS1_VERSION) &&
2294             DTLSv1_get_timeout(con, &timeout))
2295             timeoutp = &timeout;
2296         else
2297             timeoutp = NULL;
2298
2299         if (SSL_in_init(con) && !SSL_total_renegotiations(con)
2300                 && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) {
2301             in_init = 1;
2302             tty_on = 0;
2303         } else {
2304             tty_on = 1;
2305             if (in_init) {
2306                 in_init = 0;
2307
2308                 if (servername != NULL && !SSL_session_reused(con)) {
2309                     BIO_printf(bio_c_out,
2310                                "Server did %sacknowledge servername extension.\n",
2311                                tlsextcbp.ack ? "" : "not ");
2312                 }
2313
2314                 if (c_brief) {
2315                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2316                     print_ssl_summary(con);
2317                 }
2318
2319                 print_stuff(bio_c_out, con, full_log);
2320                 if (full_log > 0)
2321                     full_log--;
2322
2323                 if (starttls_proto) {
2324                     BIO_write(bio_err, mbuf, mbuf_len);
2325                     /* We don't need to know any more */
2326                     if (!reconnect)
2327                         starttls_proto = PROTO_OFF;
2328                 }
2329
2330                 if (reconnect) {
2331                     reconnect--;
2332                     BIO_printf(bio_c_out,
2333                                "drop connection and then reconnect\n");
2334                     do_ssl_shutdown(con);
2335                     SSL_set_connect_state(con);
2336                     BIO_closesocket(SSL_get_fd(con));
2337                     goto re_start;
2338                 }
2339             }
2340         }
2341
2342         ssl_pending = read_ssl && SSL_has_pending(con);
2343
2344         if (!ssl_pending) {
2345 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2346             if (tty_on) {
2347                 /*
2348                  * Note that select() returns when read _would not block_,
2349                  * and EOF satisfies that.  To avoid a CPU-hogging loop,
2350                  * set the flag so we exit.
2351                  */
2352                 if (read_tty && !at_eof)
2353                     openssl_fdset(fileno_stdin(), &readfds);
2354 #if !defined(OPENSSL_SYS_VMS)
2355                 if (write_tty)
2356                     openssl_fdset(fileno_stdout(), &writefds);
2357 #endif
2358             }
2359             if (read_ssl)
2360                 openssl_fdset(SSL_get_fd(con), &readfds);
2361             if (write_ssl)
2362                 openssl_fdset(SSL_get_fd(con), &writefds);
2363 #else
2364             if (!tty_on || !write_tty) {
2365                 if (read_ssl)
2366                     openssl_fdset(SSL_get_fd(con), &readfds);
2367                 if (write_ssl)
2368                     openssl_fdset(SSL_get_fd(con), &writefds);
2369             }
2370 #endif
2371
2372             /*
2373              * Note: under VMS with SOCKETSHR the second parameter is
2374              * currently of type (int *) whereas under other systems it is
2375              * (void *) if you don't have a cast it will choke the compiler:
2376              * if you do have a cast then you can either go for (int *) or
2377              * (void *).
2378              */
2379 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2380             /*
2381              * Under Windows/DOS we make the assumption that we can always
2382              * write to the tty: therefore if we need to write to the tty we
2383              * just fall through. Otherwise we timeout the select every
2384              * second and see if there are any keypresses. Note: this is a
2385              * hack, in a proper Windows application we wouldn't do this.
2386              */
2387             i = 0;
2388             if (!write_tty) {
2389                 if (read_tty) {
2390                     tv.tv_sec = 1;
2391                     tv.tv_usec = 0;
2392                     i = select(width, (void *)&readfds, (void *)&writefds,
2393                                NULL, &tv);
2394                     if (!i && (!has_stdin_waiting() || !read_tty))
2395                         continue;
2396                 } else
2397                     i = select(width, (void *)&readfds, (void *)&writefds,
2398                                NULL, timeoutp);
2399             }
2400 #else
2401             i = select(width, (void *)&readfds, (void *)&writefds,
2402                        NULL, timeoutp);
2403 #endif
2404             if (i < 0) {
2405                 BIO_printf(bio_err, "bad select %d\n",
2406                            get_last_socket_error());
2407                 goto shut;
2408                 /* goto end; */
2409             }
2410         }
2411
2412         if ((SSL_version(con) == DTLS1_VERSION)
2413             && DTLSv1_handle_timeout(con) > 0) {
2414             BIO_printf(bio_err, "TIMEOUT occurred\n");
2415         }
2416
2417         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2418             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2419             switch (SSL_get_error(con, k)) {
2420             case SSL_ERROR_NONE:
2421                 cbuf_off += k;
2422                 cbuf_len -= k;
2423                 if (k <= 0)
2424                     goto end;
2425                 /* we have done a  write(con,NULL,0); */
2426                 if (cbuf_len <= 0) {
2427                     read_tty = 1;
2428                     write_ssl = 0;
2429                 } else {        /* if (cbuf_len > 0) */
2430
2431                     read_tty = 0;
2432                     write_ssl = 1;
2433                 }
2434                 break;
2435             case SSL_ERROR_WANT_WRITE:
2436                 BIO_printf(bio_c_out, "write W BLOCK\n");
2437                 write_ssl = 1;
2438                 read_tty = 0;
2439                 break;
2440             case SSL_ERROR_WANT_ASYNC:
2441                 BIO_printf(bio_c_out, "write A BLOCK\n");
2442                 wait_for_async(con);
2443                 write_ssl = 1;
2444                 read_tty = 0;
2445                 break;
2446             case SSL_ERROR_WANT_READ:
2447                 BIO_printf(bio_c_out, "write R BLOCK\n");
2448                 write_tty = 0;
2449                 read_ssl = 1;
2450                 write_ssl = 0;
2451                 break;
2452             case SSL_ERROR_WANT_X509_LOOKUP:
2453                 BIO_printf(bio_c_out, "write X BLOCK\n");
2454                 break;
2455             case SSL_ERROR_ZERO_RETURN:
2456                 if (cbuf_len != 0) {
2457                     BIO_printf(bio_c_out, "shutdown\n");
2458                     ret = 0;
2459                     goto shut;
2460                 } else {
2461                     read_tty = 1;
2462                     write_ssl = 0;
2463                     break;
2464                 }
2465
2466             case SSL_ERROR_SYSCALL:
2467                 if ((k != 0) || (cbuf_len != 0)) {
2468                     BIO_printf(bio_err, "write:errno=%d\n",
2469                                get_last_socket_error());
2470                     goto shut;
2471                 } else {
2472                     read_tty = 1;
2473                     write_ssl = 0;
2474                 }
2475                 break;
2476             case SSL_ERROR_WANT_ASYNC_JOB:
2477                 /* This shouldn't ever happen in s_client - treat as an error */
2478             case SSL_ERROR_SSL:
2479                 ERR_print_errors(bio_err);
2480                 goto shut;
2481             }
2482         }
2483 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
2484         /* Assume Windows/DOS/BeOS can always write */
2485         else if (!ssl_pending && write_tty)
2486 #else
2487         else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2488 #endif
2489         {
2490 #ifdef CHARSET_EBCDIC
2491             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2492 #endif
2493             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2494
2495             if (i <= 0) {
2496                 BIO_printf(bio_c_out, "DONE\n");
2497                 ret = 0;
2498                 goto shut;
2499                 /* goto end; */
2500             }
2501
2502             sbuf_len -= i;
2503             sbuf_off += i;
2504             if (sbuf_len <= 0) {
2505                 read_ssl = 1;
2506                 write_tty = 0;
2507             }
2508         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2509 #ifdef RENEG
2510             {
2511                 static int iiii;
2512                 if (++iiii == 52) {
2513                     SSL_renegotiate(con);
2514                     iiii = 0;
2515                 }
2516             }
2517 #endif
2518             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
2519
2520             switch (SSL_get_error(con, k)) {
2521             case SSL_ERROR_NONE:
2522                 if (k <= 0)
2523                     goto end;
2524                 sbuf_off = 0;
2525                 sbuf_len = k;
2526
2527                 read_ssl = 0;
2528                 write_tty = 1;
2529                 break;
2530             case SSL_ERROR_WANT_ASYNC:
2531                 BIO_printf(bio_c_out, "read A BLOCK\n");
2532                 wait_for_async(con);
2533                 write_tty = 0;
2534                 read_ssl = 1;
2535                 if ((read_tty == 0) && (write_ssl == 0))
2536                     write_ssl = 1;
2537                 break;
2538             case SSL_ERROR_WANT_WRITE:
2539                 BIO_printf(bio_c_out, "read W BLOCK\n");
2540                 write_ssl = 1;
2541                 read_tty = 0;
2542                 break;
2543             case SSL_ERROR_WANT_READ:
2544                 BIO_printf(bio_c_out, "read R BLOCK\n");
2545                 write_tty = 0;
2546                 read_ssl = 1;
2547                 if ((read_tty == 0) && (write_ssl == 0))
2548                     write_ssl = 1;
2549                 break;
2550             case SSL_ERROR_WANT_X509_LOOKUP:
2551                 BIO_printf(bio_c_out, "read X BLOCK\n");
2552                 break;
2553             case SSL_ERROR_SYSCALL:
2554                 ret = get_last_socket_error();
2555                 if (c_brief)
2556                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
2557                 else
2558                     BIO_printf(bio_err, "read:errno=%d\n", ret);
2559                 goto shut;
2560             case SSL_ERROR_ZERO_RETURN:
2561                 BIO_printf(bio_c_out, "closed\n");
2562                 ret = 0;
2563                 goto shut;
2564             case SSL_ERROR_WANT_ASYNC_JOB:
2565                 /* This shouldn't ever happen in s_client. Treat as an error */
2566             case SSL_ERROR_SSL:
2567                 ERR_print_errors(bio_err);
2568                 goto shut;
2569                 /* break; */
2570             }
2571         }
2572 /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
2573 #if defined(OPENSSL_SYS_MSDOS)
2574         else if (has_stdin_waiting())
2575 #else
2576         else if (FD_ISSET(fileno_stdin(), &readfds))
2577 #endif
2578         {
2579             if (crlf) {
2580                 int j, lf_num;
2581
2582                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
2583                 lf_num = 0;
2584                 /* both loops are skipped when i <= 0 */
2585                 for (j = 0; j < i; j++)
2586                     if (cbuf[j] == '\n')
2587                         lf_num++;
2588                 for (j = i - 1; j >= 0; j--) {
2589                     cbuf[j + lf_num] = cbuf[j];
2590                     if (cbuf[j] == '\n') {
2591                         lf_num--;
2592                         i++;
2593                         cbuf[j + lf_num] = '\r';
2594                     }
2595                 }
2596                 assert(lf_num == 0);
2597             } else
2598                 i = raw_read_stdin(cbuf, BUFSIZZ);
2599 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2600             if (i == 0)
2601                 at_eof = 1;
2602 #endif
2603
2604             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
2605                 BIO_printf(bio_err, "DONE\n");
2606                 ret = 0;
2607                 goto shut;
2608             }
2609
2610             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
2611                 BIO_printf(bio_err, "RENEGOTIATING\n");
2612                 SSL_renegotiate(con);
2613                 cbuf_len = 0;
2614             }
2615
2616             if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
2617                     && cmdletters) {
2618                 BIO_printf(bio_err, "KEYUPDATE\n");
2619                 SSL_key_update(con,
2620                                cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED
2621                                               : SSL_KEY_UPDATE_NOT_REQUESTED);
2622                 cbuf_len = 0;
2623             }
2624 #ifndef OPENSSL_NO_HEARTBEATS
2625             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
2626                 BIO_printf(bio_err, "HEARTBEATING\n");
2627                 SSL_heartbeat(con);
2628                 cbuf_len = 0;
2629             }
2630 #endif
2631             else {
2632                 cbuf_len = i;
2633                 cbuf_off = 0;
2634 #ifdef CHARSET_EBCDIC
2635                 ebcdic2ascii(cbuf, cbuf, i);
2636 #endif
2637             }
2638
2639             write_ssl = 1;
2640             read_tty = 0;
2641         }
2642     }
2643
2644     ret = 0;
2645  shut:
2646     if (in_init)
2647         print_stuff(bio_c_out, con, full_log);
2648     do_ssl_shutdown(con);
2649 #if defined(OPENSSL_SYS_WINDOWS)
2650     /*
2651      * Give the socket time to send its last data before we close it.
2652      * No amount of setting SO_LINGER etc on the socket seems to persuade
2653      * Windows to send the data before closing the socket...but sleeping
2654      * for a short time seems to do it (units in ms)
2655      * TODO: Find a better way to do this
2656      */
2657     Sleep(50);
2658 #endif
2659     BIO_closesocket(SSL_get_fd(con));
2660  end:
2661     if (con != NULL) {
2662         if (prexit != 0)
2663             print_stuff(bio_c_out, con, 1);
2664         SSL_free(con);
2665     }
2666 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2667     OPENSSL_free(next_proto.data);
2668 #endif
2669     SSL_CTX_free(ctx);
2670     set_keylog_file(NULL, NULL);
2671     X509_free(cert);
2672     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2673     EVP_PKEY_free(key);
2674     sk_X509_pop_free(chain, X509_free);
2675     OPENSSL_free(pass);
2676 #ifndef OPENSSL_NO_SRP
2677     OPENSSL_free(srp_arg.srppassin);
2678 #endif
2679     OPENSSL_free(connectstr);
2680     OPENSSL_free(host);
2681     OPENSSL_free(port);
2682     X509_VERIFY_PARAM_free(vpm);
2683     ssl_excert_free(exc);
2684     sk_OPENSSL_STRING_free(ssl_args);
2685     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
2686     SSL_CONF_CTX_free(cctx);
2687     OPENSSL_clear_free(cbuf, BUFSIZZ);
2688     OPENSSL_clear_free(sbuf, BUFSIZZ);
2689     OPENSSL_clear_free(mbuf, BUFSIZZ);
2690     release_engine(e);
2691     BIO_free(bio_c_out);
2692     bio_c_out = NULL;
2693     BIO_free(bio_c_msg);
2694     bio_c_msg = NULL;
2695     return (ret);
2696 }
2697
2698 static void print_stuff(BIO *bio, SSL *s, int full)
2699 {
2700     X509 *peer = NULL;
2701     char buf[BUFSIZ];
2702     STACK_OF(X509) *sk;
2703     STACK_OF(X509_NAME) *sk2;
2704     const SSL_CIPHER *c;
2705     X509_NAME *xn;
2706     int i;
2707 #ifndef OPENSSL_NO_COMP
2708     const COMP_METHOD *comp, *expansion;
2709 #endif
2710     unsigned char *exportedkeymat;
2711 #ifndef OPENSSL_NO_CT
2712     const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
2713 #endif
2714
2715     if (full) {
2716         int got_a_chain = 0;
2717
2718         sk = SSL_get_peer_cert_chain(s);
2719         if (sk != NULL) {
2720             got_a_chain = 1;
2721
2722             BIO_printf(bio, "---\nCertificate chain\n");
2723             for (i = 0; i < sk_X509_num(sk); i++) {
2724                 X509_NAME_oneline(X509_get_subject_name(sk_X509_value(sk, i)),
2725                                   buf, sizeof buf);
2726                 BIO_printf(bio, "%2d s:%s\n", i, buf);
2727                 X509_NAME_oneline(X509_get_issuer_name(sk_X509_value(sk, i)),
2728                                   buf, sizeof buf);
2729                 BIO_printf(bio, "   i:%s\n", buf);
2730                 if (c_showcerts)
2731                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
2732             }
2733         }
2734
2735         BIO_printf(bio, "---\n");
2736         peer = SSL_get_peer_certificate(s);
2737         if (peer != NULL) {
2738             BIO_printf(bio, "Server certificate\n");
2739
2740             /* Redundant if we showed the whole chain */
2741             if (!(c_showcerts && got_a_chain))
2742                 PEM_write_bio_X509(bio, peer);
2743             X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2744             BIO_printf(bio, "subject=%s\n", buf);
2745             X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2746             BIO_printf(bio, "issuer=%s\n", buf);
2747         } else
2748             BIO_printf(bio, "no peer certificate available\n");
2749
2750         sk2 = SSL_get_client_CA_list(s);
2751         if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0)) {
2752             BIO_printf(bio, "---\nAcceptable client certificate CA names\n");
2753             for (i = 0; i < sk_X509_NAME_num(sk2); i++) {
2754                 xn = sk_X509_NAME_value(sk2, i);
2755                 X509_NAME_oneline(xn, buf, sizeof(buf));
2756                 BIO_write(bio, buf, strlen(buf));
2757                 BIO_write(bio, "\n", 1);
2758             }
2759         } else {
2760             BIO_printf(bio, "---\nNo client certificate CA names sent\n");
2761         }
2762
2763         ssl_print_sigalgs(bio, s);
2764         ssl_print_tmp_key(bio, s);
2765
2766 #ifndef OPENSSL_NO_CT
2767         /*
2768          * When the SSL session is anonymous, or resumed via an abbreviated
2769          * handshake, no SCTs are provided as part of the handshake.  While in
2770          * a resumed session SCTs may be present in the session's certificate,
2771          * no callbacks are invoked to revalidate these, and in any case that
2772          * set of SCTs may be incomplete.  Thus it makes little sense to
2773          * attempt to display SCTs from a resumed session's certificate, and of
2774          * course none are associated with an anonymous peer.
2775          */
2776         if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
2777             const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
2778             int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
2779
2780             BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
2781             if (sct_count > 0) {
2782                 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
2783
2784                 BIO_printf(bio, "---\n");
2785                 for (i = 0; i < sct_count; ++i) {
2786                     SCT *sct = sk_SCT_value(scts, i);
2787
2788                     BIO_printf(bio, "SCT validation status: %s\n",
2789                                SCT_validation_status_string(sct));
2790                     SCT_print(sct, bio, 0, log_store);
2791                     if (i < sct_count - 1)
2792                         BIO_printf(bio, "\n---\n");
2793                 }
2794                 BIO_printf(bio, "\n");
2795             }
2796         }
2797 #endif
2798
2799         BIO_printf(bio,
2800                    "---\nSSL handshake has read %" PRIu64
2801                    " bytes and written %" PRIu64 " bytes\n",
2802                    BIO_number_read(SSL_get_rbio(s)),
2803                    BIO_number_written(SSL_get_wbio(s)));
2804     }
2805     print_verify_detail(s, bio);
2806     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
2807     c = SSL_get_current_cipher(s);
2808     BIO_printf(bio, "%s, Cipher is %s\n",
2809                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2810     if (peer != NULL) {
2811         EVP_PKEY *pktmp;
2812
2813         pktmp = X509_get0_pubkey(peer);
2814         BIO_printf(bio, "Server public key is %d bit\n",
2815                    EVP_PKEY_bits(pktmp));
2816     }
2817     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
2818                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
2819 #ifndef OPENSSL_NO_COMP
2820     comp = SSL_get_current_compression(s);
2821     expansion = SSL_get_current_expansion(s);
2822     BIO_printf(bio, "Compression: %s\n",
2823                comp ? SSL_COMP_get_name(comp) : "NONE");
2824     BIO_printf(bio, "Expansion: %s\n",
2825                expansion ? SSL_COMP_get_name(expansion) : "NONE");
2826 #endif
2827
2828 #ifdef SSL_DEBUG
2829     {
2830         /* Print out local port of connection: useful for debugging */
2831         int sock;
2832         union BIO_sock_info_u info;
2833
2834         sock = SSL_get_fd(s);
2835         if ((info.addr = BIO_ADDR_new()) != NULL
2836             && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
2837             BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
2838                        ntohs(BIO_ADDR_rawport(info.addr)));
2839         }
2840         BIO_ADDR_free(info.addr);
2841     }
2842 #endif
2843
2844 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2845     if (next_proto.status != -1) {
2846         const unsigned char *proto;
2847         unsigned int proto_len;
2848         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2849         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
2850         BIO_write(bio, proto, proto_len);
2851         BIO_write(bio, "\n", 1);
2852     }
2853 #endif
2854     {
2855         const unsigned char *proto;
2856         unsigned int proto_len;
2857         SSL_get0_alpn_selected(s, &proto, &proto_len);
2858         if (proto_len > 0) {
2859             BIO_printf(bio, "ALPN protocol: ");
2860             BIO_write(bio, proto, proto_len);
2861             BIO_write(bio, "\n", 1);
2862         } else
2863             BIO_printf(bio, "No ALPN negotiated\n");
2864     }
2865
2866 #ifndef OPENSSL_NO_SRTP
2867     {
2868         SRTP_PROTECTION_PROFILE *srtp_profile =
2869             SSL_get_selected_srtp_profile(s);
2870
2871         if (srtp_profile)
2872             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
2873                        srtp_profile->name);
2874     }
2875 #endif
2876
2877     SSL_SESSION_print(bio, SSL_get_session(s));
2878     if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
2879         BIO_printf(bio, "Keying material exporter:\n");
2880         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
2881         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
2882         exportedkeymat = app_malloc(keymatexportlen, "export key");
2883         if (!SSL_export_keying_material(s, exportedkeymat,
2884                                         keymatexportlen,
2885                                         keymatexportlabel,
2886                                         strlen(keymatexportlabel),
2887                                         NULL, 0, 0)) {
2888             BIO_printf(bio, "    Error\n");
2889         } else {
2890             BIO_printf(bio, "    Keying material: ");
2891             for (i = 0; i < keymatexportlen; i++)
2892                 BIO_printf(bio, "%02X", exportedkeymat[i]);
2893             BIO_printf(bio, "\n");
2894         }
2895         OPENSSL_free(exportedkeymat);
2896     }
2897     BIO_printf(bio, "---\n");
2898     X509_free(peer);
2899     /* flush, or debugging output gets mixed with http response */
2900     (void)BIO_flush(bio);
2901 }
2902
2903 # ifndef OPENSSL_NO_OCSP
2904 static int ocsp_resp_cb(SSL *s, void *arg)
2905 {
2906     const unsigned char *p;
2907     int len;
2908     OCSP_RESPONSE *rsp;
2909     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2910     BIO_puts(arg, "OCSP response: ");
2911     if (!p) {
2912         BIO_puts(arg, "no response sent\n");
2913         return 1;
2914     }
2915     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
2916     if (!rsp) {
2917         BIO_puts(arg, "response parse error\n");
2918         BIO_dump_indent(arg, (char *)p, len, 4);
2919         return 0;
2920     }
2921     BIO_puts(arg, "\n======================================\n");
2922     OCSP_RESPONSE_print(arg, rsp, 0);
2923     BIO_puts(arg, "======================================\n");
2924     OCSP_RESPONSE_free(rsp);
2925     return 1;
2926 }
2927 # endif
2928
2929 #endif                          /* OPENSSL_NO_SOCK */