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