Coverage Report

Created: 2026-09-04 07:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/http_aws_sigv4.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_AWS)
27
28
#include "urldata.h"
29
#include "strcase.h"
30
#include "curlx/strdup.h"
31
#include "http_aws_sigv4.h"
32
#include "curl_sha256.h"
33
#include "transfer.h"
34
#include "curl_trc.h"
35
#include "escape.h"
36
#include "curlx/strparse.h"
37
#include "slist.h"
38
39
#include <time.h>
40
41
#define HMAC_SHA256(k, kl, d, dl, o)                 \
42
0
  do {                                               \
43
0
    result = Curl_hmacit(&Curl_HMAC_SHA256,          \
44
0
                         (const unsigned char *)(k), \
45
0
                         kl,                         \
46
0
                         (const unsigned char *)(d), \
47
0
                         dl, o);                     \
48
0
    if(result) {                                     \
49
0
      goto fail;                                     \
50
0
    }                                                \
51
0
  } while(0)
52
53
0
#define TIMESTAMP_SIZE 17
54
55
/* hex-encoded with null-terminator */
56
0
#define SHA256_HEX_LENGTH ((2 * CURL_SHA256_DIGEST_LENGTH) + 1)
57
58
0
#define MAX_QUERY_COMPONENTS 128
59
60
struct pair {
61
  struct dynbuf key;
62
  struct dynbuf value;
63
};
64
65
static void sha256_to_hex(char *dst, unsigned char *sha)
66
0
{
67
0
  Curl_hexencode(sha, CURL_SHA256_DIGEST_LENGTH,
68
0
                 (unsigned char *)dst, SHA256_HEX_LENGTH);
69
0
}
70
71
static char *find_date_hdr(struct Curl_easy *data, const char *sig_hdr)
72
0
{
73
0
  char *tmp = Curl_checkheaders(data, sig_hdr, strlen(sig_hdr));
74
75
0
  if(tmp)
76
0
    return tmp;
77
0
  return Curl_checkheaders(data, STRCONST("Date"));
78
0
}
79
80
/* remove whitespace, and lowercase all headers */
81
static void trim_headers(struct curl_slist *head)
82
0
{
83
0
  struct curl_slist *l;
84
0
  for(l = head; l; l = l->next) {
85
0
    const char *value; /* to read from */
86
0
    char *store;
87
0
    size_t colon = strcspn(l->data, ":");
88
0
    Curl_strntolower(l->data, l->data, colon);
89
90
0
    value = &l->data[colon];
91
0
    if(!*value)
92
0
      continue;
93
0
    ++value;
94
0
    store = (char *)CURL_UNCONST(value);
95
96
    /* skip leading whitespace */
97
0
    curlx_str_passblanks(&value);
98
99
0
    while(*value) {
100
0
      int space = 0;
101
0
      while(ISBLANK(*value)) {
102
0
        value++;
103
0
        space++;
104
0
      }
105
0
      if(space) {
106
        /* replace any number of consecutive whitespace with a single space,
107
           unless at the end of the string, then nothing */
108
0
        if(*value)
109
0
          *store++ = ' ';
110
0
      }
111
0
      else
112
0
        *store++ = *value++;
113
0
    }
114
0
    *store = 0; /* null-terminate */
115
0
  }
116
0
}
117
118
/*
119
 * Frees all allocated strings in a dynbuf pair array, and the dynbuf itself
120
 */
121
static void pair_array_free(struct pair *pair_array, size_t num_elements)
122
0
{
123
0
  size_t index;
124
125
0
  for(index = 0; index != num_elements; index++) {
126
0
    curlx_dyn_free(&pair_array[index].key);
127
0
    curlx_dyn_free(&pair_array[index].value);
128
0
  }
129
0
}
130
131
/*
132
 * Frees all allocated strings in a split dynbuf, and the dynbuf itself
133
 */
134
static void dyn_array_free(struct dynbuf *db, size_t num_elements)
135
0
{
136
0
  size_t index;
137
138
0
  for(index = 0; index < num_elements; index++)
139
0
    curlx_dyn_free((&db[index]));
140
0
}
141
142
/*
143
 * Splits source string by SPLIT_BY, and creates an array of dynbuf in db.
144
 * db is initialized by this function.
145
 * Caller is responsible for freeing the array elements with dyn_array_free
146
 */
147
148
0
#define SPLIT_BY '&'
149
150
static CURLcode split_to_dyn_array(const char *source,
151
                                   struct dynbuf db[MAX_QUERY_COMPONENTS],
152
                                   size_t *num_splits_out)
153
0
{
154
0
  CURLcode result = CURLE_OK;
155
0
  size_t len = strlen(source);
156
0
  size_t pos;         /* Position in result buffer */
157
0
  size_t start = 0;   /* Start of current segment */
158
0
  size_t segment_length = 0;
159
0
  size_t index = 0;
160
0
  size_t num_splits = 0;
161
162
  /* Split source_ptr on SPLIT_BY and store the segment offsets and length in
163
   * array */
164
0
  for(pos = 0; pos < len; pos++) {
165
0
    if(source[pos] == SPLIT_BY) {
166
0
      if(segment_length) {
167
0
        curlx_dyn_init(&db[index], segment_length + 1);
168
0
        result = curlx_dyn_addn(&db[index], &source[start], segment_length);
169
0
        if(result)
170
0
          goto fail;
171
172
0
        segment_length = 0;
173
0
        index++;
174
0
        if(++num_splits == MAX_QUERY_COMPONENTS) {
175
0
          result = CURLE_TOO_LARGE;
176
0
          goto fail;
177
0
        }
178
0
      }
179
0
      start = pos + 1;
180
0
    }
181
0
    else {
182
0
      segment_length++;
183
0
    }
184
0
  }
185
186
0
  if(segment_length) {
187
0
    curlx_dyn_init(&db[index], segment_length + 1);
188
0
    result = curlx_dyn_addn(&db[index], &source[start], segment_length);
189
0
    if(!result && ++num_splits == MAX_QUERY_COMPONENTS)
190
0
      result = CURLE_TOO_LARGE;
191
0
  }
192
0
fail:
193
0
  *num_splits_out = num_splits;
194
0
  return result;
195
0
}
196
197
static bool is_reserved_char(const char c)
198
0
{
199
0
  return (ISALNUM(c) || ISURLPUNTCS(c));
200
0
}
201
202
static CURLcode uri_encode_path(struct Curl_str *original_path,
203
                                struct dynbuf *new_path)
204
0
{
205
0
  const char *p = curlx_str(original_path);
206
0
  size_t i;
207
208
0
  for(i = 0; i < curlx_strlen(original_path); i++) {
209
    /* Do not encode slashes or unreserved chars from RFC 3986 */
210
0
    CURLcode result = CURLE_OK;
211
0
    unsigned char c = p[i];
212
0
    if(is_reserved_char(c) || c == '/')
213
0
      result = curlx_dyn_addn(new_path, &c, 1);
214
0
    else
215
0
      result = curlx_dyn_addf(new_path, "%%%02X", c);
216
0
    if(result)
217
0
      return result;
218
0
  }
219
220
0
  return CURLE_OK;
221
0
}
222
223
/* Normalize the query part. Make sure %2B is left percent encoded, and not
224
   decoded to plus, then encoded to space. */
225
static CURLcode normalize_query(const char *string, size_t len,
226
                                struct dynbuf *db)
227
0
{
228
0
  CURLcode result = CURLE_OK;
229
230
0
  while(len && !result) {
231
0
    unsigned char in = (unsigned char)*string;
232
0
    if(('%' == in) && (len > 2) &&
233
0
       ISXDIGIT(string[1]) && ISXDIGIT(string[2])) {
234
      /* this is two hexadecimal digits following a '%' */
235
0
      in = (unsigned char)((curlx_hexval(string[1]) << 4) |
236
0
                           curlx_hexval(string[2]));
237
0
      string += 3;
238
0
      len -= 3;
239
0
      if(in == '+') {
240
        /* decodes to plus, so leave this encoded */
241
0
        result = curlx_dyn_addn(db, "%2B", 3);
242
0
        continue;
243
0
      }
244
0
    }
245
0
    else {
246
0
      string++;
247
0
      len--;
248
0
    }
249
250
0
    if(is_reserved_char(in))
251
      /* Escape unreserved chars from RFC 3986 */
252
0
      result = curlx_dyn_addn(db, &in, 1);
253
0
    else if(in == '+')
254
      /* Encode '+' as space */
255
0
      result = curlx_dyn_add(db, "%20");
256
0
    else
257
0
      result = curlx_dyn_addf(db, "%%%02X", in);
258
0
  }
259
260
0
  return result;
261
0
}
262
263
static bool should_urlencode(struct Curl_str *service_name)
264
0
{
265
  /*
266
   * These services require unmodified (not additionally URL-encoded) URL
267
   * paths.
268
   * should_urlencode == true is equivalent to should_urlencode_uri_path
269
   * from the AWS SDK. Urls are already normalized by the curl URL parser
270
   */
271
0
  if(curlx_str_cmp(service_name, "s3") ||
272
0
     curlx_str_cmp(service_name, "s3-express") ||
273
0
     curlx_str_cmp(service_name, "s3-outposts")) {
274
0
    return FALSE;
275
0
  }
276
0
  return TRUE;
277
0
}
278
279
/* maximum length for the aws sivg4 parts */
280
0
#define MAX_SIGV4_LEN    64
281
0
#define DATE_HDR_KEY_LEN (MAX_SIGV4_LEN + sizeof("X--Date"))
282
283
/* string been x-PROVIDER-date:TIMESTAMP, I need +1 for ':' */
284
0
#define DATE_FULL_HDR_LEN (DATE_HDR_KEY_LEN + TIMESTAMP_SIZE + 1)
285
286
/* alphabetically compare two headers by their name, expecting
287
   headers to use ':' at this point */
288
static int compare_header_names(const char *a, const char *b)
289
0
{
290
0
  const char *colon_a;
291
0
  const char *colon_b;
292
0
  size_t len_a;
293
0
  size_t len_b;
294
0
  size_t min_len;
295
0
  int cmp;
296
297
0
  colon_a = strchr(a, ':');
298
0
  colon_b = strchr(b, ':');
299
300
0
  DEBUGASSERT(colon_a);
301
0
  DEBUGASSERT(colon_b);
302
303
0
  len_a = colon_a ? (size_t)(colon_a - a) : strlen(a);
304
0
  len_b = colon_b ? (size_t)(colon_b - b) : strlen(b);
305
306
0
  min_len = (len_a < len_b) ? len_a : len_b;
307
308
0
  cmp = strncmp(a, b, min_len);
309
310
  /* return the shorter of the two if one is shorter */
311
0
  if(!cmp)
312
0
    return (int)(len_a - len_b);
313
314
0
  return cmp;
315
0
}
316
317
/* Merge duplicate header definitions by comma delimiting their values
318
   in the order defined the headers are defined, expecting headers to
319
   be alpha-sorted and use ':' at this point */
320
static CURLcode merge_duplicate_headers(struct curl_slist *head)
321
0
{
322
0
  struct curl_slist *curr = head;
323
0
  CURLcode result = CURLE_OK;
324
325
0
  while(curr) {
326
0
    struct curl_slist *next = curr->next;
327
0
    if(!next)
328
0
      break;
329
330
0
    if(compare_header_names(curr->data, next->data) == 0) {
331
0
      struct dynbuf buf;
332
0
      const char *colon_next;
333
0
      const char *val_next;
334
335
0
      curlx_dyn_init(&buf, CURL_MAX_HTTP_HEADER);
336
337
0
      result = curlx_dyn_add(&buf, curr->data);
338
0
      if(result)
339
0
        return result;
340
341
0
      colon_next = strchr(next->data, ':');
342
0
      DEBUGASSERT(colon_next);
343
0
      val_next = colon_next + 1;
344
345
0
      result = curlx_dyn_addn(&buf, ",", 1);
346
0
      if(result)
347
0
        return result;
348
349
0
      result = curlx_dyn_add(&buf, val_next);
350
0
      if(result)
351
0
        return result;
352
353
0
      curlx_free(curr->data);
354
0
      curr->data = curlx_dyn_ptr(&buf);
355
356
0
      curr->next = next->next;
357
0
      curlx_free(next->data);
358
0
      curlx_free(next);
359
0
    }
360
0
    else {
361
0
      curr = curr->next;
362
0
    }
363
0
  }
364
365
0
  return CURLE_OK;
366
0
}
367
368
/* timestamp should point to a buffer of at last TIMESTAMP_SIZE bytes */
369
static CURLcode make_headers(struct Curl_easy *data,
370
                             char *timestamp,
371
                             const char *provider1,
372
                             size_t plen, /* length of provider1 */
373
                             char **date_header,
374
                             char *content_sha256_header,
375
                             struct dynbuf *canonical_headers,
376
                             struct dynbuf *signed_headers)
377
0
{
378
0
  char date_hdr_key[DATE_HDR_KEY_LEN];
379
0
  char date_full_hdr[DATE_FULL_HDR_LEN];
380
0
  struct curl_slist *head = NULL;
381
0
  struct curl_slist *tmp_head = NULL;
382
0
  CURLcode result = CURLE_OUT_OF_MEMORY;
383
0
  struct curl_slist *l;
384
0
  bool again = TRUE;
385
386
0
  curl_msnprintf(date_hdr_key, DATE_HDR_KEY_LEN, "X-%.*s-Date",
387
0
                 (int)plen, provider1);
388
  /* provider1 ucfirst */
389
0
  Curl_strntolower(&date_hdr_key[2], provider1, plen);
390
0
  date_hdr_key[2] = Curl_raw_toupper(provider1[0]);
391
392
0
  curl_msnprintf(date_full_hdr, DATE_FULL_HDR_LEN,
393
0
                 "x-%.*s-date:%s", (int)plen, provider1, timestamp);
394
  /* provider1 lowercase */
395
0
  Curl_strntolower(&date_full_hdr[2], provider1, plen);
396
397
0
  if(!Curl_checkheaders(data, STRCONST("Host")) &&
398
0
     data->state.http_host) {
399
    /* Host: [host]:[port] */
400
0
    char *fullhost = curlx_strdup(data->state.http_host);
401
402
0
    if(fullhost)
403
0
      head = Curl_slist_append_nodup(NULL, fullhost);
404
0
    if(!head) {
405
0
      curlx_free(fullhost);
406
0
      goto fail;
407
0
    }
408
0
  }
409
410
0
  if(*content_sha256_header) {
411
0
    tmp_head = curl_slist_append(head, content_sha256_header);
412
0
    if(!tmp_head)
413
0
      goto fail;
414
0
    head = tmp_head;
415
0
  }
416
417
  /* copy user headers to our header list. the logic is based on how http.c
418
     handles user headers.
419
420
     user headers in format 'name:' with no value are used to signal that an
421
     internal header of that name should be removed. those user headers are not
422
     added to this list.
423
424
     user headers in format 'name;' with no value are used to signal that a
425
     header of that name with no value should be sent. those user headers are
426
     added to this list but in the format that they will be sent, ie the
427
     semi-colon is changed to a colon for format 'name:'.
428
429
     user headers with a value of whitespace only, or without a colon or
430
     semi-colon, are not added to this list.
431
     */
432
0
  for(l = data->set.headers; l; l = l->next) {
433
0
    char *dupdata;
434
0
    const char *ptr;
435
0
    const char *sep = strchr(l->data, ':');
436
0
    if(!sep)
437
0
      sep = strchr(l->data, ';');
438
0
    if(!sep || (*sep == ':' && !*(sep + 1)))
439
0
      continue;
440
0
    for(ptr = sep + 1; ISBLANK(*ptr); ++ptr)
441
0
      ;
442
0
    if(!*ptr && ptr != sep + 1) /* a value of whitespace only */
443
0
      continue;
444
0
    dupdata = curlx_strdup(l->data);
445
0
    if(!dupdata)
446
0
      goto fail;
447
0
    dupdata[sep - l->data] = ':';
448
0
    tmp_head = Curl_slist_append_nodup(head, dupdata);
449
0
    if(!tmp_head) {
450
0
      curlx_free(dupdata);
451
0
      goto fail;
452
0
    }
453
0
    head = tmp_head;
454
0
  }
455
456
0
  trim_headers(head);
457
458
0
  *date_header = find_date_hdr(data, date_hdr_key);
459
0
  if(!*date_header) {
460
0
    tmp_head = curl_slist_append(head, date_full_hdr);
461
0
    if(!tmp_head)
462
0
      goto fail;
463
0
    head = tmp_head;
464
0
    *date_header = curl_maprintf("%s: %s\r\n", date_hdr_key, timestamp);
465
0
    if(!*date_header)
466
0
      goto fail;
467
0
  }
468
0
  else {
469
0
    const char *value;
470
0
    const char *endp;
471
0
    value = strchr(*date_header, ':');
472
0
    if(!value) {
473
0
      *date_header = NULL;
474
0
      goto fail;
475
0
    }
476
0
    ++value;
477
0
    curlx_str_passblanks(&value);
478
0
    endp = value;
479
0
    while(*endp && ISALNUM(*endp))
480
0
      ++endp;
481
    /* 16 bytes => "19700101T000000Z" */
482
0
    if((endp - value) == TIMESTAMP_SIZE - 1) {
483
0
      memcpy(timestamp, value, TIMESTAMP_SIZE - 1);
484
0
      timestamp[TIMESTAMP_SIZE - 1] = 0;
485
0
    }
486
0
    else
487
      /* bad timestamp length */
488
0
      timestamp[0] = 0;
489
0
    *date_header = NULL;
490
0
  }
491
492
  /* alpha-sort by header name in a case sensitive manner */
493
0
  do {
494
0
    again = FALSE;
495
0
    for(l = head; l; l = l->next) {
496
0
      struct curl_slist *next = l->next;
497
498
0
      if(next && compare_header_names(l->data, next->data) > 0) {
499
0
        char *tmp = l->data;
500
501
0
        l->data = next->data;
502
0
        next->data = tmp;
503
0
        again = TRUE;
504
0
      }
505
0
    }
506
0
  } while(again);
507
508
0
  result = merge_duplicate_headers(head);
509
0
  if(result)
510
0
    goto fail;
511
512
0
  for(l = head; l; l = l->next) {
513
0
    char *tmp;
514
515
0
    if(curlx_dyn_add(canonical_headers, l->data))
516
0
      goto fail;
517
0
    if(curlx_dyn_add(canonical_headers, "\n"))
518
0
      goto fail;
519
520
0
    tmp = strchr(l->data, ':');
521
0
    if(tmp)
522
0
      *tmp = 0;
523
524
0
    if(l != head && curlx_dyn_add(signed_headers, ";"))
525
0
      goto fail;
526
0
    if(curlx_dyn_add(signed_headers, l->data))
527
0
      goto fail;
528
0
  }
529
530
0
  result = CURLE_OK;
531
0
fail:
532
0
  curl_slist_free_all(head);
533
534
0
  return result;
535
0
}
536
537
0
#define CONTENT_SHA256_KEY_LEN (MAX_SIGV4_LEN + sizeof("X--Content-Sha256"))
538
/* add 2 for ": " between header name and value */
539
0
#define CONTENT_SHA256_HDR_LEN (CONTENT_SHA256_KEY_LEN + 2 + SHA256_HEX_LENGTH)
540
541
/* try to parse a payload hash from the content-sha256 header */
542
static const char *parse_content_sha_hdr(struct Curl_easy *data,
543
                                         const char *provider1,
544
                                         size_t plen,
545
                                         size_t *value_len)
546
0
{
547
0
  char key[CONTENT_SHA256_KEY_LEN];
548
0
  size_t key_len;
549
0
  const char *value;
550
0
  size_t len;
551
552
0
  key_len = curl_msnprintf(key, sizeof(key), "x-%.*s-content-sha256",
553
0
                           (int)plen, provider1);
554
555
0
  value = Curl_checkheaders(data, key, key_len);
556
0
  if(!value)
557
0
    return NULL;
558
559
0
  value = strchr(value, ':');
560
0
  if(!value)
561
0
    return NULL;
562
0
  ++value;
563
564
0
  curlx_str_passblanks(&value);
565
566
0
  len = strlen(value);
567
0
  while(len > 0 && ISBLANK(value[len - 1]))
568
0
    --len;
569
570
0
  *value_len = len;
571
0
  return value;
572
0
}
573
574
static CURLcode calc_payload_hash(struct Curl_easy *data,
575
                                  unsigned char *sha_hash, char *sha_hex)
576
0
{
577
0
  const char *post_data = data->set.postfields;
578
0
  size_t post_data_len = 0;
579
0
  CURLcode result;
580
581
0
  if(post_data) {
582
0
    if(data->set.postfieldsize < 0)
583
0
      post_data_len = strlen(post_data);
584
0
    else
585
0
      post_data_len = (size_t)data->set.postfieldsize;
586
0
  }
587
0
  result = Curl_sha256it(sha_hash, (const unsigned char *)post_data,
588
0
                         post_data_len);
589
0
  if(!result)
590
0
    sha256_to_hex(sha_hex, sha_hash);
591
0
  return result;
592
0
}
593
594
0
#define S3_UNSIGNED_PAYLOAD "UNSIGNED-PAYLOAD"
595
596
static CURLcode calc_s3_payload_hash(struct Curl_easy *data,
597
                                     Curl_HttpReq httpreq,
598
                                     const char *provider1,
599
                                     size_t plen,
600
                                     unsigned char *sha_hash,
601
                                     char *sha_hex, char *header)
602
0
{
603
0
  bool empty_method = (httpreq == HTTPREQ_GET || httpreq == HTTPREQ_HEAD);
604
  /* The request method or filesize indicate no request payload */
605
0
  bool empty_payload = (empty_method || data->set.filesize == 0);
606
  /* The POST payload is in memory */
607
0
  bool post_payload = (httpreq == HTTPREQ_POST && data->set.postfields);
608
0
  CURLcode result = CURLE_OUT_OF_MEMORY;
609
610
0
  if(empty_payload || post_payload) {
611
    /* Calculate a real hash when we know the request payload */
612
0
    result = calc_payload_hash(data, sha_hash, sha_hex);
613
0
    if(result)
614
0
      goto fail;
615
0
  }
616
0
  else {
617
    /* Fall back to s3's UNSIGNED-PAYLOAD */
618
0
    size_t len = CURL_CSTRLEN(S3_UNSIGNED_PAYLOAD);
619
0
    DEBUGASSERT(len < SHA256_HEX_LENGTH); /* 16 < 65 */
620
0
    memcpy(sha_hex, S3_UNSIGNED_PAYLOAD, len);
621
0
    sha_hex[len] = 0;
622
0
  }
623
624
  /* format the required content-sha256 header */
625
0
  curl_msnprintf(header, CONTENT_SHA256_HDR_LEN,
626
0
                 "x-%.*s-content-sha256: %s", (int)plen, provider1, sha_hex);
627
628
0
  result = CURLE_OK;
629
0
fail:
630
0
  return result;
631
0
}
632
633
static int compare_func(const void *a, const void *b)
634
0
{
635
0
  const struct pair *aa = a;
636
0
  const struct pair *bb = b;
637
0
  const size_t aa_key_len = curlx_dyn_len(&aa->key);
638
0
  const size_t bb_key_len = curlx_dyn_len(&bb->key);
639
0
  const size_t aa_value_len = curlx_dyn_len(&aa->value);
640
0
  const size_t bb_value_len = curlx_dyn_len(&bb->value);
641
0
  int compare;
642
643
  /* If one element is empty, the other is always sorted higher */
644
645
  /* Compare keys */
646
0
  if((aa_key_len == 0) && (bb_key_len == 0))
647
0
    return 0;
648
0
  if(aa_key_len == 0)
649
0
    return -1;
650
0
  if(bb_key_len == 0)
651
0
    return 1;
652
0
  compare = strcmp(curlx_dyn_ptr(&aa->key), curlx_dyn_ptr(&bb->key));
653
0
  if(compare) {
654
0
    return compare;
655
0
  }
656
657
  /* Compare values */
658
0
  if((aa_value_len == 0) && (bb_value_len == 0))
659
0
    return 0;
660
0
  if(aa_value_len == 0)
661
0
    return -1;
662
0
  if(bb_value_len == 0)
663
0
    return 1;
664
0
  compare = strcmp(curlx_dyn_ptr(&aa->value), curlx_dyn_ptr(&bb->value));
665
666
0
  return compare;
667
0
}
668
669
/* @unittest 1979 */
670
UNITTEST CURLcode canon_path(const char *q, size_t len,
671
                             struct dynbuf *new_path,
672
                             bool do_uri_encode);
673
UNITTEST CURLcode canon_path(const char *q, size_t len,
674
                             struct dynbuf *new_path,
675
                             bool do_uri_encode)
676
0
{
677
0
  CURLcode result = CURLE_OK;
678
679
0
  struct Curl_str original_path;
680
681
0
  curlx_str_assign(&original_path, q, len);
682
683
  /* Normalized path will be either the same or shorter than the original
684
   * path, plus trailing slash */
685
686
0
  if(do_uri_encode)
687
0
    result = uri_encode_path(&original_path, new_path);
688
0
  else
689
0
    result = curlx_dyn_addn(new_path, q, len);
690
691
0
  if(!result && curlx_dyn_len(new_path) == 0)
692
0
    result = curlx_dyn_add(new_path, "/");
693
694
0
  return result;
695
0
}
696
697
/* @unittest 1980 */
698
UNITTEST CURLcode canon_query(const char *query, struct dynbuf *dq);
699
UNITTEST CURLcode canon_query(const char *query, struct dynbuf *dq)
700
0
{
701
0
  CURLcode result = CURLE_OK;
702
703
0
  struct dynbuf query_array[MAX_QUERY_COMPONENTS];
704
0
  struct pair encoded_query_array[MAX_QUERY_COMPONENTS];
705
0
  size_t num_query_components;
706
0
  size_t counted_query_components = 0;
707
0
  size_t index;
708
709
0
  if(!query)
710
0
    return result;
711
712
0
  result = split_to_dyn_array(query, &query_array[0], &num_query_components);
713
0
  if(result) {
714
0
    goto fail;
715
0
  }
716
717
  /* Create list of pairs, each pair containing an encoded query
718
   * component */
719
720
0
  for(index = 0; index < num_query_components; index++) {
721
0
    const char *in_key;
722
0
    size_t in_key_len;
723
0
    const char *offset;
724
0
    size_t query_part_len = curlx_dyn_len(&query_array[index]);
725
0
    const char *query_part = curlx_dyn_ptr(&query_array[index]);
726
727
0
    in_key = query_part;
728
729
0
    offset = strchr(query_part, '=');
730
    /* If there is no equals, this key has no value */
731
0
    if(!offset) {
732
0
      in_key_len = strlen(in_key);
733
0
    }
734
0
    else {
735
0
      in_key_len = offset - in_key;
736
0
    }
737
738
0
    curlx_dyn_init(&encoded_query_array[index].key,
739
0
      (query_part_len * 3) + 1);
740
0
    curlx_dyn_init(&encoded_query_array[index].value,
741
0
      (query_part_len * 3) + 1);
742
0
    counted_query_components++;
743
744
    /* Decode/encode the key */
745
0
    result = normalize_query(in_key, in_key_len,
746
0
                             &encoded_query_array[index].key);
747
0
    if(result) {
748
0
      goto fail;
749
0
    }
750
751
    /* Decode/encode the value if it exists */
752
0
    if(offset && offset != (query_part + query_part_len - 1)) {
753
0
      size_t in_value_len;
754
0
      const char *in_value = offset + 1;
755
0
      in_value_len = query_part + query_part_len - (offset + 1);
756
0
      result = normalize_query(in_value, in_value_len,
757
0
                               &encoded_query_array[index].value);
758
0
      if(result) {
759
0
        goto fail;
760
0
      }
761
0
    }
762
0
    else {
763
      /* If there is no value, the value is an empty string */
764
0
      curlx_dyn_init(&encoded_query_array[index].value, 2);
765
0
      result = curlx_dyn_addn(&encoded_query_array[index].value, "", 1);
766
0
    }
767
768
0
    if(result) {
769
0
      goto fail;
770
0
    }
771
0
  }
772
773
  /* Sort the encoded query components by key and value */
774
0
  qsort(&encoded_query_array, num_query_components,
775
0
        sizeof(struct pair), compare_func);
776
777
  /* Append the query components together to make a full query string */
778
0
  for(index = 0; index < num_query_components; index++) {
779
780
0
    if(index)
781
0
      result = curlx_dyn_addn(dq, "&", 1);
782
0
    if(!result) {
783
0
      const char *key_ptr = curlx_dyn_ptr(&encoded_query_array[index].key);
784
0
      const char *value_ptr = curlx_dyn_ptr(&encoded_query_array[index].value);
785
0
      size_t vlen = curlx_dyn_len(&encoded_query_array[index].value);
786
0
      if(value_ptr && vlen) {
787
0
        result = curlx_dyn_addf(dq, "%s=%s", key_ptr, value_ptr);
788
0
      }
789
0
      else {
790
        /* Empty value is always encoded to key= */
791
0
        result = curlx_dyn_addf(dq, "%s=", key_ptr);
792
0
      }
793
0
    }
794
0
    if(result)
795
0
      break;
796
0
  }
797
798
0
fail:
799
0
  if(counted_query_components)
800
    /* the encoded_query_array might not be initialized yet */
801
0
    pair_array_free(&encoded_query_array[0], counted_query_components);
802
0
  dyn_array_free(&query_array[0], num_query_components);
803
0
  return result;
804
0
}
805
806
static CURLcode parse_sigv4_params(struct Curl_easy *data,
807
                                   const char *hostname,
808
                                   struct Curl_str *provider0,
809
                                   struct Curl_str *provider1,
810
                                   struct Curl_str *region,
811
                                   struct Curl_str *service)
812
0
{
813
0
  const char *line = CURL_EASY_STR(data, STRING_AWS_SIGV4);
814
0
  if(!line || !*line)
815
0
    line = "aws:amz";
816
817
  /* provider0[:provider1[:region[:service]]]
818
819
     No string can be longer than N bytes of non-whitespace */
820
0
  if(curlx_str_until(&line, provider0, MAX_SIGV4_LEN, ':')) {
821
0
    failf(data, "first aws-sigv4 provider cannot be empty");
822
0
    return CURLE_BAD_FUNCTION_ARGUMENT;
823
0
  }
824
0
  if(curlx_str_single(&line, ':') ||
825
0
     curlx_str_until(&line, provider1, MAX_SIGV4_LEN, ':')) {
826
0
    *provider1 = *provider0;
827
0
  }
828
0
  else if(curlx_str_single(&line, ':') ||
829
0
          curlx_str_until(&line, region, MAX_SIGV4_LEN, ':') ||
830
0
          curlx_str_single(&line, ':') ||
831
0
          curlx_str_until(&line, service, MAX_SIGV4_LEN, ':')) {
832
    /* nothing to do */
833
0
  }
834
835
0
  if(!curlx_strlen(service)) {
836
0
    const char *p = hostname;
837
0
    if(curlx_str_until(&p, service, MAX_SIGV4_LEN, '.') ||
838
0
       curlx_str_single(&p, '.')) {
839
0
      failf(data, "aws-sigv4: service missing in parameters and hostname");
840
0
      return CURLE_URL_MALFORMAT;
841
0
    }
842
843
0
    infof(data, "aws_sigv4: picked service %.*s from host",
844
0
          (int)curlx_strlen(service), curlx_str(service));
845
846
0
    if(!curlx_strlen(region)) {
847
0
      if(curlx_str_until(&p, region, MAX_SIGV4_LEN, '.') ||
848
0
         curlx_str_single(&p, '.')) {
849
0
        failf(data, "aws-sigv4: region missing in parameters and hostname");
850
0
        return CURLE_URL_MALFORMAT;
851
0
      }
852
0
      infof(data, "aws_sigv4: picked region %.*s from host",
853
0
            (int)curlx_strlen(region), curlx_str(region));
854
0
    }
855
0
  }
856
857
0
  return CURLE_OK;
858
0
}
859
860
static CURLcode get_payload_hash(struct Curl_easy *data,
861
                                 Curl_HttpReq httpreq,
862
                                 struct Curl_str *provider0,
863
                                 struct Curl_str *provider1,
864
                                 struct Curl_str *service,
865
                                 unsigned char *sha_hash,
866
                                 char *sha_hex,
867
                                 char *content_sha256_hdr,
868
                                 const char **payload_hash_out,
869
                                 size_t *payload_hash_len_out)
870
0
{
871
0
  *payload_hash_out =
872
0
    parse_content_sha_hdr(data, curlx_str(provider1),
873
0
                          curlx_strlen(provider1), payload_hash_len_out);
874
875
0
  if(!*payload_hash_out) {
876
0
    CURLcode result;
877
    /* AWS S3 requires a x-amz-content-sha256 header, and supports special
878
     * values like UNSIGNED-PAYLOAD */
879
0
    bool sign_as_s3 = curlx_str_casecompare(provider0, "aws") &&
880
0
                      curlx_str_casecompare(service, "s3");
881
882
0
    if(sign_as_s3)
883
0
      result = calc_s3_payload_hash(data, httpreq, curlx_str(provider1),
884
0
                                    curlx_strlen(provider1), sha_hash,
885
0
                                    sha_hex, content_sha256_hdr);
886
0
    else
887
0
      result = calc_payload_hash(data, sha_hash, sha_hex);
888
0
    if(result)
889
0
      return result;
890
891
0
    *payload_hash_out = sha_hex;
892
    /* may be shorter than SHA256_HEX_LENGTH, like S3_UNSIGNED_PAYLOAD */
893
0
    *payload_hash_len_out = strlen(sha_hex);
894
0
  }
895
0
  return CURLE_OK;
896
0
}
897
898
static CURLcode get_timestamp(char *timestamp, size_t stampsize)
899
0
{
900
0
  time_t clock;
901
0
  struct tm tm;
902
0
  CURLcode result;
903
904
0
#ifdef DEBUGBUILD
905
0
  {
906
0
    char *force_timestamp = getenv("CURL_FORCETIME");
907
0
    if(force_timestamp)
908
0
      clock = 0;
909
0
    else
910
0
      clock = time(NULL);
911
0
  }
912
#else
913
  clock = time(NULL);
914
#endif
915
0
  result = curlx_gmtime(clock, &tm);
916
0
  if(result)
917
0
    return result;
918
919
0
  if(!strftime(timestamp, stampsize, "%Y%m%dT%H%M%SZ", &tm))
920
0
    return CURLE_OUT_OF_MEMORY;
921
922
0
  return CURLE_OK;
923
0
}
924
925
static CURLcode make_canonical_request(struct Curl_easy *data,
926
                                       char *timestamp,
927
                                       struct Curl_str *provider1,
928
                                       struct Curl_str *service,
929
                                       const char *method,
930
                                       const char *payload_hash,
931
                                       size_t payload_hash_len,
932
                                       char **date_header_out,
933
                                       char *content_sha256_hdr,
934
                                       struct dynbuf *canonical_headers,
935
                                       struct dynbuf *signed_headers,
936
                                       char **canonical_request_out)
937
0
{
938
0
  struct dynbuf canonical_query;
939
0
  struct dynbuf canonical_path;
940
0
  CURLcode result;
941
942
0
  curlx_dyn_init(&canonical_query, CURL_MAX_HTTP_HEADER);
943
0
  curlx_dyn_init(&canonical_path, CURL_MAX_HTTP_HEADER);
944
945
0
  result = make_headers(data, timestamp,
946
0
                        curlx_str(provider1), curlx_strlen(provider1),
947
0
                        date_header_out, content_sha256_hdr,
948
0
                        canonical_headers, signed_headers);
949
0
  if(result)
950
0
    goto fail;
951
952
0
  result = canon_query(data->state.up.query, &canonical_query);
953
0
  if(result)
954
0
    goto fail;
955
956
0
  result = canon_path(data->state.up.path, strlen(data->state.up.path),
957
0
                      &canonical_path,
958
0
                      should_urlencode(service));
959
0
  if(result)
960
0
    goto fail;
961
962
0
  *canonical_request_out =
963
0
    curl_maprintf("%s\n" /* HTTPRequestMethod */
964
0
                  "%s\n" /* CanonicalURI */
965
0
                  "%s\n" /* CanonicalQueryString */
966
0
                  "%s\n" /* CanonicalHeaders */
967
0
                  "%s\n" /* SignedHeaders */
968
0
                  "%.*s",  /* HashedRequestPayload in hex */
969
0
                  method,
970
0
                  curlx_dyn_ptr(&canonical_path),
971
0
                  curlx_dyn_ptr(&canonical_query) ?
972
0
                  curlx_dyn_ptr(&canonical_query) : "",
973
0
                  curlx_dyn_ptr(canonical_headers),
974
0
                  curlx_dyn_ptr(signed_headers),
975
0
                  (int)payload_hash_len, payload_hash);
976
0
  if(!*canonical_request_out) {
977
0
    result = CURLE_OUT_OF_MEMORY;
978
0
    goto fail;
979
0
  }
980
981
0
  result = CURLE_OK;
982
0
fail:
983
0
  curlx_dyn_free(&canonical_query);
984
0
  curlx_dyn_free(&canonical_path);
985
0
  return result;
986
0
}
987
988
static CURLcode make_string_to_sign(struct Curl_easy *data,
989
                                    struct Curl_str *provider0,
990
                                    struct Curl_str *region,
991
                                    struct Curl_str *service,
992
                                    const char *date,
993
                                    const char *timestamp,
994
                                    const char *canonical_request,
995
                                    char **request_type_out,
996
                                    char **credential_scope_out,
997
                                    char **str_to_sign_out)
998
0
{
999
0
  char *request_type;
1000
0
  char *credential_scope;
1001
0
  char *str_to_sign;
1002
0
  unsigned char sha_hash[CURL_SHA256_DIGEST_LENGTH];
1003
0
  char sha_hex[SHA256_HEX_LENGTH];
1004
1005
0
  request_type = curl_maprintf("%.*s4_request",
1006
0
                               (int)curlx_strlen(provider0),
1007
0
                               curlx_str(provider0));
1008
0
  if(!request_type)
1009
0
    return CURLE_OUT_OF_MEMORY;
1010
1011
  /* provider0 is lowercased *after* curl_maprintf() so that the buffer
1012
     can be written to */
1013
0
  Curl_strntolower(request_type, request_type, curlx_strlen(provider0));
1014
1015
0
  credential_scope = curl_maprintf("%s/%.*s/%.*s/%s", date,
1016
0
                                   (int)curlx_strlen(region),
1017
0
                                   curlx_str(region),
1018
0
                                   (int)curlx_strlen(service),
1019
0
                                   curlx_str(service),
1020
0
                                   request_type);
1021
0
  if(!credential_scope) {
1022
0
    curlx_free(request_type);
1023
0
    return CURLE_OUT_OF_MEMORY;
1024
0
  }
1025
1026
0
  if(Curl_sha256it(sha_hash, (const unsigned char *)canonical_request,
1027
0
                   strlen(canonical_request))) {
1028
0
    curlx_free(request_type);
1029
0
    curlx_free(credential_scope);
1030
0
    return CURLE_OUT_OF_MEMORY;
1031
0
  }
1032
1033
0
  sha256_to_hex(sha_hex, sha_hash);
1034
1035
  /*
1036
   * Google allows using RSA key instead of HMAC, so this code might change
1037
   * in the future. For now we only support HMAC.
1038
   */
1039
0
  str_to_sign = curl_maprintf("%.*s4-HMAC-SHA256\n" /* Algorithm */
1040
0
                              "%s\n" /* RequestDateTime */
1041
0
                              "%s\n" /* CredentialScope */
1042
0
                              "%s",  /* HashedCanonicalRequest in hex */
1043
0
                              (int)curlx_strlen(provider0),
1044
0
                              curlx_str(provider0),
1045
0
                              timestamp,
1046
0
                              credential_scope,
1047
0
                              sha_hex);
1048
0
  if(!str_to_sign) {
1049
0
    curlx_free(request_type);
1050
0
    curlx_free(credential_scope);
1051
0
    return CURLE_OUT_OF_MEMORY;
1052
0
  }
1053
1054
  /* make provider0 part done uppercase */
1055
0
  Curl_strntoupper(str_to_sign, curlx_str(provider0),
1056
0
                   curlx_strlen(provider0));
1057
1058
0
  infof(data, "aws_sigv4: String to sign (enclosed in []) - [%s]",
1059
0
        str_to_sign);
1060
1061
0
  *request_type_out = request_type;
1062
0
  *credential_scope_out = credential_scope;
1063
0
  *str_to_sign_out = str_to_sign;
1064
0
  return CURLE_OK;
1065
0
}
1066
1067
static CURLcode sign_and_set_auth_headers(struct Curl_easy *data,
1068
                                          struct Curl_str *provider0,
1069
                                          struct Curl_str *region,
1070
                                          struct Curl_str *service,
1071
                                          const char *request_type,
1072
                                          const char *credential_scope,
1073
                                          const char *date,
1074
                                          const char *str_to_sign,
1075
                                          const char *date_header,
1076
                                          const char *content_sha256_hdr,
1077
                                          struct dynbuf *signed_headers)
1078
0
{
1079
0
  CURLcode result = CURLE_OUT_OF_MEMORY;
1080
0
  const char *passwd = Curl_creds_passwd(data->state.creds);
1081
0
  char *secret = NULL;
1082
0
  unsigned char sign0[CURL_SHA256_DIGEST_LENGTH] = { 0 };
1083
0
  unsigned char sign1[CURL_SHA256_DIGEST_LENGTH] = { 0 };
1084
0
  char sha_hex[SHA256_HEX_LENGTH];
1085
0
  char *auth_headers = NULL;
1086
0
  char *user = curl_escape(Curl_creds_user(data->state.creds), 0);
1087
0
  if(!user)
1088
0
    return CURLE_OUT_OF_MEMORY;
1089
1090
0
  secret = curl_maprintf("%.*s4%s", (int)curlx_strlen(provider0),
1091
0
                         curlx_str(provider0), passwd);
1092
0
  if(!secret)
1093
0
    goto fail;
1094
  /* make provider0 part done uppercase */
1095
0
  Curl_strntoupper(secret, curlx_str(provider0), curlx_strlen(provider0));
1096
1097
0
  HMAC_SHA256(secret, strlen(secret), date, strlen(date), sign0);
1098
0
  HMAC_SHA256(sign0, sizeof(sign0),
1099
0
              curlx_str(region), curlx_strlen(region), sign1);
1100
0
  HMAC_SHA256(sign1, sizeof(sign1),
1101
0
              curlx_str(service), curlx_strlen(service), sign0);
1102
0
  HMAC_SHA256(sign0, sizeof(sign0),
1103
0
              request_type, strlen(request_type), sign1);
1104
0
  HMAC_SHA256(sign1, sizeof(sign1),
1105
0
              str_to_sign, strlen(str_to_sign), sign0);
1106
1107
0
  sha256_to_hex(sha_hex, sign0);
1108
1109
0
  infof(data, "aws_sigv4: Signature - %s", sha_hex);
1110
1111
0
  auth_headers = curl_maprintf("Authorization: %.*s4-HMAC-SHA256 "
1112
0
                               "Credential=%s/%s, "
1113
0
                               "SignedHeaders=%s, "
1114
0
                               "Signature=%s\r\n"
1115
0
                               "%s"
1116
0
                               "%s%s",
1117
0
                               (int)curlx_strlen(provider0),
1118
0
                               curlx_str(provider0),
1119
0
                               user,
1120
0
                               credential_scope,
1121
0
                               curlx_dyn_ptr(signed_headers),
1122
0
                               sha_hex,
1123
                               /*
1124
                                * date_header is added here, only if it was not
1125
                                * user-specified (using CURLOPT_HTTPHEADER).
1126
                                * date_header includes \r\n
1127
                                */
1128
0
                               date_header ? date_header : "",
1129
0
                               content_sha256_hdr,
1130
0
                               content_sha256_hdr[0] ? "\r\n": "");
1131
0
  if(!auth_headers)
1132
0
    goto fail;
1133
1134
  /* provider 0 uppercase */
1135
0
  Curl_strntoupper(&auth_headers[CURL_CSTRLEN("Authorization: ")],
1136
0
                   curlx_str(provider0), curlx_strlen(provider0));
1137
1138
0
  curlx_free(data->req.hd_auth);
1139
0
  data->req.hd_auth = auth_headers;
1140
0
  data->state.authhost.done = TRUE;
1141
0
  result = CURLE_OK;
1142
1143
0
fail:
1144
0
  curlx_free(user);
1145
0
  curlx_free(secret);
1146
0
  return result;
1147
0
}
1148
1149
CURLcode Curl_output_aws_sigv4(struct Curl_easy *data)
1150
0
{
1151
0
  CURLcode result = CURLE_OUT_OF_MEMORY;
1152
0
  struct Curl_str provider0 = { NULL, 0 };
1153
0
  struct Curl_str provider1 = { NULL, 0 };
1154
0
  struct Curl_str region = { NULL, 0 };
1155
0
  struct Curl_str service = { NULL, 0 };
1156
0
  const char *hostname = data->state.origin->hostname;
1157
0
  char timestamp[TIMESTAMP_SIZE];
1158
0
  char date[9];
1159
0
  struct dynbuf canonical_headers;
1160
0
  struct dynbuf signed_headers;
1161
0
  char *date_header = NULL;
1162
0
  Curl_HttpReq httpreq;
1163
0
  const char *method = NULL;
1164
0
  const char *payload_hash = NULL;
1165
0
  size_t payload_hash_len = 0;
1166
0
  unsigned char sha_hash[CURL_SHA256_DIGEST_LENGTH];
1167
0
  char sha_hex[SHA256_HEX_LENGTH];
1168
0
  char content_sha256_hdr[CONTENT_SHA256_HDR_LEN + 2] = ""; /* add \r\n */
1169
0
  char *canonical_request = NULL;
1170
0
  char *request_type = NULL;
1171
0
  char *credential_scope = NULL;
1172
0
  char *str_to_sign = NULL;
1173
1174
0
  if(data->set.path_as_is) {
1175
0
    failf(data, "Cannot use sigv4 authentication with path-as-is flag");
1176
0
    return CURLE_BAD_FUNCTION_ARGUMENT;
1177
0
  }
1178
1179
0
  if(Curl_checkheaders(data, STRCONST("Authorization")))
1180
    /* Authorization already present, Bailing out */
1181
0
    return CURLE_OK;
1182
1183
  /* we init those buffers here, so goto fail will free initialized dynbuf */
1184
0
  curlx_dyn_init(&canonical_headers, CURL_MAX_HTTP_HEADER);
1185
0
  curlx_dyn_init(&signed_headers, CURL_MAX_HTTP_HEADER);
1186
1187
0
  result = parse_sigv4_params(data, hostname, &provider0, &provider1,
1188
0
                              &region, &service);
1189
0
  if(!result) {
1190
0
    Curl_http_method(data, &method, &httpreq);
1191
0
    result = get_payload_hash(data, httpreq, &provider0, &provider1, &service,
1192
0
                              sha_hash, sha_hex, content_sha256_hdr,
1193
0
                              &payload_hash, &payload_hash_len);
1194
0
  }
1195
1196
0
  if(!result)
1197
0
    result = get_timestamp(timestamp, sizeof(timestamp));
1198
1199
0
  if(!result)
1200
0
    result = make_canonical_request(data, timestamp,
1201
0
                                    &provider1, &service,
1202
0
                                    method, payload_hash, payload_hash_len,
1203
0
                                    &date_header, content_sha256_hdr,
1204
0
                                    &canonical_headers, &signed_headers,
1205
0
                                    &canonical_request);
1206
0
  if(!result) {
1207
    /* the timestamp might have been updated in make_canonical_request */
1208
0
    memcpy(date, timestamp, sizeof(date) - 1);
1209
0
    date[sizeof(date) - 1] = 0;
1210
1211
0
    result = make_string_to_sign(data, &provider0, &region, &service,
1212
0
                                 date, timestamp, canonical_request,
1213
0
                                 &request_type, &credential_scope,
1214
0
                                 &str_to_sign);
1215
0
  }
1216
0
  if(!result)
1217
0
    result = sign_and_set_auth_headers(data, &provider0, &region, &service,
1218
0
                                       request_type, credential_scope,
1219
0
                                       date, str_to_sign, date_header,
1220
0
                                       content_sha256_hdr, &signed_headers);
1221
1222
0
  curlx_dyn_free(&canonical_headers);
1223
0
  curlx_dyn_free(&signed_headers);
1224
0
  curlx_free(canonical_request);
1225
0
  curlx_free(request_type);
1226
0
  curlx_free(credential_scope);
1227
0
  curlx_free(str_to_sign);
1228
0
  curlx_free(date_header);
1229
0
  return result;
1230
0
}
1231
1232
#endif /* !CURL_DISABLE_HTTP && !CURL_DISABLE_AWS */