-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgghttp_util.c
474 lines (432 loc) · 14.7 KB
/
gghttp_util.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
// aws-greengrass-lite - AWS IoT Greengrass runtime for constrained devices
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#include "gghttp_util.h"
#include "ggl/error.h"
#include "ggl/http.h"
#include "ggl/object.h"
#include <sys/types.h>
#include <assert.h>
#include <curl/curl.h>
#include <errno.h>
#include <ggl/backoff.h>
#include <ggl/cleanup.h>
#include <ggl/file.h>
#include <ggl/log.h>
#include <ggl/vector.h>
#include <pthread.h>
#include <unistd.h>
#include <stdbool.h>
#include <stdlib.h>
#define MAX_HEADER_LENGTH 1024
__attribute__((constructor)) static void init_curl(void) {
// TODO: set up a heap4 and init curl instead with curl_global_init_mem()
CURLcode e = curl_global_init(CURL_GLOBAL_DEFAULT);
if (e != CURLE_OK) {
GGL_LOGE(
"Failed to init curl with CURLcode %d (reason: \"%s\").",
e,
curl_easy_strerror(e)
);
_Exit(1);
}
}
static GglError translate_curl_code(CURLcode code) {
switch (code) {
case CURLE_OK:
return GGL_ERR_OK;
case CURLE_AGAIN:
return GGL_ERR_RETRY;
case CURLE_URL_MALFORMAT:
return GGL_ERR_PARSE;
case CURLE_ABORTED_BY_CALLBACK:
case CURLE_WRITE_ERROR:
return GGL_ERR_FAILURE;
default:
return GGL_ERR_REMOTE;
}
}
static bool can_retry(CURLcode code, CurlData *data) {
switch (code) {
// If OK, then inspect HTTP status code.
case CURLE_OK:
break;
case CURLE_OPERATION_TIMEDOUT:
case CURLE_COULDNT_CONNECT:
case CURLE_SSL_CONNECT_ERROR:
case CURLE_GOT_NOTHING:
case CURLE_SEND_ERROR:
case CURLE_RECV_ERROR:
case CURLE_PARTIAL_FILE:
case CURLE_AGAIN:
return true;
default:
return false;
}
long http_status_code = 0;
curl_easy_getinfo(data->curl, CURLINFO_HTTP_CODE, &http_status_code);
switch (http_status_code) {
case 400: // Generic client error
case 408: // Request timeout
// TODO: 429 can contain a retry-after header.
// This should be used as the backoff.
case 429: // Too many requests
case 500: // Generic server error
case 502: // Bad gateway
case 503: // Service unavailable
case 504: // Gateway Timeout
case 509: // Server bandwidth exceeded
return true;
default:
return false;
}
}
typedef struct CurlRequestRetryCtx {
CurlData *curl_data;
// reset response_data for next attempt
GglError (*retry_fn)(void *);
void *response_data;
// Needed to propagate errors when retrying is impossible.
GglError err;
} CurlRequestRetryCtx;
static GglError clear_buffer(void *response_data) {
GglByteVec *vector = (GglByteVec *) response_data;
vector->buf.len = 0;
return GGL_ERR_OK;
}
static GglError truncate_file(void *response_data) {
int fd = *(int *) response_data;
int ret;
do {
ret = ftruncate(fd, 0);
} while ((ret == -1) && (errno == EINTR));
if (ret == -1) {
GGL_LOGE("Failed to truncate fd for write (errno=%d).", errno);
return GGL_ERR_FAILURE;
}
return GGL_ERR_OK;
}
static GglError curl_request_retry_wrapper(void *ctx) {
CurlRequestRetryCtx *retry_ctx = (CurlRequestRetryCtx *) ctx;
CurlData *curl_data = retry_ctx->curl_data;
CURLcode curl_error = curl_easy_perform(curl_data->curl);
if (can_retry(curl_error, curl_data)) {
GglError err = retry_ctx->retry_fn(retry_ctx->response_data);
if (err != GGL_ERR_OK) {
retry_ctx->err = err;
return GGL_ERR_OK;
}
return GGL_ERR_FAILURE;
}
if (curl_error != CURLE_OK) {
GGL_LOGE(
"Curl request failed due to error: %s",
curl_easy_strerror(curl_error)
);
retry_ctx->err = translate_curl_code(curl_error);
return GGL_ERR_OK;
}
int long http_status_code = 0;
curl_error = curl_easy_getinfo(
curl_data->curl, CURLINFO_HTTP_CODE, &http_status_code
);
if (curl_error != CURLE_OK) {
retry_ctx->err = GGL_ERR_FAILURE;
return GGL_ERR_OK;
}
if ((http_status_code >= 200) && (http_status_code < 300)) {
retry_ctx->err = GGL_ERR_OK;
return GGL_ERR_OK;
}
if ((http_status_code >= 500) && (http_status_code < 600)) {
retry_ctx->err = GGL_ERR_REMOTE;
} else {
retry_ctx->err = GGL_ERR_FAILURE;
}
GGL_LOGE(
"Curl request failed due to HTTP status code %ld.", http_status_code
);
return GGL_ERR_OK;
}
static GglError do_curl_request(
CurlData *curl_data, GglByteVec *response_buffer
) {
CurlRequestRetryCtx ctx = { .curl_data = curl_data,
.response_data = (void *) response_buffer,
.retry_fn = clear_buffer,
.err = GGL_ERR_OK };
GglError ret = ggl_backoff(
1000, 64000, 7, curl_request_retry_wrapper, (void *) &ctx
);
if (ret != GGL_ERR_OK) {
return ret;
}
if (ctx.err != GGL_ERR_OK) {
return ctx.err;
}
return GGL_ERR_OK;
}
static GglError do_curl_request_fd(CurlData *curl_data, int fd) {
CurlRequestRetryCtx ctx = { .curl_data = curl_data,
.response_data = (void *) &fd,
.retry_fn = truncate_file,
.err = GGL_ERR_OK };
GglError ret = ggl_backoff(
1000, 64000, 7, curl_request_retry_wrapper, (void *) &ctx
);
if (ret != GGL_ERR_OK) {
GGL_LOGE("Curl request failed; retries exhausted.");
return ret;
}
if (ctx.err != GGL_ERR_OK) {
return ctx.err;
}
return GGL_ERR_OK;
}
/// @brief Callback function to write the HTTP response data to a buffer.
///
/// This function is used as a callback by CURL to handle the response data
/// received from an HTTP request. It reallocates memory for the output buffer
/// and copies the response data into the buffer.This function will be called
/// multiple times when a new data is fetched via libcurl.
///
/// @param[in] response_data A pointer to the response data received from CURL.
/// @param[in] size The size of each element in the response data.
/// @param[in] nmemb The number of elements in the response data.
/// @param[in] output_vector_void A pointer to a vector which will be appended.
///
/// @return The number of bytes written to the output buffer.
static size_t write_response_to_buffer(
void *response_data, size_t size, size_t nmemb, void *output_vector_void
) {
if (response_data == NULL) {
return 0;
}
size_t size_of_response_data = size * nmemb;
GglBuffer response_buffer
= (GglBuffer) { .data = response_data, .len = size_of_response_data };
assert(output_vector_void != NULL);
GglByteVec *output_vector = output_vector_void;
GglError ret = ggl_byte_vec_append(output_vector, response_buffer);
if (ret != GGL_ERR_OK) {
size_t remaining_capacity
= ggl_byte_vec_remaining_capacity(*output_vector).len;
GGL_LOGE(
"Not enough space to hold full body. Est. remaining bytes: %zu. "
"Buffer remaining capacity: %zu",
size_of_response_data,
remaining_capacity
);
return 0;
}
return size_of_response_data;
}
/// @brief Callback function to write the HTTP response data to a file
/// descriptor.
///
/// This function is used as a callback by CURL to handle the response data
/// received from an HTTP request. It write bytes received into the file
/// descriptor.
///
/// @param[in] response_data A pointer to the response data received from CURL.
/// @param[in] size The size of each element in the response data.
/// @param[in] nmemb The number of elements in the response data.
/// @param[in] fd_void A pointer to a file descriptor
///
/// @return The number of bytes written.
static size_t write_response_to_fd(
void *response_data, size_t size, size_t nmemb, void *fd_void
) {
if (response_data == NULL) {
return 0;
}
size_t size_of_response_data = size * nmemb;
GglBuffer response_buffer
= (GglBuffer) { .data = response_data, .len = size_of_response_data };
assert(fd_void != NULL);
int *fd = (int *) fd_void;
GglError err = ggl_file_write(*fd, response_buffer);
if (err != GGL_ERR_OK) {
return 0;
}
return size_of_response_data;
}
void gghttplib_destroy_curl(CurlData *curl_data) {
assert(curl_data != NULL);
if (curl_data->headers_list != NULL) {
curl_slist_free_all(curl_data->headers_list);
curl_data->headers_list = NULL;
}
curl_easy_cleanup(curl_data->curl);
}
GglError gghttplib_init_curl(CurlData *curl_data, const char *url) {
curl_data->headers_list = NULL;
curl_data->curl = curl_easy_init();
if (curl_data->curl == NULL) {
GGL_LOGE("Cannot create instance of curl for the url=%s", url);
return GGL_ERR_FAILURE;
}
CURLcode err = curl_easy_setopt(curl_data->curl, CURLOPT_URL, url);
return translate_curl_code(err);
}
GglError gghttplib_add_header(
CurlData *curl_data, GglBuffer header_key, GglBuffer header_value
) {
assert(curl_data != NULL);
static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
GGL_MTX_SCOPE_GUARD(&mtx);
static char header[MAX_HEADER_LENGTH];
GglByteVec header_vec = GGL_BYTE_VEC(header);
GglError err = GGL_ERR_OK;
// x-header-key: header-value
ggl_byte_vec_chain_append(&err, &header_vec, header_key);
ggl_byte_vec_chain_push(&err, &header_vec, ':');
ggl_byte_vec_chain_push(&err, &header_vec, ' ');
ggl_byte_vec_chain_append(&err, &header_vec, header_value);
ggl_byte_vec_chain_push(&err, &header_vec, '\0');
if (err != GGL_ERR_OK) {
return err;
}
struct curl_slist *new_head
= curl_slist_append(curl_data->headers_list, header);
if (new_head == NULL) {
return GGL_ERR_FAILURE;
}
curl_data->headers_list = new_head;
return GGL_ERR_OK;
}
GglError gghttplib_add_certificate_data(
CurlData *curl_data, CertificateDetails request_data
) {
assert(curl_data != NULL);
CURLcode err = curl_easy_setopt(
curl_data->curl, CURLOPT_SSLCERT, request_data.gghttplib_cert_path
);
if (err != CURLE_OK) {
return translate_curl_code(err);
}
err = curl_easy_setopt(
curl_data->curl, CURLOPT_SSLKEY, request_data.gghttplib_p_key_path
);
if (err != CURLE_OK) {
return translate_curl_code(err);
}
err = curl_easy_setopt(
curl_data->curl, CURLOPT_CAINFO, request_data.gghttplib_root_ca_path
);
return translate_curl_code(err);
}
GglError gghttplib_add_post_body(CurlData *curl_data, const char *body) {
assert(curl_data != NULL);
CURLcode err = curl_easy_setopt(curl_data->curl, CURLOPT_POSTFIELDS, body);
return translate_curl_code(err);
}
GglError gghttplib_add_sigv4_credential(
CurlData *curl_data, SigV4Details request_data
) {
assert(curl_data != NULL);
GglError err = GGL_ERR_OK;
// scope to reduce stack size
{
// TODO: tune length based on longest-possible string
// e.g. "aws:amz:us-gov-east-1:lambda" (30 characters)
char sigv4_param[32];
GglByteVec vector = GGL_BYTE_VEC(sigv4_param);
ggl_byte_vec_chain_append(&err, &vector, GGL_STR("aws:amz:"));
ggl_byte_vec_chain_append(&err, &vector, request_data.aws_region);
ggl_byte_vec_chain_push(&err, &vector, ':');
ggl_byte_vec_chain_append(&err, &vector, request_data.aws_service);
ggl_byte_vec_chain_push(&err, &vector, '\0');
if (err != GGL_ERR_OK) {
GGL_LOGE("sigv4_param too small");
return err;
}
CURLcode curl_err
= curl_easy_setopt(curl_data->curl, CURLOPT_AWS_SIGV4, sigv4_param);
if (curl_err != CURLE_OK) {
return translate_curl_code(curl_err);
}
}
// scope to reduce stack size
{
// "<128-chars>:<128-chars>"
char sigv4_usrpwd[258];
GglByteVec vector = GGL_BYTE_VEC(sigv4_usrpwd);
ggl_byte_vec_chain_append(&err, &vector, request_data.access_key_id);
ggl_byte_vec_chain_push(&err, &vector, ':');
ggl_byte_vec_chain_append(
&err, &vector, request_data.secret_access_key
);
ggl_byte_vec_chain_push(&err, &vector, '\0');
if (err != GGL_ERR_OK) {
GGL_LOGE("sigv4_usrpwd too small");
return err;
}
CURLcode curl_err
= curl_easy_setopt(curl_data->curl, CURLOPT_USERPWD, sigv4_usrpwd);
if (curl_err != CURLE_OK) {
return translate_curl_code(curl_err);
}
}
return gghttplib_add_header(
curl_data, GGL_STR("x-amz-security-token"), request_data.session_token
);
}
GglError gghttplib_process_request(
CurlData *curl_data, GglBuffer *response_buffer
) {
assert(curl_data != NULL);
GglByteVec response_vector = (response_buffer != NULL)
? ggl_byte_vec_init(*response_buffer)
: (GglByteVec) { 0 };
CURLcode curl_error = curl_easy_setopt(
curl_data->curl, CURLOPT_HTTPHEADER, curl_data->headers_list
);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
if (response_buffer != NULL) {
curl_error = curl_easy_setopt(
curl_data->curl, CURLOPT_WRITEFUNCTION, write_response_to_buffer
);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
curl_error = curl_easy_setopt(
curl_data->curl, CURLOPT_WRITEDATA, (void *) &response_vector
);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
}
GglError ret = do_curl_request(curl_data, &response_vector);
if ((response_buffer != NULL) && (ret == GGL_ERR_OK)) {
response_buffer->len = response_vector.buf.len;
}
return ret;
}
GglError gghttplib_process_request_with_fd(CurlData *curl_data, int fd) {
CURLcode curl_error = curl_easy_setopt(
curl_data->curl, CURLOPT_HTTPHEADER, curl_data->headers_list
);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
curl_error = curl_easy_setopt(
curl_data->curl, CURLOPT_WRITEFUNCTION, write_response_to_fd
);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
// coverity[bad_sizeof]
curl_error
= curl_easy_setopt(curl_data->curl, CURLOPT_WRITEDATA, (void *) &fd);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
curl_error = curl_easy_setopt(curl_data->curl, CURLOPT_FAILONERROR, 1L);
if (curl_error != CURLE_OK) {
return translate_curl_code(curl_error);
}
return do_curl_request_fd(curl_data, fd);
}