1 /*- 2 * Copyright (c) 2005-2008 Pawel Jakub Dawidek <pjd@FreeBSD.org> 3 * Copyright (c) 2010 Konstantin Belousov <kib@FreeBSD.org> 4 * Copyright (c) 2014 The FreeBSD Foundation 5 * Copyright (c) 2017 Conrad Meyer <cem@FreeBSD.org> 6 * All rights reserved. 7 * 8 * Portions of this software were developed by John-Mark Gurney 9 * under sponsorship of the FreeBSD Foundation and 10 * Rubicon Communications, LLC (Netgate). 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #include <sys/cdefs.h> 35 __FBSDID("$FreeBSD$"); 36 37 #include <sys/param.h> 38 #include <sys/bus.h> 39 #include <sys/kernel.h> 40 #include <sys/kobj.h> 41 #include <sys/libkern.h> 42 #include <sys/lock.h> 43 #include <sys/malloc.h> 44 #include <sys/mbuf.h> 45 #include <sys/module.h> 46 #include <sys/mutex.h> 47 #include <sys/smp.h> 48 #include <sys/systm.h> 49 #include <sys/uio.h> 50 51 #include <crypto/aesni/aesni.h> 52 #include <crypto/aesni/sha_sse.h> 53 #include <crypto/sha1.h> 54 #include <crypto/sha2/sha224.h> 55 #include <crypto/sha2/sha256.h> 56 57 #include <opencrypto/cryptodev.h> 58 #include <opencrypto/gmac.h> 59 #include <cryptodev_if.h> 60 61 #include <machine/md_var.h> 62 #include <machine/specialreg.h> 63 #include <machine/fpu.h> 64 65 static struct mtx_padalign *ctx_mtx; 66 static struct fpu_kern_ctx **ctx_fpu; 67 68 struct aesni_softc { 69 int32_t cid; 70 bool has_aes; 71 bool has_sha; 72 }; 73 74 #define ACQUIRE_CTX(i, ctx) \ 75 do { \ 76 (i) = PCPU_GET(cpuid); \ 77 mtx_lock(&ctx_mtx[(i)]); \ 78 (ctx) = ctx_fpu[(i)]; \ 79 } while (0) 80 #define RELEASE_CTX(i, ctx) \ 81 do { \ 82 mtx_unlock(&ctx_mtx[(i)]); \ 83 (i) = -1; \ 84 (ctx) = NULL; \ 85 } while (0) 86 87 static int aesni_cipher_setup(struct aesni_session *ses, 88 const struct crypto_session_params *csp); 89 static int aesni_cipher_process(struct aesni_session *ses, struct cryptop *crp); 90 static int aesni_cipher_crypt(struct aesni_session *ses, struct cryptop *crp, 91 const struct crypto_session_params *csp); 92 static int aesni_cipher_mac(struct aesni_session *ses, struct cryptop *crp, 93 const struct crypto_session_params *csp); 94 95 MALLOC_DEFINE(M_AESNI, "aesni_data", "AESNI Data"); 96 97 static void 98 aesni_identify(driver_t *drv, device_t parent) 99 { 100 101 /* NB: order 10 is so we get attached after h/w devices */ 102 if (device_find_child(parent, "aesni", -1) == NULL && 103 BUS_ADD_CHILD(parent, 10, "aesni", -1) == 0) 104 panic("aesni: could not attach"); 105 } 106 107 static void 108 detect_cpu_features(bool *has_aes, bool *has_sha) 109 { 110 111 *has_aes = ((cpu_feature2 & CPUID2_AESNI) != 0 && 112 (cpu_feature2 & CPUID2_SSE41) != 0); 113 *has_sha = ((cpu_stdext_feature & CPUID_STDEXT_SHA) != 0 && 114 (cpu_feature2 & CPUID2_SSSE3) != 0); 115 } 116 117 static int 118 aesni_probe(device_t dev) 119 { 120 bool has_aes, has_sha; 121 122 detect_cpu_features(&has_aes, &has_sha); 123 if (!has_aes && !has_sha) { 124 device_printf(dev, "No AES or SHA support.\n"); 125 return (EINVAL); 126 } else if (has_aes && has_sha) 127 device_set_desc(dev, 128 "AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS,SHA1,SHA256"); 129 else if (has_aes) 130 device_set_desc(dev, 131 "AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS"); 132 else 133 device_set_desc(dev, "SHA1,SHA256"); 134 135 return (0); 136 } 137 138 static void 139 aesni_cleanctx(void) 140 { 141 int i; 142 143 /* XXX - no way to return driverid */ 144 CPU_FOREACH(i) { 145 if (ctx_fpu[i] != NULL) { 146 mtx_destroy(&ctx_mtx[i]); 147 fpu_kern_free_ctx(ctx_fpu[i]); 148 } 149 ctx_fpu[i] = NULL; 150 } 151 free(ctx_mtx, M_AESNI); 152 ctx_mtx = NULL; 153 free(ctx_fpu, M_AESNI); 154 ctx_fpu = NULL; 155 } 156 157 static int 158 aesni_attach(device_t dev) 159 { 160 struct aesni_softc *sc; 161 int i; 162 163 sc = device_get_softc(dev); 164 165 sc->cid = crypto_get_driverid(dev, sizeof(struct aesni_session), 166 CRYPTOCAP_F_SOFTWARE | CRYPTOCAP_F_SYNC | 167 CRYPTOCAP_F_ACCEL_SOFTWARE); 168 if (sc->cid < 0) { 169 device_printf(dev, "Could not get crypto driver id.\n"); 170 return (ENOMEM); 171 } 172 173 ctx_mtx = malloc(sizeof *ctx_mtx * (mp_maxid + 1), M_AESNI, 174 M_WAITOK|M_ZERO); 175 ctx_fpu = malloc(sizeof *ctx_fpu * (mp_maxid + 1), M_AESNI, 176 M_WAITOK|M_ZERO); 177 178 CPU_FOREACH(i) { 179 #ifdef __amd64__ 180 ctx_fpu[i] = fpu_kern_alloc_ctx_domain( 181 pcpu_find(i)->pc_domain, FPU_KERN_NORMAL); 182 #else 183 ctx_fpu[i] = fpu_kern_alloc_ctx(FPU_KERN_NORMAL); 184 #endif 185 mtx_init(&ctx_mtx[i], "anifpumtx", NULL, MTX_DEF|MTX_NEW); 186 } 187 188 detect_cpu_features(&sc->has_aes, &sc->has_sha); 189 return (0); 190 } 191 192 static int 193 aesni_detach(device_t dev) 194 { 195 struct aesni_softc *sc; 196 197 sc = device_get_softc(dev); 198 199 crypto_unregister_all(sc->cid); 200 201 aesni_cleanctx(); 202 203 return (0); 204 } 205 206 static bool 207 aesni_auth_supported(struct aesni_softc *sc, 208 const struct crypto_session_params *csp) 209 { 210 211 if (!sc->has_sha) 212 return (false); 213 214 switch (csp->csp_auth_alg) { 215 case CRYPTO_SHA1: 216 case CRYPTO_SHA2_224: 217 case CRYPTO_SHA2_256: 218 case CRYPTO_SHA1_HMAC: 219 case CRYPTO_SHA2_224_HMAC: 220 case CRYPTO_SHA2_256_HMAC: 221 break; 222 default: 223 return (false); 224 } 225 226 return (true); 227 } 228 229 static bool 230 aesni_cipher_supported(struct aesni_softc *sc, 231 const struct crypto_session_params *csp) 232 { 233 234 if (!sc->has_aes) 235 return (false); 236 237 switch (csp->csp_cipher_alg) { 238 case CRYPTO_AES_CBC: 239 case CRYPTO_AES_ICM: 240 if (csp->csp_ivlen != AES_BLOCK_LEN) 241 return (false); 242 return (sc->has_aes); 243 case CRYPTO_AES_XTS: 244 if (csp->csp_ivlen != AES_XTS_IV_LEN) 245 return (false); 246 return (sc->has_aes); 247 default: 248 return (false); 249 } 250 } 251 252 #define SUPPORTED_SES (CSP_F_SEPARATE_OUTPUT | CSP_F_SEPARATE_AAD | CSP_F_ESN) 253 254 static int 255 aesni_probesession(device_t dev, const struct crypto_session_params *csp) 256 { 257 struct aesni_softc *sc; 258 259 sc = device_get_softc(dev); 260 if ((csp->csp_flags & ~(SUPPORTED_SES)) != 0) 261 return (EINVAL); 262 switch (csp->csp_mode) { 263 case CSP_MODE_DIGEST: 264 if (!aesni_auth_supported(sc, csp)) 265 return (EINVAL); 266 break; 267 case CSP_MODE_CIPHER: 268 if (!aesni_cipher_supported(sc, csp)) 269 return (EINVAL); 270 break; 271 case CSP_MODE_AEAD: 272 switch (csp->csp_cipher_alg) { 273 case CRYPTO_AES_NIST_GCM_16: 274 if (csp->csp_auth_mlen != 0 && 275 csp->csp_auth_mlen != GMAC_DIGEST_LEN) 276 return (EINVAL); 277 if (csp->csp_ivlen != AES_GCM_IV_LEN || 278 !sc->has_aes) 279 return (EINVAL); 280 break; 281 case CRYPTO_AES_CCM_16: 282 if (csp->csp_auth_mlen != 0 && 283 csp->csp_auth_mlen != AES_CBC_MAC_HASH_LEN) 284 return (EINVAL); 285 if (csp->csp_ivlen != AES_CCM_IV_LEN || 286 !sc->has_aes) 287 return (EINVAL); 288 break; 289 default: 290 return (EINVAL); 291 } 292 break; 293 case CSP_MODE_ETA: 294 if (!aesni_auth_supported(sc, csp) || 295 !aesni_cipher_supported(sc, csp)) 296 return (EINVAL); 297 break; 298 default: 299 return (EINVAL); 300 } 301 302 return (CRYPTODEV_PROBE_ACCEL_SOFTWARE); 303 } 304 305 static int 306 aesni_newsession(device_t dev, crypto_session_t cses, 307 const struct crypto_session_params *csp) 308 { 309 struct aesni_softc *sc; 310 struct aesni_session *ses; 311 int error; 312 313 sc = device_get_softc(dev); 314 315 ses = crypto_get_driver_session(cses); 316 317 switch (csp->csp_mode) { 318 case CSP_MODE_DIGEST: 319 case CSP_MODE_CIPHER: 320 case CSP_MODE_AEAD: 321 case CSP_MODE_ETA: 322 break; 323 default: 324 return (EINVAL); 325 } 326 error = aesni_cipher_setup(ses, csp); 327 if (error != 0) { 328 CRYPTDEB("setup failed"); 329 return (error); 330 } 331 332 return (0); 333 } 334 335 static int 336 aesni_process(device_t dev, struct cryptop *crp, int hint __unused) 337 { 338 struct aesni_session *ses; 339 int error; 340 341 ses = crypto_get_driver_session(crp->crp_session); 342 343 error = aesni_cipher_process(ses, crp); 344 345 crp->crp_etype = error; 346 crypto_done(crp); 347 return (0); 348 } 349 350 static uint8_t * 351 aesni_cipher_alloc(struct cryptop *crp, int start, int length, bool *allocated) 352 { 353 uint8_t *addr; 354 355 addr = crypto_contiguous_subsegment(crp, start, length); 356 if (addr != NULL) { 357 *allocated = false; 358 return (addr); 359 } 360 addr = malloc(length, M_AESNI, M_NOWAIT); 361 if (addr != NULL) { 362 *allocated = true; 363 crypto_copydata(crp, start, length, addr); 364 } else 365 *allocated = false; 366 return (addr); 367 } 368 369 static device_method_t aesni_methods[] = { 370 DEVMETHOD(device_identify, aesni_identify), 371 DEVMETHOD(device_probe, aesni_probe), 372 DEVMETHOD(device_attach, aesni_attach), 373 DEVMETHOD(device_detach, aesni_detach), 374 375 DEVMETHOD(cryptodev_probesession, aesni_probesession), 376 DEVMETHOD(cryptodev_newsession, aesni_newsession), 377 DEVMETHOD(cryptodev_process, aesni_process), 378 379 DEVMETHOD_END 380 }; 381 382 static driver_t aesni_driver = { 383 "aesni", 384 aesni_methods, 385 sizeof(struct aesni_softc), 386 }; 387 static devclass_t aesni_devclass; 388 389 DRIVER_MODULE(aesni, nexus, aesni_driver, aesni_devclass, 0, 0); 390 MODULE_VERSION(aesni, 1); 391 MODULE_DEPEND(aesni, crypto, 1, 1, 1); 392 393 static int 394 intel_sha1_update(void *vctx, const void *vdata, u_int datalen) 395 { 396 struct sha1_ctxt *ctx = vctx; 397 const char *data = vdata; 398 size_t gaplen; 399 size_t gapstart; 400 size_t off; 401 size_t copysiz; 402 u_int blocks; 403 404 off = 0; 405 /* Do any aligned blocks without redundant copying. */ 406 if (datalen >= 64 && ctx->count % 64 == 0) { 407 blocks = datalen / 64; 408 ctx->c.b64[0] += blocks * 64 * 8; 409 intel_sha1_step(ctx->h.b32, data + off, blocks); 410 off += blocks * 64; 411 } 412 413 while (off < datalen) { 414 gapstart = ctx->count % 64; 415 gaplen = 64 - gapstart; 416 417 copysiz = (gaplen < datalen - off) ? gaplen : datalen - off; 418 bcopy(&data[off], &ctx->m.b8[gapstart], copysiz); 419 ctx->count += copysiz; 420 ctx->count %= 64; 421 ctx->c.b64[0] += copysiz * 8; 422 if (ctx->count % 64 == 0) 423 intel_sha1_step(ctx->h.b32, (void *)ctx->m.b8, 1); 424 off += copysiz; 425 } 426 427 return (0); 428 } 429 430 static void 431 SHA1_Init_fn(void *ctx) 432 { 433 sha1_init(ctx); 434 } 435 436 static void 437 SHA1_Finalize_fn(void *digest, void *ctx) 438 { 439 sha1_result(ctx, digest); 440 } 441 442 static int 443 intel_sha256_update(void *vctx, const void *vdata, u_int len) 444 { 445 SHA256_CTX *ctx = vctx; 446 uint64_t bitlen; 447 uint32_t r; 448 u_int blocks; 449 const unsigned char *src = vdata; 450 451 /* Number of bytes left in the buffer from previous updates */ 452 r = (ctx->count >> 3) & 0x3f; 453 454 /* Convert the length into a number of bits */ 455 bitlen = len << 3; 456 457 /* Update number of bits */ 458 ctx->count += bitlen; 459 460 /* Handle the case where we don't need to perform any transforms */ 461 if (len < 64 - r) { 462 memcpy(&ctx->buf[r], src, len); 463 return (0); 464 } 465 466 /* Finish the current block */ 467 memcpy(&ctx->buf[r], src, 64 - r); 468 intel_sha256_step(ctx->state, ctx->buf, 1); 469 src += 64 - r; 470 len -= 64 - r; 471 472 /* Perform complete blocks */ 473 if (len >= 64) { 474 blocks = len / 64; 475 intel_sha256_step(ctx->state, src, blocks); 476 src += blocks * 64; 477 len -= blocks * 64; 478 } 479 480 /* Copy left over data into buffer */ 481 memcpy(ctx->buf, src, len); 482 483 return (0); 484 } 485 486 static void 487 SHA224_Init_fn(void *ctx) 488 { 489 SHA224_Init(ctx); 490 } 491 492 static void 493 SHA224_Finalize_fn(void *digest, void *ctx) 494 { 495 SHA224_Final(digest, ctx); 496 } 497 498 static void 499 SHA256_Init_fn(void *ctx) 500 { 501 SHA256_Init(ctx); 502 } 503 504 static void 505 SHA256_Finalize_fn(void *digest, void *ctx) 506 { 507 SHA256_Final(digest, ctx); 508 } 509 510 static int 511 aesni_authprepare(struct aesni_session *ses, int klen) 512 { 513 514 if (klen > SHA1_BLOCK_LEN) 515 return (EINVAL); 516 if ((ses->hmac && klen == 0) || (!ses->hmac && klen != 0)) 517 return (EINVAL); 518 return (0); 519 } 520 521 static int 522 aesni_cipherprepare(const struct crypto_session_params *csp) 523 { 524 525 switch (csp->csp_cipher_alg) { 526 case CRYPTO_AES_ICM: 527 case CRYPTO_AES_NIST_GCM_16: 528 case CRYPTO_AES_CCM_16: 529 case CRYPTO_AES_CBC: 530 switch (csp->csp_cipher_klen * 8) { 531 case 128: 532 case 192: 533 case 256: 534 break; 535 default: 536 CRYPTDEB("invalid CBC/ICM/GCM key length"); 537 return (EINVAL); 538 } 539 break; 540 case CRYPTO_AES_XTS: 541 switch (csp->csp_cipher_klen * 8) { 542 case 256: 543 case 512: 544 break; 545 default: 546 CRYPTDEB("invalid XTS key length"); 547 return (EINVAL); 548 } 549 break; 550 default: 551 return (EINVAL); 552 } 553 return (0); 554 } 555 556 static int 557 aesni_cipher_setup(struct aesni_session *ses, 558 const struct crypto_session_params *csp) 559 { 560 struct fpu_kern_ctx *ctx; 561 int kt, ctxidx, error; 562 563 switch (csp->csp_auth_alg) { 564 case CRYPTO_SHA1_HMAC: 565 ses->hmac = true; 566 /* FALLTHROUGH */ 567 case CRYPTO_SHA1: 568 ses->hash_len = SHA1_HASH_LEN; 569 ses->hash_init = SHA1_Init_fn; 570 ses->hash_update = intel_sha1_update; 571 ses->hash_finalize = SHA1_Finalize_fn; 572 break; 573 case CRYPTO_SHA2_224_HMAC: 574 ses->hmac = true; 575 /* FALLTHROUGH */ 576 case CRYPTO_SHA2_224: 577 ses->hash_len = SHA2_224_HASH_LEN; 578 ses->hash_init = SHA224_Init_fn; 579 ses->hash_update = intel_sha256_update; 580 ses->hash_finalize = SHA224_Finalize_fn; 581 break; 582 case CRYPTO_SHA2_256_HMAC: 583 ses->hmac = true; 584 /* FALLTHROUGH */ 585 case CRYPTO_SHA2_256: 586 ses->hash_len = SHA2_256_HASH_LEN; 587 ses->hash_init = SHA256_Init_fn; 588 ses->hash_update = intel_sha256_update; 589 ses->hash_finalize = SHA256_Finalize_fn; 590 break; 591 } 592 593 if (ses->hash_len != 0) { 594 if (csp->csp_auth_mlen == 0) 595 ses->mlen = ses->hash_len; 596 else 597 ses->mlen = csp->csp_auth_mlen; 598 599 error = aesni_authprepare(ses, csp->csp_auth_klen); 600 if (error != 0) 601 return (error); 602 } 603 604 error = aesni_cipherprepare(csp); 605 if (error != 0) 606 return (error); 607 608 kt = is_fpu_kern_thread(0) || (csp->csp_cipher_alg == 0); 609 if (!kt) { 610 ACQUIRE_CTX(ctxidx, ctx); 611 fpu_kern_enter(curthread, ctx, 612 FPU_KERN_NORMAL | FPU_KERN_KTHR); 613 } 614 615 error = 0; 616 if (csp->csp_cipher_key != NULL) 617 aesni_cipher_setup_common(ses, csp, csp->csp_cipher_key, 618 csp->csp_cipher_klen); 619 620 if (!kt) { 621 fpu_kern_leave(curthread, ctx); 622 RELEASE_CTX(ctxidx, ctx); 623 } 624 return (error); 625 } 626 627 static int 628 aesni_cipher_process(struct aesni_session *ses, struct cryptop *crp) 629 { 630 const struct crypto_session_params *csp; 631 struct fpu_kern_ctx *ctx; 632 int error, ctxidx; 633 bool kt; 634 635 csp = crypto_get_params(crp->crp_session); 636 switch (csp->csp_cipher_alg) { 637 case CRYPTO_AES_ICM: 638 case CRYPTO_AES_NIST_GCM_16: 639 case CRYPTO_AES_CCM_16: 640 if ((crp->crp_flags & CRYPTO_F_IV_SEPARATE) == 0) 641 return (EINVAL); 642 break; 643 case CRYPTO_AES_CBC: 644 case CRYPTO_AES_XTS: 645 /* CBC & XTS can only handle full blocks for now */ 646 if ((crp->crp_payload_length % AES_BLOCK_LEN) != 0) 647 return (EINVAL); 648 break; 649 } 650 651 ctx = NULL; 652 ctxidx = 0; 653 error = 0; 654 kt = is_fpu_kern_thread(0); 655 if (!kt) { 656 ACQUIRE_CTX(ctxidx, ctx); 657 fpu_kern_enter(curthread, ctx, 658 FPU_KERN_NORMAL | FPU_KERN_KTHR); 659 } 660 661 /* Do work */ 662 if (csp->csp_mode == CSP_MODE_ETA) { 663 if (CRYPTO_OP_IS_ENCRYPT(crp->crp_op)) { 664 error = aesni_cipher_crypt(ses, crp, csp); 665 if (error == 0) 666 error = aesni_cipher_mac(ses, crp, csp); 667 } else { 668 error = aesni_cipher_mac(ses, crp, csp); 669 if (error == 0) 670 error = aesni_cipher_crypt(ses, crp, csp); 671 } 672 } else if (csp->csp_mode == CSP_MODE_DIGEST) 673 error = aesni_cipher_mac(ses, crp, csp); 674 else 675 error = aesni_cipher_crypt(ses, crp, csp); 676 677 if (!kt) { 678 fpu_kern_leave(curthread, ctx); 679 RELEASE_CTX(ctxidx, ctx); 680 } 681 return (error); 682 } 683 684 static int 685 aesni_cipher_crypt(struct aesni_session *ses, struct cryptop *crp, 686 const struct crypto_session_params *csp) 687 { 688 uint8_t iv[AES_BLOCK_LEN], tag[GMAC_DIGEST_LEN]; 689 uint8_t *authbuf, *buf, *outbuf; 690 int error; 691 bool encflag, allocated, authallocated, outallocated, outcopy; 692 693 buf = aesni_cipher_alloc(crp, crp->crp_payload_start, 694 crp->crp_payload_length, &allocated); 695 if (buf == NULL) 696 return (ENOMEM); 697 698 outallocated = false; 699 authallocated = false; 700 authbuf = NULL; 701 if (csp->csp_cipher_alg == CRYPTO_AES_NIST_GCM_16 || 702 csp->csp_cipher_alg == CRYPTO_AES_CCM_16) { 703 if (crp->crp_aad != NULL) 704 authbuf = crp->crp_aad; 705 else 706 authbuf = aesni_cipher_alloc(crp, crp->crp_aad_start, 707 crp->crp_aad_length, &authallocated); 708 if (authbuf == NULL) { 709 error = ENOMEM; 710 goto out; 711 } 712 } 713 714 if (CRYPTO_HAS_OUTPUT_BUFFER(crp)) { 715 outbuf = crypto_buffer_contiguous_subsegment(&crp->crp_obuf, 716 crp->crp_payload_output_start, crp->crp_payload_length); 717 if (outbuf == NULL) { 718 outcopy = true; 719 if (allocated) 720 outbuf = buf; 721 else { 722 outbuf = malloc(crp->crp_payload_length, 723 M_AESNI, M_NOWAIT); 724 if (outbuf == NULL) { 725 error = ENOMEM; 726 goto out; 727 } 728 outallocated = true; 729 } 730 } else 731 outcopy = false; 732 } else { 733 outbuf = buf; 734 outcopy = allocated; 735 } 736 737 error = 0; 738 encflag = CRYPTO_OP_IS_ENCRYPT(crp->crp_op); 739 if (crp->crp_cipher_key != NULL) 740 aesni_cipher_setup_common(ses, csp, crp->crp_cipher_key, 741 csp->csp_cipher_klen); 742 743 crypto_read_iv(crp, iv); 744 745 switch (csp->csp_cipher_alg) { 746 case CRYPTO_AES_CBC: 747 if (encflag) 748 aesni_encrypt_cbc(ses->rounds, ses->enc_schedule, 749 crp->crp_payload_length, buf, outbuf, iv); 750 else { 751 if (buf != outbuf) 752 memcpy(outbuf, buf, crp->crp_payload_length); 753 aesni_decrypt_cbc(ses->rounds, ses->dec_schedule, 754 crp->crp_payload_length, outbuf, iv); 755 } 756 break; 757 case CRYPTO_AES_ICM: 758 /* encryption & decryption are the same */ 759 aesni_encrypt_icm(ses->rounds, ses->enc_schedule, 760 crp->crp_payload_length, buf, outbuf, iv); 761 break; 762 case CRYPTO_AES_XTS: 763 if (encflag) 764 aesni_encrypt_xts(ses->rounds, ses->enc_schedule, 765 ses->xts_schedule, crp->crp_payload_length, buf, 766 outbuf, iv); 767 else 768 aesni_decrypt_xts(ses->rounds, ses->dec_schedule, 769 ses->xts_schedule, crp->crp_payload_length, buf, 770 outbuf, iv); 771 break; 772 case CRYPTO_AES_NIST_GCM_16: 773 if (encflag) { 774 memset(tag, 0, sizeof(tag)); 775 AES_GCM_encrypt(buf, outbuf, authbuf, iv, tag, 776 crp->crp_payload_length, crp->crp_aad_length, 777 csp->csp_ivlen, ses->enc_schedule, ses->rounds); 778 crypto_copyback(crp, crp->crp_digest_start, sizeof(tag), 779 tag); 780 } else { 781 crypto_copydata(crp, crp->crp_digest_start, sizeof(tag), 782 tag); 783 if (!AES_GCM_decrypt(buf, outbuf, authbuf, iv, tag, 784 crp->crp_payload_length, crp->crp_aad_length, 785 csp->csp_ivlen, ses->enc_schedule, ses->rounds)) 786 error = EBADMSG; 787 } 788 break; 789 case CRYPTO_AES_CCM_16: 790 if (encflag) { 791 memset(tag, 0, sizeof(tag)); 792 AES_CCM_encrypt(buf, outbuf, authbuf, iv, tag, 793 crp->crp_payload_length, crp->crp_aad_length, 794 csp->csp_ivlen, ses->enc_schedule, ses->rounds); 795 crypto_copyback(crp, crp->crp_digest_start, sizeof(tag), 796 tag); 797 } else { 798 crypto_copydata(crp, crp->crp_digest_start, sizeof(tag), 799 tag); 800 if (!AES_CCM_decrypt(buf, outbuf, authbuf, iv, tag, 801 crp->crp_payload_length, crp->crp_aad_length, 802 csp->csp_ivlen, ses->enc_schedule, ses->rounds)) 803 error = EBADMSG; 804 } 805 break; 806 } 807 if (outcopy && error == 0) 808 crypto_copyback(crp, CRYPTO_HAS_OUTPUT_BUFFER(crp) ? 809 crp->crp_payload_output_start : crp->crp_payload_start, 810 crp->crp_payload_length, outbuf); 811 812 out: 813 if (allocated) 814 zfree(buf, M_AESNI); 815 if (authallocated) 816 zfree(authbuf, M_AESNI); 817 if (outallocated) 818 zfree(outbuf, M_AESNI); 819 explicit_bzero(iv, sizeof(iv)); 820 explicit_bzero(tag, sizeof(tag)); 821 return (error); 822 } 823 824 static int 825 aesni_cipher_mac(struct aesni_session *ses, struct cryptop *crp, 826 const struct crypto_session_params *csp) 827 { 828 union { 829 struct SHA256Context sha2 __aligned(16); 830 struct sha1_ctxt sha1 __aligned(16); 831 } sctx; 832 uint32_t res[SHA2_256_HASH_LEN / sizeof(uint32_t)]; 833 const uint8_t *key; 834 int i, keylen; 835 836 if (crp->crp_auth_key != NULL) 837 key = crp->crp_auth_key; 838 else 839 key = csp->csp_auth_key; 840 keylen = csp->csp_auth_klen; 841 842 if (ses->hmac) { 843 uint8_t hmac_key[SHA1_BLOCK_LEN] __aligned(16); 844 845 /* Inner hash: (K ^ IPAD) || data */ 846 ses->hash_init(&sctx); 847 for (i = 0; i < keylen; i++) 848 hmac_key[i] = key[i] ^ HMAC_IPAD_VAL; 849 for (i = keylen; i < sizeof(hmac_key); i++) 850 hmac_key[i] = 0 ^ HMAC_IPAD_VAL; 851 ses->hash_update(&sctx, hmac_key, sizeof(hmac_key)); 852 853 if (crp->crp_aad != NULL) 854 ses->hash_update(&sctx, crp->crp_aad, 855 crp->crp_aad_length); 856 else 857 crypto_apply(crp, crp->crp_aad_start, 858 crp->crp_aad_length, ses->hash_update, &sctx); 859 if (CRYPTO_HAS_OUTPUT_BUFFER(crp) && 860 CRYPTO_OP_IS_ENCRYPT(crp->crp_op)) 861 crypto_apply_buf(&crp->crp_obuf, 862 crp->crp_payload_output_start, 863 crp->crp_payload_length, 864 ses->hash_update, &sctx); 865 else 866 crypto_apply(crp, crp->crp_payload_start, 867 crp->crp_payload_length, ses->hash_update, &sctx); 868 869 if (csp->csp_flags & CSP_F_ESN) 870 ses->hash_update(&sctx, crp->crp_esn, 4); 871 872 ses->hash_finalize(res, &sctx); 873 874 /* Outer hash: (K ^ OPAD) || inner hash */ 875 ses->hash_init(&sctx); 876 for (i = 0; i < keylen; i++) 877 hmac_key[i] = key[i] ^ HMAC_OPAD_VAL; 878 for (i = keylen; i < sizeof(hmac_key); i++) 879 hmac_key[i] = 0 ^ HMAC_OPAD_VAL; 880 ses->hash_update(&sctx, hmac_key, sizeof(hmac_key)); 881 ses->hash_update(&sctx, res, ses->hash_len); 882 ses->hash_finalize(res, &sctx); 883 explicit_bzero(hmac_key, sizeof(hmac_key)); 884 } else { 885 ses->hash_init(&sctx); 886 887 if (crp->crp_aad != NULL) 888 ses->hash_update(&sctx, crp->crp_aad, 889 crp->crp_aad_length); 890 else 891 crypto_apply(crp, crp->crp_aad_start, 892 crp->crp_aad_length, ses->hash_update, &sctx); 893 if (CRYPTO_HAS_OUTPUT_BUFFER(crp) && 894 CRYPTO_OP_IS_ENCRYPT(crp->crp_op)) 895 crypto_apply_buf(&crp->crp_obuf, 896 crp->crp_payload_output_start, 897 crp->crp_payload_length, 898 ses->hash_update, &sctx); 899 else 900 crypto_apply(crp, crp->crp_payload_start, 901 crp->crp_payload_length, 902 ses->hash_update, &sctx); 903 904 ses->hash_finalize(res, &sctx); 905 } 906 907 if (crp->crp_op & CRYPTO_OP_VERIFY_DIGEST) { 908 uint32_t res2[SHA2_256_HASH_LEN / sizeof(uint32_t)]; 909 910 crypto_copydata(crp, crp->crp_digest_start, ses->mlen, res2); 911 if (timingsafe_bcmp(res, res2, ses->mlen) != 0) 912 return (EBADMSG); 913 explicit_bzero(res2, sizeof(res2)); 914 } else 915 crypto_copyback(crp, crp->crp_digest_start, ses->mlen, res); 916 explicit_bzero(res, sizeof(res)); 917 return (0); 918 } 919