blob: 46131701c3789d4e3e02fc0642c76301a0a8d4e9 [file] [log] [blame]
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -02001/**
2 * AES CBC 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
31#include "aesp8-ppc.h"
32
33struct p8_aes_cbc_ctx {
Herbert Xu4beb1062015-06-15 16:55:46 +080034 struct crypto_blkcipher *fallback;
35 struct aes_key enc_key;
36 struct aes_key dec_key;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020037};
38
39static int p8_aes_cbc_init(struct crypto_tfm *tfm)
40{
Herbert Xu4beb1062015-06-15 16:55:46 +080041 const char *alg;
42 struct crypto_blkcipher *fallback;
43 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020044
Herbert Xu4beb1062015-06-15 16:55:46 +080045 if (!(alg = crypto_tfm_alg_name(tfm))) {
46 printk(KERN_ERR "Failed to get algorithm name.\n");
47 return -ENOENT;
48 }
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020049
Herbert Xu4beb1062015-06-15 16:55:46 +080050 fallback =
51 crypto_alloc_blkcipher(alg, 0, CRYPTO_ALG_NEED_FALLBACK);
52 if (IS_ERR(fallback)) {
53 printk(KERN_ERR
54 "Failed to allocate transformation for '%s': %ld\n",
55 alg, PTR_ERR(fallback));
56 return PTR_ERR(fallback);
57 }
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -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. Cerri8c755ac2015-02-06 14:57:53 -020063
Herbert Xu4beb1062015-06-15 16:55:46 +080064 return 0;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020065}
66
67static void p8_aes_cbc_exit(struct crypto_tfm *tfm)
68{
Herbert Xu4beb1062015-06-15 16:55:46 +080069 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -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. Cerri8c755ac2015-02-06 14:57:53 -020075}
76
77static int p8_aes_cbc_setkey(struct crypto_tfm *tfm, const u8 *key,
Herbert Xu4beb1062015-06-15 16:55:46 +080078 unsigned int keylen)
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020079{
Herbert Xu4beb1062015-06-15 16:55:46 +080080 int ret;
81 struct p8_aes_cbc_ctx *ctx = crypto_tfm_ctx(tfm);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020082
Linus Torvalds44d21c32015-06-22 21:04:48 -070083 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);
87 ret += aes_p8_set_decrypt_key(key, keylen * 8, &ctx->dec_key);
Anton Blancharddc4fbba2015-10-29 11:44:05 +110088 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +080089 pagefault_enable();
Linus Torvalds44d21c32015-06-22 21:04:48 -070090 preempt_enable();
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020091
Herbert Xu4beb1062015-06-15 16:55:46 +080092 ret += crypto_blkcipher_setkey(ctx->fallback, key, keylen);
93 return ret;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020094}
95
96static int p8_aes_cbc_encrypt(struct blkcipher_desc *desc,
Herbert Xu4beb1062015-06-15 16:55:46 +080097 struct scatterlist *dst,
98 struct scatterlist *src, unsigned int nbytes)
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -020099{
Herbert Xu4beb1062015-06-15 16:55:46 +0800100 int ret;
101 struct blkcipher_walk walk;
102 struct p8_aes_cbc_ctx *ctx =
103 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
104 struct blkcipher_desc fallback_desc = {
105 .tfm = ctx->fallback,
106 .info = desc->info,
107 .flags = desc->flags
108 };
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200109
Herbert Xu4beb1062015-06-15 16:55:46 +0800110 if (in_interrupt()) {
111 ret = crypto_blkcipher_encrypt(&fallback_desc, dst, src,
112 nbytes);
113 } else {
Linus Torvalds44d21c32015-06-22 21:04:48 -0700114 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800115 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300116 enable_kernel_vsx();
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200117
Herbert Xu4beb1062015-06-15 16:55:46 +0800118 blkcipher_walk_init(&walk, dst, src, nbytes);
119 ret = blkcipher_walk_virt(desc, &walk);
120 while ((nbytes = walk.nbytes)) {
121 aes_p8_cbc_encrypt(walk.src.virt.addr,
122 walk.dst.virt.addr,
123 nbytes & AES_BLOCK_MASK,
124 &ctx->enc_key, walk.iv, 1);
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200125 nbytes &= AES_BLOCK_SIZE - 1;
126 ret = blkcipher_walk_done(desc, &walk, nbytes);
127 }
128
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100129 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800130 pagefault_enable();
Linus Torvalds44d21c32015-06-22 21:04:48 -0700131 preempt_enable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800132 }
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200133
Herbert Xu4beb1062015-06-15 16:55:46 +0800134 return ret;
135}
136
137static int p8_aes_cbc_decrypt(struct blkcipher_desc *desc,
138 struct scatterlist *dst,
139 struct scatterlist *src, unsigned int nbytes)
140{
141 int ret;
142 struct blkcipher_walk walk;
143 struct p8_aes_cbc_ctx *ctx =
144 crypto_tfm_ctx(crypto_blkcipher_tfm(desc->tfm));
145 struct blkcipher_desc fallback_desc = {
146 .tfm = ctx->fallback,
147 .info = desc->info,
148 .flags = desc->flags
149 };
150
151 if (in_interrupt()) {
152 ret = crypto_blkcipher_decrypt(&fallback_desc, dst, src,
153 nbytes);
154 } else {
Linus Torvalds44d21c32015-06-22 21:04:48 -0700155 preempt_disable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800156 pagefault_disable();
Leonidas Da Silva Barbosa2d6f0602015-07-13 13:51:39 -0300157 enable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800158
159 blkcipher_walk_init(&walk, dst, src, nbytes);
160 ret = blkcipher_walk_virt(desc, &walk);
161 while ((nbytes = walk.nbytes)) {
162 aes_p8_cbc_encrypt(walk.src.virt.addr,
163 walk.dst.virt.addr,
164 nbytes & AES_BLOCK_MASK,
165 &ctx->dec_key, walk.iv, 0);
166 nbytes &= AES_BLOCK_SIZE - 1;
167 ret = blkcipher_walk_done(desc, &walk, nbytes);
168 }
169
Anton Blancharddc4fbba2015-10-29 11:44:05 +1100170 disable_kernel_vsx();
Herbert Xu4beb1062015-06-15 16:55:46 +0800171 pagefault_enable();
Linus Torvalds44d21c32015-06-22 21:04:48 -0700172 preempt_enable();
Herbert Xu4beb1062015-06-15 16:55:46 +0800173 }
174
175 return ret;
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200176}
177
178
179struct crypto_alg p8_aes_cbc_alg = {
Herbert Xu4beb1062015-06-15 16:55:46 +0800180 .cra_name = "cbc(aes)",
181 .cra_driver_name = "p8_aes_cbc",
182 .cra_module = THIS_MODULE,
Anton Blanchard12d3f492016-06-10 16:47:03 +1000183 .cra_priority = 2000,
Herbert Xu4beb1062015-06-15 16:55:46 +0800184 .cra_type = &crypto_blkcipher_type,
185 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER | CRYPTO_ALG_NEED_FALLBACK,
186 .cra_alignmask = 0,
187 .cra_blocksize = AES_BLOCK_SIZE,
188 .cra_ctxsize = sizeof(struct p8_aes_cbc_ctx),
189 .cra_init = p8_aes_cbc_init,
190 .cra_exit = p8_aes_cbc_exit,
191 .cra_blkcipher = {
Leonidas Da Silva Barbosa0d3d0542015-11-30 16:19:03 -0200192 .ivsize = AES_BLOCK_SIZE,
Herbert Xu4beb1062015-06-15 16:55:46 +0800193 .min_keysize = AES_MIN_KEY_SIZE,
194 .max_keysize = AES_MAX_KEY_SIZE,
195 .setkey = p8_aes_cbc_setkey,
196 .encrypt = p8_aes_cbc_encrypt,
197 .decrypt = p8_aes_cbc_decrypt,
198 },
Marcelo H. Cerri8c755ac2015-02-06 14:57:53 -0200199};