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