Fix usage of BIO_ctrl_set_connected
[openssl.git] / apps / s_client.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
59  *
60  * Redistribution and use in source and binary forms, with or without
61  * modification, are permitted provided that the following conditions
62  * are met:
63  *
64  * 1. Redistributions of source code must retain the above copyright
65  *    notice, this list of conditions and the following disclaimer.
66  *
67  * 2. Redistributions in binary form must reproduce the above copyright
68  *    notice, this list of conditions and the following disclaimer in
69  *    the documentation and/or other materials provided with the
70  *    distribution.
71  *
72  * 3. All advertising materials mentioning features or use of this
73  *    software must display the following acknowledgment:
74  *    "This product includes software developed by the OpenSSL Project
75  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76  *
77  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78  *    endorse or promote products derived from this software without
79  *    prior written permission. For written permission, please contact
80  *    openssl-core@openssl.org.
81  *
82  * 5. Products derived from this software may not be called "OpenSSL"
83  *    nor may "OpenSSL" appear in their names without prior written
84  *    permission of the OpenSSL Project.
85  *
86  * 6. Redistributions of any form whatsoever must retain the following
87  *    acknowledgment:
88  *    "This product includes software developed by the OpenSSL Project
89  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90  *
91  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
95  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102  * OF THE POSSIBILITY OF SUCH DAMAGE.
103  * ====================================================================
104  *
105  * This product includes cryptographic software written by Eric Young
106  * (eay@cryptsoft.com).  This product includes software written by Tim
107  * Hudson (tjh@cryptsoft.com).
108  *
109  */
110 /* ====================================================================
111  * Copyright 2005 Nokia. All rights reserved.
112  *
113  * The portions of the attached software ("Contribution") is developed by
114  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
115  * license.
116  *
117  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
118  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
119  * support (see RFC 4279) to OpenSSL.
120  *
121  * No patent licenses or other rights except those expressly stated in
122  * the OpenSSL open source license shall be deemed granted or received
123  * expressly, by implication, estoppel, or otherwise.
124  *
125  * No assurances are provided by Nokia that the Contribution does not
126  * infringe the patent or other intellectual property rights of any third
127  * party or that the license provides you with all the necessary rights
128  * to make use of the Contribution.
129  *
130  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
131  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
132  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
133  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
134  * OTHERWISE.
135  */
136
137 #include <ctype.h>
138 #include <stdio.h>
139 #include <stdlib.h>
140 #include <string.h>
141 #include <openssl/e_os2.h>
142
143 /*
144  * With IPv6, it looks like Digital has mixed up the proper order of
145  * recursive header file inclusion, resulting in the compiler complaining
146  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
147  * needed to have fileno() declared correctly...  So let's define u_int
148  */
149 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
150 # define __U_INT
151 typedef unsigned int u_int;
152 #endif
153
154 #define USE_SOCKETS
155 #include "apps.h"
156 #include <openssl/x509.h>
157 #include <openssl/ssl.h>
158 #include <openssl/err.h>
159 #include <openssl/pem.h>
160 #include <openssl/rand.h>
161 #include <openssl/ocsp.h>
162 #include <openssl/bn.h>
163 #ifndef OPENSSL_NO_SRP
164 # include <openssl/srp.h>
165 #endif
166 #include "s_apps.h"
167 #include "timeouts.h"
168
169 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
170 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
171 # undef FIONBIO
172 #endif
173
174 #define SSL_HOST_NAME   "localhost"
175
176 #undef BUFSIZZ
177 #define BUFSIZZ 1024*8
178
179 extern int verify_depth;
180 extern int verify_error;
181 extern int verify_return_error;
182 extern int verify_quiet;
183
184 static int c_nbio = 0;
185 static int c_tlsextdebug = 0;
186 static int c_status_req = 0;
187 static int c_Pause = 0;
188 static int c_debug = 0;
189 static int c_msg = 0;
190 static int c_showcerts = 0;
191 static char *keymatexportlabel = NULL;
192 static int keymatexportlen = 20;
193 static BIO *bio_c_out = NULL;
194 static BIO *bio_c_msg = NULL;
195 static int c_quiet = 0;
196 static int c_ign_eof = 0;
197 static int c_brief = 0;
198
199 static void print_stuff(BIO *berr, SSL *con, int full);
200 static int ocsp_resp_cb(SSL *s, void *arg);
201
202 #ifndef OPENSSL_NO_PSK
203 /* Default PSK identity and key */
204 static char *psk_identity = "Client_identity";
205 /*
206  * char *psk_key=NULL; by default PSK is not used
207  */
208
209 static unsigned int psk_client_cb(SSL *ssl, const char *hint, char *identity,
210                                   unsigned int max_identity_len,
211                                   unsigned char *psk,
212                                   unsigned int max_psk_len)
213 {
214     unsigned int psk_len = 0;
215     int ret;
216     BIGNUM *bn = NULL;
217
218     if (c_debug)
219         BIO_printf(bio_c_out, "psk_client_cb\n");
220     if (!hint) {
221         /* no ServerKeyExchange message */
222         if (c_debug)
223             BIO_printf(bio_c_out,
224                        "NULL received PSK identity hint, continuing anyway\n");
225     } else if (c_debug)
226         BIO_printf(bio_c_out, "Received PSK identity hint '%s'\n", hint);
227
228     /*
229      * lookup PSK identity and PSK key based on the given identity hint here
230      */
231     ret = BIO_snprintf(identity, max_identity_len, "%s", psk_identity);
232     if (ret < 0 || (unsigned int)ret > max_identity_len)
233         goto out_err;
234     if (c_debug)
235         BIO_printf(bio_c_out, "created identity '%s' len=%d\n", identity,
236                    ret);
237     ret = BN_hex2bn(&bn, psk_key);
238     if (!ret) {
239         BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
240                    psk_key);
241         BN_free(bn);
242         return 0;
243     }
244
245     if ((unsigned int)BN_num_bytes(bn) > max_psk_len) {
246         BIO_printf(bio_err,
247                    "psk buffer of callback is too small (%d) for key (%d)\n",
248                    max_psk_len, BN_num_bytes(bn));
249         BN_free(bn);
250         return 0;
251     }
252
253     psk_len = BN_bn2bin(bn, psk);
254     BN_free(bn);
255     if (psk_len == 0)
256         goto out_err;
257
258     if (c_debug)
259         BIO_printf(bio_c_out, "created PSK len=%d\n", psk_len);
260
261     return psk_len;
262  out_err:
263     if (c_debug)
264         BIO_printf(bio_err, "Error in PSK client callback\n");
265     return 0;
266 }
267 #endif
268
269 /* This is a context that we pass to callbacks */
270 typedef struct tlsextctx_st {
271     BIO *biodebug;
272     int ack;
273 } tlsextctx;
274
275 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
276 {
277     tlsextctx *p = (tlsextctx *) arg;
278     const char *hn = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
279     if (SSL_get_servername_type(s) != -1)
280         p->ack = !SSL_session_reused(s) && hn != NULL;
281     else
282         BIO_printf(bio_err, "Can't use SSL_get_servername\n");
283
284     return SSL_TLSEXT_ERR_OK;
285 }
286
287 #ifndef OPENSSL_NO_SRP
288
289 /* This is a context that we pass to all callbacks */
290 typedef struct srp_arg_st {
291     char *srppassin;
292     char *srplogin;
293     int msg;                    /* copy from c_msg */
294     int debug;                  /* copy from c_debug */
295     int amp;                    /* allow more groups */
296     int strength /* minimal size for N */ ;
297 } SRP_ARG;
298
299 # define SRP_NUMBER_ITERATIONS_FOR_PRIME 64
300
301 static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g)
302 {
303     BN_CTX *bn_ctx = BN_CTX_new();
304     BIGNUM *p = BN_new();
305     BIGNUM *r = BN_new();
306     int ret =
307         g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) &&
308         BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) &&
309         p != NULL && BN_rshift1(p, N) &&
310         /* p = (N-1)/2 */
311         BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) &&
312         r != NULL &&
313         /* verify g^((N-1)/2) == -1 (mod N) */
314         BN_mod_exp(r, g, p, N, bn_ctx) &&
315         BN_add_word(r, 1) && BN_cmp(r, N) == 0;
316
317     BN_free(r);
318     BN_free(p);
319     BN_CTX_free(bn_ctx);
320     return ret;
321 }
322
323 /*-
324  * This callback is used here for two purposes:
325  * - extended debugging
326  * - making some primality tests for unknown groups
327  * The callback is only called for a non default group.
328  *
329  * An application does not need the call back at all if
330  * only the stanard groups are used.  In real life situations,
331  * client and server already share well known groups,
332  * thus there is no need to verify them.
333  * Furthermore, in case that a server actually proposes a group that
334  * is not one of those defined in RFC 5054, it is more appropriate
335  * to add the group to a static list and then compare since
336  * primality tests are rather cpu consuming.
337  */
338
339 static int ssl_srp_verify_param_cb(SSL *s, void *arg)
340 {
341     SRP_ARG *srp_arg = (SRP_ARG *)arg;
342     BIGNUM *N = NULL, *g = NULL;
343
344     if (((N = SSL_get_srp_N(s)) == NULL) || ((g = SSL_get_srp_g(s)) == NULL))
345         return 0;
346     if (srp_arg->debug || srp_arg->msg || srp_arg->amp == 1) {
347         BIO_printf(bio_err, "SRP parameters:\n");
348         BIO_printf(bio_err, "\tN=");
349         BN_print(bio_err, N);
350         BIO_printf(bio_err, "\n\tg=");
351         BN_print(bio_err, g);
352         BIO_printf(bio_err, "\n");
353     }
354
355     if (SRP_check_known_gN_param(g, N))
356         return 1;
357
358     if (srp_arg->amp == 1) {
359         if (srp_arg->debug)
360             BIO_printf(bio_err,
361                        "SRP param N and g are not known params, going to check deeper.\n");
362
363         /*
364          * The srp_moregroups is a real debugging feature. Implementors
365          * should rather add the value to the known ones. The minimal size
366          * has already been tested.
367          */
368         if (BN_num_bits(g) <= BN_BITS && srp_Verify_N_and_g(N, g))
369             return 1;
370     }
371     BIO_printf(bio_err, "SRP param N and g rejected.\n");
372     return 0;
373 }
374
375 # define PWD_STRLEN 1024
376
377 static char *ssl_give_srp_client_pwd_cb(SSL *s, void *arg)
378 {
379     SRP_ARG *srp_arg = (SRP_ARG *)arg;
380     char *pass = app_malloc(PWD_STRLEN + 1, "SRP password buffer");
381     PW_CB_DATA cb_tmp;
382     int l;
383
384     cb_tmp.password = (char *)srp_arg->srppassin;
385     cb_tmp.prompt_info = "SRP user";
386     if ((l = password_callback(pass, PWD_STRLEN, 0, &cb_tmp)) < 0) {
387         BIO_printf(bio_err, "Can't read Password\n");
388         OPENSSL_free(pass);
389         return NULL;
390     }
391     *(pass + l) = '\0';
392
393     return pass;
394 }
395
396 #endif
397
398 static char *srtp_profiles = NULL;
399
400 #ifndef OPENSSL_NO_NEXTPROTONEG
401 /* This the context that we pass to next_proto_cb */
402 typedef struct tlsextnextprotoctx_st {
403     unsigned char *data;
404     unsigned short len;
405     int status;
406 } tlsextnextprotoctx;
407
408 static tlsextnextprotoctx next_proto;
409
410 static int next_proto_cb(SSL *s, unsigned char **out, unsigned char *outlen,
411                          const unsigned char *in, unsigned int inlen,
412                          void *arg)
413 {
414     tlsextnextprotoctx *ctx = arg;
415
416     if (!c_quiet) {
417         /* We can assume that |in| is syntactically valid. */
418         unsigned i;
419         BIO_printf(bio_c_out, "Protocols advertised by server: ");
420         for (i = 0; i < inlen;) {
421             if (i)
422                 BIO_write(bio_c_out, ", ", 2);
423             BIO_write(bio_c_out, &in[i + 1], in[i]);
424             i += in[i] + 1;
425         }
426         BIO_write(bio_c_out, "\n", 1);
427     }
428
429     ctx->status =
430         SSL_select_next_proto(out, outlen, in, inlen, ctx->data, ctx->len);
431     return SSL_TLSEXT_ERR_OK;
432 }
433 #endif                         /* ndef OPENSSL_NO_NEXTPROTONEG */
434
435 static int serverinfo_cli_parse_cb(SSL *s, unsigned int ext_type,
436                                    const unsigned char *in, size_t inlen,
437                                    int *al, void *arg)
438 {
439     char pem_name[100];
440     unsigned char ext_buf[4 + 65536];
441
442     /* Reconstruct the type/len fields prior to extension data */
443     ext_buf[0] = ext_type >> 8;
444     ext_buf[1] = ext_type & 0xFF;
445     ext_buf[2] = inlen >> 8;
446     ext_buf[3] = inlen & 0xFF;
447     memcpy(ext_buf + 4, in, inlen);
448
449     BIO_snprintf(pem_name, sizeof(pem_name), "SERVERINFO FOR EXTENSION %d",
450                  ext_type);
451     PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
452     return 1;
453 }
454
455 typedef enum OPTION_choice {
456     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
457     OPT_HOST, OPT_PORT, OPT_CONNECT, OPT_UNIX, OPT_XMPPHOST, OPT_VERIFY,
458     OPT_CERT, OPT_CRL, OPT_CRL_DOWNLOAD, OPT_SESS_OUT, OPT_SESS_IN,
459     OPT_CERTFORM, OPT_CRLFORM, OPT_VERIFY_RET_ERROR, OPT_VERIFY_QUIET,
460     OPT_BRIEF, OPT_PREXIT, OPT_CRLF, OPT_QUIET, OPT_NBIO,
461     OPT_SSL_CLIENT_ENGINE, OPT_RAND, OPT_IGN_EOF, OPT_NO_IGN_EOF,
462     OPT_PAUSE, OPT_DEBUG, OPT_TLSEXTDEBUG, OPT_STATUS, OPT_WDEBUG,
463     OPT_MSG, OPT_MSGFILE, OPT_ENGINE, OPT_TRACE, OPT_SECURITY_DEBUG,
464     OPT_SECURITY_DEBUG_VERBOSE, OPT_SHOWCERTS, OPT_NBIO_TEST, OPT_STATE,
465     OPT_PSK_IDENTITY, OPT_PSK, OPT_SRPUSER, OPT_SRPPASS, OPT_SRP_STRENGTH,
466     OPT_SRP_LATEUSER, OPT_SRP_MOREGROUPS, OPT_SSL3,
467     OPT_TLS1_2, OPT_TLS1_1, OPT_TLS1, OPT_DTLS, OPT_DTLS1,
468     OPT_DTLS1_2, OPT_TIMEOUT, OPT_MTU, OPT_KEYFORM, OPT_PASS,
469     OPT_CERT_CHAIN, OPT_CAPATH, OPT_NOCAPATH, OPT_CHAINCAPATH, OPT_VERIFYCAPATH,
470     OPT_KEY, OPT_RECONNECT, OPT_BUILD_CHAIN, OPT_CAFILE, OPT_NOCAFILE,
471     OPT_CHAINCAFILE, OPT_VERIFYCAFILE, OPT_NEXTPROTONEG, OPT_ALPN,
472     OPT_SERVERINFO, OPT_STARTTLS, OPT_SERVERNAME, OPT_JPAKE,
473     OPT_USE_SRTP, OPT_KEYMATEXPORT, OPT_KEYMATEXPORTLEN, OPT_SMTPHOST,
474     OPT_V_ENUM,
475     OPT_X_ENUM,
476     OPT_S_ENUM,
477     OPT_FALLBACKSCSV, OPT_NOCMDS, OPT_PROXY
478 } OPTION_CHOICE;
479
480 OPTIONS s_client_options[] = {
481     {"help", OPT_HELP, '-', "Display this summary"},
482     {"host", OPT_HOST, 's', "Use -connect instead"},
483     {"port", OPT_PORT, 'p', "Use -connect instead"},
484     {"connect", OPT_CONNECT, 's',
485      "TCP/IP where to connect (default is " SSL_HOST_NAME ":" PORT_STR ")"},
486     {"proxy", OPT_PROXY, 's',
487      "Connect to via specified proxy to the real server"},
488     {"unix", OPT_UNIX, 's', "Connect over unix domain sockets"},
489     {"verify", OPT_VERIFY, 'p', "Turn on peer certificate verification"},
490     {"cert", OPT_CERT, '<', "Certificate file to use, PEM format assumed"},
491     {"certform", OPT_CERTFORM, 'F',
492      "Certificate format (PEM or DER) PEM default"},
493     {"key", OPT_KEY, '<', "Private key file to use, if not in -cert file"},
494     {"keyform", OPT_KEYFORM, 'F', "Key format (PEM or DER) PEM default"},
495     {"pass", OPT_PASS, 's', "Private key file pass phrase source"},
496     {"CApath", OPT_CAPATH, '/', "PEM format directory of CA's"},
497     {"CAfile", OPT_CAFILE, '<', "PEM format file of CA's"},
498     {"no-CAfile", OPT_NOCAFILE, '-',
499      "Do not load the default certificates file"},
500     {"no-CApath", OPT_NOCAPATH, '-',
501      "Do not load certificates from the default certificates directory"},
502     {"reconnect", OPT_RECONNECT, '-',
503      "Drop and re-make the connection with the same Session-ID"},
504     {"pause", OPT_PAUSE, '-', "Sleep  after each read and write system call"},
505     {"showcerts", OPT_SHOWCERTS, '-', "Show all certificates in the chain"},
506     {"debug", OPT_DEBUG, '-', "Extra output"},
507     {"msg", OPT_MSG, '-', "Show protocol messages"},
508     {"msgfile", OPT_MSGFILE, '>'},
509     {"nbio_test", OPT_NBIO_TEST, '-', "More ssl protocol testing"},
510     {"state", OPT_STATE, '-', "Print the ssl states"},
511     {"crlf", OPT_CRLF, '-', "Convert LF from terminal into CRLF"},
512     {"quiet", OPT_QUIET, '-', "No s_client output"},
513     {"ign_eof", OPT_IGN_EOF, '-', "Ignore input eof (default when -quiet)"},
514     {"no_ign_eof", OPT_NO_IGN_EOF, '-', "Don't ignore input eof"},
515     {"tls1_2", OPT_TLS1_2, '-', "Just use TLSv1.2"},
516     {"tls1_1", OPT_TLS1_1, '-', "Just use TLSv1.1"},
517     {"tls1", OPT_TLS1, '-', "Just use TLSv1"},
518     {"starttls", OPT_STARTTLS, 's',
519      "Use the STARTTLS command before starting TLS"},
520     {"xmpphost", OPT_XMPPHOST, 's',
521      "Host to use with \"-starttls xmpp[-server]\""},
522     {"rand", OPT_RAND, 's',
523      "Load the file(s) into the random number generator"},
524     {"sess_out", OPT_SESS_OUT, '>', "File to write SSL session to"},
525     {"sess_in", OPT_SESS_IN, '<', "File to read SSL session from"},
526     {"use_srtp", OPT_USE_SRTP, 's',
527      "Offer SRTP key management with a colon-separated profile list"},
528     {"keymatexport", OPT_KEYMATEXPORT, 's',
529      "Export keying material using label"},
530     {"keymatexportlen", OPT_KEYMATEXPORTLEN, 'p',
531      "Export len bytes of keying material (default 20)"},
532     {"fallback_scsv", OPT_FALLBACKSCSV, '-', "Send the fallback SCSV"},
533     {"name", OPT_SMTPHOST, 's', "Hostname to use for \"-starttls smtp\""},
534     {"CRL", OPT_CRL, '<'},
535     {"crl_download", OPT_CRL_DOWNLOAD, '-'},
536     {"CRLform", OPT_CRLFORM, 'F'},
537     {"verify_return_error", OPT_VERIFY_RET_ERROR, '-'},
538     {"verify_quiet", OPT_VERIFY_QUIET, '-'},
539     {"brief", OPT_BRIEF, '-'},
540     {"prexit", OPT_PREXIT, '-'},
541     {"security_debug", OPT_SECURITY_DEBUG, '-'},
542     {"security_debug_verbose", OPT_SECURITY_DEBUG_VERBOSE, '-'},
543     {"cert_chain", OPT_CERT_CHAIN, '<'},
544     {"chainCApath", OPT_CHAINCAPATH, '/'},
545     {"verifyCApath", OPT_VERIFYCAPATH, '/'},
546     {"build_chain", OPT_BUILD_CHAIN, '-'},
547     {"chainCAfile", OPT_CHAINCAFILE, '<'},
548     {"verifyCAfile", OPT_VERIFYCAFILE, '<'},
549     {"nocommands", OPT_NOCMDS, '-', "Do not use interactive command letters"},
550     {"servername", OPT_SERVERNAME, 's',
551      "Set TLS extension servername in ClientHello"},
552     {"tlsextdebug", OPT_TLSEXTDEBUG, '-',
553      "Hex dump of all TLS extensions received"},
554     {"status", OPT_STATUS, '-', "Request certificate status from server"},
555     {"serverinfo", OPT_SERVERINFO, 's',
556      "types  Send empty ClientHello extensions (comma-separated numbers)"},
557     {"alpn", OPT_ALPN, 's',
558      "Enable ALPN extension, considering named protocols supported (comma-separated list)"},
559     OPT_S_OPTIONS,
560     OPT_V_OPTIONS,
561     OPT_X_OPTIONS,
562 #ifndef OPENSSL_NO_SSL3
563     {"ssl3", OPT_SSL3, '-', "Just use SSLv3"},
564 #endif
565 #ifndef OPENSSL_NO_DTLS1
566     {"dtls", OPT_DTLS, '-'},
567     {"dtls1", OPT_DTLS1, '-', "Just use DTLSv1"},
568     {"dtls1_2", OPT_DTLS1_2, '-'},
569     {"timeout", OPT_TIMEOUT, '-'},
570     {"mtu", OPT_MTU, 'p', "Set the link layer MTU"},
571 #endif
572 #ifndef OPENSSL_NO_SSL_TRACE
573     {"trace", OPT_TRACE, '-'},
574 #endif
575 #ifdef WATT32
576     {"wdebug", OPT_WDEBUG, '-', "WATT-32 tcp debugging"},
577 #endif
578 #ifdef FIONBIO
579     {"nbio", OPT_NBIO, '-', "Use non-blocking IO"},
580 #endif
581 #ifndef OPENSSL_NO_PSK
582     {"psk_identity", OPT_PSK_IDENTITY, 's', "PSK identity"},
583     {"psk", OPT_PSK, 's', "PSK in hex (without 0x)"},
584 # ifndef OPENSSL_NO_JPAKE
585     {"jpake", OPT_JPAKE, 's', "JPAKE secret to use"},
586 # endif
587 #endif
588 #ifndef OPENSSL_NO_SRP
589     {"srpuser", OPT_SRPUSER, 's', "SRP authentification for 'user'"},
590     {"srppass", OPT_SRPPASS, 's', "Password for 'user'"},
591     {"srp_lateuser", OPT_SRP_LATEUSER, '-',
592      "SRP username into second ClientHello message"},
593     {"srp_moregroups", OPT_SRP_MOREGROUPS, '-',
594      "Tolerate other than the known g N values."},
595     {"srp_strength", OPT_SRP_STRENGTH, 'p', "Minimal length in bits for N"},
596 #endif
597 #ifndef OPENSSL_NO_NEXTPROTONEG
598     {"nextprotoneg", OPT_NEXTPROTONEG, 's',
599      "Enable NPN extension, considering named protocols supported (comma-separated list)"},
600 #endif
601 #ifndef OPENSSL_NO_ENGINE
602     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
603     {"ssl_client_engine", OPT_SSL_CLIENT_ENGINE, 's'},
604 #endif
605     {NULL}
606 };
607
608 typedef enum PROTOCOL_choice {
609     PROTO_OFF,
610     PROTO_SMTP,
611     PROTO_POP3,
612     PROTO_IMAP,
613     PROTO_FTP,
614     PROTO_TELNET,
615     PROTO_XMPP,
616     PROTO_XMPP_SERVER,
617     PROTO_CONNECT
618 } PROTOCOL_CHOICE;
619
620 static OPT_PAIR services[] = {
621     {"smtp", PROTO_SMTP},
622     {"pop3", PROTO_POP3},
623     {"imap", PROTO_IMAP},
624     {"ftp", PROTO_FTP},
625     {"xmpp", PROTO_XMPP},
626     {"xmpp-server", PROTO_XMPP_SERVER},
627     {"telnet", PROTO_TELNET},
628     {NULL}
629 };
630
631 int s_client_main(int argc, char **argv)
632 {
633     BIO *sbio;
634     EVP_PKEY *key = NULL;
635     SSL *con = NULL;
636     SSL_CTX *ctx = NULL;
637     STACK_OF(X509) *chain = NULL;
638     X509 *cert = NULL;
639     X509_VERIFY_PARAM *vpm = NULL;
640     SSL_EXCERT *exc = NULL;
641     SSL_CONF_CTX *cctx = NULL;
642     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
643     STACK_OF(X509_CRL) *crls = NULL;
644     const SSL_METHOD *meth = TLS_client_method();
645     char *CApath = NULL, *CAfile = NULL, *cbuf = NULL, *sbuf = NULL;
646     char *mbuf = NULL, *proxystr = NULL, *connectstr = NULL;
647     char *cert_file = NULL, *key_file = NULL, *chain_file = NULL, *prog;
648     char *chCApath = NULL, *chCAfile = NULL, *host = SSL_HOST_NAME;
649     char *inrand = NULL;
650     char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
651     char *sess_in = NULL, *sess_out = NULL, *crl_file = NULL, *p;
652     char *jpake_secret = NULL, *xmpphost = NULL;
653     const char *unix_path = NULL;
654     const char *ehlo = "mail.example.com";
655     struct sockaddr peer;
656     struct timeval timeout, *timeoutp;
657     fd_set readfds, writefds;
658     int noCApath = 0, noCAfile = 0;
659     int build_chain = 0, cbuf_len, cbuf_off, cert_format = FORMAT_PEM;
660     int key_format = FORMAT_PEM, crlf = 0, full_log = 1, mbuf_len = 0;
661     int prexit = 0;
662     int enable_timeouts = 0, sdebug = 0, peerlen = sizeof peer;
663     int reconnect = 0, verify = SSL_VERIFY_NONE, vpmtouched = 0;
664     int ret = 1, in_init = 1, i, nbio_test = 0, s = -1, k, width, state = 0;
665     int sbuf_len, sbuf_off, socket_type = SOCK_STREAM, cmdletters = 1;
666     int starttls_proto = PROTO_OFF, crl_format = FORMAT_PEM, crl_download = 0;
667     int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending;
668     int fallback_scsv = 0;
669     long socket_mtu = 0, randamt = 0;
670     unsigned short port = PORT;
671     OPTION_CHOICE o;
672 #ifndef OPENSSL_NO_ENGINE
673     ENGINE *ssl_client_engine = NULL;
674 #endif
675     ENGINE *e = NULL;
676 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
677     struct timeval tv;
678 #endif
679     char *servername = NULL;
680     const char *alpn_in = NULL;
681     tlsextctx tlsextcbp = { NULL, 0 };
682 #define MAX_SI_TYPES 100
683     unsigned short serverinfo_types[MAX_SI_TYPES];
684     int serverinfo_count = 0, start = 0, len;
685 #ifndef OPENSSL_NO_NEXTPROTONEG
686     const char *next_proto_neg_in = NULL;
687 #endif
688 #ifndef OPENSSL_NO_SRP
689     char *srppass = NULL;
690     int srp_lateuser = 0;
691     SRP_ARG srp_arg = { NULL, NULL, 0, 0, 0, 1024 };
692 #endif
693
694     prog = opt_progname(argv[0]);
695     c_Pause = 0;
696     c_quiet = 0;
697     c_ign_eof = 0;
698     c_debug = 0;
699     c_msg = 0;
700     c_showcerts = 0;
701     c_nbio = 0;
702     verify_depth = 0;
703     verify_error = X509_V_OK;
704     vpm = X509_VERIFY_PARAM_new();
705     cbuf = app_malloc(BUFSIZZ, "cbuf");
706     sbuf = app_malloc(BUFSIZZ, "sbuf");
707     mbuf = app_malloc(BUFSIZZ, "mbuf");
708     cctx = SSL_CONF_CTX_new();
709
710     if (vpm == NULL || cctx == NULL) {
711         BIO_printf(bio_err, "%s: out of memory\n", prog);
712         goto end;
713     }
714
715     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT | SSL_CONF_FLAG_CMDLINE);
716
717     prog = opt_init(argc, argv, s_client_options);
718     while ((o = opt_next()) != OPT_EOF) {
719         switch (o) {
720         case OPT_EOF:
721         case OPT_ERR:
722  opthelp:
723             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
724             goto end;
725         case OPT_HELP:
726             opt_help(s_client_options);
727             ret = 0;
728             goto end;
729         case OPT_HOST:
730             host = opt_arg();
731             break;
732         case OPT_PORT:
733             port = atoi(opt_arg());
734             break;
735         case OPT_CONNECT:
736             connectstr = opt_arg();
737             break;
738         case OPT_PROXY:
739             proxystr = opt_arg();
740             starttls_proto = PROTO_CONNECT;
741             break;
742         case OPT_UNIX:
743             unix_path = opt_arg();
744             break;
745         case OPT_XMPPHOST:
746             xmpphost = opt_arg();
747             break;
748         case OPT_SMTPHOST:
749             ehlo = opt_arg();
750             break;
751         case OPT_VERIFY:
752             verify = SSL_VERIFY_PEER;
753             verify_depth = atoi(opt_arg());
754             if (!c_quiet)
755                 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
756             break;
757         case OPT_CERT:
758             cert_file = opt_arg();
759             break;
760         case OPT_CRL:
761             crl_file = opt_arg();
762             break;
763         case OPT_CRL_DOWNLOAD:
764             crl_download = 1;
765             break;
766         case OPT_SESS_OUT:
767             sess_out = opt_arg();
768             break;
769         case OPT_SESS_IN:
770             sess_in = opt_arg();
771             break;
772         case OPT_CERTFORM:
773             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &cert_format))
774                 goto opthelp;
775             break;
776         case OPT_CRLFORM:
777             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &crl_format))
778                 goto opthelp;
779             break;
780         case OPT_VERIFY_RET_ERROR:
781             verify_return_error = 1;
782             break;
783         case OPT_VERIFY_QUIET:
784             verify_quiet = 1;
785             break;
786         case OPT_BRIEF:
787             c_brief = verify_quiet = c_quiet = 1;
788             break;
789         case OPT_S_CASES:
790             if (ssl_args == NULL)
791                 ssl_args = sk_OPENSSL_STRING_new_null();
792             if (ssl_args == NULL
793                 || !sk_OPENSSL_STRING_push(ssl_args, opt_flag())
794                 || !sk_OPENSSL_STRING_push(ssl_args, opt_arg())) {
795                 BIO_printf(bio_err, "%s: Memory allocation failure\n", prog);
796                 goto end;
797             }
798             break;
799         case OPT_V_CASES:
800             if (!opt_verify(o, vpm))
801                 goto end;
802             vpmtouched++;
803             break;
804         case OPT_X_CASES:
805             if (!args_excert(o, &exc))
806                 goto end;
807             break;
808         case OPT_PREXIT:
809             prexit = 1;
810             break;
811         case OPT_CRLF:
812             crlf = 1;
813             break;
814         case OPT_QUIET:
815             c_quiet = c_ign_eof = 1;
816             break;
817         case OPT_NBIO:
818             c_nbio = 1;
819             break;
820         case OPT_NOCMDS:
821             cmdletters = 0;
822             break;
823         case OPT_ENGINE:
824             e = setup_engine(opt_arg(), 1);
825             break;
826         case OPT_SSL_CLIENT_ENGINE:
827 #ifndef OPENSSL_NO_ENGINE
828             ssl_client_engine = ENGINE_by_id(opt_arg());
829             if (ssl_client_engine == NULL) {
830                 BIO_printf(bio_err, "Error getting client auth engine\n");
831                 goto opthelp;
832             }
833             break;
834 #endif
835             break;
836         case OPT_RAND:
837             inrand = opt_arg();
838             break;
839         case OPT_IGN_EOF:
840             c_ign_eof = 1;
841             break;
842         case OPT_NO_IGN_EOF:
843             c_ign_eof = 0;
844             break;
845         case OPT_PAUSE:
846             c_Pause = 1;
847             break;
848         case OPT_DEBUG:
849             c_debug = 1;
850             break;
851         case OPT_TLSEXTDEBUG:
852             c_tlsextdebug = 1;
853             break;
854         case OPT_STATUS:
855             c_status_req = 1;
856             break;
857         case OPT_WDEBUG:
858 #ifdef WATT32
859             dbug_init();
860 #endif
861             break;
862         case OPT_MSG:
863             c_msg = 1;
864             break;
865         case OPT_MSGFILE:
866             bio_c_msg = BIO_new_file(opt_arg(), "w");
867             break;
868         case OPT_TRACE:
869 #ifndef OPENSSL_NO_SSL_TRACE
870             c_msg = 2;
871 #endif
872             break;
873         case OPT_SECURITY_DEBUG:
874             sdebug = 1;
875             break;
876         case OPT_SECURITY_DEBUG_VERBOSE:
877             sdebug = 2;
878             break;
879         case OPT_SHOWCERTS:
880             c_showcerts = 1;
881             break;
882         case OPT_NBIO_TEST:
883             nbio_test = 1;
884             break;
885         case OPT_STATE:
886             state = 1;
887             break;
888 #ifndef OPENSSL_NO_PSK
889         case OPT_PSK_IDENTITY:
890             psk_identity = opt_arg();
891             break;
892         case OPT_PSK:
893             for (p = psk_key = opt_arg(); *p; p++) {
894                 if (isxdigit(*p))
895                     continue;
896                 BIO_printf(bio_err, "Not a hex number '%s'\n", psk_key);
897                 goto end;
898             }
899             break;
900 #else
901         case OPT_PSK_IDENTITY:
902         case OPT_PSK:
903             break;
904 #endif
905 #ifndef OPENSSL_NO_SRP
906         case OPT_SRPUSER:
907             srp_arg.srplogin = opt_arg();
908             meth = TLSv1_client_method();
909             break;
910         case OPT_SRPPASS:
911             srppass = opt_arg();
912             meth = TLSv1_client_method();
913             break;
914         case OPT_SRP_STRENGTH:
915             srp_arg.strength = atoi(opt_arg());
916             BIO_printf(bio_err, "SRP minimal length for N is %d\n",
917                        srp_arg.strength);
918             meth = TLSv1_client_method();
919             break;
920         case OPT_SRP_LATEUSER:
921             srp_lateuser = 1;
922             meth = TLSv1_client_method();
923             break;
924         case OPT_SRP_MOREGROUPS:
925             srp_arg.amp = 1;
926             meth = TLSv1_client_method();
927             break;
928 #else
929         case OPT_SRPUSER:
930         case OPT_SRPPASS:
931         case OPT_SRP_STRENGTH:
932         case OPT_SRP_LATEUSER:
933         case OPT_SRP_MOREGROUPS:
934             break;
935 #endif
936         case OPT_SSL3:
937 #ifndef OPENSSL_NO_SSL3
938             meth = SSLv3_client_method();
939 #endif
940             break;
941         case OPT_TLS1_2:
942             meth = TLSv1_2_client_method();
943             break;
944         case OPT_TLS1_1:
945             meth = TLSv1_1_client_method();
946             break;
947         case OPT_TLS1:
948             meth = TLSv1_client_method();
949             break;
950 #ifndef OPENSSL_NO_DTLS1
951         case OPT_DTLS:
952             meth = DTLS_client_method();
953             socket_type = SOCK_DGRAM;
954             break;
955         case OPT_DTLS1:
956             meth = DTLSv1_client_method();
957             socket_type = SOCK_DGRAM;
958             break;
959         case OPT_DTLS1_2:
960             meth = DTLSv1_2_client_method();
961             socket_type = SOCK_DGRAM;
962             break;
963         case OPT_TIMEOUT:
964             enable_timeouts = 1;
965             break;
966         case OPT_MTU:
967             socket_mtu = atol(opt_arg());
968             break;
969 #else
970         case OPT_DTLS:
971         case OPT_DTLS1:
972         case OPT_DTLS1_2:
973         case OPT_TIMEOUT:
974         case OPT_MTU:
975             break;
976 #endif
977         case OPT_FALLBACKSCSV:
978             fallback_scsv = 1;
979             break;
980         case OPT_KEYFORM:
981             if (!opt_format(opt_arg(), OPT_FMT_PEMDER, &key_format))
982                 goto opthelp;
983             break;
984         case OPT_PASS:
985             passarg = opt_arg();
986             break;
987         case OPT_CERT_CHAIN:
988             chain_file = opt_arg();
989             break;
990         case OPT_KEY:
991             key_file = opt_arg();
992             break;
993         case OPT_RECONNECT:
994             reconnect = 5;
995             break;
996         case OPT_CAPATH:
997             CApath = opt_arg();
998             break;
999         case OPT_NOCAPATH:
1000             noCApath = 1;
1001             break;
1002         case OPT_CHAINCAPATH:
1003             chCApath = opt_arg();
1004             break;
1005         case OPT_VERIFYCAPATH:
1006             vfyCApath = opt_arg();
1007             break;
1008         case OPT_BUILD_CHAIN:
1009             build_chain = 1;
1010             break;
1011         case OPT_CAFILE:
1012             CAfile = opt_arg();
1013             break;
1014         case OPT_NOCAFILE:
1015             noCAfile = 1;
1016             break;
1017         case OPT_CHAINCAFILE:
1018             chCAfile = opt_arg();
1019             break;
1020         case OPT_VERIFYCAFILE:
1021             vfyCAfile = opt_arg();
1022             break;
1023         case OPT_NEXTPROTONEG:
1024             next_proto_neg_in = opt_arg();
1025             break;
1026         case OPT_ALPN:
1027             alpn_in = opt_arg();
1028             break;
1029         case OPT_SERVERINFO:
1030             p = opt_arg();
1031             len = strlen(p);
1032             for (start = 0, i = 0; i <= len; ++i) {
1033                 if (i == len || p[i] == ',') {
1034                     serverinfo_types[serverinfo_count] = atoi(p + start);
1035                     if (++serverinfo_count == MAX_SI_TYPES)
1036                         break;
1037                     start = i + 1;
1038                 }
1039             }
1040             break;
1041         case OPT_STARTTLS:
1042             if (!opt_pair(opt_arg(), services, &starttls_proto))
1043                 goto end;
1044         case OPT_SERVERNAME:
1045             servername = opt_arg();
1046             break;
1047         case OPT_JPAKE:
1048 #ifndef OPENSSL_NO_JPAKE
1049             jpake_secret = opt_arg();
1050 #endif
1051             break;
1052         case OPT_USE_SRTP:
1053             srtp_profiles = opt_arg();
1054             break;
1055         case OPT_KEYMATEXPORT:
1056             keymatexportlabel = opt_arg();
1057             break;
1058         case OPT_KEYMATEXPORTLEN:
1059             keymatexportlen = atoi(opt_arg());
1060             break;
1061         }
1062     }
1063     argc = opt_num_rest();
1064     argv = opt_rest();
1065
1066     if (proxystr) {
1067         if (connectstr == NULL) {
1068             BIO_printf(bio_err, "%s: -proxy requires use of -connect\n", prog);
1069             goto opthelp;
1070         }
1071         if (!extract_host_port(proxystr, &host, NULL, &port))
1072             goto end;
1073     }
1074     else if (connectstr != NULL
1075             && !extract_host_port(connectstr, &host, NULL, &port))
1076         goto end;
1077
1078     if (unix_path && (socket_type != SOCK_STREAM)) {
1079         BIO_printf(bio_err,
1080                    "Can't use unix sockets and datagrams together\n");
1081         goto end;
1082     }
1083 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1084     if (jpake_secret) {
1085         if (psk_key) {
1086             BIO_printf(bio_err, "Can't use JPAKE and PSK together\n");
1087             goto end;
1088         }
1089         psk_identity = "JPAKE";
1090     }
1091 #endif
1092
1093 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1094     next_proto.status = -1;
1095     if (next_proto_neg_in) {
1096         next_proto.data =
1097             next_protos_parse(&next_proto.len, next_proto_neg_in);
1098         if (next_proto.data == NULL) {
1099             BIO_printf(bio_err, "Error parsing -nextprotoneg argument\n");
1100             goto end;
1101         }
1102     } else
1103         next_proto.data = NULL;
1104 #endif
1105
1106     if (!app_passwd(passarg, NULL, &pass, NULL)) {
1107         BIO_printf(bio_err, "Error getting password\n");
1108         goto end;
1109     }
1110
1111     if (key_file == NULL)
1112         key_file = cert_file;
1113
1114     if (key_file) {
1115         key = load_key(key_file, key_format, 0, pass, e,
1116                        "client certificate private key file");
1117         if (key == NULL) {
1118             ERR_print_errors(bio_err);
1119             goto end;
1120         }
1121     }
1122
1123     if (cert_file) {
1124         cert = load_cert(cert_file, cert_format,
1125                          NULL, e, "client certificate file");
1126         if (cert == NULL) {
1127             ERR_print_errors(bio_err);
1128             goto end;
1129         }
1130     }
1131
1132     if (chain_file) {
1133         chain = load_certs(chain_file, FORMAT_PEM,
1134                            NULL, e, "client certificate chain");
1135         if (!chain)
1136             goto end;
1137     }
1138
1139     if (crl_file) {
1140         X509_CRL *crl;
1141         crl = load_crl(crl_file, crl_format);
1142         if (crl == NULL) {
1143             BIO_puts(bio_err, "Error loading CRL\n");
1144             ERR_print_errors(bio_err);
1145             goto end;
1146         }
1147         crls = sk_X509_CRL_new_null();
1148         if (crls == NULL || !sk_X509_CRL_push(crls, crl)) {
1149             BIO_puts(bio_err, "Error adding CRL\n");
1150             ERR_print_errors(bio_err);
1151             X509_CRL_free(crl);
1152             goto end;
1153         }
1154     }
1155
1156     if (!load_excert(&exc))
1157         goto end;
1158
1159     if (!app_RAND_load_file(NULL, 1) && inrand == NULL
1160         && !RAND_status()) {
1161         BIO_printf(bio_err,
1162                    "warning, not much extra random data, consider using the -rand option\n");
1163     }
1164     if (inrand != NULL) {
1165         randamt = app_RAND_load_files(inrand);
1166         BIO_printf(bio_err, "%ld semi-random bytes loaded\n", randamt);
1167     }
1168
1169     if (bio_c_out == NULL) {
1170         if (c_quiet && !c_debug) {
1171             bio_c_out = BIO_new(BIO_s_null());
1172             if (c_msg && !bio_c_msg)
1173                 bio_c_msg = dup_bio_out(FORMAT_TEXT);
1174         } else if (bio_c_out == NULL)
1175             bio_c_out = dup_bio_out(FORMAT_TEXT);
1176     }
1177 #ifndef OPENSSL_NO_SRP
1178     if (!app_passwd(srppass, NULL, &srp_arg.srppassin, NULL)) {
1179         BIO_printf(bio_err, "Error getting password\n");
1180         goto end;
1181     }
1182 #endif
1183
1184     ctx = SSL_CTX_new(meth);
1185     if (ctx == NULL) {
1186         ERR_print_errors(bio_err);
1187         goto end;
1188     }
1189
1190     if (sdebug)
1191         ssl_ctx_security_debug(ctx, sdebug);
1192
1193     if (vpmtouched && !SSL_CTX_set1_param(ctx, vpm)) {
1194         BIO_printf(bio_err, "Error setting verify params\n");
1195         ERR_print_errors(bio_err);
1196         goto end;
1197     }
1198
1199     if (!config_ctx(cctx, ssl_args, ctx, 1, jpake_secret == NULL))
1200         goto end;
1201
1202     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1203                          crls, crl_download)) {
1204         BIO_printf(bio_err, "Error loading store locations\n");
1205         ERR_print_errors(bio_err);
1206         goto end;
1207     }
1208 #ifndef OPENSSL_NO_ENGINE
1209     if (ssl_client_engine) {
1210         if (!SSL_CTX_set_client_cert_engine(ctx, ssl_client_engine)) {
1211             BIO_puts(bio_err, "Error setting client auth engine\n");
1212             ERR_print_errors(bio_err);
1213             ENGINE_free(ssl_client_engine);
1214             goto end;
1215         }
1216         ENGINE_free(ssl_client_engine);
1217     }
1218 #endif
1219
1220 #ifndef OPENSSL_NO_PSK
1221     if (psk_key != NULL || jpake_secret) {
1222         if (c_debug)
1223             BIO_printf(bio_c_out,
1224                        "PSK key given or JPAKE in use, setting client callback\n");
1225         SSL_CTX_set_psk_client_callback(ctx, psk_client_cb);
1226     }
1227 #endif
1228 #ifndef OPENSSL_NO_SRTP
1229     if (srtp_profiles != NULL) {
1230         /* Returns 0 on success! */
1231         if (SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles) != 0) {
1232             BIO_printf(bio_err, "Error setting SRTP profile\n");
1233             ERR_print_errors(bio_err);
1234             goto end;
1235         }
1236     }
1237 #endif
1238
1239     if (exc)
1240         ssl_ctx_set_excert(ctx, exc);
1241
1242 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1243     if (next_proto.data)
1244         SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto);
1245 #endif
1246     if (alpn_in) {
1247         unsigned short alpn_len;
1248         unsigned char *alpn = next_protos_parse(&alpn_len, alpn_in);
1249
1250         if (alpn == NULL) {
1251             BIO_printf(bio_err, "Error parsing -alpn argument\n");
1252             goto end;
1253         }
1254         /* Returns 0 on success! */
1255         if (SSL_CTX_set_alpn_protos(ctx, alpn, alpn_len) != 0) {
1256            BIO_printf(bio_err, "Error setting ALPN\n");
1257             goto end;
1258         }
1259         OPENSSL_free(alpn);
1260     }
1261
1262     for (i = 0; i < serverinfo_count; i++) {
1263         if (!SSL_CTX_add_client_custom_ext(ctx,
1264                                            serverinfo_types[i],
1265                                            NULL, NULL, NULL,
1266                                            serverinfo_cli_parse_cb, NULL)) {
1267             BIO_printf(bio_err,
1268                     "Warning: Unable to add custom extension %u, skipping\n",
1269                     serverinfo_types[i]);
1270         }
1271     }
1272
1273     if (state)
1274         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1275
1276     SSL_CTX_set_verify(ctx, verify, verify_callback);
1277
1278     if (!ctx_set_verify_locations(ctx, CAfile, CApath, noCAfile, noCApath)) {
1279         ERR_print_errors(bio_err);
1280         goto end;
1281     }
1282
1283     ssl_ctx_add_crls(ctx, crls, crl_download);
1284
1285     if (!set_cert_key_stuff(ctx, cert, key, chain, build_chain))
1286         goto end;
1287
1288     if (servername != NULL) {
1289         tlsextcbp.biodebug = bio_err;
1290         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1291         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1292     }
1293 # ifndef OPENSSL_NO_SRP
1294     if (srp_arg.srplogin) {
1295         if (!srp_lateuser && !SSL_CTX_set_srp_username(ctx, srp_arg.srplogin)) {
1296             BIO_printf(bio_err, "Unable to set SRP username\n");
1297             goto end;
1298         }
1299         srp_arg.msg = c_msg;
1300         srp_arg.debug = c_debug;
1301         SSL_CTX_set_srp_cb_arg(ctx, &srp_arg);
1302         SSL_CTX_set_srp_client_pwd_callback(ctx, ssl_give_srp_client_pwd_cb);
1303         SSL_CTX_set_srp_strength(ctx, srp_arg.strength);
1304         if (c_msg || c_debug || srp_arg.amp == 0)
1305             SSL_CTX_set_srp_verify_param_callback(ctx,
1306                                                   ssl_srp_verify_param_cb);
1307     }
1308 # endif
1309
1310     con = SSL_new(ctx);
1311     if (sess_in) {
1312         SSL_SESSION *sess;
1313         BIO *stmp = BIO_new_file(sess_in, "r");
1314         if (!stmp) {
1315             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1316             ERR_print_errors(bio_err);
1317             goto end;
1318         }
1319         sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1320         BIO_free(stmp);
1321         if (!sess) {
1322             BIO_printf(bio_err, "Can't open session file %s\n", sess_in);
1323             ERR_print_errors(bio_err);
1324             goto end;
1325         }
1326         if (!SSL_set_session(con, sess)) {
1327             BIO_printf(bio_err, "Can't set session\n");
1328             ERR_print_errors(bio_err);
1329             goto end;
1330         }
1331         SSL_SESSION_free(sess);
1332     }
1333
1334     if (fallback_scsv)
1335         SSL_set_mode(con, SSL_MODE_SEND_FALLBACK_SCSV);
1336
1337     if (servername != NULL) {
1338         if (!SSL_set_tlsext_host_name(con, servername)) {
1339             BIO_printf(bio_err, "Unable to set TLS servername extension.\n");
1340             ERR_print_errors(bio_err);
1341             goto end;
1342         }
1343     }
1344
1345  re_start:
1346 #ifdef NO_SYS_UN_H
1347     if (init_client(&s, host, port, socket_type) == 0)
1348 #else
1349     if ((!unix_path && (init_client(&s, host, port, socket_type) == 0)) ||
1350         (unix_path && (init_client_unix(&s, unix_path) == 0)))
1351 #endif
1352     {
1353         BIO_printf(bio_err, "connect:errno=%d\n", get_last_socket_error());
1354         SHUTDOWN(s);
1355         goto end;
1356     }
1357     BIO_printf(bio_c_out, "CONNECTED(%08X)\n", s);
1358
1359 #ifdef FIONBIO
1360     if (c_nbio) {
1361         unsigned long l = 1;
1362         BIO_printf(bio_c_out, "turning on non blocking io\n");
1363         if (BIO_socket_ioctl(s, FIONBIO, &l) < 0) {
1364             ERR_print_errors(bio_err);
1365             goto end;
1366         }
1367     }
1368 #endif
1369     if (c_Pause & 0x01)
1370         SSL_set_debug(con, 1);
1371
1372     if (socket_type == SOCK_DGRAM) {
1373
1374         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
1375         if (getsockname(s, &peer, (void *)&peerlen) < 0) {
1376             BIO_printf(bio_err, "getsockname:errno=%d\n",
1377                        get_last_socket_error());
1378             SHUTDOWN(s);
1379             goto end;
1380         }
1381
1382         (void)BIO_ctrl_set_connected(sbio, &peer);
1383
1384         if (enable_timeouts) {
1385             timeout.tv_sec = 0;
1386             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
1387             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
1388
1389             timeout.tv_sec = 0;
1390             timeout.tv_usec = DGRAM_SND_TIMEOUT;
1391             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
1392         }
1393
1394         if (socket_mtu) {
1395             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
1396                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
1397                            DTLS_get_link_min_mtu(con));
1398                 BIO_free(sbio);
1399                 goto shut;
1400             }
1401             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
1402             if (!DTLS_set_link_mtu(con, socket_mtu)) {
1403                 BIO_printf(bio_err, "Failed to set MTU\n");
1404                 BIO_free(sbio);
1405                 goto shut;
1406             }
1407         } else
1408             /* want to do MTU discovery */
1409             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
1410     } else
1411         sbio = BIO_new_socket(s, BIO_NOCLOSE);
1412
1413     if (nbio_test) {
1414         BIO *test;
1415
1416         test = BIO_new(BIO_f_nbio_test());
1417         sbio = BIO_push(test, sbio);
1418     }
1419
1420     if (c_debug) {
1421         SSL_set_debug(con, 1);
1422         BIO_set_callback(sbio, bio_dump_callback);
1423         BIO_set_callback_arg(sbio, (char *)bio_c_out);
1424     }
1425     if (c_msg) {
1426 #ifndef OPENSSL_NO_SSL_TRACE
1427         if (c_msg == 2)
1428             SSL_set_msg_callback(con, SSL_trace);
1429         else
1430 #endif
1431             SSL_set_msg_callback(con, msg_cb);
1432         SSL_set_msg_callback_arg(con, bio_c_msg ? bio_c_msg : bio_c_out);
1433     }
1434
1435     if (c_tlsextdebug) {
1436         SSL_set_tlsext_debug_callback(con, tlsext_cb);
1437         SSL_set_tlsext_debug_arg(con, bio_c_out);
1438     }
1439     if (c_status_req) {
1440         SSL_set_tlsext_status_type(con, TLSEXT_STATUSTYPE_ocsp);
1441         SSL_CTX_set_tlsext_status_cb(ctx, ocsp_resp_cb);
1442         SSL_CTX_set_tlsext_status_arg(ctx, bio_c_out);
1443     }
1444 #ifndef OPENSSL_NO_JPAKE
1445     if (jpake_secret)
1446         jpake_client_auth(bio_c_out, sbio, jpake_secret);
1447 #endif
1448
1449     SSL_set_bio(con, sbio, sbio);
1450     SSL_set_connect_state(con);
1451
1452     /* ok, lets connect */
1453     width = SSL_get_fd(con) + 1;
1454
1455     read_tty = 1;
1456     write_tty = 0;
1457     tty_on = 0;
1458     read_ssl = 1;
1459     write_ssl = 1;
1460
1461     cbuf_len = 0;
1462     cbuf_off = 0;
1463     sbuf_len = 0;
1464     sbuf_off = 0;
1465
1466     switch ((PROTOCOL_CHOICE) starttls_proto) {
1467     case PROTO_OFF:
1468         break;
1469     case PROTO_SMTP:
1470         {
1471             /*
1472              * This is an ugly hack that does a lot of assumptions. We do
1473              * have to handle multi-line responses which may come in a single
1474              * packet or not. We therefore have to use BIO_gets() which does
1475              * need a buffering BIO. So during the initial chitchat we do
1476              * push a buffering BIO into the chain that is removed again
1477              * later on to not disturb the rest of the s_client operation.
1478              */
1479             int foundit = 0;
1480             BIO *fbio = BIO_new(BIO_f_buffer());
1481             BIO_push(fbio, sbio);
1482             /* wait for multi-line response to end from SMTP */
1483             do {
1484                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1485             }
1486             while (mbuf_len > 3 && mbuf[3] == '-');
1487             BIO_printf(fbio, "EHLO %s\r\n", ehlo);
1488             (void)BIO_flush(fbio);
1489             /* wait for multi-line response to end EHLO SMTP response */
1490             do {
1491                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1492                 if (strstr(mbuf, "STARTTLS"))
1493                     foundit = 1;
1494             }
1495             while (mbuf_len > 3 && mbuf[3] == '-');
1496             (void)BIO_flush(fbio);
1497             BIO_pop(fbio);
1498             BIO_free(fbio);
1499             if (!foundit)
1500                 BIO_printf(bio_err,
1501                            "didn't found starttls in server response,"
1502                            " try anyway...\n");
1503             BIO_printf(sbio, "STARTTLS\r\n");
1504             BIO_read(sbio, sbuf, BUFSIZZ);
1505         }
1506         break;
1507     case PROTO_POP3:
1508         {
1509             BIO_read(sbio, mbuf, BUFSIZZ);
1510             BIO_printf(sbio, "STLS\r\n");
1511             mbuf_len = BIO_read(sbio, sbuf, BUFSIZZ);
1512             if (mbuf_len < 0) {
1513                 BIO_printf(bio_err, "BIO_read failed\n");
1514                 goto end;
1515             }
1516         }
1517         break;
1518     case PROTO_IMAP:
1519         {
1520             int foundit = 0;
1521             BIO *fbio = BIO_new(BIO_f_buffer());
1522             BIO_push(fbio, sbio);
1523             BIO_gets(fbio, mbuf, BUFSIZZ);
1524             /* STARTTLS command requires CAPABILITY... */
1525             BIO_printf(fbio, ". CAPABILITY\r\n");
1526             (void)BIO_flush(fbio);
1527             /* wait for multi-line CAPABILITY response */
1528             do {
1529                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1530                 if (strstr(mbuf, "STARTTLS"))
1531                     foundit = 1;
1532             }
1533             while (mbuf_len > 3 && mbuf[0] != '.');
1534             (void)BIO_flush(fbio);
1535             BIO_pop(fbio);
1536             BIO_free(fbio);
1537             if (!foundit)
1538                 BIO_printf(bio_err,
1539                            "didn't found STARTTLS in server response,"
1540                            " try anyway...\n");
1541             BIO_printf(sbio, ". STARTTLS\r\n");
1542             BIO_read(sbio, sbuf, BUFSIZZ);
1543         }
1544         break;
1545     case PROTO_FTP:
1546         {
1547             BIO *fbio = BIO_new(BIO_f_buffer());
1548             BIO_push(fbio, sbio);
1549             /* wait for multi-line response to end from FTP */
1550             do {
1551                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1552             }
1553             while (mbuf_len > 3 && mbuf[3] == '-');
1554             (void)BIO_flush(fbio);
1555             BIO_pop(fbio);
1556             BIO_free(fbio);
1557             BIO_printf(sbio, "AUTH TLS\r\n");
1558             BIO_read(sbio, sbuf, BUFSIZZ);
1559         }
1560         break;
1561     case PROTO_XMPP:
1562     case PROTO_XMPP_SERVER:
1563         {
1564             int seen = 0;
1565             BIO_printf(sbio, "<stream:stream "
1566                        "xmlns:stream='http://etherx.jabber.org/streams' "
1567                        "xmlns='jabber:%s' to='%s' version='1.0'>",
1568                        starttls_proto == PROTO_XMPP ? "client" : "server",
1569                        xmpphost ? xmpphost : host);
1570             seen = BIO_read(sbio, mbuf, BUFSIZZ);
1571             mbuf[seen] = 0;
1572             while (!strstr
1573                    (mbuf, "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'")
1574                    && !strstr(mbuf,
1575                               "<starttls xmlns=\"urn:ietf:params:xml:ns:xmpp-tls\""))
1576             {
1577                 seen = BIO_read(sbio, mbuf, BUFSIZZ);
1578
1579                 if (seen <= 0)
1580                     goto shut;
1581
1582                 mbuf[seen] = 0;
1583             }
1584             BIO_printf(sbio,
1585                        "<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
1586             seen = BIO_read(sbio, sbuf, BUFSIZZ);
1587             sbuf[seen] = 0;
1588             if (!strstr(sbuf, "<proceed"))
1589                 goto shut;
1590             mbuf[0] = 0;
1591         }
1592         break;
1593     case PROTO_TELNET:
1594         {
1595             static const unsigned char tls_do[] = {
1596                 /* IAC    DO   START_TLS */
1597                    255,   253, 46
1598             };
1599             static const unsigned char tls_will[] = {
1600                 /* IAC  WILL START_TLS */
1601                    255, 251, 46
1602             };
1603             static const unsigned char tls_follows[] = {
1604                 /* IAC  SB   START_TLS FOLLOWS IAC  SE */
1605                    255, 250, 46,       1,      255, 240
1606             };
1607             int bytes;
1608
1609             /* Telnet server should demand we issue START_TLS */
1610             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1611             if (bytes != 3 || memcmp(mbuf, tls_do, 3) != 0)
1612                 goto shut;
1613             /* Agree to issue START_TLS and send the FOLLOWS sub-command */
1614             BIO_write(sbio, tls_will, 3);
1615             BIO_write(sbio, tls_follows, 6);
1616             (void)BIO_flush(sbio);
1617             /* Telnet server also sent the FOLLOWS sub-command */
1618             bytes = BIO_read(sbio, mbuf, BUFSIZZ);
1619             if (bytes != 6 || memcmp(mbuf, tls_follows, 6) != 0)
1620                 goto shut;
1621         }
1622         break;
1623     case PROTO_CONNECT:
1624         {
1625             int foundit = 0;
1626             BIO *fbio = BIO_new(BIO_f_buffer());
1627
1628             BIO_push(fbio, sbio);
1629             BIO_printf(fbio, "CONNECT %s\r\n\r\n", connectstr);
1630             (void)BIO_flush(fbio);
1631             /* wait for multi-line response to end CONNECT response */
1632             do {
1633                 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
1634                 if (strstr(mbuf, "200") != NULL
1635                     && strstr(mbuf, "established") != NULL)
1636                     foundit++;
1637             } while (mbuf_len > 3 && foundit == 0);
1638             (void)BIO_flush(fbio);
1639             BIO_pop(fbio);
1640             BIO_free(fbio);
1641             if (!foundit) {
1642                 BIO_printf(bio_err, "%s: HTTP CONNECT failed\n", prog);
1643                 goto shut;
1644             }
1645         }
1646         break;
1647     }
1648
1649     for (;;) {
1650         FD_ZERO(&readfds);
1651         FD_ZERO(&writefds);
1652
1653         if ((SSL_version(con) == DTLS1_VERSION) &&
1654             DTLSv1_get_timeout(con, &timeout))
1655             timeoutp = &timeout;
1656         else
1657             timeoutp = NULL;
1658
1659         if (SSL_in_init(con) && !SSL_total_renegotiations(con)) {
1660             in_init = 1;
1661             tty_on = 0;
1662         } else {
1663             tty_on = 1;
1664             if (in_init) {
1665                 in_init = 0;
1666
1667                 if (servername != NULL && !SSL_session_reused(con)) {
1668                     BIO_printf(bio_c_out,
1669                                "Server did %sacknowledge servername extension.\n",
1670                                tlsextcbp.ack ? "" : "not ");
1671                 }
1672
1673                 if (sess_out) {
1674                     BIO *stmp = BIO_new_file(sess_out, "w");
1675                     if (stmp) {
1676                         PEM_write_bio_SSL_SESSION(stmp, SSL_get_session(con));
1677                         BIO_free(stmp);
1678                     } else
1679                         BIO_printf(bio_err, "Error writing session file %s\n",
1680                                    sess_out);
1681                 }
1682                 if (c_brief) {
1683                     BIO_puts(bio_err, "CONNECTION ESTABLISHED\n");
1684                     print_ssl_summary(con);
1685                 }
1686
1687                 print_stuff(bio_c_out, con, full_log);
1688                 if (full_log > 0)
1689                     full_log--;
1690
1691                 if (starttls_proto) {
1692                     BIO_write(bio_err, mbuf, mbuf_len);
1693                     /* We don't need to know any more */
1694                     if (!reconnect)
1695                         starttls_proto = PROTO_OFF;
1696                 }
1697
1698                 if (reconnect) {
1699                     reconnect--;
1700                     BIO_printf(bio_c_out,
1701                                "drop connection and then reconnect\n");
1702                     SSL_shutdown(con);
1703                     SSL_set_connect_state(con);
1704                     SHUTDOWN(SSL_get_fd(con));
1705                     goto re_start;
1706                 }
1707             }
1708         }
1709
1710         ssl_pending = read_ssl && SSL_pending(con);
1711
1712         if (!ssl_pending) {
1713 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
1714             if (tty_on) {
1715                 if (read_tty)
1716                     openssl_fdset(fileno(stdin), &readfds);
1717                 if (write_tty)
1718                     openssl_fdset(fileno(stdout), &writefds);
1719             }
1720             if (read_ssl)
1721                 openssl_fdset(SSL_get_fd(con), &readfds);
1722             if (write_ssl)
1723                 openssl_fdset(SSL_get_fd(con), &writefds);
1724 #else
1725             if (!tty_on || !write_tty) {
1726                 if (read_ssl)
1727                     openssl_fdset(SSL_get_fd(con), &readfds);
1728                 if (write_ssl)
1729                     openssl_fdset(SSL_get_fd(con), &writefds);
1730             }
1731 #endif
1732
1733             /*
1734              * Note: under VMS with SOCKETSHR the second parameter is
1735              * currently of type (int *) whereas under other systems it is
1736              * (void *) if you don't have a cast it will choke the compiler:
1737              * if you do have a cast then you can either go for (int *) or
1738              * (void *).
1739              */
1740 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
1741             /*
1742              * Under Windows/DOS we make the assumption that we can always
1743              * write to the tty: therefore if we need to write to the tty we
1744              * just fall through. Otherwise we timeout the select every
1745              * second and see if there are any keypresses. Note: this is a
1746              * hack, in a proper Windows application we wouldn't do this.
1747              */
1748             i = 0;
1749             if (!write_tty) {
1750                 if (read_tty) {
1751                     tv.tv_sec = 1;
1752                     tv.tv_usec = 0;
1753                     i = select(width, (void *)&readfds, (void *)&writefds,
1754                                NULL, &tv);
1755 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
1756                     if (!i && (!_kbhit() || !read_tty))
1757                         continue;
1758 # else
1759                     if (!i && (!((_kbhit())
1760                                  || (WAIT_OBJECT_0 ==
1761                                      WaitForSingleObject(GetStdHandle
1762                                                          (STD_INPUT_HANDLE),
1763                                                          0)))
1764                                || !read_tty))
1765                         continue;
1766 # endif
1767                 } else
1768                     i = select(width, (void *)&readfds, (void *)&writefds,
1769                                NULL, timeoutp);
1770             }
1771 #elif defined(OPENSSL_SYS_NETWARE)
1772             if (!write_tty) {
1773                 if (read_tty) {
1774                     tv.tv_sec = 1;
1775                     tv.tv_usec = 0;
1776                     i = select(width, (void *)&readfds, (void *)&writefds,
1777                                NULL, &tv);
1778                 } else
1779                     i = select(width, (void *)&readfds, (void *)&writefds,
1780                                NULL, timeoutp);
1781             }
1782 #else
1783             i = select(width, (void *)&readfds, (void *)&writefds,
1784                        NULL, timeoutp);
1785 #endif
1786             if (i < 0) {
1787                 BIO_printf(bio_err, "bad select %d\n",
1788                            get_last_socket_error());
1789                 goto shut;
1790                 /* goto end; */
1791             }
1792         }
1793
1794         if ((SSL_version(con) == DTLS1_VERSION)
1795             && DTLSv1_handle_timeout(con) > 0) {
1796             BIO_printf(bio_err, "TIMEOUT occurred\n");
1797         }
1798
1799         if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
1800             k = SSL_write(con, &(cbuf[cbuf_off]), (unsigned int)cbuf_len);
1801             switch (SSL_get_error(con, k)) {
1802             case SSL_ERROR_NONE:
1803                 cbuf_off += k;
1804                 cbuf_len -= k;
1805                 if (k <= 0)
1806                     goto end;
1807                 /* we have done a  write(con,NULL,0); */
1808                 if (cbuf_len <= 0) {
1809                     read_tty = 1;
1810                     write_ssl = 0;
1811                 } else {        /* if (cbuf_len > 0) */
1812
1813                     read_tty = 0;
1814                     write_ssl = 1;
1815                 }
1816                 break;
1817             case SSL_ERROR_WANT_WRITE:
1818                 BIO_printf(bio_c_out, "write W BLOCK\n");
1819                 write_ssl = 1;
1820                 read_tty = 0;
1821                 break;
1822             case SSL_ERROR_WANT_READ:
1823                 BIO_printf(bio_c_out, "write R BLOCK\n");
1824                 write_tty = 0;
1825                 read_ssl = 1;
1826                 write_ssl = 0;
1827                 break;
1828             case SSL_ERROR_WANT_X509_LOOKUP:
1829                 BIO_printf(bio_c_out, "write X BLOCK\n");
1830                 break;
1831             case SSL_ERROR_ZERO_RETURN:
1832                 if (cbuf_len != 0) {
1833                     BIO_printf(bio_c_out, "shutdown\n");
1834                     ret = 0;
1835                     goto shut;
1836                 } else {
1837                     read_tty = 1;
1838                     write_ssl = 0;
1839                     break;
1840                 }
1841
1842             case SSL_ERROR_SYSCALL:
1843                 if ((k != 0) || (cbuf_len != 0)) {
1844                     BIO_printf(bio_err, "write:errno=%d\n",
1845                                get_last_socket_error());
1846                     goto shut;
1847                 } else {
1848                     read_tty = 1;
1849                     write_ssl = 0;
1850                 }
1851                 break;
1852             case SSL_ERROR_SSL:
1853                 ERR_print_errors(bio_err);
1854                 goto shut;
1855             }
1856         }
1857 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
1858         /* Assume Windows/DOS/BeOS can always write */
1859         else if (!ssl_pending && write_tty)
1860 #else
1861         else if (!ssl_pending && FD_ISSET(fileno(stdout), &writefds))
1862 #endif
1863         {
1864 #ifdef CHARSET_EBCDIC
1865             ascii2ebcdic(&(sbuf[sbuf_off]), &(sbuf[sbuf_off]), sbuf_len);
1866 #endif
1867             i = raw_write_stdout(&(sbuf[sbuf_off]), sbuf_len);
1868
1869             if (i <= 0) {
1870                 BIO_printf(bio_c_out, "DONE\n");
1871                 ret = 0;
1872                 goto shut;
1873                 /* goto end; */
1874             }
1875
1876             sbuf_len -= i;;
1877             sbuf_off += i;
1878             if (sbuf_len <= 0) {
1879                 read_ssl = 1;
1880                 write_tty = 0;
1881             }
1882         } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
1883 #ifdef RENEG
1884             {
1885                 static int iiii;
1886                 if (++iiii == 52) {
1887                     SSL_renegotiate(con);
1888                     iiii = 0;
1889                 }
1890             }
1891 #endif
1892             k = SSL_read(con, sbuf, 1024 /* BUFSIZZ */ );
1893
1894             switch (SSL_get_error(con, k)) {
1895             case SSL_ERROR_NONE:
1896                 if (k <= 0)
1897                     goto end;
1898                 sbuf_off = 0;
1899                 sbuf_len = k;
1900
1901                 read_ssl = 0;
1902                 write_tty = 1;
1903                 break;
1904             case SSL_ERROR_WANT_WRITE:
1905                 BIO_printf(bio_c_out, "read W BLOCK\n");
1906                 write_ssl = 1;
1907                 read_tty = 0;
1908                 break;
1909             case SSL_ERROR_WANT_READ:
1910                 BIO_printf(bio_c_out, "read R BLOCK\n");
1911                 write_tty = 0;
1912                 read_ssl = 1;
1913                 if ((read_tty == 0) && (write_ssl == 0))
1914                     write_ssl = 1;
1915                 break;
1916             case SSL_ERROR_WANT_X509_LOOKUP:
1917                 BIO_printf(bio_c_out, "read X BLOCK\n");
1918                 break;
1919             case SSL_ERROR_SYSCALL:
1920                 ret = get_last_socket_error();
1921                 if (c_brief)
1922                     BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
1923                 else
1924                     BIO_printf(bio_err, "read:errno=%d\n", ret);
1925                 goto shut;
1926             case SSL_ERROR_ZERO_RETURN:
1927                 BIO_printf(bio_c_out, "closed\n");
1928                 ret = 0;
1929                 goto shut;
1930             case SSL_ERROR_SSL:
1931                 ERR_print_errors(bio_err);
1932                 goto shut;
1933                 /* break; */
1934             }
1935         }
1936 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
1937 # if defined(OPENSSL_SYS_WINCE) || defined(OPENSSL_SYS_MSDOS)
1938         else if (_kbhit())
1939 # else
1940         else if ((_kbhit())
1941                  || (WAIT_OBJECT_0 ==
1942                      WaitForSingleObject(GetStdHandle(STD_INPUT_HANDLE), 0)))
1943 # endif
1944 #elif defined (OPENSSL_SYS_NETWARE)
1945         else if (_kbhit())
1946 #else
1947         else if (FD_ISSET(fileno(stdin), &readfds))
1948 #endif
1949         {
1950             if (crlf) {
1951                 int j, lf_num;
1952
1953                 i = raw_read_stdin(cbuf, BUFSIZZ / 2);
1954                 lf_num = 0;
1955                 /* both loops are skipped when i <= 0 */
1956                 for (j = 0; j < i; j++)
1957                     if (cbuf[j] == '\n')
1958                         lf_num++;
1959                 for (j = i - 1; j >= 0; j--) {
1960                     cbuf[j + lf_num] = cbuf[j];
1961                     if (cbuf[j] == '\n') {
1962                         lf_num--;
1963                         i++;
1964                         cbuf[j + lf_num] = '\r';
1965                     }
1966                 }
1967                 assert(lf_num == 0);
1968             } else
1969                 i = raw_read_stdin(cbuf, BUFSIZZ);
1970
1971             if ((!c_ign_eof) && ((i <= 0) || (cbuf[0] == 'Q' && cmdletters))) {
1972                 BIO_printf(bio_err, "DONE\n");
1973                 ret = 0;
1974                 goto shut;
1975             }
1976
1977             if ((!c_ign_eof) && (cbuf[0] == 'R' && cmdletters)) {
1978                 BIO_printf(bio_err, "RENEGOTIATING\n");
1979                 SSL_renegotiate(con);
1980                 cbuf_len = 0;
1981             }
1982 #ifndef OPENSSL_NO_HEARTBEATS
1983             else if ((!c_ign_eof) && (cbuf[0] == 'B' && cmdletters)) {
1984                 BIO_printf(bio_err, "HEARTBEATING\n");
1985                 SSL_heartbeat(con);
1986                 cbuf_len = 0;
1987             }
1988 #endif
1989             else {
1990                 cbuf_len = i;
1991                 cbuf_off = 0;
1992 #ifdef CHARSET_EBCDIC
1993                 ebcdic2ascii(cbuf, cbuf, i);
1994 #endif
1995             }
1996
1997             write_ssl = 1;
1998             read_tty = 0;
1999         }
2000     }
2001
2002     ret = 0;
2003  shut:
2004     if (in_init)
2005         print_stuff(bio_c_out, con, full_log);
2006     SSL_shutdown(con);
2007     SHUTDOWN(SSL_get_fd(con));
2008  end:
2009     if (con != NULL) {
2010         if (prexit != 0)
2011             print_stuff(bio_c_out, con, 1);
2012         SSL_free(con);
2013     }
2014 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2015     OPENSSL_free(next_proto.data);
2016 #endif
2017     SSL_CTX_free(ctx);
2018     X509_free(cert);
2019     sk_X509_CRL_pop_free(crls, X509_CRL_free);
2020     EVP_PKEY_free(key);
2021     sk_X509_pop_free(chain, X509_free);
2022     OPENSSL_free(pass);
2023 #ifndef OPENSSL_NO_SRP
2024     OPENSSL_free(srp_arg.srppassin);
2025 #endif
2026     X509_VERIFY_PARAM_free(vpm);
2027     ssl_excert_free(exc);
2028     sk_OPENSSL_STRING_free(ssl_args);
2029     SSL_CONF_CTX_free(cctx);
2030     OPENSSL_clear_free(cbuf, BUFSIZZ);
2031     OPENSSL_clear_free(sbuf, BUFSIZZ);
2032     OPENSSL_clear_free(mbuf, BUFSIZZ);
2033     BIO_free(bio_c_out);
2034     bio_c_out = NULL;
2035     BIO_free(bio_c_msg);
2036     bio_c_msg = NULL;
2037     return (ret);
2038 }
2039
2040 static void print_stuff(BIO *bio, SSL *s, int full)
2041 {
2042     X509 *peer = NULL;
2043     char buf[BUFSIZ];
2044     STACK_OF(X509) *sk;
2045     STACK_OF(X509_NAME) *sk2;
2046     const SSL_CIPHER *c;
2047     X509_NAME *xn;
2048     int i;
2049 #ifndef OPENSSL_NO_COMP
2050     const COMP_METHOD *comp, *expansion;
2051 #endif
2052     unsigned char *exportedkeymat;
2053
2054     if (full) {
2055         int got_a_chain = 0;
2056
2057         sk = SSL_get_peer_cert_chain(s);
2058         if (sk != NULL) {
2059             got_a_chain = 1;
2060
2061             BIO_printf(bio, "---\nCertificate chain\n");
2062             for (i = 0; i < sk_X509_num(sk); i++) {
2063                 X509_NAME_oneline(X509_get_subject_name(sk_X509_value(sk, i)),
2064                                   buf, sizeof buf);
2065                 BIO_printf(bio, "%2d s:%s\n", i, buf);
2066                 X509_NAME_oneline(X509_get_issuer_name(sk_X509_value(sk, i)),
2067                                   buf, sizeof buf);
2068                 BIO_printf(bio, "   i:%s\n", buf);
2069                 if (c_showcerts)
2070                     PEM_write_bio_X509(bio, sk_X509_value(sk, i));
2071             }
2072         }
2073
2074         BIO_printf(bio, "---\n");
2075         peer = SSL_get_peer_certificate(s);
2076         if (peer != NULL) {
2077             BIO_printf(bio, "Server certificate\n");
2078
2079             /* Redundant if we showed the whole chain */
2080             if (!(c_showcerts && got_a_chain))
2081                 PEM_write_bio_X509(bio, peer);
2082             X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2083             BIO_printf(bio, "subject=%s\n", buf);
2084             X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2085             BIO_printf(bio, "issuer=%s\n", buf);
2086         } else
2087             BIO_printf(bio, "no peer certificate available\n");
2088
2089         sk2 = SSL_get_client_CA_list(s);
2090         if ((sk2 != NULL) && (sk_X509_NAME_num(sk2) > 0)) {
2091             BIO_printf(bio, "---\nAcceptable client certificate CA names\n");
2092             for (i = 0; i < sk_X509_NAME_num(sk2); i++) {
2093                 xn = sk_X509_NAME_value(sk2, i);
2094                 X509_NAME_oneline(xn, buf, sizeof(buf));
2095                 BIO_write(bio, buf, strlen(buf));
2096                 BIO_write(bio, "\n", 1);
2097             }
2098         } else {
2099             BIO_printf(bio, "---\nNo client certificate CA names sent\n");
2100         }
2101
2102         ssl_print_sigalgs(bio, s);
2103         ssl_print_tmp_key(bio, s);
2104
2105         BIO_printf(bio,
2106                    "---\nSSL handshake has read %"PRIu64" bytes and written %"PRIu64" bytes\n",
2107                    BIO_number_read(SSL_get_rbio(s)),
2108                    BIO_number_written(SSL_get_wbio(s)));
2109     }
2110     BIO_printf(bio, (SSL_cache_hit(s) ? "---\nReused, " : "---\nNew, "));
2111     c = SSL_get_current_cipher(s);
2112     BIO_printf(bio, "%s, Cipher is %s\n",
2113                SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2114     if (peer != NULL) {
2115         EVP_PKEY *pktmp;
2116         pktmp = X509_get_pubkey(peer);
2117         BIO_printf(bio, "Server public key is %d bit\n",
2118                    EVP_PKEY_bits(pktmp));
2119         EVP_PKEY_free(pktmp);
2120     }
2121     BIO_printf(bio, "Secure Renegotiation IS%s supported\n",
2122                SSL_get_secure_renegotiation_support(s) ? "" : " NOT");
2123 #ifndef OPENSSL_NO_COMP
2124     comp = SSL_get_current_compression(s);
2125     expansion = SSL_get_current_expansion(s);
2126     BIO_printf(bio, "Compression: %s\n",
2127                comp ? SSL_COMP_get_name(comp) : "NONE");
2128     BIO_printf(bio, "Expansion: %s\n",
2129                expansion ? SSL_COMP_get_name(expansion) : "NONE");
2130 #endif
2131
2132 #ifdef SSL_DEBUG
2133     {
2134         /* Print out local port of connection: useful for debugging */
2135         int sock;
2136         struct sockaddr_in ladd;
2137         socklen_t ladd_size = sizeof(ladd);
2138         sock = SSL_get_fd(s);
2139         getsockname(sock, (struct sockaddr *)&ladd, &ladd_size);
2140         BIO_printf(bio_c_out, "LOCAL PORT is %u\n", ntohs(ladd.sin_port));
2141     }
2142 #endif
2143
2144 #if !defined(OPENSSL_NO_NEXTPROTONEG)
2145     if (next_proto.status != -1) {
2146         const unsigned char *proto;
2147         unsigned int proto_len;
2148         SSL_get0_next_proto_negotiated(s, &proto, &proto_len);
2149         BIO_printf(bio, "Next protocol: (%d) ", next_proto.status);
2150         BIO_write(bio, proto, proto_len);
2151         BIO_write(bio, "\n", 1);
2152     }
2153 #endif
2154     {
2155         const unsigned char *proto;
2156         unsigned int proto_len;
2157         SSL_get0_alpn_selected(s, &proto, &proto_len);
2158         if (proto_len > 0) {
2159             BIO_printf(bio, "ALPN protocol: ");
2160             BIO_write(bio, proto, proto_len);
2161             BIO_write(bio, "\n", 1);
2162         } else
2163             BIO_printf(bio, "No ALPN negotiated\n");
2164     }
2165
2166 #ifndef OPENSSL_NO_SRTP
2167     {
2168         SRTP_PROTECTION_PROFILE *srtp_profile =
2169             SSL_get_selected_srtp_profile(s);
2170
2171         if (srtp_profile)
2172             BIO_printf(bio, "SRTP Extension negotiated, profile=%s\n",
2173                        srtp_profile->name);
2174     }
2175 #endif
2176
2177     SSL_SESSION_print(bio, SSL_get_session(s));
2178     if (keymatexportlabel != NULL) {
2179         BIO_printf(bio, "Keying material exporter:\n");
2180         BIO_printf(bio, "    Label: '%s'\n", keymatexportlabel);
2181         BIO_printf(bio, "    Length: %i bytes\n", keymatexportlen);
2182         exportedkeymat = app_malloc(keymatexportlen, "export key");
2183         if (!SSL_export_keying_material(s, exportedkeymat,
2184                                         keymatexportlen,
2185                                         keymatexportlabel,
2186                                         strlen(keymatexportlabel),
2187                                         NULL, 0, 0)) {
2188             BIO_printf(bio, "    Error\n");
2189         } else {
2190             BIO_printf(bio, "    Keying material: ");
2191             for (i = 0; i < keymatexportlen; i++)
2192                 BIO_printf(bio, "%02X", exportedkeymat[i]);
2193             BIO_printf(bio, "\n");
2194         }
2195         OPENSSL_free(exportedkeymat);
2196     }
2197     BIO_printf(bio, "---\n");
2198     X509_free(peer);
2199     /* flush, or debugging output gets mixed with http response */
2200     (void)BIO_flush(bio);
2201 }
2202
2203 static int ocsp_resp_cb(SSL *s, void *arg)
2204 {
2205     const unsigned char *p;
2206     int len;
2207     OCSP_RESPONSE *rsp;
2208     len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2209     BIO_puts(arg, "OCSP response: ");
2210     if (!p) {
2211         BIO_puts(arg, "no response sent\n");
2212         return 1;
2213     }
2214     rsp = d2i_OCSP_RESPONSE(NULL, &p, len);
2215     if (!rsp) {
2216         BIO_puts(arg, "response parse error\n");
2217         BIO_dump_indent(arg, (char *)p, len, 4);
2218         return 0;
2219     }
2220     BIO_puts(arg, "\n======================================\n");
2221     OCSP_RESPONSE_print(arg, rsp, 0);
2222     BIO_puts(arg, "======================================\n");
2223     OCSP_RESPONSE_free(rsp);
2224     return 1;
2225 }