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 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
|
/**
* 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_checksum_context.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/common/uri.h>
#include <aws/http/request_response.h>
#include <aws/io/async_stream.h>
#include <aws/io/stream.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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc64nvme"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc32c"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc32"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-sha1"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-sha256"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("if-none-match"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc64nvme"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc32c"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-crc32"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-sha1"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-sha256"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("if-none-match"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-mp-object-size"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-sdk-checksum-algorithm"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-mp-object-size"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
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"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("if-none-match"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
};
const struct aws_byte_cursor g_s3_create_session_allowed_headers[] = {
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-create-session-mode"),
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-server-side-encryption"),
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"),
};
const size_t g_s3_create_session_allowed_headers_count = AWS_ARRAY_SIZE(g_s3_create_session_allowed_headers);
static const struct aws_byte_cursor s_x_amz_meta_prefix = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-meta-");
static const struct aws_byte_cursor s_checksum_type_header =
AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-checksum-type");
static const struct aws_byte_cursor s_checksum_type_full_object = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("full_object");
const size_t g_s3_abort_multipart_upload_excluded_headers_count =
AWS_ARRAY_SIZE(g_s3_abort_multipart_upload_excluded_headers);
static void 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;
}
s_s3_message_util_add_range_header(range_start, range_end, message);
return message;
}
/* Creates a create-multipart-upload request from a given put object request. */
struct aws_http_message *aws_s3_create_multipart_upload_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
const struct aws_s3_meta_request_checksum_config_storage *checksum_config) {
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) {
return NULL;
}
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 (checksum_config && (checksum_config->location != AWS_SCL_NONE || checksum_config->has_full_object_checksum)) {
if (checksum_config->checksum_algorithm) {
if (aws_http_headers_set(
headers,
g_checksum_algorithm_header_name,
aws_get_checksum_algorithm_name(checksum_config->checksum_algorithm))) {
goto error_clean_up;
}
}
if (checksum_config->has_full_object_checksum) {
/* Request S3 to store the full object checksum as it's set from user. */
if (aws_http_headers_set(headers, s_checksum_type_header, s_checksum_type_full_object)) {
goto error_clean_up;
}
}
}
struct aws_byte_cursor content_length_cursor = aws_byte_cursor_from_c_str("0");
if (aws_http_headers_set(headers, g_content_length_header_name, content_length_cursor)) {
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:
aws_http_message_release(message);
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_streaming(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_input_stream *input_stream,
uint32_t part_number,
const struct aws_string *upload_id,
bool should_compute_content_md5,
struct aws_s3_upload_request_checksum_context *checksum_context) {
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) {
return NULL;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, part_number, false, message)) {
goto error_clean_up;
}
/* Acquire the extra refcount on the input stream, since the assign_body will transfer the ownership of the input
* stream to the message, while here we still want to the ownership of the input stream separately. */
aws_input_stream_acquire(input_stream);
if (aws_s3_message_util_assign_body(allocator, NULL /*body_buf*/, input_stream, message, checksum_context) ==
NULL) {
goto error_clean_up;
}
if (should_compute_content_md5) {
if (!checksum_context || checksum_context->location == AWS_SCL_NONE) {
/* MD5 is not supported for streaming. */
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "Content MD5 is not supported for file I/O streaming.");
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error_clean_up;
}
}
return message;
error_clean_up:
aws_http_message_release(message);
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,
struct aws_s3_upload_request_checksum_context *checksum_context) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
AWS_PRECONDITION(part_number > 0);
AWS_PRECONDITION(buffer);
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) {
return NULL;
}
if (aws_s3_message_util_set_multipart_request_path(allocator, upload_id, part_number, false, message)) {
goto error_clean_up;
}
if (aws_s3_message_util_assign_body(allocator, buffer, NULL /*body_stream*/, message, checksum_context) == NULL) {
goto error_clean_up;
}
if (should_compute_content_md5) {
if (!checksum_context || checksum_context->location == AWS_SCL_NONE) {
/* MD5 will be skipped if flexible checksum used */
if (aws_s3_message_util_add_content_md5_header(allocator, buffer, message)) {
goto error_clean_up;
}
}
}
return message;
error_clean_up:
aws_http_message_release(message);
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, NULL /*body_stream*/, message, NULL /*checksum_context*/) == 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;
}
static const struct aws_byte_cursor s_slash_char = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("/");
/**
* For the CopyObject operation, create the initial HEAD message to retrieve the size of the copy source.
*/
struct aws_http_message *aws_s3_get_source_object_size_message_new(
struct aws_allocator *allocator,
struct aws_http_message *base_message,
struct aws_uri *source_uri) {
struct aws_http_message *message = aws_http_message_new_request(allocator);
struct aws_byte_buf head_object_host_header;
AWS_ZERO_STRUCT(head_object_host_header);
if (message == NULL) {
goto error_cleanup;
}
if (aws_http_message_set_request_method(message, g_head_method)) {
goto error_cleanup;
}
if (source_uri != NULL && source_uri->self_size > 0) {
/* Parse source host header and path from the provided URI */
struct aws_byte_cursor host = *aws_uri_host_name(source_uri);
struct aws_byte_cursor path = *aws_uri_path(source_uri);
if (host.len == 0 || path.len == 0) {
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error_cleanup;
}
struct aws_http_header host_header = {
.name = g_host_header_name,
.value = host,
};
if (aws_http_message_add_header(message, host_header)) {
goto error_cleanup;
}
if (aws_http_message_set_request_path(message, path)) {
goto error_cleanup;
}
return message;
}
/* Parse the source host header and path from the x-amz-copy-source header and the destination URI */
AWS_PRECONDITION(allocator);
/* Find the x-amz-copy-source header, to extract source bucket/key information. */
struct aws_http_headers *headers = aws_http_message_get_headers(base_message);
if (!headers) {
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "CopyRequest is missing headers");
goto error_cleanup;
}
struct aws_byte_cursor source_header;
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_header) != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "CopyRequest is missing the x-amz-copy-source header");
goto error_cleanup;
}
struct aws_byte_cursor host;
if (aws_http_headers_get(headers, g_host_header_name, &host) != AWS_OP_SUCCESS) {
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "CopyRequest is missing the Host header");
goto error_cleanup;
}
struct aws_byte_cursor request_path = source_header;
/* Skip optional leading slash. */
if (aws_byte_cursor_starts_with(&request_path, &s_slash_char)) {
aws_byte_cursor_advance(&request_path, 1);
}
/* From this point forward, the format is {bucket}/{key} - split
components.*/
struct aws_byte_cursor source_bucket = {0};
if (aws_byte_cursor_next_split(&request_path, '/', &source_bucket)) {
aws_byte_cursor_advance(&request_path, source_bucket.len);
}
if (source_bucket.len == 0 || request_path.len == 0) {
AWS_LOGF_ERROR(
AWS_LS_S3_GENERAL,
"CopyRequest x-amz-copy-source header does not follow expected bucket/key format: " PRInSTR,
AWS_BYTE_CURSOR_PRI(source_header));
goto error_cleanup;
}
if (aws_byte_buf_init_copy_from_cursor(&head_object_host_header, allocator, source_bucket)) {
goto error_cleanup;
}
/* Reuse the domain name from the original Host header for the HEAD request.
* TODO: following code works by replacing bucket name in the host with the
* source bucket name. this only works for virtual host endpoints and has a
* slew of other issues, like not supporting source in a different region.
* This covers common case, but we need to rethink how we can support all
* cases in general.
*/
struct aws_byte_cursor domain_name;
const struct aws_byte_cursor dot = aws_byte_cursor_from_c_str(".");
if (aws_byte_cursor_find_exact(&host, &dot, &domain_name)) {
AWS_LOGF_ERROR(AWS_LS_S3_GENERAL, "CopyRequest Host header not in FQDN format");
goto error_cleanup;
}
if (aws_byte_buf_append_dynamic(&head_object_host_header, &domain_name)) {
goto error_cleanup;
}
struct aws_http_header host_header = {
.name = g_host_header_name,
.value = aws_byte_cursor_from_buf(&head_object_host_header),
};
if (aws_http_message_add_header(message, host_header)) {
goto error_cleanup;
}
if (aws_http_message_set_request_path(message, request_path)) {
goto error_cleanup;
}
aws_byte_buf_clean_up(&head_object_host_header);
return message;
error_cleanup:
aws_byte_buf_clean_up(&head_object_host_header);
aws_http_message_release(message);
return NULL;
}
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 *parts,
const struct aws_s3_meta_request_checksum_config_storage *checksum_config) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(base_message);
AWS_PRECONDITION(body_buffer);
AWS_PRECONDITION(upload_id);
AWS_PRECONDITION(parts);
struct aws_byte_cursor mpu_algorithm_checksum_name;
AWS_ZERO_STRUCT(mpu_algorithm_checksum_name);
struct aws_http_message *message = NULL;
bool set_checksums =
checksum_config && (checksum_config->location != AWS_SCL_NONE || checksum_config->has_full_object_checksum);
const struct aws_http_headers *initial_message_headers = aws_http_message_get_headers(base_message);
AWS_ASSERT(initial_message_headers);
if (set_checksums) {
mpu_algorithm_checksum_name =
aws_get_completed_part_name_from_checksum_algorithm(checksum_config->checksum_algorithm);
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*/);
} else {
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*/);
}
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;
}
if (set_checksums && checksum_config->has_full_object_checksum) {
/* Set the full object checksum header. */
AWS_ASSERT(checksum_config->checksum_algorithm != AWS_SCA_NONE);
if (aws_http_headers_set(
headers,
aws_get_http_header_name_from_checksum_algorithm(checksum_config->checksum_algorithm),
aws_byte_cursor_from_buf(&checksum_config->full_object_checksum))) {
goto error_clean_up;
}
/* Request S3 to store the full object checksum as it's set from user. */
if (aws_http_headers_set(headers, s_checksum_type_header, s_checksum_type_full_object)) {
goto error_clean_up;
}
}
struct aws_byte_cursor content_length_cursor;
if (aws_http_headers_get(initial_message_headers, g_content_length_header_name, &content_length_cursor) ==
AWS_OP_SUCCESS) {
/* Set content-length from base message as x-amz-mp-object-size. */
if (aws_http_headers_set(headers, aws_byte_cursor_from_c_str("x-amz-mp-object-size"), content_length_cursor)) {
goto error_clean_up;
}
}
/* Create XML payload with all 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 part_index = 0; part_index < aws_array_list_length(parts); ++part_index) {
struct aws_s3_mpu_part_info *part = NULL;
aws_array_list_get_at(parts, &part, part_index);
AWS_FATAL_ASSERT(part != 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(part->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)(part_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.len) {
struct aws_byte_cursor checksum =
aws_s3_upload_request_checksum_context_get_checksum_cursor(part->checksum_context);
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_LOGF_TRACE(
AWS_LS_S3_GENERAL, "Payload for Complete MPU is:\n" PRInSTR "\n", AWS_BYTE_BUF_PRI(*body_buffer));
aws_s3_message_util_assign_body(allocator, body_buffer, NULL /*body_stream*/, message, NULL);
}
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;
}
/**
* Calculate the in memory checksum based on the checksum config. Initialize and set the out_checksum to the encoded
* checksum result
*/
static int s_calculate_in_memory_checksum_helper(
struct aws_allocator *allocator,
struct aws_byte_cursor data,
struct aws_s3_upload_request_checksum_context *checksum_context) {
AWS_ASSERT(checksum_context);
int ret_code = AWS_OP_ERR;
/* Calculate checksum for output buffer only (no header/trailer) */
struct aws_byte_buf raw_checksum;
size_t digest_size = aws_get_digest_size_from_checksum_algorithm(checksum_context->algorithm);
aws_byte_buf_init(&raw_checksum, allocator, digest_size);
if (aws_checksum_compute(allocator, checksum_context->algorithm, &data, &raw_checksum)) {
aws_byte_buf_clean_up(&raw_checksum);
goto done;
}
struct aws_byte_cursor raw_checksum_cursor = aws_byte_cursor_from_buf(&raw_checksum);
if (aws_s3_upload_request_checksum_context_finalize_checksum(checksum_context, raw_checksum_cursor)) {
aws_byte_buf_clean_up(&raw_checksum);
goto done;
}
aws_byte_buf_clean_up(&raw_checksum);
ret_code = AWS_OP_SUCCESS;
done:
aws_byte_buf_clean_up(&raw_checksum);
return ret_code;
}
/**
* Calculate the in memory checksum based on the checksum config.
* If out_checksum set, initialize and set it to the encoded checksum result.
* Set the corresponding header in out_message to the encoded checksum result.
*/
static int s_calculate_and_add_checksum_to_header_helper(
struct aws_allocator *allocator,
struct aws_byte_cursor data,
struct aws_http_message *out_message,
struct aws_s3_upload_request_checksum_context *checksum_context) {
AWS_ASSERT(out_message != NULL);
int ret_code = AWS_OP_ERR;
if (s_calculate_in_memory_checksum_helper(allocator, data, checksum_context)) {
goto done;
}
/* Add the encoded checksum to header. */
const struct aws_byte_cursor header_name =
aws_get_http_header_name_from_checksum_algorithm(checksum_context->algorithm);
struct aws_byte_cursor encoded_checksum_val =
aws_s3_upload_request_checksum_context_get_checksum_cursor(checksum_context);
struct aws_http_headers *headers = aws_http_message_get_headers(out_message);
if (aws_http_headers_set(headers, header_name, encoded_checksum_val)) {
goto done;
}
ret_code = AWS_OP_SUCCESS;
done:
return ret_code;
}
/* Assign a buffer to an HTTP message:
- from a buffer to create a stream and setting the content-length and checksum headers
- from a stream directly and setting the content-length and checksum headers
*/
struct aws_input_stream *aws_s3_message_util_assign_body(
struct aws_allocator *allocator,
struct aws_byte_buf *byte_buf,
struct aws_input_stream *stream,
struct aws_http_message *out_message,
struct aws_s3_upload_request_checksum_context *checksum_context) {
AWS_PRECONDITION(allocator);
AWS_PRECONDITION(out_message);
if ((byte_buf && stream) || (!byte_buf && !stream)) {
/* Should pass one and only one of them. */
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
return NULL;
}
struct aws_http_headers *headers = aws_http_message_get_headers(out_message);
struct aws_byte_buf content_encoding_header_buf;
AWS_ZERO_STRUCT(content_encoding_header_buf);
if (headers == NULL) {
return NULL;
}
struct aws_input_stream *input_stream = stream;
if (byte_buf) {
AWS_ASSERT(stream == NULL);
struct aws_byte_cursor buffer_byte_cursor = aws_byte_cursor_from_buf(byte_buf);
input_stream = aws_input_stream_new_from_cursor(allocator, &buffer_byte_cursor);
}
if (input_stream == NULL) {
goto error_clean_up;
}
int64_t original_content_length = 0;
if (aws_input_stream_get_length(input_stream, &original_content_length)) {
goto error_clean_up;
}
if (checksum_context && checksum_context->algorithm != AWS_SCA_NONE) {
if (aws_s3_upload_request_checksum_context_should_add_trailer(checksum_context)) {
/* aws-chunked encode the payload and add related headers */
/* set Content-Encoding header. If the header already exists, append the existing value to aws-chunked
* We already made sure that the existing value is not 'aws_chunked' in 'aws_s3_client_make_meta_request'
* function.
*/
struct aws_byte_cursor content_encoding_header_cursor;
bool has_content_encoding_header =
aws_http_headers_get(headers, g_content_encoding_header_name, &content_encoding_header_cursor) ==
AWS_OP_SUCCESS;
size_t content_encoding_header_buf_size =
has_content_encoding_header
? g_content_encoding_header_aws_chunked.len + content_encoding_header_cursor.len + 1
: g_content_encoding_header_aws_chunked.len;
aws_byte_buf_init(&content_encoding_header_buf, allocator, content_encoding_header_buf_size);
if (has_content_encoding_header) {
aws_byte_buf_append_dynamic(&content_encoding_header_buf, &content_encoding_header_cursor);
aws_byte_buf_append_byte_dynamic(&content_encoding_header_buf, ',');
}
aws_byte_buf_append_dynamic(&content_encoding_header_buf, &g_content_encoding_header_aws_chunked);
if (aws_http_headers_set(
headers, g_content_encoding_header_name, aws_byte_cursor_from_buf(&content_encoding_header_buf))) {
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_checksum_algorithm(checksum_context->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)original_content_length);
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_context);
if (!chunk_stream) {
goto error_clean_up;
}
aws_input_stream_release(input_stream);
input_stream = chunk_stream;
} else if (aws_s3_upload_request_checksum_context_should_add_header(checksum_context)) {
if (byte_buf == NULL) {
/* Streaming don't support HEADER checksum */
AWS_LOGF_ERROR(
AWS_LS_S3_CLIENT,
"Streaming upload does not support checksum calculation in header, "
"use trailer checksum instead.");
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error_clean_up;
}
/* Calculate the checksum directly from memory and add it to the header. */
if (s_calculate_and_add_checksum_to_header_helper(
allocator, aws_byte_cursor_from_buf(byte_buf), out_message, checksum_context)) {
goto error_clean_up;
}
} else if (aws_s3_upload_request_checksum_context_should_calculate(checksum_context)) {
/* The checksum won't be uploaded, but we still need it for the upload review callback */
struct aws_input_stream *checksum_stream =
aws_checksum_stream_new_with_context(allocator, input_stream, checksum_context);
if (!checksum_stream) {
goto error_clean_up;
}
aws_input_stream_release(input_stream);
input_stream = checksum_stream;
}
}
/* Set content-length header */
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);
aws_byte_buf_clean_up(&content_encoding_header_buf);
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);
aws_byte_buf_clean_up(&content_encoding_header_buf);
return NULL;
}
/* 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;
aws_byte_buf_init(&base64_output_buf, allocator, base64_output_size);
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);
AWS_ASSERT(message);
struct aws_byte_cursor request_method;
if (aws_http_message_get_request_method(base_message, &request_method)) {
AWS_LOGF_ERROR(AWS_LS_S3_CLIENT, "Failed to get 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)) {
AWS_LOGF_ERROR(AWS_LS_S3_CLIENT, "Failed to get request path.");
goto error_clean_up;
}
if (aws_http_message_set_request_path(message, request_path)) {
goto error_clean_up;
}
aws_s3_message_util_copy_headers(
base_message, message, excluded_header_array, excluded_header_array_size, exclude_x_amz_meta);
return message;
error_clean_up:
aws_http_message_release(message);
return NULL;
}
void 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;
int error = aws_http_message_get_header(source_message, &header, header_index);
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;
}
}
error |= aws_http_message_add_header(dest_message, header);
(void)error;
AWS_ASSERT(!error);
}
}
/* Add a range header.*/
static void 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);
/* Only failed when the header has invalid name, which is impossible here. */
erase_result = aws_http_message_add_header(out_message, range_header);
AWS_ASSERT(erase_result == AWS_OP_SUCCESS);
(void)erase_result;
}
/* 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;
}
aws_byte_buf_init(&request_path_buf, allocator, request_path.len);
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;
}
|