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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ASH_ARC_NET_CERT_MANAGER_IMPL_H_
#define CHROME_BROWSER_ASH_ARC_NET_CERT_MANAGER_IMPL_H_
#include <optional>
#include <string>
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/net/nss_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chromeos/ash/experiences/arc/net/cert_manager.h"
#include "net/cert/nss_cert_database.h"
namespace arc {
// Certificate and private key PKCS #8 PEM headers as described in section 5 and
// 10 respectively of RFC7468.
inline constexpr char kCertificatePEMHeader[] = "CERTIFICATE";
inline constexpr char kPrivateKeyPEMHeader[] = "PRIVATE KEY";
// CertManager imports plain-text certificates and private keys into Chrome OS'
// key store (chaps).
class CertManagerImpl : public CertManager {
public:
using DeleteCertCallback = base::OnceCallback<void()>;
explicit CertManagerImpl(Profile* profile);
CertManagerImpl(const CertManagerImpl&) = delete;
CertManagerImpl& operator=(const CertManagerImpl&) = delete;
~CertManagerImpl() override;
// Asynchronously import a PEM-formatted private key and user certificate into
// the NSS certificate database. Once done, |callback| will be called with its
// ID and the slot ID of the database. This method will asynchronously fetch
// the database. Calling this method will remove any previously imported
// private keys and certificates with the same ID.
// For Passpoint, the expected removal flow of private keys and certificates
// are done in shill directly using PKCS#11 API. This means that any state of
// NSS for the private keys and certificates are not cleaned. This resulted in
// any subsequent provisionings of a deleted certificate to fail. In order to
// not have the side effect, the removal is necessary.
void ImportPrivateKeyAndCert(
const std::string& key_pem,
const std::string& cert_pem,
ImportPrivateKeyAndCertCallback callback) override;
private:
// Imports a PEM-formatted private key into the NSS certificate database and
// return its ID or empty string if it fails.
std::string ImportPrivateKey(const std::string& key_pem,
net::NSSCertDatabase* database);
// Imports a PEM-formatted user certificate into the NSS certificate database
// and return its ID or empty string if it fails.
std::string ImportUserCert(const std::string& cert_pem,
net::NSSCertDatabase* database);
void DeleteCertAndKeyAsync(const std::string& cert_pem,
net::NSSCertDatabase* database,
DeleteCertCallback callback);
// Get the private slot ID used by this class.
int GetSlotID(net::NSSCertDatabase* database);
// Import a PEM-formatted private key and user certificate into the NSS
// certificate database. Calls a callback with its ID and the slot ID of the
// database.
void ImportPrivateKeyAndCertWithDB(const std::string& key_pem,
const std::string& cert_pem,
ImportPrivateKeyAndCertCallback callback,
net::NSSCertDatabase* database);
// Import a PEM-formatted private key and user certificate into the NSS
// certificate database. Calls a callback with its ID and the slot ID of the
// database. Prior to importing the private key and certificate, attempt to
// remove them from the NSS certificate database to avoid import failures. See
// the comments in the implementation for more details.
void DeleteAndImportPrivateKeyAndCertWithDB(
const std::string& key_pem,
const std::string& cert_pem,
ImportPrivateKeyAndCertCallback callback,
net::NSSCertDatabase* database);
raw_ptr<Profile, DanglingUntriaged> profile_;
base::WeakPtrFactory<CertManagerImpl> weak_factory_{this};
FRIEND_TEST_ALL_PREFIXES(CertManagerImplTest, ImportKeyAndCertTest);
FRIEND_TEST_ALL_PREFIXES(CertManagerImplTest, ImportKeyAndCertSameIDTest);
FRIEND_TEST_ALL_PREFIXES(CertManagerImplTest, ImportCertWithWrongKeyTest);
FRIEND_TEST_ALL_PREFIXES(CertManagerImplTest,
ImportKeyAndCertWithInvalidDBTest);
FRIEND_TEST_ALL_PREFIXES(CertManagerImplTest, ImportInvalidDataTest);
};
} // namespace arc
#endif // CHROME_BROWSER_ASH_ARC_NET_CERT_MANAGER_IMPL_H_
|