-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathclient.cpp
163 lines (134 loc) · 4.02 KB
/
client.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// Client side C/C++ program to demonstrate Socket programming
//
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#define PORT 8080
#define MAXFILENAME 63
class clientContext
{
public:
bool withSSL = true;
char cafile[MAXFILENAME+1] = "../certs/client/ca.crt";
char cert[MAXFILENAME+1] = "../certs/client/client.crt";
char key[MAXFILENAME+1] = "../certs/client/client.key";
};
SSL_CTX *create_ssl_context(clientContext *cliCtx)
{
SSL_CTX *ctx;
//ctx = SSL_CTX_new(TLS_server_method());
ctx = SSL_CTX_new(SSLv23_client_method());
if (!ctx)
{
perror("Unable to create SSL context");
ERR_print_errors_fp(stderr);
exit(EXIT_FAILURE);
}
SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
SSL_CTX_set_verify_depth(ctx, 5);
if (!SSL_CTX_use_certificate_chain_file(ctx, cliCtx->cafile))
{
ERR_print_errors_fp(stderr);
exit(EXIT_FAILURE);
}
SSL_CTX_load_verify_locations(ctx, cliCtx->cafile, NULL);
if (SSL_CTX_use_certificate_file(ctx, cliCtx->cert, SSL_FILETYPE_PEM) <= 0)
{
ERR_print_errors_fp(stderr);
exit(EXIT_FAILURE);
}
if (SSL_CTX_use_PrivateKey_file(ctx, cliCtx->key, SSL_FILETYPE_PEM) <= 0)
{
ERR_print_errors_fp(stderr);
exit(EXIT_FAILURE);
}
return ctx;
}
int main(int argc, char const *argv[])
{
int sock = 0, valread;
struct sockaddr_in serv_addr;
bool withSSL = true;
char hello[] = "Hello from client via SSL";
char buffer[1024] = {0};
SSL_CTX *ctx = NULL;
SSL *ssl = NULL;
clientContext *cliCtx = new clientContext();
//some overhead for the arguments
for (int i=0; i<argc; ++i)
{
if (strcmp(argv[i],"-plain")==0)
cliCtx->withSSL = false;
else if ((strcmp(argv[i],"-cafile")==0) && (i+1 < argc) && (strlen(argv[i+1]) > 0))
strncpy(cliCtx->cafile,argv[i+1],MAXFILENAME);
else if ((strcmp(argv[i],"-cert")==0) && (i+1 < argc) && (strlen(argv[i+1]) > 0))
strncpy(cliCtx->cert,argv[i+1],MAXFILENAME);
else if ((strcmp(argv[i],"-key")==0) && (i+1 < argc) && (strlen(argv[i+1]) > 0))
strncpy(cliCtx->key,argv[i+1],MAXFILENAME);
}
if (cliCtx->withSSL)
{
printf("create SSL context\n");
ctx = create_ssl_context(cliCtx);
ssl = SSL_new(ctx);
if (ssl == NULL)
ERR_print_errors_fp(stderr);
}
printf("create socket\n");
if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0)
{
printf("\n socket creation error \n");
return -1;
}
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(PORT);
printf("build address\n");
// Convert IPv4 and IPv6 addresses from text to binary form
if(inet_pton(AF_INET, "127.0.0.1", &serv_addr.sin_addr)<=0)
{
printf("\nInvalid address/ Address not supported \n");
return -1;
}
printf("connect\n");
if (connect(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0)
{
printf("\nConnection Failed \n");
return -1;
}
if (cliCtx->withSSL)
{
if (!SSL_set_fd(ssl, sock))
ERR_print_errors_fp(stderr);
printf("SSL_connect\n");
if (SSL_connect(ssl) < 0)
ERR_print_errors_fp(stderr);
// read server certificare
X509 *cert = SSL_get_peer_certificate(ssl);
if (cert == NULL)
printf("Error: Could not get a certificate from: %s.\n", "");
else
printf("Retrieved the server's certificate from: %s.\n", "");
X509_NAME *certname = X509_NAME_new();
certname = X509_get_subject_name(cert);
printf("Displaying the certificate subject data:\n");
BIO * bio = BIO_new_fp(stdout, BIO_NOCLOSE);
X509_NAME_print_ex(bio, certname, 0, 0);
printf("\n");
}
if (cliCtx->withSSL)
SSL_write(ssl , hello , strlen(hello)+1 );
else
send(sock , hello , strlen(hello)+1 , 0 );
printf("Hello message sent\n");
if (cliCtx->withSSL)
valread = SSL_read( ssl , buffer, 1024);
else
read( sock , buffer, 1024);
printf("out: %s\n",buffer);
printf("end\n");
return 0;
}