1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "aws/s3/private/s3_auto_ranged_put.h"
#include "aws/s3/private/s3_checksums.h"
#include "aws/s3/private/s3_list_parts.h"
#include "aws/s3/private/s3_request_messages.h"
#include "aws/s3/private/s3_util.h"
#include <aws/common/encoding.h>
#include <aws/common/string.h>
#include <aws/io/stream.h>
static const struct aws_byte_cursor s_upload_id = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("UploadId");
static const size_t s_complete_multipart_upload_init_body_size_bytes = 512;
static const size_t s_abort_multipart_upload_init_body_size_bytes = 512;
static const struct aws_byte_cursor s_create_multipart_upload_copy_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-customer-algorithm"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-customer-key-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
};
static void s_s3_meta_request_auto_ranged_put_destroy(struct aws_s3_meta_request *meta_request);
static bool s_s3_auto_ranged_put_update(
struct aws_s3_meta_request *meta_request,
uint32_t flags,
struct aws_s3_request **out_request);
static int s_s3_auto_ranged_put_prepare_request(
struct aws_s3_meta_request *meta_request,
struct aws_s3_request *request);
static void s_s3_auto_ranged_put_request_finished(
struct aws_s3_meta_request *meta_request,
struct aws_s3_request *request,
int error_code);
static void s_s3_auto_ranged_put_send_request_finish(
struct aws_s3_connection *connection,
struct aws_http_stream *stream,
int error_code);
static int s_s3_auto_ranged_put_pause(
struct aws_s3_meta_request *meta_request,
struct aws_s3_meta_request_resume_token **resume_token);
static bool s_process_part_info(const struct aws_s3_part_info *info, void *user_data) {
struct aws_s3_auto_ranged_put *auto_ranged_put = user_data;
struct aws_string *etag = aws_strip_quotes(auto_ranged_put->base.allocator, info->e_tag);
const struct aws_byte_cursor *checksum_cur = NULL;
switch (auto_ranged_put->base.checksum_config.checksum_algorithm) {
case AWS_SCA_CRC32:
checksum_cur = &info->checksumCRC32;
break;
case AWS_SCA_CRC32C:
checksum_cur = &info->checksumCRC32C;
break;
case AWS_SCA_SHA1:
checksum_cur = &info->checksumSHA1;
break;
case AWS_SCA_SHA256:
checksum_cur = &info->checksumSHA256;
break;
case AWS_SCA_NONE:
break;
default:
AWS_ASSERT(false);
break;
}
if (checksum_cur) {
aws_byte_buf_init_copy_from_cursor(
&auto_ranged_put->encoded_checksum_list[info->part_number - 1],
auto_ranged_put->base.allocator,
*checksum_cur);
}
aws_array_list_set_at(&auto_ranged_put->synced_data.etag_list, &etag, info->part_number - 1);
return true;
}
/*
* Validates token and updates part variables. Noop if token is null.
*/
static int s_try_update_part_info_from_resume_token(
uint64_t content_length,
const struct aws_s3_meta_request_resume_token *resume_token,
size_t *out_part_size,
uint32_t *out_total_num_parts) {
if (!resume_token) {
return AWS_OP_SUCCESS;
}
if (resume_token->type != AWS_S3_META_REQUEST_TYPE_PUT_OBJECT) {
AWS_LOGF_ERROR(AWS_LS_S3_META_REQUEST, "Could not load persisted state. Invalid token type.");
goto invalid_argument_cleanup;
}
if (resume_token->multipart_upload_id == NULL) {
AWS_LOGF_ERROR(AWS_LS_S3_META_REQUEST, "Could not load persisted state. Multipart upload id missing.");
goto invalid_argument_cleanup;
}
if (resume_token->part_size < g_s3_min_upload_part_size) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"Could not create resume auto-ranged-put meta request; part size of %" PRIu64
" specified in the token is below minimum threshold for multi-part.",
(uint64_t)resume_token->part_size);
goto invalid_argument_cleanup;
}
if ((uint32_t)resume_token->total_num_parts > g_s3_max_num_upload_parts) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"Could not create resume auto-ranged-put meta request; total number of parts %" PRIu32
" specified in the token is too large for platform.",
(uint32_t)resume_token->total_num_parts);
goto invalid_argument_cleanup;
}
uint32_t num_parts = (uint32_t)(content_length / resume_token->part_size);
if ((content_length % resume_token->part_size) > 0) {
++num_parts;
}
if (resume_token->total_num_parts != num_parts) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"Could not create auto-ranged-put meta request; persisted number of parts %zu"
" does not match expected number of parts based on length of the body.",
resume_token->total_num_parts);
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
*out_part_size = resume_token->part_size;
*out_total_num_parts = (uint32_t)resume_token->total_num_parts;
return AWS_OP_SUCCESS;
invalid_argument_cleanup:
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
/**
* Initializes state necessary to resume upload. Noop if token is null.
*/
static int s_try_init_resume_state_from_persisted_data(
struct aws_allocator *allocator,
struct aws_s3_auto_ranged_put *auto_ranged_put,
const struct aws_s3_meta_request_resume_token *resume_token) {
if (resume_token == NULL) {
auto_ranged_put->synced_data.list_parts_operation = NULL;
auto_ranged_put->synced_data.list_parts_sent = true;
auto_ranged_put->synced_data.list_parts_completed = true;
return AWS_OP_SUCCESS;
}
struct aws_byte_cursor request_path;
if (aws_http_message_get_request_path(auto_ranged_put->base.initial_request_message, &request_path)) {
AWS_LOGF_ERROR(AWS_LS_S3_META_REQUEST, "Could not load persisted state. Request path could not be read.");
return aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
}
auto_ranged_put->synced_data.num_parts_sent = 0;
auto_ranged_put->synced_data.num_parts_completed = 0;
auto_ranged_put->synced_data.create_multipart_upload_sent = true;
auto_ranged_put->synced_data.create_multipart_upload_completed = true;
auto_ranged_put->upload_id = aws_string_clone_or_reuse(allocator, resume_token->multipart_upload_id);
struct aws_s3_list_parts_params list_parts_params = {
.key = request_path,
.upload_id = aws_byte_cursor_from_string(auto_ranged_put->upload_id),
.on_part = s_process_part_info,
.user_data = auto_ranged_put,
};
auto_ranged_put->synced_data.list_parts_operation = aws_s3_list_parts_operation_new(allocator, &list_parts_params);
struct aws_http_headers *needed_response_headers = aws_http_headers_new(allocator);
const size_t copy_header_count = AWS_ARRAY_SIZE(s_create_multipart_upload_copy_headers);
struct aws_http_headers *initial_headers =
aws_http_message_get_headers(auto_ranged_put->base.initial_request_message);
/* Copy headers that would have been used for create multi part from initial message, since create will never be
* called in this flow */
for (size_t header_index = 0; header_index < copy_header_count; ++header_index) {
const struct aws_byte_cursor *header_name = &s_create_multipart_upload_copy_headers[header_index];
struct aws_byte_cursor header_value;
AWS_ZERO_STRUCT(header_value);
if (!aws_http_headers_get(initial_headers, *header_name, &header_value)) {
aws_http_headers_set(needed_response_headers, *header_name, header_value);
}
}
auto_ranged_put->synced_data.needed_response_headers = needed_response_headers;
return AWS_OP_SUCCESS;
}
static struct aws_s3_meta_request_vtable s_s3_auto_ranged_put_vtable = {
.update = s_s3_auto_ranged_put_update,
.send_request_finish = s_s3_auto_ranged_put_send_request_finish,
.prepare_request = s_s3_auto_ranged_put_prepare_request,
.init_signing_date_time = aws_s3_meta_request_init_signing_date_time_default,
.sign_request = aws_s3_meta_request_sign_request_default,
.finished_request = s_s3_auto_ranged_put_request_finished,
.destroy = s_s3_meta_request_auto_ranged_put_destroy,
.finish = aws_s3_meta_request_finish_default,
.pause = s_s3_auto_ranged_put_pause,
};
/* Allocate a new auto-ranged put meta request */
struct aws_s3_meta_request *aws_s3_meta_request_auto_ranged_put_new(
struct aws_allocator *allocator,
struct aws_s3_client *client,
size_t part_size,
uint64_t content_length,
uint32_t num_parts,
const struct aws_s3_meta_request_options *options) {
/* These should already have been validated by the caller. */
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(client);
AWS_PRECONDITION(options);
AWS_PRECONDITION(options->message);
AWS_PRECONDITION(aws_http_message_get_body_stream(options->message));
struct aws_s3_auto_ranged_put *auto_ranged_put =
aws_mem_calloc(allocator, 1, sizeof(struct aws_s3_auto_ranged_put));
if (s_try_update_part_info_from_resume_token(content_length, options->resume_token, &part_size, &num_parts)) {
goto error_clean_up;
}
if (aws_s3_meta_request_init_base(
allocator,
client,
part_size,
client->compute_content_md5 == AWS_MR_CONTENT_MD5_ENABLED ||
aws_http_headers_has(aws_http_message_get_headers(options->message), g_content_md5_header_name),
options,
auto_ranged_put,
&s_s3_auto_ranged_put_vtable,
&auto_ranged_put->base)) {
goto error_clean_up;
}
auto_ranged_put->content_length = content_length;
auto_ranged_put->synced_data.total_num_parts = num_parts;
auto_ranged_put->upload_id = NULL;
auto_ranged_put->resume_token = options->resume_token;
aws_s3_meta_request_resume_token_acquire(auto_ranged_put->resume_token);
auto_ranged_put->threaded_update_data.next_part_number = 1;
auto_ranged_put->prepare_data.num_parts_read_from_stream = 0;
if (s_try_init_resume_state_from_persisted_data(allocator, auto_ranged_put, options->resume_token)) {
goto error_clean_up;
}
struct aws_string **etag_c_array = aws_mem_calloc(allocator, sizeof(struct aws_string *), num_parts);
aws_array_list_init_static(
&auto_ranged_put->synced_data.etag_list, etag_c_array, num_parts, sizeof(struct aws_string *));
auto_ranged_put->encoded_checksum_list = aws_mem_calloc(allocator, sizeof(struct aws_byte_buf), num_parts);
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST, "id=%p Created new Auto-Ranged Put Meta Request.", (void *)&auto_ranged_put->base);
return &auto_ranged_put->base;
error_clean_up:
aws_mem_release(allocator, auto_ranged_put);
return NULL;
}
/* Destroy our auto-ranged put meta request */
static void s_s3_meta_request_auto_ranged_put_destroy(struct aws_s3_meta_request *meta_request) {
AWS_PRECONDITION(meta_request);
AWS_PRECONDITION(meta_request->impl);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
aws_string_destroy(auto_ranged_put->upload_id);
auto_ranged_put->upload_id = NULL;
auto_ranged_put->resume_token = aws_s3_meta_request_resume_token_release(auto_ranged_put->resume_token);
aws_s3_paginated_operation_release(auto_ranged_put->synced_data.list_parts_operation);
for (size_t etag_index = 0; etag_index < aws_array_list_length(&auto_ranged_put->synced_data.etag_list);
++etag_index) {
struct aws_string *etag = NULL;
aws_array_list_get_at(&auto_ranged_put->synced_data.etag_list, &etag, etag_index);
aws_string_destroy(etag);
}
aws_string_destroy(auto_ranged_put->synced_data.list_parts_continuation_token);
/* probably just better to store num parts in the meta-request */
for (size_t checksum_index = 0; checksum_index < aws_array_list_length(&auto_ranged_put->synced_data.etag_list);
++checksum_index) {
aws_byte_buf_clean_up(&auto_ranged_put->encoded_checksum_list[checksum_index]);
}
aws_mem_release(meta_request->allocator, auto_ranged_put->synced_data.etag_list.data);
aws_mem_release(meta_request->allocator, auto_ranged_put->encoded_checksum_list);
aws_array_list_clean_up(&auto_ranged_put->synced_data.etag_list);
aws_http_headers_release(auto_ranged_put->synced_data.needed_response_headers);
aws_mem_release(meta_request->allocator, auto_ranged_put);
}
static bool s_s3_auto_ranged_put_update(
struct aws_s3_meta_request *meta_request,
uint32_t flags,
struct aws_s3_request **out_request) {
AWS_PRECONDITION(meta_request);
AWS_PRECONDITION(out_request);
struct aws_s3_request *request = NULL;
bool work_remaining = false;
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
if (!aws_s3_meta_request_has_finish_result_synced(meta_request)) {
/* If resuming and list part has not be sent, do it now. */
if (!auto_ranged_put->synced_data.list_parts_sent) {
request = aws_s3_request_new(
meta_request,
AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_LIST_PARTS,
0,
AWS_S3_REQUEST_FLAG_RECORD_RESPONSE_HEADERS);
auto_ranged_put->synced_data.list_parts_sent = true;
goto has_work_remaining;
}
/* waiting on list parts to finish. */
if (!auto_ranged_put->synced_data.list_parts_completed) {
goto has_work_remaining;
}
/* If we haven't already sent a create-multipart-upload message, do so now. */
if (!auto_ranged_put->synced_data.create_multipart_upload_sent) {
request = aws_s3_request_new(
meta_request,
AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_CREATE_MULTIPART_UPLOAD,
0,
AWS_S3_REQUEST_FLAG_RECORD_RESPONSE_HEADERS);
auto_ranged_put->synced_data.create_multipart_upload_sent = true;
goto has_work_remaining;
}
/* If the create-multipart-upload message hasn't been completed, then there is still additional work to do,
* but it can't be done yet. */
if (!auto_ranged_put->synced_data.create_multipart_upload_completed) {
goto has_work_remaining;
}
/* If we haven't sent all of the parts yet, then set up to send a new part now. */
if (auto_ranged_put->synced_data.num_parts_sent < auto_ranged_put->synced_data.total_num_parts) {
/* Check if the etag/checksum list has the result already */
int part_index = auto_ranged_put->threaded_update_data.next_part_number - 1;
for (size_t etag_index = part_index;
etag_index < aws_array_list_length(&auto_ranged_put->synced_data.etag_list);
++etag_index) {
struct aws_string *etag = NULL;
if (!aws_array_list_get_at(&auto_ranged_put->synced_data.etag_list, &etag, etag_index) && etag) {
/* part already downloaded, skip it here and prepare will take care of adjusting the buffer */
++auto_ranged_put->threaded_update_data.next_part_number;
} else {
// incomplete part found. break out and create request for it.
break;
}
}
// Something went really wrong. we still have parts to send, but have etags for all parts
AWS_FATAL_ASSERT(
auto_ranged_put->threaded_update_data.next_part_number <=
auto_ranged_put->synced_data.total_num_parts);
if ((flags & AWS_S3_META_REQUEST_UPDATE_FLAG_CONSERVATIVE) != 0) {
uint32_t num_parts_in_flight =
(auto_ranged_put->synced_data.num_parts_sent -
auto_ranged_put->synced_data.num_parts_completed);
/* Because uploads must read from their streams serially, we try to limit the amount of in flight
* requests for a given multipart upload if we can. */
if (num_parts_in_flight > 0) {
goto has_work_remaining;
}
}
/* Allocate a request for another part. */
request = aws_s3_request_new(
meta_request,
AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_PART,
0,
AWS_S3_REQUEST_FLAG_RECORD_RESPONSE_HEADERS);
request->part_number = auto_ranged_put->threaded_update_data.next_part_number;
++auto_ranged_put->threaded_update_data.next_part_number;
++auto_ranged_put->synced_data.num_parts_sent;
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Returning request %p for part %d",
(void *)meta_request,
(void *)request,
request->part_number);
goto has_work_remaining;
}
/* There is one more request to send after all of the parts (the complete-multipart-upload) but it can't be
* done until all of the parts have been completed.*/
if (auto_ranged_put->synced_data.num_parts_completed != auto_ranged_put->synced_data.total_num_parts) {
goto has_work_remaining;
}
/* If the complete-multipart-upload request hasn't been set yet, then send it now. */
if (!auto_ranged_put->synced_data.complete_multipart_upload_sent) {
request = aws_s3_request_new(
meta_request,
AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_COMPLETE_MULTIPART_UPLOAD,
0,
AWS_S3_REQUEST_FLAG_RECORD_RESPONSE_HEADERS);
auto_ranged_put->synced_data.complete_multipart_upload_sent = true;
goto has_work_remaining;
}
/* Wait for the complete-multipart-upload request to finish. */
if (!auto_ranged_put->synced_data.complete_multipart_upload_completed) {
goto has_work_remaining;
}
goto no_work_remaining;
} else {
/* If the create multipart upload hasn't been sent, then there is nothing left to do when canceling. */
if (!auto_ranged_put->synced_data.create_multipart_upload_sent) {
goto no_work_remaining;
}
/* If the create-multipart-upload request is still in flight, wait for it to finish. */
if (!auto_ranged_put->synced_data.create_multipart_upload_completed) {
goto has_work_remaining;
}
/* If the number of parts completed is less than the number of parts sent, then we need to wait until all of
* those parts are done sending before aborting. */
if (auto_ranged_put->synced_data.num_parts_completed < auto_ranged_put->synced_data.num_parts_sent) {
goto has_work_remaining;
}
/* If the complete-multipart-upload is already in flight, then we can't necessarily send an abort. */
if (auto_ranged_put->synced_data.complete_multipart_upload_sent &&
!auto_ranged_put->synced_data.complete_multipart_upload_completed) {
goto has_work_remaining;
}
/* If the upload was paused or resume failed, we don't abort the multipart upload. */
if (meta_request->synced_data.finish_result.error_code == AWS_ERROR_S3_PAUSED ||
meta_request->synced_data.finish_result.error_code == AWS_ERROR_S3_RESUME_FAILED) {
goto no_work_remaining;
}
/* If the complete-multipart-upload completed successfully, then there is nothing to abort since the
* transfer has already finished. */
if (auto_ranged_put->synced_data.complete_multipart_upload_completed &&
auto_ranged_put->synced_data.complete_multipart_upload_error_code == AWS_ERROR_SUCCESS) {
goto no_work_remaining;
}
/* If we made it here, and the abort-multipart-upload message hasn't been sent yet, then do so now. */
if (!auto_ranged_put->synced_data.abort_multipart_upload_sent) {
if (auto_ranged_put->upload_id == NULL) {
goto no_work_remaining;
}
request = aws_s3_request_new(
meta_request,
AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_ABORT_MULTIPART_UPLOAD,
0,
AWS_S3_REQUEST_FLAG_RECORD_RESPONSE_HEADERS | AWS_S3_REQUEST_FLAG_ALWAYS_SEND);
auto_ranged_put->synced_data.abort_multipart_upload_sent = true;
goto has_work_remaining;
}
/* Wait for the multipart upload to be completed. */
if (!auto_ranged_put->synced_data.abort_multipart_upload_completed) {
goto has_work_remaining;
}
goto no_work_remaining;
}
has_work_remaining:
work_remaining = true;
no_work_remaining:
if (!work_remaining) {
aws_s3_meta_request_set_success_synced(meta_request, AWS_S3_RESPONSE_STATUS_SUCCESS);
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
if (work_remaining) {
*out_request = request;
} else {
AWS_ASSERT(request == NULL);
aws_s3_meta_request_finish(meta_request);
}
return work_remaining;
}
/**
* Helper to compute request body size.
* Basically returns either part size or if content is not equally divisible into parts, the size of the remaining last
* part.
*/
static size_t s_compute_request_body_size(struct aws_s3_meta_request *meta_request, uint32_t part_number) {
AWS_PRECONDITION(meta_request);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
size_t request_body_size = meta_request->part_size;
/* Last part--adjust size to match remaining content length. */
if (part_number == auto_ranged_put->synced_data.total_num_parts) {
size_t content_remainder = (size_t)(auto_ranged_put->content_length % (uint64_t)meta_request->part_size);
if (content_remainder > 0) {
request_body_size = content_remainder;
}
}
return request_body_size;
}
static int s_verify_part_matches_checksum(
struct aws_allocator *allocator,
struct aws_byte_buf part_body,
enum aws_s3_checksum_algorithm algorithm,
struct aws_byte_buf part_checksum) {
AWS_PRECONDITION(allocator);
if (algorithm == AWS_SCA_NONE) {
return AWS_OP_SUCCESS;
}
struct aws_byte_buf checksum;
if (aws_byte_buf_init(&checksum, allocator, aws_get_digest_size_from_algorithm(algorithm))) {
return AWS_OP_ERR;
}
struct aws_byte_buf encoded_checksum = {0};
int return_status = AWS_OP_SUCCESS;
struct aws_byte_cursor body_cur = aws_byte_cursor_from_buf(&part_body);
size_t encoded_len = 0;
if (aws_base64_compute_encoded_len(aws_get_digest_size_from_algorithm(algorithm), &encoded_len)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST, "Failed to resume upload. Unable to determine length of encoded checksum.");
return_status = aws_raise_error(AWS_ERROR_S3_RESUME_FAILED);
goto on_done;
}
if (aws_checksum_compute(allocator, algorithm, &body_cur, &checksum, 0)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST, "Failed to resume upload. Unable to compute checksum for the skipped part.");
return_status = aws_raise_error(AWS_ERROR_S3_RESUME_FAILED);
goto on_done;
}
if (aws_byte_buf_init(&encoded_checksum, allocator, encoded_len)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST, "Failed to resume upload. Unable to allocate buffer for encoded checksum.");
return_status = aws_raise_error(AWS_ERROR_S3_RESUME_FAILED);
goto on_done;
}
struct aws_byte_cursor checksum_cur = aws_byte_cursor_from_buf(&checksum);
if (aws_base64_encode(&checksum_cur, &encoded_checksum)) {
AWS_LOGF_ERROR(AWS_LS_S3_META_REQUEST, "Failed to resume upload. Unable to encode checksum.");
return_status = aws_raise_error(AWS_ERROR_S3_RESUME_FAILED);
goto on_done;
}
if (!aws_byte_buf_eq(&encoded_checksum, &part_checksum)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST, "Failed to resume upload. Checksum for previously uploaded part does not match");
return_status = aws_raise_error(AWS_ERROR_S3_RESUMED_PART_CHECKSUM_MISMATCH);
goto on_done;
}
on_done:
aws_byte_buf_clean_up(&checksum);
aws_byte_buf_clean_up(&encoded_checksum);
return return_status;
}
/**
* Skips parts from input stream that were previously uploaded.
* Assumes input stream has num_parts_read_from_stream specifying which part stream is on
* and will read into temp buffer until it gets to skip_until_part_number (i.e. skipping does include
* that part). If checksum is set on the request and parts with checksums were uploaded before, checksum will be
* verified.
*/
static int s_skip_parts_from_stream(
struct aws_s3_meta_request *meta_request,
uint32_t num_parts_read_from_stream,
uint32_t skip_until_part_number) {
AWS_PRECONDITION(meta_request);
AWS_PRECONDITION(num_parts_read_from_stream <= skip_until_part_number);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
AWS_PRECONDITION(skip_until_part_number <= auto_ranged_put->synced_data.total_num_parts);
if (num_parts_read_from_stream == skip_until_part_number) {
return AWS_OP_SUCCESS;
}
struct aws_byte_buf temp_body_buf;
if (aws_byte_buf_init(&temp_body_buf, meta_request->allocator, 0)) {
return AWS_OP_ERR;
}
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Skipping parts %d through %d",
(void *)meta_request,
num_parts_read_from_stream,
skip_until_part_number);
int return_status = AWS_OP_SUCCESS;
for (uint32_t part_index = num_parts_read_from_stream; part_index < skip_until_part_number; ++part_index) {
size_t request_body_size = s_compute_request_body_size(meta_request, part_index + 1);
if (temp_body_buf.capacity != request_body_size) {
// reinit with correct size
aws_byte_buf_clean_up(&temp_body_buf);
if (aws_byte_buf_init(&temp_body_buf, meta_request->allocator, request_body_size)) {
return AWS_OP_ERR;
}
} else {
// reuse buffer
aws_byte_buf_reset(&temp_body_buf, false);
}
if (aws_s3_meta_request_read_body(meta_request, &temp_body_buf)) {
AWS_LOGF_ERROR(AWS_LS_S3_META_REQUEST, "Failed to resume upload. Input steam cannot be read.");
return_status = AWS_OP_ERR;
goto on_done;
}
// compare skipped checksum to previously uploaded checksum
if (auto_ranged_put->encoded_checksum_list[part_index].len > 0 &&
s_verify_part_matches_checksum(
meta_request->allocator,
temp_body_buf,
meta_request->checksum_config.checksum_algorithm,
auto_ranged_put->encoded_checksum_list[part_index])) {
return_status = AWS_OP_ERR;
goto on_done;
}
}
on_done:
aws_byte_buf_clean_up(&temp_body_buf);
return return_status;
}
/* Given a request, prepare it for sending based on its description. */
static int s_s3_auto_ranged_put_prepare_request(
struct aws_s3_meta_request *meta_request,
struct aws_s3_request *request) {
AWS_PRECONDITION(meta_request);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
AWS_PRECONDITION(auto_ranged_put);
struct aws_http_message *message = NULL;
switch (request->request_tag) {
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_LIST_PARTS: {
int message_creation_result = AWS_OP_ERR;
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
if (auto_ranged_put->synced_data.list_parts_continuation_token) {
struct aws_byte_cursor continuation_cur =
aws_byte_cursor_from_string(auto_ranged_put->synced_data.list_parts_continuation_token);
message_creation_result = aws_s3_construct_next_paginated_request_http_message(
auto_ranged_put->synced_data.list_parts_operation, &continuation_cur, &message);
} else {
message_creation_result = aws_s3_construct_next_paginated_request_http_message(
auto_ranged_put->synced_data.list_parts_operation, NULL, &message);
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
if (message_creation_result) {
goto message_create_failed;
}
if (meta_request->checksum_config.checksum_algorithm == AWS_SCA_NONE) {
/* We don't need to worry about the pre-calculated checksum from user as for multipart upload, only way
* to calculate checksum for multipart upload is from client. */
aws_s3_message_util_copy_headers(
meta_request->initial_request_message,
message,
g_s3_list_parts_excluded_headers,
g_s3_list_parts_excluded_headers_count,
true);
} else {
aws_s3_message_util_copy_headers(
meta_request->initial_request_message,
message,
g_s3_list_parts_with_checksum_excluded_headers,
g_s3_list_parts_with_checksum_excluded_headers_count,
true);
}
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_CREATE_MULTIPART_UPLOAD: {
/* Create the message to create a new multipart upload. */
message = aws_s3_create_multipart_upload_message_new(
meta_request->allocator,
meta_request->initial_request_message,
meta_request->checksum_config.checksum_algorithm);
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_PART: {
size_t request_body_size = s_compute_request_body_size(meta_request, request->part_number);
if (request->num_times_prepared == 0) {
if (s_skip_parts_from_stream(
meta_request,
auto_ranged_put->prepare_data.num_parts_read_from_stream,
request->part_number - 1)) {
goto message_create_failed;
}
auto_ranged_put->prepare_data.num_parts_read_from_stream = request->part_number - 1;
aws_byte_buf_init(&request->request_body, meta_request->allocator, request_body_size);
if (aws_s3_meta_request_read_body(meta_request, &request->request_body)) {
goto message_create_failed;
}
++auto_ranged_put->prepare_data.num_parts_read_from_stream;
}
/* Create a new put-object message to upload a part. */
message = aws_s3_upload_part_message_new(
meta_request->allocator,
meta_request->initial_request_message,
&request->request_body,
request->part_number,
auto_ranged_put->upload_id,
meta_request->should_compute_content_md5,
&meta_request->checksum_config,
&auto_ranged_put->encoded_checksum_list[request->part_number - 1]);
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_COMPLETE_MULTIPART_UPLOAD: {
if (request->num_times_prepared == 0) {
/* Corner case of last part being previously uploaded during resume.
* Read it from input stream and potentially verify checksum */
if (s_skip_parts_from_stream(
meta_request,
auto_ranged_put->prepare_data.num_parts_read_from_stream,
auto_ranged_put->synced_data.total_num_parts)) {
goto message_create_failed;
}
auto_ranged_put->prepare_data.num_parts_read_from_stream = auto_ranged_put->synced_data.total_num_parts;
aws_byte_buf_init(
&request->request_body, meta_request->allocator, s_complete_multipart_upload_init_body_size_bytes);
} else {
aws_byte_buf_reset(&request->request_body, false);
}
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
AWS_FATAL_ASSERT(auto_ranged_put->upload_id);
AWS_ASSERT(request->request_body.capacity > 0);
aws_byte_buf_reset(&request->request_body, false);
/* Build the message to complete our multipart upload, which includes a payload describing all of
* our completed parts. */
message = aws_s3_complete_multipart_message_new(
meta_request->allocator,
meta_request->initial_request_message,
&request->request_body,
auto_ranged_put->upload_id,
&auto_ranged_put->synced_data.etag_list,
auto_ranged_put->encoded_checksum_list,
meta_request->checksum_config.checksum_algorithm);
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_ABORT_MULTIPART_UPLOAD: {
AWS_FATAL_ASSERT(auto_ranged_put->upload_id);
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p Abort multipart upload request for upload id %s.",
(void *)meta_request,
aws_string_c_str(auto_ranged_put->upload_id));
if (request->num_times_prepared == 0) {
aws_byte_buf_init(
&request->request_body, meta_request->allocator, s_abort_multipart_upload_init_body_size_bytes);
} else {
aws_byte_buf_reset(&request->request_body, false);
}
/* Build the message to abort our multipart upload */
message = aws_s3_abort_multipart_upload_message_new(
meta_request->allocator, meta_request->initial_request_message, auto_ranged_put->upload_id);
break;
}
}
if (message == NULL) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"id=%p Could not allocate message for request with tag %d for auto-ranged-put meta request.",
(void *)meta_request,
request->request_tag);
goto message_create_failed;
}
aws_s3_request_setup_send_data(request, message);
aws_http_message_release(message);
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Prepared request %p for part %d",
(void *)meta_request,
(void *)request,
request->part_number);
return AWS_OP_SUCCESS;
message_create_failed:
return AWS_OP_ERR;
}
/* Invoked before retry */
static void s_s3_auto_ranged_put_send_request_finish(
struct aws_s3_connection *connection,
struct aws_http_stream *stream,
int error_code) {
struct aws_s3_request *request = connection->request;
AWS_PRECONDITION(request);
/* Request tag is different from different type of meta requests */
switch (request->request_tag) {
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_COMPLETE_MULTIPART_UPLOAD: {
/* For complete multipart upload, the server may return async error. */
aws_s3_meta_request_send_request_finish_handle_async_error(connection, stream, error_code);
break;
}
default:
aws_s3_meta_request_send_request_finish_default(connection, stream, error_code);
break;
}
}
/* Invoked when no-retry will happen */
static void s_s3_auto_ranged_put_request_finished(
struct aws_s3_meta_request *meta_request,
struct aws_s3_request *request,
int error_code) {
AWS_PRECONDITION(meta_request);
AWS_PRECONDITION(meta_request->impl);
AWS_PRECONDITION(request);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
switch (request->request_tag) {
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_LIST_PARTS: {
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
bool has_more_results = false;
if (error_code == AWS_ERROR_SUCCESS) {
struct aws_byte_cursor body_cursor = aws_byte_cursor_from_buf(&request->send_data.response_body);
aws_string_destroy(auto_ranged_put->synced_data.list_parts_continuation_token);
if (aws_s3_paginated_operation_on_response(
auto_ranged_put->synced_data.list_parts_operation,
&body_cursor,
&auto_ranged_put->synced_data.list_parts_continuation_token,
&has_more_results)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST, "id=%p Failed to parse list parts response.", (void *)meta_request);
error_code = AWS_ERROR_S3_LIST_PARTS_PARSE_FAILED;
} else if (!has_more_results) {
for (size_t etag_index = 0;
etag_index < aws_array_list_length(&auto_ranged_put->synced_data.etag_list);
etag_index++) {
struct aws_string *etag = NULL;
aws_array_list_get_at(&auto_ranged_put->synced_data.etag_list, &etag, etag_index);
if (etag != NULL) {
/* Update the number of parts sent/completed previously */
++auto_ranged_put->synced_data.num_parts_sent;
++auto_ranged_put->synced_data.num_parts_completed;
}
}
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Resuming PutObject. %d out of %d parts have completed during previous request.",
(void *)meta_request,
auto_ranged_put->synced_data.num_parts_completed,
auto_ranged_put->synced_data.total_num_parts);
}
}
auto_ranged_put->synced_data.list_parts_completed = !has_more_results;
auto_ranged_put->synced_data.list_parts_error_code = error_code;
if (error_code != AWS_ERROR_SUCCESS) {
if (request->send_data.response_status == AWS_HTTP_STATUS_CODE_404_NOT_FOUND &&
auto_ranged_put->resume_token->num_parts_completed ==
auto_ranged_put->resume_token->total_num_parts) {
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Resuming PutObject ended early, since there is nothing to resume"
"(request finished prior to being paused?)",
(void *)meta_request);
aws_s3_meta_request_set_success_synced(meta_request, AWS_S3_RESPONSE_STATUS_SUCCESS);
} else {
aws_s3_meta_request_set_fail_synced(meta_request, request, error_code);
}
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_CREATE_MULTIPART_UPLOAD: {
struct aws_http_headers *needed_response_headers = NULL;
if (error_code == AWS_ERROR_SUCCESS) {
needed_response_headers = aws_http_headers_new(meta_request->allocator);
const size_t copy_header_count = AWS_ARRAY_SIZE(s_create_multipart_upload_copy_headers);
/* Copy any headers now that we'll need for the final, transformed headers later. */
for (size_t header_index = 0; header_index < copy_header_count; ++header_index) {
const struct aws_byte_cursor *header_name = &s_create_multipart_upload_copy_headers[header_index];
struct aws_byte_cursor header_value;
AWS_ZERO_STRUCT(header_value);
if (!aws_http_headers_get(request->send_data.response_headers, *header_name, &header_value)) {
aws_http_headers_set(needed_response_headers, *header_name, header_value);
}
}
struct aws_byte_cursor buffer_byte_cursor = aws_byte_cursor_from_buf(&request->send_data.response_body);
/* Find the upload id for this multipart upload. */
struct aws_string *upload_id =
aws_xml_get_top_level_tag(meta_request->allocator, &s_upload_id, &buffer_byte_cursor);
if (upload_id == NULL) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"id=%p Could not find upload-id in create-multipart-upload response",
(void *)meta_request);
aws_raise_error(AWS_ERROR_S3_MISSING_UPLOAD_ID);
error_code = AWS_ERROR_S3_MISSING_UPLOAD_ID;
} else {
/* Store the multipart upload id. */
auto_ranged_put->upload_id = upload_id;
}
}
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
AWS_ASSERT(auto_ranged_put->synced_data.needed_response_headers == NULL);
auto_ranged_put->synced_data.needed_response_headers = needed_response_headers;
auto_ranged_put->synced_data.create_multipart_upload_completed = true;
auto_ranged_put->synced_data.list_parts_error_code = error_code;
if (error_code != AWS_ERROR_SUCCESS) {
aws_s3_meta_request_set_fail_synced(meta_request, request, error_code);
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_PART: {
size_t part_number = request->part_number;
AWS_FATAL_ASSERT(part_number > 0);
size_t part_index = part_number - 1;
struct aws_string *etag = NULL;
if (error_code == AWS_ERROR_SUCCESS) {
/* Find the ETag header if it exists and cache it. */
struct aws_byte_cursor etag_within_quotes;
AWS_ASSERT(request->send_data.response_headers);
if (aws_http_headers_get(
request->send_data.response_headers, g_etag_header_name, &etag_within_quotes)) {
AWS_LOGF_ERROR(
AWS_LS_S3_META_REQUEST,
"id=%p Could not find ETag header for request %p",
(void *)meta_request,
(void *)request);
error_code = AWS_ERROR_S3_MISSING_UPLOAD_ID;
} else {
/* The ETag value arrives in quotes, but we don't want it in quotes when we send it back up
* later, so just get rid of the quotes now. */
etag = aws_strip_quotes(meta_request->allocator, etag_within_quotes);
}
}
if (error_code == AWS_ERROR_SUCCESS && meta_request->progress_callback != NULL) {
struct aws_s3_meta_request_progress progress = {
.bytes_transferred = meta_request->part_size,
.content_length = auto_ranged_put->content_length,
};
meta_request->progress_callback(meta_request, &progress, meta_request->user_data);
}
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
++auto_ranged_put->synced_data.num_parts_completed;
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: %d out of %d parts have completed.",
(void *)meta_request,
auto_ranged_put->synced_data.num_parts_completed,
auto_ranged_put->synced_data.total_num_parts);
if (error_code == AWS_ERROR_SUCCESS) {
AWS_ASSERT(etag != NULL);
++auto_ranged_put->synced_data.num_parts_successful;
/* ETags need to be associated with their part number, so we keep the etag indices consistent with
* part numbers. This means we may have to add padding to the list in the case that parts finish out
* of order. */
aws_array_list_set_at(&auto_ranged_put->synced_data.etag_list, &etag, part_index);
} else {
++auto_ranged_put->synced_data.num_parts_failed;
aws_s3_meta_request_set_fail_synced(meta_request, request, error_code);
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_COMPLETE_MULTIPART_UPLOAD: {
if (error_code == AWS_ERROR_SUCCESS && meta_request->headers_callback != NULL) {
struct aws_http_headers *final_response_headers = aws_http_headers_new(meta_request->allocator);
/* Copy all the response headers from this request. */
copy_http_headers(request->send_data.response_headers, final_response_headers);
/* Copy over any response headers that we've previously determined are needed for this final
* response.
*/
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
copy_http_headers(auto_ranged_put->synced_data.needed_response_headers, final_response_headers);
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
struct aws_byte_cursor response_body_cursor =
aws_byte_cursor_from_buf(&request->send_data.response_body);
/**
* TODO: The body of the response can be ERROR, check Error specified in body part from
* https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html#AmazonS3-CompleteMultipartUpload-response-CompleteMultipartUploadOutput
* We need to handle this case.
* TODO: the checksum returned within the response of complete multipart upload need to be exposed?
*/
/* Grab the ETag for the entire object, and set it as a header. */
struct aws_string *etag_header_value =
aws_xml_get_top_level_tag(meta_request->allocator, &g_etag_header_name, &response_body_cursor);
if (etag_header_value != NULL) {
struct aws_byte_buf etag_header_value_byte_buf;
AWS_ZERO_STRUCT(etag_header_value_byte_buf);
replace_quote_entities(meta_request->allocator, etag_header_value, &etag_header_value_byte_buf);
aws_http_headers_set(
final_response_headers,
g_etag_header_name,
aws_byte_cursor_from_buf(&etag_header_value_byte_buf));
aws_string_destroy(etag_header_value);
aws_byte_buf_clean_up(&etag_header_value_byte_buf);
}
/* Notify the user of the headers. */
if (meta_request->headers_callback(
meta_request,
final_response_headers,
request->send_data.response_status,
meta_request->user_data)) {
error_code = aws_last_error_or_unknown();
}
meta_request->headers_callback = NULL;
aws_http_headers_release(final_response_headers);
}
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
auto_ranged_put->synced_data.complete_multipart_upload_completed = true;
auto_ranged_put->synced_data.complete_multipart_upload_error_code = error_code;
if (error_code != AWS_ERROR_SUCCESS) {
aws_s3_meta_request_set_fail_synced(meta_request, request, error_code);
}
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
case AWS_S3_AUTO_RANGED_PUT_REQUEST_TAG_ABORT_MULTIPART_UPLOAD: {
/* BEGIN CRITICAL SECTION */
{
aws_s3_meta_request_lock_synced_data(meta_request);
auto_ranged_put->synced_data.abort_multipart_upload_error_code = error_code;
auto_ranged_put->synced_data.abort_multipart_upload_completed = true;
aws_s3_meta_request_unlock_synced_data(meta_request);
}
/* END CRITICAL SECTION */
break;
}
}
}
static int s_s3_auto_ranged_put_pause(
struct aws_s3_meta_request *meta_request,
struct aws_s3_meta_request_resume_token **out_resume_token) {
*out_resume_token = NULL;
/* lock */
aws_s3_meta_request_lock_synced_data(meta_request);
struct aws_s3_auto_ranged_put *auto_ranged_put = meta_request->impl;
AWS_LOGF_DEBUG(
AWS_LS_S3_META_REQUEST,
"id=%p: Pausing request with %u out of %u parts have completed.",
(void *)meta_request,
auto_ranged_put->synced_data.num_parts_completed,
auto_ranged_put->synced_data.total_num_parts);
/* upload can be in one of several states:
* - not started, i.e. we didn't even call crete mpu yet - return success,
* token is NULL and cancel the upload
* - in the middle of upload - return success, create token and cancel
* upload
* - complete MPU started - return success, generate token and try to cancel
* complete MPU
*/
if (auto_ranged_put->synced_data.create_multipart_upload_completed) {
*out_resume_token = aws_s3_meta_request_resume_token_new(meta_request->allocator);
(*out_resume_token)->type = AWS_S3_META_REQUEST_TYPE_PUT_OBJECT;
(*out_resume_token)->multipart_upload_id =
aws_string_clone_or_reuse(meta_request->allocator, auto_ranged_put->upload_id);
(*out_resume_token)->part_size = meta_request->part_size;
(*out_resume_token)->total_num_parts = auto_ranged_put->synced_data.total_num_parts;
(*out_resume_token)->num_parts_completed = auto_ranged_put->synced_data.num_parts_completed;
}
/**
* Cancels the meta request using the PAUSED flag to avoid deletion of uploaded parts.
* This allows the client to resume the upload later, setting the persistable state in the meta request options.
*/
aws_s3_meta_request_set_fail_synced(meta_request, NULL, AWS_ERROR_S3_PAUSED);
/* unlock */
aws_s3_meta_request_unlock_synced_data(meta_request);
return AWS_OP_SUCCESS;
}
|