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
|
/*
* encryption and decryption routines
*
* Copyright (C) 2014-2016 LastPass.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
*
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*
* See LICENSE.OpenSSL for more details regarding this exception.
*/
#include "cipher.h"
#include "util.h"
#include <sys/mman.h>
#include <openssl/evp.h>
#include <openssl/aes.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/bio.h>
#include <openssl/buffer.h>
#include <openssl/x509.h>
#include <string.h>
#include <openssl/err.h>
#define LP_PKEY_PREFIX "LastPassPrivateKey<"
#define LP_PKEY_SUFFIX ">LastPassPrivateKey"
char *cipher_rsa_decrypt(const unsigned char *ciphertext, size_t len, const struct private_key *private_key)
{
PKCS8_PRIV_KEY_INFO *p8inf = NULL;
EVP_PKEY *pkey = NULL;
RSA *rsa = NULL;
BIO *memory = NULL;
char *ret = NULL;
if (!len)
return NULL;
memory = BIO_new(BIO_s_mem());
if (BIO_write(memory, private_key->key, private_key->len) < 0)
goto out;
p8inf = d2i_PKCS8_PRIV_KEY_INFO_bio(memory, NULL);
if (!p8inf)
goto out;
pkey = EVP_PKCS82PKEY(p8inf);
if (!pkey)
goto out;
rsa = EVP_PKEY_get1_RSA(pkey);
if (!rsa)
goto out;
ret = xcalloc(len + 1, 1);
if (RSA_private_decrypt(len, (unsigned char *)ciphertext, (unsigned char *)ret, rsa, RSA_PKCS1_OAEP_PADDING) < 0) {
free(ret);
ret = NULL;
goto out;
}
out:
PKCS8_PRIV_KEY_INFO_free(p8inf);
EVP_PKEY_free(pkey);
RSA_free(rsa);
BIO_free_all(memory);
return ret;
}
int cipher_rsa_encrypt_bytes(const unsigned char *plaintext,
size_t in_len,
const struct public_key *public_key,
unsigned char *out_crypttext, size_t *out_len)
{
EVP_PKEY *pubkey = NULL;
RSA *rsa = NULL;
BIO *memory = NULL;
int ret;
if (*out_len < public_key->len) {
ret = -EINVAL;
goto out;
}
memory = BIO_new(BIO_s_mem());
ret = BIO_write(memory, public_key->key, public_key->len);
if (ret < 0)
goto out;
ret = -EIO;
pubkey = d2i_PUBKEY_bio(memory, NULL);
if (!pubkey)
goto out;
rsa = EVP_PKEY_get1_RSA(pubkey);
if (!rsa)
goto out;
ret = RSA_public_encrypt(in_len, plaintext,
out_crypttext,
rsa, RSA_PKCS1_OAEP_PADDING);
if (ret < 0)
goto out;
*out_len = ret;
ret = 0;
out:
EVP_PKEY_free(pubkey);
RSA_free(rsa);
BIO_free_all(memory);
return ret;
}
int cipher_rsa_encrypt(const char *plaintext,
const struct public_key *public_key,
unsigned char *out_crypttext, size_t *out_len)
{
return cipher_rsa_encrypt_bytes((unsigned char *) plaintext,
strlen(plaintext),
public_key, out_crypttext, out_len);
}
char *cipher_aes_decrypt(const unsigned char *ciphertext, size_t len, const unsigned char key[KDF_HASH_LEN])
{
EVP_CIPHER_CTX *ctx;
char *plaintext;
int out_len;
if (!len)
return NULL;
ctx = EVP_CIPHER_CTX_new();
if (!ctx)
return NULL;
plaintext = xcalloc(len + AES_BLOCK_SIZE + 1, 1);
if (len >= 33 && len % 16 == 1 && ciphertext[0] == '!') {
if (!EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, (unsigned char *)(ciphertext + 1)))
goto error;
ciphertext += 17;
len -= 17;
} else {
if (!EVP_DecryptInit_ex(ctx, EVP_aes_256_ecb(), NULL, key, NULL))
goto error;
}
if (!EVP_DecryptUpdate(ctx, (unsigned char *)plaintext, &out_len, (unsigned char *)ciphertext, len))
goto error;
len = out_len;
if (!EVP_DecryptFinal_ex(ctx, (unsigned char *)(plaintext + out_len), &out_len))
goto error;
len += out_len;
plaintext[len] = '\0';
EVP_CIPHER_CTX_free(ctx);
return plaintext;
error:
EVP_CIPHER_CTX_free(ctx);
secure_clear(plaintext, len + AES_BLOCK_SIZE + 1);
free(plaintext);
return NULL;
}
static
size_t cipher_aes_encrypt_bytes(const unsigned char *bytes, size_t len,
const unsigned char key[KDF_HASH_LEN],
const unsigned char *iv,
unsigned char **out)
{
EVP_CIPHER_CTX *ctx;
int out_len;
size_t ret_len = 0;
unsigned char *ctext;
ctext = *out;
if (!ctext)
ctext = xcalloc(len + AES_BLOCK_SIZE * 2 + 1, 1);
ctx = EVP_CIPHER_CTX_new();
if (!ctx)
goto error;
if (!EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv))
goto error;
if (!EVP_EncryptUpdate(ctx, ctext, &out_len, bytes, len))
goto error;
ret_len += out_len;
if (!EVP_EncryptFinal_ex(ctx, ctext + ret_len, &out_len))
goto error;
ret_len += out_len;
EVP_CIPHER_CTX_free(ctx);
*out = ctext;
return ret_len;
error:
EVP_CIPHER_CTX_free(ctx);
if (!*out)
free(ctext);
die("Failed to encrypt data.");
}
size_t cipher_aes_encrypt(const char *plaintext,
const unsigned char key[KDF_HASH_LEN],
unsigned char **out)
{
unsigned char *ciphertext;
unsigned char *tmp;
unsigned char iv[AES_BLOCK_SIZE];
int in_len;
size_t len;
if (!RAND_bytes(iv, AES_BLOCK_SIZE))
die("Could not generate random bytes for CBC IV.");
in_len = strlen(plaintext);
ciphertext = xcalloc(in_len + AES_BLOCK_SIZE * 2 + 1, 1);
ciphertext[0] = '!';
len = 1;
memcpy(ciphertext + len, iv, AES_BLOCK_SIZE);
len += AES_BLOCK_SIZE;
tmp = ciphertext + len;
len += cipher_aes_encrypt_bytes((unsigned char *)plaintext, in_len,
key, iv, &tmp);
*out = ciphertext;
return len;
}
static char *base64(const unsigned char *bytes, size_t len)
{
BIO *memory, *b64;
BUF_MEM *buffer;
char *output;
b64 = BIO_new(BIO_f_base64());
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
memory = BIO_new(BIO_s_mem());
if (!b64 || !memory)
goto error;
b64 = BIO_push(b64, memory);
if (!b64)
goto error;
if (BIO_write(b64, bytes, len) < 0 || BIO_flush(b64) < 0)
goto error;
BIO_get_mem_ptr(b64, &buffer);
output = xmalloc(buffer->length + 1);
memcpy(output, buffer->data, buffer->length);
output[buffer->length] = '\0';
BIO_free_all(b64);
return output;
error:
die("Could not base64 the given bytes.");
}
char *cipher_base64(const unsigned char *bytes, size_t len)
{
_cleanup_free_ char *iv = NULL;
_cleanup_free_ char *data = NULL;
char *output;
if (len >= 33 && bytes[0] == '!' && len % 16 == 1) {
iv = base64(bytes + 1, 16);
data = base64(bytes + 17, len - 17);
xasprintf(&output, "!%s|%s", iv, data);
return output;
}
return base64(bytes, len);
}
static size_t unbase64(const char *bytes, unsigned char **unbase64)
{
size_t len;
BIO *memory, *b64;
unsigned char *buffer;
len = strlen(bytes);
if (!len)
goto error;
b64 = BIO_new(BIO_f_base64());
memory = BIO_new_mem_buf((char *)bytes, len);
if (!b64 || !memory)
goto error;
b64 = BIO_push(b64, memory);
if (!b64)
goto error;
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
buffer = xcalloc(len + 1, 1);
len = BIO_read(b64, buffer, len);
if ((int)len <= 0)
goto error;
buffer[len] = '\0';
BIO_free_all(b64);
*unbase64 = buffer;
return len;
error:
die("Could not unbase64 the given bytes.");
}
size_t cipher_unbase64(const char *ciphertext, unsigned char **b64data)
{
_cleanup_free_ char *copy = NULL;
_cleanup_free_ unsigned char *iv = NULL;
_cleanup_free_ unsigned char *data = NULL;
unsigned char *unbase64_ciphertext = NULL;
char *pipe;
size_t iv_len, data_len, len;
if (!strlen(ciphertext))
return 0;
if (ciphertext[0] != '!')
return unbase64(ciphertext, b64data);
copy = xstrdup(&ciphertext[1]);
pipe = strchr(copy, '|');
if (!pipe)
return 0;
*pipe = '\0';
iv_len = unbase64(copy, &iv);
data_len = unbase64(pipe + 1, &data);
len = iv_len + data_len + 1 /* '!' */;
unbase64_ciphertext = xcalloc(len, 1);
unbase64_ciphertext[0] = '!';
memcpy(&unbase64_ciphertext[1], iv, iv_len);
memcpy(&unbase64_ciphertext[1 + iv_len], data, data_len);
*b64data = unbase64_ciphertext;
return len;
}
char *cipher_aes_decrypt_base64(const char *ciphertext, const unsigned char key[KDF_HASH_LEN])
{
_cleanup_free_ unsigned char *unbase64_ciphertext = NULL;
size_t len;
len = cipher_unbase64(ciphertext, &unbase64_ciphertext);
if (!len)
return NULL;
return cipher_aes_decrypt(unbase64_ciphertext, len, key);
}
char *encrypt_and_base64(const char *str, unsigned const char key[KDF_HASH_LEN])
{
unsigned char *intermediate = NULL;
char *base64 = NULL;
size_t len;
base64 = xstrdup(str);
if (!*base64)
return base64;
len = cipher_aes_encrypt(base64, key, &intermediate);
free(base64);
base64 = cipher_base64(intermediate, len);
free(intermediate);
return base64;
}
/*
* Decrypt the LastPass sharing RSA private key. The key has start_str
* and end_str prepended / appended before encryption, and the result
* is encrypted with the AES key.
*
* On success, the resulting key is stored in out_key and mlock()ed.
* If there is a non-fatal error (or no key), the resulting structure
* will have len = 0.
*/
void cipher_decrypt_private_key(const char *key_hex,
unsigned const char key[KDF_HASH_LEN],
struct private_key *out_key)
{
size_t len;
_cleanup_free_ unsigned char *encrypted_key = NULL;
_cleanup_free_ char *decrypted_key = NULL;
unsigned char *encrypted_key_start;
char *start, *end;
unsigned char *dec_key = NULL;
int ret;
#define start_str LP_PKEY_PREFIX
#define end_str LP_PKEY_SUFFIX
memset(out_key, 0, sizeof(*out_key));
len = strlen(key_hex);
if (!len)
return;
if (key_hex[0] == '!') {
/* v2 format */
decrypted_key = cipher_aes_decrypt_base64(
key_hex, key);
} else {
if (len % 2 != 0)
die("Key hex in wrong format.");
len /= 2;
/* v1 format */
len += 16 /* IV */ + 1 /* bang symbol */;
encrypted_key = xcalloc(len + 1, 1);
encrypted_key[0] = '!';
memcpy(&encrypted_key[1], key, 16);
encrypted_key_start = &encrypted_key[17];
hex_to_bytes(key_hex, &encrypted_key_start);
decrypted_key = cipher_aes_decrypt(encrypted_key, len, key);
}
if (!decrypted_key) {
warn("Could not decrypt private key.");
return;
}
start = strstr(decrypted_key, start_str);
end = strstr(decrypted_key, end_str);
if (!start || !end || end <= start) {
warn("Could not decode decrypted private key.");
return;
}
start += strlen(start_str);
*end = '\0';
ret = hex_to_bytes(start, &dec_key);
if (ret)
die("Invalid private key after decryption and decoding.");
out_key->key = dec_key;
out_key->len = strlen(start) / 2;
mlock(out_key->key, out_key->len);
#undef start_str
#undef end_str
}
/*
* Encrypt RSA sharing key. Encrypted key is returned as a hex-encoded string.
*/
char *cipher_encrypt_private_key(struct private_key *private_key,
unsigned const char key[KDF_HASH_LEN])
{
unsigned char *key_ptext;
unsigned char *ctext = NULL;
char *key_hex_dst;
char *ctext_hex = NULL;
size_t len, ctext_len, hex_len;
if (!private_key->len)
return xstrdup("");
hex_len = private_key->len * 2;
len = strlen(LP_PKEY_PREFIX) + hex_len + strlen(LP_PKEY_SUFFIX);
key_ptext = xcalloc(len + 1, 1);
memcpy(key_ptext, LP_PKEY_PREFIX, strlen(LP_PKEY_PREFIX));
key_hex_dst = (char *) key_ptext + strlen(LP_PKEY_PREFIX);
bytes_to_hex(private_key->key, &key_hex_dst, private_key->len);
memcpy(key_ptext + strlen(LP_PKEY_PREFIX) + hex_len,
LP_PKEY_SUFFIX, strlen(LP_PKEY_SUFFIX));
ctext_len = cipher_aes_encrypt_bytes(key_ptext, len, key, key, &ctext);
bytes_to_hex(ctext, &ctext_hex, ctext_len);
free(ctext);
return ctext_hex;
}
/*
* Get hex-encoded sha256() of a buffer.
*/
char *cipher_sha256_hex(unsigned char *bytes, size_t len)
{
char *tmp = NULL;
SHA256_CTX sha256;
unsigned char hash[SHA256_DIGEST_LENGTH];
if (!SHA256_Init(&sha256))
goto die;
if (!SHA256_Update(&sha256, bytes, len))
goto die;
if (!SHA256_Final(hash, &sha256))
goto die;
bytes_to_hex(hash, &tmp, sizeof(hash));
return tmp;
die:
die("SHA-256 hash failed");
}
char *cipher_sha256_b64(unsigned char *bytes, size_t len)
{
_cleanup_free_ unsigned char *hash_raw = NULL;
_cleanup_free_ char *hash_hex = NULL;
hash_hex = cipher_sha256_hex(bytes, len);
hex_to_bytes(hash_hex, &hash_raw);
return base64(hash_raw, strlen(hash_hex) / 2);
}
|