Coverage Report

Created: 2026-07-14 07:09

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