summaryrefslogtreecommitdiffstats
path: root/dom/webauthn/CtapArgs.h
blob: 406c24f4ba81b2c31969e96b0bf869b09f344600 (plain)
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=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/. */

#ifndef CtapArgs_h
#define CtapArgs_h

#include "mozilla/dom/WebAuthnTransactionChild.h"
#include "mozilla/ipc/BackgroundParent.h"
#include "nsIWebAuthnController.h"

namespace mozilla::dom {

// These classes provide an FFI between C++ and Rust for the getters of IPC
// objects (WebAuthnMakeCredentialInfo and WebAuthnGetAssertionInfo).  They hold
// non-owning references to IPC objects, and must only be used within the
// lifetime of the IPC transaction that created them. There are runtime
// assertions to ensure that these types are created and used on the IPC
// background thread, but that alone does not guarantee safety.

class CtapRegisterArgs final : public nsICtapRegisterArgs {
 public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSICTAPREGISTERARGS

  explicit CtapRegisterArgs(const WebAuthnMakeCredentialInfo& aInfo,
                            bool aForceNoneAttestation)
      : mInfo(aInfo), mForceNoneAttestation(aForceNoneAttestation) {
    mozilla::ipc::AssertIsOnBackgroundThread();
  }

 private:
  ~CtapRegisterArgs() = default;

  const WebAuthnMakeCredentialInfo& mInfo;
  const bool mForceNoneAttestation;
};

class CtapSignArgs final : public nsICtapSignArgs {
 public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSICTAPSIGNARGS

  explicit CtapSignArgs(const WebAuthnGetAssertionInfo& aInfo) : mInfo(aInfo) {
    mozilla::ipc::AssertIsOnBackgroundThread();
  }

 private:
  ~CtapSignArgs() = default;

  const WebAuthnGetAssertionInfo& mInfo;
};

}  // namespace mozilla::dom

#endif  // CtapArgs_h