From 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:47:29 +0200 Subject: Adding upstream version 115.8.0esr. Signed-off-by: Daniel Baumann --- security/manager/ssl/VerifySSLServerCertParent.h | 60 ++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 security/manager/ssl/VerifySSLServerCertParent.h (limited to 'security/manager/ssl/VerifySSLServerCertParent.h') diff --git a/security/manager/ssl/VerifySSLServerCertParent.h b/security/manager/ssl/VerifySSLServerCertParent.h new file mode 100644 index 0000000000..b1ba35c393 --- /dev/null +++ b/security/manager/ssl/VerifySSLServerCertParent.h @@ -0,0 +1,60 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set sw=2 ts=8 et 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 mozilla_psm_VerifySSLServerCertParent_h__ +#define mozilla_psm_VerifySSLServerCertParent_h__ + +#include "mozilla/psm/PVerifySSLServerCertParent.h" +#include "mozpkix/Time.h" +#include "ScopedNSSTypes.h" +#include "SharedCertVerifier.h" + +namespace mozilla { +namespace psm { + +// This class implements the main process side of the server certificate +// verification for socket process. +// SSLServerCertVerificationJob::Dispatch is called in +// VerifySSLServerCertParent::Dispatch with IPCServerCertVerificationResult and +// the result of the certificate verification will be sent to the socket process +// via IPC. +class VerifySSLServerCertParent : public PVerifySSLServerCertParent { + public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(VerifySSLServerCertParent, override) + + VerifySSLServerCertParent(); + + bool Dispatch(nsTArray&& aPeerCertChain, + const nsACString& aHostName, const int32_t& aPort, + const OriginAttributes& aOriginAttributes, + const Maybe& aStapledOCSPResponse, + const Maybe& aSctsFromTLSExtension, + const Maybe& aDcInfo, + const uint32_t& aProviderFlags, + const uint32_t& aCertVerifierFlags); + + void OnVerifiedSSLServerCert(const nsTArray& aBuiltCertChain, + uint16_t aCertificateTransparencyStatus, + uint8_t aEVStatus, bool aSucceeded, + PRErrorCode aFinalError, + uint32_t aOverridableErrorCategory, + bool aIsBuiltCertChainRootBuiltInRoot, + bool aMadeOCSPRequests); + + private: + virtual ~VerifySSLServerCertParent(); + + // PVerifySSLServerCertParent + void ActorDestroy(ActorDestroyReason aWhy) override; + + nsCOMPtr mBackgroundThread; +}; + +} // namespace psm +} // namespace mozilla + +#endif // mozilla_psm_VerifySSLServerCertParent_h__ -- cgit v1.2.3