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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
//------------------------------------------------------------------------------
// <copyright file="SqlColumnEncryptionCertificateStoreProvider.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">balnee</owner>
// <owner current="true" primary="false">krishnib</owner>
//------------------------------------------------------------------------------
namespace System.Data.SqlClient
{
using System;
using System.Text;
using System.Data.Common;
using System.Diagnostics;
using System.Globalization;
using System.Security;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
/// <summary>
/// Certificate Key Store Provider class
/// </summary>
public class SqlColumnEncryptionCertificateStoreProvider : SqlColumnEncryptionKeyStoreProvider
{
// Constants
//
// Assumption: Certificate Locations (LocalMachine & CurrentUser), Certificate Store name "My"
// Certificate provider name (CertificateStore) dont need to be localized.
/// <summary>
/// Name for the certificate key store provider.
/// </summary>
public const string ProviderName = @"MSSQL_CERTIFICATE_STORE";
/// <summary>
/// RSA_OAEP is the only algorithm supported for encrypting/decrypting column encryption keys.
/// </summary>
internal const string RSAEncryptionAlgorithmWithOAEP = @"RSA_OAEP";
/// <summary>
/// LocalMachine certificate store location. Valid certificate locations are LocalMachine and CurrentUser.
/// </summary>
private const string _certLocationLocalMachine = @"LocalMachine";
/// <summary>
/// CurrentUser certificate store location. Valid certificate locations are LocalMachine and CurrentUser.
/// </summary>
private const string _certLocationCurrentUser = @"CurrentUser";
/// <summary>
/// Valid certificate store
/// </summary>
private const string _myCertificateStore = @"My";
/// <summary>
/// Certificate path format. This is a custom format.
/// </summary>
private const string _certificatePathFormat = @"[LocalMachine|CurrentUser]/My/[Thumbprint]";
/// <summary>
/// Hashig algoirthm used for signing
/// </summary>
private const string _hashingAlgorithm = @"SHA256";
/// <summary>
/// Algorithm version
/// </summary>
private readonly byte[] _version = new byte[] { 0x01 };
/// <summary>
/// This function uses a certificate specified by the key path
/// and decrypts an encrypted CEK with RSA encryption algorithm.
/// </summary>
/// <param name="masterKeyPath">Complete path of a certificate</param>
/// <param name="encryptionAlgorithm">Asymmetric Key Encryption Algorithm</param>
/// <param name="encryptedColumnEncryptionKey">Encrypted Column Encryption Key</param>
/// <returns>Plain text column encryption key</returns>
public override byte[] DecryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] encryptedColumnEncryptionKey)
{
// Validate the input parameters
ValidateNonEmptyCertificatePath(masterKeyPath, isSystemOp: true);
if (null == encryptedColumnEncryptionKey)
{
throw SQL.NullEncryptedColumnEncryptionKey();
}
else if (0 == encryptedColumnEncryptionKey.Length)
{
throw SQL.EmptyEncryptedColumnEncryptionKey();
}
// Validate encryptionAlgorithm
ValidateEncryptionAlgorithm(encryptionAlgorithm, isSystemOp: true);
// Validate key path length
ValidateCertificatePathLength(masterKeyPath, isSystemOp: true);
// Parse the path and get the X509 cert
X509Certificate2 certificate = GetCertificateByPath(masterKeyPath, isSystemOp: true);
int keySizeInBytes = certificate.PublicKey.Key.KeySize / 8;
// Validate and decrypt the EncryptedColumnEncryptionKey
// Format is
// version + keyPathLength + ciphertextLength + keyPath + ciphertext + signature
//
// keyPath is present in the encrypted column encryption key for identifying the original source of the asymmetric key pair and
// we will not validate it against the data contained in the CMK metadata (masterKeyPath).
// Validate the version byte
if (encryptedColumnEncryptionKey[0] != _version[0])
{
throw SQL.InvalidAlgorithmVersionInEncryptedCEK(encryptedColumnEncryptionKey[0], _version[0]);
}
// Get key path length
int currentIndex = _version.Length;
Int16 keyPathLength = BitConverter.ToInt16(encryptedColumnEncryptionKey, currentIndex);
currentIndex += sizeof(Int16);
// Get ciphertext length
int cipherTextLength = BitConverter.ToInt16(encryptedColumnEncryptionKey, currentIndex);
currentIndex += sizeof(Int16);
// Skip KeyPath
// KeyPath exists only for troubleshooting purposes and doesnt need validation.
currentIndex += keyPathLength;
// validate the ciphertext length
if (cipherTextLength != keySizeInBytes)
{
throw SQL.InvalidCiphertextLengthInEncryptedCEK(cipherTextLength, keySizeInBytes, masterKeyPath);
}
// Validate the signature length
// Signature length should be same as the key side for RSA PKCSv1.5
int signatureLength = encryptedColumnEncryptionKey.Length - currentIndex - cipherTextLength;
if (signatureLength != keySizeInBytes)
{
throw SQL.InvalidSignatureInEncryptedCEK(signatureLength, keySizeInBytes, masterKeyPath);
}
// Get ciphertext
byte[] cipherText = new byte[cipherTextLength];
Buffer.BlockCopy(encryptedColumnEncryptionKey, currentIndex, cipherText, 0, cipherText.Length);
currentIndex += cipherTextLength;
// Get signature
byte[] signature = new byte[signatureLength];
Buffer.BlockCopy(encryptedColumnEncryptionKey, currentIndex, signature, 0, signature.Length);
// Compute the hash to validate the signature
byte[] hash;
using (SHA256Cng sha256 = new SHA256Cng())
{
sha256.TransformFinalBlock(encryptedColumnEncryptionKey, 0, encryptedColumnEncryptionKey.Length - signature.Length);
hash = sha256.Hash;
}
Debug.Assert(hash != null, @"hash should not be null while decrypting encrypted column encryption key.");
// Validate the signature
if (!RSAVerifySignature(hash, signature, certificate))
{
throw SQL.InvalidCertificateSignature(masterKeyPath);
}
// Decrypt the CEK
return RSADecrypt(cipherText, certificate);
}
/// <summary>
/// This function uses a certificate specified by the key path
/// and encrypts CEK with RSA encryption algorithm.
/// </summary>
/// <param name="keyPath">Complete path of a certificate</param>
/// <param name="encryptionAlgorithm">Asymmetric Key Encryption Algorithm</param>
/// <param name="columnEncryptionKey">Plain text column encryption key</param>
/// <returns>Encrypted column encryption key</returns>
public override byte[] EncryptColumnEncryptionKey(string masterKeyPath, string encryptionAlgorithm, byte[] columnEncryptionKey)
{
// Validate the input parameters
ValidateNonEmptyCertificatePath(masterKeyPath, isSystemOp: false);
if (null == columnEncryptionKey)
{
throw SQL.NullColumnEncryptionKey();
}
else if (0 == columnEncryptionKey.Length)
{
throw SQL.EmptyColumnEncryptionKey();
}
// Validate encryptionAlgorithm
ValidateEncryptionAlgorithm(encryptionAlgorithm, isSystemOp: false);
// Validate masterKeyPath Length
ValidateCertificatePathLength(masterKeyPath, isSystemOp: false);
// Parse the certificate path and get the X509 cert
X509Certificate2 certificate = GetCertificateByPath(masterKeyPath, isSystemOp: false);
int keySizeInBytes = certificate.PublicKey.Key.KeySize / 8;
// Construct the encryptedColumnEncryptionKey
// Format is
// version + keyPathLength + ciphertextLength + ciphertext + keyPath + signature
//
// We currently only support one version
byte[] version = new byte[] { _version[0] };
// Get the Unicode encoded bytes of cultureinvariant lower case masterKeyPath
byte[] masterKeyPathBytes = Encoding.Unicode.GetBytes(masterKeyPath.ToLowerInvariant());
byte[] keyPathLength = BitConverter.GetBytes((Int16)masterKeyPathBytes.Length);
// Encrypt the plain text
byte[] cipherText = RSAEncrypt(columnEncryptionKey, certificate);
byte[] cipherTextLength = BitConverter.GetBytes((Int16)cipherText.Length);
Debug.Assert(cipherText.Length == keySizeInBytes, @"cipherText length does not match the RSA key size");
// Compute hash
// SHA-2-256(version + keyPathLength + ciphertextLength + keyPath + ciphertext)
byte[] hash;
using (SHA256Cng sha256 = new SHA256Cng())
{
sha256.TransformBlock(version, 0, version.Length, version, 0);
sha256.TransformBlock(keyPathLength, 0, keyPathLength.Length, keyPathLength, 0);
sha256.TransformBlock(cipherTextLength, 0, cipherTextLength.Length, cipherTextLength, 0);
sha256.TransformBlock(masterKeyPathBytes, 0, masterKeyPathBytes.Length, masterKeyPathBytes, 0);
sha256.TransformFinalBlock(cipherText, 0, cipherText.Length);
hash = sha256.Hash;
}
// Sign the hash
byte[] signedHash = RSASignHashedData(hash, certificate);
Debug.Assert(signedHash.Length == keySizeInBytes, @"signed hash length does not match the RSA key size");
Debug.Assert(RSAVerifySignature(hash, signedHash, certificate), @"Invalid signature of the encrypted column encryption key computed.");
// Construct the encrypted column encryption key
// EncryptedColumnEncryptionKey = version + keyPathLength + ciphertextLength + keyPath + ciphertext + signature
int encryptedColumnEncryptionKeyLength = version.Length + cipherTextLength.Length + keyPathLength.Length + cipherText.Length + masterKeyPathBytes.Length + signedHash.Length;
byte[] encryptedColumnEncryptionKey = new byte[encryptedColumnEncryptionKeyLength];
// Copy version byte
int currentIndex = 0;
Buffer.BlockCopy(version, 0, encryptedColumnEncryptionKey, currentIndex, version.Length);
currentIndex += version.Length;
// Copy key path length
Buffer.BlockCopy(keyPathLength, 0, encryptedColumnEncryptionKey, currentIndex, keyPathLength.Length);
currentIndex += keyPathLength.Length;
// Copy ciphertext length
Buffer.BlockCopy(cipherTextLength, 0, encryptedColumnEncryptionKey, currentIndex, cipherTextLength.Length);
currentIndex += cipherTextLength.Length;
// Copy key path
Buffer.BlockCopy(masterKeyPathBytes, 0, encryptedColumnEncryptionKey, currentIndex, masterKeyPathBytes.Length);
currentIndex += masterKeyPathBytes.Length;
// Copy ciphertext
Buffer.BlockCopy(cipherText, 0, encryptedColumnEncryptionKey, currentIndex, cipherText.Length);
currentIndex += cipherText.Length;
// copy the signature
Buffer.BlockCopy(signedHash, 0, encryptedColumnEncryptionKey, currentIndex, signedHash.Length);
return encryptedColumnEncryptionKey;
}
/// <summary>
/// This function validates that the encryption algorithm is RSA_OAEP and if it is not,
/// then throws an exception
/// </summary>
/// <param name="encryptionAlgorithm">Asymmetric key encryptio algorithm</param>
private void ValidateEncryptionAlgorithm(string encryptionAlgorithm, bool isSystemOp)
{
// This validates that the encryption algorithm is RSA_OAEP
if (null == encryptionAlgorithm)
{
throw SQL.NullKeyEncryptionAlgorithm(isSystemOp);
}
if (string.Equals(encryptionAlgorithm, RSAEncryptionAlgorithmWithOAEP, StringComparison.OrdinalIgnoreCase) != true)
{
throw SQL.InvalidKeyEncryptionAlgorithm(encryptionAlgorithm, RSAEncryptionAlgorithmWithOAEP, isSystemOp);
}
}
/// <summary>
/// Certificate path length has to fit in two bytes, so check its value against Int16.MaxValue
/// </summary>
/// <param name="masterKeyPath"></param>
/// <param name="isSystemOp"></param>
private void ValidateCertificatePathLength(string masterKeyPath, bool isSystemOp)
{
if (masterKeyPath.Length >= Int16.MaxValue)
{
throw SQL.LargeCertificatePathLength(masterKeyPath.Length, Int16.MaxValue, isSystemOp);
}
}
/// <summary>
/// Gets a string array containing Valid certificate locations.
/// </summary>
private string[] GetValidCertificateLocations()
{
return new string[2] {_certLocationLocalMachine, _certLocationCurrentUser};
}
/// <summary>
/// Checks if the certificate path is Empty or Null (and raises exception if they are).
/// </summary>
private void ValidateNonEmptyCertificatePath(string masterKeyPath, bool isSystemOp)
{
if (string.IsNullOrWhiteSpace(masterKeyPath))
{
if (null == masterKeyPath)
{
throw SQL.NullCertificatePath(GetValidCertificateLocations(), isSystemOp);
}
else
{
throw SQL.InvalidCertificatePath(masterKeyPath, GetValidCertificateLocations(), isSystemOp);
}
}
}
/// <summary>
/// Parses the given certificate path, searches in certificate store and returns a matching certificate
/// </summary>
/// <param name="keyPath">
/// Certificate key path. Format of the path is [LocalMachine|CurrentUser]/[storename]/thumbprint
/// </param>
/// <returns>Returns the certificate identified by the certificate path</returns>
private X509Certificate2 GetCertificateByPath(string keyPath, bool isSystemOp)
{
Debug.Assert(!string.IsNullOrEmpty(keyPath));
// Assign default values for omitted fields
StoreLocation storeLocation = StoreLocation.LocalMachine; // Default to Local Machine
StoreName storeName = StoreName.My;
string[] certParts = keyPath.Split('/');
// Validate certificate path
// Certificate path should only contain 3 parts (Certificate Location, Certificate Store Name and Thumbprint)
if (certParts.Length > 3)
{
throw SQL.InvalidCertificatePath(keyPath, GetValidCertificateLocations(), isSystemOp);
}
// Extract the store location where the cert is stored
if (certParts.Length > 2)
{
if (string.Equals(certParts[0], _certLocationLocalMachine, StringComparison.OrdinalIgnoreCase) == true)
{
storeLocation = StoreLocation.LocalMachine;
}
else if (string.Equals(certParts[0], _certLocationCurrentUser, StringComparison.OrdinalIgnoreCase) == true)
{
storeLocation = StoreLocation.CurrentUser;
}
else
{
// throw an invalid certificate location exception
throw SQL.InvalidCertificateLocation(certParts[0], keyPath, GetValidCertificateLocations(), isSystemOp);
}
}
// Parse the certificate store name
if (certParts.Length > 1)
{
if (string.Equals(certParts[certParts.Length - 2], _myCertificateStore, StringComparison.OrdinalIgnoreCase) == true)
{
storeName = StoreName.My;
}
else
{
// We only support storing them in My certificate store
throw SQL.InvalidCertificateStore(certParts[certParts.Length - 2], keyPath, _myCertificateStore, isSystemOp);
}
}
// Get thumpbrint
string thumbprint = certParts[certParts.Length - 1];
if (string.IsNullOrEmpty(thumbprint))
{
// An empty thumbprint specified
throw SQL.EmptyCertificateThumbprint(keyPath, isSystemOp);
}
// Find the certificate and return
return GetCertificate(storeLocation, storeName, keyPath, thumbprint, isSystemOp);
}
/// <summary>
/// Searches for a certificate in certificate store and returns the matching certificate
/// </summary>
/// <param name="storeLocation">Store Location: This can be one of LocalMachine or UserName</param>
/// <param name="storeName">Store Location: Currently this can only be My store.</param>
/// <param name="thumbprint">Certificate thumbprint</param>
/// <returns>Matching certificate</returns>
private X509Certificate2 GetCertificate(StoreLocation storeLocation, StoreName storeName, string masterKeyPath, string thumbprint, bool isSystemOp)
{
// Open specified certificate store
X509Store certificateStore = null;
try
{
certificateStore = new X509Store(storeName, storeLocation);
certificateStore.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
// Search for the specified certificate
X509Certificate2Collection matchingCertificates =
certificateStore.Certificates.Find(X509FindType.FindByThumbprint,
thumbprint,
false);
// Throw an exception if a cert with the specified thumbprint is not found
if (matchingCertificates == null || matchingCertificates.Count == 0)
{
throw SQL.CertificateNotFound(thumbprint, storeName.ToString(), storeLocation.ToString(), isSystemOp);
}
X509Certificate2 certificate = matchingCertificates[0];
if (!certificate.HasPrivateKey)
{
// ensure the certificate has private key
throw SQL.CertificateWithNoPrivateKey(masterKeyPath, isSystemOp);
}
// return the matching certificate
return certificate;
}
finally
{
// Close the certificate store
if (certificateStore != null)
{
certificateStore.Close();
}
}
}
/// <summary>
/// Encrypt the text using specified certificate.
/// </summary>
/// <param name="plaintext">Text to encrypt.</param>
/// <param name="certificate">Certificate object.</param>
/// <param name="masterKeyPath">Master key path that was used.</param>
/// <returns>Returns an encrypted blob or throws an exception if there are any errors.</returns>
private byte[] RSAEncrypt(byte[] plainText, X509Certificate2 certificate)
{
Debug.Assert(plainText != null);
Debug.Assert(certificate != null);
Debug.Assert(certificate.HasPrivateKey, "Attempting to encrypt with cert without privatekey");
RSACryptoServiceProvider rscp = (RSACryptoServiceProvider)certificate.PublicKey.Key;
return rscp.Encrypt(plainText, fOAEP: true);
}
/// <summary>
/// Encrypt the text using specified certificate.
/// </summary>
/// <param name="plaintext">Text to decrypt.</param>
/// <param name="certificate">Certificate object.</param>
/// <param name="masterKeyPath">Master key path that was used.</param>
private byte[] RSADecrypt(byte[] cipherText, X509Certificate2 certificate)
{
Debug.Assert((cipherText != null) && (cipherText.Length != 0));
Debug.Assert(certificate != null);
Debug.Assert(certificate.HasPrivateKey, "Attempting to decrypt with cert without privatekey");
RSACryptoServiceProvider rscp = (RSACryptoServiceProvider)certificate.PrivateKey;
return rscp.Decrypt(cipherText, fOAEP: true);
}
/// <summary>
/// Generates signature based on RSA PKCS#v1.5 scheme using a specified certificate.
/// </summary>
/// <param name="dataToSign">Text to sign.</param>
/// <param name="certificate">Certificate object.</param>
/// <returns>Signature</returns>
private byte[] RSASignHashedData(byte[] dataToSign, X509Certificate2 certificate)
{
Debug.Assert((dataToSign != null) && (dataToSign.Length != 0));
Debug.Assert(certificate != null);
Debug.Assert(certificate.HasPrivateKey, "Attempting to sign with cert without privatekey");
// Prepare RSACryptoServiceProvider from certificate's private key
RSACryptoServiceProvider rscp = GetCSPFromCertificatePrivateKey(certificate);
// Prepare RSAPKCS1SignatureFormatter for signing the passed in hash
RSAPKCS1SignatureFormatter rsaFormatter = new RSAPKCS1SignatureFormatter(rscp);
//Set the hash algorithm to SHA256.
rsaFormatter.SetHashAlgorithm(_hashingAlgorithm);
//Create a signature for HashValue and return it.
return rsaFormatter.CreateSignature(dataToSign);
}
/// <summary>
/// Verifies the given RSA PKCSv1.5 signature.
/// </summary>
/// <param name="dataToVerify"></param>
/// <param name="signature"></param>
/// <param name="certificate"></param>
/// <returns>true if signature is valid, false if it is not valid</returns>
private bool RSAVerifySignature(byte[] dataToVerify, byte[] signature, X509Certificate2 certificate)
{
Debug.Assert((dataToVerify != null) && (dataToVerify.Length != 0));
Debug.Assert((signature != null) && (signature.Length != 0));
Debug.Assert(certificate != null);
Debug.Assert(certificate.HasPrivateKey, "Attempting to sign with cert without privatekey");
// Prepare RSACryptoServiceProvider from certificate's private key
RSACryptoServiceProvider rscp = GetCSPFromCertificatePrivateKey(certificate);
// Prepare RSAPKCS1SignatureFormatter for signing the passed in hash
RSAPKCS1SignatureDeformatter rsaDeFormatter = new RSAPKCS1SignatureDeformatter(rscp);
//Set the hash algorithm to SHA256.
rsaDeFormatter.SetHashAlgorithm(_hashingAlgorithm);
//Create a signature for HashValue and return it.
return rsaDeFormatter.VerifySignature(dataToVerify, signature);
}
/// <summary>
/// Prepares RSACryptoServiceProvider from a given certificate's private key
/// </summary>
/// <param name="certificate"></param>
/// <returns></returns>
private RSACryptoServiceProvider GetCSPFromCertificatePrivateKey(X509Certificate2 certificate)
{
const int rsaAesProviderType = 24;
CspParameters privateKeyParams = new CspParameters();
privateKeyParams = new CspParameters();
privateKeyParams.KeyContainerName = ((RSACryptoServiceProvider)certificate.PrivateKey).CspKeyContainerInfo.KeyContainerName;
privateKeyParams.ProviderType = rsaAesProviderType /*PROV_RSA_AES*/;
privateKeyParams.KeyNumber = (int)((RSACryptoServiceProvider)certificate.PrivateKey).CspKeyContainerInfo.KeyNumber;
// For CurrentUser store, use UseExistingKey
// For LocalMachine store, use UseMachineKeyStore
// CspKeyContainerInfo.MachineKeyStore already contains the appropriate information so just use it.
if (((RSACryptoServiceProvider)certificate.PrivateKey).CspKeyContainerInfo.MachineKeyStore)
{
privateKeyParams.Flags = CspProviderFlags.UseMachineKeyStore;
}
else
{
privateKeyParams.Flags = CspProviderFlags.UseExistingKey;
}
return new RSACryptoServiceProvider(privateKeyParams);
}
}
}
|