blob: 6ef7548c5c877f3cd47cd0666026f28243140a68 [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 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020056
Herbert Xu4beb1062015-06-15 16:55:46 +080057 crypto_blkcipher_set_flags(
58 fallback,
59 crypto_blkcipher_get_flags((struct crypto_blkcipher *)tfm));
60 ctx->fallback = fallback;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020061
Herbert Xu4beb1062015-06-15 16:55:46 +080062 return 0;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020063}
64
65static void p8_aes_ctr_exit(struct crypto_tfm *tfm)
66{
Herbert Xu4beb1062015-06-15 16:55:46 +080067 struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020068
Herbert Xu4beb1062015-06-15 16:55:46 +080069 if (ctx->fallback) {
70 crypto_free_blkcipher(ctx->fallback);
71 ctx->fallback = NULL;
72 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020073}
74
75static int p8_aes_ctr_setkey(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu4beb1062015-06-15 16:55:46 +080076 unsigned int keylen)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020077{
Herbert Xu4beb1062015-06-15 16:55:46 +080078 int ret;
79 struct p8_aes_ctr_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020080
Li Zhong9c9040a2017-01-20 16:35:33 +080081 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +080082 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -030083 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080084 ret = aes_p8_set_encrypt_key(key, keylen * 8, &ctx->enc_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +110085 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080086 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +080087 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020088
Herbert Xu4beb1062015-06-15 16:55:46 +080089 ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen);
90 return ret;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020091}
92
93static void p8_aes_ctr_final(struct p8_aes_ctr_ctx *ctx,
Herbert Xu4beb1062015-06-15 16:55:46 +080094 struct blkcipher_walk *walk)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -020095{
Herbert Xu4beb1062015-06-15 16:55:46 +080096 u8 *ctrblk = walk->iv;
97 u8 keystream[AES_BLOCK_SIZE];
98 u8 *src = walk->src.virt.addr;
99 u8 *dst = walk->dst.virt.addr;
100 unsigned int nbytes = walk->nbytes;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200101
Li Zhong9c9040a2017-01-20 16:35:33 +0800102 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800103 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300104 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800105 aes_p8_encrypt(ctrblk, keystream, &ctx->enc_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100106 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800107 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +0800108 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200109
Herbert Xu4beb1062015-06-15 16:55:46 +0800110 crypto_xor(keystream, src, nbytes);
111 memcpy(dst, keystream, nbytes);
112 crypto_inc(ctrblk, AES_BLOCK_SIZE);
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200113}
114
115static int p8_aes_ctr_crypt(struct blkcipher_desc *desc,
Herbert Xu4beb1062015-06-15 16:55:46 +0800116 struct scatterlist *dst,
117 struct scatterlist *src, unsigned int nbytes)
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200118{
Herbert Xu4beb1062015-06-15 16:55:46 +0800119 int ret;
Leonidas Da Silva Barbosa1d4aa0b2015-08-14 10:12:22 -0300120 u64 inc;
Herbert Xu4beb1062015-06-15 16:55:46 +0800121 struct blkcipher_walk walk;
122 struct p8_aes_ctr_ctx *ctx =
123 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
124 struct blkcipher_desc fallback_desc = {
125 .tfm = ctx->fallback,
126 .info = desc->info,
127 .flags = desc->flags
128 };
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200129
Herbert Xu4beb1062015-06-15 16:55:46 +0800130 if (in_interrupt()) {
131 ret = crypto_blkcipher_encrypt(&fallback_desc, dst, src,
132 nbytes);
133 } else {
134 blkcipher_walk_init(&walk, dst, src, nbytes);
135 ret = blkcipher_walk_virt_block(desc, &walk, AES_BLOCK_SIZE);
136 while ((nbytes = walk.nbytes) >= AES_BLOCK_SIZE) {
Li Zhong9c9040a2017-01-20 16:35:33 +0800137 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800138 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300139 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800140 aes_p8_ctr32_encrypt_blocks(walk.src.virt.addr,
141 walk.dst.virt.addr,
142 (nbytes &
143 AES_BLOCK_MASK) /
144 AES_BLOCK_SIZE,
145 &ctx->enc_key,
146 walk.iv);
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100147 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800148 pagefault_enable();
Li Zhong9c9040a2017-01-20 16:35:33 +0800149 preempt_enable();
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200150
Leonidas Da Silva Barbosa1d4aa0b2015-08-14 10:12:22 -0300151 /* We need to update IV mostly for last bytes/round */
152 inc = (nbytes & AES_BLOCK_MASK) / AES_BLOCK_SIZE;
153 if (inc > 0)
154 while (inc--)
155 crypto_inc(walk.iv, AES_BLOCK_SIZE);
156
Herbert Xu4beb1062015-06-15 16:55:46 +0800157 nbytes &= AES_BLOCK_SIZE - 1;
158 ret = blkcipher_walk_done(desc, &walk, nbytes);
159 }
160 if (walk.nbytes) {
161 p8_aes_ctr_final(ctx, &walk);
162 ret = blkcipher_walk_done(desc, &walk, 0);
163 }
164 }
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200165
Herbert Xu4beb1062015-06-15 16:55:46 +0800166 return ret;
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200167}
168
169struct crypto_alg p8_aes_ctr_alg = {
Herbert Xu4beb1062015-06-15 16:55:46 +0800170 .cra_name = "ctr(aes)",
171 .cra_driver_name = "p8_aes_ctr",
172 .cra_module = THIS_MODULE,
Anton Blanchard12d3f492016-06-10 16:47:03 +1000173 .cra_priority = 2000,
Herbert Xu4beb1062015-06-15 16:55:46 +0800174 .cra_type = &crypto_blkcipher_type,
175 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
176 .cra_alignmask = 0,
177 .cra_blocksize = 1,
178 .cra_ctxsize = sizeof(struct p8_aes_ctr_ctx),
179 .cra_init = p8_aes_ctr_init,
180 .cra_exit = p8_aes_ctr_exit,
181 .cra_blkcipher = {
Leonidas Da Silva Barbosa0d3d0542015-11-30 16:19:03 -0200182 .ivsize = AES_BLOCK_SIZE,
Herbert Xu4beb1062015-06-15 16:55:46 +0800183 .min_keysize = AES_MIN_KEY_SIZE,
184 .max_keysize = AES_MAX_KEY_SIZE,
185 .setkey = p8_aes_ctr_setkey,
186 .encrypt = p8_aes_ctr_crypt,
187 .decrypt = p8_aes_ctr_crypt,
188 },
Marcelo H. Cerri4f7f60d2015-02-06 14:58:31 -0200189};