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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include "aws/s3/private/s3_request_messages.h"
#include "aws/s3/private/s3_checksums.h"
#include "aws/s3/private/s3_client_impl.h"
#include "aws/s3/private/s3_meta_request_impl.h"
#include "aws/s3/private/s3_util.h"
#include <aws/cal/hash.h>
#include <aws/common/byte_buf.h>
#include <aws/common/encoding.h>
#include <aws/common/string.h>
#include <aws/http/request_response.h>
#include <aws/io/stream.h>
#include <aws/io/uri.h>
#include <aws/s3/s3.h>
#include <inttypes.h>
const struct aws_byte_cursor g_s3_create_multipart_upload_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
const size_t g_s3_create_multipart_upload_excluded_headers_count =
AWS_ARRAY_SIZE(g_s3_create_multipart_upload_excluded_headers);
const struct aws_byte_cursor g_s3_upload_part_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
};
const size_t g_s3_upload_part_excluded_headers_count = AWS_ARRAY_SIZE(g_s3_upload_part_excluded_headers);
const struct aws_byte_cursor g_s3_complete_multipart_upload_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
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"),
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-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
const size_t g_s3_complete_multipart_upload_excluded_headers_count =
AWS_ARRAY_SIZE(g_s3_complete_multipart_upload_excluded_headers);
/* The server-side encryption (SSE) is needed only when the object was created using a checksum algorithm for complete
* multipart upload. */
const struct aws_byte_cursor g_s3_complete_multipart_upload_with_checksum_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
const struct aws_byte_cursor g_s3_list_parts_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
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"),
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-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
const size_t g_s3_list_parts_excluded_headers_count = AWS_ARRAY_SIZE(g_s3_list_parts_excluded_headers);
const struct aws_byte_cursor g_s3_list_parts_with_checksum_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
const size_t g_s3_list_parts_with_checksum_excluded_headers_count =
AWS_ARRAY_SIZE(g_s3_list_parts_with_checksum_excluded_headers);
const struct aws_byte_cursor g_s3_abort_multipart_upload_excluded_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-acl"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Cache-Control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Disposition"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Encoding"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Language"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Length"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-MD5"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Content-Type"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Expires"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-full-control"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-read-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-grant-write-acp"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-storage-class"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-website-redirect-location"),
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"),
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-aws-kms-key-id"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-context"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption-bucket-key-enabled"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-tagging"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-retain-until-date"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-object-lock-legal-hold"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
};
static const struct aws_byte_cursor s_x_amz_meta_prefix = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-meta-");
const size_t g_s3_abort_multipart_upload_excluded_headers_count =
AWS_ARRAY_SIZE(g_s3_abort_multipart_upload_excluded_headers);
static int s_s3_message_util_add_range_header(
uint64_t part_range_start,
uint64_t part_range_end,
struct aws_http_message *out_message);
/* Create a new get object request from an existing get object request. Currently just adds an optional ranged header.
*/
struct aws_http_message *aws_s3_ranged_get_object_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
uint64_t range_start,
uint64_t range_end) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
struct aws_http_message *message =
aws_s3_message_util_copy_http_message_no_body_all_headers(allocator, base_message);
if (message == NULL) {
return NULL;
}
if (s_s3_message_util_add_range_header(range_start, range_end, message)) {
goto error_clean_up;
}
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
/* Creates a create-multipart-upload request from a given put objet request. */
struct aws_http_message *aws_s3_create_multipart_upload_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
enum aws_s3_checksum_algorithm algorithm) {
AWS_PRECONDITION(allocator);
/* For multipart upload, some headers should ONLY be in the initial create-multipart request.
* Headers such as:
* - SSE related headers
* - user metadata (prefixed "x-amz-meta-") headers */
struct aws_http_message *message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_create_multipart_upload_excluded_headers,
AWS_ARRAY_SIZE(g_s3_create_multipart_upload_excluded_headers),
false /*exclude_x_amz_meta*/);
if (message == NULL) {
goto error_clean_up;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, NULL, 0, true, message)) {
goto error_clean_up;
}
struct aws_http_headers *headers = aws_http_message_get_headers(message);
if (headers == NULL) {
goto error_clean_up;
}
if (aws_http_headers_erase(headers, g_content_md5_header_name)) {
if (aws_last_error_or_unknown() != AWS_ERROR_HTTP_HEADER_NOT_FOUND) {
goto error_clean_up;
}
}
if (algorithm) {
if (aws_http_headers_set(
headers,
g_create_mpu_checksum_header_name,
*aws_get_create_mpu_header_name_from_algorithm(algorithm))) {
goto error_clean_up;
}
}
aws_http_message_set_request_method(message, g_post_method);
aws_http_message_set_body_stream(message, NULL);
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
/* Create a new put object request from an existing put object request. Currently just optionally adds part information
* for a multipart upload. */
struct aws_http_message *aws_s3_upload_part_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_byte_buf *buffer,
uint32_t part_number,
const struct aws_string *upload_id,
bool should_compute_content_md5,
const struct checksum_config *checksum_config,
struct aws_byte_buf *encoded_checksum_output) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
AWS_PRECONDITION(part_number > 0);
struct aws_http_message *message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_upload_part_excluded_headers,
AWS_ARRAY_SIZE(g_s3_upload_part_excluded_headers),
true /*exclude_x_amz_meta*/);
if (message == NULL) {
goto error_clean_up;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, part_number, false, message)) {
goto error_clean_up;
}
if (buffer != NULL) {
if (aws_s3_message_util_assign_body(allocator, buffer, message, checksum_config, encoded_checksum_output) ==
NULL) {
goto error_clean_up;
}
if (should_compute_content_md5) {
if (!checksum_config || checksum_config->location == AWS_SCL_NONE) {
/* MD5 will be skiped if flexible checksum used */
if (aws_s3_message_util_add_content_md5_header(allocator, buffer, message)) {
goto error_clean_up;
}
}
}
} else {
goto error_clean_up;
}
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
struct aws_http_message *aws_s3_upload_part_copy_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_byte_buf *buffer,
uint32_t part_number,
uint64_t range_start,
uint64_t range_end,
const struct aws_string *upload_id,
bool should_compute_content_md5) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
AWS_PRECONDITION(part_number > 0);
struct aws_http_message *message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_upload_part_excluded_headers,
AWS_ARRAY_SIZE(g_s3_upload_part_excluded_headers),
true /*exclude_x_amz_meta*/);
if (message == NULL) {
goto error_clean_up;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, part_number, false, message)) {
goto error_clean_up;
}
if (buffer != NULL) {
/* part copy does not have a ChecksumAlgorithm member, it will use the same algorithm as the create
* multipart upload request specifies */
if (aws_s3_message_util_assign_body(
allocator, buffer, message, NULL /* checksum_config */, NULL /* out_checksum */) == NULL) {
goto error_clean_up;
}
if (should_compute_content_md5) {
if (aws_s3_message_util_add_content_md5_header(allocator, buffer, message)) {
goto error_clean_up;
}
}
}
char source_range[1024];
snprintf(source_range, sizeof(source_range), "bytes=%" PRIu64 "-%" PRIu64, range_start, range_end);
struct aws_http_header source_range_header = {
.name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source-range"),
.value = aws_byte_cursor_from_c_str(source_range),
};
struct aws_http_headers *headers = aws_http_message_get_headers(message);
aws_http_headers_add_header(headers, &source_range_header);
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
/* Creates a HEAD GetObject request to get the size of the specified object. */
struct aws_http_message *aws_s3_get_object_size_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_byte_cursor source_bucket,
struct aws_byte_cursor source_key) {
(void)base_message;
AWS_PRECONDITION(allocator);
struct aws_http_message *message = aws_http_message_new_request(allocator);
if (message == NULL) {
return NULL;
}
const struct aws_byte_cursor head_operation = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("HEAD");
if (aws_http_message_set_request_method(message, head_operation)) {
goto error_clean_up;
}
char destination_path[1024];
snprintf(destination_path, sizeof(destination_path), "/%.*s", (int)source_key.len, source_key.ptr);
/* TODO: url encode */
if (aws_http_message_set_request_path(message, aws_byte_cursor_from_c_str(destination_path))) {
goto error_clean_up;
}
char host_header_value[1024];
snprintf(
host_header_value,
sizeof(host_header_value),
"%.*s.s3.us-west-2.amazonaws.com",
(int)source_bucket.len,
source_bucket.ptr);
struct aws_http_header host_header = {
.name = g_host_header_name,
.value = aws_byte_cursor_from_c_str(host_header_value),
};
aws_http_message_add_header(message, host_header);
aws_http_message_set_body_stream(message, NULL);
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
/* Creates a HEAD GetObject sub-request to get the size of the source object of a Copy meta request. */
struct aws_http_message *aws_s3_get_source_object_size_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message) {
AWS_PRECONDITION(allocator);
struct aws_http_message *message = NULL;
/* find the x-amz-copy-source header */
struct aws_http_headers *headers = aws_http_message_get_headers(base_message);
struct aws_byte_cursor source_bucket;
AWS_ZERO_STRUCT(source_bucket);
const struct aws_byte_cursor copy_source_header = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source");
if (aws_http_headers_get(headers, copy_source_header, &source_bucket) != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "CopyRequest is missing the x-amz-copy-source header");
return NULL;
}
if (source_bucket.len > 1 && source_bucket.ptr[0] == '/') {
/* skip the leading slash */
aws_byte_cursor_advance(&source_bucket, 1);
}
/* as we skipped the optional leading slash, from this point source format is always {bucket}/{key}. split them.
*/
struct aws_byte_cursor source_key = source_bucket;
while (source_key.len > 0) {
if (*source_key.ptr == '/') {
source_bucket.len = source_key.ptr - source_bucket.ptr;
aws_byte_cursor_advance(&source_key, 1); /* skip the / between bucket and key */
break;
}
aws_byte_cursor_advance(&source_key, 1);
}
if (source_bucket.len == 0 || source_key.len == 0) {
AWS_LOGF_ERROR(
AWS_LS_S3_GENERAL,
"The CopyRequest x-amz-copy-source header must contain the bucket and object key separated by a slash");
goto error_cleanup;
}
message = aws_s3_get_object_size_message_new(allocator, base_message, source_bucket, source_key);
error_cleanup:
return message;
}
static const struct aws_byte_cursor s_complete_payload_begin = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<CompleteMultipartUpload xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\">\n");
static const struct aws_byte_cursor s_complete_payload_end =
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("</CompleteMultipartUpload>");
static const struct aws_byte_cursor s_part_section_string_0 = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(" <Part>\n"
" <ETag>");
static const struct aws_byte_cursor s_part_section_string_1 =
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("</ETag>\n"
" <PartNumber>");
static const struct aws_byte_cursor s_close_part_number_tag = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("</PartNumber>\n");
static const struct aws_byte_cursor s_close_part_tag = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(" </Part>\n");
static const struct aws_byte_cursor s_open_start_bracket = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(" <");
static const struct aws_byte_cursor s_open_end_bracket = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("</");
static const struct aws_byte_cursor s_close_bracket = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(">");
static const struct aws_byte_cursor s_close_bracket_new_line = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL(">\n");
/* Create a complete-multipart message, which includes an XML payload of all completed parts. */
struct aws_http_message *aws_s3_complete_multipart_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_byte_buf *body_buffer,
const struct aws_string *upload_id,
const struct aws_array_list *etags,
struct aws_byte_buf *checksums,
enum aws_s3_checksum_algorithm algorithm) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
AWS_PRECONDITION(body_buffer);
AWS_PRECONDITION(upload_id);
AWS_PRECONDITION(etags);
const struct aws_byte_cursor *mpu_algorithm_checksum_name = aws_get_complete_mpu_name_from_algorithm(algorithm);
struct aws_http_message *message = NULL;
if (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 is from client. */
message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_complete_multipart_upload_excluded_headers,
AWS_ARRAY_SIZE(g_s3_complete_multipart_upload_excluded_headers),
true /*exclude_x_amz_meta*/);
} else {
message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_complete_multipart_upload_with_checksum_excluded_headers,
AWS_ARRAY_SIZE(g_s3_complete_multipart_upload_with_checksum_excluded_headers),
true /*exclude_x_amz_meta*/);
}
struct aws_http_headers *headers = NULL;
if (message == NULL) {
goto error_clean_up;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, 0, false, message)) {
goto error_clean_up;
}
aws_http_message_set_request_method(message, g_post_method);
headers = aws_http_message_get_headers(message);
if (headers == NULL) {
goto error_clean_up;
}
/* Create XML payload with all of the etags of finished parts */
{
aws_byte_buf_reset(body_buffer, false);
if (aws_byte_buf_append_dynamic(body_buffer, &s_complete_payload_begin)) {
goto error_clean_up;
}
for (size_t etag_index = 0; etag_index < aws_array_list_length(etags); ++etag_index) {
struct aws_string *etag = NULL;
aws_array_list_get_at(etags, &etag, etag_index);
AWS_FATAL_ASSERT(etag != NULL);
if (aws_byte_buf_append_dynamic(body_buffer, &s_part_section_string_0)) {
goto error_clean_up;
}
struct aws_byte_cursor etag_byte_cursor = aws_byte_cursor_from_string(etag);
if (aws_byte_buf_append_dynamic(body_buffer, &etag_byte_cursor)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_part_section_string_1)) {
goto error_clean_up;
}
char part_number_buffer[32] = "";
int part_number = (int)(etag_index + 1);
int part_number_num_char = snprintf(part_number_buffer, sizeof(part_number_buffer), "%d", part_number);
struct aws_byte_cursor part_number_byte_cursor =
aws_byte_cursor_from_array(part_number_buffer, part_number_num_char);
if (aws_byte_buf_append_dynamic(body_buffer, &part_number_byte_cursor)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_close_part_number_tag)) {
goto error_clean_up;
}
if (mpu_algorithm_checksum_name) {
struct aws_byte_cursor checksum = aws_byte_cursor_from_buf(&checksums[etag_index]);
if (aws_byte_buf_append_dynamic(body_buffer, &s_open_start_bracket)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, mpu_algorithm_checksum_name)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_close_bracket)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &checksum)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_open_end_bracket)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, mpu_algorithm_checksum_name)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_close_bracket_new_line)) {
goto error_clean_up;
}
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_close_part_tag)) {
goto error_clean_up;
}
}
if (aws_byte_buf_append_dynamic(body_buffer, &s_complete_payload_end)) {
goto error_clean_up;
}
aws_s3_message_util_assign_body(
allocator, body_buffer, message, NULL /* checksum_config */, NULL /* out_checksum */);
}
return message;
error_clean_up:
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "Could not create complete multipart message");
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
struct aws_http_message *aws_s3_abort_multipart_upload_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
const struct aws_string *upload_id) {
struct aws_http_message *message = aws_s3_message_util_copy_http_message_no_body_filter_headers(
allocator,
base_message,
g_s3_abort_multipart_upload_excluded_headers,
AWS_ARRAY_SIZE(g_s3_abort_multipart_upload_excluded_headers),
true /*exclude_x_amz_meta*/);
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, 0, false, message)) {
goto error_clean_up;
}
aws_http_message_set_request_method(message, g_delete_method);
return message;
error_clean_up:
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "Could not create abort multipart upload message");
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
/* Assign a buffer to an HTTP message, creating a stream and setting the content-length header */
struct aws_input_stream *aws_s3_message_util_assign_body(
struct aws_allocator *allocator,
struct aws_byte_buf *byte_buf,
struct aws_http_message *out_message,
const struct checksum_config *checksum_config,
struct aws_byte_buf *out_checksum) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(out_message);
AWS_PRECONDITION(byte_buf);
struct aws_byte_cursor buffer_byte_cursor = aws_byte_cursor_from_buf(byte_buf);
struct aws_http_headers *headers = aws_http_message_get_headers(out_message);
if (headers == NULL) {
return NULL;
}
struct aws_input_stream *input_stream = aws_input_stream_new_from_cursor(allocator, &buffer_byte_cursor);
if (input_stream == NULL) {
goto error_clean_up;
}
if (checksum_config) {
if (checksum_config->location == AWS_SCL_TRAILER) {
/* aws-chunked encode the payload and add related headers */
/* set Content-Encoding header. TODO: the aws-chunked should be appended to the existing content encoding.
*/
if (aws_http_headers_set(headers, g_content_encoding_header_name, g_content_encoding_header_aws_chunked)) {
goto error_clean_up;
}
/* set x-amz-trailer header */
if (aws_http_headers_set(
headers,
g_trailer_header_name,
*aws_get_http_header_name_from_algorithm(checksum_config->checksum_algorithm))) {
goto error_clean_up;
}
/* set x-amz-decoded-content-length header */
char decoded_content_length_buffer[64] = "";
snprintf(
decoded_content_length_buffer,
sizeof(decoded_content_length_buffer),
"%" PRIu64,
(uint64_t)buffer_byte_cursor.len);
struct aws_byte_cursor decode_content_length_cursor =
aws_byte_cursor_from_array(decoded_content_length_buffer, strlen(decoded_content_length_buffer));
if (aws_http_headers_set(headers, g_decoded_content_length_header_name, decode_content_length_cursor)) {
goto error_clean_up;
}
/* set input stream to chunk stream */
struct aws_input_stream *chunk_stream =
aws_chunk_stream_new(allocator, input_stream, checksum_config->checksum_algorithm, out_checksum);
if (!chunk_stream) {
goto error_clean_up;
}
aws_input_stream_release(input_stream);
input_stream = chunk_stream;
}
}
int64_t stream_length = 0;
if (aws_input_stream_get_length(input_stream, &stream_length)) {
goto error_clean_up;
}
char content_length_buffer[64] = "";
snprintf(content_length_buffer, sizeof(content_length_buffer), "%" PRIu64, (uint64_t)stream_length);
struct aws_byte_cursor content_length_cursor =
aws_byte_cursor_from_array(content_length_buffer, strlen(content_length_buffer));
if (aws_http_headers_set(headers, g_content_length_header_name, content_length_cursor)) {
goto error_clean_up;
}
aws_http_message_set_body_stream(out_message, input_stream);
/* Let the message take the full ownership */
aws_input_stream_release(input_stream);
return input_stream;
error_clean_up:
AWS_LOGF_ERROR(AWS_LS_S3_CLIENT, "Failed to assign body for s3 request http message, from body buffer .");
aws_input_stream_release(input_stream);
return NULL;
}
bool aws_s3_message_util_check_checksum_header(struct aws_http_message *message) {
struct aws_http_headers *headers = aws_http_message_get_headers(message);
for (int algorithm = AWS_SCA_INIT; algorithm <= AWS_SCA_END; algorithm++) {
const struct aws_byte_cursor *algorithm_header_name = aws_get_http_header_name_from_algorithm(algorithm);
if (aws_http_headers_has(headers, *algorithm_header_name)) {
return true;
}
}
return false;
}
/* Add a content-md5 header. */
int aws_s3_message_util_add_content_md5_header(
struct aws_allocator *allocator,
struct aws_byte_buf *input_buf,
struct aws_http_message *out_message) {
AWS_PRECONDITION(out_message);
/* Compute MD5 */
struct aws_byte_cursor md5_input = aws_byte_cursor_from_buf(input_buf);
uint8_t md5_output[AWS_MD5_LEN];
struct aws_byte_buf md5_output_buf = aws_byte_buf_from_empty_array(md5_output, sizeof(md5_output));
if (aws_md5_compute(allocator, &md5_input, &md5_output_buf, 0)) {
return AWS_OP_ERR;
}
/* Compute Base64 encoding of MD5 */
struct aws_byte_cursor base64_input = aws_byte_cursor_from_buf(&md5_output_buf);
size_t base64_output_size = 0;
if (aws_base64_compute_encoded_len(md5_output_buf.len, &base64_output_size)) {
return AWS_OP_ERR;
}
struct aws_byte_buf base64_output_buf;
if (aws_byte_buf_init(&base64_output_buf, allocator, base64_output_size)) {
return AWS_OP_ERR;
}
if (aws_base64_encode(&base64_input, &base64_output_buf)) {
goto error_clean_up;
}
struct aws_http_headers *headers = aws_http_message_get_headers(out_message);
if (aws_http_headers_set(headers, g_content_md5_header_name, aws_byte_cursor_from_buf(&base64_output_buf))) {
goto error_clean_up;
}
aws_byte_buf_clean_up(&base64_output_buf);
return AWS_OP_SUCCESS;
error_clean_up:
aws_byte_buf_clean_up(&base64_output_buf);
return AWS_OP_ERR;
}
/* Copy an existing HTTP message's headers, method, and path. */
struct aws_http_message *aws_s3_message_util_copy_http_message_no_body_all_headers(
struct aws_allocator *allocator,
struct aws_http_message *base_message) {
return aws_s3_message_util_copy_http_message_no_body_filter_headers(allocator, base_message, NULL, 0, false);
}
struct aws_http_message *aws_s3_message_util_copy_http_message_no_body_filter_headers(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
const struct aws_byte_cursor *excluded_header_array,
size_t excluded_header_array_size,
bool exclude_x_amz_meta) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
struct aws_http_message *message = aws_http_message_new_request(allocator);
if (message == NULL) {
return NULL;
}
struct aws_byte_cursor request_method;
if (aws_http_message_get_request_method(base_message, &request_method)) {
goto error_clean_up;
}
if (aws_http_message_set_request_method(message, request_method)) {
goto error_clean_up;
}
struct aws_byte_cursor request_path;
if (aws_http_message_get_request_path(base_message, &request_path)) {
goto error_clean_up;
}
if (aws_http_message_set_request_path(message, request_path)) {
goto error_clean_up;
}
if (aws_s3_message_util_copy_headers(
base_message, message, excluded_header_array, excluded_header_array_size, exclude_x_amz_meta)) {
goto error_clean_up;
}
return message;
error_clean_up:
if (message != NULL) {
aws_http_message_release(message);
message = NULL;
}
return NULL;
}
int aws_s3_message_util_copy_headers(
struct aws_http_message *source_message,
struct aws_http_message *dest_message,
const struct aws_byte_cursor *excluded_header_array,
size_t excluded_header_array_size,
bool exclude_x_amz_meta) {
size_t num_headers = aws_http_message_get_header_count(source_message);
for (size_t header_index = 0; header_index < num_headers; ++header_index) {
struct aws_http_header header;
if (aws_http_message_get_header(source_message, &header, header_index)) {
return AWS_OP_ERR;
}
if (excluded_header_array && excluded_header_array_size > 0) {
bool exclude_header = false;
for (size_t exclude_index = 0; exclude_index < excluded_header_array_size; ++exclude_index) {
if (aws_byte_cursor_eq_ignore_case(&header.name, &excluded_header_array[exclude_index])) {
exclude_header = true;
break;
}
}
if (exclude_header) {
continue;
}
}
if (exclude_x_amz_meta) {
if (aws_byte_cursor_starts_with_ignore_case(&header.name, &s_x_amz_meta_prefix)) {
continue;
}
}
if (aws_http_message_add_header(dest_message, header)) {
return AWS_OP_ERR;
}
}
return AWS_OP_SUCCESS;
}
/* Add a range header.*/
static int s_s3_message_util_add_range_header(
uint64_t part_range_start,
uint64_t part_range_end,
struct aws_http_message *out_message) {
AWS_PRECONDITION(out_message);
/* ((2^64)-1 = 20 characters; 2*20 + length-of("bytes=-") < 128) */
char range_value_buffer[128] = "";
snprintf(
range_value_buffer, sizeof(range_value_buffer), "bytes=%" PRIu64 "-%" PRIu64, part_range_start, part_range_end);
struct aws_http_header range_header;
AWS_ZERO_STRUCT(range_header);
range_header.name = g_range_header_name;
range_header.value = aws_byte_cursor_from_c_str(range_value_buffer);
struct aws_http_headers *headers = aws_http_message_get_headers(out_message);
AWS_ASSERT(headers != NULL);
int erase_result = aws_http_headers_erase(headers, range_header.name);
AWS_ASSERT(erase_result == AWS_OP_SUCCESS || aws_last_error() == AWS_ERROR_HTTP_HEADER_NOT_FOUND);
(void)erase_result;
if (aws_http_message_add_header(out_message, range_header)) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
/* Handle setting up the multipart request path for a message. */
int aws_s3_message_util_set_multipart_request_path(
struct aws_allocator *allocator,
const struct aws_string *upload_id,
uint32_t part_number,
bool append_uploads_suffix,
struct aws_http_message *message) {
const struct aws_byte_cursor question_mark = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("?");
const struct aws_byte_cursor ampersand = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("&");
const struct aws_byte_cursor uploads_suffix = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("uploads");
const struct aws_byte_cursor part_number_arg = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("partNumber=");
const struct aws_byte_cursor upload_id_arg = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("uploadId=");
struct aws_byte_buf request_path_buf;
struct aws_byte_cursor request_path;
if (aws_http_message_get_request_path(message, &request_path)) {
return AWS_OP_ERR;
}
if (aws_byte_buf_init(&request_path_buf, allocator, request_path.len)) {
return AWS_OP_ERR;
}
if (aws_byte_buf_append_dynamic(&request_path_buf, &request_path)) {
goto error_clean_up;
}
bool has_existing_query_parameters = false;
for (size_t i = 0; i < request_path.len; ++i) {
if (request_path.ptr[i] == '?') {
has_existing_query_parameters = true;
break;
}
}
if (part_number > 0) {
if (aws_byte_buf_append_dynamic(
&request_path_buf, has_existing_query_parameters ? &ersand : &question_mark)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(&request_path_buf, &part_number_arg)) {
goto error_clean_up;
}
char part_number_buffer[32] = "";
snprintf(part_number_buffer, sizeof(part_number_buffer), "%d", part_number);
struct aws_byte_cursor part_number_cursor =
aws_byte_cursor_from_array(part_number_buffer, strlen(part_number_buffer));
if (aws_byte_buf_append_dynamic(&request_path_buf, &part_number_cursor)) {
goto error_clean_up;
}
has_existing_query_parameters = true;
}
if (upload_id != NULL) {
struct aws_byte_cursor upload_id_cursor = aws_byte_cursor_from_string(upload_id);
if (aws_byte_buf_append_dynamic(
&request_path_buf, has_existing_query_parameters ? &ersand : &question_mark)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(&request_path_buf, &upload_id_arg)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(&request_path_buf, &upload_id_cursor)) {
goto error_clean_up;
}
has_existing_query_parameters = true;
}
if (append_uploads_suffix) {
if (aws_byte_buf_append_dynamic(
&request_path_buf, has_existing_query_parameters ? &ersand : &question_mark)) {
goto error_clean_up;
}
if (aws_byte_buf_append_dynamic(&request_path_buf, &uploads_suffix)) {
goto error_clean_up;
}
has_existing_query_parameters = true;
}
struct aws_byte_cursor new_request_path = aws_byte_cursor_from_buf(&request_path_buf);
if (aws_http_message_set_request_path(message, new_request_path)) {
goto error_clean_up;
}
aws_byte_buf_clean_up(&request_path_buf);
return AWS_OP_SUCCESS;
error_clean_up:
aws_byte_buf_clean_up(&request_path_buf);
return AWS_OP_ERR;
}
|