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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** @type {lazy} */
const lazy = {};
ChromeUtils.defineLazyGetter(lazy, "console", () => {
return console.createInstance({
prefix: "CaptchaDetectionParent",
maxLogLevelPref: "captchadetection.loglevel",
});
});
ChromeUtils.defineESModuleGetters(lazy, {
CaptchaDetectionPingUtils:
"resource://gre/modules/CaptchaDetectionPingUtils.sys.mjs",
CaptchaResponseObserver:
"resource://gre/modules/CaptchaResponseObserver.sys.mjs",
});
/**
* Holds the state of captchas for each top document.
* Currently, only used by google reCAPTCHA v2 and hCaptcha.
* The state is an object with the following structure:
* [key: topBrowsingContextId]: typeof ReturnType<TopDocState.#defaultValue()>
*/
class DocCaptchaState {
#state;
constructor() {
this.#state = new Map();
}
/**
* @param {number} topId - The top bc id.
* @returns {Map<any, any>} - The state of the top bc.
*/
get(topId) {
return this.#state.get(topId);
}
static #defaultValue() {
return new Map();
}
/**
* @param {number} topId - The top bc id.
* @param {(state: ReturnType<DocCaptchaState['get']>) => void} updateFunction - The function to update the state.
*/
update(topId, updateFunction) {
if (!this.#state.has(topId)) {
this.#state.set(topId, DocCaptchaState.#defaultValue());
}
updateFunction(this.#state.get(topId));
}
/**
* @param {number} topId - The top doc id.
*/
clear(topId) {
this.#state.delete(topId);
}
}
const docState = new DocCaptchaState();
/**
* This actor parent is responsible for recording the state of captchas
* or communicating with parent browsing context.
*/
class CaptchaDetectionParent extends JSWindowActorParent {
#responseObserver;
actorCreated() {
lazy.console.debug("actorCreated");
}
actorDestroy() {
lazy.console.debug("actorDestroy()");
this.#onPageHidden();
}
/** @type {CaptchaStateUpdateFunction} */
#updateGRecaptchaV2State({ changes, type }) {
lazy.console.debug("updateGRecaptchaV2State", changes);
const topId = this.#topInnerWindowId;
const isPBM = this.browsingContext.usePrivateBrowsing;
if (changes === "ImagesShown") {
docState.update(topId, state => {
state.set(type + changes, true);
});
// We don't call maybeSubmitPing here because we might end up
// submitting the ping without the "GotCheckmark" event.
// maybeSubmitPing will be called when "GotCheckmark" event is
// received, or when the daily maybeSubmitPing is called.
const shownMetric = "googleRecaptchaV2Ps" + (isPBM ? "Pbm" : "");
Glean.captchaDetection[shownMetric].add(1);
} else if (changes === "GotCheckmark") {
const autoCompleted = !docState.get(topId)?.has(type + "ImagesShown");
const resultMetric =
"googleRecaptchaV2" +
(autoCompleted ? "Ac" : "Pc") +
(isPBM ? "Pbm" : "");
Glean.captchaDetection[resultMetric].add(1);
lazy.console.debug("Incremented metric", resultMetric);
docState.clear(topId);
this.#onMetricSet();
}
}
/** @type {CaptchaStateUpdateFunction} */
#recordCFTurnstileResult({ result }) {
lazy.console.debug("recordCFTurnstileResult", result);
const isPBM = this.browsingContext.usePrivateBrowsing;
const resultMetric =
"cloudflareTurnstile" +
(result === "Succeeded" ? "Cc" : "Cf") +
(isPBM ? "Pbm" : "");
Glean.captchaDetection[resultMetric].add(1);
lazy.console.debug("Incremented metric", resultMetric);
this.#onMetricSet();
}
async #datadomeInit() {
const parent = this.browsingContext.parentWindowContext;
if (!parent) {
lazy.console.error("Datadome captcha loaded in a top-level window?");
return;
}
let actor = null;
try {
actor = parent.getActor("CaptchaDetectionCommunication");
if (!actor) {
lazy.console.error("CaptchaDetection actor not found in parent window");
return;
}
} catch (e) {
lazy.console.error("Error getting actor", e);
return;
}
await actor.sendQuery("Datadome:AddMessageListener");
}
/** @type {CaptchaStateUpdateFunction} */
#recordDatadomeEvent({ event, ...payload }) {
lazy.console.debug("recordDatadomeEvent", { event, payload });
const suffix = this.browsingContext.usePrivateBrowsing ? "Pbm" : "";
let metricName = "datadome";
if (event === "load") {
if (payload.captchaShown) {
metricName += "Ps";
} else if (payload.blocked) {
metricName += "Bl";
}
} else if (event === "passed") {
metricName += "Pc";
} else {
lazy.console.error("Unknown Datadome event", event);
return;
}
metricName += suffix;
Glean.captchaDetection[metricName].add(1);
lazy.console.debug("Incremented metric", metricName);
this.#onMetricSet(0);
}
/** @type {CaptchaStateUpdateFunction} */
#recordHCaptchaState({ changes, type }) {
lazy.console.debug("recordHCaptchaEvent", changes);
const topId = this.#topInnerWindowId;
const isPBM = this.browsingContext.usePrivateBrowsing;
if (changes === "shown") {
// I don't think HCaptcha supports auto-completion, but we act
// as if it does just in case.
docState.update(topId, state => {
state.set(type + changes, true);
});
// We don't call maybeSubmitPing here because we might end up
// submitting the ping without the "passed" event.
// maybeSubmitPing will be called when "passed" event is
// received, or when the daily maybeSubmitPing is called.
const shownMetric = "hcaptchaPs" + (isPBM ? "Pbm" : "");
Glean.captchaDetection[shownMetric].add(1);
lazy.console.debug("Incremented metric", shownMetric);
} else if (changes === "passed") {
const autoCompleted = !docState.get(topId)?.has(type + "shown");
const resultMetric =
"hcaptcha" + (autoCompleted ? "Ac" : "Pc") + (isPBM ? "Pbm" : "");
Glean.captchaDetection[resultMetric].add(1);
lazy.console.debug("Incremented metric", resultMetric);
docState.clear(topId);
this.#onMetricSet();
}
}
/** @type {CaptchaStateUpdateFunction} */
#recordArkoseLabsEvent({ event, solved, solutionsSubmitted }) {
lazy.console.debug("recordArkoseLabsEvent", {
event,
solved,
solutionsSubmitted,
});
const isPBM = this.browsingContext.usePrivateBrowsing;
const suffix = isPBM ? "Pbm" : "";
const resultMetric = "arkoselabs" + (solved ? "Pc" : "Pf") + suffix;
Glean.captchaDetection[resultMetric].add(1);
lazy.console.debug("Incremented metric", resultMetric);
const metricName = "arkoselabsSolutionsRequired" + suffix;
Glean.captchaDetection[metricName].accumulateSingleSample(
solutionsSubmitted
);
lazy.console.debug("Sampled", metricName, "with", solutionsSubmitted);
this.#onMetricSet();
}
async #arkoseLabsInit() {
let solutionsSubmitted = 0;
this.#responseObserver = new lazy.CaptchaResponseObserver(
channel =>
channel.loadInfo?.browsingContextID === this.browsingContext.id &&
channel.URI &&
(Cu.isInAutomation
? channel.URI.filePath.endsWith("arkose_labs_api.sjs")
: channel.URI.spec === "https://client-api.arkoselabs.com/fc/ca/"),
(_channel, statusCode, responseBody) => {
if (statusCode !== Cr.NS_OK) {
return;
}
let body;
try {
body = JSON.parse(responseBody);
if (!body) {
lazy.console.debug(
"ResponseObserver:ResponseBody",
"Failed to parse JSON"
);
return;
}
} catch (e) {
lazy.console.debug(
"ResponseObserver:ResponseBody",
"Failed to parse JSON",
e,
responseBody
);
return;
}
// Check for the presence of the expected keys
if (["response", "solved"].some(key => !body.hasOwnProperty(key))) {
lazy.console.debug(
"ResponseObserver:ResponseBody",
"Missing keys",
body
);
return;
}
solutionsSubmitted++;
if (typeof body.solved !== "boolean") {
return;
}
this.#recordArkoseLabsEvent({
event: "completed",
solved: body.solved,
solutionsSubmitted,
});
solutionsSubmitted = 0;
}
);
this.#responseObserver.register();
}
get #topInnerWindowId() {
return this.browsingContext.topWindowContext.innerWindowId;
}
#onPageHidden() {
docState.clear(this.#topInnerWindowId);
if (this.#responseObserver) {
this.#responseObserver.unregister();
}
}
async #onMetricSet(parentDepth = 1) {
lazy.CaptchaDetectionPingUtils.maybeSubmitPing();
if (Cu.isInAutomation) {
await this.#notifyTestMetricIsSet(parentDepth);
}
}
/**
* Notify the `parentDepth`'nth parent browsing context that the test metric is set.
*
* @param {number} parentDepth - The depth of the parent window context.
* The reason we need this param is because Datadome calls this method
* not from the captcha iframe, but its parent browsing context. So
* it overrides the depth to 0.
*/
async #notifyTestMetricIsSet(parentDepth = 1) {
if (!Cu.isInAutomation) {
throw new Error("This method should only be called in automation");
}
let parent = this.browsingContext.currentWindowContext;
for (let i = 0; i < parentDepth; i++) {
parent = parent.parentWindowContext;
if (!parent) {
lazy.console.error("No parent window context");
return;
}
}
let actor = null;
try {
actor = parent.getActor("CaptchaDetectionCommunication");
if (!actor) {
lazy.console.error("CaptchaDetection actor not found in parent window");
return;
}
} catch (e) {
lazy.console.error("Error getting actor", e);
return;
}
await actor.sendQuery("Testing:MetricIsSet");
}
recordCaptchaHandlerConstructed({ type }) {
lazy.console.debug("recordCaptchaHandlerConstructed", type);
let metric = "";
switch (type) {
case "g-recaptcha-v2":
metric = "googleRecaptchaV2Oc";
break;
case "cf-turnstile":
metric = "cloudflareTurnstileOc";
break;
case "datadome":
metric = "datadomeOc";
break;
case "hCaptcha":
metric = "hcaptchaOc";
break;
case "arkoseLabs":
metric = "arkoselabsOc";
break;
}
metric += this.browsingContext.usePrivateBrowsing ? "Pbm" : "";
Glean.captchaDetection[metric].add(1);
lazy.console.debug("Incremented metric", metric);
}
async receiveMessage(message) {
lazy.console.debug("receiveMessage", message);
switch (message.name) {
case "CaptchaState:Update":
switch (message.data.type) {
case "g-recaptcha-v2":
this.#updateGRecaptchaV2State(message.data);
break;
case "cf-turnstile":
this.#recordCFTurnstileResult(message.data);
break;
case "datadome":
this.#recordDatadomeEvent(message.data);
break;
case "hCaptcha":
this.#recordHCaptchaState(message.data);
break;
}
break;
case "CaptchaHandler:Constructed":
// message.name === "CaptchaHandler:Constructed"
// => message.data = {
// type: string,
// }
this.recordCaptchaHandlerConstructed(message.data);
break;
case "Page:Hide":
// message.name === "TabState:Closed"
// => message.data = undefined
this.#onPageHidden();
break;
case "CaptchaDetection:Init":
// message.name === "CaptchaDetection:Init"
// => message.data = {
// type: string,
// }
switch (message.data.type) {
case "datadome":
return this.#datadomeInit();
case "arkoseLabs":
return this.#arkoseLabsInit();
}
break;
default:
lazy.console.error("Unknown message", message);
}
return null;
}
}
export {
CaptchaDetectionParent,
CaptchaDetectionParent as CaptchaDetectionCommunicationParent,
};
/**
* @typedef lazy
* @type {object}
* @property {ConsoleInstance} console - console instance.
* @property {typeof import("./CaptchaDetectionPingUtils.sys.mjs").CaptchaDetectionPingUtils} CaptchaDetectionPingUtils - CaptchaDetectionPingUtils module.
* @property {typeof import("./CaptchaResponseObserver.sys.mjs").CaptchaResponseObserver} CaptchaResponseObserver - CaptchaResponseObserver module.
*/
/**
* @typedef CaptchaStateUpdateMessageData
* @type {object}
* @property {string} type - The type of the captcha.
*
* @typedef {(message: CaptchaStateUpdateMessageData) => void} CaptchaStateUpdateFunction
*/
|