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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/services/auction_worklet/private_aggregation_bindings.h"
#include <stdint.h>
#include <algorithm>
#include <cmath>
#include <iterator>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <variant>
#include <vector>
#include "base/check.h"
#include "base/containers/extend.h"
#include "base/containers/fixed_flat_map.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/string_util.h"
#include "content/services/auction_worklet/auction_v8_helper.h"
#include "content/services/auction_worklet/auction_v8_logger.h"
#include "content/services/auction_worklet/public/cpp/private_aggregation_reporting.h"
#include "content/services/auction_worklet/public/mojom/private_aggregation_request.mojom.h"
#include "content/services/auction_worklet/webidl_compat.h"
#include "third_party/abseil-cpp/absl/numeric/int128.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/features_generated.h"
#include "third_party/blink/public/mojom/aggregation_service/aggregatable_report.mojom.h"
#include "third_party/blink/public/mojom/private_aggregation/private_aggregation_host.mojom.h"
#include "v8/include/v8-context.h"
#include "v8/include/v8-exception.h"
#include "v8/include/v8-external.h"
#include "v8/include/v8-function-callback.h"
#include "v8/include/v8-function.h"
#include "v8/include/v8-isolate.h"
#include "v8/include/v8-local-handle.h"
#include "v8/include/v8-object.h"
#include "v8/include/v8-primitive.h"
namespace auction_worklet {
namespace {
// https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-pasignalvalue
//
// dictionary PASignalValue {
// required DOMString baseValue;
// double scale;
// (bigint or long) offset;
// };
struct PASignalValue {
std::string base_value;
std::optional<double> scale;
std::optional<std::variant<int32_t, v8::Local<v8::BigInt>>> offset;
};
bool ConvertToPASignalValue(AuctionV8Helper* v8_helper,
AuctionV8Helper::TimeLimitScope& time_limit_scope,
std::string error_prefix,
v8::Local<v8::Value> value,
DictConverter& report_errors_to,
PASignalValue& out) {
DictConverter converter(v8_helper, time_limit_scope, std::move(error_prefix),
value);
// Note: alphabetical to match WebIDL.
converter.GetRequired("baseValue", out.base_value);
converter.GetOptional("offset", out.offset);
converter.GetOptional("scale", out.scale);
report_errors_to.SetStatus(converter.TakeStatus());
return report_errors_to.is_success();
}
// If T is `int32_t`, tries to converts `value` to
// WebIDL type (PASignalValue or long)
// If T is v8::Local<v8::BigInt>>, tries to converts `value` to
// WebIDL type (PASignalValue or bigint)
template <typename T>
bool ConvertToPASignalValueOr(AuctionV8Helper* v8_helper,
AuctionV8Helper::TimeLimitScope& time_limit_scope,
std::string error_prefix,
std::string_view field_name,
v8::Local<v8::Value> value,
DictConverter& report_errors_to,
std::variant<PASignalValue, T>& out) {
if (value->IsObject() || value->IsNullOrUndefined()) {
out.template emplace<PASignalValue>();
return ConvertToPASignalValue(
v8_helper, time_limit_scope, std::move(error_prefix), value,
report_errors_to, std::get<PASignalValue>(out));
} else {
out.template emplace<T>();
IdlConvert::Status status = IdlConvert::Convert(
v8_helper->isolate(), error_prefix, {"field '", field_name, "'"}, value,
std::get<T>(out));
report_errors_to.SetStatus(std::move(status));
return report_errors_to.is_success();
}
}
constexpr auto kBaseValueNames =
base::MakeFixedFlatMap<std::string_view, mojom::BaseValue>({
{"winning-bid", mojom::BaseValue::kWinningBid},
{"highest-scoring-other-bid",
mojom::BaseValue::kHighestScoringOtherBid},
{"script-run-time", mojom::BaseValue::kScriptRunTime},
{"signals-fetch-time", mojom::BaseValue::kSignalsFetchTime},
{"bid-reject-reason", mojom::BaseValue::kBidRejectReason},
{"participating-ig-count",
mojom::BaseValue::kParticipatingInterestGroupCount},
{"average-code-fetch-time", mojom::BaseValue::kAverageCodeFetchTime},
{"percent-scripts-timeout", mojom::BaseValue::kPercentScriptsTimeout},
{"percent-igs-cumulative-timeout",
mojom::BaseValue::kPercentInterestGroupsCumulativeTimeout},
{"cumulative-buyer-time", mojom::BaseValue::kCumulativeBuyerTime},
{"regular-igs-count", mojom::BaseValue::kRegularInterestGroupsUsed},
{"percent-regular-ig-count-quota-used",
mojom::BaseValue::kPercentRegularInterestGroupQuotaUsed},
{"negative-igs-count", mojom::BaseValue::kNegativeInterestGroupsUsed},
{"percent-negative-ig-count-quota-used",
mojom::BaseValue::kPercentNegativeInterestGroupQuotaUsed},
{"ig-storage-used", mojom::BaseValue::kInterestGroupStorageUsed},
{"percent-ig-storage-quota-used",
mojom::BaseValue::kPercentInterestGroupStorageQuotaUsed},
});
// Converts base value string to corresponding mojom enum.
std::optional<auction_worklet::mojom::BaseValue> BaseValueStringToEnum(
const std::string& base_value,
bool additional_extensions_allowed) {
auto it = kBaseValueNames.find(base_value);
if (it == kBaseValueNames.end()) {
return std::nullopt;
}
auction_worklet::mojom::BaseValue value_enum = it->second;
if (!additional_extensions_allowed &&
RequiresAdditionalExtensions(value_enum)) {
return std::nullopt;
}
return value_enum;
}
// If returns `std::nullopt`, will output an error to `error`.
std::optional<absl::uint128> ConvertBigIntToUint128(
v8::Local<v8::BigInt> bigint,
std::string* error) {
if (bigint->WordCount() > 2) {
*error = "BigInt is too large";
return std::nullopt;
}
// Signals the size of the `words` array to `ToWordsArray()`. The number of
// elements actually used is then written here by the function.
int word_count = 2;
int sign_bit = 0;
uint64_t words[2] = {0, 0}; // Least significant to most significant.
bigint->ToWordsArray(&sign_bit, &word_count, words);
if (sign_bit) {
*error = "BigInt must be non-negative";
return std::nullopt;
}
return absl::MakeUint128(words[1], words[0]);
}
// If returns `std::nullopt`, will output an error to `error`.
// Modified from `ConvertBigIntToUint128()`.
std::optional<auction_worklet::mojom::BucketOffsetPtr>
ConvertBigIntToBucketOffset(v8::Local<v8::BigInt> bigint, std::string* error) {
if (bigint->WordCount() > 2) {
*error = "Bucket BigInt is too large";
return std::nullopt;
}
// Signals the size of the `words` array to `ToWordsArray()`. The number of
// elements actually used is then written here by the function.
int word_count = 2;
int sign_bit = 0;
uint64_t words[2] = {0, 0}; // Least significant to most significant.
bigint->ToWordsArray(&sign_bit, &word_count, words);
return auction_worklet::mojom::BucketOffset::New(
absl::MakeUint128(words[1], words[0]),
/*is_negative=*/sign_bit);
}
std::optional<auction_worklet::mojom::SignalBucketPtr> GetSignalBucket(
v8::Isolate* isolate,
const PASignalValue& input,
bool additional_extensions_allowed,
std::string* error) {
std::optional<auction_worklet::mojom::BaseValue> base_value_opt =
BaseValueStringToEnum(input.base_value, additional_extensions_allowed);
if (!base_value_opt.has_value()) {
*error = "Bucket's 'baseValue' is invalid";
return std::nullopt;
}
double scale = input.scale.value_or(1.0);
if (!input.offset.has_value()) {
return auction_worklet::mojom::SignalBucket::New(*base_value_opt, scale,
/*offset=*/nullptr);
}
// Offset must be BigInt for bucket.
const v8::Local<v8::BigInt>* maybe_bigint =
std::get_if<v8::Local<v8::BigInt>>(&input.offset.value());
if (!maybe_bigint) {
*error = "Bucket's 'offset' must be BigInt";
return std::nullopt;
}
std::optional<auction_worklet::mojom::BucketOffsetPtr> offset_opt =
ConvertBigIntToBucketOffset(*maybe_bigint, error);
if (!offset_opt.has_value()) {
return nullptr;
}
return auction_worklet::mojom::SignalBucket::New(*base_value_opt, scale,
std::move(*offset_opt));
}
std::optional<auction_worklet::mojom::SignalValuePtr> GetSignalValue(
v8::Isolate* isolate,
const PASignalValue& input,
bool additional_extensions_allowed,
std::string* error) {
std::optional<auction_worklet::mojom::BaseValue> base_value_opt =
BaseValueStringToEnum(input.base_value, additional_extensions_allowed);
if (!base_value_opt.has_value()) {
*error = "Value's 'baseValue' is invalid";
return std::nullopt;
}
double scale = input.scale.value_or(1.0);
if (!input.offset.has_value()) {
return auction_worklet::mojom::SignalValue::New(*base_value_opt, scale,
/*offset=*/0);
}
// Offset must be int32 for value.
const int32_t* maybe_long = std::get_if<int32_t>(&input.offset.value());
if (!maybe_long) {
*error = "Value's 'offset' must be a 32-bit signed integer";
return std::nullopt;
}
return auction_worklet::mojom::SignalValue::New(*base_value_opt, scale,
*maybe_long);
}
// Returns contribution's bucket from `idl_bucket`. Returns nullptr if there is
// an error.
auction_worklet::mojom::ForEventSignalBucketPtr GetBucket(
v8::Isolate* isolate,
const std::variant<PASignalValue, v8::Local<v8::BigInt>>& idl_bucket,
bool additional_extensions_allowed,
std::string* error) {
const v8::Local<v8::BigInt>* big_int =
std::get_if<v8::Local<v8::BigInt>>(&idl_bucket);
if (big_int) {
std::optional<absl::uint128> maybe_bucket =
ConvertBigIntToUint128(*big_int, error);
if (!maybe_bucket.has_value()) {
CHECK(base::IsStringUTF8(*error));
return nullptr;
}
return auction_worklet::mojom::ForEventSignalBucket::NewIdBucket(
*maybe_bucket);
} else {
std::optional<auction_worklet::mojom::SignalBucketPtr>
maybe_signal_bucket_ptr =
GetSignalBucket(isolate, std::get<PASignalValue>(idl_bucket),
additional_extensions_allowed, error);
if (!maybe_signal_bucket_ptr.has_value()) {
CHECK(base::IsStringUTF8(*error));
return nullptr;
}
return auction_worklet::mojom::ForEventSignalBucket::NewSignalBucket(
std::move(*maybe_signal_bucket_ptr));
}
}
// Returns contribution's value from `idl_value`. Returns nullptr if there is an
// error.
auction_worklet::mojom::ForEventSignalValuePtr GetValue(
v8::Isolate* isolate,
const std::variant<PASignalValue, int32_t>& idl_value,
bool additional_extensions_allowed,
std::string* error) {
const int32_t* int_value = std::get_if<int32_t>(&idl_value);
if (int_value) {
if (*int_value < 0) {
*error = "Value must be non-negative";
return nullptr;
}
return auction_worklet::mojom::ForEventSignalValue::NewIntValue(*int_value);
} else {
std::optional<auction_worklet::mojom::SignalValuePtr>
maybe_signal_value_ptr =
GetSignalValue(isolate, std::get<PASignalValue>(idl_value),
additional_extensions_allowed, error);
if (!maybe_signal_value_ptr.has_value()) {
CHECK(base::IsStringUTF8(*error));
return nullptr;
}
return auction_worklet::mojom::ForEventSignalValue::NewSignalValue(
std::move(*maybe_signal_value_ptr));
}
}
// Returns false in case of an error.
bool GetFilteringId(v8::Isolate* isolate,
std::optional<v8::Local<v8::BigInt>> idl_filtering_id,
std::optional<uint64_t>* out_filtering_id,
std::string* error) {
if (!idl_filtering_id.has_value()) {
*out_filtering_id = std::nullopt;
return true;
}
std::optional<absl::uint128> maybe_filtering_id =
ConvertBigIntToUint128(idl_filtering_id.value(), error);
if (!maybe_filtering_id.has_value()) {
return false;
}
if (maybe_filtering_id.value() > 255) {
*error = "Filtering ID is too large";
return false;
}
*out_filtering_id = absl::Uint128Low64(maybe_filtering_id.value());
return true;
}
auction_worklet::mojom::AggregatableReportForEventContributionPtr
ParseForEventContribution(
v8::Isolate* isolate,
auction_worklet::mojom::EventTypePtr event_type,
std::variant<PASignalValue, v8::Local<v8::BigInt>> idl_bucket,
std::variant<PASignalValue, int32_t> idl_value,
std::optional<v8::Local<v8::BigInt>> idl_filtering_id,
bool additional_extensions_allowed,
std::string* error) {
auction_worklet::mojom::ForEventSignalBucketPtr bucket = GetBucket(
isolate, std::move(idl_bucket), additional_extensions_allowed, error);
if (!bucket) {
return nullptr;
}
auction_worklet::mojom::ForEventSignalValuePtr value = GetValue(
isolate, std::move(idl_value), additional_extensions_allowed, error);
if (!value) {
return nullptr;
}
std::optional<uint64_t> filtering_id;
if (!GetFilteringId(isolate, std::move(idl_filtering_id), &filtering_id,
error)) {
return nullptr;
}
return auction_worklet::mojom::AggregatableReportForEventContribution::New(
std::move(bucket), std::move(value), filtering_id, std::move(event_type));
}
// In case of failure, will return `std::nullopt` and output an error to
// `error`.
std::optional<uint64_t> ParseDebugKey(v8::Local<v8::BigInt> js_debug_key,
std::string* error) {
std::optional<absl::uint128> maybe_debug_key =
ConvertBigIntToUint128(js_debug_key.As<v8::BigInt>(), error);
if (!maybe_debug_key.has_value()) {
return std::nullopt;
}
if (absl::Uint128High64(maybe_debug_key.value()) != 0) {
*error = "BigInt is too large";
return std::nullopt;
}
return absl::Uint128Low64(maybe_debug_key.value());
}
} // namespace
PrivateAggregationBindings::PrivateAggregationBindings(
AuctionV8Helper* v8_helper,
AuctionV8Logger* v8_logger,
bool private_aggregation_permissions_policy_allowed,
bool reserved_once_allowed)
: v8_helper_(v8_helper),
v8_logger_(v8_logger),
private_aggregation_permissions_policy_allowed_(
private_aggregation_permissions_policy_allowed),
enforce_permission_policy_for_on_event_(base::FeatureList::IsEnabled(
blink::features::kFledgeEnforcePermissionPolicyContributeOnEvent)),
additional_extensions_allowed_(base::FeatureList::IsEnabled(
blink::features::
kPrivateAggregationApiProtectedAudienceAdditionalExtensions)),
error_reporting_allowed_(base::FeatureList::IsEnabled(
blink::features::kPrivateAggregationApiErrorReporting)),
reserved_once_allowed_(reserved_once_allowed) {}
PrivateAggregationBindings::~PrivateAggregationBindings() = default;
void PrivateAggregationBindings::AttachToContext(
v8::Local<v8::Context> context) {
}
void PrivateAggregationBindings::Reset() {
private_aggregation_contributions_.clear();
private_aggregation_uncaught_error_contributions_.clear();
debug_mode_details_.is_enabled = false;
debug_mode_details_.debug_key = nullptr;
}
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr>
PrivateAggregationBindings::TakePrivateAggregationRequests(
bool did_uncaught_error_occur) {
std::vector<auction_worklet::mojom::PrivateAggregationRequestPtr> requests;
if (did_uncaught_error_occur) {
base::Extend(private_aggregation_contributions_,
std::move(private_aggregation_uncaught_error_contributions_));
}
private_aggregation_uncaught_error_contributions_.clear();
base::Extend(requests, std::move(private_aggregation_contributions_),
[this](auction_worklet::mojom::AggregatableReportContributionPtr&
contribution) {
return auction_worklet::mojom::PrivateAggregationRequest::New(
std::move(contribution),
debug_mode_details_.Clone());
});
private_aggregation_contributions_.clear();
return requests;
}
void PrivateAggregationBindings::ContributeToHistogram(
const v8::FunctionCallbackInfo<v8::Value>& args) {
PrivateAggregationBindings* bindings =
static_cast<PrivateAggregationBindings*>(
v8::External::Cast(*args.Data())->Value());
AuctionV8Helper* v8_helper = bindings->v8_helper_;
v8::Isolate* isolate = v8_helper->isolate();
if (!bindings->private_aggregation_permissions_policy_allowed_) {
isolate->ThrowException(
v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
"The \"private-aggregation\" Permissions Policy denied the method "
"on "
"privateAggregation")));
return;
}
AuctionV8Helper::TimeLimitScope time_limit_scope(v8_helper->GetTimeLimit());
ArgsConverter args_converter(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogram(): ", &args,
/*min_required_args=*/1);
v8::Local<v8::Value> contribution_val;
args_converter.ConvertArg(0, "contribution", contribution_val);
v8::Local<v8::BigInt> idl_bucket;
int32_t idl_value;
std::optional<v8::Local<v8::BigInt>> idl_filtering_id;
if (args_converter.is_success()) {
// https://patcg-individual-drafts.github.io/private-aggregation-api/#dictdef-pahistogramcontribution
//
// arg 0 is:
// dictionary PAHistogramContribution {
// required bigint bucket;
// required long value;
// bigint filteringId;
// };
DictConverter contribution_converter(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogram() 'contribution' argument: ",
contribution_val);
// Note: alphabetical to match WebIDL.
contribution_converter.GetRequired("bucket", idl_bucket);
contribution_converter.GetOptional("filteringId", idl_filtering_id);
contribution_converter.GetRequired("value", idl_value);
args_converter.SetStatus(contribution_converter.TakeStatus());
}
if (args_converter.is_failed()) {
args_converter.TakeStatus().PropagateErrorsToV8(v8_helper);
return;
}
std::string error;
std::optional<absl::uint128> maybe_bucket =
ConvertBigIntToUint128(idl_bucket, &error);
if (!maybe_bucket.has_value()) {
CHECK(base::IsStringUTF8(error));
isolate->ThrowException(v8::Exception::TypeError(
v8_helper->CreateUtf8String(error).ToLocalChecked()));
return;
}
absl::uint128 bucket = maybe_bucket.value();
if (idl_value < 0) {
isolate->ThrowException(v8::Exception::TypeError(
v8_helper->CreateStringFromLiteral("Value must be non-negative")));
return;
}
std::optional<uint64_t> filtering_id;
if (!GetFilteringId(isolate, std::move(idl_filtering_id), &filtering_id,
&error)) {
CHECK(base::IsStringUTF8(error));
isolate->ThrowException(v8::Exception::TypeError(
v8_helper->CreateUtf8String(error).ToLocalChecked()));
return;
}
bindings->private_aggregation_contributions_.push_back(
auction_worklet::mojom::AggregatableReportContribution::
NewHistogramContribution(
blink::mojom::AggregatableReportHistogramContribution::New(
bucket, idl_value, filtering_id)));
}
void PrivateAggregationBindings::ContributeToHistogramOnEvent(
const v8::FunctionCallbackInfo<v8::Value>& args) {
PrivateAggregationBindings* bindings =
static_cast<PrivateAggregationBindings*>(
v8::External::Cast(*args.Data())->Value());
AuctionV8Helper* v8_helper = bindings->v8_helper_;
v8::Isolate* isolate = v8_helper->isolate();
UMA_HISTOGRAM_BOOLEAN(
"Ads.InterestGroup.Auction.ContributeToHistogramOnEventPermissionPolicy",
bindings->private_aggregation_permissions_policy_allowed_);
if (!bindings->private_aggregation_permissions_policy_allowed_) {
if (bindings->enforce_permission_policy_for_on_event_) {
isolate->ThrowException(
v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
"The \"private-aggregation\" Permissions Policy denied the "
"method contributeToHistogramOnEvent on privateAggregation")));
return;
} else {
bindings->v8_logger_->LogConsoleWarning(
"privateAggregation.contributeToHistogramOnEvent called without "
"appropriate \"private-aggregation\" Permissions Policy approval; "
"accepting for backwards compatibility but this will be shortly "
"throwing an exception");
}
}
AuctionV8Helper::TimeLimitScope time_limit_scope(v8_helper->GetTimeLimit());
ArgsConverter args_converter(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogramOnEvent(): ", &args,
/*min_required_args=*/2);
std::string event_type_str;
args_converter.ConvertArg(0, "event", event_type_str);
// Arg 1 is:
// https://wicg.github.io/turtledove/#dictdef-paextendedhistogramcontribution
//
// dictionary PAExtendedHistogramContribution {
// required (PASignalValue or bigint) bucket;
// required (PASignalValue or long) value;
// bigint filteringId;
// };
std::variant<PASignalValue, v8::Local<v8::BigInt>> bucket;
std::variant<PASignalValue, int32_t> value;
std::optional<v8::Local<v8::BigInt>> filtering_id;
if (args_converter.is_success()) {
DictConverter contribution_converter(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogramOnEvent() 'contribution' "
"argument: ",
args[1]);
v8::Local<v8::Value> bucket_val, value_val;
// Note: alphabetical to match WebIDL.
contribution_converter.GetRequired("bucket", bucket_val) &&
ConvertToPASignalValueOr<v8::Local<v8::BigInt>>(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogramOnEvent() 'contribution' "
"argument: ",
"bucket", bucket_val, contribution_converter, bucket);
contribution_converter.GetOptional("filteringId", filtering_id);
contribution_converter.GetRequired("value", value_val) &&
ConvertToPASignalValueOr<int32_t>(
v8_helper, time_limit_scope,
"privateAggregation.contributeToHistogramOnEvent() 'contribution' "
"argument: ",
"value", value_val, contribution_converter, value);
args_converter.SetStatus(contribution_converter.TakeStatus());
}
if (args_converter.is_failed()) {
args_converter.TakeStatus().PropagateErrorsToV8(v8_helper);
return;
}
auction_worklet::mojom::EventTypePtr event_type =
ParsePrivateAggregationEventType(event_type_str,
bindings->additional_extensions_allowed_,
bindings->error_reporting_allowed_);
if (!event_type) {
// Don't throw an error if an invalid reserved event type is provided, to
// provide forward compatibility with new reserved event types added
// later.
// TODO(crbug.com/408225510): Consider still performing the IDL validation
// for the `contribution` even though we're ignoring the call (to match the
// spec).
return;
}
if (!bindings->reserved_once_allowed_ &&
event_type->is_reserved_non_error() &&
event_type->get_reserved_non_error() ==
auction_worklet::mojom::ReservedNonErrorEventType::kReservedOnce) {
// Do throw one if people use reserved.once when not permitted.
isolate->ThrowException(
v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
"privateAggregation.contributeToHistogramOnEvent() reserved.once "
"is not available in reporting methods")));
return;
}
bool is_conditional_on_uncaught_error =
event_type->is_reserved_error() &&
event_type->get_reserved_error() ==
auction_worklet::mojom::ReservedErrorEventType::kUncaughtError;
std::vector<auction_worklet::mojom::AggregatableReportContributionPtr>&
vector_to_append_to =
is_conditional_on_uncaught_error
? bindings->private_aggregation_uncaught_error_contributions_
: bindings->private_aggregation_contributions_;
std::string error;
auction_worklet::mojom::AggregatableReportForEventContributionPtr
contribution = ParseForEventContribution(
isolate, std::move(event_type), std::move(bucket), std::move(value),
std::move(filtering_id), bindings->additional_extensions_allowed_,
&error);
if (contribution.is_null()) {
CHECK(base::IsStringUTF8(error));
isolate->ThrowException(v8::Exception::TypeError(
v8_helper->CreateUtf8String(error).ToLocalChecked()));
return;
}
vector_to_append_to.push_back(
auction_worklet::mojom::AggregatableReportContribution::
NewForEventContribution(std::move(contribution)));
}
void PrivateAggregationBindings::EnableDebugMode(
const v8::FunctionCallbackInfo<v8::Value>& args) {
PrivateAggregationBindings* bindings =
static_cast<PrivateAggregationBindings*>(
v8::External::Cast(*args.Data())->Value());
AuctionV8Helper* v8_helper = bindings->v8_helper_;
v8::Isolate* isolate = v8_helper->isolate();
if (!bindings->private_aggregation_permissions_policy_allowed_) {
isolate->ThrowException(
v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
"The \"private-aggregation\" Permissions Policy denied the method "
"on privateAggregation")));
return;
}
// Do IDL typechecking first.
v8::Local<v8::BigInt> js_debug_key;
if (args.Length() >= 1) {
AuctionV8Helper::TimeLimitScope time_limit_scope(v8_helper->GetTimeLimit());
DictConverter debug_options_converter(
v8_helper, time_limit_scope,
"privateAggregation.enableDebugMode() 'options' argument: ", args[0]);
if (!debug_options_converter.GetRequired("debugKey", js_debug_key)) {
debug_options_converter.TakeStatus().PropagateErrorsToV8(v8_helper);
return;
}
}
// Now do the rest of the checks.
if (bindings->debug_mode_details_.is_enabled) {
isolate->ThrowException(
v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
"enableDebugMode may be called at most once")));
return;
}
if (!js_debug_key.IsEmpty()) {
std::string error;
std::optional<uint64_t> maybe_debug_key =
ParseDebugKey(js_debug_key, &error);
if (!maybe_debug_key.has_value()) {
CHECK(base::IsStringUTF8(error));
isolate->ThrowException(v8::Exception::TypeError(
v8_helper->CreateUtf8String(error).ToLocalChecked()));
return;
}
bindings->debug_mode_details_.debug_key =
blink::mojom::DebugKey::New(maybe_debug_key.value());
}
bindings->debug_mode_details_.is_enabled = true;
}
} // namespace auction_worklet
|