blob: 0b9a6382c10cabac81dc4780580ce85becf503cd [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/cert_loader.h"
#include <algorithm>
#include <utility>
#include "base/bind.h"
#include "base/location.h"
#include "base/memory/ptr_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/task_scheduler/post_task.h"
#include "base/threading/worker_pool.h"
#include "crypto/nss_util.h"
#include "crypto/scoped_nss_types.h"
#include "net/cert/nss_cert_database.h"
#include "net/cert/nss_cert_database_chromeos.h"
#include "net/cert/x509_certificate.h"
namespace chromeos {
namespace {
// Checks if |certificate| is on the given |slot|.
bool IsCertificateOnSlot(const net::X509Certificate* certificate,
PK11SlotInfo* slot) {
crypto::ScopedPK11SlotList slots_for_cert(
PK11_GetAllSlotsForCert(certificate->os_cert_handle(), nullptr));
if (!slots_for_cert)
return false;
for (PK11SlotListElement* slot_element =
PK11_GetFirstSafe(slots_for_cert.get());
slot_element; slot_element = PK11_GetNextSafe(slots_for_cert.get(),
slot_element, PR_FALSE)) {
if (slot_element->slot == slot) {
// All previously visited elements have been freed by PK11_GetNextSafe,
// but we're not calling that for the last one, so free it explicitly.
// The slots_for_cert list itself will be freed because ScopedPK11SlotList
// is a unique_ptr.
PK11_FreeSlotListElement(slots_for_cert.get(), slot_element);
return true;
}
}
return false;
}
// Goes through all certificates in |all_certs| and copies those certificates
// which are on |system_slot| to a new list.
std::unique_ptr<net::CertificateList> FilterSystemTokenCertificates(
const net::CertificateList* all_certs,
crypto::ScopedPK11Slot system_slot) {
VLOG(1) << "FilterSystemTokenCertificates";
std::unique_ptr<net::CertificateList> system_certs =
base::MakeUnique<net::CertificateList>();
if (!system_slot)
return system_certs;
// Extract certificates which are in the system token into the
// |system_certs_| sublist.
for (const auto& cert : *all_certs) {
if (IsCertificateOnSlot(cert.get(), system_slot.get())) {
system_certs->push_back(cert);
}
}
return system_certs;
}
} // namespace
static CertLoader* g_cert_loader = nullptr;
static bool g_force_hardware_backed_for_test = false;
// static
void CertLoader::Initialize() {
CHECK(!g_cert_loader);
g_cert_loader = new CertLoader();
}
// static
void CertLoader::Shutdown() {
CHECK(g_cert_loader);
delete g_cert_loader;
g_cert_loader = nullptr;
}
// static
CertLoader* CertLoader::Get() {
CHECK(g_cert_loader) << "CertLoader::Get() called before Initialize()";
return g_cert_loader;
}
// static
bool CertLoader::IsInitialized() {
return g_cert_loader;
}
CertLoader::CertLoader()
: certificates_loaded_(false),
certificates_update_required_(false),
certificates_update_running_(false),
database_(nullptr),
all_certs_(base::MakeUnique<net::CertificateList>()),
weak_factory_(this) {}
CertLoader::~CertLoader() {
net::CertDatabase::GetInstance()->RemoveObserver(this);
}
void CertLoader::StartWithNSSDB(net::NSSCertDatabase* database) {
CHECK(!database_);
database_ = database;
// Start observing cert database for changes.
// Observing net::CertDatabase is preferred over observing |database_|
// directly, as |database_| observers receive only events generated directly
// by |database_|, so they may miss a few relevant ones.
// TODO(tbarzic): Once singleton NSSCertDatabase is removed, investigate if
// it would be OK to observe |database_| directly; or change NSSCertDatabase
// to send notification on all relevant changes.
net::CertDatabase::GetInstance()->AddObserver(this);
LoadCertificates();
}
void CertLoader::AddObserver(CertLoader::Observer* observer) {
observers_.AddObserver(observer);
}
void CertLoader::RemoveObserver(CertLoader::Observer* observer) {
observers_.RemoveObserver(observer);
}
// static
bool CertLoader::IsCertificateHardwareBacked(const net::X509Certificate* cert) {
if (g_force_hardware_backed_for_test)
return true;
PK11SlotInfo* slot = cert->os_cert_handle()->slot;
return slot && PK11_IsHW(slot);
}
bool CertLoader::CertificatesLoading() const {
return database_ && !certificates_loaded_;
}
// static
void CertLoader::ForceHardwareBackedForTesting() {
g_force_hardware_backed_for_test = true;
}
// static
//
// For background see this discussion on dev-tech-crypto.lists.mozilla.org:
// http://web.archiveorange.com/archive/v/6JJW7E40sypfZGtbkzxX
//
// NOTE: This function relies on the convention that the same PKCS#11 ID
// is shared between a certificate and its associated private and public
// keys. I tried to implement this with PK11_GetLowLevelKeyIDForCert(),
// but that always returns NULL on Chrome OS for me.
std::string CertLoader::GetPkcs11IdAndSlotForCert(
const net::X509Certificate& cert,
int* slot_id) {
DCHECK(slot_id);
CERTCertificateStr* cert_handle = cert.os_cert_handle();
SECKEYPrivateKey* priv_key =
PK11_FindKeyByAnyCert(cert_handle, nullptr /* wincx */);
if (!priv_key)
return std::string();
*slot_id = static_cast<int>(PK11_GetSlotID(priv_key->pkcs11Slot));
// Get the CKA_ID attribute for a key.
SECItem* sec_item = PK11_GetLowLevelKeyIDForPrivateKey(priv_key);
std::string pkcs11_id;
if (sec_item) {
pkcs11_id = base::HexEncode(sec_item->data, sec_item->len);
SECITEM_FreeItem(sec_item, PR_TRUE);
}
SECKEY_DestroyPrivateKey(priv_key);
return pkcs11_id;
}
void CertLoader::LoadCertificates() {
DCHECK(thread_checker_.CalledOnValidThread());
VLOG(1) << "LoadCertificates: " << certificates_update_running_;
if (certificates_update_running_) {
certificates_update_required_ = true;
return;
}
certificates_update_running_ = true;
certificates_update_required_ = false;
database_->ListCerts(
base::Bind(&CertLoader::CertificatesLoaded, weak_factory_.GetWeakPtr()));
}
void CertLoader::CertificatesLoaded(
std::unique_ptr<net::CertificateList> all_certs) {
DCHECK(thread_checker_.CalledOnValidThread());
VLOG(1) << "CertificatesLoaded: " << all_certs->size();
crypto::ScopedPK11Slot system_slot = database_->GetSystemSlot();
base::PostTaskWithTraitsAndReplyWithResult(
FROM_HERE,
base::TaskTraits()
.WithShutdownBehavior(
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN)
.MayBlock(),
base::BindOnce(&FilterSystemTokenCertificates,
base::Unretained(all_certs.get()), std::move(system_slot)),
base::BindOnce(&CertLoader::UpdateCertificates,
weak_factory_.GetWeakPtr(), std::move(all_certs)));
}
void CertLoader::UpdateCertificates(
std::unique_ptr<net::CertificateList> all_certs,
std::unique_ptr<net::CertificateList> system_certs) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(certificates_update_running_);
VLOG(1) << "UpdateCertificates: " << all_certs->size() << " ("
<< system_certs->size() << " on system slot)";
// Ignore any existing certificates.
all_certs_ = std::move(all_certs);
system_certs_ = std::move(system_certs);
bool initial_load = !certificates_loaded_;
certificates_loaded_ = true;
NotifyCertificatesLoaded(initial_load);
certificates_update_running_ = false;
if (certificates_update_required_)
LoadCertificates();
}
void CertLoader::NotifyCertificatesLoaded(bool initial_load) {
for (auto& observer : observers_)
observer.OnCertificatesLoaded(*all_certs_, initial_load);
}
void CertLoader::OnCertDBChanged() {
VLOG(1) << "OnCertDBChanged";
LoadCertificates();
}
} // namespace chromeos