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 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2010-2022. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
#include "api_ng.h"
#include "aes.h"
#include "cipher.h"
/*
* A unified set of functions for encryption/decryption.
*
*/
ERL_NIF_TERM ng_crypto_update(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[]);
ERL_NIF_TERM ng_crypto_one_time(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[]);
/*************************************************************************/
/* Compatibility functions. */
/*************************************************************************/
#ifdef HAVE_ECB_IVEC_BUG
/* <= 0.9.8l returns faulty ivec length */
# define GET_IV_LEN(Ciph) ((Ciph)->flags & ECB_BUG_0_9_8L) ? 0 : EVP_CIPHER_iv_length((Ciph)->cipher.p)
#else
# define GET_IV_LEN(Ciph) EVP_CIPHER_iv_length((Ciph)->cipher.p)
#endif
#if !defined(HAVE_EVP_CIPHER_CTX_COPY)
/*
The EVP_CIPHER_CTX_copy is not available in older cryptolibs although
the function is needed.
Instead of implement it in-place, we have a copy here as a compatibility
function
*/
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
{
if ((in == NULL) || (in->cipher == NULL))
{
return 0;
}
#ifdef HAS_ENGINE_SUPPORT
/* Make sure it's safe to copy a cipher context using an ENGINE */
if (in->engine && !ENGINE_init(in->engine))
return 0;
#endif
EVP_CIPHER_CTX_cleanup(out);
memcpy(out,in,sizeof *out);
if (in->cipher_data && in->cipher->ctx_size)
{
out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size);
if (!out->cipher_data)
return 0;
memcpy(out->cipher_data,in->cipher_data,in->cipher->ctx_size);
}
#if defined(EVP_CIPH_CUSTOM_COPY) && defined(EVP_CTRL_COPY)
if (in->cipher->flags & EVP_CIPH_CUSTOM_COPY)
return in->cipher->ctrl((EVP_CIPHER_CTX *)in, EVP_CTRL_COPY, 0, out);
#endif
return 1;
}
/****** End of !defined(HAVE_EVP_CIPHER_CTX_COPY) ******/
#endif
/*************************************************************************/
/* Get the arguments for the initialization of the EVP_CIPHER_CTX. Check */
/* them and initialize that context. */
/*************************************************************************/
static ERL_NIF_TERM get_opts(ErlNifEnv* env, const ERL_NIF_TERM opts, int opts_arg_num, int *encflgp, ERL_NIF_TERM *padflgp)
{ /* boolean() | [{Tag,Val}] Tag = encrypt | padding */
unsigned list_len;
ERL_NIF_TERM p, hd, tl;
*padflgp = atom_false; /* Not valid as padding value */
/* First check if the opts is an atom: */
if (opts == atom_true)
{
*encflgp = 1;
*padflgp = atom_undefined;
return atom_ok;
}
if (opts == atom_false)
{
*encflgp = 0;
*padflgp = atom_undefined;
return atom_ok;
}
if (opts == atom_undefined)
/* For compat funcs in crypto.erl. TODO: check and remove */
{
*encflgp = -1;
*padflgp = atom_undefined;
return atom_ok;
}
if (!enif_is_list(env, opts) || !enif_get_list_length(env, opts, &list_len))
/* Not a boolean() and not a list, definitely an error */
return EXCP_BADARG_N(env, opts_arg_num, "Options are not a boolean or a proper list");
/* A list, might be a property list, as it should */
*encflgp = -14; /* why not? */
p = opts;
while (enif_get_list_cell(env, p, &hd, &tl))
/* Loop through the list [{Tag,Value},...]
- check that
+ the list is proper
+ each list element is a 2-tuple
+ the Tag is known
+ the Value is of right type
- assign Values of known Tags to their respective flags
*/
{
int arity;
const ERL_NIF_TERM* elements;
if (!(enif_get_tuple(env, hd, &arity, &elements) && (arity == 2)) )
return EXCP_BADARG_N(env, opts_arg_num, "Options must be a property list!");
if (elements[0] == atom_encrypt)
{
if (*encflgp != -14)
return EXCP_BADARG_N(env, opts_arg_num, "'encrypt' option is present more than once!");
else if (elements[1] == atom_true)
*encflgp = 1;
else if (elements[1] == atom_false)
*encflgp = 0;
else if (elements[1] == atom_undefined)
*encflgp = -1; /* For compat funcs in crypto.erl. TODO: check and remove */
else
return EXCP_BADARG_N(env, opts_arg_num, "The 'encrypt' option must be a boolean!");
}
else if (elements[0] == atom_padding)
{
if (*padflgp != atom_false)
return EXCP_BADARG_N(env, opts_arg_num, "The 'padding' option is present more than once!");
else if ((elements[1] == atom_undefined) ||
(elements[1] == atom_none) ||
(elements[1] == atom_zero) ||
(elements[1] == atom_random) ||
(elements[1] == atom_pkcs_padding)
)
*padflgp = elements[1];
else
return EXCP_BADARG_N(env, opts_arg_num, "Bad 'padding' option value");
}
else
{
char msg[64];
if (enif_snprintf(msg, 64, "Bad tag in option: %T", elements[0]))
return EXCP_BADARG_N(env, opts_arg_num, msg);
else
return EXCP_BADARG_N(env, opts_arg_num, "Bad tag in option!");
}
p = tl; /* prepare for handling next list element or to exit the loop */
}
if (*encflgp == -14)
*encflgp = 1; /* {encrypt,true} is the default */
if (*padflgp == atom_false)
*padflgp = atom_undefined; /* {padding,undefined} is the default */
return atom_ok;
}
static int get_init_args(ErlNifEnv* env,
struct evp_cipher_ctx *ctx_res,
const ERL_NIF_TERM argv[],
int cipher_arg_num,
int key_arg_num,
int ivec_arg_num,
int opts_arg_num,
const struct cipher_type_t **cipherp,
ERL_NIF_TERM *return_term)
{
int ivec_len;
ErlNifBinary ivec_bin;
ctx_res->ctx = NULL; /* For testing if *ctx should be freed after errors */
#if !defined(HAVE_EVP_AES_CTR)
ctx_res->env = NULL; /* For testing if *env should be freed after errors */
#endif
ctx_res->key_bin.data = NULL;
ctx_res->padding = atom_undefined;
ctx_res->padded_size = -1;
ctx_res->size = 0;
/* Two initializations to make CodeChecker happy: it gets a bit disoriented
by the NIF Exception model */
ctx_res->encflag = 0;
ctx_res->padding = atom_error;
/* Fetch the options */
if ((*return_term =
get_opts(env, argv[opts_arg_num], opts_arg_num, &(ctx_res->encflag), &(ctx_res->padding))
) != atom_ok)
goto err;
/* Fetch the key */
if (!enif_inspect_iolist_as_binary(env, argv[key_arg_num], &ctx_res->key_bin))
{
*return_term = EXCP_BADARG_N(env, key_arg_num, "Bad key");
goto err;
}
/* Fetch cipher type */
if (!enif_is_atom(env, argv[cipher_arg_num]))
{
*return_term = EXCP_BADARG_N(env, cipher_arg_num, "Cipher id is not an atom");
goto err;
}
if (!(*cipherp = get_cipher_type(argv[cipher_arg_num], ctx_res->key_bin.size)))
{
if (!get_cipher_type_no_key(argv[cipher_arg_num]))
*return_term = EXCP_BADARG_N(env, cipher_arg_num, "Unknown cipher");
else
*return_term = EXCP_BADARG_N(env, key_arg_num, "Bad key size");
goto err;
}
if ((*cipherp)->flags & AEAD_CIPHER)
{
*return_term = EXCP_BADARG_N(env, cipher_arg_num, "Missing arguments for this cipher");
goto err;
}
if (CIPHER_FORBIDDEN_IN_FIPS(*cipherp))
{
*return_term = EXCP_NOTSUP_N(env, cipher_arg_num, "Forbidden in FIPS");
goto err;
}
/* Get ivec_len for this cipher (if we found one) */
#if !defined(HAVE_EVP_AES_CTR)
/* This code is for historic OpenSSL where EVP_aes_*_ctr is not defined.... */
if ((*cipherp)->cipher.p) {
/* Not aes_ctr compatibility code since EVP_*
was defined and assigned to (*cipherp)->cipher.p */
ivec_len = GET_IV_LEN(*cipherp);
} else {
/* No EVP_* was found */
if ((*cipherp)->flags & AES_CTR_COMPAT)
/* Use aes_ctr compatibility code later */
ivec_len = 16;
else {
/* Unsupported crypto */
*return_term =
EXCP_NOTSUP_N(env, cipher_arg_num, "Cipher not supported in this libcrypto version");
goto err;
}
}
#else
/* Normal code */
if (!((*cipherp)->cipher.p)) {
*return_term =
EXCP_NOTSUP_N(env, cipher_arg_num, "Cipher not supported in this libcrypto version");
goto err;
}
ivec_len = GET_IV_LEN(*cipherp);
#endif
/* Here: (*cipherp)->cipher.p != NULL and ivec_len has a value */
#if defined(HAS_3_0_API) // Temp disallow dyn iv for >=3.0 (may core dump)
if (argv[ivec_arg_num] == atom_undefined)
{
*return_term = EXCP_NOTSUP(env, "Dynamic IV is not supported for libcrypto versions >= 3.0");
goto err;
}
#endif
/* Fetch IV */
if (ivec_len && (argv[ivec_arg_num] != atom_undefined)) {
if (!enif_inspect_iolist_as_binary(env, argv[ivec_arg_num], &ivec_bin))
{
*return_term = EXCP_BADARG_N(env, ivec_arg_num, "Bad iv type");
goto err;
}
if (ivec_len != ivec_bin.size)
{
*return_term = EXCP_BADARG_N(env, ivec_arg_num, "Bad iv size");
goto err;
}
}
ctx_res->iv_len = ivec_len;
#if !defined(HAVE_EVP_AES_CTR)
if (!((*cipherp)->cipher.p)
&& ((*cipherp)->flags & AES_CTR_COMPAT)
) {
/* Must use aes_ctr compatibility code */
ERL_NIF_TERM ecount_bin;
unsigned char *outp;
if ((outp = enif_make_new_binary(env, AES_BLOCK_SIZE, &ecount_bin)) == NULL) {
*return_term = EXCP_ERROR(env, "Can't allocate output data binary");
goto err;
}
memset(outp, 0, AES_BLOCK_SIZE);
ctx_res->env = enif_alloc_env();
if (!ctx_res->env) {
*return_term = EXCP_ERROR(env, "Can't allocate env");
goto err;
}
ctx_res->state =
enif_make_copy(ctx_res->env,
enif_make_tuple4(env, argv[key_arg_num], argv[ivec_arg_num], ecount_bin, enif_make_int(env, 0)));
goto success;
} else {
/* Flag for subsequent calls that no aes_ctr compatibility code should be called */
ctx_res->state = atom_undefined;
ctx_res->env = NULL;
}
#endif
/* Initialize the EVP_CIPHER_CTX */
ctx_res->ctx = EVP_CIPHER_CTX_new();
if (! ctx_res->ctx)
{
*return_term = EXCP_ERROR(env, "Can't allocate context");
goto err;
}
if (!EVP_CipherInit_ex(ctx_res->ctx, (*cipherp)->cipher.p, NULL, NULL, NULL, ctx_res->encflag))
{
*return_term = EXCP_ERROR(env, "Can't initialize context, step 1");
goto err;
}
if (!EVP_CIPHER_CTX_set_key_length(ctx_res->ctx, (int)ctx_res->key_bin.size))
{
*return_term = EXCP_ERROR_N(env, key_arg_num, "Can't initialize context, key_length");
goto err;
}
#ifdef HAVE_RC2
if (EVP_CIPHER_type((*cipherp)->cipher.p) == NID_rc2_cbc) {
if (ctx_res->key_bin.size > INT_MAX / 8) {
*return_term = EXCP_BADARG_N(env, key_arg_num, "To large rc2_cbc key");
goto err;
}
if (!EVP_CIPHER_CTX_ctrl(ctx_res->ctx, EVP_CTRL_SET_RC2_KEY_BITS, (int)ctx_res->key_bin.size * 8, NULL)) {
*return_term = EXCP_BADARG_N(env, key_arg_num, "ctrl rc2_cbc key");
goto err;
}
}
#endif
if (argv[ivec_arg_num] == atom_undefined || ivec_len == 0)
{
if (!EVP_CipherInit_ex(ctx_res->ctx, NULL, NULL,ctx_res->key_bin.data, NULL, -1)) {
*return_term = EXCP_BADARG_N(env, key_arg_num, "Can't initialize key");
goto err;
}
}
else
if (!EVP_CipherInit_ex(ctx_res->ctx, NULL, NULL, ctx_res->key_bin.data, ivec_bin.data, -1))
{
*return_term = EXCP_ERROR(env, "Can't initialize key or iv");
goto err;
}
/* Set padding */
if (ctx_res->padding != atom_pkcs_padding) /* pkcs_padding is default */
EVP_CIPHER_CTX_set_padding(ctx_res->ctx, 0);
*return_term = atom_ok;
#if !defined(HAVE_EVP_AES_CTR)
success:
#endif
return 1;
err:
return 0;
}
/*************************************************************************/
/* Get the arguments for the EVP_CipherUpdate function, and call it. */
/*************************************************************************/
static int get_update_args(ErlNifEnv* env,
struct evp_cipher_ctx *ctx_res,
const ERL_NIF_TERM argv[],
int indata_arg_num,
ERL_NIF_TERM *return_term)
{
ErlNifBinary in_data_bin, out_data_bin;
int out_len, block_size;
if (!enif_inspect_iolist_as_binary(env, argv[indata_arg_num], &in_data_bin) )
{
*return_term = EXCP_BADARG_N(env, indata_arg_num, "Expected binary");
goto err0;
}
ASSERT(in_data_bin.size <= INT_MAX);
ctx_res->size += in_data_bin.size;
#if !defined(HAVE_EVP_AES_CTR)
if (ctx_res->state != atom_undefined) {
/* Use AES_CTR compatibility code */
ERL_NIF_TERM state0, newstate_and_outdata;
const ERL_NIF_TERM *tuple_argv;
int tuple_argc;
state0 = enif_make_copy(env, ctx_res->state);
if (enif_get_tuple(env, state0, &tuple_argc, &tuple_argv) && (tuple_argc == 4)) {
/* A compatibility state term */
/* encrypt and decrypt is performed by calling the same function */
newstate_and_outdata = aes_ctr_stream_encrypt_compat(env, state0, argv[indata_arg_num]);
if (enif_get_tuple(env, newstate_and_outdata, &tuple_argc, &tuple_argv) && (tuple_argc == 2)) {
/* newstate_and_outdata = {NewState, OutData} */
ctx_res->state = enif_make_copy(ctx_res->env, tuple_argv[0]);
/* Return the OutData (from the newstate_and_outdata tuple) only: */
*return_term = tuple_argv[1];
}
}
} else
#endif
#if defined(HAVE_UPDATE_EMPTY_DATA_BUG)
if (in_data_bin.size == 0)
{
if (!enif_alloc_binary(0, &out_data_bin))
{
*return_term = EXCP_ERROR(env, "Can't allocate outdata");
goto err;
}
*return_term = enif_make_binary(env, &out_data_bin);
} else
#endif
{
block_size = EVP_CIPHER_CTX_block_size(ctx_res->ctx);
if (!enif_alloc_binary((size_t)in_data_bin.size+block_size, &out_data_bin))
{
*return_term = EXCP_ERROR(env, "Can't allocate outdata");
goto err0;
}
if (!EVP_CipherUpdate(ctx_res->ctx, out_data_bin.data, &out_len, in_data_bin.data, in_data_bin.size))
{
*return_term = EXCP_ERROR(env, "Can't update");
goto err;
}
if (!enif_realloc_binary(&out_data_bin, (size_t)out_len))
{
*return_term = EXCP_ERROR(env, "Can't reallocate");
goto err;
}
CONSUME_REDS(env, in_data_bin);
/* return the result text as a binary: */
*return_term = enif_make_binary(env, &out_data_bin);
}
/* success: */
return 1;
err:
enif_release_binary(&out_data_bin);
err0:
return 0;
}
/*************************************************************************/
/* Get the arguments for the EVP_CipherFinal function, and call it. */
/*************************************************************************/
static int get_final_args(ErlNifEnv* env,
struct evp_cipher_ctx *ctx_res,
ERL_NIF_TERM *return_term
)
{
ErlNifBinary out_data_bin;
int block_size, pad_size;
int out_len, pad_offset;
#if !defined(HAVE_EVP_AES_CTR)
if (ctx_res->state != atom_undefined) {
/* Use AES_CTR compatibility code */
/* Padding size is always 0, because the block_size is 1 and therefore
always filled
*/
ctx_res->padded_size = 0;
out_len = 0;
if (!enif_alloc_binary(out_len, &out_data_bin))
{
*return_term = EXCP_ERROR(env, "Can't allocate empty outdata");
goto err0;
}
} else
#endif
{
block_size = EVP_CIPHER_CTX_block_size(ctx_res->ctx);
pad_size = ctx_res->size % block_size;
if (pad_size)
pad_size = block_size - pad_size;
if (!enif_alloc_binary((size_t)block_size, &out_data_bin))
{
*return_term = EXCP_ERROR(env, "Can't allocate final outdata");
goto err0;
}
if (ctx_res->encflag)
{/* Maybe do padding */
/* First set lengths etc and do the otp_padding */
if (ctx_res->padding == atom_undefined)
{
ctx_res->padded_size = pad_size;
pad_offset = 0;
}
else if (ctx_res->padding == atom_none)
{
ASSERT(pad_size == 0);
ctx_res->padded_size = pad_size;
pad_offset = 0;
}
else if (ctx_res->padding == atom_pkcs_padding)
{
ctx_res->padded_size = pad_size ? pad_size : block_size;
pad_offset = 0;
}
else if ((ctx_res->padding == atom_zero) ||
(ctx_res->padding == atom_random))
{
if (pad_size)
{
unsigned char padding[EVP_MAX_BLOCK_LENGTH];
int i;
if (ctx_res->padding == atom_zero)
for(i=0; i<pad_size; i++) padding[i] = (unsigned char)0;
else
RAND_bytes(padding, pad_size);
if (!EVP_CipherUpdate(ctx_res->ctx, out_data_bin.data, &out_len, padding, pad_size))
{
*return_term = EXCP_ERROR(env, "Can't pad");
goto err;
}
}
else
out_len = 0;
ctx_res->padded_size = pad_size;
pad_offset = out_len;
}
else
{
char msg[64];
if (enif_snprintf(msg, 64, "Bad padding flag: %T", ctx_res->padding))
*return_term = EXCP_ERROR(env, msg);
else
*return_term = EXCP_ERROR(env, "Bad padding flg");
goto err;
}
/* Decide how many bytes that are to be returned and set out_len to that value */
if (ctx_res->padding == atom_undefined)
{
out_len = 0;
}
else
{
if (!EVP_CipherFinal_ex(ctx_res->ctx, out_data_bin.data+pad_offset, &out_len))
{
if (ctx_res->padding == atom_none)
*return_term = EXCP_ERROR(env, "Padding 'none' but unfilled last block");
else if (ctx_res->padding == atom_pkcs_padding)
*return_term = EXCP_ERROR(env, "Can't finalize");
else
*return_term = EXCP_ERROR(env, "Padding failed");
goto err;
}
else
out_len += pad_offset;
}
/* (end of encryption part) */
}
else
{ /* decryption. */
/* Decide how many bytes that are to be returned and set out_len to that value */
if (ctx_res->padding == atom_undefined)
{
out_len = 0;
}
else if ((ctx_res->padding == atom_none) ||
(ctx_res->padding == atom_pkcs_padding) ||
(ctx_res->padding == atom_zero) ||
(ctx_res->padding == atom_random) )
{
if (!EVP_CipherFinal_ex(ctx_res->ctx, out_data_bin.data, &out_len))
{
*return_term = EXCP_ERROR(env, "Can't finalize");
goto err;
}
}
else
{
*return_term = EXCP_ERROR(env, "Bad padding flg");
goto err;
}
/* (end of decryption part) */
}
}
/* success: */
if (!enif_realloc_binary(&out_data_bin, (size_t)out_len))
{
*return_term = EXCP_ERROR(env, "Can't reallocate");
goto err;
}
*return_term = enif_make_binary(env, &out_data_bin);
return 1;
err:
enif_release_binary(&out_data_bin);
err0:
return 0;
}
/*************************************************************************/
/* Initialize the state for (de/en)cryption */
/*************************************************************************/
ERL_NIF_TERM ng_crypto_init_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Cipher, Key, IVec, OptionsMap) % if no IV for the Cipher, set IVec = <<>>
*/
struct evp_cipher_ctx *ctx_res = NULL;
const struct cipher_type_t *cipherp;
ERL_NIF_TERM ret;
if (enif_is_atom(env, argv[0])) {
if ((ctx_res = enif_alloc_resource(evp_cipher_ctx_rtype, sizeof(struct evp_cipher_ctx))) == NULL)
return EXCP_ERROR(env, "Can't allocate resource");
if (get_init_args(env, ctx_res, argv, 0, 1, 2, 3, &cipherp, &ret))
ret = enif_make_resource(env, ctx_res);
/* else error msg in ret */
if(ctx_res) enif_release_resource(ctx_res);
} else if (enif_get_resource(env, argv[0], (ErlNifResourceType*)evp_cipher_ctx_rtype, (void**)&ctx_res)) {
/* Fetch the flag telling if we are going to encrypt (=true) or decrypt (=false) */
if (argv[3] == atom_true)
ctx_res->encflag = 1;
else if (argv[3] == atom_false)
ctx_res->encflag = 0;
else {
ret = EXCP_BADARG_N(env, 3, "Expected true or false");
goto ret;
}
if (ctx_res->ctx) {
/* It is *not* a ctx_res for the compatibility handling of non-EVP aes_ctr */
if (!EVP_CipherInit_ex(ctx_res->ctx, NULL, NULL, NULL, NULL, ctx_res->encflag)) {
ret = EXCP_ERROR(env, "Can't initialize encflag");
goto ret;
}
}
ret = argv[0];
} else {
ret = EXCP_BADARG_N(env, 0, "Expected cipher name atom");
goto ret;
}
ret:
return ret;
}
/*************************************************************************/
/* Encrypt/decrypt */
/*************************************************************************/
ERL_NIF_TERM ng_crypto_update(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Context, Data [, IV]) */
struct evp_cipher_ctx *ctx_res;
struct evp_cipher_ctx ctx_res_copy;
ERL_NIF_TERM ret;
ctx_res_copy.ctx = NULL;
if (!enif_get_resource(env, argv[0], (ErlNifResourceType*)evp_cipher_ctx_rtype, (void**)&ctx_res))
return EXCP_BADARG_N(env, 0, "Bad State");
if (argc == 3) {
/* We have an IV in this call. Make a copy of the context */
#if defined(HAS_3_0_API) // Temp disallow dyn iv for >=3.0 (may core dump)
ret = EXCP_NOTSUP(env, "Dynamic IV is not supported for libcrypto versions >= 3.0");
goto err;
#else
ErlNifBinary ivec_bin;
/* First check the IV provided in the call of this function: */
if (!enif_inspect_iolist_as_binary(env, argv[2], &ivec_bin))
{
ret = EXCP_BADARG_N(env, 2, "Bad iv type");
goto err;
}
if (ctx_res->iv_len != ivec_bin.size)
{
ret = EXCP_BADARG_N(env, 2, "Bad iv size");
goto err;
}
/* Now start to copy from ctx_res* to ctx_res_copy */
memcpy(&ctx_res_copy, ctx_res, sizeof ctx_res_copy);
#if !defined(HAVE_EVP_AES_CTR)
/* a check of we are to use the special old aes_ctr compat functions */
if (ctx_res_copy.state == atom_undefined)
/* Not going to use aes_ctr compat functions because they have a state =/= atom_undefined */
#endif
{
ctx_res_copy.ctx = EVP_CIPHER_CTX_new();
if (! ctx_res_copy.ctx)
{
ret = EXCP_ERROR(env, "Can't allocate context");
goto err;
}
#if OPENSSL_VERSION_NUMBER == PACKED_OPENSSL_VERSION_PLAIN(3,0,0) || \
OPENSSL_VERSION_NUMBER == PACKED_OPENSSL_VERSION_PLAIN(3,0,1)
/* Temporary work-around for EVP_CIPHER_CTX_copy since it fails for chacha20 in 3.0.[01] */
if (EVP_CIPHER_type(EVP_CIPHER_CTX_get0_cipher(ctx_res->ctx)) == NID_undef)
/* The work-around is only for chacha20. The EVP_CIPHER_type(..) is NID_undef for chacha20 (!) afaik.
Since EVP_CIPHER_CTX_copy doesn't work, we greate a new EVP_CIPHER_CTX for the current
function.
This code is the same as for ng_crypto_init, except that no testing is needed of
the already tested parameters
*/
{
const EVP_CIPHER *cipher_p = EVP_CIPHER_CTX_get0_cipher(ctx_res->ctx);
if (!EVP_CipherInit_ex(ctx_res_copy.ctx, cipher_p, NULL, NULL, NULL, ctx_res_copy.encflag))
{
ret = EXCP_ERROR(env, "Can't initialize context, step 1");
goto err;
}
if (!EVP_CIPHER_CTX_set_key_length(ctx_res_copy.ctx, (int)ctx_res->key_bin.size))
{
ret = EXCP_ERROR(env, "Can't initialize context, key_length");
goto err;
}
# ifdef HAVE_RC2
/* Who knows, we might need this as in ng_crypto_init (but I don't know how that would happen) */
if ((EVP_CIPHER_type(cipher_p) == NID_rc2_cbc) &&
!EVP_CIPHER_CTX_ctrl(ctx_res_copy.ctx, EVP_CTRL_SET_RC2_KEY_BITS, (int)ctx_res->key_bin.size * 8, NULL))
{
ret = EXCP_ERROR(env, "ctrl rc2_cbc key");
goto err;
}
# endif
if (!EVP_CipherInit_ex(ctx_res_copy.ctx, NULL, NULL, ctx_res->key_bin.data, NULL, -1))
{
ret = EXCP_ERROR(env, "Can't initialize key");
goto err;
}
}
/* End of temporary work-around */
else
#endif
/* The standard copying of the EVP_CIPHER_CTX (without IV) */
if (!EVP_CIPHER_CTX_copy(ctx_res_copy.ctx, ctx_res->ctx)) {
ret = EXCP_ERROR(env, "Can't copy ctx_res");
goto err;
}
}
#if !defined(HAVE_EVP_AES_CTR)
if ((ctx_res_copy.state != atom_undefined) ) {
/* replace the iv in state with argv[2] */
ERL_NIF_TERM state0;
const ERL_NIF_TERM *tuple_argv;
int tuple_argc;
state0 = enif_make_copy(env, ctx_res_copy.state);
if (enif_get_tuple(env, state0, &tuple_argc, &tuple_argv) && (tuple_argc == 4)) {
/* A compatibility state term */
ctx_res_copy.state = enif_make_tuple4(env, tuple_argv[0], argv[2], tuple_argv[2], tuple_argv[3]);
}
} else
#endif
if (!EVP_CipherInit_ex(ctx_res_copy.ctx, NULL, NULL, NULL, ivec_bin.data, -1))
{
ret = EXCP_ERROR(env, "Can't set iv");
goto err;
}
get_update_args(env, &ctx_res_copy, argv, 1, &ret);
ctx_res->size = ctx_res_copy.size;
#endif // Temp disallow dyn iv for >=3.0 (may core dump)
} else
/* argc != 3, that is, argc = 2 (we don't have an IV in this call) */
get_update_args(env, ctx_res, argv, 1, &ret);
err:
if (ctx_res_copy.ctx)
EVP_CIPHER_CTX_free(ctx_res_copy.ctx);
return ret; /* Both success and error */
}
ERL_NIF_TERM ng_crypto_update_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Context, Data [, IV]) */
ErlNifBinary data_bin;
if (!enif_inspect_iolist_as_binary(env, argv[1], &data_bin))
return EXCP_BADARG_N(env, 1, "expected binary");
if (data_bin.size > INT_MAX)
return EXCP_BADARG_N(env, 1, "too long data");
/* Run long jobs on a dirty scheduler to not block the current emulator thread */
if (data_bin.size > MAX_BYTES_TO_NIF) {
return enif_schedule_nif(env, "ng_crypto_update",
ERL_NIF_DIRTY_JOB_CPU_BOUND,
ng_crypto_update, argc, argv);
}
return ng_crypto_update(env, argc, argv);
}
/*************************************************************************/
/* Final */
/*************************************************************************/
ERL_NIF_TERM ng_crypto_final_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Context) */
/* No need for enif_schedule_nif since maximum BlockSize-1 bytes are handled */
struct evp_cipher_ctx *ctx_res;
ERL_NIF_TERM ret;
if (!enif_get_resource(env, argv[0], (ErlNifResourceType*)evp_cipher_ctx_rtype, (void**)&ctx_res))
return EXCP_BADARG_N(env, 0, "Bad State");
get_final_args(env, ctx_res, &ret);
return ret;
}
/*************************************************************************/
/* One shot */
/*************************************************************************/
ERL_NIF_TERM ng_crypto_one_time(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Cipher, Key, IVec, Data, OptionsMap) */
struct evp_cipher_ctx ctx_res;
const struct cipher_type_t *cipherp;
ERL_NIF_TERM ret;
ErlNifBinary out_data_bin, final_data_bin;
unsigned char *append_buf;
ctx_res.ctx = NULL;
#if !defined(HAVE_EVP_AES_CTR)
ctx_res.env = NULL;
#endif
/* EVP_CipherInit */
if (!get_init_args(env, &ctx_res, argv, 0, 1, 2, 4, &cipherp, &ret))
goto out;
/* out_data = EVP_CipherUpdate */
if (!get_update_args(env, &ctx_res, argv, 3, &ret))
/* Got an exception as result in &ret */
goto out;
if (!enif_inspect_binary(env, ret, &out_data_bin) )
{
ret = EXCP_ERROR(env, "Can't inspect first");
goto out;
}
/* final_data = EVP_CipherFinal_ex */
if (!get_final_args(env, &ctx_res, &ret))
/* Got an exception as result in &ret */
goto out;
if (!enif_inspect_binary(env, ret, &final_data_bin) )
{
ret = EXCP_ERROR(env, "Can't inspect final");
goto out;
}
/* Concatenate out_data and final_date into a new binary kept in the variable ret. */
append_buf = enif_make_new_binary(env, out_data_bin.size + final_data_bin.size, &ret);
if (!append_buf)
{
ret = EXCP_ERROR(env, "Can't append");
goto out;
}
memcpy(append_buf, out_data_bin.data, out_data_bin.size);
memcpy(append_buf+out_data_bin.size, final_data_bin.data, final_data_bin.size);
out:
if (ctx_res.ctx)
EVP_CIPHER_CTX_free(ctx_res.ctx);
#if !defined(HAVE_EVP_AES_CTR)
if (ctx_res.env)
enif_free_env(ctx_res.env);
#endif
return ret;
}
ERL_NIF_TERM ng_crypto_one_time_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Cipher, Key, IVec, Data, Encrypt, Padding) % if no IV for the Cipher, set IVec = <<>>
*/
ErlNifBinary data_bin;
if (!enif_inspect_iolist_as_binary(env, argv[3], &data_bin))
return EXCP_BADARG_N(env, 3, "expected binary as data");
if (data_bin.size > INT_MAX)
return EXCP_BADARG_N(env, 3, "too long data");
/* Run long jobs on a dirty scheduler to not block the current emulator thread */
if (data_bin.size > MAX_BYTES_TO_NIF) {
return enif_schedule_nif(env, "ng_crypto_one_time",
ERL_NIF_DIRTY_JOB_CPU_BOUND,
ng_crypto_one_time, argc, argv);
}
return ng_crypto_one_time(env, argc, argv);
}
/*************************************************************************/
/* Get data from the cipher resource */
/*************************************************************************/
ERL_NIF_TERM ng_crypto_get_data_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[])
{/* (Context) -> map */
struct evp_cipher_ctx *ctx_res;
ERL_NIF_TERM ret;
if (!enif_get_resource(env, argv[0], (ErlNifResourceType*)evp_cipher_ctx_rtype, (void**)&ctx_res))
return EXCP_BADARG_N(env, 0, "Bad State");
ret = enif_make_new_map(env);
enif_make_map_put(env, ret, atom_size,
enif_make_int(env, ctx_res->size),
&ret);
enif_make_map_put(env, ret, atom_padding_size,
enif_make_int(env, ctx_res->padded_size),
&ret);
enif_make_map_put(env, ret, atom_padding_type,
ctx_res->padding,
&ret);
enif_make_map_put(env, ret, atom_encrypt,
(ctx_res->encflag) ? atom_true : atom_false,
&ret);
return ret;
}
|