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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
// Copyright 2015 The Chromium Authors
// 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_message_cryptographer.h"
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <string>
#include <string_view>
#include "base/check.h"
#include "base/check_op.h"
#include "base/containers/span.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "base/numerics/byte_conversions.h"
#include "base/numerics/ostream_operators.h"
#include "base/numerics/safe_conversions.h"
#include "base/numerics/safe_math.h"
#include "base/strings/strcat.h"
#include "base/strings/string_view_util.h"
#include "crypto/hkdf.h"
#include "third_party/boringssl/src/include/openssl/aead.h"
namespace gcm {
namespace {
// Size, in bytes, of the nonce for a record. This must be at least the size
// of a uint64_t, which is used to indicate the record sequence number.
const uint64_t kNonceSize = 12;
// The default record size as defined by httpbis-encryption-encoding-06.
const size_t kDefaultRecordSize = 4096;
// Key size, in bytes, of a valid AEAD_AES_128_GCM key.
const size_t kContentEncryptionKeySize = 16;
// The BoringSSL functions used to seal (encrypt) and open (decrypt) a payload
// follow the same prototype, declared as follows.
using EVP_AEAD_CTX_TransformFunction =
int(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len,
size_t max_out_len, const uint8_t *nonce, size_t nonce_len,
const uint8_t *in, size_t in_len, const uint8_t *ad, size_t ad_len);
// Implementation of draft 03 of the Web Push Encryption standard:
// https://tools.ietf.org/html/draft-ietf-webpush-encryption-03
// https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-02
class WebPushEncryptionDraft03
: public GCMMessageCryptographer::EncryptionScheme {
public:
WebPushEncryptionDraft03() = default;
WebPushEncryptionDraft03(const WebPushEncryptionDraft03&) = delete;
WebPushEncryptionDraft03& operator=(const WebPushEncryptionDraft03&) = delete;
~WebPushEncryptionDraft03() override = default;
// GCMMessageCryptographer::EncryptionScheme implementation.
std::string DerivePseudoRandomKey(std::string_view /* recipient_public_key */,
std::string_view /* sender_public_key */,
std::string_view ecdh_shared_secret,
std::string_view auth_secret) override {
const char kInfo[] = "Content-Encoding: auth";
// This deliberately copies over the NUL terminus.
std::string_view info(kInfo, sizeof(kInfo));
return crypto::HkdfSha256(ecdh_shared_secret, auth_secret, info, 32);
}
// Creates the info parameter for an HKDF value for the given
// |content_encoding| in accordance with draft-ietf-webpush-encryption-03.
//
// cek_info = "Content-Encoding: aesgcm" || 0x00 || context
// nonce_info = "Content-Encoding: nonce" || 0x00 || context
//
// context = "P-256" || 0x00 ||
// length(recipient_public) || recipient_public ||
// length(sender_public) || sender_public
//
// The length of the public keys must be written as a two octet unsigned
// integer in network byte order (big endian).
std::string GenerateInfoForContentEncoding(
EncodingType type,
std::string_view recipient_public_key,
std::string_view sender_public_key) override {
std::string info;
info += "Content-Encoding: ";
switch (type) {
case EncodingType::CONTENT_ENCRYPTION_KEY:
info += "aesgcm";
break;
case EncodingType::NONCE:
info += "nonce";
break;
}
info += '\x00';
info += "P-256";
info += '\x00';
info += base::as_string_view(base::U16ToBigEndian(
base::checked_cast<uint16_t>(recipient_public_key.size())));
info += recipient_public_key;
info += base::as_string_view(base::U16ToBigEndian(
base::checked_cast<uint16_t>(sender_public_key.size())));
info += sender_public_key;
return info;
}
// draft-ietf-webpush-encryption-03 defines that the padding is included at
// the beginning of the message. The first two bytes, in network byte order,
// contain the length of the included padding. Then that exact number of bytes
// must follow as padding, all of which must have a zero value.
//
// TODO(peter): Add support for message padding if the GCMMessageCryptographer
// starts encrypting payloads for reasons other than testing.
std::string CreateRecord(std::string_view plaintext) override {
std::string record;
record.reserve(sizeof(uint16_t) + plaintext.size());
record.append(sizeof(uint16_t), '\x00');
record.append(plaintext);
return record;
}
// The |ciphertext| must be at least of size kAuthenticationTagBytes with two
// padding bytes, which is the case for an empty message with zero padding.
// The |record_size| must be large enough to use only one record.
// https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-03#section-2
bool ValidateCiphertextSize(size_t ciphertext_size,
size_t record_size) override {
return ciphertext_size >=
sizeof(uint16_t) +
GCMMessageCryptographer::kAuthenticationTagBytes &&
ciphertext_size <=
record_size + GCMMessageCryptographer::kAuthenticationTagBytes;
}
// The record padding in draft-ietf-webpush-encryption-03 is included at the
// beginning of the record. The first two bytes indicate the length of the
// padding. All padding bytes immediately follow, and must be set to zero.
bool ValidateAndRemovePadding(std::string_view& record) override {
// Records must be at least two octets in size (to hold the padding).
// Records that are smaller, i.e. a single octet, are invalid.
if (record.size() < sizeof(uint16_t))
return false;
// Records contain a two-byte, big-endian padding length followed by zero to
// 65535 bytes of padding. Padding bytes must be zero but, since AES-GCM
// authenticates the plaintext, checking and removing padding need not be
// done in constant-time.
uint16_t padding_length = (static_cast<uint8_t>(record[0]) << 8) |
static_cast<uint8_t>(record[1]);
record.remove_prefix(sizeof(uint16_t));
if (padding_length > record.size()) {
return false;
}
for (size_t i = 0; i < padding_length; ++i) {
if (record[i] != 0)
return false;
}
record.remove_prefix(padding_length);
return true;
}
};
// Implementation of draft 08 of the Web Push Encryption standard:
// https://tools.ietf.org/html/draft-ietf-webpush-encryption-08
// https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-07
class WebPushEncryptionDraft08
: public GCMMessageCryptographer::EncryptionScheme {
public:
WebPushEncryptionDraft08() = default;
WebPushEncryptionDraft08(const WebPushEncryptionDraft08&) = delete;
WebPushEncryptionDraft08& operator=(const WebPushEncryptionDraft08&) = delete;
~WebPushEncryptionDraft08() override = default;
// GCMMessageCryptographer::EncryptionScheme implementation.
std::string DerivePseudoRandomKey(std::string_view recipient_public_key,
std::string_view sender_public_key,
std::string_view ecdh_shared_secret,
std::string_view auth_secret) override {
DCHECK_EQ(recipient_public_key.size(), 65u);
DCHECK_EQ(sender_public_key.size(), 65u);
const char kInfo[] = "WebPush: info";
// This deliberately copies over the NUL terminus.
std::string info = base::StrCat({std::string_view(kInfo, sizeof(kInfo)),
recipient_public_key, sender_public_key});
return crypto::HkdfSha256(ecdh_shared_secret, auth_secret, info, 32);
}
// The info string used for generating the content encryption key and the
// nonce was simplified in draft-ietf-webpush-encryption-08, because the
// public keys of both the recipient and the sender are now in the PRK.
std::string GenerateInfoForContentEncoding(
EncodingType type,
std::string_view /* recipient_public_key */,
std::string_view /* sender_public_key */) override {
std::string info;
info += "Content-Encoding: ";
switch (type) {
case EncodingType::CONTENT_ENCRYPTION_KEY:
info += "aes128gcm";
break;
case EncodingType::NONCE:
info += "nonce";
break;
}
info += '\x00';
return info;
}
// draft-ietf-webpush-encryption-08 defines that the padding follows the
// plaintext of a message. A delimiter byte (0x02 for the final record) will
// be added, and then zero or more bytes of padding.
//
// TODO(peter): Add support for message padding if the GCMMessageCryptographer
// starts encrypting payloads for reasons other than testing.
std::string CreateRecord(std::string_view plaintext) override {
std::string record;
record.reserve(plaintext.size() + sizeof(uint8_t));
record.append(plaintext);
record.append(sizeof(uint8_t), '\x02');
return record;
}
// The |ciphertext| must be at least of size kAuthenticationTagBytes with one
// padding delimiter, which is the case for an empty message with minimal
// padding. The |record_size| must be large enough to use only one record.
// https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-08#section-2
bool ValidateCiphertextSize(size_t ciphertext_size,
size_t record_size) override {
return ciphertext_size >=
sizeof(uint8_t) +
GCMMessageCryptographer::kAuthenticationTagBytes &&
ciphertext_size <=
record_size + GCMMessageCryptographer::kAuthenticationTagBytes;
}
// The record padding in draft-ietf-webpush-encryption-08 is included at the
// end of the record. The length is not defined, but all padding bytes must be
// zero until the delimiter (0x02) is found.
bool ValidateAndRemovePadding(std::string_view& record) override {
DCHECK_GE(record.size(), 1u);
size_t padding_length = 1;
for (; padding_length <= record.size(); ++padding_length) {
size_t offset = record.size() - padding_length;
if (record[offset] == 0x02 /* padding delimiter octet */)
break;
if (record[offset] != 0x00 /* valid padding byte */)
return false;
}
record.remove_suffix(padding_length);
return true;
}
};
} // namespace
const size_t GCMMessageCryptographer::kAuthenticationTagBytes = 16;
const size_t GCMMessageCryptographer::kSaltSize = 16;
GCMMessageCryptographer::GCMMessageCryptographer(Version version) {
switch (version) {
case Version::DRAFT_03:
encryption_scheme_ = std::make_unique<WebPushEncryptionDraft03>();
return;
case Version::DRAFT_08:
encryption_scheme_ = std::make_unique<WebPushEncryptionDraft08>();
return;
}
NOTREACHED();
}
GCMMessageCryptographer::~GCMMessageCryptographer() = default;
bool GCMMessageCryptographer::Encrypt(std::string_view recipient_public_key,
std::string_view sender_public_key,
std::string_view ecdh_shared_secret,
std::string_view auth_secret,
std::string_view salt,
std::string_view plaintext,
size_t* record_size,
std::string* ciphertext) const {
DCHECK_EQ(recipient_public_key.size(), 65u);
DCHECK_EQ(sender_public_key.size(), 65u);
DCHECK_EQ(ecdh_shared_secret.size(), 32u);
DCHECK_EQ(auth_secret.size(), 16u);
DCHECK_EQ(salt.size(), 16u);
DCHECK(record_size);
DCHECK(ciphertext);
std::string prk = encryption_scheme_->DerivePseudoRandomKey(
recipient_public_key, sender_public_key, ecdh_shared_secret, auth_secret);
std::string content_encryption_key = DeriveContentEncryptionKey(
recipient_public_key, sender_public_key, prk, salt);
std::string nonce =
DeriveNonce(recipient_public_key, sender_public_key, prk, salt);
std::string record = encryption_scheme_->CreateRecord(plaintext);
std::string encrypted_record;
if (!TransformRecord(Direction::ENCRYPT, record, content_encryption_key,
nonce, &encrypted_record)) {
return false;
}
// The advertised record size must be at least one more than the padded
// plaintext to ensure only one record.
*record_size = std::max(kDefaultRecordSize, record.size() + 1);
ciphertext->swap(encrypted_record);
return true;
}
bool GCMMessageCryptographer::Decrypt(std::string_view recipient_public_key,
std::string_view sender_public_key,
std::string_view ecdh_shared_secret,
std::string_view auth_secret,
std::string_view salt,
std::string_view ciphertext,
size_t record_size,
std::string* plaintext) const {
DCHECK_EQ(recipient_public_key.size(), 65u);
DCHECK_EQ(sender_public_key.size(), 65u);
DCHECK_EQ(ecdh_shared_secret.size(), 32u);
DCHECK_EQ(auth_secret.size(), 16u);
DCHECK_EQ(salt.size(), 16u);
DCHECK(plaintext);
if (record_size <= 1) {
LOG(ERROR) << "Invalid record size passed.";
return false;
}
std::string prk = encryption_scheme_->DerivePseudoRandomKey(
recipient_public_key, sender_public_key, ecdh_shared_secret, auth_secret);
std::string content_encryption_key = DeriveContentEncryptionKey(
recipient_public_key, sender_public_key, prk, salt);
std::string nonce =
DeriveNonce(recipient_public_key, sender_public_key, prk, salt);
if (!encryption_scheme_->ValidateCiphertextSize(ciphertext.size(),
record_size)) {
LOG(ERROR) << "Invalid ciphertext size passed.";
return false;
}
std::string decrypted_record_string;
if (!TransformRecord(Direction::DECRYPT, ciphertext, content_encryption_key,
nonce, &decrypted_record_string)) {
LOG(ERROR) << "Unable to transform the record.";
return false;
}
DCHECK(!decrypted_record_string.empty());
std::string_view decrypted_record(decrypted_record_string);
if (!encryption_scheme_->ValidateAndRemovePadding(decrypted_record)) {
LOG(ERROR) << "Padding could not be validated or removed.";
return false;
}
*plaintext = decrypted_record;
return true;
}
bool GCMMessageCryptographer::TransformRecord(Direction direction,
std::string_view input,
std::string_view key,
std::string_view nonce,
std::string* output) const {
DCHECK(output);
const EVP_AEAD* aead = EVP_aead_aes_128_gcm();
EVP_AEAD_CTX context;
if (!EVP_AEAD_CTX_init(&context, aead,
reinterpret_cast<const uint8_t*>(key.data()),
key.size(), EVP_AEAD_DEFAULT_TAG_LENGTH, nullptr)) {
return false;
}
base::CheckedNumeric<size_t> maximum_output_length(input.size());
if (direction == Direction::ENCRYPT)
maximum_output_length += kAuthenticationTagBytes;
size_t output_length = 0;
output->resize(maximum_output_length.ValueOrDie());
EVP_AEAD_CTX_TransformFunction* transform_function =
direction == Direction::ENCRYPT ? EVP_AEAD_CTX_seal : EVP_AEAD_CTX_open;
if (!transform_function(
&context, reinterpret_cast<uint8_t*>(output->data()), &output_length,
output->size(), reinterpret_cast<const uint8_t*>(nonce.data()),
nonce.size(), reinterpret_cast<const uint8_t*>(input.data()),
input.size(), nullptr, 0)) {
EVP_AEAD_CTX_cleanup(&context);
return false;
}
EVP_AEAD_CTX_cleanup(&context);
base::CheckedNumeric<size_t> expected_output_length(input.size());
if (direction == Direction::ENCRYPT)
expected_output_length += kAuthenticationTagBytes;
else
expected_output_length -= kAuthenticationTagBytes;
DCHECK_EQ(expected_output_length.ValueOrDie(), output_length);
output->resize(output_length);
return true;
}
std::string GCMMessageCryptographer::DeriveContentEncryptionKey(
std::string_view recipient_public_key,
std::string_view sender_public_key,
std::string_view ecdh_shared_secret,
std::string_view salt) const {
std::string content_encryption_key_info =
encryption_scheme_->GenerateInfoForContentEncoding(
EncryptionScheme::EncodingType::CONTENT_ENCRYPTION_KEY,
recipient_public_key, sender_public_key);
return crypto::HkdfSha256(ecdh_shared_secret, salt,
content_encryption_key_info,
kContentEncryptionKeySize);
}
std::string GCMMessageCryptographer::DeriveNonce(
std::string_view recipient_public_key,
std::string_view sender_public_key,
std::string_view ecdh_shared_secret,
std::string_view salt) const {
std::string nonce_info = encryption_scheme_->GenerateInfoForContentEncoding(
EncryptionScheme::EncodingType::NONCE, recipient_public_key,
sender_public_key);
// https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-02
// defines that the result should be XOR'ed with the record's sequence number,
// however, Web Push encryption is limited to a single record per
// https://tools.ietf.org/html/draft-ietf-webpush-encryption-03.
return crypto::HkdfSha256(ecdh_shared_secret, salt, nonce_info, kNonceSize);
}
} // namespace gcm
|