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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 http://mozilla.org/MPL/2.0/. */
#include "mozilla/dom/WebAuthnUtil.h"
#include "hasht.h"
#include "mozilla/Base64.h"
#include "mozilla/BasePrincipal.h"
#include "mozilla/StaticPrefs_security.h"
#include "mozilla/dom/WebAuthenticationBinding.h"
#include "mozilla/dom/WindowGlobalParent.h"
#include "mozpkix/pkixutil.h"
#include "nsComponentManagerUtils.h"
#include "nsContentUtils.h"
#include "nsHTMLDocument.h"
#include "nsICryptoHash.h"
#include "nsIEffectiveTLDService.h"
#include "nsIURIMutator.h"
#include "nsNetUtil.h"
namespace mozilla::dom {
bool IsValidAppId(const nsCOMPtr<nsIPrincipal>& aPrincipal,
const nsCString& aAppId) {
// An AppID is a substitute for the RP ID that allows the caller to assert
// credentials that were created using the legacy U2F protocol. While an RP ID
// is the caller origin's effective domain, or a registrable suffix thereof,
// an AppID is a URL (with a scheme and a possibly non-empty path) that is
// same-site with the caller's origin.
//
// The U2F protocol nominally uses Algorithm 3.1.2 of [1] to validate AppIDs.
// However, the WebAuthn spec [2] notes that it is not necessary to "implement
// steps four and onward of" Algorithm 3.1.2. Instead, in step three, "the
// comparison on the host is relaxed to accept hosts on the same site." Step
// two is best seen as providing a default value for the AppId when one is not
// provided. That leaves step 1 and the same-site check, which is what we
// implement here.
//
// [1]
// https://fidoalliance.org/specs/fido-v2.0-id-20180227/fido-appid-and-facets-v2.0-id-20180227.html#determining-if-a-caller-s-facetid-is-authorized-for-an-appid
// [2] https://w3c.github.io/webauthn/#sctn-appid-extension
auto* principal = BasePrincipal::Cast(aPrincipal);
nsCOMPtr<nsIURI> callerUri;
nsresult rv = principal->GetURI(getter_AddRefs(callerUri));
if (NS_FAILED(rv)) {
return false;
}
nsCOMPtr<nsIURI> appIdUri;
rv = NS_NewURI(getter_AddRefs(appIdUri), aAppId);
if (NS_FAILED(rv)) {
return false;
}
// Step 1 of Algorithm 3.1.2. "If the AppID is not an HTTPS URL, and matches
// the FacetID of the caller, no additional processing is necessary and the
// operation may proceed." In the web context, the "FacetID" is defined as
// "the Web Origin [RFC6454] of the web page triggering the FIDO operation,
// written as a URI with an empty path. Default ports are omitted and any path
// component is ignored."
if (!appIdUri->SchemeIs("https")) {
nsCString facetId;
rv = principal->GetWebExposedOriginSerialization(facetId);
return NS_SUCCEEDED(rv) && facetId == aAppId;
}
// Same site check
nsCOMPtr<nsIEffectiveTLDService> tldService =
do_GetService(NS_EFFECTIVETLDSERVICE_CONTRACTID);
if (!tldService) {
return false;
}
nsAutoCString baseDomainCaller;
rv = tldService->GetBaseDomain(callerUri, 0, baseDomainCaller);
if (NS_FAILED(rv)) {
return false;
}
nsAutoCString baseDomainAppId;
rv = tldService->GetBaseDomain(appIdUri, 0, baseDomainAppId);
if (NS_FAILED(rv)) {
return false;
}
if (baseDomainCaller == baseDomainAppId) {
return true;
}
// Exceptions for Google Accounts from Bug 1436078. These were supposed to be
// temporary, but users reported breakage when we tried to remove them (Bug
// 1822703). We will need to keep them indefinitely.
if (baseDomainCaller.EqualsLiteral("google.com") &&
(aAppId.Equals("https://www.gstatic.com/securitykey/origins.json"_ns) ||
aAppId.Equals(
"https://www.gstatic.com/securitykey/a/google.com/origins.json"_ns))) {
return true;
}
return false;
}
nsresult DefaultRpId(const nsCOMPtr<nsIPrincipal>& aPrincipal,
/* out */ nsACString& aRpId) {
// [https://w3c.github.io/webauthn/#rp-id]
// "By default, the RP ID for a WebAuthn operation is set to the caller's
// origin's effective domain."
auto* basePrin = BasePrincipal::Cast(aPrincipal);
nsCOMPtr<nsIURI> uri;
if (NS_FAILED(basePrin->GetURI(getter_AddRefs(uri)))) {
return NS_ERROR_FAILURE;
}
return uri->GetAsciiHost(aRpId);
}
bool IsWebAuthnAllowedInDocument(const nsCOMPtr<Document>& aDoc) {
MOZ_ASSERT(aDoc);
return aDoc->IsHTMLOrXHTML();
}
bool IsWebAuthnAllowedInContext(WindowGlobalParent* aContext) {
nsIPrincipal* principal = aContext->DocumentPrincipal();
MOZ_ASSERT(principal);
if (principal->GetIsNullPrincipal()) {
return false;
}
if (principal->GetIsIpAddress()) {
return false;
}
// This next test is not strictly necessary since CredentialsContainer is
// [SecureContext] in our webidl.
if (!principal->GetIsOriginPotentiallyTrustworthy()) {
return false;
}
if (principal->GetIsLoopbackHost()) {
return true;
}
if (StaticPrefs::security_webauthn_allow_with_certificate_override()) {
return true;
}
WindowGlobalParent* windowContext = aContext;
while (windowContext) {
nsITransportSecurityInfo* securityInfo = windowContext->GetSecurityInfo();
if (securityInfo &&
!IsWebAuthnAllowedForTransportSecurityInfo(securityInfo)) {
return false;
}
windowContext = windowContext->GetParentWindowContext();
}
return true;
}
bool IsWebAuthnAllowedForTransportSecurityInfo(
nsITransportSecurityInfo* aSecurityInfo) {
nsITransportSecurityInfo::OverridableErrorCategory overridableErrorCategory;
if (!aSecurityInfo || NS_FAILED(aSecurityInfo->GetOverridableErrorCategory(
&overridableErrorCategory))) {
return false;
}
switch (overridableErrorCategory) {
case nsITransportSecurityInfo::OverridableErrorCategory::ERROR_UNSET:
return true;
case nsITransportSecurityInfo::OverridableErrorCategory::ERROR_TIME:
return true;
case nsITransportSecurityInfo::OverridableErrorCategory::ERROR_TRUST:
return false;
case nsITransportSecurityInfo::OverridableErrorCategory::ERROR_DOMAIN:
return false;
default:
return false;
}
}
bool IsValidRpId(const nsCOMPtr<nsIPrincipal>& aPrincipal,
const nsACString& aRpId) {
// This checks two of the conditions defined in
// https://w3c.github.io/webauthn/#rp-id, namely that the RP ID value is
// (1) "a valid domain string", and
// (2) "a registrable domain suffix of or is equal to the caller's origin's
// effective domain"
//
// We do not check that the condition that "origin's scheme is https [, or]
// the origin's host is localhost and its scheme is http". These are special
// cases of secure contexts (https://www.w3.org/TR/secure-contexts/). We
// expose WebAuthn in all secure contexts, which is slightly more lenient
// than the spec's condition.
// Condition (1)
nsCString normalizedRpId;
nsresult rv = NS_DomainToASCII(aRpId, normalizedRpId);
if (NS_FAILED(rv)) {
return false;
}
if (normalizedRpId != aRpId) {
return false;
}
// Condition (2)
// The "is a registrable domain suffix of or is equal to" condition is defined
// in https://html.spec.whatwg.org/multipage/browsers.html#dom-document-domain
// as a subroutine of the document.domain setter, and it is exposed in XUL as
// the Document::IsValidDomain function. This function takes URIs as inputs
// rather than domain strings, so we construct a target URI using the current
// document URI as a template.
auto* basePrin = BasePrincipal::Cast(aPrincipal);
nsCOMPtr<nsIURI> currentURI;
if (NS_FAILED(basePrin->GetURI(getter_AddRefs(currentURI)))) {
return false;
}
nsCOMPtr<nsIURI> targetURI;
rv = NS_MutateURI(currentURI).SetHost(aRpId).Finalize(targetURI);
if (NS_FAILED(rv)) {
return false;
}
return Document::IsValidDomain(currentURI, targetURI);
}
static nsresult HashCString(nsICryptoHash* aHashService, const nsACString& aIn,
/* out */ nsTArray<uint8_t>& aOut) {
MOZ_ASSERT(aHashService);
nsresult rv = aHashService->Init(nsICryptoHash::SHA256);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
rv = aHashService->Update(
reinterpret_cast<const uint8_t*>(aIn.BeginReading()), aIn.Length());
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
nsAutoCString fullHash;
// Passing false below means we will get a binary result rather than a
// base64-encoded string.
rv = aHashService->Finish(false, fullHash);
if (NS_WARN_IF(NS_FAILED(rv))) {
return rv;
}
aOut.Clear();
aOut.AppendElements(reinterpret_cast<uint8_t const*>(fullHash.BeginReading()),
fullHash.Length());
return NS_OK;
}
nsresult HashCString(const nsACString& aIn, /* out */ nsTArray<uint8_t>& aOut) {
nsresult srv;
nsCOMPtr<nsICryptoHash> hashService =
do_CreateInstance(NS_CRYPTO_HASH_CONTRACTID, &srv);
if (NS_FAILED(srv)) {
return srv;
}
srv = HashCString(hashService, aIn, aOut);
if (NS_WARN_IF(NS_FAILED(srv))) {
return NS_ERROR_FAILURE;
}
return NS_OK;
}
uint32_t WebAuthnTimeout(const Optional<uint32_t>& aTimeout) {
uint32_t adjustedTimeout = 30000;
if (aTimeout.WasPassed()) {
adjustedTimeout = aTimeout.Value();
adjustedTimeout = std::max(15000u, adjustedTimeout);
adjustedTimeout = std::min(120000u, adjustedTimeout);
}
return adjustedTimeout;
}
static nsresult SerializeWebAuthnData(
const OwningArrayBufferViewOrArrayBuffer& aData, nsString& aOut) {
return ProcessTypedArrays(
aData, [&](const Span<uint8_t>& aData, JS::AutoCheckCannotGC&&) {
nsAutoCString result;
nsresult rv = mozilla::Base64URLEncode(
aData.Length(), aData.Elements(),
Base64URLEncodePaddingPolicy::Omit, result);
if (NS_SUCCEEDED(rv)) {
aOut.Assign(NS_ConvertUTF8toUTF16(result));
}
return rv;
});
}
nsresult SerializeWebAuthnCreationOptions(
JSContext* aCx, const nsString& aRpId,
const PublicKeyCredentialCreationOptions& aOptions, nsString& aOut) {
nsresult rv;
PublicKeyCredentialCreationOptionsJSON json;
json.mRp.mId.Construct(aRpId);
json.mRp.mName.Assign(aOptions.mRp.mName);
json.mUser.mName.Assign(aOptions.mUser.mName);
rv = SerializeWebAuthnData(aOptions.mUser.mId, json.mUser.mId);
NS_ENSURE_SUCCESS(rv, rv);
json.mUser.mDisplayName.Assign(aOptions.mUser.mDisplayName);
rv = SerializeWebAuthnData(aOptions.mChallenge, json.mChallenge);
NS_ENSURE_SUCCESS(rv, rv);
json.mPubKeyCredParams = aOptions.mPubKeyCredParams;
json.mTimeout.Construct(WebAuthnTimeout(aOptions.mTimeout));
for (const auto& excludeCredential : aOptions.mExcludeCredentials) {
PublicKeyCredentialDescriptorJSON* excludeCredentialJSON =
json.mExcludeCredentials.AppendElement(fallible);
if (!excludeCredentialJSON) {
return NS_ERROR_OUT_OF_MEMORY;
}
excludeCredentialJSON->mType = excludeCredential.mType;
rv = SerializeWebAuthnData(excludeCredential.mId,
excludeCredentialJSON->mId);
NS_ENSURE_SUCCESS(rv, rv);
if (excludeCredential.mTransports.WasPassed()) {
excludeCredentialJSON->mTransports.Construct(
excludeCredential.mTransports.Value());
}
}
json.mAuthenticatorSelection.Construct(aOptions.mAuthenticatorSelection);
json.mHints = aOptions.mHints;
json.mAttestation = aOptions.mAttestation;
AuthenticationExtensionsClientInputsJSON& extensionsJSON =
json.mExtensions.Construct();
if (aOptions.mExtensions.mAppid.WasPassed()) {
extensionsJSON.mAppid.Construct(aOptions.mExtensions.mAppid.Value());
}
if (aOptions.mExtensions.mCredentialProtectionPolicy.WasPassed()) {
extensionsJSON.mCredentialProtectionPolicy.Construct(
aOptions.mExtensions.mCredentialProtectionPolicy.Value());
}
if (aOptions.mExtensions.mEnforceCredentialProtectionPolicy.WasPassed()) {
extensionsJSON.mEnforceCredentialProtectionPolicy.Construct(
aOptions.mExtensions.mEnforceCredentialProtectionPolicy.Value());
}
if (aOptions.mExtensions.mCredProps.WasPassed()) {
extensionsJSON.mCredProps.Construct(
aOptions.mExtensions.mCredProps.Value());
}
if (aOptions.mExtensions.mHmacCreateSecret.WasPassed()) {
extensionsJSON.mHmacCreateSecret.Construct(
aOptions.mExtensions.mHmacCreateSecret.Value());
}
if (aOptions.mExtensions.mMinPinLength.WasPassed()) {
extensionsJSON.mMinPinLength.Construct(
aOptions.mExtensions.mMinPinLength.Value());
}
if (aOptions.mExtensions.mLargeBlob.WasPassed()) {
const AuthenticationExtensionsLargeBlobInputs& largeBlobInputs =
aOptions.mExtensions.mLargeBlob.Value();
AuthenticationExtensionsLargeBlobInputsJSON& largeBlobInputsJSON =
extensionsJSON.mLargeBlob.Construct();
if (largeBlobInputs.mSupport.WasPassed()) {
largeBlobInputsJSON.mSupport.Construct(largeBlobInputs.mSupport.Value());
}
if (largeBlobInputs.mRead.WasPassed()) {
largeBlobInputsJSON.mRead.Construct(largeBlobInputs.mRead.Value());
}
if (largeBlobInputs.mWrite.WasPassed()) {
nsString write;
rv = SerializeWebAuthnData(largeBlobInputs.mWrite.Value(), write);
NS_ENSURE_SUCCESS(rv, rv);
largeBlobInputsJSON.mWrite.Construct(write);
}
}
if (aOptions.mExtensions.mPrf.WasPassed()) {
const AuthenticationExtensionsPRFInputs& prfInputs =
aOptions.mExtensions.mPrf.Value();
AuthenticationExtensionsPRFInputsJSON& prfInputsJSON =
extensionsJSON.mPrf.Construct();
if (prfInputs.mEval.WasPassed()) {
AuthenticationExtensionsPRFValuesJSON& evalJSON =
prfInputsJSON.mEval.Construct();
rv = SerializeWebAuthnData(prfInputs.mEval.Value().mFirst,
evalJSON.mFirst);
NS_ENSURE_SUCCESS(rv, rv);
if (prfInputs.mEval.Value().mSecond.WasPassed()) {
nsString second;
rv = SerializeWebAuthnData(prfInputs.mEval.Value().mSecond.Value(),
second);
NS_ENSURE_SUCCESS(rv, rv);
evalJSON.mSecond.Construct(second);
}
}
if (prfInputs.mEvalByCredential.WasPassed()) {
for (const auto& entry : prfInputs.mEvalByCredential.Value().Entries()) {
auto* jsonEntry =
prfInputsJSON.mEvalByCredential.Construct().Entries().AppendElement(
fallible);
if (!jsonEntry) {
return NS_ERROR_OUT_OF_MEMORY;
}
jsonEntry->mKey = entry.mKey;
AuthenticationExtensionsPRFValuesJSON& valuesJSON = jsonEntry->mValue;
rv = SerializeWebAuthnData(entry.mValue.mFirst, valuesJSON.mFirst);
NS_ENSURE_SUCCESS(rv, rv);
if (entry.mValue.mSecond.WasPassed()) {
nsString second;
rv = SerializeWebAuthnData(entry.mValue.mSecond.Value(), second);
NS_ENSURE_SUCCESS(rv, rv);
valuesJSON.mSecond.Construct(second);
}
}
}
}
JS::Rooted<JS::Value> value(aCx);
if (!ToJSValue(aCx, json, &value)) {
return NS_ERROR_FAILURE;
}
nsAutoString jsonString;
if (!nsContentUtils::StringifyJSON(aCx, value, jsonString,
UndefinedIsNullStringLiteral)) {
return NS_ERROR_FAILURE;
}
aOut = std::move(jsonString);
return NS_OK;
}
nsresult SerializeWebAuthnRequestOptions(
JSContext* aCx, const nsString& aRpId,
const PublicKeyCredentialRequestOptions& aOptions, nsString& aOut) {
nsresult rv;
PublicKeyCredentialRequestOptionsJSON json;
rv = SerializeWebAuthnData(aOptions.mChallenge, json.mChallenge);
NS_ENSURE_SUCCESS(rv, rv);
json.mTimeout.Construct(WebAuthnTimeout(aOptions.mTimeout));
json.mRpId.Construct(aRpId);
for (const auto& allowCredential : aOptions.mAllowCredentials) {
PublicKeyCredentialDescriptorJSON* allowCredentialJSON =
json.mAllowCredentials.AppendElement(fallible);
if (!allowCredentialJSON) {
return NS_ERROR_OUT_OF_MEMORY;
}
allowCredentialJSON->mType = allowCredential.mType;
rv = SerializeWebAuthnData(allowCredential.mId, allowCredentialJSON->mId);
NS_ENSURE_SUCCESS(rv, rv);
if (allowCredential.mTransports.WasPassed()) {
allowCredentialJSON->mTransports.Construct(
allowCredential.mTransports.Value());
}
}
json.mUserVerification = aOptions.mUserVerification;
json.mHints = aOptions.mHints;
AuthenticationExtensionsClientInputsJSON& extensionsJSON =
json.mExtensions.Construct();
if (aOptions.mExtensions.mAppid.WasPassed()) {
extensionsJSON.mAppid.Construct(aOptions.mExtensions.mAppid.Value());
}
if (aOptions.mExtensions.mCredProps.WasPassed()) {
extensionsJSON.mCredProps.Construct(
aOptions.mExtensions.mCredProps.Value());
}
if (aOptions.mExtensions.mHmacCreateSecret.WasPassed()) {
extensionsJSON.mHmacCreateSecret.Construct(
aOptions.mExtensions.mHmacCreateSecret.Value());
}
if (aOptions.mExtensions.mMinPinLength.WasPassed()) {
extensionsJSON.mMinPinLength.Construct(
aOptions.mExtensions.mMinPinLength.Value());
}
if (aOptions.mExtensions.mLargeBlob.WasPassed()) {
const AuthenticationExtensionsLargeBlobInputs& largeBlobInputs =
aOptions.mExtensions.mLargeBlob.Value();
AuthenticationExtensionsLargeBlobInputsJSON& largeBlobInputsJSON =
extensionsJSON.mLargeBlob.Construct();
if (largeBlobInputs.mSupport.WasPassed()) {
largeBlobInputsJSON.mSupport.Construct(largeBlobInputs.mSupport.Value());
}
if (largeBlobInputs.mRead.WasPassed()) {
largeBlobInputsJSON.mRead.Construct(largeBlobInputs.mRead.Value());
}
if (largeBlobInputs.mWrite.WasPassed()) {
nsString write;
rv = SerializeWebAuthnData(largeBlobInputs.mWrite.Value(), write);
NS_ENSURE_SUCCESS(rv, rv);
largeBlobInputsJSON.mWrite.Construct(write);
}
}
if (aOptions.mExtensions.mPrf.WasPassed()) {
const AuthenticationExtensionsPRFInputs& prfInputs =
aOptions.mExtensions.mPrf.Value();
AuthenticationExtensionsPRFInputsJSON& prfInputsJSON =
extensionsJSON.mPrf.Construct();
if (prfInputs.mEval.WasPassed()) {
AuthenticationExtensionsPRFValuesJSON& evalJSON =
prfInputsJSON.mEval.Construct();
rv = SerializeWebAuthnData(prfInputs.mEval.Value().mFirst,
evalJSON.mFirst);
NS_ENSURE_SUCCESS(rv, rv);
if (prfInputs.mEval.Value().mSecond.WasPassed()) {
nsString second;
rv = SerializeWebAuthnData(prfInputs.mEval.Value().mSecond.Value(),
second);
NS_ENSURE_SUCCESS(rv, rv);
evalJSON.mSecond.Construct(second);
}
}
if (prfInputs.mEvalByCredential.WasPassed()) {
for (const auto& entry : prfInputs.mEvalByCredential.Value().Entries()) {
auto* jsonEntry =
prfInputsJSON.mEvalByCredential.Construct().Entries().AppendElement(
fallible);
if (!jsonEntry) {
return NS_ERROR_OUT_OF_MEMORY;
}
jsonEntry->mKey = entry.mKey;
AuthenticationExtensionsPRFValuesJSON& valuesJSON = jsonEntry->mValue;
rv = SerializeWebAuthnData(entry.mValue.mFirst, valuesJSON.mFirst);
NS_ENSURE_SUCCESS(rv, rv);
if (entry.mValue.mSecond.WasPassed()) {
nsString second;
rv = SerializeWebAuthnData(entry.mValue.mSecond.Value(), second);
NS_ENSURE_SUCCESS(rv, rv);
valuesJSON.mSecond.Construct(second);
}
}
}
}
JS::Rooted<JS::Value> value(aCx);
if (!ToJSValue(aCx, json, &value)) {
return NS_ERROR_FAILURE;
}
nsAutoString jsonString;
if (!nsContentUtils::StringifyJSON(aCx, value, jsonString,
UndefinedIsNullStringLiteral)) {
return NS_ERROR_FAILURE;
}
aOut = std::move(jsonString);
return NS_OK;
}
} // namespace mozilla::dom
|