-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
349 lines (294 loc) · 11.7 KB
/
main.c
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
#include "main.h"
#include "certs.h"
int main(void)
{
int result = 1;
TLSContext context;
// Initialise the PSA Crypto library
psa_status_t psa_status = psa_crypto_init();
if (psa_status != PSA_SUCCESS) {
printf("Failed to initialise PSA Crypto: %d\n", (int)psa_status);
return EXIT_FAILURE;
}
// Initialise the TLS context
if ((result = initialise_context(&context)) != 0)
goto exit;
// Set up certificates and keys
if ((result = setup_certificates(&context)) != 0)
goto exit;
// Set up the network connection and SSL configuration
if ((result = setup_connection(&context)) != 0)
goto exit;
// Perform the SSL/TLS handshake
if ((result = perform_handshake(&context)) != 0)
goto exit;
// Exchange data with the server
result = exchange_data(&context);
exit:
// Clean up and free resources
cleanup(&context);
return (result == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
// Custom debug function to output debug information
static void my_debug(void *context, int level, const char *file, int line, const char *str)
{
((void) level);
fprintf((FILE *)context, "%s:%04d: %s", file, line, str);
fflush((FILE *)context);
}
// Initialise the TLS context and seed the random number generator
static int initialise_context(TLSContext *context)
{
const char *pers = "mbed TLS client";
// Initialise MbedTLS structures
mbedtls_net_init(&context->server_file_descriptor);
mbedtls_ssl_init(&context->ssl);
mbedtls_ssl_config_init(&context->conf);
mbedtls_x509_crt_init(&context->ca_cert);
mbedtls_x509_crt_init(&context->client_cert);
mbedtls_pk_init(&context->private_key);
mbedtls_ctr_drbg_init(&context->ctr_drbg);
mbedtls_entropy_init(&context->entropy);
// Set debug threshold
mbedtls_debug_set_threshold(DEBUG_LEVEL);
printf("\nSeeding the random number generator... ");
// Seed the random number generator
int result = mbedtls_ctr_drbg_seed(&context->ctr_drbg, mbedtls_entropy_func, &context->entropy,
(const unsigned char *) pers, strlen(pers));
if (result != 0) {
printf("failed\n ! mbedtls_ctr_drbg_seed returned %d\n", result);
return result;
}
printf("ok\n");
return 0;
}
// Load and parse certificates and private key
static int setup_certificates(TLSContext *context)
{
int result;
printf("Loading the CA root certificate ... ");
// Parse CA certificate
result = mbedtls_x509_crt_parse(&context->ca_cert, (const unsigned char *)ca_cert, strlen(ca_cert) + 1);
if (result < 0) {
printf("failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", (unsigned int) -result);
return result;
}
printf("ok\n");
printf("Loading the client certificate and private key ... ");
// Parse client certificate
result = mbedtls_x509_crt_parse(&context->client_cert, (const unsigned char *)client_cert, strlen(client_cert) + 1);
if (result != 0) {
printf("failed\n ! mbedtls_x509_crt_parse returned -0x%x\n\n", (unsigned int) -result);
return result;
}
// Parse client private key
result = mbedtls_pk_parse_key(&context->private_key, (const unsigned char *)client_key, strlen(client_key) + 1,
NULL, 0, mbedtls_ctr_drbg_random, &context->ctr_drbg);
if (result != 0) {
printf("failed\n ! mbedtls_pk_parse_key returned -0x%x\n\n", (unsigned int) -result);
return result;
}
printf("ok\n");
return 0;
}
// Set up the network connection and configure SSL settings
static int setup_connection(TLSContext *context)
{
int result;
printf("Connecting to %s on port %s... ", SERVER_NAME, SERVER_PORT);
// Establish a TCP connection
if ((result = mbedtls_net_connect(&context->server_file_descriptor, SERVER_NAME,
SERVER_PORT, MBEDTLS_NET_PROTO_TCP)) != 0) {
printf("failed\n ! mbedtls_net_connect returned %d\n\n", result);
return result;
}
printf("ok\n");
printf("Setting up the SSL/TLS structure... ");
// Set up SSL/TLS configuration
if ((result = mbedtls_ssl_config_defaults(&context->conf,
MBEDTLS_SSL_IS_CLIENT,
MBEDTLS_SSL_TRANSPORT_STREAM,
MBEDTLS_SSL_PRESET_DEFAULT)) != 0) {
printf("failed\n ! mbedtls_ssl_config_defaults returned %d\n\n", result);
return result;
}
printf("ok\n");
// Set up SSL/TLS settings
mbedtls_ssl_conf_authmode(&context->conf, MBEDTLS_SSL_VERIFY_OPTIONAL);
mbedtls_ssl_conf_ca_chain(&context->conf, &context->ca_cert, NULL);
mbedtls_ssl_conf_rng(&context->conf, mbedtls_ctr_drbg_random, &context->ctr_drbg);
mbedtls_ssl_conf_dbg(&context->conf, my_debug, stdout);
// Set client certificate and private key
if ((result = mbedtls_ssl_conf_own_cert(&context->conf, &context->client_cert, &context->private_key)) != 0) {
printf("failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n", result);
return result;
}
// Set up SSL context
if ((result = mbedtls_ssl_setup(&context->ssl, &context->conf)) != 0) {
printf("failed\n ! mbedtls_ssl_setup returned %d\n\n", result);
return result;
}
// Set hostname for SNI (Server Name Indication)
if ((result = mbedtls_ssl_set_hostname(&context->ssl, SERVER_NAME)) != 0) {
printf("failed\n ! mbedtls_ssl_set_hostname returned %d\n\n", result);
return result;
}
// Set up I/O functions for network communication
mbedtls_ssl_set_bio(&context->ssl, &context->server_file_descriptor, mbedtls_net_send, mbedtls_net_recv, NULL);
return 0;
}
// Perform the SSL/TLS handshake
static int perform_handshake(TLSContext *context)
{
int result;
printf("Performing the SSL/TLS handshake...\n");
while ((result = mbedtls_ssl_handshake(&context->ssl)) != 0) {
if (result != MBEDTLS_ERR_SSL_WANT_READ && result != MBEDTLS_ERR_SSL_WANT_WRITE) {
printf("failed\n ! mbedtls_ssl_handshake returned -0x%x\n\n", (unsigned int) -result);
return result;
}
}
printf("ok\n");
// Verify the server's certificate
printf("Verifying peer X.509 certificate...");
uint32_t flags = mbedtls_ssl_get_verify_result(&context->ssl);
if (flags != 0) {
char verifying_buffer[512];
printf("\nVerification warnings... \n");
mbedtls_x509_crt_verify_info(verifying_buffer, sizeof(verifying_buffer), "", flags);
printf("%s\n", verifying_buffer);
} else {
printf("ok\n");
}
return 0;
}
static void print_text_content(const unsigned char *buffer, size_t length) {
for (size_t i = 0; i < length; i++) {
if ((i + 1) % 8 == 0 || i + 1 == length) {
// If we've printed 16 bytes, print the ASCII representation
if ((i + 1) % 16 == 0) {
// Print ASCII characters for the last 16 bytes
for (size_t j = i - 15; j <= i; j++) {
if (isprint(buffer[j])) {
printf("%c", buffer[j]); // Print printable characters
}
else {
printf(" "); // Print space for non-printable characters
}
}
}
// If we've reached the end of the buffer
else if (i + 1 == length) {
// Print ASCII characters for the last partial line
for (size_t j = i - (i % 16); j <= i; j++) {
if (isprint(buffer[j])) {
printf("%c", buffer[j]); // Print printable characters
} else {
printf(" "); // Print dot for non-printable characters
}
}
}
}
}
}
static void print_hex_and_ascii(const unsigned char *buffer, size_t length) {
for (size_t i = 0; i < length; i++) {
// Print offset at the beginning of each line (every 16 bytes)
if (i % 16 == 0) {
printf("%04zx: ", i);
}
// Print the byte in hexadecimal format
printf("%02x ", buffer[i]);
// Add extra space after every 8 bytes for readability
if ((i + 1) % 8 == 0 || i + 1 == length) {
printf(" ");
// If we've printed 16 bytes, print the ASCII representation
if ((i + 1) % 16 == 0) {
printf("|");
// Print ASCII characters for the last 16 bytes
for (size_t j = i - 15; j <= i; j++) {
if (isprint(buffer[j])) {
printf("%c", buffer[j]); // Print printable characters
} else {
printf("."); // Print dot for non-printable characters
}
}
printf("|\n"); // End the line after ASCII representation
}
// If we've reached the end of the buffer
else if (i + 1 == length) {
// Add extra space if we're in the first half of a 16-byte line
if ((i + 1) % 16 <= 8) {
printf(" ");
}
// Fill the rest of the line with spaces to align ASCII output
for (size_t j = (i + 1) % 16; j < 16; j++) {
printf(" ");
}
printf("|");
// Print ASCII characters for the last partial line
for (size_t j = i - (i % 16); j <= i; j++) {
if (isprint(buffer[j])) {
printf("%c", buffer[j]); // Print printable characters
} else {
printf("."); // Print dot for non-printable characters
}
}
printf("|\n"); // End the last line
}
}
}
}
// Exchange data with the server
static int exchange_data(TLSContext *context)
{
int result, length;
unsigned char buffer[1024];
printf("> Write to %s \n", SERVER_NAME);
print_text_content((const unsigned char *)GET_REQUEST, strlen(GET_REQUEST));
printf("\n");
result = mbedtls_ssl_write(&context->ssl, (const unsigned char *)GET_REQUEST, strlen(GET_REQUEST));
if (result <= 0) {
printf("failed\n ! mbedtls_ssl_write returned %d\n\n", result);
return result;
}
length = result;
printf("%d bytes written\n", length);
printf("< Read from %s \n", SERVER_NAME);
do {
length = sizeof(buffer) - 1;
memset(buffer, 0, sizeof(buffer));
result = mbedtls_ssl_read(&context->ssl, buffer, length);
if (result > 0) {
printf("Received %d bytes:\n", result);
print_text_content(buffer, result);
printf("\n");
}
if (result == MBEDTLS_ERR_SSL_WANT_READ || result == MBEDTLS_ERR_SSL_WANT_WRITE)
continue;
if (result == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY)
break;
if (result < 0) {
printf("failed\n ! mbedtls_ssl_read returned %d\n\n", result);
return result;
}
if (result == 0) {
printf("\n\nEOF\n\n");
break;
}
} while (1);
mbedtls_ssl_close_notify(&context->ssl);
return 0;
}
// Clean up and free resources
static void cleanup(TLSContext *context)
{
mbedtls_net_free(&context->server_file_descriptor);
mbedtls_x509_crt_free(&context->ca_cert);
mbedtls_x509_crt_free(&context->client_cert);
mbedtls_pk_free(&context->private_key);
mbedtls_ssl_free(&context->ssl);
mbedtls_ssl_config_free(&context->conf);
mbedtls_ctr_drbg_free(&context->ctr_drbg);
mbedtls_entropy_free(&context->entropy);
}