Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Hello world example of a TLS client: fetch an HTTPS page |
| 3 | * |
| 4 | * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved |
| 5 | * |
| 6 | * This file is part of mbed TLS (https://tls.mbed.org) |
Manuel Pégourié-Gonnard | cdee2d9 | 2015-08-07 09:40:51 +0200 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #if !defined(TARGET_LIKE_MBED) |
| 24 | |
| 25 | #include <stdio.h> |
| 26 | |
| 27 | int main() { |
| 28 | printf("this program only works on mbed OS\n"); |
| 29 | return 0; |
| 30 | } |
| 31 | |
| 32 | #else |
| 33 | |
| 34 | /** \file main.cpp |
| 35 | * \brief An example TLS Client application |
| 36 | * This application sends an HTTPS request to developer.mbed.org and searches for a string in |
| 37 | * the result. |
| 38 | * |
| 39 | * This example is implemented as a logic class (HelloHTTPS) wrapping a TCP socket. |
| 40 | * The logic class handles all events, leaving the main loop to just check if the process |
| 41 | * has finished. |
| 42 | */ |
| 43 | |
| 44 | /* Change to a number between 1 and 4 to debug the TLS connection */ |
| 45 | #define DEBUG_LEVEL 0 |
| 46 | |
| 47 | /* Change to 1 to skip certificate verification (UNSAFE, for debug only!) */ |
| 48 | #define UNSAFE 0 |
| 49 | |
| 50 | #include "mbed.h" |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 51 | #include "EthernetInterface.h" |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 52 | #include "mbed-net-sockets/TCPStream.h" |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 53 | #include "test_env.h" |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 54 | #include "minar/minar.h" |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 55 | |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 56 | #include "lwipv4_init.h" |
| 57 | |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 58 | #include "mbedtls/ssl.h" |
| 59 | #include "mbedtls/entropy.h" |
| 60 | #include "mbedtls/ctr_drbg.h" |
| 61 | #include "mbedtls/error.h" |
| 62 | #if DEBUG_LEVEL > 0 |
| 63 | #include "mbedtls/debug.h" |
| 64 | #endif |
| 65 | |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 66 | namespace { |
Manuel Pégourié-Gonnard | 42618b8 | 2015-08-17 14:19:38 +0200 | [diff] [blame] | 67 | const char *HTTPS_SERVER_NAME = "developer.mbed.org"; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 68 | const int HTTPS_SERVER_PORT = 443; |
| 69 | const int RECV_BUFFER_SIZE = 600; |
| 70 | |
Manuel Pégourié-Gonnard | 42618b8 | 2015-08-17 14:19:38 +0200 | [diff] [blame] | 71 | const char HTTPS_PATH[] = "/media/uploads/mbed_official/hello.txt"; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 72 | const size_t HTTPS_PATH_LEN = sizeof(HTTPS_PATH) - 1; |
| 73 | |
| 74 | /* Test related data */ |
| 75 | const char *HTTPS_OK_STR = "200 OK"; |
| 76 | const char *HTTPS_HELLO_STR = "Hello world!"; |
| 77 | |
| 78 | /* personalization string for the drbg */ |
| 79 | const char *DRBG_PERS = "mbed TLS helloword client"; |
| 80 | |
| 81 | /* List of trusted root CA certificates |
Simon Butcher | df81924 | 2015-08-19 19:33:27 +0100 | [diff] [blame] | 82 | * currently only GlobalSign, the CA for developer.mbed.org |
| 83 | * |
| 84 | * To add more than one root, just concatenate them. |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 85 | */ |
| 86 | const char SSL_CA_PEM[] = |
Simon Butcher | df81924 | 2015-08-19 19:33:27 +0100 | [diff] [blame] | 87 | /* GlobalSign Root R1 SHA1/RSA/2048 |
| 88 | * Serial no. 04 00 00 00 00 01 15 4b 5a c3 94 */ |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 89 | "-----BEGIN CERTIFICATE-----\n" |
| 90 | "MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG\n" |
| 91 | "A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv\n" |
| 92 | "b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw\n" |
| 93 | "MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i\n" |
| 94 | "YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT\n" |
| 95 | "aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ\n" |
| 96 | "jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp\n" |
| 97 | "xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp\n" |
| 98 | "1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG\n" |
| 99 | "snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ\n" |
| 100 | "U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8\n" |
| 101 | "9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E\n" |
| 102 | "BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B\n" |
| 103 | "AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz\n" |
| 104 | "yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE\n" |
| 105 | "38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP\n" |
| 106 | "AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad\n" |
| 107 | "DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME\n" |
| 108 | "HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==\n" |
| 109 | "-----END CERTIFICATE-----\n"; |
| 110 | } |
| 111 | |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 112 | using namespace mbed::Sockets::v0; |
| 113 | |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 114 | /** |
| 115 | * \brief HelloHTTPS implements the logic for fetching a file from a webserver |
| 116 | * using a TCP socket and parsing the result. |
| 117 | */ |
| 118 | class HelloHTTPS { |
| 119 | public: |
| 120 | /** |
| 121 | * HelloHTTPS Constructor |
| 122 | * Initializes the TCP socket, sets up event handlers and flags. |
| 123 | * |
| 124 | * Note that CThunk is used for event handlers. This will be changed to a C++ |
| 125 | * function pointer in an upcoming release. |
| 126 | * |
| 127 | * |
| 128 | * @param[in] domain The domain name to fetch from |
| 129 | * @param[in] port The port of the HTTPS server |
| 130 | */ |
| 131 | HelloHTTPS(const char * domain, const uint16_t port) : |
| 132 | _stream(SOCKET_STACK_LWIP_IPV4), _domain(domain), _port(port) |
| 133 | { |
| 134 | |
| 135 | _error = false; |
| 136 | _gothello = false; |
| 137 | _got200 = false; |
| 138 | _bpos = 0; |
| 139 | _request_sent = 0; |
| 140 | _stream.open(SOCKET_AF_INET4); |
| 141 | |
| 142 | mbedtls_entropy_init(&_entropy); |
| 143 | mbedtls_ctr_drbg_init(&_ctr_drbg); |
| 144 | mbedtls_x509_crt_init(&_cacert); |
| 145 | mbedtls_ssl_init(&_ssl); |
| 146 | mbedtls_ssl_config_init(&_ssl_conf); |
| 147 | } |
| 148 | /** |
| 149 | * Initiate the test. |
| 150 | * |
| 151 | * Starts by clearing test flags, then resolves the address with DNS. |
| 152 | * |
| 153 | * @param[in] path The path of the file to fetch from the HTTPS server |
| 154 | * @return SOCKET_ERROR_NONE on success, or an error code on failure |
| 155 | */ |
Manuel Pégourié-Gonnard | 8356fc2 | 2015-08-07 14:35:12 +0200 | [diff] [blame] | 156 | void startTest(const char *path) { |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 157 | /* Initialize the flags */ |
| 158 | _got200 = false; |
| 159 | _gothello = false; |
| 160 | _error = false; |
| 161 | _disconnected = false; |
| 162 | _request_sent = false; |
| 163 | /* Fill the request buffer */ |
| 164 | _bpos = snprintf(_buffer, sizeof(_buffer) - 1, "GET %s HTTP/1.1\nHost: %s\n\n", path, HTTPS_SERVER_NAME); |
| 165 | |
| 166 | /* |
| 167 | * Initialize TLS-related stuf. |
| 168 | */ |
| 169 | int ret; |
| 170 | if ((ret = mbedtls_ctr_drbg_seed(&_ctr_drbg, mbedtls_entropy_func, &_entropy, |
| 171 | (const unsigned char *) DRBG_PERS, |
| 172 | sizeof (DRBG_PERS))) != 0) { |
| 173 | print_mbedtls_error("mbedtls_crt_drbg_init", ret); |
Manuel Pégourié-Gonnard | 8356fc2 | 2015-08-07 14:35:12 +0200 | [diff] [blame] | 174 | _error = true; |
| 175 | return; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | if ((ret = mbedtls_x509_crt_parse(&_cacert, (const unsigned char *) SSL_CA_PEM, |
| 179 | sizeof (SSL_CA_PEM))) != 0) { |
| 180 | print_mbedtls_error("mbedtls_x509_crt_parse", ret); |
Manuel Pégourié-Gonnard | 8356fc2 | 2015-08-07 14:35:12 +0200 | [diff] [blame] | 181 | _error = true; |
| 182 | return; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | if ((ret = mbedtls_ssl_config_defaults(&_ssl_conf, |
| 186 | MBEDTLS_SSL_IS_CLIENT, |
| 187 | MBEDTLS_SSL_TRANSPORT_STREAM, |
| 188 | MBEDTLS_SSL_PRESET_DEFAULT)) != 0) { |
| 189 | print_mbedtls_error("mbedtls_ssl_config_defaults", ret); |
Manuel Pégourié-Gonnard | 8356fc2 | 2015-08-07 14:35:12 +0200 | [diff] [blame] | 190 | _error = true; |
| 191 | return; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | mbedtls_ssl_conf_ca_chain(&_ssl_conf, &_cacert, NULL); |
| 195 | mbedtls_ssl_conf_rng(&_ssl_conf, mbedtls_ctr_drbg_random, &_ctr_drbg); |
| 196 | |
| 197 | #if UNSAFE |
| 198 | mbedtls_ssl_conf_authmode(&_ssl_conf, MBEDTLS_SSL_VERIFY_OPTIONAL); |
| 199 | #endif |
| 200 | |
| 201 | #if DEBUG_LEVEL > 0 |
| 202 | mbedtls_ssl_conf_verify(&_ssl_conf, my_verify, NULL); |
| 203 | mbedtls_ssl_conf_dbg(&_ssl_conf, my_debug, NULL); |
| 204 | mbedtls_debug_set_threshold(DEBUG_LEVEL); |
| 205 | #endif |
| 206 | |
| 207 | if ((ret = mbedtls_ssl_setup(&_ssl, &_ssl_conf)) != 0) { |
| 208 | print_mbedtls_error("mbedtls_ssl_setup", ret); |
Manuel Pégourié-Gonnard | 8356fc2 | 2015-08-07 14:35:12 +0200 | [diff] [blame] | 209 | _error = true; |
| 210 | return; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | mbedtls_ssl_set_hostname(&_ssl, HTTPS_SERVER_NAME); |
| 214 | |
| 215 | mbedtls_ssl_set_bio(&_ssl, static_cast<void *>(&_stream), |
| 216 | ssl_send, ssl_recv, NULL ); |
| 217 | |
| 218 | |
| 219 | /* Connect to the server */ |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 220 | printf("Starting DNS lookup for %s\r\n", _domain); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 221 | /* Resolve the domain name: */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 222 | socket_error_t err = _stream.resolve(_domain, TCPStream::DNSHandler_t(this, &HelloHTTPS::onDNS)); |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 223 | _stream.error_check(err); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 224 | } |
| 225 | /** |
| 226 | * Check if the test has completed. |
| 227 | * @return Returns true if done, false otherwise. |
| 228 | */ |
| 229 | bool done() { |
| 230 | return _error || (_got200 && _gothello); |
| 231 | } |
| 232 | /** |
| 233 | * Check if there was an error |
| 234 | * @return Returns true if there was an error, false otherwise. |
| 235 | */ |
| 236 | bool error() { |
| 237 | return _error; |
| 238 | } |
| 239 | /** |
| 240 | * Closes the TCP socket |
| 241 | */ |
| 242 | void close() { |
| 243 | _stream.close(); |
| 244 | while (!_disconnected) |
| 245 | __WFI(); |
| 246 | } |
| 247 | protected: |
| 248 | /** |
| 249 | * Helper for pretty-printing mbed TLS error codes |
| 250 | */ |
| 251 | static void print_mbedtls_error(const char *name, int err) { |
| 252 | char buf[128]; |
| 253 | mbedtls_strerror(err, buf, sizeof (buf)); |
| 254 | printf("%s() failed: -0x%04x (%d): %s\r\n", name, -err, err, buf); |
| 255 | } |
| 256 | |
| 257 | #if DEBUG_LEVEL > 0 |
| 258 | /** |
| 259 | * Debug callback for mbed TLS |
| 260 | * Just prints on the USB serial port |
| 261 | */ |
Manuel Pégourié-Gonnard | e50f67c | 2015-08-18 20:52:18 +0200 | [diff] [blame] | 262 | static void my_debug(void *ctx, int level, const char *file, int line, |
| 263 | const char *str) |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 264 | { |
Manuel Pégourié-Gonnard | e50f67c | 2015-08-18 20:52:18 +0200 | [diff] [blame] | 265 | const char *p, *basename; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 266 | (void) ctx; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 267 | |
Manuel Pégourié-Gonnard | e50f67c | 2015-08-18 20:52:18 +0200 | [diff] [blame] | 268 | /* Extract basename from file */ |
| 269 | for(p = basename = file; *p != '\0'; p++) { |
| 270 | if(*p == '/' || *p == '\\') { |
| 271 | basename = p + 1; |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | printf("%s:%04d: |%d| %s", basename, line, level, str); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /** |
| 279 | * Certificate verification callback for mbed TLS |
| 280 | * Here we only use it to display information on each cert in the chain |
| 281 | */ |
Manuel Pégourié-Gonnard | e50f67c | 2015-08-18 20:52:18 +0200 | [diff] [blame] | 282 | static int my_verify(void *data, mbedtls_x509_crt *crt, int depth, uint32_t *flags) |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 283 | { |
| 284 | char buf[1024]; |
| 285 | (void) data; |
| 286 | |
| 287 | printf("\nVerifying certificate at depth %d:\n", depth); |
| 288 | mbedtls_x509_crt_info(buf, sizeof (buf) - 1, " ", crt); |
| 289 | printf("%s", buf); |
| 290 | |
| 291 | if (*flags == 0) |
| 292 | printf("No verification issue for this certificate\n"); |
| 293 | else |
| 294 | { |
| 295 | mbedtls_x509_crt_verify_info(buf, sizeof (buf), " ! ", *flags); |
| 296 | printf("%s\n", buf); |
| 297 | } |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | #endif |
| 302 | |
| 303 | /** |
| 304 | * Receive callback for mbed TLS |
| 305 | */ |
| 306 | static int ssl_recv(void *ctx, unsigned char *buf, size_t len) { |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 307 | TCPStream *stream = static_cast<TCPStream *>(ctx); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 308 | socket_error_t err = stream->recv(buf, &len); |
| 309 | |
| 310 | if (err == SOCKET_ERROR_NONE) { |
| 311 | return static_cast<int>(len); |
| 312 | } else if (err == SOCKET_ERROR_WOULD_BLOCK) { |
| 313 | return MBEDTLS_ERR_SSL_WANT_READ; |
| 314 | } else { |
| 315 | return -1; |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Send callback for mbed TLS |
| 321 | */ |
| 322 | static int ssl_send(void *ctx, const unsigned char *buf, size_t len) { |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 323 | TCPStream *stream = static_cast<TCPStream *>(ctx); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 324 | |
| 325 | socket_error_t err = stream->send(buf, len); |
| 326 | |
| 327 | if (err == SOCKET_ERROR_NONE) { |
| 328 | return static_cast<int>(len); |
| 329 | } else if (err == SOCKET_ERROR_WOULD_BLOCK) { |
| 330 | return MBEDTLS_ERR_SSL_WANT_WRITE; |
| 331 | } else { |
| 332 | return -1; |
| 333 | } |
| 334 | } |
| 335 | |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 336 | void onError(Socket *s, socket_error_t err) { |
| 337 | (void) s; |
| 338 | printf("MBED: Socket Error: %s (%d)\r\n", socket_strerror(err), err); |
| 339 | _stream.close(); |
| 340 | _error = true; |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 341 | MBED_HOSTTEST_RESULT(false); |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 342 | } |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 343 | /** |
| 344 | * On Connect handler |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 345 | * Starts the TLS handshake |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 346 | */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 347 | void onConnect(TCPStream *s) { |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 348 | char buf[16]; |
| 349 | _remoteAddr.fmtIPv4(buf,sizeof(buf)); |
| 350 | printf("Connected to %s:%d\r\n", buf, _port); |
| 351 | |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 352 | s->setOnReadable(TCPStream::ReadableHandler_t(this, &HelloHTTPS::onReceive)); |
| 353 | s->setOnDisconnect(TCPStream::DisconnectHandler_t(this, &HelloHTTPS::onDisconnect)); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 354 | |
| 355 | /* Start the handshake, the rest will be done in onReceive() */ |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 356 | printf("Starting the TLS handshake...\r\n"); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 357 | int ret = mbedtls_ssl_handshake(&_ssl); |
| 358 | if (ret < 0) { |
| 359 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
| 360 | ret != MBEDTLS_ERR_SSL_WANT_WRITE) { |
| 361 | print_mbedtls_error("mbedtls_ssl_handshake", ret); |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 362 | onError(s, SOCKET_ERROR_UNKNOWN); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 363 | } |
| 364 | return; |
| 365 | } |
| 366 | } |
| 367 | /** |
| 368 | * On Receive handler |
| 369 | * Parses the response from the server, to check for the HTTPS 200 status code and the expected response ("Hello World!") |
| 370 | */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 371 | void onReceive(Socket *s) { |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 372 | /* Send request if not done yet */ |
| 373 | if (!_request_sent) { |
| 374 | int ret = mbedtls_ssl_write(&_ssl, (const unsigned char *) _buffer, _bpos); |
| 375 | if (ret < 0) { |
| 376 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && |
| 377 | ret != MBEDTLS_ERR_SSL_WANT_WRITE) { |
| 378 | print_mbedtls_error("mbedtls_ssl_write", ret); |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 379 | onError(s, SOCKET_ERROR_UNKNOWN); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 380 | } |
| 381 | return; |
| 382 | } |
| 383 | |
| 384 | /* If we get here, the request was sent */ |
| 385 | _request_sent = 1; |
| 386 | |
| 387 | /* It also means the handshake is done, time to print info */ |
| 388 | printf("TLS connection to %s established\r\n", HTTPS_SERVER_NAME); |
| 389 | { |
| 390 | char buf[1024]; |
| 391 | mbedtls_x509_crt_info(buf, sizeof(buf), "\r ", |
| 392 | mbedtls_ssl_get_peer_cert(&_ssl)); |
| 393 | printf("Server certificate:\r\n%s\r", buf); |
| 394 | |
| 395 | #if defined(UNSAFE) |
| 396 | uint32_t flags = mbedtls_ssl_get_verify_result(&_ssl); |
| 397 | if( flags != 0 ) |
| 398 | { |
| 399 | mbedtls_x509_crt_verify_info(buf, sizeof (buf), "\r ! ", flags); |
| 400 | printf("Certificate verification failed:\r\n%s\r\r\n", buf); |
| 401 | } |
| 402 | else |
| 403 | #endif |
| 404 | printf("Certificate verification passed\r\n\r\n"); |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | /* Read data out of the socket */ |
| 409 | int ret = mbedtls_ssl_read(&_ssl, (unsigned char *) _buffer, sizeof(_buffer)); |
| 410 | if (ret < 0) { |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 411 | if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) { |
| 412 | print_mbedtls_error("mbedtls_ssl_read", ret); |
| 413 | onError(s, SOCKET_ERROR_UNKNOWN); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 414 | } |
| 415 | return; |
| 416 | } |
| 417 | _bpos = static_cast<size_t>(ret); |
| 418 | |
| 419 | _buffer[_bpos] = 0; |
| 420 | |
| 421 | /* Check each of the flags */ |
| 422 | _got200 = _got200 || strstr(_buffer, HTTPS_OK_STR) != NULL; |
| 423 | _gothello = _gothello || strstr(_buffer, HTTPS_HELLO_STR) != NULL; |
| 424 | |
| 425 | /* Print status messages */ |
| 426 | printf("HTTPS: Received %d chars from server\r\n", _bpos); |
| 427 | printf("HTTPS: Received 200 OK status ... %s\r\n", _got200 ? "[OK]" : "[FAIL]"); |
| 428 | printf("HTTPS: Received '%s' status ... %s\r\n", HTTPS_HELLO_STR, _gothello ? "[OK]" : "[FAIL]"); |
| 429 | printf("HTTPS: Received message:\r\n\r\n"); |
| 430 | printf("%s", _buffer); |
| 431 | _error = !(_got200 && _gothello); |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 432 | |
| 433 | s->close(); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 434 | } |
| 435 | /** |
| 436 | * On DNS Handler |
| 437 | * Reads the address returned by DNS, then starts the connect process. |
| 438 | */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 439 | void onDNS(Socket *s, struct socket_addr addr, const char *domain) { |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 440 | /* Check that the result is a valid DNS response */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 441 | if (socket_addr_is_any(&addr)) { |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 442 | /* Could not find DNS entry */ |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 443 | printf("Could not find DNS entry for %s", HTTPS_SERVER_NAME); |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 444 | onError(s, SOCKET_ERROR_DNS_FAILED); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 445 | } else { |
| 446 | /* Start connecting to the remote host */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 447 | char buf[16]; |
| 448 | _remoteAddr.setAddr(&addr); |
| 449 | _remoteAddr.fmtIPv4(buf,sizeof(buf)); |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 450 | printf("DNS Response Received:\r\n%s: %s\r\n", domain, buf); |
| 451 | printf("Connecting to %s:%d\r\n", buf, _port); |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 452 | socket_error_t err = _stream.connect(_remoteAddr, _port, TCPStream::ConnectHandler_t(this, &HelloHTTPS::onConnect)); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 453 | |
| 454 | if (err != SOCKET_ERROR_NONE) { |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 455 | onError(s, err); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 456 | } |
| 457 | } |
| 458 | } |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 459 | void onDisconnect(TCPStream *s) { |
| 460 | s->close(); |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 461 | MBED_HOSTTEST_RESULT(!error()); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | protected: |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 465 | TCPStream _stream; /**< The TCP Socket */ |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 466 | const char *_domain; /**< The domain name of the HTTPS server */ |
| 467 | const uint16_t _port; /**< The HTTPS server port */ |
| 468 | char _buffer[RECV_BUFFER_SIZE]; /**< The response buffer */ |
| 469 | size_t _bpos; /**< The current offset in the response buffer */ |
Manuel Pégourié-Gonnard | ae5398a | 2015-08-04 14:10:28 +0200 | [diff] [blame] | 470 | SocketAddr _remoteAddr; /**< The remote address */ |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 471 | volatile bool _got200; /**< Status flag for HTTPS 200 */ |
| 472 | volatile bool _gothello; /**< Status flag for finding the test string */ |
| 473 | volatile bool _error; /**< Status flag for an error */ |
| 474 | volatile bool _disconnected; |
| 475 | volatile bool _request_sent; |
| 476 | |
| 477 | mbedtls_entropy_context _entropy; |
| 478 | mbedtls_ctr_drbg_context _ctr_drbg; |
| 479 | mbedtls_x509_crt _cacert; |
| 480 | mbedtls_ssl_context _ssl; |
| 481 | mbedtls_ssl_config _ssl_conf; |
| 482 | }; |
| 483 | |
| 484 | /** |
| 485 | * The main loop of the HTTPS Hello World test |
| 486 | */ |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 487 | EthernetInterface eth; |
| 488 | HelloHTTPS *hello; |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 489 | |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 490 | void app_start(int, char*[]) { |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 491 | /* The default 9600 bps is too slow to print full TLS debug info and could |
| 492 | * cause the other party to time out. Select a higher baud rate for |
| 493 | * printf(), regardless of debug level for the sake of uniformity. */ |
| 494 | Serial pc(USBTX, USBRX); |
| 495 | pc.baud(115200); |
| 496 | |
| 497 | MBED_HOSTTEST_TIMEOUT(120); |
| 498 | MBED_HOSTTEST_SELECT(default); |
| 499 | MBED_HOSTTEST_DESCRIPTION(mbed TLS example HTTPS client); |
| 500 | MBED_HOSTTEST_START("MBEDTLS_EX_HTTPS_CLIENT"); |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 501 | |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 502 | /* Initialise with DHCP, connect, and start up the stack */ |
| 503 | eth.init(); |
| 504 | eth.connect(); |
| 505 | lwipv4_socket_init(); |
| 506 | |
| 507 | hello = new HelloHTTPS(HTTPS_SERVER_NAME, HTTPS_SERVER_PORT); |
| 508 | |
Manuel Pégourié-Gonnard | bd6d0ab | 2015-08-18 18:18:16 +0200 | [diff] [blame] | 509 | printf("Client IP Address is %s\r\n", eth.getIPAddress()); |
| 510 | |
| 511 | mbed::FunctionPointer1<void, const char*> fp(hello, &HelloHTTPS::startTest); |
| 512 | minar::Scheduler::postCallback(fp.bind(HTTPS_PATH)); |
Manuel Pégourié-Gonnard | e87b04c | 2015-08-11 04:09:44 +0200 | [diff] [blame] | 513 | } |
| 514 | |
Manuel Pégourié-Gonnard | 63e7eba | 2015-07-28 14:17:48 +0200 | [diff] [blame] | 515 | #endif /* TARGET_LIKE_MBED */ |