blob: 7cf6d31c1123a117d55dc3de87ed543a3c6279a6 [file] [log] [blame]
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -02001/**
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
22#include <linux/types.h>
23#include <linux/err.h>
24#include <linux/crypto.h>
25#include <linux/delay.h>
26#include <linux/hardirq.h>
27#include <asm/switch_to.h>
28#include <crypto/aes.h>
29#include <crypto/scatterwalk.h>
30#include "aesp8-ppc.h"
31
32struct p8_aes_ctr_ctx {
Herbert Xu4beb1062015-06-15 16:55:46 +080033 struct crypto_blkcipher *fallback;
34 struct aes_key enc_key;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020035};
36
37static int p8_aes_ctr_init(struct crypto_tfm *tfm)
38{
Herbert Xu4beb1062015-06-15 16:55:46 +080039 const char *alg;
40 struct crypto_blkcipher *fallback;
41 struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020042
Herbert Xu4beb1062015-06-15 16:55:46 +080043 if (!(alg = crypto_tfm_alg_name(tfm))) {
44 printk(KERN_ERR "Failed to get algorithm name.\n");
45 return -ENOENT;
46 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020047
Herbert Xu4beb1062015-06-15 16:55:46 +080048 fallback =
49 crypto_alloc_blkcipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
50 if (IS_ERR(fallback)) {
51 printk(KERN_ERR
52 "Failed to allocate transformation for '%s': %ld\n",
53 alg, PTR_ERR(fallback));
54 return PTR_ERR(fallback);
55 }
56 printk(KERN_INFO "Using '%s' as fallback implementation.\n",
57 crypto_tfm_alg_driver_name((struct crypto_tfm *) fallback));
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020058
Herbert Xu4beb1062015-06-15 16:55:46 +080059 crypto_blkcipher_set_flags(
60 fallback,
61 crypto_blkcipher_get_flags((struct crypto_blkcipher *)tfm));
62 ctx->fallback = fallback;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020063
Herbert Xu4beb1062015-06-15 16:55:46 +080064 return 0;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020065}
66
67static void p8_aes_ctr_exit(struct crypto_tfm *tfm)
68{
Herbert Xu4beb1062015-06-15 16:55:46 +080069 struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020070
Herbert Xu4beb1062015-06-15 16:55:46 +080071 if (ctx->fallback) {
72 crypto_free_blkcipher(ctx->fallback);
73 ctx->fallback = NULL;
74 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020075}
76
77static int p8_aes_ctr_setkey(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu4beb1062015-06-15 16:55:46 +080078 unsigned int keylen)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020079{
Herbert Xu4beb1062015-06-15 16:55:46 +080080 int ret;
81 struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020082
Li Zhong9c9040a2017-01-20 16:35:33 +080083 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +080084 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -030085 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080086 ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +110087 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080088 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +080089 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020090
Herbert Xu4beb1062015-06-15 16:55:46 +080091 ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen);
92 return ret;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020093}
94
95static void p8_aes_ctr_final(struct p8_aes_ctr_ctx *ctx,
Herbert Xu4beb1062015-06-15 16:55:46 +080096 struct blkcipher_walk *walk)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020097{
Herbert Xu4beb1062015-06-15 16:55:46 +080098 u8 *ctrblk = walk->iv;
99 u8 keystream[AES_BLOCK_SIZE];
100 u8 *src = walk->src.virt.addr;
101 u8 *dst = walk->dst.virt.addr;
102 unsigned int nbytes = walk->nbytes;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200103
Li Zhong9c9040a2017-01-20 16:35:33 +0800104 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800105 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300106 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800107 aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100108 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800109 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +0800110 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200111
Herbert Xu4beb1062015-06-15 16:55:46 +0800112 crypto_xor(keystream, src, nbytes);
113 memcpy(dst, keystream, nbytes);
114 crypto_inc(ctrblk, AES_BLOCK_SIZE);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200115}
116
117static int p8_aes_ctr_crypt(struct blkcipher_desc *desc,
Herbert Xu4beb1062015-06-15 16:55:46 +0800118 struct scatterlist *dst,
119 struct scatterlist *src, unsigned int nbytes)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200120{
Herbert Xu4beb1062015-06-15 16:55:46 +0800121 int ret;
Leonidas Da Silva Barbosa1d4aa0b2015-08-14 10:12:22 -0300122 u64 inc;
Herbert Xu4beb1062015-06-15 16:55:46 +0800123 struct blkcipher_walk walk;
124 struct p8_aes_ctr_ctx *ctx =
125 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
126 struct blkcipher_desc fallback_desc = {
127 .tfm = ctx->fallback,
128 .info = desc->info,
129 .flags = desc->flags
130 };
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200131
Herbert Xu4beb1062015-06-15 16:55:46 +0800132 if (in_interrupt()) {
133 ret = crypto_blkcipher_encrypt(&fallback_desc, dst, src,
134 nbytes);
135 } else {
136 blkcipher_walk_init(&walk, dst, src, nbytes);
137 ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE);
138 while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
Li Zhong9c9040a2017-01-20 16:35:33 +0800139 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800140 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300141 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800142 aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr,
143 walk.dst.virt.addr,
144 (nbytes &
145 AES_BLOCK_MASK) /
146 AES_BLOCK_SIZE,
147 &ctx->enc_key,
148 walk.iv);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100149 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800150 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +0800151 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200152
Leonidas Da Silva Barbosa1d4aa0b2015-08-14 10:12:22 -0300153 /* We need to update IV mostly for last bytes/round */
154 inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE;
155 if (inc > 0)
156 while (inc--)
157 crypto_inc(walk.iv, AES_BLOCK_SIZE);
158
Herbert Xu4beb1062015-06-15 16:55:46 +0800159 nbytes &= AES_BLOCK_SIZE - 1;
160 ret = blkcipher_walk_done(desc, &walk, nbytes);
161 }
162 if (walk.nbytes) {
163 p8_aes_ctr_final(ctx, &walk);
164 ret = blkcipher_walk_done(desc, &walk, 0);
165 }
166 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200167
Herbert Xu4beb1062015-06-15 16:55:46 +0800168 return ret;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200169}
170
171struct crypto_alg p8_aes_ctr_alg = {
Herbert Xu4beb1062015-06-15 16:55:46 +0800172 .cra_name = "ctr(aes)",
173 .cra_driver_name = "p8_aes_ctr",
174 .cra_module = THIS_MODULE,
Anton Blanchard12d3f492016-06-10 16:47:03 +1000175 .cra_priority = 2000,
Herbert Xu4beb1062015-06-15 16:55:46 +0800176 .cra_type = &crypto_blkcipher_type,
177 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
178 .cra_alignmask = 0,
179 .cra_blocksize = 1,
180 .cra_ctxsize = sizeof(struct p8_aes_ctr_ctx),
181 .cra_init = p8_aes_ctr_init,
182 .cra_exit = p8_aes_ctr_exit,
183 .cra_blkcipher = {
Leonidas Da Silva Barbosa0d3d0542015-11-30 16:19:03 -0200184 .ivsize = AES_BLOCK_SIZE,
Herbert Xu4beb1062015-06-15 16:55:46 +0800185 .min_keysize = AES_MIN_KEY_SIZE,
186 .max_keysize = AES_MAX_KEY_SIZE,
187 .setkey = p8_aes_ctr_setkey,
188 .encrypt = p8_aes_ctr_crypt,
189 .decrypt = p8_aes_ctr_crypt,
190 },
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200191};