| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* | 
|  | 2 | *  SSL client demonstration program | 
|  | 3 | * | 
| Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | *  Copyright The Mbed TLS Contributors | 
| Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 5 | *  SPDX-License-Identifier: Apache-2.0 | 
|  | 6 | * | 
|  | 7 | *  Licensed under the Apache License, Version 2.0 (the "License"); you may | 
|  | 8 | *  not use this file except in compliance with the License. | 
|  | 9 | *  You may obtain a copy of the License at | 
|  | 10 | * | 
|  | 11 | *  http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 12 | * | 
|  | 13 | *  Unless required by applicable law or agreed to in writing, software | 
|  | 14 | *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
|  | 15 | *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 16 | *  See the License for the specific language governing permissions and | 
|  | 17 | *  limitations under the License. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 18 | */ | 
|  | 19 |  | 
| Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 20 | #include "mbedtls/build_info.h" | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 21 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 22 | #include "mbedtls/platform.h" | 
| Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 23 |  | 
| Mateusz Starzyk | 1aec646 | 2021-02-08 15:34:42 +0100 | [diff] [blame] | 24 | #if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_ENTROPY_C) ||     \ | 
|  | 25 | !defined(MBEDTLS_SSL_TLS_C) || !defined(MBEDTLS_SSL_CLI_C) ||    \ | 
|  | 26 | !defined(MBEDTLS_NET_C) || !defined(MBEDTLS_RSA_C) ||            \ | 
|  | 27 | !defined(MBEDTLS_PEM_PARSE_C) || !defined(MBEDTLS_CTR_DRBG_C) || \ | 
|  | 28 | !defined(MBEDTLS_X509_CRT_PARSE_C) | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 29 | int main(void) | 
| Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 30 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 31 | mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_ENTROPY_C and/or " | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 32 | "MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_CLI_C and/or " | 
|  | 33 | "MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or " | 
|  | 34 | "MBEDTLS_CTR_DRBG_C and/or MBEDTLS_X509_CRT_PARSE_C " | 
|  | 35 | "not defined.\n"); | 
|  | 36 | mbedtls_exit(0); | 
| Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 37 | } | 
|  | 38 | #else | 
| Manuel Pégourié-Gonnard | 4b3e5ef | 2015-03-27 11:24:27 +0100 | [diff] [blame] | 39 |  | 
| Andres AG | 788aa4a | 2016-09-14 14:32:09 +0100 | [diff] [blame] | 40 | #include "mbedtls/net_sockets.h" | 
| Manuel Pégourié-Gonnard | 4b3e5ef | 2015-03-27 11:24:27 +0100 | [diff] [blame] | 41 | #include "mbedtls/debug.h" | 
|  | 42 | #include "mbedtls/ssl.h" | 
|  | 43 | #include "mbedtls/entropy.h" | 
|  | 44 | #include "mbedtls/ctr_drbg.h" | 
|  | 45 | #include "mbedtls/error.h" | 
| Mateusz Starzyk | 1aec646 | 2021-02-08 15:34:42 +0100 | [diff] [blame] | 46 | #include "test/certs.h" | 
| Manuel Pégourié-Gonnard | 4b3e5ef | 2015-03-27 11:24:27 +0100 | [diff] [blame] | 47 |  | 
|  | 48 | #include <string.h> | 
|  | 49 |  | 
| Manuel Pégourié-Gonnard | c0d7494 | 2015-06-23 12:30:57 +0200 | [diff] [blame] | 50 | #define SERVER_PORT "4433" | 
| Manuel Pégourié-Gonnard | 4b3e5ef | 2015-03-27 11:24:27 +0100 | [diff] [blame] | 51 | #define SERVER_NAME "localhost" | 
|  | 52 | #define GET_REQUEST "GET / HTTP/1.0\r\n\r\n" | 
|  | 53 |  | 
|  | 54 | #define DEBUG_LEVEL 1 | 
|  | 55 |  | 
| Simon Butcher | 63cb97e | 2018-12-06 17:43:31 +0000 | [diff] [blame] | 56 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 57 | static void my_debug(void *ctx, int level, | 
|  | 58 | const char *file, int line, | 
|  | 59 | const char *str) | 
| Paul Bakker | 9a97c5d | 2013-09-15 17:07:33 +0200 | [diff] [blame] | 60 | { | 
| Paul Bakker | c73079a | 2014-04-25 16:34:30 +0200 | [diff] [blame] | 61 | ((void) level); | 
|  | 62 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 63 | mbedtls_fprintf((FILE *) ctx, "%s:%04d: %s", file, line, str); | 
|  | 64 | fflush((FILE *) ctx); | 
| Paul Bakker | 9a97c5d | 2013-09-15 17:07:33 +0200 | [diff] [blame] | 65 | } | 
|  | 66 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 67 | int main(void) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 68 | { | 
| Andres Amaya Garcia | 5517202 | 2018-04-29 20:53:53 +0100 | [diff] [blame] | 69 | int ret = 1, len; | 
|  | 70 | int exit_code = MBEDTLS_EXIT_FAILURE; | 
| Manuel Pégourié-Gonnard | 5db6432 | 2015-06-30 15:40:39 +0200 | [diff] [blame] | 71 | mbedtls_net_context server_fd; | 
| Manuel Pégourié-Gonnard | e6ef16f | 2015-05-11 19:54:43 +0200 | [diff] [blame] | 72 | uint32_t flags; | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 73 | unsigned char buf[1024]; | 
| Paul Bakker | ef3f8c7 | 2013-06-24 13:01:08 +0200 | [diff] [blame] | 74 | const char *pers = "ssl_client1"; | 
| Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 75 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 76 | mbedtls_entropy_context entropy; | 
|  | 77 | mbedtls_ctr_drbg_context ctr_drbg; | 
|  | 78 | mbedtls_ssl_context ssl; | 
| Manuel Pégourié-Gonnard | def0bbe | 2015-05-04 14:56:36 +0200 | [diff] [blame] | 79 | mbedtls_ssl_config conf; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 80 | mbedtls_x509_crt cacert; | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 81 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 82 | #if defined(MBEDTLS_DEBUG_C) | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 83 | mbedtls_debug_set_threshold(DEBUG_LEVEL); | 
| Paul Bakker | c73079a | 2014-04-25 16:34:30 +0200 | [diff] [blame] | 84 | #endif | 
|  | 85 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 86 | /* | 
|  | 87 | * 0. Initialize the RNG and the session data | 
|  | 88 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 89 | mbedtls_net_init(&server_fd); | 
|  | 90 | mbedtls_ssl_init(&ssl); | 
|  | 91 | mbedtls_ssl_config_init(&conf); | 
|  | 92 | mbedtls_x509_crt_init(&cacert); | 
|  | 93 | mbedtls_ctr_drbg_init(&ctr_drbg); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 94 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 95 | mbedtls_printf("\n  . Seeding the random number generator..."); | 
|  | 96 | fflush(stdout); | 
| Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 97 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 98 | mbedtls_entropy_init(&entropy); | 
|  | 99 | if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, | 
|  | 100 | (const unsigned char *) pers, | 
|  | 101 | strlen(pers))) != 0) { | 
|  | 102 | mbedtls_printf(" failed\n  ! mbedtls_ctr_drbg_seed returned %d\n", ret); | 
| Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 103 | goto exit; | 
|  | 104 | } | 
|  | 105 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 106 | mbedtls_printf(" ok\n"); | 
| Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 107 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 108 | /* | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 109 | * 0. Initialize certificates | 
|  | 110 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 111 | mbedtls_printf("  . Loading the CA root certificate ..."); | 
|  | 112 | fflush(stdout); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 113 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 114 | ret = mbedtls_x509_crt_parse(&cacert, (const unsigned char *) mbedtls_test_cas_pem, | 
|  | 115 | mbedtls_test_cas_pem_len); | 
|  | 116 | if (ret < 0) { | 
|  | 117 | mbedtls_printf(" failed\n  !  mbedtls_x509_crt_parse returned -0x%x\n\n", | 
|  | 118 | (unsigned int) -ret); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 119 | goto exit; | 
|  | 120 | } | 
|  | 121 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 122 | mbedtls_printf(" ok (%d skipped)\n", ret); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 123 |  | 
|  | 124 | /* | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 125 | * 1. Start the connection | 
|  | 126 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 127 | mbedtls_printf("  . Connecting to tcp/%s/%s...", SERVER_NAME, SERVER_PORT); | 
|  | 128 | fflush(stdout); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 129 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 130 | if ((ret = mbedtls_net_connect(&server_fd, SERVER_NAME, | 
|  | 131 | SERVER_PORT, MBEDTLS_NET_PROTO_TCP)) != 0) { | 
|  | 132 | mbedtls_printf(" failed\n  ! mbedtls_net_connect returned %d\n\n", ret); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 133 | goto exit; | 
|  | 134 | } | 
|  | 135 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 136 | mbedtls_printf(" ok\n"); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 137 |  | 
|  | 138 | /* | 
|  | 139 | * 2. Setup stuff | 
|  | 140 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 141 | mbedtls_printf("  . Setting up the SSL/TLS structure..."); | 
|  | 142 | fflush(stdout); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 143 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 144 | if ((ret = mbedtls_ssl_config_defaults(&conf, | 
|  | 145 | MBEDTLS_SSL_IS_CLIENT, | 
|  | 146 | MBEDTLS_SSL_TRANSPORT_STREAM, | 
|  | 147 | MBEDTLS_SSL_PRESET_DEFAULT)) != 0) { | 
|  | 148 | mbedtls_printf(" failed\n  ! mbedtls_ssl_config_defaults returned %d\n\n", ret); | 
| Manuel Pégourié-Gonnard | def0bbe | 2015-05-04 14:56:36 +0200 | [diff] [blame] | 149 | goto exit; | 
|  | 150 | } | 
|  | 151 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 152 | mbedtls_printf(" ok\n"); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 153 |  | 
| Manuel Pégourié-Gonnard | fcf2fc2 | 2014-03-11 11:10:27 +0100 | [diff] [blame] | 154 | /* OPTIONAL is not optimal for security, | 
|  | 155 | * but makes interop easier in this simplified example */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 156 | mbedtls_ssl_conf_authmode(&conf, MBEDTLS_SSL_VERIFY_OPTIONAL); | 
|  | 157 | mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL); | 
|  | 158 | mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg); | 
|  | 159 | mbedtls_ssl_conf_dbg(&conf, my_debug, stdout); | 
| Manuel Pégourié-Gonnard | 06939ce | 2015-05-11 11:25:46 +0200 | [diff] [blame] | 160 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 161 | if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0) { | 
|  | 162 | mbedtls_printf(" failed\n  ! mbedtls_ssl_setup returned %d\n\n", ret); | 
| Manuel Pégourié-Gonnard | 06939ce | 2015-05-11 11:25:46 +0200 | [diff] [blame] | 163 | goto exit; | 
|  | 164 | } | 
|  | 165 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 166 | if ((ret = mbedtls_ssl_set_hostname(&ssl, SERVER_NAME)) != 0) { | 
|  | 167 | mbedtls_printf(" failed\n  ! mbedtls_ssl_set_hostname returned %d\n\n", ret); | 
| Manuel Pégourié-Gonnard | bc2b771 | 2015-05-06 11:14:19 +0100 | [diff] [blame] | 168 | goto exit; | 
|  | 169 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 170 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 171 | mbedtls_ssl_set_bio(&ssl, &server_fd, mbedtls_net_send, mbedtls_net_recv, NULL); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 172 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 173 | /* | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 174 | * 4. Handshake | 
|  | 175 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 176 | mbedtls_printf("  . Performing the SSL/TLS handshake..."); | 
|  | 177 | fflush(stdout); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 178 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 179 | while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) { | 
|  | 180 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) { | 
|  | 181 | mbedtls_printf(" failed\n  ! mbedtls_ssl_handshake returned -0x%x\n\n", | 
|  | 182 | (unsigned int) -ret); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 183 | goto exit; | 
|  | 184 | } | 
|  | 185 | } | 
|  | 186 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 187 | mbedtls_printf(" ok\n"); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 188 |  | 
|  | 189 | /* | 
|  | 190 | * 5. Verify the server certificate | 
|  | 191 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 192 | mbedtls_printf("  . Verifying peer X.509 certificate..."); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 193 |  | 
| Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 194 | /* In real life, we probably want to bail out when ret != 0 */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 195 | if ((flags = mbedtls_ssl_get_verify_result(&ssl)) != 0) { | 
| Hanno Becker | 612a2f1 | 2020-10-09 09:19:39 +0100 | [diff] [blame] | 196 | #if !defined(MBEDTLS_X509_REMOVE_INFO) | 
| Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 197 | char vrfy_buf[512]; | 
| Peter Kolbus | 9a969b6 | 2018-12-11 13:55:56 -0600 | [diff] [blame] | 198 | #endif | 
| Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 199 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 200 | mbedtls_printf(" failed\n"); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 201 |  | 
| Hanno Becker | 612a2f1 | 2020-10-09 09:19:39 +0100 | [diff] [blame] | 202 | #if !defined(MBEDTLS_X509_REMOVE_INFO) | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 203 | mbedtls_x509_crt_verify_info(vrfy_buf, sizeof(vrfy_buf), "  ! ", flags); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 204 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 205 | mbedtls_printf("%s\n", vrfy_buf); | 
| Peter Kolbus | 9a969b6 | 2018-12-11 13:55:56 -0600 | [diff] [blame] | 206 | #endif | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 207 | } else { | 
|  | 208 | mbedtls_printf(" ok\n"); | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 209 | } | 
| Paul Bakker | 75242c3 | 2012-11-17 00:03:46 +0100 | [diff] [blame] | 210 |  | 
|  | 211 | /* | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 212 | * 3. Write the GET request | 
|  | 213 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 214 | mbedtls_printf("  > Write to server:"); | 
|  | 215 | fflush(stdout); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 216 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 217 | len = sprintf((char *) buf, GET_REQUEST); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 218 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 219 | while ((ret = mbedtls_ssl_write(&ssl, buf, len)) <= 0) { | 
|  | 220 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) { | 
|  | 221 | mbedtls_printf(" failed\n  ! mbedtls_ssl_write returned %d\n\n", ret); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 222 | goto exit; | 
|  | 223 | } | 
|  | 224 | } | 
|  | 225 |  | 
|  | 226 | len = ret; | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 227 | mbedtls_printf(" %d bytes written\n\n%s", len, (char *) buf); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 228 |  | 
|  | 229 | /* | 
|  | 230 | * 7. Read the HTTP response | 
|  | 231 | */ | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 232 | mbedtls_printf("  < Read from server:"); | 
|  | 233 | fflush(stdout); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 234 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 235 | do { | 
|  | 236 | len = sizeof(buf) - 1; | 
|  | 237 | memset(buf, 0, sizeof(buf)); | 
|  | 238 | ret = mbedtls_ssl_read(&ssl, buf, len); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 239 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 240 | if (ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE) { | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 241 | continue; | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 242 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 243 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 244 | if (ret == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY) { | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 245 | break; | 
|  | 246 | } | 
|  | 247 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 248 | if (ret < 0) { | 
|  | 249 | mbedtls_printf("failed\n  ! mbedtls_ssl_read returned %d\n\n", ret); | 
|  | 250 | break; | 
|  | 251 | } | 
|  | 252 |  | 
|  | 253 | if (ret == 0) { | 
|  | 254 | mbedtls_printf("\n\nEOF\n\n"); | 
| Paul Bakker | 61da752 | 2011-11-11 10:28:58 +0000 | [diff] [blame] | 255 | break; | 
|  | 256 | } | 
|  | 257 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 258 | len = ret; | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 259 | mbedtls_printf(" %d bytes read\n\n%s", len, (char *) buf); | 
|  | 260 | } while (1); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 261 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 262 | mbedtls_ssl_close_notify(&ssl); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 263 |  | 
| Andres Amaya Garcia | 5517202 | 2018-04-29 20:53:53 +0100 | [diff] [blame] | 264 | exit_code = MBEDTLS_EXIT_SUCCESS; | 
|  | 265 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 266 | exit: | 
|  | 267 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 268 | #ifdef MBEDTLS_ERROR_C | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 269 | if (exit_code != MBEDTLS_EXIT_SUCCESS) { | 
| Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 270 | char error_buf[100]; | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 271 | mbedtls_strerror(ret, error_buf, 100); | 
|  | 272 | mbedtls_printf("Last error was: %d - %s\n\n", ret, error_buf); | 
| Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 273 | } | 
|  | 274 | #endif | 
|  | 275 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 276 | mbedtls_net_free(&server_fd); | 
| Paul Bakker | 0c22610 | 2014-04-17 16:02:36 +0200 | [diff] [blame] | 277 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 278 | mbedtls_x509_crt_free(&cacert); | 
|  | 279 | mbedtls_ssl_free(&ssl); | 
|  | 280 | mbedtls_ssl_config_free(&conf); | 
|  | 281 | mbedtls_ctr_drbg_free(&ctr_drbg); | 
|  | 282 | mbedtls_entropy_free(&entropy); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 283 |  | 
| Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 284 | mbedtls_exit(exit_code); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 285 | } | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 286 | #endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_SSL_TLS_C && | 
|  | 287 | MBEDTLS_SSL_CLI_C && MBEDTLS_NET_C && MBEDTLS_RSA_C && | 
| Mateusz Starzyk | 1aec646 | 2021-02-08 15:34:42 +0100 | [diff] [blame] | 288 | MBEDTLS_PEM_PARSE_C && MBEDTLS_CTR_DRBG_C && MBEDTLS_X509_CRT_PARSE_C */ |