aes_ctr.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 "aesp8-ppc.h"
  30. struct p8_aes_ctr_ctx {
  31. struct crypto_blkcipher *fallback;
  32. struct aes_key enc_key;
  33. };
  34. static int p8_aes_ctr_init(struct crypto_tfm *tfm)
  35. {
  36. const char *alg;
  37. struct crypto_blkcipher *fallback;
  38. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  39. if (!(alg = crypto_tfm_alg_name(tfm))) {
  40. printk(KERN_ERR "Failed to get algorithm name.\n");
  41. return -ENOENT;
  42. }
  43. fallback =
  44. crypto_alloc_blkcipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
  45. if (IS_ERR(fallback)) {
  46. printk(KERN_ERR
  47. "Failed to allocate transformation for '%s': %ld\n",
  48. alg, PTR_ERR(fallback));
  49. return PTR_ERR(fallback);
  50. }
  51. crypto_blkcipher_set_flags(
  52. fallback,
  53. crypto_blkcipher_get_flags((struct crypto_blkcipher *)tfm));
  54. ctx->fallback = fallback;
  55. return 0;
  56. }
  57. static void p8_aes_ctr_exit(struct crypto_tfm *tfm)
  58. {
  59. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  60. if (ctx->fallback) {
  61. crypto_free_blkcipher(ctx->fallback);
  62. ctx->fallback = NULL;
  63. }
  64. }
  65. static int p8_aes_ctr_setkey(struct crypto_tfm *tfm, const u8 *key,
  66. unsigned int keylen)
  67. {
  68. int ret;
  69. struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
  70. preempt_disable();
  71. pagefault_disable();
  72. enable_kernel_altivec();
  73. enable_kernel_vsx();
  74. ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
  75. pagefault_enable();
  76. preempt_enable();
  77. ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen);
  78. return ret;
  79. }
  80. static void p8_aes_ctr_final(struct p8_aes_ctr_ctx *ctx,
  81. struct blkcipher_walk *walk)
  82. {
  83. u8 *ctrblk = walk->iv;
  84. u8 keystream[AES_BLOCK_SIZE];
  85. u8 *src = walk->src.virt.addr;
  86. u8 *dst = walk->dst.virt.addr;
  87. unsigned int nbytes = walk->nbytes;
  88. preempt_disable();
  89. pagefault_disable();
  90. enable_kernel_altivec();
  91. enable_kernel_vsx();
  92. aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key);
  93. pagefault_enable();
  94. preempt_enable();
  95. crypto_xor(keystream, src, nbytes);
  96. memcpy(dst, keystream, nbytes);
  97. crypto_inc(ctrblk, AES_BLOCK_SIZE);
  98. }
  99. static int p8_aes_ctr_crypt(struct blkcipher_desc *desc,
  100. struct scatterlist *dst,
  101. struct scatterlist *src, unsigned int nbytes)
  102. {
  103. int ret;
  104. u64 inc;
  105. struct blkcipher_walk walk;
  106. struct p8_aes_ctr_ctx *ctx =
  107. crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
  108. struct blkcipher_desc fallback_desc = {
  109. .tfm = ctx->fallback,
  110. .info = desc->info,
  111. .flags = desc->flags
  112. };
  113. if (in_interrupt()) {
  114. ret = crypto_blkcipher_encrypt(&fallback_desc, dst, src,
  115. nbytes);
  116. } else {
  117. blkcipher_walk_init(&walk, dst, src, nbytes);
  118. ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE);
  119. while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
  120. preempt_disable();
  121. pagefault_disable();
  122. enable_kernel_altivec();
  123. enable_kernel_vsx();
  124. aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr,
  125. walk.dst.virt.addr,
  126. (nbytes &
  127. AES_BLOCK_MASK) /
  128. AES_BLOCK_SIZE,
  129. &ctx->enc_key,
  130. walk.iv);
  131. pagefault_enable();
  132. preempt_enable();
  133. /* We need to update IV mostly for last bytes/round */
  134. inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE;
  135. if (inc > 0)
  136. while (inc--)
  137. crypto_inc(walk.iv, AES_BLOCK_SIZE);
  138. nbytes &= AES_BLOCK_SIZE - 1;
  139. ret = blkcipher_walk_done(desc, &walk, nbytes);
  140. }
  141. if (walk.nbytes) {
  142. p8_aes_ctr_final(ctx, &walk);
  143. ret = blkcipher_walk_done(desc, &walk, 0);
  144. }
  145. }
  146. return ret;
  147. }
  148. struct crypto_alg p8_aes_ctr_alg = {
  149. .cra_name = "ctr(aes)",
  150. .cra_driver_name = "p8_aes_ctr",
  151. .cra_module = THIS_MODULE,
  152. .cra_priority = 2000,
  153. .cra_type = &crypto_blkcipher_type,
  154. .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
  155. .cra_alignmask = 0,
  156. .cra_blocksize = 1,
  157. .cra_ctxsize = sizeof(struct p8_aes_ctr_ctx),
  158. .cra_init = p8_aes_ctr_init,
  159. .cra_exit = p8_aes_ctr_exit,
  160. .cra_blkcipher = {
  161. .ivsize = AES_BLOCK_SIZE,
  162. .min_keysize = AES_MIN_KEY_SIZE,
  163. .max_keysize = AES_MAX_KEY_SIZE,
  164. .setkey = p8_aes_ctr_setkey,
  165. .encrypt = p8_aes_ctr_crypt,
  166. .decrypt = p8_aes_ctr_crypt,
  167. },
  168. };