sys/crypto/cryptoapi/cryptoapi.c
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 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 | /*- * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and * Niels Provos (provos@physnet.uni-hamburg.de). * * This code was written by John Ioannidis for BSD/OS in Athens, Greece, * in November 1995. * * Ported to OpenBSD and NetBSD, with additional transforms, in December * 1996, by Angelos D. Keromytis. * * Additional transforms and features in 1997 and 1998 by Angelos D. * Keromytis and Niels Provos. * * Additional features in 1999 by Angelos D. Keromytis. * * Copyright (C) 1995, 1996, 1997, 1998, 1999 by John Ioannidis, * Angelos D. Keromytis and Niels Provos. * * Copyright (C) 2001, Angelos D. Keromytis. * * Copyright (c) 2024, 2025, Michael Neumann (mneumann@ntecs.de). * * Permission to use, copy, and modify this software with or without fee * is hereby granted, provided that this entire notice is included in * all copies of any software which is or includes a copy or * modification of this software. * You may use this code under the GNU public license if you so wish. * Please contribute changes back to the authors under this freer than * GPL license so that we may further the use of strong encryption * without limitations to all. * * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR * PURPOSE. */ #ifdef _KERNEL #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> #include <sys/sysctl.h> #include <machine/specialreg.h> /* for CPUID2_AESNI */ #endif #ifndef _KERNEL #include <sys/param.h> #include <sys/errno.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define kprintf printf #define karc4random_buf arc4random_buf #define kmalloc(size, mtype, flags) malloc(size) #define kfree(ptr, mtype) free(ptr) #define KKASSERT(cond) \ if (!(cond)) { \ fprintf(stderr, "ASSERTION FAILED: %s\n", #cond); \ abort(); \ } #define panic(msg) \ do { \ fprintf(stderr, "PANIC: %s\n", msg); \ abort(); \ } while (0); #endif #include <crypto/aesni/aesni.h> #include <crypto/cryptoapi/cryptoapi.h> #include <crypto/rijndael/rijndael.h> #include <crypto/serpent/serpent.h> #include <crypto/twofish/twofish.h> #ifdef _KERNEL MALLOC_DEFINE(M_CRYPTOAPI, "cryptoapi", "Crypto API"); static int aesni_disable = 0; TUNABLE_INT("hw.aesni_disable", &aesni_disable); SYSCTL_INT(_hw, OID_AUTO, aesni_disable, CTLFLAG_RW, &aesni_disable, 0, "Disable AESNI"); #define HAVE_AESNI #endif /** * -------------------------------------- * cryptoapi session (header) * -------------------------------------- */ struct cryptoapi_cipher_session { cryptoapi_cipher_t cipher; /** * Points to the aligned context. */ void *context; }; /** * -------------------------------------- * Cipher specification * -------------------------------------- */ struct cryptoapi_cipher_spec { /** * The name of the cipher, e.g. "aes-xts" that * this specification implements. */ const char *ciphername; /** * Human readable description. */ const char *description; uint16_t blocksize; uint16_t ivsize; uint16_t ctxsize; uint16_t ctxalign; /** * Return 0, if: * * - the keysize in bits is supported by the implementation, * - the implementation is supported by the platform * (e.g. AESNI needs special CPU features), * - and it is enabled by the sysadmin */ int (*probe)(int keysize_in_bits); int (*setkey)(void *ctx, const uint8_t *keydata, int keylen_in_bytes); void (*crypt)(void *ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt); }; /** * -------------------------------------- * Utility * -------------------------------------- */ static inline void xor_block(uint8_t *dst, const uint8_t *src, int blocksize) { for (int i = 0; i < blocksize; i++) dst[i] ^= src[i]; } static inline void xor_block3(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int blocksize) { for (int i = 0; i < blocksize; i++) dst[i] = src1[i] ^ src2[i]; } /** * Typedef of a block-cipher function that encrypts or decrypts a block * of data from `src` to `dst`. Both `src` and `dst` may point to the * same data. * * The length of the block is the block size of the algorithm. */ typedef void (*block_fn_t)(const void *ctx, const uint8_t *src, uint8_t *dst); /** * * Encrypt blocks of data using CBC (Cipher Block Chaining). * * Before encrypting a block with the block cipher, the block is XORed * with the previous block of data or the IV if it is the first block of * data. */ static void encrypt_data_cbc(block_fn_t block_fn, const void *ctx, uint8_t *data, int datalen, int blocksize, const uint8_t *iv) { for (int i = 0; i < datalen; i += blocksize) { xor_block(data + i, (i == 0) ? iv : (data + i - blocksize), blocksize); block_fn(ctx, data + i, data + i); } } /* * Decrypt blocks of data using CBC (Cipher Block Chaining). * * We start decrypting the blocks in reverse order, from the last block * to the first. After decrypting a block with the block cipher, we XOR * it. The last block is XORed with the second last block (which is * still encrypted), and so on. Finally, the first block is XORed with * the IV after it has been decrypted. */ static void decrypt_data_cbc(block_fn_t block_fn, const void *ctx, uint8_t *data, int datalen, int blocksize, const uint8_t *iv) { for (int i = datalen - blocksize; i >= 0; i -= blocksize) { block_fn(ctx, data + i, data + i); xor_block(data + i, (i == 0) ? iv : (data + i - blocksize), blocksize); } } /** * Encrypts/decrypts a single block using XTS. */ static void crypt_block_xts(const void *ctx, uint8_t *data, uint8_t *iv, block_fn_t block_fn, uint8_t *block, int blocksize, uint8_t alpha) { int i; u_int carry_in, carry_out; xor_block3(block, data, iv, blocksize); block_fn(ctx, block, data); xor_block(data, iv, blocksize); /* Exponentiate tweak */ carry_in = 0; for (i = 0; i < blocksize; i++) { carry_out = iv[i] & 0x80; iv[i] = (iv[i] << 1) | (carry_in ? 1 : 0); carry_in = carry_out; } if (carry_in) iv[0] ^= alpha; } /** * Encrypts/decrypts blocks of data using XTS (without reinit). */ static void crypt_data_xts(const void *ctx, uint8_t *data, int datalen, uint8_t *iv, block_fn_t block_fn, uint8_t *block, int blocksize, uint8_t alpha) { for (int i = 0; i < datalen; i += blocksize) { crypt_block_xts(ctx, data + i, iv, block_fn, block, blocksize, alpha); } explicit_bzero(block, blocksize); } /** * -------------------------------------- * Cipher null * -------------------------------------- */ static int cipher_null_probe(int keysize_in_bits __unused) { return (0); } static int cipher_null_setkey(void *ctx __unused, const uint8_t *keydata __unused, int keylen_in_bytes __unused) { return (0); } static void cipher_null_crypt(void *ctx __unused, uint8_t *data __unused, int datalen __unused, const uint8_t *iv __unused, bool encrypt __unused) { } const struct cryptoapi_cipher_spec cipher_null = { .ciphername = "null", .description = "null - No encryption", .blocksize = 1, .ivsize = 0, .ctxsize = 0, .ctxalign = 1, .probe = cipher_null_probe, .setkey = cipher_null_setkey, .crypt = cipher_null_crypt, }; /** * -------------------------------------- * AES-CBC (Rijndael-128) * -------------------------------------- */ #define AES_BLOCK_LEN 16 static int aes_cbc_probe(int keysize_in_bits) { if ((keysize_in_bits == 128 || keysize_in_bits == 192 || keysize_in_bits == 256)) return (0); else return (-1); } static int aes_cbc_setkey(void *ctx, const uint8_t *keydata, int keylen_in_bytes) { switch (keylen_in_bytes * 8) { case 128: case 192: case 256: rijndael_set_key(ctx, keydata, keylen_in_bytes * 8); return (0); default: return (EINVAL); } } static inline void rijndael_encrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { rijndael_encrypt(ctx, src, dst); } static inline void rijndael_decrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { rijndael_decrypt(ctx, src, dst); } static void aes_cbc_crypt(void *ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { if (encrypt) encrypt_data_cbc(rijndael_encrypt_wrap, ctx, data, datalen, AES_BLOCK_LEN, iv); else decrypt_data_cbc(rijndael_decrypt_wrap, ctx, data, datalen, AES_BLOCK_LEN, iv); } const struct cryptoapi_cipher_spec cipher_aes_cbc = { .ciphername = "aes-cbc", .description = "AES-CBC (Rijndael-128) in software", .blocksize = AES_BLOCK_LEN, .ivsize = AES_BLOCK_LEN, .ctxsize = sizeof(rijndael_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = aes_cbc_probe, .setkey = aes_cbc_setkey, .crypt = aes_cbc_crypt, }; /** * -------------------------------------- * AES-XTS * -------------------------------------- */ #define AES_XTS_BLOCK_LEN 16 #define AES_XTS_IV_LEN 8 #define AES_XTS_ALPHA 0x87 /* GF(2^128) generator polynomial */ struct aes_xts_ctx { rijndael_ctx key1; rijndael_ctx key2; uint8_t tweak[AES_XTS_BLOCK_LEN]; }; static bool aes_xts_valid_keysize_in_bits(int keysize_in_bits) { switch (keysize_in_bits) { case 256: case 512: return true; default: return false; } } static int aes_xts_probe(int keysize_in_bits) { if (aes_xts_valid_keysize_in_bits(keysize_in_bits)) return (0); return (-1); } static int aes_xts_setkey(void *_ctx, const uint8_t *keydata, int keylen_in_bytes) { struct aes_xts_ctx *ctx = _ctx; if (!aes_xts_valid_keysize_in_bits(keylen_in_bytes * 8)) return (EINVAL); rijndael_set_key(&ctx->key1, keydata, (keylen_in_bytes / 2) * 8); rijndael_set_key(&ctx->key2, keydata + (keylen_in_bytes / 2), (keylen_in_bytes / 2) * 8); return (0); } static inline void aes_xts_reinit(struct aes_xts_ctx *ctx, const uint8_t *iv) { #if 0 /* * Prepare tweak as E_k2(IV). IV is specified as LE representation * of a 64-bit block number which we allow to be passed in directly. */ /* XXX: possibly use htole64? */ #endif memcpy(ctx->tweak, iv, AES_XTS_IV_LEN); /* Last 64 bits of IV are always zero */ bzero(ctx->tweak + AES_XTS_IV_LEN, AES_XTS_IV_LEN); rijndael_encrypt(&ctx->key2, ctx->tweak, ctx->tweak); } static void aes_xts_crypt(void *_ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { uint8_t block[AES_XTS_BLOCK_LEN]; struct aes_xts_ctx *ctx = _ctx; aes_xts_reinit(ctx, iv); crypt_data_xts(&ctx->key1, data, datalen, ctx->tweak, encrypt ? rijndael_encrypt_wrap : rijndael_decrypt_wrap, block, AES_XTS_BLOCK_LEN, AES_XTS_ALPHA); } const struct cryptoapi_cipher_spec cipher_aes_xts = { .ciphername = "aes-xts", .description = "AES-XTS (in software)", .blocksize = AES_XTS_BLOCK_LEN, .ivsize = AES_XTS_IV_LEN, .ctxsize = sizeof(struct aes_xts_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = aes_xts_probe, .setkey = aes_xts_setkey, .crypt = aes_xts_crypt, }; /** * -------------------------------------- * AES-CBC in hardware (AES-NI) * -------------------------------------- */ #ifdef HAVE_AESNI struct aesni_ctx { uint8_t enc_schedule[AES_SCHED_LEN] __aligned(AESNI_ALIGN); uint8_t dec_schedule[AES_SCHED_LEN] __aligned(AESNI_ALIGN); uint8_t xts_schedule[AES_SCHED_LEN] __aligned(AESNI_ALIGN); int rounds; }; #define ASSERT_AESNI_ALIGNED(ptr) \ KKASSERT((((uintptr_t)ptr) % AESNI_ALIGN) == 0); \ if (__predict_false((((uintptr_t)ptr) % AESNI_ALIGN) != 0)) \ panic("AESNI misaligned"); static int cipher_aesni_cbc_probe(int keysize_in_bits) { if (aesni_disable) return (-1); if ((cpu_feature2 & CPUID2_AESNI) == 0) return (EINVAL); switch (keysize_in_bits) { case 128: case 192: case 256: return (0); default: return (-1); } } static int cipher_aesni_cbc_setkey(void *_ctx, const uint8_t *keydata, int keylen_in_bytes) { struct aesni_ctx *ctx = _ctx; int rounds; ASSERT_AESNI_ALIGNED(&ctx->enc_schedule); ASSERT_AESNI_ALIGNED(&ctx->dec_schedule); bzero(ctx, sizeof(*ctx)); switch (keylen_in_bytes * 8) { case 128: rounds = AES128_ROUNDS; break; case 192: rounds = AES192_ROUNDS; break; case 256: rounds = AES256_ROUNDS; break; default: return (EINVAL); } ctx->rounds = rounds; aesni_set_enckey(keydata, ctx->enc_schedule, rounds); aesni_set_deckey(ctx->enc_schedule, ctx->dec_schedule, rounds); return (0); } static void cipher_aesni_cbc_crypt(void *_ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { struct aesni_ctx *ctx = _ctx; if (encrypt) aesni_encrypt_cbc(ctx->rounds, ctx->enc_schedule, datalen, data, data, iv); else aesni_decrypt_cbc(ctx->rounds, ctx->dec_schedule, datalen, data, iv); } const struct cryptoapi_cipher_spec cipher_aesni_cbc = { .ciphername = "aes-cbc", .description = "AES-CBC w/ CPU AESNI instruction", .blocksize = AES_BLOCK_LEN, .ivsize = AES_BLOCK_LEN, .ctxsize = sizeof(struct aesni_ctx), .ctxalign = AESNI_ALIGN, .probe = cipher_aesni_cbc_probe, .setkey = cipher_aesni_cbc_setkey, .crypt = cipher_aesni_cbc_crypt, }; #endif /** * -------------------------------------- * AES-XTS in hardware (AES-NI) * -------------------------------------- */ #ifdef HAVE_AESNI static int cipher_aesni_xts_probe(int keysize_in_bits) { if (aesni_disable) return (-1); if ((cpu_feature2 & CPUID2_AESNI) == 0) return (EINVAL); switch (keysize_in_bits) { case 256: case 512: return (0); default: return (-1); } } static int cipher_aesni_xts_setkey(void *_ctx, const uint8_t *keydata, int keylen_in_bytes) { struct aesni_ctx *ctx = _ctx; int rounds; ASSERT_AESNI_ALIGNED(&ctx->enc_schedule); ASSERT_AESNI_ALIGNED(&ctx->dec_schedule); ASSERT_AESNI_ALIGNED(&ctx->xts_schedule); bzero(ctx, sizeof(*ctx)); switch (keylen_in_bytes * 8) { case 256: rounds = AES128_ROUNDS; break; case 512: rounds = AES256_ROUNDS; break; default: return (EINVAL); } ctx->rounds = rounds; aesni_set_enckey(keydata, ctx->enc_schedule, rounds); aesni_set_deckey(ctx->enc_schedule, ctx->dec_schedule, rounds); aesni_set_enckey(keydata + (keylen_in_bytes / 2), ctx->xts_schedule, rounds); return (0); } static void cipher_aesni_xts_crypt(void *_ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { const struct aesni_ctx *ctx = _ctx; if (encrypt) aesni_encrypt_xts(ctx->rounds, ctx->enc_schedule, ctx->xts_schedule, datalen, data, data, iv); else aesni_decrypt_xts(ctx->rounds, ctx->dec_schedule, ctx->xts_schedule, datalen, data, data, iv); } const struct cryptoapi_cipher_spec cipher_aesni_xts = { .ciphername = "aes-xts", .description = "AES-XTS w/ CPU AESNI instruction", .blocksize = AES_BLOCK_LEN, .ivsize = AES_XTS_IV_LEN, .ctxsize = sizeof(struct aesni_ctx), .ctxalign = AESNI_ALIGN, .probe = cipher_aesni_xts_probe, .setkey = cipher_aesni_xts_setkey, .crypt = cipher_aesni_xts_crypt, }; #endif /** * -------------------------------------- * TWOFISH-CBC * -------------------------------------- */ #define TWOFISH_BLOCK_LEN 16 static int twofish_cbc_probe(int keysize_in_bits) { if ((keysize_in_bits == 128 || keysize_in_bits == 192 || keysize_in_bits == 256)) return (0); else return (-1); } static int twofish_cbc_setkey(void *ctx, const uint8_t *keydata, int keylen_in_bytes) { switch (keylen_in_bytes * 8) { case 128: case 192: case 256: twofish_set_key(ctx, keydata, keylen_in_bytes * 8); return (0); default: return (EINVAL); } } static inline void twofish_encrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { twofish_encrypt((const twofish_ctx *)ctx, src, dst); } static inline void twofish_decrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { twofish_decrypt((const twofish_ctx *)ctx, src, dst); } static void twofish_cbc_crypt(void *ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { if (encrypt) encrypt_data_cbc(twofish_encrypt_wrap, ctx, data, datalen, TWOFISH_BLOCK_LEN, iv); else decrypt_data_cbc(twofish_decrypt_wrap, ctx, data, datalen, TWOFISH_BLOCK_LEN, iv); } const struct cryptoapi_cipher_spec cipher_twofish_cbc = { .ciphername = "twofish-cbc", .description = "Twofish-CBC", .blocksize = TWOFISH_BLOCK_LEN, .ivsize = TWOFISH_BLOCK_LEN, .ctxsize = sizeof(twofish_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = twofish_cbc_probe, .setkey = twofish_cbc_setkey, .crypt = twofish_cbc_crypt, }; /** * -------------------------------------- * TWOFISH-XTS * -------------------------------------- */ #define TWOFISH_XTS_BLOCK_LEN 16 #define TWOFISH_XTS_IV_LEN 8 struct twofish_xts_ctx { twofish_ctx key1; twofish_ctx key2; uint8_t tweak[TWOFISH_XTS_BLOCK_LEN]; }; static inline void twofish_xts_reinit(struct twofish_xts_ctx *ctx, const uint8_t *iv) { #if 0 u_int64_t blocknum; #endif #if 0 /* * Prepare tweak as E_k2(IV). IV is specified as LE representation * of a 64-bit block number which we allow to be passed in directly. */ /* XXX: possibly use htole64? */ #endif memcpy(ctx->tweak, iv, TWOFISH_XTS_IV_LEN); /* Last 64 bits of IV are always zero */ bzero(ctx->tweak + TWOFISH_XTS_IV_LEN, TWOFISH_XTS_IV_LEN); twofish_encrypt(&ctx->key2, ctx->tweak, ctx->tweak); } static int twofish_xts_probe(int keysize_in_bits) { if ((keysize_in_bits == 256 || keysize_in_bits == 512)) return (0); else return (-1); } static int twofish_xts_setkey(void *_ctx, const uint8_t *keydata, int keylen_in_bytes) { struct twofish_xts_ctx *ctx = _ctx; switch (keylen_in_bytes * 8) { case 256: case 512: twofish_set_key(&ctx->key1, keydata, (keylen_in_bytes / 2) * 8); twofish_set_key(&ctx->key2, keydata + (keylen_in_bytes / 2), (keylen_in_bytes / 2) * 8); return (0); default: return (EINVAL); } } static void twofish_xts_crypt(void *_ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { uint8_t block[TWOFISH_XTS_BLOCK_LEN]; struct twofish_xts_ctx *ctx = _ctx; twofish_xts_reinit(ctx, iv); crypt_data_xts(&ctx->key1, data, datalen, ctx->tweak, encrypt ? twofish_encrypt_wrap : twofish_decrypt_wrap, block, TWOFISH_XTS_BLOCK_LEN, AES_XTS_ALPHA); } const struct cryptoapi_cipher_spec cipher_twofish_xts = { .ciphername = "twofish-xts", .description = "Twofish-XTS", .blocksize = TWOFISH_XTS_BLOCK_LEN, .ivsize = TWOFISH_XTS_IV_LEN, .ctxsize = sizeof(struct twofish_xts_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = twofish_xts_probe, .setkey = twofish_xts_setkey, .crypt = twofish_xts_crypt, }; /** * -------------------------------------- * Serpent-CBC * -------------------------------------- */ #define SERPENT_BLOCK_LEN 16 static int serpent_cbc_probe(int keysize_in_bits) { if ((keysize_in_bits == 128 || keysize_in_bits == 192 || keysize_in_bits == 256)) return (0); else return (-1); } static int serpent_cbc_setkey(void *ctx, const uint8_t *keydata, int keylen_in_bytes) { switch (keylen_in_bytes * 8) { case 128: case 192: case 256: serpent_set_key(ctx, keydata, keylen_in_bytes * 8); return (0); default: return (EINVAL); } } static inline void serpent_encrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { serpent_encrypt((const serpent_ctx *)ctx, src, dst); } static inline void serpent_decrypt_wrap(const void *ctx, const uint8_t *src, uint8_t *dst) { serpent_decrypt((const serpent_ctx *)ctx, src, dst); } static void serpent_cbc_crypt(void *ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { if (encrypt) encrypt_data_cbc(serpent_encrypt_wrap, ctx, data, datalen, SERPENT_BLOCK_LEN, iv); else decrypt_data_cbc(serpent_decrypt_wrap, ctx, data, datalen, SERPENT_BLOCK_LEN, iv); } const struct cryptoapi_cipher_spec cipher_serpent_cbc = { .ciphername = "serpent-cbc", .description = "Serpent-CBC", .blocksize = SERPENT_BLOCK_LEN, .ivsize = SERPENT_BLOCK_LEN, .ctxsize = sizeof(serpent_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = serpent_cbc_probe, .setkey = serpent_cbc_setkey, .crypt = serpent_cbc_crypt, }; /** * -------------------------------------- * Serpent-XTS * -------------------------------------- */ #define SERPENT_XTS_BLOCK_LEN 16 #define SERPENT_XTS_IV_LEN 8 struct serpent_xts_ctx { serpent_ctx key1; serpent_ctx key2; uint8_t tweak[SERPENT_XTS_BLOCK_LEN]; }; static inline void serpent_xts_reinit(struct serpent_xts_ctx *ctx, const uint8_t *iv) { #if 0 u_int64_t blocknum; u_int i; #endif #if 0 /* * Prepare tweak as E_k2(IV). IV is specified as LE representation * of a 64-bit block number which we allow to be passed in directly. */ /* XXX: possibly use htole64? */ #endif memcpy(ctx->tweak, iv, SERPENT_XTS_IV_LEN); /* Last 64 bits of IV are always zero */ bzero(ctx->tweak + SERPENT_XTS_IV_LEN, SERPENT_XTS_IV_LEN); serpent_encrypt(&ctx->key2, ctx->tweak, ctx->tweak); } static int serpent_xts_probe(int keysize_in_bits) { if ((keysize_in_bits == 256 || keysize_in_bits == 512)) return (0); else return (-1); } static int serpent_xts_setkey(void *_ctx, const uint8_t *keydata, int keylen_in_bytes) { struct serpent_xts_ctx *ctx = _ctx; switch (keylen_in_bytes * 8) { case 256: case 512: serpent_set_key(&ctx->key1, keydata, (keylen_in_bytes / 2) * 8); serpent_set_key(&ctx->key2, keydata + (keylen_in_bytes / 2), (keylen_in_bytes / 2) * 8); return (0); default: return (EINVAL); } } static void serpent_xts_crypt(void *_ctx, uint8_t *data, int datalen, const uint8_t *iv, bool encrypt) { uint8_t block[SERPENT_XTS_BLOCK_LEN]; struct serpent_xts_ctx *ctx = _ctx; serpent_xts_reinit(ctx, iv); crypt_data_xts(&ctx->key1, data, datalen, ctx->tweak, encrypt ? serpent_encrypt_wrap : serpent_decrypt_wrap, block, SERPENT_XTS_BLOCK_LEN, AES_XTS_ALPHA); } const struct cryptoapi_cipher_spec cipher_serpent_xts = { .ciphername = "serpent-xts", .description = "Serpent-XTS", .blocksize = SERPENT_XTS_BLOCK_LEN, .ivsize = SERPENT_XTS_IV_LEN, .ctxsize = sizeof(struct serpent_xts_ctx), /* there are no alignment requirements imposed by the algorithm, but using 16 can't do any harm either */ .ctxalign = 16, .probe = serpent_xts_probe, .setkey = serpent_xts_setkey, .crypt = serpent_xts_crypt, }; /** * Cipher registration */ static cryptoapi_cipher_t cryptoapi_ciphers[] = { &cipher_null, #ifdef HAVE_AESNI /* first probe AESNI, then fallback to software AES */ &cipher_aesni_cbc, &cipher_aesni_xts, #endif /* AES in software */ &cipher_aes_cbc, &cipher_aes_xts, &cipher_twofish_cbc, &cipher_twofish_xts, &cipher_serpent_cbc, &cipher_serpent_xts, }; /** * -------------------------------------- * API * -------------------------------------- */ cryptoapi_cipher_t cryptoapi_cipher_find(const char *ciphername, int keysize_in_bits) { cryptoapi_cipher_t cipher; size_t i; for (i = 0; i < nitems(cryptoapi_ciphers); i++) { cipher = cryptoapi_ciphers[i]; if ((strcasecmp(cipher->ciphername, ciphername) == 0) && (cipher->probe(keysize_in_bits) == 0)) { return cipher; } } return NULL; } const char * cryptoapi_cipher_get_description(cryptoapi_cipher_t cipher) { if (cipher == NULL) return NULL; return cipher->description; } static inline bool is_ptr_aligned(void *ptr, int alignment) { return (((uintptr_t)ptr % alignment) == 0); } static inline void * align_ptr(void *ptr, size_t alignment) { if (is_ptr_aligned(ptr, alignment)) return ptr; uintptr_t offset = alignment - ((uintptr_t)ptr % alignment); KKASSERT(offset < alignment); return ((uint8_t *)ptr + offset); } cryptoapi_cipher_session_t cryptoapi_cipher_newsession(cryptoapi_cipher_t cipher) { void *ptr; size_t sessionsz; cryptoapi_cipher_session_t session; if (cipher == NULL) return NULL; if (cipher->ivsize > sizeof(cryptoapi_cipher_iv)) { kprintf("FATAL: cryptoapi_cipher_iv has wrong size\n"); return NULL; } sessionsz = sizeof(struct cryptoapi_cipher_session) + cipher->ctxsize + (cipher->ctxalign - 1); ptr = kmalloc(sessionsz, M_CRYPTOAPI, M_WAITOK); if (ptr == NULL) return NULL; bzero(ptr, sessionsz); session = (struct cryptoapi_cipher_session *)ptr; session->cipher = cipher; session->context = NULL; if (cipher->ctxsize > 0) { session->context = align_ptr((uint8_t *)ptr + sizeof(struct cryptoapi_cipher_session), cipher->ctxalign); KKASSERT(is_ptr_aligned(session->context, cipher->ctxalign)); /** * Fill context with random data, just in case * someone forgets to initialize it. */ karc4random_buf(session->context, cipher->ctxsize); } return session; } void cryptoapi_cipher_freesession(cryptoapi_cipher_session_t session) { if (session == NULL) return; if (session->context) { memset(session->context, 0xFF, session->cipher->ctxsize); explicit_bzero(session->context, session->cipher->ctxsize); } bzero(session, sizeof(*session)); kfree(session, M_CRYPTOAPI); } int cryptoapi_cipher_setkey(cryptoapi_cipher_session_t session, const uint8_t *keydata, int keylen_in_bytes) { return session->cipher->setkey(session->context, keydata, keylen_in_bytes); } int cryptoapi_cipher_encrypt(const cryptoapi_cipher_session_t session, uint8_t *data, int datalen, const uint8_t *iv, int ivlen) { cryptoapi_cipher_iv iv2; if ((datalen % session->cipher->blocksize) != 0) return (EINVAL); memset(iv2, 0, sizeof(iv2)); memcpy(iv2, iv, ivlen); session->cipher->crypt(session->context, data, datalen, iv2, true); explicit_bzero(iv2, sizeof(iv2)); return (0); } int cryptoapi_cipher_decrypt(const cryptoapi_cipher_session_t session, uint8_t *data, int datalen, const uint8_t *iv, int ivlen) { cryptoapi_cipher_iv iv2; if ((datalen % session->cipher->blocksize) != 0) return (EINVAL); memset(iv2, 0, sizeof(iv2)); memcpy(iv2, iv, ivlen); session->cipher->crypt(session->context, data, datalen, iv2, false); explicit_bzero(iv2, sizeof(iv2)); return (0); } int cryptoapi_cipher_crypt(const cryptoapi_cipher_session_t session, uint8_t *data, int datalen, const uint8_t *iv, int ivlen, cryptoapi_cipher_mode mode) { switch (mode) { case CRYPTOAPI_CIPHER_ENCRYPT: return cryptoapi_cipher_encrypt(session, data, datalen, iv, ivlen); case CRYPTOAPI_CIPHER_DECRYPT: return cryptoapi_cipher_decrypt(session, data, datalen, iv, ivlen); default: return EINVAL; } } |