Fix safestack issues in x509.h
[openssl.git] / apps / s_client.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright 2005 Nokia. All rights reserved.
4  *
5  * Licensed under the Apache License 2.0 (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 /* We need to use some engine deprecated APIs */
12 #define OPENSSL_SUPPRESS_DEPRECATED
13
14 #include "e_os.h"
15 #include <ctype.h>
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <errno.h>
20 #include <openssl/e_os2.h>
21
22 #ifndef OPENSSL_NO_SOCK
23
24 /*
25  * With IPv6, it looks like Digital has mixed up the proper order of
26  * recursive header file inclusion, resulting in the compiler complaining
27  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
28  * needed to have fileno() declared correctly...  So let's define u_int
29  */
30 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
31 # define __U_INT
32 typedef unsigned int u_int;
33 #endif
34
35 #include "apps.h"
36 #include "progs.h"
37 #include <openssl/x509.h>
38 #include <openssl/ssl.h>
39 #include <openssl/err.h>
40 #include <openssl/pem.h>
41 #include <openssl/rand.h>
42 #include <openssl/ocsp.h>
43 #include <openssl/bn.h>
44 #include <openssl/trace.h>
45 #include <openssl/async.h>
46 #ifndef OPENSSL_NO_SRP
47 # include <openssl/srp.h>
48 #endif
49 #ifndef OPENSSL_NO_CT
50 # include <openssl/ct.h>
51 #endif
52 #include "s_apps.h"
53 #include "timeouts.h"
54 #include "internal/sockets.h"
55
56 #if defined(__has_feature)
57 # if __has_feature(memory_sanitizer)
58 #  include <sanitizer/msan_interface.h>
59 # endif
60 #endif
61
62 DEFINE_STACK_OF(SCT)
63 DEFINE_STACK_OF_STRING()
64
65 #undef BUFSIZZ
66 #define BUFSIZZ 1024*8
67 #define S_CLIENT_IRC_READ_TIMEOUT 8
68
69 static char *prog;
70 static int c_debug = 0;
71 static int c_showcerts = 0;
72 static char *keymatexportlabel = NULL;
73 static int keymatexportlen = 20;
74 static BIO *bio_c_out = NULL;
75 static int c_quiet = 0;
76 static char *sess_out = NULL;
77 static SSL_SESSION *psksess = NULL;
78
79 static void print_stuff(BIO *berr, SSL *con, int full);
80 #ifndef OPENSSL_NO_OCSP
81 static int ocsp_resp_cb(SSL *s, void *arg);
82 #endif
83 static int ldap_ExtendedResponse_parse(const char *buf, long rem);
84 static int is_dNS_name(const char *host);
85
86 static int saved_errno;
87
88 static void save_errno(void)
89 {
90     saved_errno = errno;
91     errno = 0;
92 }
93
94 static int restore_errno(void)
95 {
96     int ret = errno;
97     errno = saved_errno;
98     return ret;
99 }
100
101 /* Default PSK identity and key */
102 static char *psk_identity = "Client_identity";
103
104 #ifndef OPENSSL_NO_PSK
105 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
106                                   unsigned int max_identity_len,
107                                   unsigned char *psk,
108                                   unsigned int max_psk_len)
109 {
110     int ret;
111     long key_len;
112     unsigned char *key;
113
114     if (c_debug)
115         BIO_printf(bio_c_out, "psk_client_cb\n");
116     if (!hint) {
117         /* no ServerKeyExchange message */
118         if (c_debug)
119             BIO_printf(bio_c_out,
120                        "NULL received PSK identity hint, continuing anyway\n");
121     } else if (c_debug) {
122         BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
123     }
124
125     /*
126      * lookup PSK identity and PSK key based on the given identity hint here
127      */
128     ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
129     if (ret < 0 || (unsigned int)ret > max_identity_len)
130         goto out_err;
131     if (c_debug)
132         BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
133                    ret);
134
135     /* convert the PSK key to binary */
136     key = OPENSSL_hexstr2buf(psk_key, &key_len);
137     if (key == NULL) {
138         BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
139                    psk_key);
140         return 0;
141     }
142     if (max_psk_len > INT_MAX || key_len > (long)max_psk_len) {
143         BIO_printf(bio_err,
144                    "psk buffer of callback is too small (%d) for key (%ld)\n",
145                    max_psk_len, key_len);
146         OPENSSL_free(key);
147         return 0;
148     }
149
150     memcpy(psk, key, key_len);
151     OPENSSL_free(key);
152
153     if (c_debug)
154         BIO_printf(bio_c_out, "created PSK len=%ld\n", key_len);
155
156     return key_len;
157  out_err:
158     if (c_debug)
159         BIO_printf(bio_err, "Error in PSK client callback\n");
160     return 0;
161 }
162 #endif
163
164 const unsigned char tls13_aes128gcmsha256_id[] = { 0x13, 0x01 };
165 const unsigned char tls13_aes256gcmsha384_id[] = { 0x13, 0x02 };
166
167 static int psk_use_session_cb(SSL *s, const EVP_MD *md,
168                               const unsigned char **id, size_t *idlen,
169                               SSL_SESSION **sess)
170 {
171     SSL_SESSION *usesess = NULL;
172     const SSL_CIPHER *cipher = NULL;
173
174     if (psksess != NULL) {
175         SSL_SESSION_up_ref(psksess);
176         usesess = psksess;
177     } else {
178         long key_len;
179         unsigned char *key = OPENSSL_hexstr2buf(psk_key, &key_len);
180
181         if (key == NULL) {
182             BIO_printf(bio_err, "Could not convert PSK key '%s' to buffer\n",
183                        psk_key);
184             return 0;
185         }
186
187         /* We default to SHA-256 */
188         cipher = SSL_CIPHER_find(s, tls13_aes128gcmsha256_id);
189         if (cipher == NULL) {
190             BIO_printf(bio_err, "Error finding suitable ciphersuite\n");
191             OPENSSL_free(key);
192             return 0;
193         }
194
195         usesess = SSL_SESSION_new();
196         if (usesess == NULL
197                 || !SSL_SESSION_set1_master_key(usesess, key, key_len)
198                 || !SSL_SESSION_set_cipher(usesess, cipher)
199                 || !SSL_SESSION_set_protocol_version(usesess, TLS1_3_VERSION)) {
200             OPENSSL_free(key);
201             goto err;
202         }
203         OPENSSL_free(key);
204     }
205
206     cipher = SSL_SESSION_get0_cipher(usesess);
207     if (cipher == NULL)
208         goto err;
209
210     if (md != NULL && SSL_CIPHER_get_handshake_digest(cipher) != md) {
211         /* PSK not usable, ignore it */
212         *id = NULL;
213         *idlen = 0;
214         *sess = NULL;
215         SSL_SESSION_free(usesess);
216     } else {
217         *sess = usesess;
218         *id = (unsigned char *)psk_identity;
219         *idlen = strlen(psk_identity);
220     }
221
222     return 1;
223
224  err:
225     SSL_SESSION_free(usesess);
226     return 0;
227 }
228
229 /* This is a context that we pass to callbacks */
230 typedef struct tlsextctx_st {
231     BIO *biodebug;
232     int ack;
233 } tlsextctx;
234
235 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
236 {
237     tlsextctx *p = (tlsextctx *) arg;
238     const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
239     if (SSL_get_servername_type(s) != -1)
240         p->ack = !SSL_session_reused(s) && hn != NULL;
241     else
242         BIO_printf(bio_err, "Can't use SSL_get_servername\n");
243
244     return SSL_TLSEXT_ERR_OK;
245 }
246
247 #ifndef OPENSSL_NO_SRP
248
249 /* This is a context that we pass to all callbacks */
250 typedef struct srp_arg_st {
251     char *srppassin;
252     char *srplogin;
253     int msg;                    /* copy from c_msg */
254     int debug;                  /* copy from c_debug */
255     int amp;                    /* allow more groups */
256     int strength;               /* minimal size for N */
257 } SRP_ARG;
258
259 static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
260 {
261     BN_CTX *bn_ctx = BN_CTX_new();
262     BIGNUM *p = BN_new();
263     BIGNUM *r = BN_new();
264     int ret =
265         g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
266         BN_check_prime(N, bn_ctx, NULL) == 1 &&
267         p != NULL && BN_rshift1(p, N) &&
268         /* p = (N-1)/2 */
269         BN_check_prime(p, bn_ctx, NULL) == 1 &&
270         r != NULL &&
271         /* verify g^((N-1)/2) == -1 (mod N) */
272         BN_mod_exp(r, g, p, N, bn_ctx) &&
273         BN_add_word(r, 1) && BN_cmp(r, N) == 0;
274
275     BN_free(r);
276     BN_free(p);
277     BN_CTX_free(bn_ctx);
278     return ret;
279 }
280
281 /*-
282  * This callback is used here for two purposes:
283  * - extended debugging
284  * - making some primality tests for unknown groups
285  * The callback is only called for a non default group.
286  *
287  * An application does not need the call back at all if
288  * only the standard groups are used.  In real life situations,
289  * client and server already share well known groups,
290  * thus there is no need to verify them.
291  * Furthermore, in case that a server actually proposes a group that
292  * is not one of those defined in RFC 5054, it is more appropriate
293  * to add the group to a static list and then compare since
294  * primality tests are rather cpu consuming.
295  */
296
297 static int ssl_srp_verify_param_cb(SSL *s, void *arg)
298 {
299     SRP_ARG *srp_arg = (SRP_ARG *)arg;
300     BIGNUM *N = NULL, *g = NULL;
301
302     if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
303         return 0;
304     if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
305         BIO_printf(bio_err, "SRP parameters:\n");
306         BIO_printf(bio_err, "\tN=");
307         BN_print(bio_err, N);
308         BIO_printf(bio_err, "\n\tg=");
309         BN_print(bio_err, g);
310         BIO_printf(bio_err, "\n");
311     }
312
313     if (SRP_check_known_gN_param(g, N))
314         return 1;
315
316     if (srp_arg->amp == 1) {
317         if (srp_arg->debug)
318             BIO_printf(bio_err,
319                        "SRP param N and g are not known params, going to check deeper.\n");
320
321         /*
322          * The srp_moregroups is a real debugging feature. Implementors
323          * should rather add the value to the known ones. The minimal size
324          * has already been tested.
325          */
326         if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
327             return 1;
328     }
329     BIO_printf(bio_err, "SRP param N and g rejected.\n");
330     return 0;
331 }
332
333 # define PWD_STRLEN 1024
334
335 static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
336 {
337     SRP_ARG *srp_arg = (SRP_ARG *)arg;
338     char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
339     PW_CB_DATA cb_tmp;
340     int l;
341
342     cb_tmp.password = (char *)srp_arg->srppassin;
343     cb_tmp.prompt_info = "SRP user";
344     if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
345         BIO_printf(bio_err, "Can't read Password\n");
346         OPENSSL_free(pass);
347         return NULL;
348     }
349     *(pass + l) = '\0';
350
351     return pass;
352 }
353
354 #endif
355
356 #ifndef OPENSSL_NO_NEXTPROTONEG
357 /* This the context that we pass to next_proto_cb */
358 typedef struct tlsextnextprotoctx_st {
359     unsigned char *data;
360     size_t len;
361     int status;
362 } tlsextnextprotoctx;
363
364 static tlsextnextprotoctx next_proto;
365
366 static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
367                          const unsigned char *in, unsigned int inlen,
368                          void *arg)
369 {
370     tlsextnextprotoctx *ctx = arg;
371
372     if (!c_quiet) {
373         /* We can assume that |in| is syntactically valid. */
374         unsigned i;
375         BIO_printf(bio_c_out, "Protocols advertised by server: ");
376         for (i = 0; i < inlen;) {
377             if (i)
378                 BIO_write(bio_c_out, ", ", 2);
379             BIO_write(bio_c_out, &in[i + 1], in[i]);
380             i += in[i] + 1;
381         }
382         BIO_write(bio_c_out, "\n", 1);
383     }
384
385     ctx->status =
386         SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
387     return SSL_TLSEXT_ERR_OK;
388 }
389 #endif                         /* ndef OPENSSL_NO_NEXTPROTONEG */
390
391 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
392                                    const unsigned char *in, size_t inlen,
393                                    int *al, void *arg)
394 {
395     char pem_name[100];
396     unsigned char ext_buf[4 + 65536];
397
398     /* Reconstruct the type/len fields prior to extension data */
399     inlen &= 0xffff; /* for formal memcmpy correctness */
400     ext_buf[0] = (unsigned char)(ext_type >> 8);
401     ext_buf[1] = (unsigned char)(ext_type);
402     ext_buf[2] = (unsigned char)(inlen >> 8);
403     ext_buf[3] = (unsigned char)(inlen);
404     memcpy(ext_buf + 4, in, inlen);
405
406     BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
407                  ext_type);
408     PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
409     return 1;
410 }
411
412 /*
413  * Hex decoder that tolerates optional whitespace.  Returns number of bytes
414  * produced, advances inptr to end of input string.
415  */
416 static ossl_ssize_t hexdecode(const char **inptr, void *result)
417 {
418     unsigned char **out = (unsigned char **)result;
419     const char *in = *inptr;
420     unsigned char *ret = app_malloc(strlen(in) / 2, "hexdecode");
421     unsigned char *cp = ret;
422     uint8_t byte;
423     int nibble = 0;
424
425     if (ret == NULL)
426         return -1;
427
428     for (byte = 0; *in; ++in) {
429         int x;
430
431         if (isspace(_UC(*in)))
432             continue;
433         x = OPENSSL_hexchar2int(*in);
434         if (x < 0) {
435             OPENSSL_free(ret);
436             return 0;
437         }
438         byte |= (char)x;
439         if ((nibble ^= 1) == 0) {
440             *cp++ = byte;
441             byte = 0;
442         } else {
443             byte <<= 4;
444         }
445     }
446     if (nibble != 0) {
447         OPENSSL_free(ret);
448         return 0;
449     }
450     *inptr = in;
451
452     return cp - (*out = ret);
453 }
454
455 /*
456  * Decode unsigned 0..255, returns 1 on success, <= 0 on failure. Advances
457  * inptr to next field skipping leading whitespace.
458  */
459 static ossl_ssize_t checked_uint8(const char **inptr, void *out)
460 {
461     uint8_t *result = (uint8_t *)out;
462     const char *in = *inptr;
463     char *endp;
464     long v;
465     int e;
466
467     save_errno();
468     v = strtol(in, &endp, 10);
469     e = restore_errno();
470
471     if (((v == LONG_MIN || v == LONG_MAX) && e == ERANGE) ||
472         endp == in || !isspace(_UC(*endp)) ||
473         v != (*result = (uint8_t) v)) {
474         return -1;
475     }
476     for (in = endp; isspace(_UC(*in)); ++in)
477         continue;
478
479     *inptr = in;
480     return 1;
481 }
482
483 struct tlsa_field {
484     void *var;
485     const char *name;
486     ossl_ssize_t (*parser)(const char **, void *);
487 };
488
489 static int tlsa_import_rr(SSL *con, const char *rrdata)
490 {
491     /* Not necessary to re-init these values; the "parsers" do that. */
492     static uint8_t usage;
493     static uint8_t selector;
494     static uint8_t mtype;
495     static unsigned char *data;
496     static struct tlsa_field tlsa_fields[] = {
497         { &usage, "usage", checked_uint8 },
498         { &selector, "selector", checked_uint8 },
499         { &mtype, "mtype", checked_uint8 },
500         { &data, "data", hexdecode },
501         { NULL, }
502     };
503     struct tlsa_field *f;
504     int ret;
505     const char *cp = rrdata;
506     ossl_ssize_t len = 0;
507
508     for (f = tlsa_fields; f->var; ++f) {
509         /* Returns number of bytes produced, advances cp to next field */
510         if ((len = f->parser(&cp, f->var)) <= 0) {
511             BIO_printf(bio_err, "%s: warning: bad TLSA %s field in: %s\n",
512                        prog, f->name, rrdata);
513             return 0;
514         }
515     }
516     /* The data field is last, so len is its length */
517     ret = SSL_dane_tlsa_add(con, usage, selector, mtype, data, len);
518     OPENSSL_free(data);
519
520     if (ret == 0) {
521         ERR_print_errors(bio_err);
522         BIO_printf(bio_err, "%s: warning: unusable TLSA rrdata: %s\n",
523                    prog, rrdata);
524         return 0;
525     }
526     if (ret < 0) {
527         ERR_print_errors(bio_err);
528         BIO_printf(bio_err, "%s: warning: error loading TLSA rrdata: %s\n",
529                    prog, rrdata);
530         return 0;
531     }
532     return ret;
533 }
534
535 static int tlsa_import_rrset(SSL *con, STACK_OF(OPENSSL_STRING) *rrset)
536 {
537     int num = sk_OPENSSL_STRING_num(rrset);
538     int count = 0;
539     int i;
540
541     for (i = 0; i < num; ++i) {
542         char *rrdata = sk_OPENSSL_STRING_value(rrset, i);
543         if (tlsa_import_rr(con, rrdata) > 0)
544             ++count;
545     }
546     return count > 0;
547 }
548
549 typedef enum OPTION_choice {
550     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
551     OPT_4, OPT_6, OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_BIND, OPT_UNIX,
552     OPT_XMPPHOST, OPT_VERIFY, OPT_NAMEOPT,
553     OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
554     OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
555     OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
556     OPT_SSL_CLIENT_ENGINE, OPT_IGN_EOF, OPT_NO_IGN_EOF,
557     OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
558     OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
559     OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
560     OPT_PSK_IDENTITY, OPT_PSK, OPT_PSK_SESS,
561 #ifndef OPENSSL_NO_SRP
562     OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH, OPT_SRP_LATEUSER,
563     OPT_SRP_MOREGROUPS,
564 #endif
565     OPT_SSL3, OPT_SSL_CONFIG,
566     OPT_TLS1_3, OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
567     OPT_DTLS1_2, OPT_SCTP, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
568     OPT_CERT_CHAIN, OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN,
569     OPT_NEXTPROTONEG, OPT_ALPN,
570     OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH,
571     OPT_CAFILE, OPT_NOCAFILE, OPT_CHAINCAFILE, OPT_VERIFYCAFILE,
572     OPT_CASTORE, OPT_NOCASTORE, OPT_CHAINCASTORE, OPT_VERIFYCASTORE,
573     OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME, OPT_NOSERVERNAME, OPT_ASYNC,
574     OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_PROTOHOST,
575     OPT_MAXFRAGLEN, OPT_MAX_SEND_FRAG, OPT_SPLIT_SEND_FRAG, OPT_MAX_PIPELINES,
576     OPT_READ_BUF, OPT_KEYLOG_FILE, OPT_EARLY_DATA, OPT_REQCAFILE,
577     OPT_V_ENUM,
578     OPT_X_ENUM,
579     OPT_S_ENUM, OPT_IGNORE_UNEXPECTED_EOF,
580     OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY, OPT_PROXY_USER, OPT_PROXY_PASS,
581     OPT_DANE_TLSA_DOMAIN,
582 #ifndef OPENSSL_NO_CT
583     OPT_CT, OPT_NOCT, OPT_CTLOG_FILE,
584 #endif
585     OPT_DANE_TLSA_RRDATA, OPT_DANE_EE_NO_NAME,
586     OPT_ENABLE_PHA,
587     OPT_SCTP_LABEL_BUG,
588     OPT_R_ENUM, OPT_PROV_ENUM
589 } OPTION_CHOICE;
590
591 const OPTIONS s_client_options[] = {
592     {OPT_HELP_STR, 1, '-', "Usage: %s [options] [host:port]\n"},
593
594     OPT_SECTION("General"),
595     {"help", OPT_HELP, '-', "Display this summary"},
596 #ifndef OPENSSL_NO_ENGINE
597     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
598     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's',
599      "Specify engine to be used for client certificate operations"},
600 #endif
601     {"ssl_config", OPT_SSL_CONFIG, 's', "Use specified section for SSL_CTX configuration"},
602 #ifndef OPENSSL_NO_CT
603     {"ct", OPT_CT, '-', "Request and parse SCTs (also enables OCSP stapling)"},
604     {"noct", OPT_NOCT, '-', "Do not request or parse SCTs (default)"},
605     {"ctlogfile", OPT_CTLOG_FILE, '<', "CT log list CONF file"},
606 #endif
607
608     OPT_SECTION("Network"),
609     {"host", OPT_HOST, 's', "Use -connect instead"},
610     {"port", OPT_PORT, 'p', "Use -connect instead"},
611     {"connect", OPT_CONNECT, 's',
612      "TCP/IP where to connect; default: " PORT ")"},
613     {"bind", OPT_BIND, 's', "bind local address for connection"},
614     {"proxy", OPT_PROXY, 's',
615      "Connect to via specified proxy to the real server"},
616     {"proxy_user", OPT_PROXY_USER, 's', "UserID for proxy authentication"},
617     {"proxy_pass", OPT_PROXY_PASS, 's', "Proxy authentication password source"},
618 #ifdef AF_UNIX
619     {"unix", OPT_UNIX, 's', "Connect over the specified Unix-domain socket"},
620 #endif
621     {"4", OPT_4, '-', "Use IPv4 only"},
622 #ifdef AF_INET6
623     {"6", OPT_6, '-', "Use IPv6 only"},
624 #endif
625     {"maxfraglen", OPT_MAXFRAGLEN, 'p',
626      "Enable Maximum Fragment Length Negotiation (len values: 512, 1024, 2048 and 4096)"},
627     {"max_send_frag", OPT_MAX_SEND_FRAG, 'p', "Maximum Size of send frames "},
628     {"split_send_frag", OPT_SPLIT_SEND_FRAG, 'p',
629      "Size used to split data for encrypt pipelines"},
630     {"max_pipelines", OPT_MAX_PIPELINES, 'p',
631      "Maximum number of encrypt/decrypt pipelines to be used"},
632     {"read_buf", OPT_READ_BUF, 'p',
633      "Default read buffer size to be used for connections"},
634     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
635
636     OPT_SECTION("Identity"),
637     {"cert", OPT_CERT, '<', "Client certificate file to use"},
638     {"certform", OPT_CERTFORM, 'F',
639      "Client certificate file format (PEM/DER/P12); has no effect"},
640     {"cert_chain", OPT_CERT_CHAIN, '<',
641      "Client certificate chain file (in PEM format)"},
642     {"build_chain", OPT_BUILD_CHAIN, '-', "Build client certificate chain"},
643     {"key", OPT_KEY, 's', "Private key file to use; default: -cert file"},
644     {"keyform", OPT_KEYFORM, 'E', "Key format (ENGINE, other values ignored)"},
645     {"pass", OPT_PASS, 's', "Private key and cert file pass phrase source"},
646     {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
647     {"nameopt", OPT_NAMEOPT, 's', "Certificate subject/issuer name printing options"},
648     {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
649     {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
650     {"CAstore", OPT_CASTORE, ':', "URI to store of CA's"},
651     {"no-CAfile", OPT_NOCAFILE, '-',
652      "Do not load the default certificates file"},
653     {"no-CApath", OPT_NOCAPATH, '-',
654      "Do not load certificates from the default certificates directory"},
655     {"no-CAstore", OPT_NOCASTORE, '-',
656      "Do not load certificates from the default certificates store"},
657     {"requestCAfile", OPT_REQCAFILE, '<',
658       "PEM format file of CA names to send to the server"},
659     {"dane_tlsa_domain", OPT_DANE_TLSA_DOMAIN, 's', "DANE TLSA base domain"},
660     {"dane_tlsa_rrdata", OPT_DANE_TLSA_RRDATA, 's',
661      "DANE TLSA rrdata presentation form"},
662     {"dane_ee_no_namechecks", OPT_DANE_EE_NO_NAME, '-',
663      "Disable name checks when matching DANE-EE(3) TLSA records"},
664     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
665     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
666     {"psk_session", OPT_PSK_SESS, '<', "File to read PSK SSL session from"},
667     {"name", OPT_PROTOHOST, 's',
668      "Hostname to use for \"-starttls lmtp\", \"-starttls smtp\" or \"-starttls xmpp[-server]\""},
669
670     OPT_SECTION("Session"),
671     {"reconnect", OPT_RECONNECT, '-',
672      "Drop and re-make the connection with the same Session-ID"},
673     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
674     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
675
676     OPT_SECTION("Input/Output"),
677     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
678     {"quiet", OPT_QUIET, '-', "No s_client output"},
679     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
680     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
681     {"starttls", OPT_STARTTLS, 's',
682      "Use the appropriate STARTTLS command before starting TLS"},
683     {"xmpphost", OPT_XMPPHOST, 's',
684      "Alias of -name option for \"-starttls xmpp[-server]\""},
685     {"brief", OPT_BRIEF, '-',
686      "Restrict output to brief summary of connection parameters"},
687     {"prexit", OPT_PREXIT, '-',
688      "Print session information when the program exits"},
689
690     OPT_SECTION("Debug"),
691     {"showcerts", OPT_SHOWCERTS, '-',
692      "Show all certificates sent by the server"},
693     {"debug", OPT_DEBUG, '-', "Extra output"},
694     {"msg", OPT_MSG, '-', "Show protocol messages"},
695     {"msgfile", OPT_MSGFILE, '>',
696      "File to send output of -msg or -trace, instead of stdout"},
697     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
698     {"state", OPT_STATE, '-', "Print the ssl states"},
699     {"keymatexport", OPT_KEYMATEXPORT, 's',
700      "Export keying material using label"},
701     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
702      "Export len bytes of keying material; default 20"},
703     {"security_debug", OPT_SECURITY_DEBUG, '-',
704      "Enable security debug messages"},
705     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-',
706      "Output more security debug output"},
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     {"keylogfile", OPT_KEYLOG_FILE, '>', "Write TLS secrets to file"},
714     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
715     {"servername", OPT_SERVERNAME, 's',
716      "Set TLS extension servername (SNI) in ClientHello (default)"},
717     {"noservername", OPT_NOSERVERNAME, '-',
718      "Do not send the server name (SNI) extension in the ClientHello"},
719     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
720      "Hex dump of all TLS extensions received"},
721     {"ignore_unexpected_eof", OPT_IGNORE_UNEXPECTED_EOF, '-',
722      "Do not treat lack of close_notify from a peer as an error"},
723 #ifndef OPENSSL_NO_OCSP
724     {"status", OPT_STATUS, '-', "Request certificate status from server"},
725 #endif
726     {"serverinfo", OPT_SERVERINFO, 's',
727      "types  Send empty ClientHello extensions (comma-separated numbers)"},
728     {"alpn", OPT_ALPN, 's',
729      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
730     {"async", OPT_ASYNC, '-', "Support asynchronous operation"},
731     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
732
733     OPT_SECTION("Protocol and version"),
734 #ifndef OPENSSL_NO_SSL3
735     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
736 #endif
737 #ifndef OPENSSL_NO_TLS1
738     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
739 #endif
740 #ifndef OPENSSL_NO_TLS1_1
741     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
742 #endif
743 #ifndef OPENSSL_NO_TLS1_2
744     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
745 #endif
746 #ifndef OPENSSL_NO_TLS1_3
747     {"tls1_3", OPT_TLS1_3, '-', "Just use TLSv1.3"},
748 #endif
749 #ifndef OPENSSL_NO_DTLS
750     {"dtls", OPT_DTLS, '-', "Use any version of DTLS"},
751     {"timeout", OPT_TIMEOUT, '-',
752      "Enable send/receive timeout on DTLS connections"},
753     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
754 #endif
755 #ifndef OPENSSL_NO_DTLS1
756     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
757 #endif
758 #ifndef OPENSSL_NO_DTLS1_2
759     {"dtls1_2", OPT_DTLS1_2, '-', "Just use DTLSv1.2"},
760 #endif
761 #ifndef OPENSSL_NO_SCTP
762     {"sctp", OPT_SCTP, '-', "Use SCTP"},
763     {"sctp_label_bug", OPT_SCTP_LABEL_BUG, '-', "Enable SCTP label length bug"},
764 #endif
765 #ifndef OPENSSL_NO_NEXTPROTONEG
766     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
767      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
768 #endif
769     {"early_data", OPT_EARLY_DATA, '<', "File to send as early data"},
770     {"enable_pha", OPT_ENABLE_PHA, '-', "Enable post-handshake-authentication"},
771 #ifndef OPENSSL_NO_SRTP
772     {"use_srtp", OPT_USE_SRTP, 's',
773      "Offer SRTP key management with a colon-separated profile list"},
774 #endif
775 #ifndef OPENSSL_NO_SRP
776     {"srpuser", OPT_SRPUSER, 's', "SRP authentication for 'user'"},
777     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
778     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
779      "SRP username into second ClientHello message"},
780     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
781      "Tolerate other than the known g N values."},
782     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
783 #endif
784
785     OPT_R_OPTIONS,
786     OPT_S_OPTIONS,
787     OPT_V_OPTIONS,
788     {"CRL", OPT_CRL, '<', "CRL file to use"},
789     {"crl_download", OPT_CRL_DOWNLOAD, '-', "Download CRL from distribution points"},
790     {"CRLform", OPT_CRLFORM, 'F', "CRL format (PEM or DER); default PEM"},
791     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-',
792      "Close connection on verification error"},
793     {"verify_quiet", OPT_VERIFY_QUIET, '-', "Restrict verify output to errors"},
794     {"chainCAfile", OPT_CHAINCAFILE, '<',
795      "CA file for certificate chain (PEM format)"},
796     {"chainCApath", OPT_CHAINCAPATH, '/',
797      "Use dir as certificate store path to build CA certificate chain"},
798     {"chainCAstore", OPT_CHAINCASTORE, ':',
799      "CA store URI for certificate chain"},
800     {"verifyCAfile", OPT_VERIFYCAFILE, '<',
801      "CA file for certificate verification (PEM format)"},
802     {"verifyCApath", OPT_VERIFYCAPATH, '/',
803      "Use dir as certificate store path to verify CA certificate"},
804     {"verifyCAstore", OPT_VERIFYCASTORE, ':',
805      "CA store URI for certificate verification"},
806     OPT_X_OPTIONS,
807     OPT_PROV_OPTIONS,
808
809     OPT_PARAMETERS(),
810     {"host:port", 0, 0, "Where to connect; same as -connect option"},
811     {NULL}
812 };
813
814 typedef enum PROTOCOL_choice {
815     PROTO_OFF,
816     PROTO_SMTP,
817     PROTO_POP3,
818     PROTO_IMAP,
819     PROTO_FTP,
820     PROTO_TELNET,
821     PROTO_XMPP,
822     PROTO_XMPP_SERVER,
823     PROTO_CONNECT,
824     PROTO_IRC,
825     PROTO_MYSQL,
826     PROTO_POSTGRES,
827     PROTO_LMTP,
828     PROTO_NNTP,
829     PROTO_SIEVE,
830     PROTO_LDAP
831 } PROTOCOL_CHOICE;
832
833 static const OPT_PAIR services[] = {
834     {"smtp", PROTO_SMTP},
835     {"pop3", PROTO_POP3},
836     {"imap", PROTO_IMAP},
837     {"ftp", PROTO_FTP},
838     {"xmpp", PROTO_XMPP},
839     {"xmpp-server", PROTO_XMPP_SERVER},
840     {"telnet", PROTO_TELNET},
841     {"irc", PROTO_IRC},
842     {"mysql", PROTO_MYSQL},
843     {"postgres", PROTO_POSTGRES},
844     {"lmtp", PROTO_LMTP},
845     {"nntp", PROTO_NNTP},
846     {"sieve", PROTO_SIEVE},
847     {"ldap", PROTO_LDAP},
848     {NULL, 0}
849 };
850
851 #define IS_INET_FLAG(o) \
852  (o == OPT_4 || o == OPT_6 || o == OPT_HOST || o == OPT_PORT || o == OPT_CONNECT)
853 #define IS_UNIX_FLAG(o) (o == OPT_UNIX)
854
855 #define IS_PROT_FLAG(o) \
856  (o == OPT_SSL3 || o == OPT_TLS1 || o == OPT_TLS1_1 || o == OPT_TLS1_2 \
857   || o == OPT_TLS1_3 || o == OPT_DTLS || o == OPT_DTLS1 || o == OPT_DTLS1_2)
858
859 /* Free |*dest| and optionally set it to a copy of |source|. */
860 static void freeandcopy(char **dest, const char *source)
861 {
862     OPENSSL_free(*dest);
863     *dest = NULL;
864     if (source != NULL)
865         *dest = OPENSSL_strdup(source);
866 }
867
868 static int new_session_cb(SSL *s, SSL_SESSION *sess)
869 {
870
871     if (sess_out != NULL) {
872         BIO *stmp = BIO_new_file(sess_out, "w");
873
874         if (stmp == NULL) {
875             BIO_printf(bio_err, "Error writing session file %s\n", sess_out);
876         } else {
877             PEM_write_bio_SSL_SESSION(stmp, sess);
878             BIO_free(stmp);
879         }
880     }
881
882     /*
883      * Session data gets dumped on connection for TLSv1.2 and below, and on
884      * arrival of the NewSessionTicket for TLSv1.3.
885      */
886     if (SSL_version(s) == TLS1_3_VERSION) {
887         BIO_printf(bio_c_out,
888                    "---\nPost-Handshake New Session Ticket arrived:\n");
889         SSL_SESSION_print(bio_c_out, sess);
890         BIO_printf(bio_c_out, "---\n");
891     }
892
893     /*
894      * We always return a "fail" response so that the session gets freed again
895      * because we haven't used the reference.
896      */
897     return 0;
898 }
899
900 int s_client_main(int argc, char **argv)
901 {
902     BIO *sbio;
903     EVP_PKEY *key = NULL;
904     SSL *con = NULL;
905     SSL_CTX *ctx = NULL;
906     STACK_OF(X509) *chain = NULL;
907     X509 *cert = NULL;
908     X509_VERIFY_PARAM *vpm = NULL;
909     SSL_EXCERT *exc = NULL;
910     SSL_CONF_CTX *cctx = NULL;
911     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
912     char *dane_tlsa_domain = NULL;
913     STACK_OF(OPENSSL_STRING) *dane_tlsa_rrset = NULL;
914     int dane_ee_no_name = 0;
915     STACK_OF(X509_CRL) *crls = NULL;
916     const SSL_METHOD *meth = TLS_client_method();
917     const char *CApath = NULL, *CAfile = NULL, *CAstore = NULL;
918     char *cbuf = NULL, *sbuf = NULL, *mbuf = NULL;
919     char *proxystr = NULL, *proxyuser = NULL;
920     char *proxypassarg = NULL, *proxypass = NULL;
921     char *connectstr = NULL, *bindstr = NULL;
922     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL;
923     char *chCApath = NULL, *chCAfile = NULL, *chCAstore = NULL, *host = NULL;
924     char *thost = NULL, *tport = NULL;
925     char *port = OPENSSL_strdup(PORT);
926     char *bindhost = NULL, *bindport = NULL;
927     char *passarg = NULL, *pass = NULL;
928     char *vfyCApath = NULL, *vfyCAfile = NULL, *vfyCAstore = NULL;
929     char *ReqCAfile = NULL;
930     char *sess_in = NULL, *crl_file = NULL, *p;
931     const char *protohost = NULL;
932     struct timeval timeout, *timeoutp;
933     fd_set readfds, writefds;
934     int noCApath = 0, noCAfile = 0, noCAstore = 0;
935     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
936     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
937     int prexit = 0;
938     int sdebug = 0;
939     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
940     int ret = 1, in_init = 1, i, nbio_test = 0, sock = -1, k, width, state = 0;
941     int sbuf_len, sbuf_off, cmdletters = 1;
942     int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0;
943     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
944     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
945 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
946     int at_eof = 0;
947 #endif
948     int read_buf_len = 0;
949     int fallback_scsv = 0;
950     OPTION_CHOICE o;
951 #ifndef OPENSSL_NO_DTLS
952     int enable_timeouts = 0;
953     long socket_mtu = 0;
954 #endif
955 #ifndef OPENSSL_NO_ENGINE
956     ENGINE *ssl_client_engine = NULL;
957 #endif
958     ENGINE *e = NULL;
959 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
960     struct timeval tv;
961 #endif
962     const char *servername = NULL;
963     int noservername = 0;
964     const char *alpn_in = NULL;
965     tlsextctx tlsextcbp = { NULL, 0 };
966     const char *ssl_config = NULL;
967 #define MAX_SI_TYPES 100
968     unsigned short serverinfo_types[MAX_SI_TYPES];
969     int serverinfo_count = 0, start = 0, len;
970 #ifndef OPENSSL_NO_NEXTPROTONEG
971     const char *next_proto_neg_in = NULL;
972 #endif
973 #ifndef OPENSSL_NO_SRP
974     char *srppass = NULL;
975     int srp_lateuser = 0;
976     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
977 #endif
978 #ifndef OPENSSL_NO_SRTP
979     char *srtp_profiles = NULL;
980 #endif
981 #ifndef OPENSSL_NO_CT
982     char *ctlog_file = NULL;
983     int ct_validation = 0;
984 #endif
985     int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0;
986     int async = 0;
987     unsigned int max_send_fragment = 0;
988     unsigned int split_send_fragment = 0, max_pipelines = 0;
989     enum { use_inet, use_unix, use_unknown } connect_type = use_unknown;
990     int count4or6 = 0;
991     uint8_t maxfraglen = 0;
992     int c_nbio = 0, c_msg = 0, c_ign_eof = 0, c_brief = 0;
993     int c_tlsextdebug = 0;
994 #ifndef OPENSSL_NO_OCSP
995     int c_status_req = 0;
996 #endif
997     BIO *bio_c_msg = NULL;
998     const char *keylog_file = NULL, *early_data_file = NULL;
999 #ifndef OPENSSL_NO_DTLS
1000     int isdtls = 0;
1001 #endif
1002     char *psksessf = NULL;
1003     int enable_pha = 0;
1004 #ifndef OPENSSL_NO_SCTP
1005     int sctp_label_bug = 0;
1006 #endif
1007     int ignore_unexpected_eof = 0;
1008
1009     FD_ZERO(&readfds);
1010     FD_ZERO(&writefds);
1011 /* Known false-positive of MemorySanitizer. */
1012 #if defined(__has_feature)
1013 # if __has_feature(memory_sanitizer)
1014     __msan_unpoison(&readfds, sizeof(readfds));
1015     __msan_unpoison(&writefds, sizeof(writefds));
1016 # endif
1017 #endif
1018
1019     prog = opt_progname(argv[0]);
1020     c_quiet = 0;
1021     c_debug = 0;
1022     c_showcerts = 0;
1023     c_nbio = 0;
1024     vpm = X509_VERIFY_PARAM_new();
1025     cctx = SSL_CONF_CTX_new();
1026
1027     if (vpm == NULL || cctx == NULL) {
1028         BIO_printf(bio_err, "%s: out of memory\n", prog);
1029         goto end;
1030     }
1031
1032     cbuf = app_malloc(BUFSIZZ, "cbuf");
1033     sbuf = app_malloc(BUFSIZZ, "sbuf");
1034     mbuf = app_malloc(BUFSIZZ, "mbuf");
1035
1036     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
1037
1038     prog = opt_init(argc, argv, s_client_options);
1039     while ((o = opt_next()) != OPT_EOF) {
1040         /* Check for intermixing flags. */
1041         if (connect_type == use_unix && IS_INET_FLAG(o)) {
1042             BIO_printf(bio_err,
1043                        "%s: Intermixed protocol flags (unix and internet domains)\n",
1044                        prog);
1045             goto end;
1046         }
1047         if (connect_type == use_inet && IS_UNIX_FLAG(o)) {
1048             BIO_printf(bio_err,
1049                        "%s: Intermixed protocol flags (internet and unix domains)\n",
1050                        prog);
1051             goto end;
1052         }
1053
1054         if (IS_PROT_FLAG(o) && ++prot_opt > 1) {
1055             BIO_printf(bio_err, "Cannot supply multiple protocol flags\n");
1056             goto end;
1057         }
1058         if (IS_NO_PROT_FLAG(o))
1059             no_prot_opt++;
1060         if (prot_opt == 1 && no_prot_opt) {
1061             BIO_printf(bio_err,
1062                        "Cannot supply both a protocol flag and '-no_<prot>'\n");
1063             goto end;
1064         }
1065
1066         switch (o) {
1067         case OPT_EOF:
1068         case OPT_ERR:
1069  opthelp:
1070             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
1071             goto end;
1072         case OPT_HELP:
1073             opt_help(s_client_options);
1074             ret = 0;
1075             goto end;
1076         case OPT_4:
1077             connect_type = use_inet;
1078             socket_family = AF_INET;
1079             count4or6++;
1080             break;
1081 #ifdef AF_INET6
1082         case OPT_6:
1083             connect_type = use_inet;
1084             socket_family = AF_INET6;
1085             count4or6++;
1086             break;
1087 #endif
1088         case OPT_HOST:
1089             connect_type = use_inet;
1090             freeandcopy(&host, opt_arg());
1091             break;
1092         case OPT_PORT:
1093             connect_type = use_inet;
1094             freeandcopy(&port, opt_arg());
1095             break;
1096         case OPT_CONNECT:
1097             connect_type = use_inet;
1098             freeandcopy(&connectstr, opt_arg());
1099             break;
1100         case OPT_BIND:
1101             freeandcopy(&bindstr, opt_arg());
1102             break;
1103         case OPT_PROXY:
1104             proxystr = opt_arg();
1105             starttls_proto = PROTO_CONNECT;
1106             break;
1107         case OPT_PROXY_USER:
1108             proxyuser = opt_arg();
1109             break;
1110         case OPT_PROXY_PASS:
1111             proxypassarg = opt_arg();
1112             break;
1113 #ifdef AF_UNIX
1114         case OPT_UNIX:
1115             connect_type = use_unix;
1116             socket_family = AF_UNIX;
1117             freeandcopy(&host, opt_arg());
1118             break;
1119 #endif
1120         case OPT_XMPPHOST:
1121             /* fall through, since this is an alias */
1122         case OPT_PROTOHOST:
1123             protohost = opt_arg();
1124             break;
1125         case OPT_VERIFY:
1126             verify = SSL_VERIFY_PEER;
1127             verify_args.depth = atoi(opt_arg());
1128             if (!c_quiet)
1129                 BIO_printf(bio_err, "verify depth is %d\n", verify_args.depth);
1130             break;
1131         case OPT_CERT:
1132             cert_file = opt_arg();
1133             break;
1134         case OPT_NAMEOPT:
1135             if (!set_nameopt(opt_arg()))
1136                 goto end;
1137             break;
1138         case OPT_CRL:
1139             crl_file = opt_arg();
1140             break;
1141         case OPT_CRL_DOWNLOAD:
1142             crl_download = 1;
1143             break;
1144         case OPT_SESS_OUT:
1145             sess_out = opt_arg();
1146             break;
1147         case OPT_SESS_IN:
1148             sess_in = opt_arg();
1149             break;
1150         case OPT_CERTFORM:
1151             if (!opt_format(opt_arg(), OPT_FMT_ANY, &cert_format))
1152                 goto opthelp;
1153             break;
1154         case OPT_CRLFORM:
1155             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
1156                 goto opthelp;
1157             break;
1158         case OPT_VERIFY_RET_ERROR:
1159             verify = SSL_VERIFY_PEER;
1160             verify_args.return_error = 1;
1161             break;
1162         case OPT_VERIFY_QUIET:
1163             verify_args.quiet = 1;
1164             break;
1165         case OPT_BRIEF:
1166             c_brief = verify_args.quiet = c_quiet = 1;
1167             break;
1168         case OPT_S_CASES:
1169             if (ssl_args == NULL)
1170                 ssl_args = sk_OPENSSL_STRING_new_null();
1171             if (ssl_args == NULL
1172                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
1173                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
1174                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1175                 goto end;
1176             }
1177             break;
1178         case OPT_V_CASES:
1179             if (!opt_verify(o, vpm))
1180                 goto end;
1181             vpmtouched++;
1182             break;
1183         case OPT_X_CASES:
1184             if (!args_excert(o, &exc))
1185                 goto end;
1186             break;
1187         case OPT_IGNORE_UNEXPECTED_EOF:
1188             ignore_unexpected_eof = 1;
1189             break;
1190         case OPT_PREXIT:
1191             prexit = 1;
1192             break;
1193         case OPT_CRLF:
1194             crlf = 1;
1195             break;
1196         case OPT_QUIET:
1197             c_quiet = c_ign_eof = 1;
1198             break;
1199         case OPT_NBIO:
1200             c_nbio = 1;
1201             break;
1202         case OPT_NOCMDS:
1203             cmdletters = 0;
1204             break;
1205         case OPT_ENGINE:
1206             e = setup_engine(opt_arg(), 1);
1207             break;
1208         case OPT_SSL_CLIENT_ENGINE:
1209 #ifndef OPENSSL_NO_ENGINE
1210             ssl_client_engine = ENGINE_by_id(opt_arg());
1211             if (ssl_client_engine == NULL) {
1212                 BIO_printf(bio_err, "Error getting client auth engine\n");
1213                 goto opthelp;
1214             }
1215 #endif
1216             break;
1217         case OPT_R_CASES:
1218             if (!opt_rand(o))
1219                 goto end;
1220             break;
1221         case OPT_PROV_CASES:
1222             if (!opt_provider(o))
1223                 goto end;
1224             break;
1225         case OPT_IGN_EOF:
1226             c_ign_eof = 1;
1227             break;
1228         case OPT_NO_IGN_EOF:
1229             c_ign_eof = 0;
1230             break;
1231         case OPT_DEBUG:
1232             c_debug = 1;
1233             break;
1234         case OPT_TLSEXTDEBUG:
1235             c_tlsextdebug = 1;
1236             break;
1237         case OPT_STATUS:
1238 #ifndef OPENSSL_NO_OCSP
1239             c_status_req = 1;
1240 #endif
1241             break;
1242         case OPT_WDEBUG:
1243 #ifdef WATT32
1244             dbug_init();
1245 #endif
1246             break;
1247         case OPT_MSG:
1248             c_msg = 1;
1249             break;
1250         case OPT_MSGFILE:
1251             bio_c_msg = BIO_new_file(opt_arg(), "w");
1252             break;
1253         case OPT_TRACE:
1254 #ifndef OPENSSL_NO_SSL_TRACE
1255             c_msg = 2;
1256 #endif
1257             break;
1258         case OPT_SECURITY_DEBUG:
1259             sdebug = 1;
1260             break;
1261         case OPT_SECURITY_DEBUG_VERBOSE:
1262             sdebug = 2;
1263             break;
1264         case OPT_SHOWCERTS:
1265             c_showcerts = 1;
1266             break;
1267         case OPT_NBIO_TEST:
1268             nbio_test = 1;
1269             break;
1270         case OPT_STATE:
1271             state = 1;
1272             break;
1273         case OPT_PSK_IDENTITY:
1274             psk_identity = opt_arg();
1275             break;
1276         case OPT_PSK:
1277             for (p = psk_key = opt_arg(); *p; p++) {
1278                 if (isxdigit(_UC(*p)))
1279                     continue;
1280                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
1281                 goto end;
1282             }
1283             break;
1284         case OPT_PSK_SESS:
1285             psksessf = opt_arg();
1286             break;
1287 #ifndef OPENSSL_NO_SRP
1288         case OPT_SRPUSER:
1289             srp_arg.srplogin = opt_arg();
1290             if (min_version < TLS1_VERSION)
1291                 min_version = TLS1_VERSION;
1292             break;
1293         case OPT_SRPPASS:
1294             srppass = opt_arg();
1295             if (min_version < TLS1_VERSION)
1296                 min_version = TLS1_VERSION;
1297             break;
1298         case OPT_SRP_STRENGTH:
1299             srp_arg.strength = atoi(opt_arg());
1300             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
1301                        srp_arg.strength);
1302             if (min_version < TLS1_VERSION)
1303                 min_version = TLS1_VERSION;
1304             break;
1305         case OPT_SRP_LATEUSER:
1306             srp_lateuser = 1;
1307             if (min_version < TLS1_VERSION)
1308                 min_version = TLS1_VERSION;
1309             break;
1310         case OPT_SRP_MOREGROUPS:
1311             srp_arg.amp = 1;
1312             if (min_version < TLS1_VERSION)
1313                 min_version = TLS1_VERSION;
1314             break;
1315 #endif
1316         case OPT_SSL_CONFIG:
1317             ssl_config = opt_arg();
1318             break;
1319         case OPT_SSL3:
1320             min_version = SSL3_VERSION;
1321             max_version = SSL3_VERSION;
1322             socket_type = SOCK_STREAM;
1323 #ifndef OPENSSL_NO_DTLS
1324             isdtls = 0;
1325 #endif
1326             break;
1327         case OPT_TLS1_3:
1328             min_version = TLS1_3_VERSION;
1329             max_version = TLS1_3_VERSION;
1330             socket_type = SOCK_STREAM;
1331 #ifndef OPENSSL_NO_DTLS
1332             isdtls = 0;
1333 #endif
1334             break;
1335         case OPT_TLS1_2:
1336             min_version = TLS1_2_VERSION;
1337             max_version = TLS1_2_VERSION;
1338             socket_type = SOCK_STREAM;
1339 #ifndef OPENSSL_NO_DTLS
1340             isdtls = 0;
1341 #endif
1342             break;
1343         case OPT_TLS1_1:
1344             min_version = TLS1_1_VERSION;
1345             max_version = TLS1_1_VERSION;
1346             socket_type = SOCK_STREAM;
1347 #ifndef OPENSSL_NO_DTLS
1348             isdtls = 0;
1349 #endif
1350             break;
1351         case OPT_TLS1:
1352             min_version = TLS1_VERSION;
1353             max_version = TLS1_VERSION;
1354             socket_type = SOCK_STREAM;
1355 #ifndef OPENSSL_NO_DTLS
1356             isdtls = 0;
1357 #endif
1358             break;
1359         case OPT_DTLS:
1360 #ifndef OPENSSL_NO_DTLS
1361             meth = DTLS_client_method();
1362             socket_type = SOCK_DGRAM;
1363             isdtls = 1;
1364 #endif
1365             break;
1366         case OPT_DTLS1:
1367 #ifndef OPENSSL_NO_DTLS1
1368             meth = DTLS_client_method();
1369             min_version = DTLS1_VERSION;
1370             max_version = DTLS1_VERSION;
1371             socket_type = SOCK_DGRAM;
1372             isdtls = 1;
1373 #endif
1374             break;
1375         case OPT_DTLS1_2:
1376 #ifndef OPENSSL_NO_DTLS1_2
1377             meth = DTLS_client_method();
1378             min_version = DTLS1_2_VERSION;
1379             max_version = DTLS1_2_VERSION;
1380             socket_type = SOCK_DGRAM;
1381             isdtls = 1;
1382 #endif
1383             break;
1384         case OPT_SCTP:
1385 #ifndef OPENSSL_NO_SCTP
1386             protocol = IPPROTO_SCTP;
1387 #endif
1388             break;
1389         case OPT_SCTP_LABEL_BUG:
1390 #ifndef OPENSSL_NO_SCTP
1391             sctp_label_bug = 1;
1392 #endif
1393             break;
1394         case OPT_TIMEOUT:
1395 #ifndef OPENSSL_NO_DTLS
1396             enable_timeouts = 1;
1397 #endif
1398             break;
1399         case OPT_MTU:
1400 #ifndef OPENSSL_NO_DTLS
1401             socket_mtu = atol(opt_arg());
1402 #endif
1403             break;
1404         case OPT_FALLBACKSCSV:
1405             fallback_scsv = 1;
1406             break;
1407         case OPT_KEYFORM:
1408             if (!opt_format(opt_arg(), OPT_FMT_ANY, &key_format))
1409                 goto opthelp;
1410             break;
1411         case OPT_PASS:
1412             passarg = opt_arg();
1413             break;
1414         case OPT_CERT_CHAIN:
1415             chain_file = opt_arg();
1416             break;
1417         case OPT_KEY:
1418             key_file = opt_arg();
1419             break;
1420         case OPT_RECONNECT:
1421             reconnect = 5;
1422             break;
1423         case OPT_CAPATH:
1424             CApath = opt_arg();
1425             break;
1426         case OPT_NOCAPATH:
1427             noCApath = 1;
1428             break;
1429         case OPT_CHAINCAPATH:
1430             chCApath = opt_arg();
1431             break;
1432         case OPT_VERIFYCAPATH:
1433             vfyCApath = opt_arg();
1434             break;
1435         case OPT_BUILD_CHAIN:
1436             build_chain = 1;
1437             break;
1438         case OPT_REQCAFILE:
1439             ReqCAfile = opt_arg();
1440             break;
1441         case OPT_CAFILE:
1442             CAfile = opt_arg();
1443             break;
1444         case OPT_NOCAFILE:
1445             noCAfile = 1;
1446             break;
1447 #ifndef OPENSSL_NO_CT
1448         case OPT_NOCT:
1449             ct_validation = 0;
1450             break;
1451         case OPT_CT:
1452             ct_validation = 1;
1453             break;
1454         case OPT_CTLOG_FILE:
1455             ctlog_file = opt_arg();
1456             break;
1457 #endif
1458         case OPT_CHAINCAFILE:
1459             chCAfile = opt_arg();
1460             break;
1461         case OPT_VERIFYCAFILE:
1462             vfyCAfile = opt_arg();
1463             break;
1464         case OPT_CASTORE:
1465             CAstore = opt_arg();
1466             break;
1467         case OPT_NOCASTORE:
1468             noCAstore = 1;
1469             break;
1470         case OPT_CHAINCASTORE:
1471             chCAstore = opt_arg();
1472             break;
1473         case OPT_VERIFYCASTORE:
1474             vfyCAstore = opt_arg();
1475             break;
1476         case OPT_DANE_TLSA_DOMAIN:
1477             dane_tlsa_domain = opt_arg();
1478             break;
1479         case OPT_DANE_TLSA_RRDATA:
1480             if (dane_tlsa_rrset == NULL)
1481                 dane_tlsa_rrset = sk_OPENSSL_STRING_new_null();
1482             if (dane_tlsa_rrset == NULL ||
1483                 !sk_OPENSSL_STRING_push(dane_tlsa_rrset, opt_arg())) {
1484                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
1485                 goto end;
1486             }
1487             break;
1488         case OPT_DANE_EE_NO_NAME:
1489             dane_ee_no_name = 1;
1490             break;
1491         case OPT_NEXTPROTONEG:
1492 #ifndef OPENSSL_NO_NEXTPROTONEG
1493             next_proto_neg_in = opt_arg();
1494 #endif
1495             break;
1496         case OPT_ALPN:
1497             alpn_in = opt_arg();
1498             break;
1499         case OPT_SERVERINFO:
1500             p = opt_arg();
1501             len = strlen(p);
1502             for (start = 0, i = 0; i <= len; ++i) {
1503                 if (i == len || p[i] == ',') {
1504                     serverinfo_types[serverinfo_count] = atoi(p + start);
1505                     if (++serverinfo_count == MAX_SI_TYPES)
1506                         break;
1507                     start = i + 1;
1508                 }
1509             }
1510             break;
1511         case OPT_STARTTLS:
1512             if (!opt_pair(opt_arg(), services, &starttls_proto))
1513                 goto end;
1514             break;
1515         case OPT_SERVERNAME:
1516             servername = opt_arg();
1517             break;
1518         case OPT_NOSERVERNAME:
1519             noservername = 1;
1520             break;
1521         case OPT_USE_SRTP:
1522 #ifndef OPENSSL_NO_SRTP
1523             srtp_profiles = opt_arg();
1524 #endif
1525             break;
1526         case OPT_KEYMATEXPORT:
1527             keymatexportlabel = opt_arg();
1528             break;
1529         case OPT_KEYMATEXPORTLEN:
1530             keymatexportlen = atoi(opt_arg());
1531             break;
1532         case OPT_ASYNC:
1533             async = 1;
1534             break;
1535         case OPT_MAXFRAGLEN:
1536             len = atoi(opt_arg());
1537             switch (len) {
1538             case 512:
1539                 maxfraglen = TLSEXT_max_fragment_length_512;
1540                 break;
1541             case 1024:
1542                 maxfraglen = TLSEXT_max_fragment_length_1024;
1543                 break;
1544             case 2048:
1545                 maxfraglen = TLSEXT_max_fragment_length_2048;
1546                 break;
1547             case 4096:
1548                 maxfraglen = TLSEXT_max_fragment_length_4096;
1549                 break;
1550             default:
1551                 BIO_printf(bio_err,
1552                            "%s: Max Fragment Len %u is out of permitted values",
1553                            prog, len);
1554                 goto opthelp;
1555             }
1556             break;
1557         case OPT_MAX_SEND_FRAG:
1558             max_send_fragment = atoi(opt_arg());
1559             break;
1560         case OPT_SPLIT_SEND_FRAG:
1561             split_send_fragment = atoi(opt_arg());
1562             break;
1563         case OPT_MAX_PIPELINES:
1564             max_pipelines = atoi(opt_arg());
1565             break;
1566         case OPT_READ_BUF:
1567             read_buf_len = atoi(opt_arg());
1568             break;
1569         case OPT_KEYLOG_FILE:
1570             keylog_file = opt_arg();
1571             break;
1572         case OPT_EARLY_DATA:
1573             early_data_file = opt_arg();
1574             break;
1575         case OPT_ENABLE_PHA:
1576             enable_pha = 1;
1577             break;
1578         }
1579     }
1580
1581     if (count4or6 >= 2) {
1582         BIO_printf(bio_err, "%s: Can't use both -4 and -6\n", prog);
1583         goto opthelp;
1584     }
1585     if (noservername) {
1586         if (servername != NULL) {
1587             BIO_printf(bio_err,
1588                        "%s: Can't use -servername and -noservername together\n",
1589                        prog);
1590             goto opthelp;
1591         }
1592         if (dane_tlsa_domain != NULL) {
1593             BIO_printf(bio_err,
1594                "%s: Can't use -dane_tlsa_domain and -noservername together\n",
1595                prog);
1596             goto opthelp;
1597         }
1598     }
1599     argc = opt_num_rest();
1600     if (argc == 1) {
1601         /* If there's a positional argument, it's the equivalent of
1602          * OPT_CONNECT.
1603          * Don't allow -connect and a separate argument.
1604          */
1605         if (connectstr != NULL) {
1606             BIO_printf(bio_err,
1607                        "%s: must not provide both -connect option and target parameter\n",
1608                        prog);
1609             goto opthelp;
1610         }
1611         connect_type = use_inet;
1612         freeandcopy(&connectstr, *opt_rest());
1613     } else if (argc != 0) {
1614         goto opthelp;
1615     }
1616
1617 #ifndef OPENSSL_NO_NEXTPROTONEG
1618     if (min_version == TLS1_3_VERSION && next_proto_neg_in != NULL) {
1619         BIO_printf(bio_err, "Cannot supply -nextprotoneg with TLSv1.3\n");
1620         goto opthelp;
1621     }
1622 #endif
1623
1624     if (connectstr != NULL) {
1625         int res;
1626         char *tmp_host = host, *tmp_port = port;
1627
1628         res = BIO_parse_hostserv(connectstr, &host, &port, BIO_PARSE_PRIO_HOST);
1629         if (tmp_host != host)
1630             OPENSSL_free(tmp_host);
1631         if (tmp_port != port)
1632             OPENSSL_free(tmp_port);
1633         if (!res) {
1634             BIO_printf(bio_err,
1635                        "%s: -connect argument or target parameter malformed or ambiguous\n",
1636                        prog);
1637             goto end;
1638         }
1639     }
1640
1641     if (proxystr != NULL) {
1642         int res;
1643         char *tmp_host = host, *tmp_port = port;
1644
1645         if (host == NULL || port == NULL) {
1646             BIO_printf(bio_err, "%s: -proxy requires use of -connect or target parameter\n", prog);
1647             goto opthelp;
1648         }
1649
1650         /* Retain the original target host:port for use in the HTTP proxy connect string */
1651         thost = OPENSSL_strdup(host);
1652         tport = OPENSSL_strdup(port);
1653         if (thost == NULL || tport == NULL) {
1654             BIO_printf(bio_err, "%s: out of memory\n", prog);
1655             goto end;
1656         }
1657
1658         res = BIO_parse_hostserv(proxystr, &host, &port, BIO_PARSE_PRIO_HOST);
1659         if (tmp_host != host)
1660             OPENSSL_free(tmp_host);
1661         if (tmp_port != port)
1662             OPENSSL_free(tmp_port);
1663         if (!res) {
1664             BIO_printf(bio_err,
1665                        "%s: -proxy argument malformed or ambiguous\n", prog);
1666             goto end;
1667         }
1668     }
1669
1670     if (bindstr != NULL) {
1671         int res;
1672         res = BIO_parse_hostserv(bindstr, &bindhost, &bindport,
1673                                  BIO_PARSE_PRIO_HOST);
1674         if (!res) {
1675             BIO_printf(bio_err,
1676                        "%s: -bind argument parameter malformed or ambiguous\n",
1677                        prog);
1678             goto end;
1679         }
1680     }
1681
1682 #ifdef AF_UNIX
1683     if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) {
1684         BIO_printf(bio_err,
1685                    "Can't use unix sockets and datagrams together\n");
1686         goto end;
1687     }
1688 #endif
1689
1690 #ifndef OPENSSL_NO_SCTP
1691     if (protocol == IPPROTO_SCTP) {
1692         if (socket_type != SOCK_DGRAM) {
1693             BIO_printf(bio_err, "Can't use -sctp without DTLS\n");
1694             goto end;
1695         }
1696         /* SCTP is unusual. It uses DTLS over a SOCK_STREAM protocol */
1697         socket_type = SOCK_STREAM;
1698     }
1699 #endif
1700
1701 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1702     next_proto.status = -1;
1703     if (next_proto_neg_in) {
1704         next_proto.data =
1705             next_protos_parse(&next_proto.len, next_proto_neg_in);
1706         if (next_proto.data == NULL) {
1707             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1708             goto end;
1709         }
1710     } else
1711         next_proto.data = NULL;
1712 #endif
1713
1714     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1715         BIO_printf(bio_err, "Error getting private key password\n");
1716         goto end;
1717     }
1718
1719     if (!app_passwd(proxypassarg, NULL, &proxypass, NULL)) {
1720         BIO_printf(bio_err, "Error getting proxy password\n");
1721         goto end;
1722     }
1723
1724     if (proxypass != NULL && proxyuser == NULL) {
1725         BIO_printf(bio_err, "Error: Must specify proxy_user with proxy_pass\n");
1726         goto end;
1727     }
1728
1729     if (key_file == NULL)
1730         key_file = cert_file;
1731
1732     if (key_file != NULL) {
1733         key = load_key(key_file, key_format, 0, pass, e,
1734                        "client certificate private key file");
1735         if (key == NULL)
1736             goto end;
1737     }
1738
1739     if (cert_file != NULL) {
1740         cert = load_cert_pass(cert_file, cert_format, pass, "client certificate file");
1741         if (cert == NULL)
1742             goto end;
1743     }
1744
1745     if (chain_file != NULL) {
1746         if (!load_certs(chain_file, &chain, pass, "client certificate chain"))
1747             goto end;
1748     }
1749
1750     if (crl_file != NULL) {
1751         X509_CRL *crl;
1752         crl = load_crl(crl_file, crl_format, "CRL");
1753         if (crl == NULL)
1754             goto end;
1755         crls = sk_X509_CRL_new_null();
1756         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1757             BIO_puts(bio_err, "Error adding CRL\n");
1758             ERR_print_errors(bio_err);
1759             X509_CRL_free(crl);
1760             goto end;
1761         }
1762     }
1763
1764     if (!load_excert(&exc))
1765         goto end;
1766
1767     if (bio_c_out == NULL) {
1768         if (c_quiet && !c_debug) {
1769             bio_c_out = BIO_new(BIO_s_null());
1770             if (c_msg && bio_c_msg == NULL)
1771                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1772         } else if (bio_c_out == NULL)
1773             bio_c_out = dup_bio_out(FORMAT_TEXT);
1774     }
1775 #ifndef OPENSSL_NO_SRP
1776     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1777         BIO_printf(bio_err, "Error getting password\n");
1778         goto end;
1779     }
1780 #endif
1781
1782     ctx = SSL_CTX_new(meth);
1783     if (ctx == NULL) {
1784         ERR_print_errors(bio_err);
1785         goto end;
1786     }
1787
1788     SSL_CTX_clear_mode(ctx, SSL_MODE_AUTO_RETRY);
1789
1790     if (sdebug)
1791         ssl_ctx_security_debug(ctx, sdebug);
1792
1793     if (!config_ctx(cctx, ssl_args, ctx))
1794         goto end;
1795
1796     if (ssl_config != NULL) {
1797         if (SSL_CTX_config(ctx, ssl_config) == 0) {
1798             BIO_printf(bio_err, "Error using configuration \"%s\"\n",
1799                        ssl_config);
1800             ERR_print_errors(bio_err);
1801             goto end;
1802         }
1803     }
1804
1805 #ifndef OPENSSL_NO_SCTP
1806     if (protocol == IPPROTO_SCTP && sctp_label_bug == 1)
1807         SSL_CTX_set_mode(ctx, SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG);
1808 #endif
1809
1810     if (min_version != 0
1811         && SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
1812         goto end;
1813     if (max_version != 0
1814         && SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
1815         goto end;
1816
1817     if (ignore_unexpected_eof)
1818         SSL_CTX_set_options(ctx, SSL_OP_IGNORE_UNEXPECTED_EOF);
1819
1820     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1821         BIO_printf(bio_err, "Error setting verify params\n");
1822         ERR_print_errors(bio_err);
1823         goto end;
1824     }
1825
1826     if (async) {
1827         SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC);
1828     }
1829
1830     if (max_send_fragment > 0
1831         && !SSL_CTX_set_max_send_fragment(ctx, max_send_fragment)) {
1832         BIO_printf(bio_err, "%s: Max send fragment size %u is out of permitted range\n",
1833                    prog, max_send_fragment);
1834         goto end;
1835     }
1836
1837     if (split_send_fragment > 0
1838         && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1839         BIO_printf(bio_err, "%s: Split send fragment size %u is out of permitted range\n",
1840                    prog, split_send_fragment);
1841         goto end;
1842     }
1843
1844     if (max_pipelines > 0
1845         && !SSL_CTX_set_max_pipelines(ctx, max_pipelines)) {
1846         BIO_printf(bio_err, "%s: Max pipelines %u is out of permitted range\n",
1847                    prog, max_pipelines);
1848         goto end;
1849     }
1850
1851     if (read_buf_len > 0) {
1852         SSL_CTX_set_default_read_buffer_len(ctx, read_buf_len);
1853     }
1854
1855     if (maxfraglen > 0
1856             && !SSL_CTX_set_tlsext_max_fragment_length(ctx, maxfraglen)) {
1857         BIO_printf(bio_err,
1858                    "%s: Max Fragment Length code %u is out of permitted values"
1859                    "\n", prog, maxfraglen);
1860         goto end;
1861     }
1862
1863     if (!ssl_load_stores(ctx,
1864                          vfyCApath, vfyCAfile, vfyCAstore,
1865                          chCApath, chCAfile, chCAstore,
1866                          crls, crl_download)) {
1867         BIO_printf(bio_err, "Error loading store locations\n");
1868         ERR_print_errors(bio_err);
1869         goto end;
1870     }
1871     if (ReqCAfile != NULL) {
1872         STACK_OF(X509_NAME) *nm = sk_X509_NAME_new_null();
1873
1874         if (nm == NULL || !SSL_add_file_cert_subjects_to_stack(nm, ReqCAfile)) {
1875             sk_X509_NAME_pop_free(nm, X509_NAME_free);
1876             BIO_printf(bio_err, "Error loading CA names\n");
1877             ERR_print_errors(bio_err);
1878             goto end;
1879         }
1880         SSL_CTX_set0_CA_list(ctx, nm);
1881     }
1882 #ifndef OPENSSL_NO_ENGINE
1883     if (ssl_client_engine) {
1884         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1885             BIO_puts(bio_err, "Error setting client auth engine\n");
1886             ERR_print_errors(bio_err);
1887             ENGINE_free(ssl_client_engine);
1888             goto end;
1889         }
1890         ENGINE_free(ssl_client_engine);
1891     }
1892 #endif
1893
1894 #ifndef OPENSSL_NO_PSK
1895     if (psk_key != NULL) {
1896         if (c_debug)
1897             BIO_printf(bio_c_out, "PSK key given, setting client callback\n");
1898         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1899     }
1900 #endif
1901     if (psksessf != NULL) {
1902         BIO *stmp = BIO_new_file(psksessf, "r");
1903
1904         if (stmp == NULL) {
1905             BIO_printf(bio_err, "Can't open PSK session file %s\n", psksessf);
1906             ERR_print_errors(bio_err);
1907             goto end;
1908         }
1909         psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1910         BIO_free(stmp);
1911         if (psksess == NULL) {
1912             BIO_printf(bio_err, "Can't read PSK session file %s\n", psksessf);
1913             ERR_print_errors(bio_err);
1914             goto end;
1915         }
1916     }
1917     if (psk_key != NULL || psksess != NULL)
1918         SSL_CTX_set_psk_use_session_callback(ctx, psk_use_session_cb);
1919
1920 #ifndef OPENSSL_NO_SRTP
1921     if (srtp_profiles != NULL) {
1922         /* Returns 0 on success! */
1923         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1924             BIO_printf(bio_err, "Error setting SRTP profile\n");
1925             ERR_print_errors(bio_err);
1926             goto end;
1927         }
1928     }
1929 #endif
1930
1931     if (exc != NULL)
1932         ssl_ctx_set_excert(ctx, exc);
1933
1934 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1935     if (next_proto.data != NULL)
1936         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1937 #endif
1938     if (alpn_in) {
1939         size_t alpn_len;
1940         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1941
1942         if (alpn == NULL) {
1943             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1944             goto end;
1945         }
1946         /* Returns 0 on success! */
1947         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1948             BIO_printf(bio_err, "Error setting ALPN\n");
1949             goto end;
1950         }
1951         OPENSSL_free(alpn);
1952     }
1953
1954     for (i = 0; i < serverinfo_count; i++) {
1955         if (!SSL_CTX_add_client_custom_ext(ctx,
1956                                            serverinfo_types[i],
1957                                            NULL, NULL, NULL,
1958                                            serverinfo_cli_parse_cb, NULL)) {
1959             BIO_printf(bio_err,
1960                        "Warning: Unable to add custom extension %u, skipping\n",
1961                        serverinfo_types[i]);
1962         }
1963     }
1964
1965     if (state)
1966         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1967
1968 #ifndef OPENSSL_NO_CT
1969     /* Enable SCT processing, without early connection termination */
1970     if (ct_validation &&
1971         !SSL_CTX_enable_ct(ctx, SSL_CT_VALIDATION_PERMISSIVE)) {
1972         ERR_print_errors(bio_err);
1973         goto end;
1974     }
1975
1976     if (!ctx_set_ctlog_list_file(ctx, ctlog_file)) {
1977         if (ct_validation) {
1978             ERR_print_errors(bio_err);
1979             goto end;
1980         }
1981
1982         /*
1983          * If CT validation is not enabled, the log list isn't needed so don't
1984          * show errors or abort. We try to load it regardless because then we
1985          * can show the names of the logs any SCTs came from (SCTs may be seen
1986          * even with validation disabled).
1987          */
1988         ERR_clear_error();
1989     }
1990 #endif
1991
1992     SSL_CTX_set_verify(ctx, verify, verify_callback);
1993
1994     if (!ctx_set_verify_locations(ctx, CAfile, noCAfile, CApath, noCApath,
1995                                   CAstore, noCAstore)) {
1996         ERR_print_errors(bio_err);
1997         goto end;
1998     }
1999
2000     ssl_ctx_add_crls(ctx, crls, crl_download);
2001
2002     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
2003         goto end;
2004
2005     if (!noservername) {
2006         tlsextcbp.biodebug = bio_err;
2007         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
2008         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
2009     }
2010 # ifndef OPENSSL_NO_SRP
2011     if (srp_arg.srplogin) {
2012         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
2013             BIO_printf(bio_err, "Unable to set SRP username\n");
2014             goto end;
2015         }
2016         srp_arg.msg = c_msg;
2017         srp_arg.debug = c_debug;
2018         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
2019         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
2020         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
2021         if (c_msg || c_debug || srp_arg.amp == 0)
2022             SSL_CTX_set_srp_verify_param_callback(ctx,
2023                                                   ssl_srp_verify_param_cb);
2024     }
2025 # endif
2026
2027     if (dane_tlsa_domain != NULL) {
2028         if (SSL_CTX_dane_enable(ctx) <= 0) {
2029             BIO_printf(bio_err,
2030                        "%s: Error enabling DANE TLSA authentication.\n",
2031                        prog);
2032             ERR_print_errors(bio_err);
2033             goto end;
2034         }
2035     }
2036
2037     /*
2038      * In TLSv1.3 NewSessionTicket messages arrive after the handshake and can
2039      * come at any time. Therefore we use a callback to write out the session
2040      * when we know about it. This approach works for < TLSv1.3 as well.
2041      */
2042     SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT
2043                                         | SSL_SESS_CACHE_NO_INTERNAL_STORE);
2044     SSL_CTX_sess_set_new_cb(ctx, new_session_cb);
2045
2046     if (set_keylog_file(ctx, keylog_file))
2047         goto end;
2048
2049     con = SSL_new(ctx);
2050     if (con == NULL)
2051         goto end;
2052
2053     if (enable_pha)
2054         SSL_set_post_handshake_auth(con, 1);
2055
2056     if (sess_in != NULL) {
2057         SSL_SESSION *sess;
2058         BIO *stmp = BIO_new_file(sess_in, "r");
2059         if (stmp == NULL) {
2060             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
2061             ERR_print_errors(bio_err);
2062             goto end;
2063         }
2064         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
2065         BIO_free(stmp);
2066         if (sess == NULL) {
2067             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
2068             ERR_print_errors(bio_err);
2069             goto end;
2070         }
2071         if (!SSL_set_session(con, sess)) {
2072             BIO_printf(bio_err, "Can't set session\n");
2073             ERR_print_errors(bio_err);
2074             goto end;
2075         }
2076
2077         SSL_SESSION_free(sess);
2078     }
2079
2080     if (fallback_scsv)
2081         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
2082
2083     if (!noservername && (servername != NULL || dane_tlsa_domain == NULL)) {
2084         if (servername == NULL) {
2085             if(host == NULL || is_dNS_name(host))
2086                 servername = (host == NULL) ? "localhost" : host;
2087         }
2088         if (servername != NULL && !SSL_set_tlsext_host_name(con, servername)) {
2089             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
2090             ERR_print_errors(bio_err);
2091             goto end;
2092         }
2093     }
2094
2095     if (dane_tlsa_domain != NULL) {
2096         if (SSL_dane_enable(con, dane_tlsa_domain) <= 0) {
2097             BIO_printf(bio_err, "%s: Error enabling DANE TLSA "
2098                        "authentication.\n", prog);
2099             ERR_print_errors(bio_err);
2100             goto end;
2101         }
2102         if (dane_tlsa_rrset == NULL) {
2103             BIO_printf(bio_err, "%s: DANE TLSA authentication requires at "
2104                        "least one -dane_tlsa_rrdata option.\n", prog);
2105             goto end;
2106         }
2107         if (tlsa_import_rrset(con, dane_tlsa_rrset) <= 0) {
2108             BIO_printf(bio_err, "%s: Failed to import any TLSA "
2109                        "records.\n", prog);
2110             goto end;
2111         }
2112         if (dane_ee_no_name)
2113             SSL_dane_set_flags(con, DANE_FLAG_NO_DANE_EE_NAMECHECKS);
2114     } else if (dane_tlsa_rrset != NULL) {
2115         BIO_printf(bio_err, "%s: DANE TLSA authentication requires the "
2116                    "-dane_tlsa_domain option.\n", prog);
2117         goto end;
2118     }
2119
2120  re_start:
2121     if (init_client(&sock, host, port, bindhost, bindport, socket_family,
2122                     socket_type, protocol) == 0) {
2123         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
2124         BIO_closesocket(sock);
2125         goto end;
2126     }
2127     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", sock);
2128
2129     if (c_nbio) {
2130         if (!BIO_socket_nbio(sock, 1)) {
2131             ERR_print_errors(bio_err);
2132             goto end;
2133         }
2134         BIO_printf(bio_c_out, "Turned on non blocking io\n");
2135     }
2136 #ifndef OPENSSL_NO_DTLS
2137     if (isdtls) {
2138         union BIO_sock_info_u peer_info;
2139
2140 #ifndef OPENSSL_NO_SCTP
2141         if (protocol == IPPROTO_SCTP)
2142             sbio = BIO_new_dgram_sctp(sock, BIO_NOCLOSE);
2143         else
2144 #endif
2145             sbio = BIO_new_dgram(sock, BIO_NOCLOSE);
2146
2147         if ((peer_info.addr = BIO_ADDR_new()) == NULL) {
2148             BIO_printf(bio_err, "memory allocation failure\n");
2149             BIO_closesocket(sock);
2150             goto end;
2151         }
2152         if (!BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &peer_info)) {
2153             BIO_printf(bio_err, "getsockname:errno=%d\n",
2154                        get_last_socket_error());
2155             BIO_ADDR_free(peer_info.addr);
2156             BIO_closesocket(sock);
2157             goto end;
2158         }
2159
2160         (void)BIO_ctrl_set_connected(sbio, peer_info.addr);
2161         BIO_ADDR_free(peer_info.addr);
2162         peer_info.addr = NULL;
2163
2164         if (enable_timeouts) {
2165             timeout.tv_sec = 0;
2166             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2167             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2168
2169             timeout.tv_sec = 0;
2170             timeout.tv_usec = DGRAM_SND_TIMEOUT;
2171             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2172         }
2173
2174         if (socket_mtu) {
2175             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2176                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2177                            DTLS_get_link_min_mtu(con));
2178                 BIO_free(sbio);
2179                 goto shut;
2180             }
2181             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2182             if (!DTLS_set_link_mtu(con, socket_mtu)) {
2183                 BIO_printf(bio_err, "Failed to set MTU\n");
2184                 BIO_free(sbio);
2185                 goto shut;
2186             }
2187         } else {
2188             /* want to do MTU discovery */
2189             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2190         }
2191     } else
2192 #endif /* OPENSSL_NO_DTLS */
2193         sbio = BIO_new_socket(sock, BIO_NOCLOSE);
2194
2195     if (nbio_test) {
2196         BIO *test;
2197
2198         test = BIO_new(BIO_f_nbio_test());
2199         sbio = BIO_push(test, sbio);
2200     }
2201
2202     if (c_debug) {
2203         BIO_set_callback(sbio, bio_dump_callback);
2204         BIO_set_callback_arg(sbio, (char *)bio_c_out);
2205     }
2206     if (c_msg) {
2207 #ifndef OPENSSL_NO_SSL_TRACE
2208         if (c_msg == 2)
2209             SSL_set_msg_callback(con, SSL_trace);
2210         else
2211 #endif
2212             SSL_set_msg_callback(con, msg_cb);
2213         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
2214     }
2215
2216     if (c_tlsextdebug) {
2217         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2218         SSL_set_tlsext_debug_arg(con, bio_c_out);
2219     }
2220 #ifndef OPENSSL_NO_OCSP
2221     if (c_status_req) {
2222         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
2223         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
2224         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
2225     }
2226 #endif
2227
2228     SSL_set_bio(con, sbio, sbio);
2229     SSL_set_connect_state(con);
2230
2231     /* ok, lets connect */
2232     if (fileno_stdin() > SSL_get_fd(con))
2233         width = fileno_stdin() + 1;
2234     else
2235         width = SSL_get_fd(con) + 1;
2236
2237     read_tty = 1;
2238     write_tty = 0;
2239     tty_on = 0;
2240     read_ssl = 1;
2241     write_ssl = 1;
2242
2243     cbuf_len = 0;
2244     cbuf_off = 0;
2245     sbuf_len = 0;
2246     sbuf_off = 0;
2247
2248     switch ((PROTOCOL_CHOICE) starttls_proto) {
2249     case PROTO_OFF:
2250         break;
2251     case PROTO_LMTP:
2252     case PROTO_SMTP:
2253         {
2254             /*
2255              * This is an ugly hack that does a lot of assumptions. We do
2256              * have to handle multi-line responses which may come in a single
2257              * packet or not. We therefore have to use BIO_gets() which does
2258              * need a buffering BIO. So during the initial chitchat we do
2259              * push a buffering BIO into the chain that is removed again
2260              * later on to not disturb the rest of the s_client operation.
2261              */
2262             int foundit = 0;
2263             BIO *fbio = BIO_new(BIO_f_buffer());
2264
2265             BIO_push(fbio, sbio);
2266             /* Wait for multi-line response to end from LMTP or SMTP */
2267             do {
2268                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2269             } while (mbuf_len > 3 && mbuf[3] == '-');
2270             if (protohost == NULL)
2271                 protohost = "mail.example.com";
2272             if (starttls_proto == (int)PROTO_LMTP)
2273                 BIO_printf(fbio, "LHLO %s\r\n", protohost);
2274             else
2275                 BIO_printf(fbio, "EHLO %s\r\n", protohost);
2276             (void)BIO_flush(fbio);
2277             /*
2278              * Wait for multi-line response to end LHLO LMTP or EHLO SMTP
2279              * response.
2280              */
2281             do {
2282                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2283                 if (strstr(mbuf, "STARTTLS"))
2284                     foundit = 1;
2285             } while (mbuf_len > 3 && mbuf[3] == '-');
2286             (void)BIO_flush(fbio);
2287             BIO_pop(fbio);
2288             BIO_free(fbio);
2289             if (!foundit)
2290                 BIO_printf(bio_err,
2291                            "Didn't find STARTTLS in server response,"
2292                            " trying anyway...\n");
2293             BIO_printf(sbio, "STARTTLS\r\n");
2294             BIO_read(sbio, sbuf, BUFSIZZ);
2295         }
2296         break;
2297     case PROTO_POP3:
2298         {
2299             BIO_read(sbio, mbuf, BUFSIZZ);
2300             BIO_printf(sbio, "STLS\r\n");
2301             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
2302             if (mbuf_len < 0) {
2303                 BIO_printf(bio_err, "BIO_read failed\n");
2304                 goto end;
2305             }
2306         }
2307         break;
2308     case PROTO_IMAP:
2309         {
2310             int foundit = 0;
2311             BIO *fbio = BIO_new(BIO_f_buffer());
2312
2313             BIO_push(fbio, sbio);
2314             BIO_gets(fbio, mbuf, BUFSIZZ);
2315             /* STARTTLS command requires CAPABILITY... */
2316             BIO_printf(fbio, ". CAPABILITY\r\n");
2317             (void)BIO_flush(fbio);
2318             /* wait for multi-line CAPABILITY response */
2319             do {
2320                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2321                 if (strstr(mbuf, "STARTTLS"))
2322                     foundit = 1;
2323             }
2324             while (mbuf_len > 3 && mbuf[0] != '.');
2325             (void)BIO_flush(fbio);
2326             BIO_pop(fbio);
2327             BIO_free(fbio);
2328             if (!foundit)
2329                 BIO_printf(bio_err,
2330                            "Didn't find STARTTLS in server response,"
2331                            " trying anyway...\n");
2332             BIO_printf(sbio, ". STARTTLS\r\n");
2333             BIO_read(sbio, sbuf, BUFSIZZ);
2334         }
2335         break;
2336     case PROTO_FTP:
2337         {
2338             BIO *fbio = BIO_new(BIO_f_buffer());
2339
2340             BIO_push(fbio, sbio);
2341             /* wait for multi-line response to end from FTP */
2342             do {
2343                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2344             }
2345             while (mbuf_len > 3 && (!isdigit(mbuf[0]) || !isdigit(mbuf[1]) || !isdigit(mbuf[2]) || mbuf[3] != ' '));
2346             (void)BIO_flush(fbio);
2347             BIO_pop(fbio);
2348             BIO_free(fbio);
2349             BIO_printf(sbio, "AUTH TLS\r\n");
2350             BIO_read(sbio, sbuf, BUFSIZZ);
2351         }
2352         break;
2353     case PROTO_XMPP:
2354     case PROTO_XMPP_SERVER:
2355         {
2356             int seen = 0;
2357             BIO_printf(sbio, "<stream:stream "
2358                        "xmlns:stream='http://etherx.jabber.org/streams' "
2359                        "xmlns='jabber:%s' to='%s' version='1.0'>",
2360                        starttls_proto == PROTO_XMPP ? "client" : "server",
2361                        protohost ? protohost : host);
2362             seen = BIO_read(sbio, mbuf, BUFSIZZ);
2363             if (seen < 0) {
2364                 BIO_printf(bio_err, "BIO_read failed\n");
2365                 goto end;
2366             }
2367             mbuf[seen] = '\0';
2368             while (!strstr
2369                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
2370                    && !strstr(mbuf,
2371                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
2372             {
2373                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
2374
2375                 if (seen <= 0)
2376                     goto shut;
2377
2378                 mbuf[seen] = '\0';
2379             }
2380             BIO_printf(sbio,
2381                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
2382             seen = BIO_read(sbio, sbuf, BUFSIZZ);
2383             if (seen < 0) {
2384                 BIO_printf(bio_err, "BIO_read failed\n");
2385                 goto shut;
2386             }
2387             sbuf[seen] = '\0';
2388             if (!strstr(sbuf, "<proceed"))
2389                 goto shut;
2390             mbuf[0] = '\0';
2391         }
2392         break;
2393     case PROTO_TELNET:
2394         {
2395             static const unsigned char tls_do[] = {
2396                 /* IAC    DO   START_TLS */
2397                    255,   253, 46
2398             };
2399             static const unsigned char tls_will[] = {
2400                 /* IAC  WILL START_TLS */
2401                    255, 251, 46
2402             };
2403             static const unsigned char tls_follows[] = {
2404                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
2405                    255, 250, 46,       1,      255, 240
2406             };
2407             int bytes;
2408
2409             /* Telnet server should demand we issue START_TLS */
2410             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2411             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
2412                 goto shut;
2413             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
2414             BIO_write(sbio, tls_will, 3);
2415             BIO_write(sbio, tls_follows, 6);
2416             (void)BIO_flush(sbio);
2417             /* Telnet server also sent the FOLLOWS sub-command */
2418             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
2419             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
2420                 goto shut;
2421         }
2422         break;
2423     case PROTO_CONNECT:
2424         /* Here we must use the connect string target host & port */
2425         if (!OSSL_HTTP_proxy_connect(sbio, thost, tport, proxyuser, proxypass,
2426                                      0 /* no timeout */, bio_err, prog))
2427             goto shut;
2428         break;
2429     case PROTO_IRC:
2430         {
2431             int numeric;
2432             BIO *fbio = BIO_new(BIO_f_buffer());
2433
2434             BIO_push(fbio, sbio);
2435             BIO_printf(fbio, "STARTTLS\r\n");
2436             (void)BIO_flush(fbio);
2437             width = SSL_get_fd(con) + 1;
2438
2439             do {
2440                 numeric = 0;
2441
2442                 FD_ZERO(&readfds);
2443                 openssl_fdset(SSL_get_fd(con), &readfds);
2444                 timeout.tv_sec = S_CLIENT_IRC_READ_TIMEOUT;
2445                 timeout.tv_usec = 0;
2446                 /*
2447                  * If the IRCd doesn't respond within
2448                  * S_CLIENT_IRC_READ_TIMEOUT seconds, assume
2449                  * it doesn't support STARTTLS. Many IRCds
2450                  * will not give _any_ sort of response to a
2451                  * STARTTLS command when it's not supported.
2452                  */
2453                 if (!BIO_get_buffer_num_lines(fbio)
2454                     && !BIO_pending(fbio)
2455                     && !BIO_pending(sbio)
2456                     && select(width, (void *)&readfds, NULL, NULL,
2457                               &timeout) < 1) {
2458                     BIO_printf(bio_err,
2459                                "Timeout waiting for response (%d seconds).\n",
2460                                S_CLIENT_IRC_READ_TIMEOUT);
2461                     break;
2462                 }
2463
2464                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2465                 if (mbuf_len < 1 || sscanf(mbuf, "%*s %d", &numeric) != 1)
2466                     break;
2467                 /* :example.net 451 STARTTLS :You have not registered */
2468                 /* :example.net 421 STARTTLS :Unknown command */
2469                 if ((numeric == 451 || numeric == 421)
2470                     && strstr(mbuf, "STARTTLS") != NULL) {
2471                     BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2472                     break;
2473                 }
2474                 if (numeric == 691) {
2475                     BIO_printf(bio_err, "STARTTLS negotiation failed: ");
2476                     ERR_print_errors(bio_err);
2477                     break;
2478                 }
2479             } while (numeric != 670);
2480
2481             (void)BIO_flush(fbio);
2482             BIO_pop(fbio);
2483             BIO_free(fbio);
2484             if (numeric != 670) {
2485                 BIO_printf(bio_err, "Server does not support STARTTLS.\n");
2486                 ret = 1;
2487                 goto shut;
2488             }
2489         }
2490         break;
2491     case PROTO_MYSQL:
2492         {
2493             /* SSL request packet */
2494             static const unsigned char ssl_req[] = {
2495                 /* payload_length,   sequence_id */
2496                    0x20, 0x00, 0x00, 0x01,
2497                 /* payload */
2498                 /* capability flags, CLIENT_SSL always set */
2499                    0x85, 0xae, 0x7f, 0x00,
2500                 /* max-packet size */
2501                    0x00, 0x00, 0x00, 0x01,
2502                 /* character set */
2503                    0x21,
2504                 /* string[23] reserved (all [0]) */
2505                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2506                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2507                    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2508             };
2509             int bytes = 0;
2510             int ssl_flg = 0x800;
2511             int pos;
2512             const unsigned char *packet = (const unsigned char *)sbuf;
2513
2514             /* Receiving Initial Handshake packet. */
2515             bytes = BIO_read(sbio, (void *)packet, BUFSIZZ);
2516             if (bytes < 0) {
2517                 BIO_printf(bio_err, "BIO_read failed\n");
2518                 goto shut;
2519             /* Packet length[3], Packet number[1] + minimum payload[17] */
2520             } else if (bytes < 21) {
2521                 BIO_printf(bio_err, "MySQL packet too short.\n");
2522                 goto shut;
2523             } else if (bytes != (4 + packet[0] +
2524                                  (packet[1] << 8) +
2525                                  (packet[2] << 16))) {
2526                 BIO_printf(bio_err, "MySQL packet length does not match.\n");
2527                 goto shut;
2528             /* protocol version[1] */
2529             } else if (packet[4] != 0xA) {
2530                 BIO_printf(bio_err,
2531                            "Only MySQL protocol version 10 is supported.\n");
2532                 goto shut;
2533             }
2534
2535             pos = 5;
2536             /* server version[string+NULL] */
2537             for (;;) {
2538                 if (pos >= bytes) {
2539                     BIO_printf(bio_err, "Cannot confirm server version. ");
2540                     goto shut;
2541                 } else if (packet[pos++] == '\0') {
2542                     break;
2543                 }
2544             }
2545
2546             /* make sure we have at least 15 bytes left in the packet */
2547             if (pos + 15 > bytes) {
2548                 BIO_printf(bio_err,
2549                            "MySQL server handshake packet is broken.\n");
2550                 goto shut;
2551             }
2552
2553             pos += 12; /* skip over conn id[4] + SALT[8] */
2554             if (packet[pos++] != '\0') { /* verify filler */
2555                 BIO_printf(bio_err,
2556                            "MySQL packet is broken.\n");
2557                 goto shut;
2558             }
2559
2560             /* capability flags[2] */
2561             if (!((packet[pos] + (packet[pos + 1] << 8)) & ssl_flg)) {
2562                 BIO_printf(bio_err, "MySQL server does not support SSL.\n");
2563                 goto shut;
2564             }
2565
2566             /* Sending SSL Handshake packet. */
2567             BIO_write(sbio, ssl_req, sizeof(ssl_req));
2568             (void)BIO_flush(sbio);
2569         }
2570         break;
2571     case PROTO_POSTGRES:
2572         {
2573             static const unsigned char ssl_request[] = {
2574                 /* Length        SSLRequest */
2575                    0, 0, 0, 8,   4, 210, 22, 47
2576             };
2577             int bytes;
2578
2579             /* Send SSLRequest packet */
2580             BIO_write(sbio, ssl_request, 8);
2581             (void)BIO_flush(sbio);
2582
2583             /* Reply will be a single S if SSL is enabled */
2584             bytes = BIO_read(sbio, sbuf, BUFSIZZ);
2585             if (bytes != 1 || sbuf[0] != 'S')
2586                 goto shut;
2587         }
2588         break;
2589     case PROTO_NNTP:
2590         {
2591             int foundit = 0;
2592             BIO *fbio = BIO_new(BIO_f_buffer());
2593
2594             BIO_push(fbio, sbio);
2595             BIO_gets(fbio, mbuf, BUFSIZZ);
2596             /* STARTTLS command requires CAPABILITIES... */
2597             BIO_printf(fbio, "CAPABILITIES\r\n");
2598             (void)BIO_flush(fbio);
2599             BIO_gets(fbio, mbuf, BUFSIZZ);
2600             /* no point in trying to parse the CAPABILITIES response if there is none */
2601             if (strstr(mbuf, "101") != NULL) {
2602                 /* wait for multi-line CAPABILITIES response */
2603                 do {
2604                     mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2605                     if (strstr(mbuf, "STARTTLS"))
2606                         foundit = 1;
2607                 } while (mbuf_len > 1 && mbuf[0] != '.');
2608             }
2609             (void)BIO_flush(fbio);
2610             BIO_pop(fbio);
2611             BIO_free(fbio);
2612             if (!foundit)
2613                 BIO_printf(bio_err,
2614                            "Didn't find STARTTLS in server response,"
2615                            " trying anyway...\n");
2616             BIO_printf(sbio, "STARTTLS\r\n");
2617             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2618             if (mbuf_len < 0) {
2619                 BIO_printf(bio_err, "BIO_read failed\n");
2620                 goto end;
2621             }
2622             mbuf[mbuf_len] = '\0';
2623             if (strstr(mbuf, "382") == NULL) {
2624                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2625                 goto shut;
2626             }
2627         }
2628         break;
2629     case PROTO_SIEVE:
2630         {
2631             int foundit = 0;
2632             BIO *fbio = BIO_new(BIO_f_buffer());
2633
2634             BIO_push(fbio, sbio);
2635             /* wait for multi-line response to end from Sieve */
2636             do {
2637                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
2638                 /*
2639                  * According to RFC 5804 Â§ 1.7, capability
2640                  * is case-insensitive, make it uppercase
2641                  */
2642                 if (mbuf_len > 1 && mbuf[0] == '"') {
2643                     make_uppercase(mbuf);
2644                     if (strncmp(mbuf, "\"STARTTLS\"", 10) == 0)
2645                         foundit = 1;
2646                 }
2647             } while (mbuf_len > 1 && mbuf[0] == '"');
2648             (void)BIO_flush(fbio);
2649             BIO_pop(fbio);
2650             BIO_free(fbio);
2651             if (!foundit)
2652                 BIO_printf(bio_err,
2653                            "Didn't find STARTTLS in server response,"
2654                            " trying anyway...\n");
2655             BIO_printf(sbio, "STARTTLS\r\n");
2656             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2657             if (mbuf_len < 0) {
2658                 BIO_printf(bio_err, "BIO_read failed\n");
2659                 goto end;
2660             }
2661             mbuf[mbuf_len] = '\0';
2662             if (mbuf_len < 2) {
2663                 BIO_printf(bio_err, "STARTTLS failed: %s", mbuf);
2664                 goto shut;
2665             }
2666             /*
2667              * According to RFC 5804 Â§ 2.2, response codes are case-
2668              * insensitive, make it uppercase but preserve the response.
2669              */
2670             strncpy(sbuf, mbuf, 2);
2671             make_uppercase(sbuf);
2672             if (strncmp(sbuf, "OK", 2) != 0) {
2673                 BIO_printf(bio_err, "STARTTLS not supported: %s", mbuf);
2674                 goto shut;
2675             }
2676         }
2677         break;
2678     case PROTO_LDAP:
2679         {
2680             /* StartTLS Operation according to RFC 4511 */
2681             static char ldap_tls_genconf[] = "asn1=SEQUENCE:LDAPMessage\n"
2682                 "[LDAPMessage]\n"
2683                 "messageID=INTEGER:1\n"
2684                 "extendedReq=EXPLICIT:23A,IMPLICIT:0C,"
2685                 "FORMAT:ASCII,OCT:1.3.6.1.4.1.1466.20037\n";
2686             long errline = -1;
2687             char *genstr = NULL;
2688             int result = -1;
2689             ASN1_TYPE *atyp = NULL;
2690             BIO *ldapbio = BIO_new(BIO_s_mem());
2691             CONF *cnf = NCONF_new(NULL);
2692
2693             if (cnf == NULL) {
2694                 BIO_free(ldapbio);
2695                 goto end;
2696             }
2697             BIO_puts(ldapbio, ldap_tls_genconf);
2698             if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) {
2699                 BIO_free(ldapbio);
2700                 NCONF_free(cnf);
2701                 if (errline <= 0) {
2702                     BIO_printf(bio_err, "NCONF_load_bio failed\n");
2703                     goto end;
2704                 } else {
2705                     BIO_printf(bio_err, "Error on line %ld\n", errline);
2706                     goto end;
2707                 }
2708             }
2709             BIO_free(ldapbio);
2710             genstr = NCONF_get_string(cnf, "default", "asn1");
2711             if (genstr == NULL) {
2712                 NCONF_free(cnf);
2713                 BIO_printf(bio_err, "NCONF_get_string failed\n");
2714                 goto end;
2715             }
2716             atyp = ASN1_generate_nconf(genstr, cnf);
2717             if (atyp == NULL) {
2718                 NCONF_free(cnf);
2719                 BIO_printf(bio_err, "ASN1_generate_nconf failed\n");
2720                 goto end;
2721             }
2722             NCONF_free(cnf);
2723
2724             /* Send SSLRequest packet */
2725             BIO_write(sbio, atyp->value.sequence->data,
2726                       atyp->value.sequence->length);
2727             (void)BIO_flush(sbio);
2728             ASN1_TYPE_free(atyp);
2729
2730             mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
2731             if (mbuf_len < 0) {
2732                 BIO_printf(bio_err, "BIO_read failed\n");
2733                 goto end;
2734             }
2735             result = ldap_ExtendedResponse_parse(mbuf, mbuf_len);
2736             if (result < 0) {
2737                 BIO_printf(bio_err, "ldap_ExtendedResponse_parse failed\n");
2738                 goto shut;
2739             } else if (result > 0) {
2740                 BIO_printf(bio_err, "STARTTLS failed, LDAP Result Code: %i\n",
2741                            result);
2742                 goto shut;
2743             }
2744             mbuf_len = 0;
2745         }
2746         break;
2747     }
2748
2749     if (early_data_file != NULL
2750             && ((SSL_get0_session(con) != NULL
2751                  && SSL_SESSION_get_max_early_data(SSL_get0_session(con)) > 0)
2752                 || (psksess != NULL
2753                     && SSL_SESSION_get_max_early_data(psksess) > 0))) {
2754         BIO *edfile = BIO_new_file(early_data_file, "r");
2755         size_t readbytes, writtenbytes;
2756         int finish = 0;
2757
2758         if (edfile == NULL) {
2759             BIO_printf(bio_err, "Cannot open early data file\n");
2760             goto shut;
2761         }
2762
2763         while (!finish) {
2764             if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes))
2765                 finish = 1;
2766
2767             while (!SSL_write_early_data(con, cbuf, readbytes, &writtenbytes)) {
2768                 switch (SSL_get_error(con, 0)) {
2769                 case SSL_ERROR_WANT_WRITE:
2770                 case SSL_ERROR_WANT_ASYNC:
2771                 case SSL_ERROR_WANT_READ:
2772                     /* Just keep trying - busy waiting */
2773                     continue;
2774                 default:
2775                     BIO_printf(bio_err, "Error writing early data\n");
2776                     BIO_free(edfile);
2777                     ERR_print_errors(bio_err);
2778                     goto shut;
2779                 }
2780             }
2781         }
2782
2783         BIO_free(edfile);
2784     }
2785
2786     for (;;) {
2787         FD_ZERO(&readfds);
2788         FD_ZERO(&writefds);
2789
2790         if (SSL_is_dtls(con) && DTLSv1_get_timeout(con, &timeout))
2791             timeoutp = &timeout;
2792         else
2793             timeoutp = NULL;
2794
2795         if (!SSL_is_init_finished(con) && SSL_total_renegotiations(con) == 0
2796                 && SSL_get_key_update_type(con) == SSL_KEY_UPDATE_NONE) {
2797             in_init = 1;
2798             tty_on = 0;
2799         } else {
2800             tty_on = 1;
2801             if (in_init) {
2802                 in_init = 0;
2803
2804                 if (c_brief) {
2805                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
2806                     print_ssl_summary(con);
2807                 }
2808
2809                 print_stuff(bio_c_out, con, full_log);
2810                 if (full_log > 0)
2811                     full_log--;
2812
2813                 if (starttls_proto) {
2814                     BIO_write(bio_err, mbuf, mbuf_len);
2815                     /* We don't need to know any more */
2816                     if (!reconnect)
2817                         starttls_proto = PROTO_OFF;
2818                 }
2819
2820                 if (reconnect) {
2821                     reconnect--;
2822                     BIO_printf(bio_c_out,
2823                                "drop connection and then reconnect\n");
2824                     do_ssl_shutdown(con);
2825                     SSL_set_connect_state(con);
2826                     BIO_closesocket(SSL_get_fd(con));
2827                     goto re_start;
2828                 }
2829             }
2830         }
2831
2832         ssl_pending = read_ssl && SSL_has_pending(con);
2833
2834         if (!ssl_pending) {
2835 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
2836             if (tty_on) {
2837                 /*
2838                  * Note that select() returns when read _would not block_,
2839                  * and EOF satisfies that.  To avoid a CPU-hogging loop,
2840                  * set the flag so we exit.
2841                  */
2842                 if (read_tty && !at_eof)
2843                     openssl_fdset(fileno_stdin(), &readfds);
2844 #if !defined(OPENSSL_SYS_VMS)
2845                 if (write_tty)
2846                     openssl_fdset(fileno_stdout(), &writefds);
2847 #endif
2848             }
2849             if (read_ssl)
2850                 openssl_fdset(SSL_get_fd(con), &readfds);
2851             if (write_ssl)
2852                 openssl_fdset(SSL_get_fd(con), &writefds);
2853 #else
2854             if (!tty_on || !write_tty) {
2855                 if (read_ssl)
2856                     openssl_fdset(SSL_get_fd(con), &readfds);
2857                 if (write_ssl)
2858                     openssl_fdset(SSL_get_fd(con), &writefds);
2859             }
2860 #endif
2861
2862             /*
2863              * Note: under VMS with SOCKETSHR the second parameter is
2864              * currently of type (int *) whereas under other systems it is
2865              * (void *) if you don't have a cast it will choke the compiler:
2866              * if you do have a cast then you can either go for (int *) or
2867              * (void *).
2868              */
2869 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
2870             /*
2871              * Under Windows/DOS we make the assumption that we can always
2872              * write to the tty: therefore if we need to write to the tty we
2873              * just fall through. Otherwise we timeout the select every
2874              * second and see if there are any keypresses. Note: this is a
2875              * hack, in a proper Windows application we wouldn't do this.
2876              */
2877             i = 0;
2878             if (!write_tty) {
2879                 if (read_tty) {
2880                     tv.tv_sec = 1;
2881                     tv.tv_usec = 0;
2882                     i = select(width, (void *)&readfds, (void *)&writefds,
2883                                NULL, &tv);
2884                     if (!i && (!has_stdin_waiting() || !read_tty))
2885                         continue;
2886                 } else
2887                     i = select(width, (void *)&readfds, (void *)&writefds,
2888                                NULL, timeoutp);
2889             }
2890 #else
2891             i = select(width, (void *)&readfds, (void *)&writefds,
2892                        NULL, timeoutp);
2893 #endif
2894             if (i < 0) {
2895                 BIO_printf(bio_err, "bad select %d\n",
2896                            get_last_socket_error());
2897                 goto shut;
2898             }
2899         }
2900
2901         if (SSL_is_dtls(con) && DTLSv1_handle_timeout(con) > 0)
2902             BIO_printf(bio_err, "TIMEOUT occurred\n");
2903
2904         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2905             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
2906             switch (SSL_get_error(con, k)) {
2907             case SSL_ERROR_NONE:
2908                 cbuf_off += k;
2909                 cbuf_len -= k;
2910                 if (k <= 0)
2911                     goto end;
2912                 /* we have done a  write(con,NULL,0); */
2913                 if (cbuf_len <= 0) {
2914                     read_tty = 1;
2915                     write_ssl = 0;
2916                 } else {        /* if (cbuf_len > 0) */
2917
2918                     read_tty = 0;
2919                     write_ssl = 1;
2920                 }
2921                 break;
2922             case SSL_ERROR_WANT_WRITE:
2923                 BIO_printf(bio_c_out, "write W BLOCK\n");
2924                 write_ssl = 1;
2925                 read_tty = 0;
2926                 break;
2927             case SSL_ERROR_WANT_ASYNC:
2928                 BIO_printf(bio_c_out, "write A BLOCK\n");
2929                 wait_for_async(con);
2930                 write_ssl = 1;
2931                 read_tty = 0;
2932                 break;
2933             case SSL_ERROR_WANT_READ:
2934                 BIO_printf(bio_c_out, "write R BLOCK\n");
2935                 write_tty = 0;
2936                 read_ssl = 1;
2937                 write_ssl = 0;
2938                 break;
2939             case SSL_ERROR_WANT_X509_LOOKUP:
2940                 BIO_printf(bio_c_out, "write X BLOCK\n");
2941                 break;
2942             case SSL_ERROR_ZERO_RETURN:
2943                 if (cbuf_len != 0) {
2944                     BIO_printf(bio_c_out, "shutdown\n");
2945                     ret = 0;
2946                     goto shut;
2947                 } else {
2948                     read_tty = 1;
2949                     write_ssl = 0;
2950                     break;
2951                 }
2952
2953             case SSL_ERROR_SYSCALL:
2954                 if ((k != 0) || (cbuf_len != 0)) {
2955                     BIO_printf(bio_err, "write:errno=%d\n",
2956                                get_last_socket_error());
2957                     goto shut;
2958                 } else {
2959                     read_tty = 1;
2960                     write_ssl = 0;
2961                 }
2962                 break;
2963             case SSL_ERROR_WANT_ASYNC_JOB:
2964                 /* This shouldn't ever happen in s_client - treat as an error */
2965             case SSL_ERROR_SSL:
2966                 ERR_print_errors(bio_err);
2967                 goto shut;
2968             }
2969         }
2970 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_VMS)
2971         /* Assume Windows/DOS/BeOS can always write */
2972         else if (!ssl_pending && write_tty)
2973 #else
2974         else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2975 #endif
2976         {
2977 #ifdef CHARSET_EBCDIC
2978             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
2979 #endif
2980             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
2981
2982             if (i <= 0) {
2983                 BIO_printf(bio_c_out, "DONE\n");
2984                 ret = 0;
2985                 goto shut;
2986             }
2987
2988             sbuf_len -= i;
2989             sbuf_off += i;
2990             if (sbuf_len <= 0) {
2991                 read_ssl = 1;
2992                 write_tty = 0;
2993             }
2994         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
2995 #ifdef RENEG
2996             {
2997                 static int iiii;
2998                 if (++iiii == 52) {
2999                     SSL_renegotiate(con);
3000                     iiii = 0;
3001                 }
3002             }
3003 #endif
3004             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
3005
3006             switch (SSL_get_error(con, k)) {
3007             case SSL_ERROR_NONE:
3008                 if (k <= 0)
3009                     goto end;
3010                 sbuf_off = 0;
3011                 sbuf_len = k;
3012
3013                 read_ssl = 0;
3014                 write_tty = 1;
3015                 break;
3016             case SSL_ERROR_WANT_ASYNC:
3017                 BIO_printf(bio_c_out, "read A BLOCK\n");
3018                 wait_for_async(con);
3019                 write_tty = 0;
3020                 read_ssl = 1;
3021                 if ((read_tty == 0) && (write_ssl == 0))
3022                     write_ssl = 1;
3023                 break;
3024             case SSL_ERROR_WANT_WRITE:
3025                 BIO_printf(bio_c_out, "read W BLOCK\n");
3026                 write_ssl = 1;
3027                 read_tty = 0;
3028                 break;
3029             case SSL_ERROR_WANT_READ:
3030                 BIO_printf(bio_c_out, "read R BLOCK\n");
3031                 write_tty = 0;
3032                 read_ssl = 1;
3033                 if ((read_tty == 0) && (write_ssl == 0))
3034                     write_ssl = 1;
3035                 break;
3036             case SSL_ERROR_WANT_X509_LOOKUP:
3037                 BIO_printf(bio_c_out, "read X BLOCK\n");
3038                 break;
3039             case SSL_ERROR_SYSCALL:
3040                 ret = get_last_socket_error();
3041                 if (c_brief)
3042                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
3043                 else
3044                     BIO_printf(bio_err, "read:errno=%d\n", ret);
3045                 goto shut;
3046             case SSL_ERROR_ZERO_RETURN:
3047                 BIO_printf(bio_c_out, "closed\n");
3048                 ret = 0;
3049                 goto shut;
3050             case SSL_ERROR_WANT_ASYNC_JOB:
3051                 /* This shouldn't ever happen in s_client. Treat as an error */
3052             case SSL_ERROR_SSL:
3053                 ERR_print_errors(bio_err);
3054                 goto shut;
3055             }
3056         }
3057 /* OPENSSL_SYS_MSDOS includes OPENSSL_SYS_WINDOWS */
3058 #if defined(OPENSSL_SYS_MSDOS)
3059         else if (has_stdin_waiting())
3060 #else
3061         else if (FD_ISSET(fileno_stdin(), &readfds))
3062 #endif
3063         {
3064             if (crlf) {
3065                 int j, lf_num;
3066
3067                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
3068                 lf_num = 0;
3069                 /* both loops are skipped when i <= 0 */
3070                 for (j = 0; j < i; j++)
3071                     if (cbuf[j] == '\n')
3072                         lf_num++;
3073                 for (j = i - 1; j >= 0; j--) {
3074                     cbuf[j + lf_num] = cbuf[j];
3075                     if (cbuf[j] == '\n') {
3076                         lf_num--;
3077                         i++;
3078                         cbuf[j + lf_num] = '\r';
3079                     }
3080                 }
3081                 assert(lf_num == 0);
3082             } else
3083                 i = raw_read_stdin(cbuf, BUFSIZZ);
3084 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS)
3085             if (i == 0)
3086                 at_eof = 1;
3087 #endif
3088
3089             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
3090                 BIO_printf(bio_err, "DONE\n");
3091                 ret = 0;
3092                 goto shut;
3093             }
3094
3095             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
3096                 BIO_printf(bio_err, "RENEGOTIATING\n");
3097                 SSL_renegotiate(con);
3098                 cbuf_len = 0;
3099             } else if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
3100                     && cmdletters) {
3101                 BIO_printf(bio_err, "KEYUPDATE\n");
3102                 SSL_key_update(con,
3103                                cbuf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED
3104                                               : SSL_KEY_UPDATE_NOT_REQUESTED);
3105                 cbuf_len = 0;
3106             } else {
3107                 cbuf_len = i;
3108                 cbuf_off = 0;
3109 #ifdef CHARSET_EBCDIC
3110                 ebcdic2ascii(cbuf, cbuf, i);
3111 #endif
3112             }
3113
3114             write_ssl = 1;
3115             read_tty = 0;
3116         }
3117     }
3118
3119     ret = 0;
3120  shut:
3121     if (in_init)
3122         print_stuff(bio_c_out, con, full_log);
3123     do_ssl_shutdown(con);
3124
3125     /*
3126      * If we ended with an alert being sent, but still with data in the
3127      * network buffer to be read, then calling BIO_closesocket() will
3128      * result in a TCP-RST being sent. On some platforms (notably
3129      * Windows) then this will result in the peer immediately abandoning
3130      * the connection including any buffered alert data before it has
3131      * had a chance to be read. Shutting down the sending side first,
3132      * and then closing the socket sends TCP-FIN first followed by
3133      * TCP-RST. This seems to allow the peer to read the alert data.
3134      */
3135     shutdown(SSL_get_fd(con), 1); /* SHUT_WR */
3136     /*
3137      * We just said we have nothing else to say, but it doesn't mean that
3138      * the other side has nothing. It's even recommended to consume incoming
3139      * data. [In testing context this ensures that alerts are passed on...]
3140      */
3141     timeout.tv_sec = 0;
3142     timeout.tv_usec = 500000;  /* some extreme round-trip */
3143     do {
3144         FD_ZERO(&readfds);
3145         openssl_fdset(sock, &readfds);
3146     } while (select(sock + 1, &readfds, NULL, NULL, &timeout) > 0
3147              && BIO_read(sbio, sbuf, BUFSIZZ) > 0);
3148
3149     BIO_closesocket(SSL_get_fd(con));
3150  end:
3151     if (con != NULL) {
3152         if (prexit != 0)
3153             print_stuff(bio_c_out, con, 1);
3154         SSL_free(con);
3155     }
3156     SSL_SESSION_free(psksess);
3157 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3158     OPENSSL_free(next_proto.data);
3159 #endif
3160     SSL_CTX_free(ctx);
3161     set_keylog_file(NULL, NULL);
3162     X509_free(cert);
3163     sk_X509_CRL_pop_free(crls, X509_CRL_free);
3164     EVP_PKEY_free(key);
3165     sk_X509_pop_free(chain, X509_free);
3166     OPENSSL_free(pass);
3167 #ifndef OPENSSL_NO_SRP
3168     OPENSSL_free(srp_arg.srppassin);
3169 #endif
3170     OPENSSL_free(connectstr);
3171     OPENSSL_free(bindstr);
3172     OPENSSL_free(host);
3173     OPENSSL_free(port);
3174     OPENSSL_free(thost);
3175     OPENSSL_free(tport);
3176     X509_VERIFY_PARAM_free(vpm);
3177     ssl_excert_free(exc);
3178     sk_OPENSSL_STRING_free(ssl_args);
3179     sk_OPENSSL_STRING_free(dane_tlsa_rrset);
3180     SSL_CONF_CTX_free(cctx);
3181     OPENSSL_clear_free(cbuf, BUFSIZZ);
3182     OPENSSL_clear_free(sbuf, BUFSIZZ);
3183     OPENSSL_clear_free(mbuf, BUFSIZZ);
3184     clear_free(proxypass);
3185     release_engine(e);
3186     BIO_free(bio_c_out);
3187     bio_c_out = NULL;
3188     BIO_free(bio_c_msg);
3189     bio_c_msg = NULL;
3190     return ret;
3191 }
3192
3193 static void print_stuff(BIO *bio, SSL *s, int full)
3194 {
3195     X509 *peer = NULL;
3196     STACK_OF(X509) *sk;
3197     const SSL_CIPHER *c;
3198     EVP_PKEY *public_key;
3199     int i, istls13 = (SSL_version(s) == TLS1_3_VERSION);
3200     long verify_result;
3201 #ifndef OPENSSL_NO_COMP
3202     const COMP_METHOD *comp, *expansion;
3203 #endif
3204     unsigned char *exportedkeymat;
3205 #ifndef OPENSSL_NO_CT
3206     const SSL_CTX *ctx = SSL_get_SSL_CTX(s);
3207 #endif
3208
3209     if (full) {
3210         int got_a_chain = 0;
3211
3212         sk = SSL_get_peer_cert_chain(s);
3213         if (sk != NULL) {
3214             got_a_chain = 1;
3215
3216             BIO_printf(bio, "---\nCertificate chain\n");
3217             for (i = 0; i < sk_X509_num(sk); i++) {
3218                 BIO_printf(bio, "%2d s:", i);
3219                 X509_NAME_print_ex(bio, X509_get_subject_name(sk_X509_value(sk, i)), 0, get_nameopt());
3220                 BIO_puts(bio, "\n");
3221                 BIO_printf(bio, "   i:");
3222                 X509_NAME_print_ex(bio, X509_get_issuer_name(sk_X509_value(sk, i)), 0, get_nameopt());
3223                 BIO_puts(bio, "\n");
3224                 public_key = X509_get_pubkey(sk_X509_value(sk, i));
3225                 if (public_key != NULL) {
3226                     BIO_printf(bio, "   a:PKEY: %s, %d (bit); sigalg: %s\n",
3227                                OBJ_nid2sn(EVP_PKEY_base_id(public_key)),
3228                                EVP_PKEY_bits(public_key),
3229                                OBJ_nid2sn(X509_get_signature_nid(sk_X509_value(sk, i))));
3230                     EVP_PKEY_free(public_key);
3231                 }
3232                 BIO_printf(bio, "   v:NotBefore: ");
3233                 ASN1_TIME_print(bio, X509_get0_notBefore(sk_X509_value(sk, i)));
3234                 BIO_printf(bio, "; NotAfter: ");
3235                 ASN1_TIME_print(bio, X509_get0_notAfter(sk_X509_value(sk, i)));
3236                 BIO_puts(bio, "\n");
3237                 if (c_showcerts)
3238                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
3239             }
3240         }
3241
3242         BIO_printf(bio, "---\n");
3243         peer = SSL_get0_peer_certificate(s);
3244         if (peer != NULL) {
3245             BIO_printf(bio, "Server certificate\n");
3246
3247             /* Redundant if we showed the whole chain */
3248             if (!(c_showcerts && got_a_chain))
3249                 PEM_write_bio_X509(bio, peer);
3250             dump_cert_text(bio, peer);
3251         } else {
3252             BIO_printf(bio, "no peer certificate available\n");
3253         }
3254         print_ca_names(bio, s);
3255
3256         ssl_print_sigalgs(bio, s);
3257         ssl_print_tmp_key(bio, s);
3258
3259 #ifndef OPENSSL_NO_CT
3260         /*
3261          * When the SSL session is anonymous, or resumed via an abbreviated
3262          * handshake, no SCTs are provided as part of the handshake.  While in
3263          * a resumed session SCTs may be present in the session's certificate,
3264          * no callbacks are invoked to revalidate these, and in any case that
3265          * set of SCTs may be incomplete.  Thus it makes little sense to
3266          * attempt to display SCTs from a resumed session's certificate, and of
3267          * course none are associated with an anonymous peer.
3268          */
3269         if (peer != NULL && !SSL_session_reused(s) && SSL_ct_is_enabled(s)) {
3270             const STACK_OF(SCT) *scts = SSL_get0_peer_scts(s);
3271             int sct_count = scts != NULL ? sk_SCT_num(scts) : 0;
3272
3273             BIO_printf(bio, "---\nSCTs present (%i)\n", sct_count);
3274             if (sct_count > 0) {
3275                 const CTLOG_STORE *log_store = SSL_CTX_get0_ctlog_store(ctx);
3276
3277                 BIO_printf(bio, "---\n");
3278                 for (i = 0; i < sct_count; ++i) {
3279                     SCT *sct = sk_SCT_value(scts, i);
3280
3281                     BIO_printf(bio, "SCT validation status: %s\n",
3282                                SCT_validation_status_string(sct));
3283                     SCT_print(sct, bio, 0, log_store);
3284                     if (i < sct_count - 1)
3285                         BIO_printf(bio, "\n---\n");
3286                 }
3287                 BIO_printf(bio, "\n");
3288             }
3289         }
3290 #endif
3291
3292         BIO_printf(bio,
3293                    "---\nSSL handshake has read %ju bytes "
3294                    "and written %ju bytes\n",
3295                    BIO_number_read(SSL_get_rbio(s)),
3296                    BIO_number_written(SSL_get_wbio(s)));
3297     }
3298     print_verify_detail(s, bio);
3299     BIO_printf(bio, (SSL_session_reused(s) ? "---\nReused, " : "---\nNew, "));
3300     c = SSL_get_current_cipher(s);
3301     BIO_printf(bio, "%s, Cipher is %s\n",
3302                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
3303     if (peer != NULL) {
3304         EVP_PKEY *pktmp;
3305
3306         pktmp = X509_get0_pubkey(peer);
3307         BIO_printf(bio, "Server public key is %d bit\n",
3308                    EVP_PKEY_bits(pktmp));
3309     }
3310     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
3311                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
3312 #ifndef OPENSSL_NO_COMP
3313     comp = SSL_get_current_compression(s);
3314     expansion = SSL_get_current_expansion(s);
3315     BIO_printf(bio, "Compression: %s\n",
3316                comp ? SSL_COMP_get_name(comp) : "NONE");
3317     BIO_printf(bio, "Expansion: %s\n",
3318                expansion ? SSL_COMP_get_name(expansion) : "NONE");
3319 #endif
3320 #ifndef OPENSSL_NO_KTLS
3321     if (BIO_get_ktls_send(SSL_get_wbio(s)))
3322         BIO_printf(bio_err, "Using Kernel TLS for sending\n");
3323     if (BIO_get_ktls_recv(SSL_get_rbio(s)))
3324         BIO_printf(bio_err, "Using Kernel TLS for receiving\n");
3325 #endif
3326
3327     if (OSSL_TRACE_ENABLED(TLS)) {
3328         /* Print out local port of connection: useful for debugging */
3329         int sock;
3330         union BIO_sock_info_u info;
3331
3332         sock = SSL_get_fd(s);
3333         if ((info.addr = BIO_ADDR_new()) != NULL
3334             && BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
3335             BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
3336                        ntohs(BIO_ADDR_rawport(info.addr)));
3337         }
3338         BIO_ADDR_free(info.addr);
3339     }
3340
3341 #if !defined(OPENSSL_NO_NEXTPROTONEG)
3342     if (next_proto.status != -1) {
3343         const unsigned char *proto;
3344         unsigned int proto_len;
3345         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
3346         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
3347         BIO_write(bio, proto, proto_len);
3348         BIO_write(bio, "\n", 1);
3349     }
3350 #endif
3351     {
3352         const unsigned char *proto;
3353         unsigned int proto_len;
3354         SSL_get0_alpn_selected(s, &proto, &proto_len);
3355         if (proto_len > 0) {
3356             BIO_printf(bio, "ALPN protocol: ");
3357             BIO_write(bio, proto, proto_len);
3358             BIO_write(bio, "\n", 1);
3359         } else
3360             BIO_printf(bio, "No ALPN negotiated\n");
3361     }
3362
3363 #ifndef OPENSSL_NO_SRTP
3364     {
3365         SRTP_PROTECTION_PROFILE *srtp_profile =
3366             SSL_get_selected_srtp_profile(s);
3367
3368         if (srtp_profile)
3369             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
3370                        srtp_profile->name);
3371     }
3372 #endif
3373
3374     if (istls13) {
3375         switch (SSL_get_early_data_status(s)) {
3376         case SSL_EARLY_DATA_NOT_SENT:
3377             BIO_printf(bio, "Early data was not sent\n");
3378             break;
3379
3380         case SSL_EARLY_DATA_REJECTED:
3381             BIO_printf(bio, "Early data was rejected\n");
3382             break;
3383
3384         case SSL_EARLY_DATA_ACCEPTED:
3385             BIO_printf(bio, "Early data was accepted\n");
3386             break;
3387
3388         }
3389
3390         /*
3391          * We also print the verify results when we dump session information,
3392          * but in TLSv1.3 we may not get that right away (or at all) depending
3393          * on when we get a NewSessionTicket. Therefore we print it now as well.
3394          */
3395         verify_result = SSL_get_verify_result(s);
3396         BIO_printf(bio, "Verify return code: %ld (%s)\n", verify_result,
3397                    X509_verify_cert_error_string(verify_result));
3398     } else {
3399         /* In TLSv1.3 we do this on arrival of a NewSessionTicket */
3400         SSL_SESSION_print(bio, SSL_get_session(s));
3401     }
3402
3403     if (SSL_get_session(s) != NULL && keymatexportlabel != NULL) {
3404         BIO_printf(bio, "Keying material exporter:\n");
3405         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
3406         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
3407         exportedkeymat = app_malloc(keymatexportlen, "export key");
3408         if (!SSL_export_keying_material(s, exportedkeymat,
3409                                         keymatexportlen,
3410                                         keymatexportlabel,
3411                                         strlen(keymatexportlabel),
3412                                         NULL, 0, 0)) {
3413             BIO_printf(bio, "    Error\n");
3414         } else {
3415             BIO_printf(bio, "    Keying material: ");
3416             for (i = 0; i < keymatexportlen; i++)
3417                 BIO_printf(bio, "%02X", exportedkeymat[i]);
3418             BIO_printf(bio, "\n");
3419         }
3420         OPENSSL_free(exportedkeymat);
3421     }
3422     BIO_printf(bio, "---\n");
3423     /* flush, or debugging output gets mixed with http response */
3424     (void)BIO_flush(bio);
3425 }
3426
3427 # ifndef OPENSSL_NO_OCSP
3428 static int ocsp_resp_cb(SSL *s, void *arg)
3429 {
3430     const unsigned char *p;
3431     int len;
3432     OCSP_RESPONSE *rsp;
3433     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
3434     BIO_puts(arg, "OCSP response: ");
3435     if (p == NULL) {
3436         BIO_puts(arg, "no response sent\n");
3437         return 1;
3438     }
3439     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
3440     if (rsp == NULL) {
3441         BIO_puts(arg, "response parse error\n");
3442         BIO_dump_indent(arg, (char *)p, len, 4);
3443         return 0;
3444     }
3445     BIO_puts(arg, "\n======================================\n");
3446     OCSP_RESPONSE_print(arg, rsp, 0);
3447     BIO_puts(arg, "======================================\n");
3448     OCSP_RESPONSE_free(rsp);
3449     return 1;
3450 }
3451 # endif
3452
3453 static int ldap_ExtendedResponse_parse(const char *buf, long rem)
3454 {
3455     const unsigned char *cur, *end;
3456     long len;
3457     int tag, xclass, inf, ret = -1;
3458
3459     cur = (const unsigned char *)buf;
3460     end = cur + rem;
3461
3462     /*
3463      * From RFC 4511:
3464      *
3465      *    LDAPMessage ::= SEQUENCE {
3466      *         messageID       MessageID,
3467      *         protocolOp      CHOICE {
3468      *              ...
3469      *              extendedResp          ExtendedResponse,
3470      *              ... },
3471      *         controls       [0] Controls OPTIONAL }
3472      *
3473      *    ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
3474      *         COMPONENTS OF LDAPResult,
3475      *         responseName     [10] LDAPOID OPTIONAL,
3476      *         responseValue    [11] OCTET STRING OPTIONAL }
3477      *
3478      *    LDAPResult ::= SEQUENCE {
3479      *         resultCode         ENUMERATED {
3480      *              success                      (0),
3481      *              ...
3482      *              other                        (80),
3483      *              ...  },
3484      *         matchedDN          LDAPDN,
3485      *         diagnosticMessage  LDAPString,
3486      *         referral           [3] Referral OPTIONAL }
3487      */
3488
3489     /* pull SEQUENCE */
3490     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3491     if (inf != V_ASN1_CONSTRUCTED || tag != V_ASN1_SEQUENCE ||
3492         (rem = end - cur, len > rem)) {
3493         BIO_printf(bio_err, "Unexpected LDAP response\n");
3494         goto end;
3495     }
3496
3497     rem = len;  /* ensure that we don't overstep the SEQUENCE */
3498
3499     /* pull MessageID */
3500     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3501     if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_INTEGER ||
3502         (rem = end - cur, len > rem)) {
3503         BIO_printf(bio_err, "No MessageID\n");
3504         goto end;
3505     }
3506
3507     cur += len; /* shall we check for MessageId match or just skip? */
3508
3509     /* pull [APPLICATION 24] */
3510     rem = end - cur;
3511     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3512     if (inf != V_ASN1_CONSTRUCTED || xclass != V_ASN1_APPLICATION ||
3513         tag != 24) {
3514         BIO_printf(bio_err, "Not ExtendedResponse\n");
3515         goto end;
3516     }
3517
3518     /* pull resultCode */
3519     rem = end - cur;
3520     inf = ASN1_get_object(&cur, &len, &tag, &xclass, rem);
3521     if (inf != V_ASN1_UNIVERSAL || tag != V_ASN1_ENUMERATED || len == 0 ||
3522         (rem = end - cur, len > rem)) {
3523         BIO_printf(bio_err, "Not LDAPResult\n");
3524         goto end;
3525     }
3526
3527     /* len should always be one, but just in case... */
3528     for (ret = 0, inf = 0; inf < len; inf++) {
3529         ret <<= 8;
3530         ret |= cur[inf];
3531     }
3532     /* There is more data, but we don't care... */
3533  end:
3534     return ret;
3535 }
3536
3537 /*
3538  * Host dNS Name verifier: used for checking that the hostname is in dNS format
3539  * before setting it as SNI
3540  */
3541 static int is_dNS_name(const char *host)
3542 {
3543     const size_t MAX_LABEL_LENGTH = 63;
3544     size_t i;
3545     int isdnsname = 0;
3546     size_t length = strlen(host);
3547     size_t label_length = 0;
3548     int all_numeric = 1;
3549
3550     /*
3551      * Deviation from strict DNS name syntax, also check names with '_'
3552      * Check DNS name syntax, any '-' or '.' must be internal,
3553      * and on either side of each '.' we can't have a '-' or '.'.
3554      *
3555      * If the name has just one label, we don't consider it a DNS name.
3556      */
3557     for (i = 0; i < length && label_length < MAX_LABEL_LENGTH; ++i) {
3558         char c = host[i];
3559
3560         if ((c >= 'a' && c <= 'z')
3561             || (c >= 'A' && c <= 'Z')
3562             || c == '_') {
3563             label_length += 1;
3564             all_numeric = 0;
3565             continue;
3566         }
3567
3568         if (c >= '0' && c <= '9') {
3569             label_length += 1;
3570             continue;
3571         }
3572
3573         /* Dot and hyphen cannot be first or last. */
3574         if (i > 0 && i < length - 1) {
3575             if (c == '-') {
3576                 label_length += 1;
3577                 continue;
3578             }
3579             /*
3580              * Next to a dot the preceding and following characters must not be
3581              * another dot or a hyphen.  Otherwise, record that the name is
3582              * plausible, since it has two or more labels.
3583              */
3584             if (c == '.'
3585                 && host[i + 1] != '.'
3586                 && host[i - 1] != '-'
3587                 && host[i + 1] != '-') {
3588                 label_length = 0;
3589                 isdnsname = 1;
3590                 continue;
3591             }
3592         }
3593         isdnsname = 0;
3594         break;
3595     }
3596
3597     /* dNS name must not be all numeric and labels must be shorter than 64 characters. */
3598     isdnsname &= !all_numeric && !(label_length == MAX_LABEL_LENGTH);
3599
3600     return isdnsname;
3601 }
3602 #endif                          /* OPENSSL_NO_SOCK */