From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../manager/ssl/SelectTLSClientAuthCertParent.h | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 security/manager/ssl/SelectTLSClientAuthCertParent.h (limited to 'security/manager/ssl/SelectTLSClientAuthCertParent.h') diff --git a/security/manager/ssl/SelectTLSClientAuthCertParent.h b/security/manager/ssl/SelectTLSClientAuthCertParent.h new file mode 100644 index 0000000000..efe7aa8420 --- /dev/null +++ b/security/manager/ssl/SelectTLSClientAuthCertParent.h @@ -0,0 +1,54 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * 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 SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ +#define SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ + +#include "mozilla/OriginAttributes.h" +#include "mozilla/psm/PSelectTLSClientAuthCertParent.h" + +namespace mozilla { +namespace psm { + +// Parent process component of the SelectTLSClientAuthCert IPC protocol. When +// the socket process encounters a TLS server that requests a client +// authentication certificate, Dispatch will be called via IPC with the +// information associated with that connection. That function dispatches an +// event to the main thread that determines what certificate to select, if any +// (usually by opening a dialog for the user to interact with). When a +// certificate (or no certificate) has been selected, TLSClientAuthCertSelected +// will be called on the IPC thread, which will cause +// SelectTLSClientAuthCertChild::RecvTLSClientAuthCertSelected to be called via +// IPC, which will get the appropriate information to NSS to continue the +// connection. +class SelectTLSClientAuthCertParent : public PSelectTLSClientAuthCertParent { + public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(SelectTLSClientAuthCertParent, override) + + SelectTLSClientAuthCertParent() = default; + + bool Dispatch(const nsACString& aHostName, + const OriginAttributes& aOriginAttributes, const int32_t& aPort, + const uint32_t& aProviderFlags, + const uint32_t& aProviderTlsFlags, + const ByteArray& aServerCertBytes, + nsTArray&& aCANames, + const uint64_t& aBrowsingContextID); + + void TLSClientAuthCertSelected( + const nsTArray& aSelectedCertBytes, + nsTArray>&& aSelectedCertChainBytes); + + private: + ~SelectTLSClientAuthCertParent() = default; + + void ActorDestroy(mozilla::ipc::IProtocol::ActorDestroyReason aWhy) override; +}; + +} // namespace psm +} // namespace mozilla + +#endif // SECURITY_MANAGER_SSL_SELECTTLSCLIENTAUTHCERTPARENT_H_ -- cgit v1.2.3