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

content / services / auction_worklet / register_ad_beacon_bindings.cc [blame]

// 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/register_ad_beacon_bindings.h"

#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "base/format_macros.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/strings/strcat.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/webidl_compat.h"
#include "third_party/blink/public/common/fenced_frame/fenced_frame_utils.h"
#include "url/gurl.h"
#include "url/url_constants.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"

namespace auction_worklet {

RegisterAdBeaconBindings::RegisterAdBeaconBindings(AuctionV8Helper* v8_helper,
                                                   AuctionV8Logger* v8_logger)
    : v8_helper_(v8_helper), v8_logger_(v8_logger) {}

RegisterAdBeaconBindings::~RegisterAdBeaconBindings() = default;

void RegisterAdBeaconBindings::AttachToContext(v8::Local<v8::Context> context) {
  v8::Local<v8::External> v8_this =
      v8::External::New(v8_helper_->isolate(), this);
  v8::Local<v8::Function> v8_function =
      v8::Function::New(context, &RegisterAdBeaconBindings::RegisterAdBeacon,
                        v8_this)
          .ToLocalChecked();
  context->Global()
      ->Set(context, v8_helper_->CreateStringFromLiteral("registerAdBeacon"),
            v8_function)
      .Check();
}

void RegisterAdBeaconBindings::Reset() {
  ad_beacon_map_.clear();
  first_call_ = true;
}

void RegisterAdBeaconBindings::RegisterAdBeacon(
    const v8::FunctionCallbackInfo<v8::Value>& args) {
  RegisterAdBeaconBindings* bindings = static_cast<RegisterAdBeaconBindings*>(
      v8::External::Cast(*args.Data())->Value());
  v8::Isolate* isolate = args.GetIsolate();
  AuctionV8Helper* v8_helper = bindings->v8_helper_;

  if (!bindings->first_call_) {
    isolate->ThrowException(
        v8::Exception::TypeError(v8_helper->CreateStringFromLiteral(
            "registerAdBeacon may be called at most once")));
    return;
  }
  bindings->ad_beacon_map_.clear();

  AuctionV8Helper::TimeLimitScope time_limit_scope(v8_helper->GetTimeLimit());
  ArgsConverter args_converter(v8_helper, time_limit_scope,
                               "registerAdBeacon(): ", &args,
                               /*min_required_args=*/1);
  std::vector<std::pair<std::string, std::string>> idl_map;
  if (args_converter.is_success()) {
    args_converter.SetStatus(ConvertRecord(
        v8_helper, time_limit_scope, "registerAdBeacon(): ", {"argument 'map'"},
        args[0], idl_map));
  }

  if (args_converter.is_failed()) {
    args_converter.TakeStatus().PropagateErrorsToV8(v8_helper);
    return;
  }

  std::vector<std::pair<std::string, GURL>> ad_beacon_list;
  for (const auto& [key_string, url_string] : idl_map) {
    if (key_string.starts_with(blink::kFencedFrameReservedPAEventPrefix) &&
        std::find(std::begin(blink::kFencedFrameAutomaticBeaconTypes),
                  std::end(blink::kFencedFrameAutomaticBeaconTypes),
                  key_string) ==
            std::end(blink::kFencedFrameAutomaticBeaconTypes)) {
      std::string error_msg =
          base::StrCat({"registerAdBeacon(): Invalid reserved type '",
                        key_string, "' cannot be used"});
      isolate->ThrowException(v8::Exception::TypeError(
          v8_helper->CreateUtf8String(error_msg).ToLocalChecked()));
      return;
    }

    GURL url(url_string);
    if (!url.is_valid() || !url.SchemeIs(url::kHttpsScheme)) {
      std::string error_msg =
          base::StrCat({"registerAdBeacon(): invalid reporting url for key '",
                        key_string, "': '", url_string, "'"});
      // Since the map key is a DOMString and not USVString, the above may
      // not be valid UTF8, so we may need to simplify the error message.
      if (!base::IsStringUTF8(error_msg)) {
        error_msg = "registerAdBeacon(): invalid reporting url";
      }
      isolate->ThrowException(v8::Exception::TypeError(
          v8_helper->CreateUtf8String(error_msg).ToLocalChecked()));
      return;
    }

    // There's no spec for max URL length, so don't throw in that case. Instead,
    // ignore the report URL empty and display a warning.
    if (url.spec().size() > url::kMaxURLChars) {
      // Don't print out full URL in this case, since it will fill the entire
      // console.
      bindings->v8_logger_->LogConsoleWarning(
          base::StringPrintf("registerAdBeacon(): passed URL of length %" PRIuS
                             " but accepts URLs of at most length %" PRIuS ".",
                             url.spec().size(), url::kMaxURLChars));
      continue;
    }

    ad_beacon_list.emplace_back(std::move(key_string), std::move(url));
  }
  base::flat_map<std::string, GURL> ad_beacon_map(std::move(ad_beacon_list));

  bindings->first_call_ = false;
  bindings->ad_beacon_map_ = std::move(ad_beacon_map);
}

}  // namespace auction_worklet