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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/public/common/page_state/page_state_serialization.h"
#include <algorithm>
#include <limits>
#include <utility>
#include "base/containers/span.h"
#include "base/containers/to_vector.h"
#include "base/metrics/histogram_functions.h"
#include "base/pickle.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "mojo/public/cpp/base/string16_mojom_traits.h"
#include "mojo/public/cpp/base/time_mojom_traits.h"
#include "mojo/public/cpp/bindings/enum_utils.h"
#include "services/network/public/cpp/resource_request_body.h"
#include "third_party/blink/public/common/loader/http_body_element_type.h"
#include "third_party/blink/public/common/unique_name/unique_name_helper.h"
#include "third_party/blink/public/mojom/page_state/page_state.mojom.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/gfx/geometry/mojom/geometry_mojom_traits.h"
#include "url/mojom/url_gurl_mojom_traits.h"
namespace blink {
namespace {
#if BUILDFLAG(IS_ANDROID)
float g_device_scale_factor_for_testing = 0.0;
#endif
//-----------------------------------------------------------------------------
void AppendDataToRequestBody(
const scoped_refptr<network::ResourceRequestBody>& request_body,
base::span<const uint8_t> data) {
request_body->AppendCopyOfBytes(data);
}
void AppendFileRangeToRequestBody(
const scoped_refptr<network::ResourceRequestBody>& request_body,
const std::optional<std::u16string>& file_path,
int file_start,
int file_length,
base::Time file_modification_time) {
request_body->AppendFileRange(
file_path ? base::FilePath::FromUTF16Unsafe(*file_path)
: base::FilePath(),
static_cast<uint64_t>(file_start), static_cast<uint64_t>(file_length),
file_modification_time);
}
//----------------------------------------------------------------------------
void AppendReferencedFilesFromHttpBody(
const std::vector<network::DataElement>& elements,
std::vector<std::optional<std::u16string>>* referenced_files) {
for (size_t i = 0; i < elements.size(); ++i) {
if (elements[i].type() == network::DataElement::Tag::kFile) {
referenced_files->emplace_back(
elements[i].As<network::DataElementFile>().path().AsUTF16Unsafe());
}
}
}
bool AppendReferencedFilesFromDocumentState(
const std::vector<std::optional<std::u16string>>& document_state,
std::vector<std::optional<std::u16string>>* referenced_files) {
if (document_state.empty())
return true;
// This algorithm is adapted from Blink's FormController code.
// We only care about how that code worked when this code snapshot was taken
// as this code is only needed for backwards compat.
//
// For reference, see FormController::formStatesFromStateVector in
// third_party/WebKit/Source/core/html/forms/FormController.cpp.
size_t index = 0;
if (document_state.size() < 3)
return false;
index++; // Skip over magic signature.
index++; // Skip over form key.
size_t item_count;
if (!document_state[index] ||
!base::StringToSizeT(*document_state[index++], &item_count))
return false;
while (item_count--) {
if (index + 1 >= document_state.size())
return false;
index++; // Skip over name.
const std::optional<std::u16string>& type = document_state[index++];
if (index >= document_state.size())
return false;
size_t value_size;
if (!document_state[index] ||
!base::StringToSizeT(*document_state[index++], &value_size))
return false;
if (index + value_size > document_state.size() ||
index + value_size < index) // Check for overflow.
return false;
if (type && base::EqualsASCII(*type, "file")) {
if (value_size != 2)
return false;
referenced_files->emplace_back(document_state[index++]);
index++; // Skip over display name.
} else {
index += value_size;
}
}
return true;
}
bool RecursivelyAppendReferencedFiles(
const ExplodedFrameState& frame_state,
std::vector<std::optional<std::u16string>>* referenced_files) {
if (frame_state.http_body.request_body) {
AppendReferencedFilesFromHttpBody(
*frame_state.http_body.request_body->elements(), referenced_files);
}
if (!AppendReferencedFilesFromDocumentState(frame_state.document_state,
referenced_files))
return false;
for (size_t i = 0; i < frame_state.children.size(); ++i) {
if (!RecursivelyAppendReferencedFiles(frame_state.children[i],
referenced_files))
return false;
}
return true;
}
//----------------------------------------------------------------------------
struct SerializeObject {
SerializeObject() = default;
explicit SerializeObject(base::span<const uint8_t> data)
: pickle(base::Pickle::WithUnownedBuffer(data)),
iter(base::PickleIterator(pickle)) {}
std::string GetAsString() {
return std::string(pickle.data_as_char(), pickle.size());
}
base::Pickle pickle;
base::PickleIterator iter;
int version = 0;
bool parse_error = false;
};
// IMPORTANT: When making updates to the PageState serialization code, be sure
// to first read
// https://chromium.googlesource.com/chromium/src/+/main/docs/modifying_session_history_serialization.md
// Version ID of serialized format.
// 11: Min version
// 12: Adds support for contains_passwords in HTTP body
// 13: Adds support for URL (FileSystem URL)
// 14: Adds list of referenced files, version written only for first item.
// 15: Removes a bunch of values we defined but never used.
// 16: Switched from blob urls to blob uuids.
// 17: Add a target frame id number.
// 18: Add referrer policy.
// 19: Remove target frame id, which was a bad idea, and original url string,
// which is no longer used.
// 20: Add visual viewport scroll offset, the offset of the pinched zoomed
// viewport within the unzoomed main frame.
// 21: Add frame sequence number.
// 22: Add scroll restoration type.
// 23: Remove frame sequence number, there are easier ways.
// 24: Add did save scroll or scale state.
// 25: Limit the length of unique names: https://crbug.com/626202
// 26: Switch to mojo-based serialization.
// 27: Add serialized scroll anchor to FrameState.
// 28: Add initiator origin to FrameState.
// 29: Add navigation API key.
// 30: Add navigation API state.
// 31: Add protect url in navigation API bit.
// 32: Fix assign() for initiator origin.
// 33: Add initiator base url to FrameState.
// NOTE: If the version is -1, then the pickle contains only a URL string.
// See ReadPageState.
//
const int kMinVersion = 11;
// NOTE: When changing the version, please add a backwards compatibility test.
// See PageStateSerializationTest.DumpExpectedPageStateForBackwardsCompat for
// instructions on how to generate the new test case.
const int kCurrentVersion = 33;
// A bunch of convenience functions to write to/read from SerializeObjects. The
// de-serializers assume the input data will be in the correct format and fall
// back to returning safe defaults when not. These are mostly used by
// legacy(pre-mojo) serialization methods. If you're making changes to the
// PageState serialization format you almost certainly want to add/remove fields
// in page_state.mojom rather than using these methods.
void WriteData(base::span<const uint8_t> data, SerializeObject* obj) {
obj->pickle.WriteData(data);
}
std::optional<base::span<const uint8_t>> ReadData(SerializeObject* obj) {
std::optional<base::span<const uint8_t>> result = obj->iter.ReadData();
if (!result) {
obj->parse_error = true;
}
return result;
}
void WriteInteger(int data, SerializeObject* obj) {
obj->pickle.WriteInt(data);
}
int ReadInteger(SerializeObject* obj) {
int tmp;
if (obj->iter.ReadInt(&tmp))
return tmp;
obj->parse_error = true;
return 0;
}
void WriteInteger64(int64_t data, SerializeObject* obj) {
obj->pickle.WriteInt64(data);
}
int64_t ReadInteger64(SerializeObject* obj) {
int64_t tmp = 0;
if (obj->iter.ReadInt64(&tmp))
return tmp;
obj->parse_error = true;
return 0;
}
void WriteReal(double data, SerializeObject* obj) {
WriteData(base::byte_span_from_ref(base::allow_nonunique_obj, data), obj);
}
double ReadReal(SerializeObject* obj) {
std::optional<base::span<const uint8_t>> data = ReadData(obj);
if (data && data->size() == sizeof(double)) {
double value;
base::byte_span_from_ref(base::allow_nonunique_obj, value)
.copy_from(data.value().first<sizeof(double)>());
return value;
}
obj->parse_error = true;
return 0.0;
}
void WriteBoolean(bool data, SerializeObject* obj) {
obj->pickle.WriteInt(data ? 1 : 0);
}
bool ReadBoolean(SerializeObject* obj) {
bool tmp;
if (obj->iter.ReadBool(&tmp))
return tmp;
obj->parse_error = true;
return false;
}
GURL ReadGURL(SerializeObject* obj) {
std::string spec;
if (obj->iter.ReadString(&spec))
return GURL(spec);
obj->parse_error = true;
return GURL();
}
std::string ReadStdString(SerializeObject* obj) {
std::string s;
if (obj->iter.ReadString(&s))
return s;
obj->parse_error = true;
return std::string();
}
// Pickles a std::u16string as <int length>:<char*16 data> tuple>.
void WriteString(const std::u16string& str, SerializeObject* obj) {
// IMPLEMENTATION WARNING: This is different from Pickle::WriteString16, as
// that writes the size in 16-bit characters, while this writes the string as
// data, which writes the size in bytes. This is due to an unfortunate
// bifurcation where the Pickle version originally wrote a Windows
// std::wstring, which then turned into std::u16string, while this code
// originally dealt with WebString(), which then turned into std::u16string.
obj->pickle.WriteData(base::as_byte_span(str));
}
// If str is a null optional, this simply pickles a length of -1. Otherwise,
// delegates to the std::u16string overload.
void WriteString(const std::optional<std::u16string>& str,
SerializeObject* obj) {
if (!str) {
obj->pickle.WriteInt(-1);
} else {
WriteString(*str, obj);
}
}
// This reads a serialized std::optional<std::u16string> from obj. If a string
// can't be read, nullptr is returned.
const char16_t* ReadStringNoCopy(SerializeObject* obj, int* num_chars) {
int length_in_bytes;
if (!obj->iter.ReadInt(&length_in_bytes)) {
obj->parse_error = true;
return nullptr;
}
if (length_in_bytes < 0) // Not an error! See WriteString(nullopt).
return nullptr;
const char* data;
if (!obj->iter.ReadBytes(&data, static_cast<size_t>(length_in_bytes))) {
obj->parse_error = true;
return nullptr;
}
if (num_chars)
*num_chars = length_in_bytes / sizeof(char16_t);
return reinterpret_cast<const char16_t*>(data);
}
std::optional<std::u16string> ReadString(SerializeObject* obj) {
int num_chars;
const char16_t* chars = ReadStringNoCopy(obj, &num_chars);
std::optional<std::u16string> result;
if (chars)
result.emplace(chars, num_chars);
return result;
}
template <typename T>
void WriteAndValidateVectorSize(const std::vector<T>& v, SerializeObject* obj) {
CHECK_LT(v.size(), std::numeric_limits<int>::max() / sizeof(T));
WriteInteger(static_cast<int>(v.size()), obj);
}
size_t ReadAndValidateVectorSize(SerializeObject* obj, size_t element_size) {
size_t num_elements = static_cast<size_t>(ReadInteger(obj));
// Ensure that resizing a vector to size num_elements makes sense.
if (std::numeric_limits<int>::max() / element_size <= num_elements) {
obj->parse_error = true;
return 0;
}
// Ensure that it is plausible for the pickle to contain num_elements worth
// of data.
if (obj->pickle.payload_size() <= num_elements) {
obj->parse_error = true;
return 0;
}
return num_elements;
}
// Writes a Vector of strings into a SerializeObject for serialization.
void WriteStringVector(const std::vector<std::optional<std::u16string>>& data,
SerializeObject* obj) {
WriteAndValidateVectorSize(data, obj);
for (size_t i = 0; i < data.size(); ++i) {
WriteString(data[i], obj);
}
}
void ReadStringVector(SerializeObject* obj,
std::vector<std::optional<std::u16string>>* result) {
size_t num_elements =
ReadAndValidateVectorSize(obj, sizeof(std::optional<std::u16string>));
result->resize(num_elements);
for (size_t i = 0; i < num_elements; ++i)
(*result)[i] = ReadString(obj);
}
void WriteResourceRequestBody(const network::ResourceRequestBody& request_body,
SerializeObject* obj) {
WriteAndValidateVectorSize(*request_body.elements(), obj);
for (const auto& element : *request_body.elements()) {
switch (element.type()) {
case network::DataElement::Tag::kBytes: {
const auto& bytes = element.As<network::DataElementBytes>().bytes();
WriteInteger(static_cast<int>(HTTPBodyElementType::kTypeData), obj);
WriteData(bytes, obj);
break;
}
case network::DataElement::Tag::kFile: {
const auto& file = element.As<network::DataElementFile>();
WriteInteger(static_cast<int>(HTTPBodyElementType::kTypeFile), obj);
WriteString(file.path().AsUTF16Unsafe(), obj);
WriteInteger64(static_cast<int64_t>(file.offset()), obj);
WriteInteger64(static_cast<int64_t>(file.length()), obj);
WriteReal(file.expected_modification_time().InSecondsFSinceUnixEpoch(),
obj);
break;
}
default:
NOTREACHED();
}
}
WriteInteger64(request_body.identifier(), obj);
}
void ReadResourceRequestBody(
SerializeObject* obj,
const scoped_refptr<network::ResourceRequestBody>& request_body) {
int num_elements = ReadInteger(obj);
for (int i = 0; i < num_elements; ++i) {
HTTPBodyElementType type =
static_cast<HTTPBodyElementType>(ReadInteger(obj));
if (type == HTTPBodyElementType::kTypeData) {
std::optional<base::span<const uint8_t>> data = ReadData(obj);
if (data) {
AppendDataToRequestBody(request_body, *data);
}
} else if (type == HTTPBodyElementType::kTypeFile) {
std::optional<std::u16string> file_path = ReadString(obj);
int64_t file_start = ReadInteger64(obj);
int64_t file_length = ReadInteger64(obj);
double file_modification_time = ReadReal(obj);
AppendFileRangeToRequestBody(
request_body, file_path, file_start, file_length,
base::Time::FromSecondsSinceUnixEpoch(file_modification_time));
} else if (type == HTTPBodyElementType::kTypeBlob) {
// Skip obsolete blob values.
if (obj->version >= 16) {
ReadStdString(obj);
} else {
ReadGURL(obj);
}
}
}
request_body->set_identifier(ReadInteger64(obj));
}
void ReadHttpBody(SerializeObject* obj, ExplodedHttpBody* http_body) {
// An initial boolean indicates if we have an HTTP body.
if (!ReadBoolean(obj))
return;
http_body->request_body = new network::ResourceRequestBody();
ReadResourceRequestBody(obj, http_body->request_body);
if (obj->version >= 12)
http_body->contains_passwords = ReadBoolean(obj);
}
void WriteHttpBody(const ExplodedHttpBody& http_body, SerializeObject* obj) {
bool is_null = !http_body.request_body;
WriteBoolean(!is_null, obj);
if (is_null)
return;
WriteResourceRequestBody(*http_body.request_body, obj);
WriteBoolean(http_body.contains_passwords, obj);
}
// This is only used for versions < 26. Later versions use ReadMojoFrameState.
void ReadLegacyFrameState(
SerializeObject* obj,
bool is_top,
std::vector<UniqueNameHelper::Replacement>* unique_name_replacements,
ExplodedFrameState* state) {
if (obj->version < 14 && !is_top)
ReadInteger(obj); // Skip over redundant version field.
state->url_string = ReadString(obj);
if (obj->version < 19)
ReadString(obj); // Skip obsolete original url string field.
state->target = ReadString(obj);
if (obj->version < 25 && state->target) {
state->target = base::UTF8ToUTF16(UniqueNameHelper::UpdateLegacyNameFromV24(
base::UTF16ToUTF8(*state->target), unique_name_replacements));
}
if (obj->version < 15) {
ReadString(obj); // Skip obsolete parent field.
ReadString(obj); // Skip obsolete title field.
ReadString(obj); // Skip obsolete alternate title field.
ReadReal(obj); // Skip obsolete visited time field.
}
if (obj->version >= 24) {
state->did_save_scroll_or_scale_state = ReadBoolean(obj);
} else {
state->did_save_scroll_or_scale_state = true;
}
if (state->did_save_scroll_or_scale_state) {
int x = ReadInteger(obj);
int y = ReadInteger(obj);
state->scroll_offset = gfx::Point(x, y);
}
if (obj->version < 15) {
ReadBoolean(obj); // Skip obsolete target item flag.
ReadInteger(obj); // Skip obsolete visit count field.
}
state->referrer = ReadString(obj);
ReadStringVector(obj, &state->document_state);
if (state->did_save_scroll_or_scale_state)
state->page_scale_factor = ReadReal(obj);
state->item_sequence_number = ReadInteger64(obj);
state->document_sequence_number = ReadInteger64(obj);
if (obj->version >= 21 && obj->version < 23)
ReadInteger64(obj); // Skip obsolete frame sequence number.
if (obj->version >= 17 && obj->version < 19)
ReadInteger64(obj); // Skip obsolete target frame id number.
if (obj->version >= 18) {
state->referrer_policy =
mojo::ConvertIntToMojoEnum<network::mojom::ReferrerPolicy>(
ReadInteger(obj))
.value_or(network::mojom::ReferrerPolicy::kDefault);
}
if (obj->version >= 20 && state->did_save_scroll_or_scale_state) {
double x = ReadReal(obj);
double y = ReadReal(obj);
state->visual_viewport_scroll_offset = gfx::PointF(x, y);
} else {
state->visual_viewport_scroll_offset = gfx::PointF(-1, -1);
}
if (obj->version >= 22) {
state->scroll_restoration_type =
static_cast<mojom::ScrollRestorationType>(ReadInteger(obj));
}
bool has_state_object = ReadBoolean(obj);
if (has_state_object)
state->state_object = ReadString(obj);
ReadHttpBody(obj, &state->http_body);
// NOTE: It is a quirk of the format that we still have to read the
// http_content_type field when the HTTP body is null. That's why this code
// is here instead of inside ReadHttpBody.
state->http_body.http_content_type = ReadString(obj);
if (obj->version < 14)
ReadString(obj); // Skip unused referrer string.
#if BUILDFLAG(IS_ANDROID)
if (obj->version == 11) {
// Now-unused values that shipped in this version of Chrome for Android when
// it was on a private branch.
ReadReal(obj);
ReadBoolean(obj);
// In this version, page_scale_factor included device_scale_factor and
// scroll offsets were premultiplied by pageScaleFactor.
if (state->page_scale_factor) {
float device_scale_factor = g_device_scale_factor_for_testing;
if (!device_scale_factor) {
device_scale_factor = display::Screen::GetScreen()
->GetPrimaryDisplay()
.device_scale_factor();
}
state->scroll_offset =
gfx::Point(state->scroll_offset.x() / state->page_scale_factor,
state->scroll_offset.y() / state->page_scale_factor);
state->page_scale_factor /= device_scale_factor;
}
}
#endif
// Subitems
size_t num_children =
ReadAndValidateVectorSize(obj, sizeof(ExplodedFrameState));
state->children.resize(num_children);
for (size_t i = 0; i < num_children; ++i) {
ReadLegacyFrameState(obj, false, unique_name_replacements,
&state->children[i]);
}
}
// Writes the ExplodedFrameState data into the SerializeObject object for
// serialization. This uses the custom, legacy format, and its implementation
// should remain frozen in order to preserve this format.
// TODO(pnoland, dcheng) Move the legacy write methods into a test-only helper.
void WriteLegacyFrameState(const ExplodedFrameState& state,
SerializeObject* obj,
bool is_top) {
// WARNING: This data may be persisted for later use. As such, care must be
// taken when changing the serialized format. If a new field needs to be
// written, only adding at the end will make it easier to deal with loading
// older versions. Similarly, this should NOT save fields with sensitive
// data, such as password fields.
WriteString(state.url_string, obj);
WriteString(state.target, obj);
WriteBoolean(state.did_save_scroll_or_scale_state, obj);
if (state.did_save_scroll_or_scale_state) {
WriteInteger(state.scroll_offset.x(), obj);
WriteInteger(state.scroll_offset.y(), obj);
}
WriteString(state.referrer, obj);
WriteStringVector(state.document_state, obj);
if (state.did_save_scroll_or_scale_state)
WriteReal(state.page_scale_factor, obj);
WriteInteger64(state.item_sequence_number, obj);
WriteInteger64(state.document_sequence_number, obj);
WriteInteger(static_cast<int>(state.referrer_policy), obj);
if (state.did_save_scroll_or_scale_state) {
WriteReal(state.visual_viewport_scroll_offset.x(), obj);
WriteReal(state.visual_viewport_scroll_offset.y(), obj);
}
WriteInteger(static_cast<int>(state.scroll_restoration_type), obj);
bool has_state_object = state.state_object.has_value();
WriteBoolean(has_state_object, obj);
if (has_state_object)
WriteString(*state.state_object, obj);
WriteHttpBody(state.http_body, obj);
// NOTE: It is a quirk of the format that we still have to write the
// http_content_type field when the HTTP body is null. That's why this code
// is here instead of inside WriteHttpBody.
WriteString(state.http_body.http_content_type, obj);
// Subitems
const std::vector<ExplodedFrameState>& children = state.children;
WriteAndValidateVectorSize(children, obj);
for (size_t i = 0; i < children.size(); ++i)
WriteLegacyFrameState(children[i], obj, false);
}
void WriteLegacyPageState(const ExplodedPageState& state,
SerializeObject* obj) {
WriteInteger(obj->version, obj);
WriteStringVector(state.referenced_files, obj);
WriteLegacyFrameState(state.top, obj, true);
}
// Legacy read/write functions above this line. Don't change these.
//-----------------------------------------------------------------------------
// "Modern" read/write functions start here. These are probably what you want.
void WriteResourceRequestBody(const network::ResourceRequestBody& request_body,
mojom::RequestBody* mojo_body) {
for (const auto& element : *request_body.elements()) {
mojom::ElementPtr data_element;
switch (element.type()) {
case network::DataElement::Tag::kBytes: {
const auto& bytes = element.As<network::DataElementBytes>().bytes();
data_element = mojom::Element::NewBytes(base::ToVector(bytes));
break;
}
case network::DataElement::Tag::kFile: {
const auto& element_file = element.As<network::DataElementFile>();
mojom::FilePtr file = mojom::File::New(
element_file.path().AsUTF16Unsafe(), element_file.offset(),
element_file.length(), element_file.expected_modification_time());
data_element = mojom::Element::NewFile(std::move(file));
break;
}
case network::DataElement::Tag::kDataPipe:
NOTIMPLEMENTED();
continue;
case network::DataElement::Tag::kChunkedDataPipe:
NOTREACHED();
}
mojo_body->elements.push_back(std::move(data_element));
}
mojo_body->identifier = request_body.identifier();
}
void ReadResourceRequestBody(
mojom::RequestBody* mojo_body,
const scoped_refptr<network::ResourceRequestBody>& request_body) {
for (const auto& element : mojo_body->elements) {
mojom::Element::Tag tag = element->which();
switch (tag) {
case mojom::Element::Tag::kBytes:
AppendDataToRequestBody(request_body, element->get_bytes());
break;
case mojom::Element::Tag::kFile: {
mojom::File* file = element->get_file().get();
AppendFileRangeToRequestBody(request_body, file->path, file->offset,
file->length, file->modification_time);
break;
}
case mojom::Element::Tag::kBlobUuid:
// No longer supported.
break;
case mojom::Element::Tag::kDeprecatedFileSystemFile:
// No longer supported.
break;
}
}
request_body->set_identifier(mojo_body->identifier);
}
void WriteHttpBody(const ExplodedHttpBody& http_body,
mojom::HttpBody* mojo_body) {
if (http_body.request_body) {
mojo_body->request_body = mojom::RequestBody::New();
mojo_body->contains_passwords = http_body.contains_passwords;
mojo_body->http_content_type = http_body.http_content_type;
WriteResourceRequestBody(*http_body.request_body,
mojo_body->request_body.get());
}
}
void ReadHttpBody(mojom::HttpBody* mojo_body, ExplodedHttpBody* http_body) {
http_body->contains_passwords = mojo_body->contains_passwords;
http_body->http_content_type = mojo_body->http_content_type;
if (mojo_body->request_body) {
http_body->request_body =
base::MakeRefCounted<network::ResourceRequestBody>();
ReadResourceRequestBody(mojo_body->request_body.get(),
http_body->request_body);
}
}
// Do not depend on feature state when writing data to frame, so that the
// contents of persisted history do not depend on whether a feature is enabled
// or not.
void WriteMojoFrameState(const ExplodedFrameState& state,
mojom::FrameState* frame) {
frame->url_string = state.url_string;
frame->referrer = state.referrer;
if (state.initiator_origin.has_value())
frame->initiator_origin = state.initiator_origin.value().Serialize();
frame->initiator_base_url_string = state.initiator_base_url_string;
frame->target = state.target;
frame->state_object = state.state_object;
for (const auto& s : state.document_state) {
frame->document_state.push_back(s);
}
frame->scroll_restoration_type =
static_cast<mojom::ScrollRestorationType>(state.scroll_restoration_type);
if (state.did_save_scroll_or_scale_state) {
frame->view_state = mojom::ViewState::New();
frame->view_state->scroll_offset = state.scroll_offset;
frame->view_state->visual_viewport_scroll_offset =
state.visual_viewport_scroll_offset;
frame->view_state->page_scale_factor = state.page_scale_factor;
// We discard all scroll anchor data if the selector is over the length
// limit. We don't want to bloat the size of FrameState, and the other
// fields are useless without the selector.
if (state.scroll_anchor_selector && state.scroll_anchor_selector->length() <
kMaxScrollAnchorSelectorLength) {
frame->view_state->scroll_anchor_selector = state.scroll_anchor_selector;
frame->view_state->scroll_anchor_offset = state.scroll_anchor_offset;
frame->view_state->scroll_anchor_simhash = state.scroll_anchor_simhash;
}
}
frame->item_sequence_number = state.item_sequence_number;
frame->document_sequence_number = state.document_sequence_number;
frame->referrer_policy = state.referrer_policy;
frame->http_body = mojom::HttpBody::New();
WriteHttpBody(state.http_body, frame->http_body.get());
frame->navigation_api_key = state.navigation_api_key;
frame->navigation_api_id = state.navigation_api_id;
frame->navigation_api_state = state.navigation_api_state;
frame->protect_url_in_navigation_api = state.protect_url_in_navigation_api;
// Subitems
const std::vector<ExplodedFrameState>& children = state.children;
for (const auto& child : children) {
mojom::FrameStatePtr child_frame = mojom::FrameState::New();
WriteMojoFrameState(child, child_frame.get());
frame->children.push_back(std::move(child_frame));
}
}
// This is used for versions >= 26.
void ReadMojoFrameState(mojom::FrameState* frame, ExplodedFrameState* state) {
state->url_string = frame->url_string;
state->referrer = frame->referrer;
if (frame->initiator_origin.has_value()) {
state->initiator_origin =
url::Origin::Create(GURL(frame->initiator_origin.value()));
}
state->initiator_base_url_string = frame->initiator_base_url_string;
state->target = frame->target;
state->state_object = frame->state_object;
for (const auto& s : frame->document_state) {
state->document_state.push_back(s);
}
state->scroll_restoration_type =
static_cast<mojom::ScrollRestorationType>(frame->scroll_restoration_type);
if (frame->view_state) {
state->did_save_scroll_or_scale_state = true;
state->visual_viewport_scroll_offset =
frame->view_state->visual_viewport_scroll_offset;
state->scroll_offset = frame->view_state->scroll_offset;
state->page_scale_factor = frame->view_state->page_scale_factor;
}
if (frame->view_state) {
state->scroll_anchor_selector = frame->view_state->scroll_anchor_selector;
state->scroll_anchor_offset =
frame->view_state->scroll_anchor_offset.value_or(gfx::PointF());
state->scroll_anchor_simhash = frame->view_state->scroll_anchor_simhash;
}
state->item_sequence_number = frame->item_sequence_number;
state->document_sequence_number = frame->document_sequence_number;
state->referrer_policy = frame->referrer_policy;
if (frame->http_body) {
ReadHttpBody(frame->http_body.get(), &state->http_body);
} else {
state->http_body.request_body = nullptr;
}
state->navigation_api_key = frame->navigation_api_key;
state->navigation_api_id = frame->navigation_api_id;
state->navigation_api_state = frame->navigation_api_state;
state->protect_url_in_navigation_api = frame->protect_url_in_navigation_api;
state->children.resize(frame->children.size());
int i = 0;
for (const auto& child : frame->children)
ReadMojoFrameState(child.get(), &state->children[i++]);
}
void ReadMojoPageState(SerializeObject* obj, ExplodedPageState* state) {
std::optional<base::span<const uint8_t>> data = ReadData(obj);
if (obj->parse_error) {
return;
}
mojom::PageStatePtr page;
obj->parse_error =
!(mojom::PageState::Deserialize(data->data(), data->size(), &page));
if (obj->parse_error) {
return;
}
for (const auto& referenced_file : page->referenced_files) {
state->referenced_files.push_back(referenced_file);
}
ReadMojoFrameState(page->top.get(), &state->top);
state->referenced_files.erase(std::unique(state->referenced_files.begin(),
state->referenced_files.end()),
state->referenced_files.end());
}
void WriteMojoPageState(const ExplodedPageState& state, SerializeObject* obj) {
WriteInteger(obj->version, obj);
mojom::PageStatePtr page = mojom::PageState::New();
for (const auto& referenced_file : state.referenced_files) {
page->referenced_files.push_back(referenced_file.value());
}
page->top = mojom::FrameState::New();
WriteMojoFrameState(state.top, page->top.get());
std::vector<uint8_t> page_bytes = mojom::PageState::Serialize(&page);
obj->pickle.WriteData(page_bytes);
}
void ReadPageState(SerializeObject* obj, ExplodedPageState* state) {
obj->version = ReadInteger(obj);
if (obj->version == -1) {
GURL url = ReadGURL(obj);
// NOTE: GURL::possibly_invalid_spec() always returns valid UTF-8.
state->top.url_string = base::UTF8ToUTF16(url.possibly_invalid_spec());
return;
}
if (obj->version > kCurrentVersion || obj->version < kMinVersion) {
obj->parse_error = true;
return;
}
if (obj->version >= 26) {
ReadMojoPageState(obj, state);
return;
}
if (obj->version >= 14)
ReadStringVector(obj, &state->referenced_files);
std::vector<UniqueNameHelper::Replacement> unique_name_replacements;
ReadLegacyFrameState(obj, true, &unique_name_replacements, &state->top);
if (obj->version < 14)
RecursivelyAppendReferencedFiles(state->top, &state->referenced_files);
// De-dupe
state->referenced_files.erase(std::unique(state->referenced_files.begin(),
state->referenced_files.end()),
state->referenced_files.end());
}
} // namespace
ExplodedHttpBody::ExplodedHttpBody() : contains_passwords(false) {}
ExplodedHttpBody::~ExplodedHttpBody() {}
ExplodedFrameState::ExplodedFrameState() = default;
ExplodedFrameState::ExplodedFrameState(const ExplodedFrameState& other) {
assign(other);
}
ExplodedFrameState::~ExplodedFrameState() {}
void ExplodedFrameState::operator=(const ExplodedFrameState& other) {
if (&other != this)
assign(other);
}
// All members of ExplodedFrameState should be copied.
void ExplodedFrameState::assign(const ExplodedFrameState& other) {
url_string = other.url_string;
referrer = other.referrer;
initiator_origin = other.initiator_origin;
initiator_base_url_string = other.initiator_base_url_string;
target = other.target;
state_object = other.state_object;
document_state = other.document_state;
scroll_restoration_type = other.scroll_restoration_type;
did_save_scroll_or_scale_state = other.did_save_scroll_or_scale_state;
visual_viewport_scroll_offset = other.visual_viewport_scroll_offset;
scroll_offset = other.scroll_offset;
item_sequence_number = other.item_sequence_number;
document_sequence_number = other.document_sequence_number;
page_scale_factor = other.page_scale_factor;
referrer_policy = other.referrer_policy;
http_body = other.http_body;
scroll_anchor_selector = other.scroll_anchor_selector;
scroll_anchor_offset = other.scroll_anchor_offset;
scroll_anchor_simhash = other.scroll_anchor_simhash;
navigation_api_key = other.navigation_api_key;
navigation_api_id = other.navigation_api_id;
navigation_api_state = other.navigation_api_state;
protect_url_in_navigation_api = other.protect_url_in_navigation_api;
children = other.children;
}
ExplodedPageState::ExplodedPageState() {}
ExplodedPageState::~ExplodedPageState() {}
int DecodePageStateInternal(const std::string& encoded,
ExplodedPageState* exploded) {
*exploded = ExplodedPageState();
if (encoded.empty())
return true;
SerializeObject obj(base::as_byte_span(encoded));
ReadPageState(&obj, exploded);
if (obj.version < kCurrentVersion) {
// Record when a PageState with an earlier version number is decoded, to
// estimate how long older version support should be retained.
base::UmaHistogramSparse("SessionRestore.PageStateOldVersions",
obj.version);
}
return obj.parse_error ? -1 : obj.version;
}
bool DecodePageState(const std::string& encoded, ExplodedPageState* exploded) {
return DecodePageStateInternal(encoded, exploded) != -1;
}
int DecodePageStateForTesting(const std::string& encoded,
ExplodedPageState* exploded) {
return DecodePageStateInternal(encoded, exploded);
}
void EncodePageState(const ExplodedPageState& exploded, std::string* encoded) {
SerializeObject obj;
obj.version = kCurrentVersion;
WriteMojoPageState(exploded, &obj);
*encoded = obj.GetAsString();
DCHECK(!encoded->empty());
}
void LegacyEncodePageStateForTesting(const ExplodedPageState& exploded,
int version,
std::string* encoded) {
SerializeObject obj;
obj.version = version;
WriteLegacyPageState(exploded, &obj);
*encoded = obj.GetAsString();
}
#if BUILDFLAG(IS_ANDROID)
bool DecodePageStateWithDeviceScaleFactorForTesting(
const std::string& encoded,
float device_scale_factor,
ExplodedPageState* exploded) {
g_device_scale_factor_for_testing = device_scale_factor;
bool rv = DecodePageState(encoded, exploded);
g_device_scale_factor_for_testing = 0.0;
return rv;
}
scoped_refptr<network::ResourceRequestBody> DecodeResourceRequestBody(
base::span<const uint8_t> data) {
scoped_refptr<network::ResourceRequestBody> result =
new network::ResourceRequestBody();
SerializeObject obj(data);
ReadResourceRequestBody(&obj, result);
// Please see the EncodeResourceRequestBody() function below for information
// about why the contains_sensitive_info() field is being explicitly
// deserialized.
result->set_contains_sensitive_info(ReadBoolean(&obj));
return obj.parse_error ? nullptr : result;
}
std::string EncodeResourceRequestBody(
const network::ResourceRequestBody& resource_request_body) {
SerializeObject obj;
obj.version = 25;
WriteResourceRequestBody(resource_request_body, &obj);
// EncodeResourceRequestBody() is different from WriteResourceRequestBody()
// because it covers additional data (e.g.|contains_sensitive_info|) which
// is marshaled between native code and java. WriteResourceRequestBody()
// serializes data which needs to be saved out to disk.
WriteBoolean(resource_request_body.contains_sensitive_info(), &obj);
return obj.GetAsString();
}
#endif
} // namespace blink
|