blob: e8d5e46ab5365ddefc026820dcd5536252d49b13 [file] [log] [blame]
Rich Salz9e200682016-05-18 09:16:36 -04001/*
2 * Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
Viktor Dukhovni919ba002015-12-29 13:28:28 -050010#include <string.h>
Dr. Stephen Henson36465782013-02-26 16:33:05 +000011#include <openssl/err.h>
12#include <openssl/ssl.h>
13
14int main(int argc, char **argv)
Matt Caswell0f113f32015-01-22 03:40:55 +000015{
16 BIO *sbio = NULL, *out = NULL;
17 int len;
18 char tmpbuf[1024];
19 SSL_CTX *ctx;
20 SSL_CONF_CTX *cctx;
21 SSL *ssl;
22 char **args = argv + 1;
23 const char *connect_str = "localhost:4433";
24 int nargs = argc - 1;
Dr. Stephen Henson36465782013-02-26 16:33:05 +000025
Matt Caswell13c9bb32015-03-31 00:18:31 +010026 ctx = SSL_CTX_new(TLS_client_method());
Matt Caswell0f113f32015-01-22 03:40:55 +000027 cctx = SSL_CONF_CTX_new();
28 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT);
29 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
30 while (*args && **args == '-') {
31 int rv;
32 /* Parse standard arguments */
33 rv = SSL_CONF_cmd_argv(cctx, &nargs, &args);
34 if (rv == -3) {
35 fprintf(stderr, "Missing argument for %s\n", *args);
36 goto end;
37 }
38 if (rv < 0) {
39 fprintf(stderr, "Error in command %s\n", *args);
40 ERR_print_errors_fp(stderr);
41 goto end;
42 }
43 /* If rv > 0 we processed something so proceed to next arg */
44 if (rv > 0)
45 continue;
46 /* Otherwise application specific argument processing */
Rich Salz86885c22015-05-06 14:56:14 -040047 if (strcmp(*args, "-connect") == 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +000048 connect_str = args[1];
49 if (connect_str == NULL) {
50 fprintf(stderr, "Missing -connect argument\n");
51 goto end;
52 }
53 args += 2;
54 nargs -= 2;
55 continue;
56 } else {
57 fprintf(stderr, "Unknown argument %s\n", *args);
58 goto end;
59 }
60 }
Dr. Stephen Henson36465782013-02-26 16:33:05 +000061
Matt Caswell0f113f32015-01-22 03:40:55 +000062 if (!SSL_CONF_CTX_finish(cctx)) {
63 fprintf(stderr, "Finish error\n");
64 ERR_print_errors_fp(stderr);
Viktor Dukhovni919ba002015-12-29 13:28:28 -050065 goto end;
Matt Caswell0f113f32015-01-22 03:40:55 +000066 }
Dr. Stephen Hensonebd14bf2013-10-18 16:28:38 +010067
Matt Caswell0f113f32015-01-22 03:40:55 +000068 /*
69 * We'd normally set some stuff like the verify paths and * mode here
70 * because as things stand this will connect to * any server whose
71 * certificate is signed by any CA.
72 */
Dr. Stephen Henson36465782013-02-26 16:33:05 +000073
Matt Caswell0f113f32015-01-22 03:40:55 +000074 sbio = BIO_new_ssl_connect(ctx);
Dr. Stephen Henson36465782013-02-26 16:33:05 +000075
Matt Caswell0f113f32015-01-22 03:40:55 +000076 BIO_get_ssl(sbio, &ssl);
Dr. Stephen Henson36465782013-02-26 16:33:05 +000077
Matt Caswell0f113f32015-01-22 03:40:55 +000078 if (!ssl) {
79 fprintf(stderr, "Can't locate SSL pointer\n");
80 goto end;
81 }
Dr. Stephen Henson36465782013-02-26 16:33:05 +000082
Matt Caswell0f113f32015-01-22 03:40:55 +000083 /* Don't want any retries */
84 SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
Dr. Stephen Henson36465782013-02-26 16:33:05 +000085
Matt Caswell0f113f32015-01-22 03:40:55 +000086 /* We might want to do other things with ssl here */
Dr. Stephen Henson36465782013-02-26 16:33:05 +000087
Matt Caswell0f113f32015-01-22 03:40:55 +000088 BIO_set_conn_hostname(sbio, connect_str);
Dr. Stephen Henson36465782013-02-26 16:33:05 +000089
Matt Caswell0f113f32015-01-22 03:40:55 +000090 out = BIO_new_fp(stdout, BIO_NOCLOSE);
91 if (BIO_do_connect(sbio) <= 0) {
92 fprintf(stderr, "Error connecting to server\n");
93 ERR_print_errors_fp(stderr);
94 goto end;
95 }
Dr. Stephen Henson36465782013-02-26 16:33:05 +000096
Matt Caswell0f113f32015-01-22 03:40:55 +000097 if (BIO_do_handshake(sbio) <= 0) {
98 fprintf(stderr, "Error establishing SSL connection\n");
99 ERR_print_errors_fp(stderr);
100 goto end;
101 }
Dr. Stephen Henson36465782013-02-26 16:33:05 +0000102
Matt Caswell0f113f32015-01-22 03:40:55 +0000103 /* Could examine ssl here to get connection info */
Dr. Stephen Henson36465782013-02-26 16:33:05 +0000104
Matt Caswell0f113f32015-01-22 03:40:55 +0000105 BIO_puts(sbio, "GET / HTTP/1.0\n\n");
106 for (;;) {
107 len = BIO_read(sbio, tmpbuf, 1024);
108 if (len <= 0)
109 break;
110 BIO_write(out, tmpbuf, len);
111 }
112 end:
113 SSL_CONF_CTX_free(cctx);
114 BIO_free_all(sbio);
115 BIO_free(out);
116 return 0;
117}