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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
// Copyright 2015 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 "components/gcm_driver/crypto/gcm_key_store.h"
#include <stddef.h>
#include <utility>
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/sequenced_task_runner.h"
#include "components/gcm_driver/crypto/p256_key_util.h"
#include "components/leveldb_proto/proto_database_impl.h"
#include "crypto/random.h"
namespace gcm {
namespace {
// Statistics are logged to UMA with this string as part of histogram name. They
// can all be found under LevelDB.*.GCMKeyStore. Changing this needs to
// synchronize with histograms.xml, AND will also become incompatible with older
// browsers still reporting the previous values.
const char kDatabaseUMAClientName[] = "GCMKeyStore";
// Number of cryptographically secure random bytes to generate as a key pair's
// authentication secret. Must be at least 16 bytes.
const size_t kAuthSecretBytes = 16;
std::string DatabaseKey(const std::string& app_id,
const std::string& authorized_entity) {
DCHECK_EQ(std::string::npos, app_id.find(','));
DCHECK_EQ(std::string::npos, authorized_entity.find(','));
DCHECK_NE("*", authorized_entity) << "Wildcards require special handling";
return authorized_entity.empty()
? app_id // No comma, for compatibility with existing keys.
: app_id + ',' + authorized_entity;
}
} // namespace
enum class GCMKeyStore::State {
UNINITIALIZED,
INITIALIZING,
INITIALIZED,
FAILED
};
GCMKeyStore::GCMKeyStore(
const base::FilePath& key_store_path,
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner)
: key_store_path_(key_store_path),
blocking_task_runner_(blocking_task_runner),
state_(State::UNINITIALIZED),
weak_factory_(this) {
DCHECK(blocking_task_runner);
}
GCMKeyStore::~GCMKeyStore() {}
void GCMKeyStore::GetKeys(const std::string& app_id,
const std::string& authorized_entity,
bool fallback_to_empty_authorized_entity,
const KeysCallback& callback) {
LazyInitialize(base::Bind(
&GCMKeyStore::GetKeysAfterInitialize, weak_factory_.GetWeakPtr(), app_id,
authorized_entity, fallback_to_empty_authorized_entity, callback));
}
void GCMKeyStore::GetKeysAfterInitialize(
const std::string& app_id,
const std::string& authorized_entity,
bool fallback_to_empty_authorized_entity,
const KeysCallback& callback) {
DCHECK(state_ == State::INITIALIZED || state_ == State::FAILED);
bool success = false;
if (state_ == State::INITIALIZED) {
auto outer_iter = key_data_.find(app_id);
if (outer_iter != key_data_.end()) {
const auto& inner_map = outer_iter->second;
auto inner_iter = inner_map.find(authorized_entity);
if (fallback_to_empty_authorized_entity && inner_iter == inner_map.end())
inner_iter = inner_map.find(std::string());
if (inner_iter != inner_map.end()) {
const KeyPairAndAuthSecret& key_and_auth = inner_iter->second;
callback.Run(key_and_auth.first, key_and_auth.second);
success = true;
}
}
}
UMA_HISTOGRAM_BOOLEAN("GCM.Crypto.GetKeySuccessRate", success);
if (!success)
callback.Run(KeyPair(), std::string() /* auth_secret */);
}
void GCMKeyStore::CreateKeys(const std::string& app_id,
const std::string& authorized_entity,
const KeysCallback& callback) {
LazyInitialize(base::Bind(&GCMKeyStore::CreateKeysAfterInitialize,
weak_factory_.GetWeakPtr(), app_id,
authorized_entity, callback));
}
void GCMKeyStore::CreateKeysAfterInitialize(
const std::string& app_id,
const std::string& authorized_entity,
const KeysCallback& callback) {
DCHECK(state_ == State::INITIALIZED || state_ == State::FAILED);
if (state_ != State::INITIALIZED) {
callback.Run(KeyPair(), std::string() /* auth_secret */);
return;
}
// Only allow creating new keys if no keys currently exist. Multiple Instance
// ID tokens can share an app_id (with different authorized entities), but
// InstanceID tokens can't share an app_id with a non-InstanceID registration.
// This invariant is necessary for the fallback_to_empty_authorized_entity
// mode of GetKey (needed by GCMEncryptionProvider::DecryptMessage, which
// can't distinguish Instance ID tokens from non-InstanceID registrations).
DCHECK(!key_data_.count(app_id) ||
(!authorized_entity.empty() &&
!key_data_[app_id].count(authorized_entity) &&
!key_data_[app_id].count(std::string())))
<< "Instance ID tokens cannot share an app_id with a non-InstanceID GCM "
"registration";
std::string private_key, public_key_x509, public_key;
if (!CreateP256KeyPair(&private_key, &public_key_x509, &public_key)) {
NOTREACHED() << "Unable to initialize a P-256 key pair.";
callback.Run(KeyPair(), std::string() /* auth_secret */);
return;
}
std::string auth_secret;
// Create the authentication secret, which has to be a cryptographically
// secure random number of at least 128 bits (16 bytes).
crypto::RandBytes(base::WriteInto(&auth_secret, kAuthSecretBytes + 1),
kAuthSecretBytes);
// Store the keys in a new EncryptionData object.
EncryptionData encryption_data;
encryption_data.set_app_id(app_id);
if (!authorized_entity.empty())
encryption_data.set_authorized_entity(authorized_entity);
encryption_data.set_auth_secret(auth_secret);
KeyPair* pair = encryption_data.add_keys();
pair->set_type(KeyPair::ECDH_P256);
pair->set_private_key(private_key);
pair->set_public_key_x509(public_key_x509);
pair->set_public_key(public_key);
// Write them immediately to our cache, so subsequent calls to
// {Get/Create/Remove}Keys can see them.
key_data_[app_id][authorized_entity] = {*pair, auth_secret};
using EntryVectorType =
leveldb_proto::ProtoDatabase<EncryptionData>::KeyEntryVector;
std::unique_ptr<EntryVectorType> entries_to_save(new EntryVectorType());
std::unique_ptr<std::vector<std::string>> keys_to_remove(
new std::vector<std::string>());
entries_to_save->push_back(
std::make_pair(DatabaseKey(app_id, authorized_entity), encryption_data));
database_->UpdateEntries(
std::move(entries_to_save), std::move(keys_to_remove),
base::Bind(&GCMKeyStore::DidStoreKeys, weak_factory_.GetWeakPtr(), *pair,
auth_secret, callback));
}
void GCMKeyStore::DidStoreKeys(const KeyPair& pair,
const std::string& auth_secret,
const KeysCallback& callback,
bool success) {
UMA_HISTOGRAM_BOOLEAN("GCM.Crypto.CreateKeySuccessRate", success);
if (!success) {
LOG(ERROR) << "Unable to store the created key in the GCM Key Store.";
// Our cache is now inconsistent. Reject requests until restarted.
state_ = State::FAILED;
callback.Run(KeyPair(), std::string() /* auth_secret */);
return;
}
callback.Run(pair, auth_secret);
}
void GCMKeyStore::RemoveKeys(const std::string& app_id,
const std::string& authorized_entity,
const base::Closure& callback) {
LazyInitialize(base::Bind(&GCMKeyStore::RemoveKeysAfterInitialize,
weak_factory_.GetWeakPtr(), app_id,
authorized_entity, callback));
}
void GCMKeyStore::RemoveKeysAfterInitialize(
const std::string& app_id,
const std::string& authorized_entity,
const base::Closure& callback) {
DCHECK(state_ == State::INITIALIZED || state_ == State::FAILED);
const auto& outer_iter = key_data_.find(app_id);
if (outer_iter == key_data_.end() || state_ != State::INITIALIZED) {
callback.Run();
return;
}
using EntryVectorType =
leveldb_proto::ProtoDatabase<EncryptionData>::KeyEntryVector;
std::unique_ptr<EntryVectorType> entries_to_save(new EntryVectorType());
std::unique_ptr<std::vector<std::string>> keys_to_remove(
new std::vector<std::string>());
bool had_keys = false;
auto& inner_map = outer_iter->second;
for (auto it = inner_map.begin(); it != inner_map.end();) {
// Wildcard "*" matches all non-empty authorized entities (InstanceID only).
if (authorized_entity == "*" ? !it->first.empty()
: it->first == authorized_entity) {
had_keys = true;
keys_to_remove->push_back(DatabaseKey(app_id, it->first));
// Clear keys immediately from our cache, so subsequent calls to
// {Get/Create/Remove}Keys don't see them.
it = inner_map.erase(it);
} else {
++it;
}
}
if (!had_keys) {
callback.Run();
return;
}
if (inner_map.empty())
key_data_.erase(app_id);
database_->UpdateEntries(std::move(entries_to_save),
std::move(keys_to_remove),
base::Bind(&GCMKeyStore::DidRemoveKeys,
weak_factory_.GetWeakPtr(), callback));
}
void GCMKeyStore::DidRemoveKeys(const base::Closure& callback, bool success) {
UMA_HISTOGRAM_BOOLEAN("GCM.Crypto.RemoveKeySuccessRate", success);
if (!success) {
LOG(ERROR) << "Unable to delete a key from the GCM Key Store.";
// Our cache is now inconsistent. Reject requests until restarted.
state_ = State::FAILED;
}
callback.Run();
}
void GCMKeyStore::LazyInitialize(const base::Closure& done_closure) {
if (delayed_task_controller_.CanRunTaskWithoutDelay()) {
done_closure.Run();
return;
}
delayed_task_controller_.AddTask(done_closure);
if (state_ == State::INITIALIZING)
return;
state_ = State::INITIALIZING;
database_.reset(new leveldb_proto::ProtoDatabaseImpl<EncryptionData>(
blocking_task_runner_));
database_->Init(
kDatabaseUMAClientName, key_store_path_,
base::Bind(&GCMKeyStore::DidInitialize, weak_factory_.GetWeakPtr()));
}
void GCMKeyStore::DidInitialize(bool success) {
UMA_HISTOGRAM_BOOLEAN("GCM.Crypto.InitKeyStoreSuccessRate", success);
if (!success) {
DVLOG(1) << "Unable to initialize the GCM Key Store.";
state_ = State::FAILED;
delayed_task_controller_.SetReady();
return;
}
database_->LoadEntries(
base::Bind(&GCMKeyStore::DidLoadKeys, weak_factory_.GetWeakPtr()));
}
void GCMKeyStore::DidLoadKeys(
bool success,
std::unique_ptr<std::vector<EncryptionData>> entries) {
UMA_HISTOGRAM_BOOLEAN("GCM.Crypto.LoadKeyStoreSuccessRate", success);
if (!success) {
DVLOG(1) << "Unable to load entries into the GCM Key Store.";
state_ = State::FAILED;
delayed_task_controller_.SetReady();
return;
}
for (const EncryptionData& entry : *entries) {
DCHECK_EQ(1, entry.keys_size());
std::string authorized_entity;
if (entry.has_authorized_entity())
authorized_entity = entry.authorized_entity();
key_data_[entry.app_id()][authorized_entity] = {entry.keys(0),
entry.auth_secret()};
}
state_ = State::INITIALIZED;
delayed_task_controller_.SetReady();
}
} // namespace gcm
|