HTTP and HTTPS library for Mbed OS 5

Dependents:   MQTTGateway2 MQTTGatewayK64 http-example-wnc GuardRoom ... more

For the example program, see: sandbox/http-example.

This library is used to make HTTP and HTTPS calls from Mbed OS 5 applications.

HTTP Request API

NetworkInterface* network = /* obtain a NetworkInterface object */

const char body[] = "{\"hello\":\"world\"}";

HttpRequest* request = new HttpRequest(network, HTTP_POST, "http://httpbin.org/post");
request->set_header("Content-Type", "application/json");
HttpResponse* response = request->send(body, strlen(body));
// if response is NULL, check response->get_error()

printf("status is %d - %s\n", response->get_status_code(), response->get_status_message());
printf("body is:\n%s\n", response->get_body_as_string().c_str());

delete request; // also clears out the response

HTTPS Request API

// pass in the root certificates that you trust, there is no central CA registry in Mbed OS
const char SSL_CA_PEM[] = "-----BEGIN CERTIFICATE-----\n"
    /* rest of the CA root certificates */;

NetworkInterface* network = /* obtain a NetworkInterface object */

const char body[] = "{\"hello\":\"world\"}";

HttpsRequest* request = new HttpsRequest(network, SSL_CA_PEM, HTTP_GET "https://httpbin.org/status/418");
HttpResponse* response = request->send();
// if response is NULL, check response->get_error()

printf("status is %d - %s\n", response->get_status_code(), response->get_status_message());
printf("body is:\n%s\n", response->get_body().c_str());

delete request;

Note: You can get the root CA for a domain easily from Firefox. Click on the green padlock, click More information > Security > View certificate > Details. Select the top entry in the 'Certificate Hierarchy' and click Export.... This gives you a PEM file. Add the content of the PEM file to your root CA list (here's an image).

Mbed TLS Entropy configuration

If your target does not have a built-in TRNG, or other entropy sources, add the following macros to your mbed_app.json file to disable entropy:

{
    "macros": [
        "MBEDTLS_TEST_NULL_ENTROPY",
        "MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES"
    ]
}

Note that this is not secure, and you should not deploy this device into production with this configuration.

Memory usage

Small requests where the body of the response is cached by the library (like the one found in main-http.cpp), require 4K of RAM. When the request is finished they require 1.5K of RAM, depending on the size of the response. This applies both to HTTP and HTTPS. If you need to handle requests that return a large response body, see 'Dealing with large body'.

HTTPS requires additional memory: on FRDM-K64F about 50K of heap space (at its peak). This means that you cannot use HTTPS on devices with less than 128K of memory, asyou also need to reserve memory for the stack and network interface.

Dealing with large response body

By default the library will store the full request body on the heap. This works well for small responses, but you'll run out of memory when receiving a large response body. To mitigate this you can pass in a callback as the last argument to the request constructor. This callback will be called whenever a chunk of the body is received. You can set the request chunk size in the HTTP_RECEIVE_BUFFER_SIZE macro (see mbed_lib.json for the definition) although it also depends on the buffer size ofthe underlying network connection.

void body_callback(const char* data, uint32_t data_len) {
    // do something with the data
}

HttpRequest* req = new HttpRequest(network, HTTP_GET, "http://pathtolargefile.com", &body_callback);
req->send(NULL, 0);

Dealing with a large request body

If you cannot load the full request into memory, you can pass a callback into the send function. Through this callback you can feed in chunks of the request body. This is very useful if you want to send files from a file system.

const void * get_chunk(uint32_t* out_size) {
    // set the value of out_size (via *out_size = 10) to the size of the buffer
    // return the buffer

    // if you don't have any more data, set *out_size to 0
}

HttpRequest* req = new HttpRequest(network, HTTP_POST, "http://my_api.com/upload");
req->send(callback(&get_chunk));

Socket re-use

By default the library opens a new socket per request. This is wasteful, especially when dealing with TLS requests. You can re-use sockets like this:

HTTP

TCPSocket* socket = new TCPSocket();

nsapi_error_t open_result = socket->open(network);
// check open_result

nsapi_error_t connect_result = socket->connect("httpbin.org", 80);
// check connect_result

// Pass in `socket`, instead of `network` as first argument
HttpRequest* req = new HttpRequest(socket, HTTP_GET, "http://httpbin.org/status/418");

HTTPS

TLSSocket* socket = new TLSSocket();

nsapi_error_t r;
// make sure to check the return values for the calls below (should return NSAPI_ERROR_OK)
r = socket->open(network);
r = socket->set_root_ca_cert(SSL_CA_PEM);
r = socket->connect("httpbin.org", 443);

// Pass in `socket`, instead of `network` as first argument, and omit the `SSL_CA_PEM` argument
HttpsRequest* get_req = new HttpsRequest(socket, HTTP_GET, "https://httpbin.org/status/418");

Request logging

To make debugging easier you can log the raw request body that goes over the line. This also works with chunked encoding.

uint8_t *request_buffer = (uint8_t*)calloc(2048, 1);
req->set_request_log_buffer(request_buffer, 2048);

// after the request is done:
printf("\n----- Request buffer -----\n");
for (size_t ix = 0; ix < req->get_request_log_buffer_length(); ix++) {
    printf("%02x ", request_buffer[ix]);
}
printf("\n");

Integration tests

Integration tests are located in the TESTS folder and are ran through Greentea. Instructions on how to run the tests are in http-example.

Mbed OS 5.10 or lower

If you want to use this library on Mbed OS 5.10 or lower, you need to add the TLSSocket library to your project. This library is included in Mbed OS 5.11 and up.

Tested on

  • K64F with Ethernet.
  • NUCLEO_F411RE with ESP8266.
  • ODIN-W2 with WiFi.
  • K64F with Atmel 6LoWPAN shield.
  • DISCO-L475VG-IOT01A with WiFi.
  • Mbed Simulator.
Committer:
Jan Jongboom
Date:
Mon Aug 12 11:45:31 2019 +0200
Revision:
39:a8d157986ad8
Parent:
35:b3ee394d1d2e
Fix parsed url leaking memory if path is empty

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jan Jongboom 0:910f5949759f 1 /*
Jan Jongboom 0:910f5949759f 2 * PackageLicenseDeclared: Apache-2.0
Jan Jongboom 0:910f5949759f 3 * Copyright (c) 2017 ARM Limited
Jan Jongboom 0:910f5949759f 4 *
Jan Jongboom 0:910f5949759f 5 * Licensed under the Apache License, Version 2.0 (the "License");
Jan Jongboom 0:910f5949759f 6 * you may not use this file except in compliance with the License.
Jan Jongboom 0:910f5949759f 7 * You may obtain a copy of the License at
Jan Jongboom 0:910f5949759f 8 *
Jan Jongboom 0:910f5949759f 9 * http://www.apache.org/licenses/LICENSE-2.0
Jan Jongboom 0:910f5949759f 10 *
Jan Jongboom 0:910f5949759f 11 * Unless required by applicable law or agreed to in writing, software
Jan Jongboom 0:910f5949759f 12 * distributed under the License is distributed on an "AS IS" BASIS,
Jan Jongboom 0:910f5949759f 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Jan Jongboom 0:910f5949759f 14 * See the License for the specific language governing permissions and
Jan Jongboom 0:910f5949759f 15 * limitations under the License.
Jan Jongboom 0:910f5949759f 16 */
Jan Jongboom 0:910f5949759f 17
Jan Jongboom 0:910f5949759f 18 #ifndef _MBED_HTTP_REQUEST_BUILDER_H_
Jan Jongboom 0:910f5949759f 19 #define _MBED_HTTP_REQUEST_BUILDER_H_
Jan Jongboom 0:910f5949759f 20
Jan Jongboom 0:910f5949759f 21 #include <string>
Jan Jongboom 0:910f5949759f 22 #include <map>
Jan Jongboom 0:910f5949759f 23 #include "http_parser.h"
Jan Jongboom 0:910f5949759f 24 #include "http_parsed_url.h"
Jan Jongboom 0:910f5949759f 25
Jan Jongboom 0:910f5949759f 26 class HttpRequestBuilder {
Jan Jongboom 0:910f5949759f 27 public:
Jan Jongboom 0:910f5949759f 28 HttpRequestBuilder(http_method a_method, ParsedUrl* a_parsed_url)
Jan Jongboom 0:910f5949759f 29 : method(a_method), parsed_url(a_parsed_url)
Jan Jongboom 0:910f5949759f 30 {
Jan Jongboom 21:fcd2bfd31a39 31 string host(parsed_url->host());
Jan Jongboom 21:fcd2bfd31a39 32
Jan Jongboom 21:fcd2bfd31a39 33 char port_str[10];
Jan Jongboom 21:fcd2bfd31a39 34 sprintf(port_str, ":%d", parsed_url->port());
Jan Jongboom 21:fcd2bfd31a39 35
Jan Jongboom 21:fcd2bfd31a39 36 if (strcmp(parsed_url->schema(), "http") == 0 && parsed_url->port() != 80) {
Jan Jongboom 21:fcd2bfd31a39 37 host += string(port_str);
Jan Jongboom 21:fcd2bfd31a39 38 }
Jan Jongboom 21:fcd2bfd31a39 39 else if (strcmp(parsed_url->schema(), "https") == 0 && parsed_url->port() != 443) {
Jan Jongboom 21:fcd2bfd31a39 40 host += string(port_str);
Jan Jongboom 21:fcd2bfd31a39 41 }
Jan Jongboom 35:b3ee394d1d2e 42 else if (strcmp(parsed_url->schema(), "ws") == 0 && parsed_url->port() != 80) {
Jan Jongboom 35:b3ee394d1d2e 43 host += string(port_str);
Jan Jongboom 35:b3ee394d1d2e 44 }
Jan Jongboom 35:b3ee394d1d2e 45 else if (strcmp(parsed_url->schema(), "wss") == 0 && parsed_url->port() != 443) {
Jan Jongboom 35:b3ee394d1d2e 46 host += string(port_str);
Jan Jongboom 35:b3ee394d1d2e 47 }
Jan Jongboom 21:fcd2bfd31a39 48
Jan Jongboom 21:fcd2bfd31a39 49 set_header("Host", host);
Jan Jongboom 0:910f5949759f 50 }
Jan Jongboom 0:910f5949759f 51
Jan Jongboom 0:910f5949759f 52 /**
Jan Jongboom 0:910f5949759f 53 * Set a header for the request
Jan Jongboom 0:910f5949759f 54 * If the key already exists, it will be overwritten...
Jan Jongboom 0:910f5949759f 55 */
Jan Jongboom 0:910f5949759f 56 void set_header(string key, string value) {
Jan Jongboom 0:910f5949759f 57 map<string, string>::iterator it = headers.find(key);
Jan Jongboom 0:910f5949759f 58
Jan Jongboom 0:910f5949759f 59 if (it != headers.end()) {
Jan Jongboom 0:910f5949759f 60 it->second = value;
Jan Jongboom 0:910f5949759f 61 }
Jan Jongboom 0:910f5949759f 62 else {
Jan Jongboom 0:910f5949759f 63 headers.insert(headers.end(), pair<string, string>(key, value));
Jan Jongboom 0:910f5949759f 64 }
Jan Jongboom 0:910f5949759f 65 }
Jan Jongboom 0:910f5949759f 66
Jan Jongboom 31:b3730a2c4f39 67 char* build(const void* body, uint32_t body_size, uint32_t &size, bool skip_content_length = false) {
Jan Jongboom 0:910f5949759f 68 const char* method_str = http_method_str(method);
Jan Jongboom 0:910f5949759f 69
Jan Jongboom 23:15fa2726f793 70 bool is_chunked = has_header("Transfer-Encoding", "chunked");
Jan Jongboom 23:15fa2726f793 71
Jan Jongboom 23:15fa2726f793 72 if (!is_chunked && (method == HTTP_POST || method == HTTP_PUT || method == HTTP_DELETE || body_size > 0)) {
Jan Jongboom 0:910f5949759f 73 char buffer[10];
Jan Jongboom 31:b3730a2c4f39 74 snprintf(buffer, 10, "%lu", body_size);
Jan Jongboom 0:910f5949759f 75 set_header("Content-Length", string(buffer));
Jan Jongboom 0:910f5949759f 76 }
Jan Jongboom 0:910f5949759f 77
Jan Jongboom 10:b017c7d2cf23 78 size = 0;
Jan Jongboom 0:910f5949759f 79
Jan Jongboom 0:910f5949759f 80 // first line is METHOD PATH+QUERY HTTP/1.1\r\n
Jan Jongboom 10:b017c7d2cf23 81 size += strlen(method_str) + 1 + strlen(parsed_url->path()) + (strlen(parsed_url->query()) ? strlen(parsed_url->query()) + 1 : 0) + 1 + 8 + 2;
Jan Jongboom 0:910f5949759f 82
Jan Jongboom 0:910f5949759f 83 // after that we'll do the headers
Jan Jongboom 0:910f5949759f 84 typedef map<string, string>::iterator it_type;
Jan Jongboom 0:910f5949759f 85 for(it_type it = headers.begin(); it != headers.end(); it++) {
Jan Jongboom 0:910f5949759f 86 // line is KEY: VALUE\r\n
Jan Jongboom 0:910f5949759f 87 size += it->first.length() + 1 + 1 + it->second.length() + 2;
Jan Jongboom 0:910f5949759f 88 }
Jan Jongboom 0:910f5949759f 89
Jan Jongboom 0:910f5949759f 90 // then the body, first an extra newline
Jan Jongboom 0:910f5949759f 91 size += 2;
Jan Jongboom 0:910f5949759f 92
Jan Jongboom 23:15fa2726f793 93 if (!is_chunked) {
Jan Jongboom 23:15fa2726f793 94 // body
Jan Jongboom 23:15fa2726f793 95 size += body_size;
Jan Jongboom 23:15fa2726f793 96 }
Jan Jongboom 0:910f5949759f 97
Jan Jongboom 0:910f5949759f 98 // Now let's print it
Jan Jongboom 0:910f5949759f 99 char* req = (char*)calloc(size + 1, 1);
Jan Jongboom 0:910f5949759f 100 char* originalReq = req;
Jan Jongboom 0:910f5949759f 101
Jan Jongboom 10:b017c7d2cf23 102 if (strlen(parsed_url->query())) {
Jan Jongboom 10:b017c7d2cf23 103 sprintf(req, "%s %s?%s HTTP/1.1\r\n", method_str, parsed_url->path(), parsed_url->query());
Jan Jongboom 10:b017c7d2cf23 104 } else {
Jan Jongboom 10:b017c7d2cf23 105 sprintf(req, "%s %s%s HTTP/1.1\r\n", method_str, parsed_url->path(), parsed_url->query());
Jan Jongboom 7:2e3eedb9ca5c 106 }
Jan Jongboom 10:b017c7d2cf23 107 req += strlen(method_str) + 1 + strlen(parsed_url->path()) + (strlen(parsed_url->query()) ? strlen(parsed_url->query()) + 1 : 0) + 1 + 8 + 2;
Jan Jongboom 0:910f5949759f 108
Jan Jongboom 0:910f5949759f 109 typedef map<string, string>::iterator it_type;
Jan Jongboom 0:910f5949759f 110 for(it_type it = headers.begin(); it != headers.end(); it++) {
Jan Jongboom 0:910f5949759f 111 // line is KEY: VALUE\r\n
Jan Jongboom 0:910f5949759f 112 sprintf(req, "%s: %s\r\n", it->first.c_str(), it->second.c_str());
Jan Jongboom 0:910f5949759f 113 req += it->first.length() + 1 + 1 + it->second.length() + 2;
Jan Jongboom 0:910f5949759f 114 }
Jan Jongboom 0:910f5949759f 115
Jan Jongboom 0:910f5949759f 116 sprintf(req, "\r\n");
Jan Jongboom 0:910f5949759f 117 req += 2;
Jan Jongboom 0:910f5949759f 118
Jan Jongboom 0:910f5949759f 119 if (body_size > 0) {
Jan Jongboom 10:b017c7d2cf23 120 memcpy(req, body, body_size);
Jan Jongboom 0:910f5949759f 121 }
Jan Jongboom 0:910f5949759f 122 req += body_size;
Jan Jongboom 0:910f5949759f 123
Jan Jongboom 0:910f5949759f 124 // Uncomment to debug...
Jan Jongboom 0:910f5949759f 125 // printf("----- BEGIN REQUEST -----\n");
Jan Jongboom 0:910f5949759f 126 // printf("%s", originalReq);
Jan Jongboom 0:910f5949759f 127 // printf("----- END REQUEST -----\n");
Jan Jongboom 0:910f5949759f 128
Jan Jongboom 0:910f5949759f 129 return originalReq;
Jan Jongboom 0:910f5949759f 130 }
Jan Jongboom 0:910f5949759f 131
Jan Jongboom 0:910f5949759f 132 private:
Jan Jongboom 23:15fa2726f793 133 bool has_header(const char* key, const char* value = NULL) {
Jan Jongboom 23:15fa2726f793 134 typedef map<string, string>::iterator it_type;
Jan Jongboom 23:15fa2726f793 135 for(it_type it = headers.begin(); it != headers.end(); it++) {
Jan Jongboom 23:15fa2726f793 136 if (strcmp(it->first.c_str(), key) == 0) { // key matches
Jan Jongboom 23:15fa2726f793 137 if (value == NULL || (strcmp(it->second.c_str(), value) == 0)) { // value is NULL or matches
Jan Jongboom 23:15fa2726f793 138 return true;
Jan Jongboom 23:15fa2726f793 139 }
Jan Jongboom 23:15fa2726f793 140 }
Jan Jongboom 23:15fa2726f793 141 }
Jan Jongboom 23:15fa2726f793 142
Jan Jongboom 23:15fa2726f793 143 return false;
Jan Jongboom 23:15fa2726f793 144 }
Jan Jongboom 23:15fa2726f793 145
Jan Jongboom 0:910f5949759f 146 http_method method;
Jan Jongboom 0:910f5949759f 147 ParsedUrl* parsed_url;
Jan Jongboom 0:910f5949759f 148 map<string, string> headers;
Jan Jongboom 0:910f5949759f 149 };
Jan Jongboom 0:910f5949759f 150
Jan Jongboom 0:910f5949759f 151 #endif // _MBED_HTTP_REQUEST_BUILDER_H_