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