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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IPC_PARAM_TRAITS_UTILS_H_
#define IPC_PARAM_TRAITS_UTILS_H_
#include <limits.h>
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <string_view>
#include <tuple>
#include <unordered_map>
#include <variant>
#include <vector>
#include "base/check.h"
#include "base/compiler_specific.h"
#include "base/component_export.h"
#include "base/containers/flat_map.h"
#include "base/files/file.h"
#include "base/memory/platform_shared_memory_region.h"
#include "base/memory/read_only_shared_memory_region.h"
#include "base/memory/unsafe_shared_memory_region.h"
#include "base/memory/writable_shared_memory_region.h"
#include "base/numerics/safe_conversions.h"
#include "base/pickle.h"
#include "base/types/id_type.h"
#include "base/values.h"
#include "build/build_config.h"
#include "ipc/mojo_param_traits.h"
#include "ipc/param_traits.h"
#include "mojo/public/cpp/system/message_pipe.h"
#include "third_party/abseil-cpp/absl/container/inlined_vector.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/scoped_hardware_buffer_handle.h"
#endif
#if BUILDFLAG(IS_FUCHSIA)
#include <lib/zx/channel.h>
#include <lib/zx/vmo.h>
#endif
#if BUILDFLAG(IS_WIN)
#include "base/strings/string_util_win.h"
#endif
namespace base {
class FilePath;
class Time;
class TimeDelta;
class TimeTicks;
class UnguessableToken;
struct FileDescriptor;
} // namespace base
namespace IPC {
class Message;
// A dummy struct to place first just to allow leading commas for all
// members in the macro-generated constructor initializer lists.
struct NoParams {};
// Specializations are checked by 'IPC checker' part of find-bad-constructs
// Clang plugin (see WriteParam() below for the details).
template <typename... Ts>
struct CheckedTuple {
typedef std::tuple<Ts...> Tuple;
};
// This function is checked by 'IPC checker' part of find-bad-constructs
// Clang plugin to make it's not called on the following types:
// 1. long / unsigned long (but not typedefs to)
// 2. intmax_t, uintmax_t, intptr_t, uintptr_t, wint_t,
// size_t, rsize_t, ssize_t, ptrdiff_t, dev_t, off_t, clock_t,
// time_t, suseconds_t (including typedefs to)
// 3. Any template referencing types above (e.g. std::vector<size_t>)
template <class P>
inline void WriteParam(base::Pickle* m, const P& p) {
typedef typename SimilarTypeTraits<P>::Type Type;
ParamTraits<Type>::Write(m, static_cast<const Type&>(p));
}
template <class P>
[[nodiscard]] inline bool ReadParam(const base::Pickle* m,
base::PickleIterator* iter,
P* p) {
typedef typename SimilarTypeTraits<P>::Type Type;
return ParamTraits<Type>::Read(m, iter, reinterpret_cast<Type*>(p));
}
// Primitive ParamTraits -------------------------------------------------------
template <>
struct ParamTraits<bool> {
typedef bool param_type;
static void Write(base::Pickle* m, const param_type& p) { m->WriteBool(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadBool(r);
}
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<signed char> {
typedef signed char param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<unsigned char> {
typedef unsigned char param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<unsigned short> {
typedef unsigned short param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct ParamTraits<int> {
typedef int param_type;
static void Write(base::Pickle* m, const param_type& p) { m->WriteInt(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadInt(r);
}
};
template <>
struct ParamTraits<unsigned int> {
typedef unsigned int param_type;
static void Write(base::Pickle* m, const param_type& p) {
m->WriteInt(static_cast<int>(p));
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadInt(reinterpret_cast<int*>(r));
}
};
// long isn't safe to send over IPC because it's 4 bytes on 32 bit builds but
// 8 bytes on 64 bit builds. So if a 32 bit and 64 bit process have a channel
// that would cause problem.
// We need to keep this on for a few configs:
// 1) Windows because DWORD is typedef'd to it, which is fine because we have
// very few IPCs that cross this boundary.
// 2) We also need to keep it for Linux for two reasons: int64_t is typedef'd
// to long, and gfx::PluginWindow is long and is used in one GPU IPC.
// 3) Android 64 bit and Fuchsia also have int64_t typedef'd to long.
// Since we want to support Android 32<>64 bit IPC, as long as we don't have
// these traits for 32 bit ARM then that'll catch any errors.
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || \
BUILDFLAG(IS_FUCHSIA) || \
(BUILDFLAG(IS_ANDROID) && defined(ARCH_CPU_64_BITS))
template <>
struct ParamTraits<long> {
typedef long param_type;
static void Write(base::Pickle* m, const param_type& p) { m->WriteLong(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadLong(r);
}
};
template <>
struct ParamTraits<unsigned long> {
typedef unsigned long param_type;
static void Write(base::Pickle* m, const param_type& p) { m->WriteLong(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadLong(reinterpret_cast<long*>(r));
}
};
#endif
template <>
struct ParamTraits<long long> {
typedef long long param_type;
static void Write(base::Pickle* m, const param_type& p) {
m->WriteInt64(static_cast<int64_t>(p));
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadInt64(reinterpret_cast<int64_t*>(r));
}
};
template <>
struct ParamTraits<unsigned long long> {
typedef unsigned long long param_type;
static void Write(base::Pickle* m, const param_type& p) {
m->WriteInt64(static_cast<int64_t>(p));
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadInt64(reinterpret_cast<int64_t*>(r));
}
};
// Note that the IPC layer doesn't sanitize NaNs and +/- INF values. Clients
// should be sure to check the sanity of these values after receiving them over
// IPC.
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<float> {
typedef float param_type;
static void Write(base::Pickle* m, const param_type& p) { m->WriteFloat(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadFloat(r);
}
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<double> {
typedef double param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <class P, size_t Size>
struct ParamTraits<P[Size]> {
using param_type = P[Size];
static void Write(base::Pickle* m, const param_type& p) {
for (const P& element : p) {
WriteParam(m, element);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
for (P& element : *r) {
if (!ReadParam(m, iter, &element)) {
return false;
}
}
return true;
}
};
// STL ParamTraits -------------------------------------------------------------
template <>
struct ParamTraits<std::string> {
typedef std::string param_type;
static void Write(base::Pickle* m, std::string_view p) { m->WriteString(p); }
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadString(r);
}
};
// Allow calling `WriteParam()` directly with a `std::string_view` argument
// instead of forcing callers to explicitly construct a `std::string` just to
// have the `Write()` specialization above turn it back into a
// `std::string_view`.
inline void WriteParam(base::Pickle* m, std::string_view sv) {
ParamTraits<std::string>::Write(m, sv);
}
template <>
struct ParamTraits<std::u16string> {
typedef std::u16string param_type;
static void Write(base::Pickle* m, std::u16string_view p) {
m->WriteString16(p);
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return iter->ReadString16(r);
}
};
// Allow calling `WriteParam()` directly with a `std::u16string_view` argument
// instead of forcing callers to explicitly construct a `std::u16string` just to
// have the `Write()` specialization above turn it back into a
// `std::u16string_view`.
inline void WriteParam(base::Pickle* m, std::u16string_view sv) {
ParamTraits<std::u16string>::Write(m, sv);
}
#if BUILDFLAG(IS_WIN)
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<std::wstring> {
typedef std::wstring param_type;
static void Write(base::Pickle* m, const param_type& p) {
m->WriteString16(base::AsStringPiece16(p));
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<std::vector<char>> {
typedef std::vector<char> param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle*,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<std::vector<unsigned char>> {
typedef std::vector<unsigned char> param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<std::vector<bool>> {
typedef std::vector<bool> param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <class P>
struct ParamTraits<std::vector<P>> {
typedef std::vector<P> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, base::checked_cast<int>(p.size()));
for (size_t i = 0; i < p.size(); i++) {
WriteParam(m, p[i]);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
size_t size;
// ReadLength() checks for < 0 itself.
if (!iter->ReadLength(&size)) {
return false;
}
// Resizing beforehand is not safe, see BUG 1006367 for details.
if (size > INT_MAX / sizeof(P)) {
return false;
}
r->resize(size);
for (size_t i = 0; i < size; i++) {
if (!ReadParam(m, iter, &(*r)[i])) {
return false;
}
}
return true;
}
};
template <class P>
struct ParamTraits<std::set<P>> {
typedef std::set<P> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, base::checked_cast<int>(p.size()));
typename param_type::const_iterator iter;
for (iter = p.begin(); iter != p.end(); ++iter) {
WriteParam(m, *iter);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
size_t size;
if (!iter->ReadLength(&size)) {
return false;
}
for (size_t i = 0; i < size; ++i) {
P item;
if (!ReadParam(m, iter, &item)) {
return false;
}
r->insert(item);
}
return true;
}
};
template <class K, class V, class C, class A>
struct ParamTraits<std::map<K, V, C, A>> {
typedef std::map<K, V, C, A> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, base::checked_cast<int>(p.size()));
for (const auto& iter : p) {
WriteParam(m, iter.first);
WriteParam(m, iter.second);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
int size;
if (!ReadParam(m, iter, &size) || size < 0) {
return false;
}
for (int i = 0; i < size; ++i) {
K k;
if (!ReadParam(m, iter, &k)) {
return false;
}
V& value = (*r)[k];
if (!ReadParam(m, iter, &value)) {
return false;
}
}
return true;
}
};
template <class K, class V, class C, class A>
struct ParamTraits<std::unordered_map<K, V, C, A>> {
typedef std::unordered_map<K, V, C, A> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, base::checked_cast<int>(p.size()));
for (const auto& iter : p) {
WriteParam(m, iter.first);
WriteParam(m, iter.second);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
int size;
if (!ReadParam(m, iter, &size) || size < 0) {
return false;
}
for (int i = 0; i < size; ++i) {
K k;
if (!ReadParam(m, iter, &k)) {
return false;
}
V& value = (*r)[k];
if (!ReadParam(m, iter, &value)) {
return false;
}
}
return true;
}
};
template <class A, class B>
struct ParamTraits<std::pair<A, B>> {
typedef std::pair<A, B> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, p.first);
WriteParam(m, p.second);
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return ReadParam(m, iter, &r->first) && ReadParam(m, iter, &r->second);
}
};
// Base ParamTraits ------------------------------------------------------------
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::Value::Dict> {
typedef base::Value::Dict param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#if BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
// FileDescriptors may be serialised over IPC channels on POSIX. On the
// receiving side, the FileDescriptor is a valid duplicate of the file
// descriptor which was transmitted: *it is not just a copy of the integer like
// HANDLEs on Windows*. The only exception is if the file descriptor is < 0. In
// this case, the receiving end will see a value of -1. *Zero is a valid file
// descriptor*.
//
// The received file descriptor will have the |auto_close| flag set to true. The
// code which handles the message is responsible for taking ownership of it.
// File descriptors are OS resources and must be closed when no longer needed.
//
// When sending a file descriptor, the file descriptor must be valid at the time
// of transmission. Since transmission is not synchronous, one should consider
// dup()ing any file descriptors to be transmitted and setting the |auto_close|
// flag, which causes the file descriptor to be closed after writing.
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::FileDescriptor> {
typedef base::FileDescriptor param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::ScopedFD> {
typedef base::ScopedFD param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif // BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA)
#if BUILDFLAG(IS_WIN)
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::win::ScopedHandle> {
using param_type = base::win::ScopedHandle;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif
#if BUILDFLAG(IS_FUCHSIA)
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<zx::vmo> {
typedef zx::vmo param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<zx::channel> {
typedef zx::channel param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif // BUILDFLAG(IS_FUCHSIA)
#if BUILDFLAG(IS_ANDROID)
template <>
struct COMPONENT_EXPORT(IPC)
ParamTraits<base::android::ScopedHardwareBufferHandle> {
typedef base::android::ScopedHardwareBufferHandle param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::ReadOnlySharedMemoryRegion> {
typedef base::ReadOnlySharedMemoryRegion param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::WritableSharedMemoryRegion> {
typedef base::WritableSharedMemoryRegion param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::UnsafeSharedMemoryRegion> {
typedef base::UnsafeSharedMemoryRegion param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC)
ParamTraits<base::subtle::PlatformSharedMemoryRegion> {
typedef base::subtle::PlatformSharedMemoryRegion param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC)
ParamTraits<base::subtle::PlatformSharedMemoryRegion::Mode> {
typedef base::subtle::PlatformSharedMemoryRegion::Mode param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::FilePath> {
typedef base::FilePath param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::Value::List> {
typedef base::Value::List param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::Value> {
typedef base::Value param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::File::Info> {
typedef base::File::Info param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct SimilarTypeTraits<base::File::Error> {
typedef int Type;
};
#if BUILDFLAG(IS_WIN)
template <>
struct SimilarTypeTraits<HWND> {
typedef HANDLE Type;
};
#endif // BUILDFLAG(IS_WIN)
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::Time> {
typedef base::Time param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::TimeDelta> {
typedef base::TimeDelta param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::TimeTicks> {
typedef base::TimeTicks param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<base::UnguessableToken> {
typedef base::UnguessableToken param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct ParamTraits<std::tuple<>> {
typedef std::tuple<> param_type;
static void Write(base::Pickle* m, const param_type& p) {}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return true;
}
};
template <typename T, int index, int count>
struct TupleParamTraitsHelper {
using Next = TupleParamTraitsHelper<T, index + 1, count>;
static void Write(base::Pickle* m, const T& p) {
WriteParam(m, std::get<index>(p));
Next::Write(m, p);
}
static bool Read(const base::Pickle* m, base::PickleIterator* iter, T* r) {
return ReadParam(m, iter, &std::get<index>(*r)) && Next::Read(m, iter, r);
}
};
template <typename T, int index>
struct TupleParamTraitsHelper<T, index, index> {
static void Write(base::Pickle* m, const T& p) {}
static bool Read(const base::Pickle* m, base::PickleIterator* iter, T* r) {
return true;
}
};
template <typename... Args>
struct ParamTraits<std::tuple<Args...>> {
using param_type = std::tuple<Args...>;
using Helper =
TupleParamTraitsHelper<param_type, 0, std::tuple_size<param_type>::value>;
static void Write(base::Pickle* m, const param_type& p) {
Helper::Write(m, p);
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return Helper::Read(m, iter, r);
}
};
template <class P, size_t stack_capacity>
struct ParamTraits<absl::InlinedVector<P, stack_capacity>> {
typedef absl::InlinedVector<P, stack_capacity> param_type;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, base::checked_cast<int>(p.size()));
for (size_t i = 0; i < p.size(); i++) {
WriteParam(m, p[i]);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
size_t size;
if (!iter->ReadLength(&size)) {
return false;
}
// Sanity check for the vector size.
if (size > INT_MAX / sizeof(P)) {
return false;
}
P value;
for (size_t i = 0; i < size; i++) {
if (!ReadParam(m, iter, &value)) {
return false;
}
r->push_back(value);
}
return true;
}
};
template <class Key, class Mapped, class Compare>
struct ParamTraits<base::flat_map<Key, Mapped, Compare>> {
using param_type = base::flat_map<Key, Mapped, Compare>;
static void Write(base::Pickle* m, const param_type& p) {
DCHECK(base::IsValueInRangeForNumericType<int>(p.size()));
WriteParam(m, base::checked_cast<int>(p.size()));
for (const auto& iter : p) {
WriteParam(m, iter.first);
WriteParam(m, iter.second);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
size_t size;
if (!iter->ReadLength(&size)) {
return false;
}
// Construct by creating in a vector and moving into the flat_map. Properly
// serialized flat_maps will be in-order so this will be O(n). Incorrectly
// serialized ones will still be handled properly.
std::vector<typename param_type::value_type> vect;
vect.resize(size);
for (size_t i = 0; i < size; ++i) {
if (!ReadParam(m, iter, &vect[i].first)) {
return false;
}
if (!ReadParam(m, iter, &vect[i].second)) {
return false;
}
}
*r = param_type(std::move(vect));
return true;
}
};
template <class P>
struct ParamTraits<std::unique_ptr<P>> {
typedef std::unique_ptr<P> param_type;
static void Write(base::Pickle* m, const param_type& p) {
bool valid = !!p;
WriteParam(m, valid);
if (valid) {
WriteParam(m, *p);
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
bool valid = false;
if (!ReadParam(m, iter, &valid)) {
return false;
}
if (!valid) {
r->reset();
return true;
}
param_type temp(new P());
if (!ReadParam(m, iter, temp.get())) {
return false;
}
r->swap(temp);
return true;
}
};
// absl types ParamTraits
template <class P>
struct ParamTraits<std::optional<P>> {
typedef std::optional<P> param_type;
static void Write(base::Pickle* m, const param_type& p) {
const bool is_set = static_cast<bool>(p);
WriteParam(m, is_set);
if (is_set) {
WriteParam(m, p.value());
}
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
bool is_set = false;
if (!iter->ReadBool(&is_set)) {
return false;
}
if (is_set) {
P value;
if (!ReadParam(m, iter, &value)) {
return false;
}
*r = std::move(value);
}
return true;
}
};
template <>
struct ParamTraits<std::monostate> {
typedef std::monostate param_type;
static void Write(base::Pickle* m, const param_type& p) {}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
return true;
}
};
// base/util types ParamTraits
template <typename TypeMarker, typename WrappedType, WrappedType kInvalidValue>
struct ParamTraits<base::IdType<TypeMarker, WrappedType, kInvalidValue>> {
using param_type = base::IdType<TypeMarker, WrappedType, kInvalidValue>;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, p.GetUnsafeValue());
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
WrappedType value;
if (!ReadParam(m, iter, &value)) {
return false;
}
*r = param_type::FromUnsafeValue(value);
return true;
}
};
template <typename TagType, typename UnderlyingType>
struct ParamTraits<base::StrongAlias<TagType, UnderlyingType>> {
using param_type = base::StrongAlias<TagType, UnderlyingType>;
static void Write(base::Pickle* m, const param_type& p) {
WriteParam(m, p.value());
}
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r) {
UnderlyingType value;
if (!ReadParam(m, iter, &value)) {
return false;
}
*r = param_type(value);
return true;
}
};
// IPC types ParamTraits -------------------------------------------------------
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<Message> {
static void Write(base::Pickle* m, const Message& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
Message* r);
};
// Windows ParamTraits ---------------------------------------------------------
#if BUILDFLAG(IS_WIN)
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<HANDLE> {
typedef HANDLE param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
template <>
struct COMPONENT_EXPORT(IPC) ParamTraits<MSG> {
typedef MSG param_type;
static void Write(base::Pickle* m, const param_type& p);
static bool Read(const base::Pickle* m,
base::PickleIterator* iter,
param_type* r);
};
#endif // BUILDFLAG(IS_WIN)
} // namespace IPC
#endif // IPC_PARAM_TRAITS_UTILS_H_
|