aes_ctr.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /**
  2. * AES CTR routines supporting VMX instructions on the Power 8
  3. *
  4. * Copyright (C) 2015 International Business Machines Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 only.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. *
  19. * Author: Marcelo Henrique Cerri <mhcerri@br.ibm.com>
  20. */
  21. #include <linux/types.h>
  22. #include <linux/err.h>
  23. #include <linux/crypto.h>
  24. #include <linux/delay.h>
  25. #include <linux/hardirq.h>
  26. #include <asm/switch_to.h>
  27. #include <crypto/aes.h>
  28. #include <crypto/scatterwalk.h>
  29. #include <crypto/skcipher.h>
  30. #include "aesp8-ppc.h"
  31. struct p8_aes_ctr_ctx {
  32. struct crypto_sync_skcipher *fallback;
  33. struct aes_key enc_key;
  34. };
  35. static int p8_aes_ctr_init(struct crypto_tfm *tfm)
  36. {
  37. const char *alg = crypto_tfm_alg_name(tfm);
  38. struct crypto_sync_skcipher *fallback;
  39. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  40. fallback = crypto_alloc_sync_skcipher(alg, 0,
  41. CRYPTO_ALG_NEED_FALLBACK);
  42. if (IS_ERR(fallback)) {
  43. printk(KERN_ERR
  44. "Failed to allocate transformation for '%s': %ld\n",
  45. alg, PTR_ERR(fallback));
  46. return PTR_ERR(fallback);
  47. }
  48. crypto_sync_skcipher_set_flags(
  49. fallback,
  50. crypto_skcipher_get_flags((struct crypto_skcipher *)tfm));
  51. ctx->fallback = fallback;
  52. return 0;
  53. }
  54. static void p8_aes_ctr_exit(struct crypto_tfm *tfm)
  55. {
  56. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  57. if (ctx->fallback) {
  58. crypto_free_sync_skcipher(ctx->fallback);
  59. ctx->fallback = NULL;
  60. }
  61. }
  62. static int p8_aes_ctr_setkey(struct crypto_tfm *tfm, const u8 *key,
  63. unsigned int keylen)
  64. {
  65. int ret;
  66. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  67. preempt_disable();
  68. pagefault_disable();
  69. enable_kernel_vsx();
  70. ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
  71. disable_kernel_vsx();
  72. pagefault_enable();
  73. preempt_enable();
  74. ret += crypto_sync_skcipher_setkey(ctx->fallback, key, keylen);
  75. return ret;
  76. }
  77. static void p8_aes_ctr_final(struct p8_aes_ctr_ctx *ctx,
  78. struct blkcipher_walk *walk)
  79. {
  80. u8 *ctrblk = walk->iv;
  81. u8 keystream[AES_BLOCK_SIZE];
  82. u8 *src = walk->src.virt.addr;
  83. u8 *dst = walk->dst.virt.addr;
  84. unsigned int nbytes = walk->nbytes;
  85. preempt_disable();
  86. pagefault_disable();
  87. enable_kernel_vsx();
  88. aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key);
  89. disable_kernel_vsx();
  90. pagefault_enable();
  91. preempt_enable();
  92. crypto_xor_cpy(dst, keystream, src, nbytes);
  93. crypto_inc(ctrblk, AES_BLOCK_SIZE);
  94. }
  95. static int p8_aes_ctr_crypt(struct blkcipher_desc *desc,
  96. struct scatterlist *dst,
  97. struct scatterlist *src, unsigned int nbytes)
  98. {
  99. int ret;
  100. u64 inc;
  101. struct blkcipher_walk walk;
  102. struct p8_aes_ctr_ctx *ctx =
  103. crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
  104. if (in_interrupt()) {
  105. SYNC_SKCIPHER_REQUEST_ON_STACK(req, ctx->fallback);
  106. skcipher_request_set_sync_tfm(req, ctx->fallback);
  107. skcipher_request_set_callback(req, desc->flags, NULL, NULL);
  108. skcipher_request_set_crypt(req, src, dst, nbytes, desc->info);
  109. ret = crypto_skcipher_encrypt(req);
  110. skcipher_request_zero(req);
  111. } else {
  112. blkcipher_walk_init(&walk, dst, src, nbytes);
  113. ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE);
  114. while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
  115. preempt_disable();
  116. pagefault_disable();
  117. enable_kernel_vsx();
  118. aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr,
  119. walk.dst.virt.addr,
  120. (nbytes &
  121. AES_BLOCK_MASK) /
  122. AES_BLOCK_SIZE,
  123. &ctx->enc_key,
  124. walk.iv);
  125. disable_kernel_vsx();
  126. pagefault_enable();
  127. preempt_enable();
  128. /* We need to update IV mostly for last bytes/round */
  129. inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE;
  130. if (inc > 0)
  131. while (inc--)
  132. crypto_inc(walk.iv, AES_BLOCK_SIZE);
  133. nbytes &= AES_BLOCK_SIZE - 1;
  134. ret = blkcipher_walk_done(desc, &walk, nbytes);
  135. }
  136. if (walk.nbytes) {
  137. p8_aes_ctr_final(ctx, &walk);
  138. ret = blkcipher_walk_done(desc, &walk, 0);
  139. }
  140. }
  141. return ret;
  142. }
  143. struct crypto_alg p8_aes_ctr_alg = {
  144. .cra_name = "ctr(aes)",
  145. .cra_driver_name = "p8_aes_ctr",
  146. .cra_module = THIS_MODULE,
  147. .cra_priority = 2000,
  148. .cra_type = &crypto_blkcipher_type,
  149. .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
  150. .cra_alignmask = 0,
  151. .cra_blocksize = 1,
  152. .cra_ctxsize = sizeof(struct p8_aes_ctr_ctx),
  153. .cra_init = p8_aes_ctr_init,
  154. .cra_exit = p8_aes_ctr_exit,
  155. .cra_blkcipher = {
  156. .ivsize = AES_BLOCK_SIZE,
  157. .min_keysize = AES_MIN_KEY_SIZE,
  158. .max_keysize = AES_MAX_KEY_SIZE,
  159. .setkey = p8_aes_ctr_setkey,
  160. .encrypt = p8_aes_ctr_crypt,
  161. .decrypt = p8_aes_ctr_crypt,
  162. },
  163. };