/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 "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 | | static CURLcode encode_query_component(char *component, size_t len, |
226 | | struct dynbuf *db) |
227 | 0 | { |
228 | 0 | size_t i; |
229 | 0 | for(i = 0; i < len; i++) { |
230 | 0 | CURLcode result = CURLE_OK; |
231 | 0 | unsigned char this_char = component[i]; |
232 | |
|
233 | 0 | if(is_reserved_char(this_char)) |
234 | | /* Escape unreserved chars from RFC 3986 */ |
235 | 0 | result = curlx_dyn_addn(db, &this_char, 1); |
236 | 0 | else if(this_char == '+') |
237 | | /* Encode '+' as space */ |
238 | 0 | result = curlx_dyn_add(db, "%20"); |
239 | 0 | else |
240 | 0 | result = curlx_dyn_addf(db, "%%%02X", this_char); |
241 | 0 | if(result) |
242 | 0 | return result; |
243 | 0 | } |
244 | | |
245 | 0 | return CURLE_OK; |
246 | 0 | } |
247 | | |
248 | | /* |
249 | | * Populates a dynbuf containing url_encode(url_decode(in)) |
250 | | */ |
251 | | static CURLcode http_aws_decode_encode(const char *in, size_t in_len, |
252 | | struct dynbuf *out) |
253 | 0 | { |
254 | 0 | char *out_s; |
255 | 0 | size_t out_s_len; |
256 | 0 | CURLcode result = |
257 | 0 | Curl_urldecode(in, in_len, &out_s, &out_s_len, REJECT_NADA); |
258 | |
|
259 | 0 | if(!result) { |
260 | 0 | result = encode_query_component(out_s, out_s_len, out); |
261 | 0 | Curl_safefree(out_s); |
262 | 0 | } |
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 | |
|
275 | 0 | if(curlx_str_cmp(service_name, "s3") || |
276 | 0 | curlx_str_cmp(service_name, "s3-express") || |
277 | 0 | curlx_str_cmp(service_name, "s3-outposts")) { |
278 | 0 | return false; |
279 | 0 | } |
280 | 0 | return true; |
281 | 0 | } |
282 | | |
283 | | /* maximum length for the aws sivg4 parts */ |
284 | 0 | #define MAX_SIGV4_LEN 64 |
285 | 0 | #define DATE_HDR_KEY_LEN (MAX_SIGV4_LEN + sizeof("X--Date")) |
286 | | |
287 | | /* string been x-PROVIDER-date:TIMESTAMP, I need +1 for ':' */ |
288 | 0 | #define DATE_FULL_HDR_LEN (DATE_HDR_KEY_LEN + TIMESTAMP_SIZE + 1) |
289 | | |
290 | | /* alphabetically compare two headers by their name, expecting |
291 | | headers to use ':' at this point */ |
292 | | static int compare_header_names(const char *a, const char *b) |
293 | 0 | { |
294 | 0 | const char *colon_a; |
295 | 0 | const char *colon_b; |
296 | 0 | size_t len_a; |
297 | 0 | size_t len_b; |
298 | 0 | size_t min_len; |
299 | 0 | int cmp; |
300 | |
|
301 | 0 | colon_a = strchr(a, ':'); |
302 | 0 | colon_b = strchr(b, ':'); |
303 | |
|
304 | 0 | DEBUGASSERT(colon_a); |
305 | 0 | DEBUGASSERT(colon_b); |
306 | |
|
307 | 0 | len_a = colon_a ? (size_t)(colon_a - a) : strlen(a); |
308 | 0 | len_b = colon_b ? (size_t)(colon_b - b) : strlen(b); |
309 | |
|
310 | 0 | min_len = (len_a < len_b) ? len_a : len_b; |
311 | |
|
312 | 0 | cmp = strncmp(a, b, min_len); |
313 | | |
314 | | /* return the shorter of the two if one is shorter */ |
315 | 0 | if(!cmp) |
316 | 0 | return (int)(len_a - len_b); |
317 | | |
318 | 0 | return cmp; |
319 | 0 | } |
320 | | |
321 | | /* Merge duplicate header definitions by comma delimiting their values |
322 | | in the order defined the headers are defined, expecting headers to |
323 | | be alpha-sorted and use ':' at this point */ |
324 | | static CURLcode merge_duplicate_headers(struct curl_slist *head) |
325 | 0 | { |
326 | 0 | struct curl_slist *curr = head; |
327 | 0 | CURLcode result = CURLE_OK; |
328 | |
|
329 | 0 | while(curr) { |
330 | 0 | struct curl_slist *next = curr->next; |
331 | 0 | if(!next) |
332 | 0 | break; |
333 | | |
334 | 0 | if(compare_header_names(curr->data, next->data) == 0) { |
335 | 0 | struct dynbuf buf; |
336 | 0 | char *colon_next; |
337 | 0 | char *val_next; |
338 | |
|
339 | 0 | curlx_dyn_init(&buf, CURL_MAX_HTTP_HEADER); |
340 | |
|
341 | 0 | result = curlx_dyn_add(&buf, curr->data); |
342 | 0 | if(result) |
343 | 0 | return result; |
344 | | |
345 | 0 | colon_next = strchr(next->data, ':'); |
346 | 0 | DEBUGASSERT(colon_next); |
347 | 0 | val_next = colon_next + 1; |
348 | |
|
349 | 0 | result = curlx_dyn_addn(&buf, ",", 1); |
350 | 0 | if(result) |
351 | 0 | return result; |
352 | | |
353 | 0 | result = curlx_dyn_add(&buf, val_next); |
354 | 0 | if(result) |
355 | 0 | return result; |
356 | | |
357 | 0 | curlx_free(curr->data); |
358 | 0 | curr->data = curlx_dyn_ptr(&buf); |
359 | |
|
360 | 0 | curr->next = next->next; |
361 | 0 | curlx_free(next->data); |
362 | 0 | curlx_free(next); |
363 | 0 | } |
364 | 0 | else { |
365 | 0 | curr = curr->next; |
366 | 0 | } |
367 | 0 | } |
368 | | |
369 | 0 | return CURLE_OK; |
370 | 0 | } |
371 | | |
372 | | /* timestamp should point to a buffer of at last TIMESTAMP_SIZE bytes */ |
373 | | static CURLcode make_headers(struct Curl_easy *data, |
374 | | const char *hostname, |
375 | | char *timestamp, |
376 | | const char *provider1, |
377 | | size_t plen, /* length of provider1 */ |
378 | | char **date_header, |
379 | | char *content_sha256_header, |
380 | | struct dynbuf *canonical_headers, |
381 | | struct dynbuf *signed_headers) |
382 | 0 | { |
383 | 0 | char date_hdr_key[DATE_HDR_KEY_LEN]; |
384 | 0 | char date_full_hdr[DATE_FULL_HDR_LEN]; |
385 | 0 | struct curl_slist *head = NULL; |
386 | 0 | struct curl_slist *tmp_head = NULL; |
387 | 0 | CURLcode ret = CURLE_OUT_OF_MEMORY; |
388 | 0 | struct curl_slist *l; |
389 | 0 | bool again = TRUE; |
390 | |
|
391 | 0 | curl_msnprintf(date_hdr_key, DATE_HDR_KEY_LEN, "X-%.*s-Date", |
392 | 0 | (int)plen, provider1); |
393 | | /* provider1 ucfirst */ |
394 | 0 | Curl_strntolower(&date_hdr_key[2], provider1, plen); |
395 | 0 | date_hdr_key[2] = Curl_raw_toupper(provider1[0]); |
396 | |
|
397 | 0 | curl_msnprintf(date_full_hdr, DATE_FULL_HDR_LEN, |
398 | 0 | "x-%.*s-date:%s", (int)plen, provider1, timestamp); |
399 | | /* provider1 lowercase */ |
400 | 0 | Curl_strntolower(&date_full_hdr[2], provider1, plen); |
401 | |
|
402 | 0 | if(!Curl_checkheaders(data, STRCONST("Host"))) { |
403 | 0 | char *fullhost; |
404 | |
|
405 | 0 | if(data->state.aptr.host) { |
406 | | /* remove /r/n as the separator for canonical request must be '\n' */ |
407 | 0 | size_t pos = strcspn(data->state.aptr.host, "\n\r"); |
408 | 0 | fullhost = Curl_memdup0(data->state.aptr.host, pos); |
409 | 0 | } |
410 | 0 | else |
411 | 0 | fullhost = curl_maprintf("host:%s", hostname); |
412 | |
|
413 | 0 | if(fullhost) |
414 | 0 | head = Curl_slist_append_nodup(NULL, fullhost); |
415 | 0 | if(!head) { |
416 | 0 | curlx_free(fullhost); |
417 | 0 | goto fail; |
418 | 0 | } |
419 | 0 | } |
420 | | |
421 | 0 | if(*content_sha256_header) { |
422 | 0 | tmp_head = curl_slist_append(head, content_sha256_header); |
423 | 0 | if(!tmp_head) |
424 | 0 | goto fail; |
425 | 0 | head = tmp_head; |
426 | 0 | } |
427 | | |
428 | | /* copy user headers to our header list. the logic is based on how http.c |
429 | | handles user headers. |
430 | | |
431 | | user headers in format 'name:' with no value are used to signal that an |
432 | | internal header of that name should be removed. those user headers are not |
433 | | added to this list. |
434 | | |
435 | | user headers in format 'name;' with no value are used to signal that a |
436 | | header of that name with no value should be sent. those user headers are |
437 | | added to this list but in the format that they will be sent, ie the |
438 | | semi-colon is changed to a colon for format 'name:'. |
439 | | |
440 | | user headers with a value of whitespace only, or without a colon or |
441 | | semi-colon, are not added to this list. |
442 | | */ |
443 | 0 | for(l = data->set.headers; l; l = l->next) { |
444 | 0 | char *dupdata, *ptr; |
445 | 0 | 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 | ret = merge_duplicate_headers(head); |
519 | 0 | if(ret) |
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 | ret = CURLE_OK; |
543 | 0 | fail: |
544 | 0 | curl_slist_free_all(head); |
545 | |
|
546 | 0 | return ret; |
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 ret = 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 | ret = calc_payload_hash(data, sha_hash, sha_hex); |
625 | 0 | if(ret) |
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 | ret = CURLE_OK; |
641 | 0 | fail: |
642 | 0 | return ret; |
643 | 0 | } |
644 | | |
645 | | static int compare_func(const void *a, const void *b) |
646 | 0 | { |
647 | |
|
648 | 0 | const struct pair *aa = a; |
649 | 0 | const struct pair *bb = b; |
650 | 0 | const size_t aa_key_len = curlx_dyn_len(&aa->key); |
651 | 0 | const size_t bb_key_len = curlx_dyn_len(&bb->key); |
652 | 0 | const size_t aa_value_len = curlx_dyn_len(&aa->value); |
653 | 0 | const size_t bb_value_len = curlx_dyn_len(&bb->value); |
654 | 0 | int compare; |
655 | | |
656 | | /* If one element is empty, the other is always sorted higher */ |
657 | | |
658 | | /* Compare keys */ |
659 | 0 | if((aa_key_len == 0) && (bb_key_len == 0)) |
660 | 0 | return 0; |
661 | 0 | if(aa_key_len == 0) |
662 | 0 | return -1; |
663 | 0 | if(bb_key_len == 0) |
664 | 0 | return 1; |
665 | 0 | compare = strcmp(curlx_dyn_ptr(&aa->key), curlx_dyn_ptr(&bb->key)); |
666 | 0 | if(compare) { |
667 | 0 | return compare; |
668 | 0 | } |
669 | | |
670 | | /* Compare values */ |
671 | 0 | if((aa_value_len == 0) && (bb_value_len == 0)) |
672 | 0 | return 0; |
673 | 0 | if(aa_value_len == 0) |
674 | 0 | return -1; |
675 | 0 | if(bb_value_len == 0) |
676 | 0 | return 1; |
677 | 0 | compare = strcmp(curlx_dyn_ptr(&aa->value), curlx_dyn_ptr(&bb->value)); |
678 | |
|
679 | 0 | return compare; |
680 | 0 | } |
681 | | |
682 | | UNITTEST CURLcode canon_path(const char *q, size_t len, |
683 | | struct dynbuf *new_path, |
684 | | bool do_uri_encode) |
685 | 0 | { |
686 | 0 | CURLcode result = CURLE_OK; |
687 | |
|
688 | 0 | struct Curl_str original_path; |
689 | |
|
690 | 0 | curlx_str_assign(&original_path, q, len); |
691 | | |
692 | | /* Normalized path will be either the same or shorter than the original |
693 | | * path, plus trailing slash */ |
694 | |
|
695 | 0 | if(do_uri_encode) |
696 | 0 | result = uri_encode_path(&original_path, new_path); |
697 | 0 | else |
698 | 0 | result = curlx_dyn_addn(new_path, q, len); |
699 | |
|
700 | 0 | if(!result) { |
701 | 0 | if(curlx_dyn_len(new_path) == 0) |
702 | 0 | result = curlx_dyn_add(new_path, "/"); |
703 | 0 | } |
704 | |
|
705 | 0 | return result; |
706 | 0 | } |
707 | | |
708 | | UNITTEST CURLcode canon_query(const char *query, struct dynbuf *dq) |
709 | 0 | { |
710 | 0 | CURLcode result = CURLE_OK; |
711 | |
|
712 | 0 | struct dynbuf query_array[MAX_QUERY_COMPONENTS]; |
713 | 0 | struct pair encoded_query_array[MAX_QUERY_COMPONENTS]; |
714 | 0 | size_t num_query_components; |
715 | 0 | size_t counted_query_components = 0; |
716 | 0 | size_t index; |
717 | |
|
718 | 0 | if(!query) |
719 | 0 | return result; |
720 | | |
721 | 0 | result = split_to_dyn_array(query, &query_array[0], &num_query_components); |
722 | 0 | if(result) { |
723 | 0 | goto fail; |
724 | 0 | } |
725 | | |
726 | | /* Create list of pairs, each pair containing an encoded query |
727 | | * component */ |
728 | | |
729 | 0 | for(index = 0; index < num_query_components; index++) { |
730 | 0 | const char *in_key; |
731 | 0 | size_t in_key_len; |
732 | 0 | char *offset; |
733 | 0 | size_t query_part_len = curlx_dyn_len(&query_array[index]); |
734 | 0 | char *query_part = curlx_dyn_ptr(&query_array[index]); |
735 | |
|
736 | 0 | in_key = query_part; |
737 | |
|
738 | 0 | offset = strchr(query_part, '='); |
739 | | /* If there is no equals, this key has no value */ |
740 | 0 | if(!offset) { |
741 | 0 | in_key_len = strlen(in_key); |
742 | 0 | } |
743 | 0 | else { |
744 | 0 | in_key_len = offset - in_key; |
745 | 0 | } |
746 | |
|
747 | 0 | curlx_dyn_init(&encoded_query_array[index].key, query_part_len * 3 + 1); |
748 | 0 | curlx_dyn_init(&encoded_query_array[index].value, query_part_len * 3 + 1); |
749 | 0 | counted_query_components++; |
750 | | |
751 | | /* Decode/encode the key */ |
752 | 0 | result = http_aws_decode_encode(in_key, in_key_len, |
753 | 0 | &encoded_query_array[index].key); |
754 | 0 | if(result) { |
755 | 0 | goto fail; |
756 | 0 | } |
757 | | |
758 | | /* Decode/encode the value if it exists */ |
759 | 0 | if(offset && offset != (query_part + query_part_len - 1)) { |
760 | 0 | size_t in_value_len; |
761 | 0 | const char *in_value = offset + 1; |
762 | 0 | in_value_len = query_part + query_part_len - (offset + 1); |
763 | 0 | result = http_aws_decode_encode(in_value, in_value_len, |
764 | 0 | &encoded_query_array[index].value); |
765 | 0 | if(result) { |
766 | 0 | goto fail; |
767 | 0 | } |
768 | 0 | } |
769 | 0 | else { |
770 | | /* If there is no value, the value is an empty string */ |
771 | 0 | curlx_dyn_init(&encoded_query_array[index].value, 2); |
772 | 0 | result = curlx_dyn_addn(&encoded_query_array[index].value, "", 1); |
773 | 0 | } |
774 | | |
775 | 0 | if(result) { |
776 | 0 | goto fail; |
777 | 0 | } |
778 | 0 | } |
779 | | |
780 | | /* Sort the encoded query components by key and value */ |
781 | 0 | qsort(&encoded_query_array, num_query_components, |
782 | 0 | sizeof(struct pair), compare_func); |
783 | | |
784 | | /* Append the query components together to make a full query string */ |
785 | 0 | for(index = 0; index < num_query_components; index++) { |
786 | |
|
787 | 0 | if(index) |
788 | 0 | result = curlx_dyn_addn(dq, "&", 1); |
789 | 0 | if(!result) { |
790 | 0 | char *key_ptr = curlx_dyn_ptr(&encoded_query_array[index].key); |
791 | 0 | char *value_ptr = curlx_dyn_ptr(&encoded_query_array[index].value); |
792 | 0 | size_t vlen = curlx_dyn_len(&encoded_query_array[index].value); |
793 | 0 | if(value_ptr && vlen) { |
794 | 0 | result = curlx_dyn_addf(dq, "%s=%s", key_ptr, value_ptr); |
795 | 0 | } |
796 | 0 | else { |
797 | | /* Empty value is always encoded to key= */ |
798 | 0 | result = curlx_dyn_addf(dq, "%s=", key_ptr); |
799 | 0 | } |
800 | 0 | } |
801 | 0 | if(result) |
802 | 0 | break; |
803 | 0 | } |
804 | |
|
805 | 0 | fail: |
806 | 0 | if(counted_query_components) |
807 | | /* the encoded_query_array might not be initialized yet */ |
808 | 0 | pair_array_free(&encoded_query_array[0], counted_query_components); |
809 | 0 | dyn_array_free(&query_array[0], num_query_components); |
810 | 0 | return result; |
811 | 0 | } |
812 | | |
813 | | CURLcode Curl_output_aws_sigv4(struct Curl_easy *data) |
814 | 0 | { |
815 | 0 | CURLcode result = CURLE_OUT_OF_MEMORY; |
816 | 0 | struct connectdata *conn = data->conn; |
817 | 0 | const char *line; |
818 | 0 | struct Curl_str provider0; |
819 | 0 | struct Curl_str provider1; |
820 | 0 | struct Curl_str region = { NULL, 0 }; |
821 | 0 | struct Curl_str service = { NULL, 0 }; |
822 | 0 | const char *hostname = conn->host.name; |
823 | 0 | time_t clock; |
824 | 0 | struct tm tm; |
825 | 0 | char timestamp[TIMESTAMP_SIZE]; |
826 | 0 | char date[9]; |
827 | 0 | struct dynbuf canonical_headers; |
828 | 0 | struct dynbuf signed_headers; |
829 | 0 | struct dynbuf canonical_query; |
830 | 0 | struct dynbuf canonical_path; |
831 | 0 | char *date_header = NULL; |
832 | 0 | Curl_HttpReq httpreq; |
833 | 0 | const char *method = NULL; |
834 | 0 | const char *payload_hash = NULL; |
835 | 0 | size_t payload_hash_len = 0; |
836 | 0 | unsigned char sha_hash[CURL_SHA256_DIGEST_LENGTH]; |
837 | 0 | char sha_hex[SHA256_HEX_LENGTH]; |
838 | 0 | char content_sha256_hdr[CONTENT_SHA256_HDR_LEN + 2] = ""; /* add \r\n */ |
839 | 0 | char *canonical_request = NULL; |
840 | 0 | char *request_type = NULL; |
841 | 0 | char *credential_scope = NULL; |
842 | 0 | char *str_to_sign = NULL; |
843 | 0 | const char *user = data->state.aptr.user ? data->state.aptr.user : ""; |
844 | 0 | char *secret = NULL; |
845 | 0 | unsigned char sign0[CURL_SHA256_DIGEST_LENGTH] = { 0 }; |
846 | 0 | unsigned char sign1[CURL_SHA256_DIGEST_LENGTH] = { 0 }; |
847 | 0 | char *auth_headers = NULL; |
848 | |
|
849 | 0 | if(data->set.path_as_is) { |
850 | 0 | failf(data, "Cannot use sigv4 authentication with path-as-is flag"); |
851 | 0 | return CURLE_BAD_FUNCTION_ARGUMENT; |
852 | 0 | } |
853 | | |
854 | 0 | if(Curl_checkheaders(data, STRCONST("Authorization"))) { |
855 | | /* Authorization already present, Bailing out */ |
856 | 0 | return CURLE_OK; |
857 | 0 | } |
858 | | |
859 | | /* we init those buffers here, so goto fail will free initialized dynbuf */ |
860 | 0 | curlx_dyn_init(&canonical_headers, CURL_MAX_HTTP_HEADER); |
861 | 0 | curlx_dyn_init(&canonical_query, CURL_MAX_HTTP_HEADER); |
862 | 0 | curlx_dyn_init(&signed_headers, CURL_MAX_HTTP_HEADER); |
863 | 0 | curlx_dyn_init(&canonical_path, CURL_MAX_HTTP_HEADER); |
864 | | |
865 | | /* |
866 | | * Parameters parsing |
867 | | * Google and Outscale use the same OSC or GOOG, |
868 | | * but Amazon uses AWS and AMZ for header arguments. |
869 | | * AWS is the default because most of non-amazon providers |
870 | | * are still using aws:amz as a prefix. |
871 | | */ |
872 | 0 | line = data->set.str[STRING_AWS_SIGV4]; |
873 | 0 | if(!line || !*line) |
874 | 0 | line = "aws:amz"; |
875 | | |
876 | | /* provider0[:provider1[:region[:service]]] |
877 | | |
878 | | No string can be longer than N bytes of non-whitespace |
879 | | */ |
880 | 0 | if(curlx_str_until(&line, &provider0, MAX_SIGV4_LEN, ':')) { |
881 | 0 | failf(data, "first aws-sigv4 provider cannot be empty"); |
882 | 0 | result = CURLE_BAD_FUNCTION_ARGUMENT; |
883 | 0 | goto fail; |
884 | 0 | } |
885 | 0 | if(curlx_str_single(&line, ':') || |
886 | 0 | curlx_str_until(&line, &provider1, MAX_SIGV4_LEN, ':')) { |
887 | 0 | provider1 = provider0; |
888 | 0 | } |
889 | 0 | else if(curlx_str_single(&line, ':') || |
890 | 0 | curlx_str_until(&line, ®ion, MAX_SIGV4_LEN, ':') || |
891 | 0 | curlx_str_single(&line, ':') || |
892 | 0 | curlx_str_until(&line, &service, MAX_SIGV4_LEN, ':')) { |
893 | | /* nothing to do */ |
894 | 0 | } |
895 | |
|
896 | 0 | if(!curlx_strlen(&service)) { |
897 | 0 | const char *p = hostname; |
898 | 0 | if(curlx_str_until(&p, &service, MAX_SIGV4_LEN, '.') || |
899 | 0 | curlx_str_single(&p, '.')) { |
900 | 0 | failf(data, "aws-sigv4: service missing in parameters and hostname"); |
901 | 0 | result = CURLE_URL_MALFORMAT; |
902 | 0 | goto fail; |
903 | 0 | } |
904 | | |
905 | 0 | infof(data, "aws_sigv4: picked service %.*s from host", |
906 | 0 | (int)curlx_strlen(&service), curlx_str(&service)); |
907 | |
|
908 | 0 | if(!curlx_strlen(®ion)) { |
909 | 0 | if(curlx_str_until(&p, ®ion, MAX_SIGV4_LEN, '.') || |
910 | 0 | curlx_str_single(&p, '.')) { |
911 | 0 | failf(data, "aws-sigv4: region missing in parameters and hostname"); |
912 | 0 | result = CURLE_URL_MALFORMAT; |
913 | 0 | goto fail; |
914 | 0 | } |
915 | 0 | infof(data, "aws_sigv4: picked region %.*s from host", |
916 | 0 | (int)curlx_strlen(®ion), curlx_str(®ion)); |
917 | 0 | } |
918 | 0 | } |
919 | | |
920 | 0 | Curl_http_method(data, &method, &httpreq); |
921 | |
|
922 | 0 | payload_hash = |
923 | 0 | parse_content_sha_hdr(data, curlx_str(&provider1), |
924 | 0 | curlx_strlen(&provider1), &payload_hash_len); |
925 | |
|
926 | 0 | if(!payload_hash) { |
927 | | /* AWS S3 requires a x-amz-content-sha256 header, and supports special |
928 | | * values like UNSIGNED-PAYLOAD */ |
929 | 0 | bool sign_as_s3 = curlx_str_casecompare(&provider0, "aws") && |
930 | 0 | curlx_str_casecompare(&service, "s3"); |
931 | |
|
932 | 0 | if(sign_as_s3) |
933 | 0 | result = calc_s3_payload_hash(data, httpreq, curlx_str(&provider1), |
934 | 0 | curlx_strlen(&provider1), sha_hash, |
935 | 0 | sha_hex, content_sha256_hdr); |
936 | 0 | else |
937 | 0 | result = calc_payload_hash(data, sha_hash, sha_hex); |
938 | 0 | if(result) |
939 | 0 | goto fail; |
940 | | |
941 | 0 | payload_hash = sha_hex; |
942 | | /* may be shorter than SHA256_HEX_LENGTH, like S3_UNSIGNED_PAYLOAD */ |
943 | 0 | payload_hash_len = strlen(sha_hex); |
944 | 0 | } |
945 | | |
946 | 0 | #ifdef DEBUGBUILD |
947 | 0 | { |
948 | 0 | char *force_timestamp = getenv("CURL_FORCETIME"); |
949 | 0 | if(force_timestamp) |
950 | 0 | clock = 0; |
951 | 0 | else |
952 | 0 | clock = time(NULL); |
953 | 0 | } |
954 | | #else |
955 | | clock = time(NULL); |
956 | | #endif |
957 | 0 | result = curlx_gmtime(clock, &tm); |
958 | 0 | if(result) { |
959 | 0 | goto fail; |
960 | 0 | } |
961 | 0 | if(!strftime(timestamp, sizeof(timestamp), "%Y%m%dT%H%M%SZ", &tm)) { |
962 | 0 | result = CURLE_OUT_OF_MEMORY; |
963 | 0 | goto fail; |
964 | 0 | } |
965 | | |
966 | 0 | result = make_headers(data, hostname, timestamp, |
967 | 0 | curlx_str(&provider1), curlx_strlen(&provider1), |
968 | 0 | &date_header, content_sha256_hdr, |
969 | 0 | &canonical_headers, &signed_headers); |
970 | 0 | if(result) |
971 | 0 | goto fail; |
972 | | |
973 | 0 | if(*content_sha256_hdr) { |
974 | | /* make_headers() needed this without the \r\n for canonicalization */ |
975 | 0 | size_t hdrlen = strlen(content_sha256_hdr); |
976 | 0 | DEBUGASSERT(hdrlen + 3 < sizeof(content_sha256_hdr)); |
977 | 0 | memcpy(content_sha256_hdr + hdrlen, "\r\n", 3); |
978 | 0 | } |
979 | |
|
980 | 0 | memcpy(date, timestamp, sizeof(date)); |
981 | 0 | date[sizeof(date) - 1] = 0; |
982 | |
|
983 | 0 | result = canon_query(data->state.up.query, &canonical_query); |
984 | 0 | if(result) |
985 | 0 | goto fail; |
986 | | |
987 | 0 | result = canon_path(data->state.up.path, strlen(data->state.up.path), |
988 | 0 | &canonical_path, |
989 | 0 | should_urlencode(&service)); |
990 | 0 | if(result) |
991 | 0 | goto fail; |
992 | 0 | result = CURLE_OUT_OF_MEMORY; |
993 | |
|
994 | 0 | canonical_request = |
995 | 0 | curl_maprintf("%s\n" /* HTTPRequestMethod */ |
996 | 0 | "%s\n" /* CanonicalURI */ |
997 | 0 | "%s\n" /* CanonicalQueryString */ |
998 | 0 | "%s\n" /* CanonicalHeaders */ |
999 | 0 | "%s\n" /* SignedHeaders */ |
1000 | 0 | "%.*s", /* HashedRequestPayload in hex */ |
1001 | 0 | method, |
1002 | 0 | curlx_dyn_ptr(&canonical_path), |
1003 | 0 | curlx_dyn_ptr(&canonical_query) ? |
1004 | 0 | curlx_dyn_ptr(&canonical_query) : "", |
1005 | 0 | curlx_dyn_ptr(&canonical_headers), |
1006 | 0 | curlx_dyn_ptr(&signed_headers), |
1007 | 0 | (int)payload_hash_len, payload_hash); |
1008 | 0 | if(!canonical_request) |
1009 | 0 | goto fail; |
1010 | | |
1011 | 0 | infof(data, "aws_sigv4: Canonical request (enclosed in []) - [%s]", |
1012 | 0 | canonical_request); |
1013 | |
|
1014 | 0 | request_type = curl_maprintf("%.*s4_request", |
1015 | 0 | (int)curlx_strlen(&provider0), |
1016 | 0 | curlx_str(&provider0)); |
1017 | 0 | if(!request_type) |
1018 | 0 | goto fail; |
1019 | | |
1020 | | /* provider0 is lowercased *after* curl_maprintf() so that the buffer |
1021 | | can be written to */ |
1022 | 0 | Curl_strntolower(request_type, request_type, curlx_strlen(&provider0)); |
1023 | |
|
1024 | 0 | credential_scope = curl_maprintf("%s/%.*s/%.*s/%s", date, |
1025 | 0 | (int)curlx_strlen(®ion), |
1026 | 0 | curlx_str(®ion), |
1027 | 0 | (int)curlx_strlen(&service), |
1028 | 0 | curlx_str(&service), |
1029 | 0 | request_type); |
1030 | 0 | if(!credential_scope) |
1031 | 0 | goto fail; |
1032 | | |
1033 | 0 | if(Curl_sha256it(sha_hash, (unsigned char *)canonical_request, |
1034 | 0 | strlen(canonical_request))) |
1035 | 0 | goto fail; |
1036 | | |
1037 | 0 | sha256_to_hex(sha_hex, sha_hash); |
1038 | | |
1039 | | /* |
1040 | | * Google allows using RSA key instead of HMAC, so this code might change |
1041 | | * in the future. For now we only support HMAC. |
1042 | | */ |
1043 | 0 | str_to_sign = curl_maprintf("%.*s4-HMAC-SHA256\n" /* Algorithm */ |
1044 | 0 | "%s\n" /* RequestDateTime */ |
1045 | 0 | "%s\n" /* CredentialScope */ |
1046 | 0 | "%s", /* HashedCanonicalRequest in hex */ |
1047 | 0 | (int)curlx_strlen(&provider0), |
1048 | 0 | curlx_str(&provider0), |
1049 | 0 | timestamp, |
1050 | 0 | credential_scope, |
1051 | 0 | sha_hex); |
1052 | 0 | if(!str_to_sign) |
1053 | 0 | goto fail; |
1054 | | |
1055 | | /* make provider0 part done uppercase */ |
1056 | 0 | Curl_strntoupper(str_to_sign, curlx_str(&provider0), |
1057 | 0 | curlx_strlen(&provider0)); |
1058 | |
|
1059 | 0 | infof(data, "aws_sigv4: String to sign (enclosed in []) - [%s]", |
1060 | 0 | str_to_sign); |
1061 | |
|
1062 | 0 | secret = curl_maprintf("%.*s4%s", (int)curlx_strlen(&provider0), |
1063 | 0 | curlx_str(&provider0), data->state.aptr.passwd ? |
1064 | 0 | data->state.aptr.passwd : ""); |
1065 | 0 | if(!secret) |
1066 | 0 | goto fail; |
1067 | | /* make provider0 part done uppercase */ |
1068 | 0 | Curl_strntoupper(secret, curlx_str(&provider0), curlx_strlen(&provider0)); |
1069 | |
|
1070 | 0 | HMAC_SHA256(secret, strlen(secret), date, strlen(date), sign0); |
1071 | 0 | HMAC_SHA256(sign0, sizeof(sign0), |
1072 | 0 | curlx_str(®ion), curlx_strlen(®ion), sign1); |
1073 | 0 | HMAC_SHA256(sign1, sizeof(sign1), |
1074 | 0 | curlx_str(&service), curlx_strlen(&service), sign0); |
1075 | 0 | HMAC_SHA256(sign0, sizeof(sign0), request_type, strlen(request_type), sign1); |
1076 | 0 | HMAC_SHA256(sign1, sizeof(sign1), str_to_sign, strlen(str_to_sign), sign0); |
1077 | | |
1078 | 0 | sha256_to_hex(sha_hex, sign0); |
1079 | |
|
1080 | 0 | infof(data, "aws_sigv4: Signature - %s", sha_hex); |
1081 | |
|
1082 | 0 | auth_headers = curl_maprintf("Authorization: %.*s4-HMAC-SHA256 " |
1083 | 0 | "Credential=%s/%s, " |
1084 | 0 | "SignedHeaders=%s, " |
1085 | 0 | "Signature=%s\r\n" |
1086 | | /* |
1087 | | * date_header is added here, only if it was not |
1088 | | * user-specified (using CURLOPT_HTTPHEADER). |
1089 | | * date_header includes \r\n |
1090 | | */ |
1091 | 0 | "%s" |
1092 | 0 | "%s", /* optional sha256 header includes \r\n */ |
1093 | 0 | (int)curlx_strlen(&provider0), |
1094 | 0 | curlx_str(&provider0), |
1095 | 0 | user, |
1096 | 0 | credential_scope, |
1097 | 0 | curlx_dyn_ptr(&signed_headers), |
1098 | 0 | sha_hex, |
1099 | 0 | date_header ? date_header : "", |
1100 | 0 | content_sha256_hdr); |
1101 | 0 | if(!auth_headers) { |
1102 | 0 | goto fail; |
1103 | 0 | } |
1104 | | /* provider 0 uppercase */ |
1105 | 0 | Curl_strntoupper(&auth_headers[sizeof("Authorization: ") - 1], |
1106 | 0 | curlx_str(&provider0), curlx_strlen(&provider0)); |
1107 | |
|
1108 | 0 | curlx_free(data->state.aptr.userpwd); |
1109 | 0 | data->state.aptr.userpwd = auth_headers; |
1110 | 0 | data->state.authhost.done = TRUE; |
1111 | 0 | result = CURLE_OK; |
1112 | |
|
1113 | 0 | fail: |
1114 | 0 | curlx_dyn_free(&canonical_query); |
1115 | 0 | curlx_dyn_free(&canonical_path); |
1116 | 0 | curlx_dyn_free(&canonical_headers); |
1117 | 0 | curlx_dyn_free(&signed_headers); |
1118 | 0 | curlx_free(canonical_request); |
1119 | 0 | curlx_free(request_type); |
1120 | 0 | curlx_free(credential_scope); |
1121 | 0 | curlx_free(str_to_sign); |
1122 | 0 | curlx_free(secret); |
1123 | 0 | curlx_free(date_header); |
1124 | 0 | return result; |
1125 | 0 | } |
1126 | | |
1127 | | #endif /* !CURL_DISABLE_HTTP && !CURL_DISABLE_AWS */ |