blob: 856b3cc2558387b7b239923c37c54f9d47b250ff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Cryptographic API.
3 *
4 * Support for VIA PadLock hardware crypto engine.
5 *
6 * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Herbert Xu28ce7282006-08-21 21:38:42 +100010#include <crypto/algapi.h>
Sebastian Siewior89e12652007-10-17 23:18:57 +080011#include <crypto/aes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/types.h>
15#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/interrupt.h>
Herbert Xu6789b2d2005-07-06 13:52:27 -070017#include <linux/kernel.h>
Herbert Xu420a4b22008-08-31 15:58:45 +100018#include <linux/percpu.h>
19#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/byteorder.h>
Suresh Siddhae4914012008-08-13 22:02:26 +100021#include <asm/i387.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "padlock.h"
23
Michal Ludvigccc17c32006-07-15 10:23:49 +100024/* Control word. */
25struct cword {
26 unsigned int __attribute__ ((__packed__))
27 rounds:4,
28 algo:3,
29 keygen:1,
30 interm:1,
31 encdec:1,
32 ksize:2;
33} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
34
Michal Ludvigcc086322006-07-15 11:08:50 +100035/* Whenever making any changes to the following
36 * structure *make sure* you keep E, d_data
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080037 * and cword aligned on 16 Bytes boundaries and
38 * the Hardware can access 16 * 16 bytes of E and d_data
39 * (only the first 15 * 16 bytes matter but the HW reads
40 * more).
41 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct aes_ctx {
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080043 u32 E[AES_MAX_KEYLENGTH_U32]
44 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
45 u32 d_data[AES_MAX_KEYLENGTH_U32]
46 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
Herbert Xu6789b2d2005-07-06 13:52:27 -070047 struct {
48 struct cword encrypt;
49 struct cword decrypt;
50 } cword;
Herbert Xu82062c72006-05-16 22:20:34 +100051 u32 *D;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Herbert Xu420a4b22008-08-31 15:58:45 +100054static DEFINE_PER_CPU(struct cword *, last_cword);
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* Tells whether the ACE is capable to generate
57 the extended key for a given key_len. */
58static inline int
59aes_hw_extkey_available(uint8_t key_len)
60{
61 /* TODO: We should check the actual CPU model/stepping
62 as it's possible that the capability will be
63 added in the next CPU revisions. */
64 if (key_len == 16)
65 return 1;
66 return 0;
67}
68
Herbert Xu28ce7282006-08-21 21:38:42 +100069static inline struct aes_ctx *aes_ctx_common(void *ctx)
Herbert Xu6789b2d2005-07-06 13:52:27 -070070{
Herbert Xu28ce7282006-08-21 21:38:42 +100071 unsigned long addr = (unsigned long)ctx;
Herbert Xuf10b7892006-01-25 22:34:01 +110072 unsigned long align = PADLOCK_ALIGNMENT;
73
74 if (align <= crypto_tfm_ctx_alignment())
75 align = 1;
Herbert Xu6c2bb982006-05-16 22:09:29 +100076 return (struct aes_ctx *)ALIGN(addr, align);
Herbert Xu6789b2d2005-07-06 13:52:27 -070077}
78
Herbert Xu28ce7282006-08-21 21:38:42 +100079static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm)
80{
81 return aes_ctx_common(crypto_tfm_ctx(tfm));
82}
83
84static inline struct aes_ctx *blk_aes_ctx(struct crypto_blkcipher *tfm)
85{
86 return aes_ctx_common(crypto_blkcipher_ctx(tfm));
87}
88
Herbert Xu6c2bb982006-05-16 22:09:29 +100089static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
Herbert Xu560c06a2006-08-13 14:16:39 +100090 unsigned int key_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Herbert Xu6c2bb982006-05-16 22:09:29 +100092 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu06ace7a2005-10-30 21:25:15 +110093 const __le32 *key = (const __le32 *)in_key;
Herbert Xu560c06a2006-08-13 14:16:39 +100094 u32 *flags = &tfm->crt_flags;
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080095 struct crypto_aes_ctx gen_aes;
Herbert Xu420a4b22008-08-31 15:58:45 +100096 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Herbert Xu560c06a2006-08-13 14:16:39 +100098 if (key_len % 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
100 return -EINVAL;
101 }
102
Herbert Xu6789b2d2005-07-06 13:52:27 -0700103 /*
104 * If the hardware is capable of generating the extended key
105 * itself we must supply the plain key for both encryption
106 * and decryption.
107 */
Herbert Xu82062c72006-05-16 22:20:34 +1000108 ctx->D = ctx->E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800110 ctx->E[0] = le32_to_cpu(key[0]);
111 ctx->E[1] = le32_to_cpu(key[1]);
112 ctx->E[2] = le32_to_cpu(key[2]);
113 ctx->E[3] = le32_to_cpu(key[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Herbert Xu6789b2d2005-07-06 13:52:27 -0700115 /* Prepare control words. */
116 memset(&ctx->cword, 0, sizeof(ctx->cword));
117
118 ctx->cword.decrypt.encdec = 1;
119 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
120 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
121 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
122 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* Don't generate extended keys if the hardware can do it. */
125 if (aes_hw_extkey_available(key_len))
Herbert Xu420a4b22008-08-31 15:58:45 +1000126 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Herbert Xu6789b2d2005-07-06 13:52:27 -0700128 ctx->D = ctx->d_data;
129 ctx->cword.encrypt.keygen = 1;
130 ctx->cword.decrypt.keygen = 1;
131
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800132 if (crypto_aes_expand_key(&gen_aes, in_key, key_len)) {
133 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
134 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800137 memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH);
138 memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH);
Herbert Xu420a4b22008-08-31 15:58:45 +1000139
140ok:
141 for_each_online_cpu(cpu)
142 if (&ctx->cword.encrypt == per_cpu(last_cword, cpu) ||
143 &ctx->cword.decrypt == per_cpu(last_cword, cpu))
144 per_cpu(last_cword, cpu) = NULL;
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147}
148
149/* ====== Encryption/decryption routines ====== */
150
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700151/* These are the real call to PadLock. */
Herbert Xu420a4b22008-08-31 15:58:45 +1000152static inline void padlock_reset_key(struct cword *cword)
Herbert Xu866cd902007-12-27 00:04:44 +1100153{
Herbert Xu420a4b22008-08-31 15:58:45 +1000154 int cpu = raw_smp_processor_id();
155
156 if (cword != per_cpu(last_cword, cpu))
157 asm volatile ("pushfl; popfl");
158}
159
160static inline void padlock_store_cword(struct cword *cword)
161{
162 per_cpu(last_cword, raw_smp_processor_id()) = cword;
Herbert Xu866cd902007-12-27 00:04:44 +1100163}
164
Suresh Siddhae4914012008-08-13 22:02:26 +1000165/*
166 * While the padlock instructions don't use FP/SSE registers, they
167 * generate a spurious DNA fault when cr0.ts is '1'. These instructions
168 * should be used only inside the irq_ts_save/restore() context
169 */
170
Herbert Xud4a7dd82007-12-28 11:05:46 +1100171static inline void padlock_xcrypt(const u8 *input, u8 *output, void *key,
Herbert Xu420a4b22008-08-31 15:58:45 +1000172 struct cword *control_word)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100173{
174 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
175 : "+S"(input), "+D"(output)
176 : "d"(control_word), "b"(key), "c"(1));
177}
178
179static void aes_crypt_copy(const u8 *in, u8 *out, u32 *key, struct cword *cword)
180{
Herbert Xu490fe3f2008-01-11 08:09:35 +1100181 u8 buf[AES_BLOCK_SIZE * 2 + PADLOCK_ALIGNMENT - 1];
182 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100183
184 memcpy(tmp, in, AES_BLOCK_SIZE);
185 padlock_xcrypt(tmp, out, key, cword);
186}
187
188static inline void aes_crypt(const u8 *in, u8 *out, u32 *key,
189 struct cword *cword)
190{
Herbert Xud4a7dd82007-12-28 11:05:46 +1100191 /* padlock_xcrypt requires at least two blocks of data. */
192 if (unlikely(!(((unsigned long)in ^ (PAGE_SIZE - AES_BLOCK_SIZE)) &
193 (PAGE_SIZE - 1)))) {
194 aes_crypt_copy(in, out, key, cword);
195 return;
196 }
197
198 padlock_xcrypt(in, out, key, cword);
199}
200
Herbert Xu6789b2d2005-07-06 13:52:27 -0700201static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key,
202 void *control_word, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Herbert Xud4a7dd82007-12-28 11:05:46 +1100204 if (count == 1) {
205 aes_crypt(input, output, key, control_word);
206 return;
207 }
208
Herbert Xud4a7dd82007-12-28 11:05:46 +1100209 asm volatile ("test $1, %%cl;"
210 "je 1f;"
211 "lea -1(%%ecx), %%eax;"
212 "mov $1, %%ecx;"
213 ".byte 0xf3,0x0f,0xa7,0xc8;" /* rep xcryptecb */
214 "mov %%eax, %%ecx;"
215 "1:"
216 ".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 : "+S"(input), "+D"(output)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100218 : "d"(control_word), "b"(key), "c"(count)
219 : "ax");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Herbert Xu476df252005-07-06 13:54:09 -0700222static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key,
223 u8 *iv, void *control_word, u32 count)
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700224{
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700225 /* rep xcryptcbc */
226 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0"
227 : "+S" (input), "+D" (output), "+a" (iv)
228 : "d" (control_word), "b" (key), "c" (count));
Herbert Xu476df252005-07-06 13:54:09 -0700229 return iv;
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700230}
231
Herbert Xu6c2bb982006-05-16 22:09:29 +1000232static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000234 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000235 int ts_state;
Suresh Siddhae4914012008-08-13 22:02:26 +1000236
Herbert Xu420a4b22008-08-31 15:58:45 +1000237 padlock_reset_key(&ctx->cword.encrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000238 ts_state = irq_ts_save();
Herbert Xud4a7dd82007-12-28 11:05:46 +1100239 aes_crypt(in, out, ctx->E, &ctx->cword.encrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000240 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000241 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Herbert Xu6c2bb982006-05-16 22:09:29 +1000244static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000246 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000247 int ts_state;
Suresh Siddhae4914012008-08-13 22:02:26 +1000248
Herbert Xu420a4b22008-08-31 15:58:45 +1000249 padlock_reset_key(&ctx->cword.encrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000250 ts_state = irq_ts_save();
Herbert Xud4a7dd82007-12-28 11:05:46 +1100251 aes_crypt(in, out, ctx->D, &ctx->cword.decrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000252 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000253 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256static struct crypto_alg aes_alg = {
257 .cra_name = "aes",
Herbert Xuc8a19c92005-11-05 18:06:26 +1100258 .cra_driver_name = "aes-padlock",
Michal Ludvigccc17c32006-07-15 10:23:49 +1000259 .cra_priority = PADLOCK_CRA_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
261 .cra_blocksize = AES_BLOCK_SIZE,
Herbert Xufbdae9f2005-07-06 13:53:29 -0700262 .cra_ctxsize = sizeof(struct aes_ctx),
Herbert Xu6789b2d2005-07-06 13:52:27 -0700263 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .cra_module = THIS_MODULE,
265 .cra_list = LIST_HEAD_INIT(aes_alg.cra_list),
266 .cra_u = {
267 .cipher = {
268 .cia_min_keysize = AES_MIN_KEY_SIZE,
269 .cia_max_keysize = AES_MAX_KEY_SIZE,
270 .cia_setkey = aes_set_key,
271 .cia_encrypt = aes_encrypt,
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700272 .cia_decrypt = aes_decrypt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 }
275};
276
Herbert Xu28ce7282006-08-21 21:38:42 +1000277static int ecb_aes_encrypt(struct blkcipher_desc *desc,
278 struct scatterlist *dst, struct scatterlist *src,
279 unsigned int nbytes)
280{
281 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
282 struct blkcipher_walk walk;
283 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000284 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000285
Herbert Xu420a4b22008-08-31 15:58:45 +1000286 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100287
Herbert Xu28ce7282006-08-21 21:38:42 +1000288 blkcipher_walk_init(&walk, dst, src, nbytes);
289 err = blkcipher_walk_virt(desc, &walk);
290
Suresh Siddhae4914012008-08-13 22:02:26 +1000291 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000292 while ((nbytes = walk.nbytes)) {
293 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
294 ctx->E, &ctx->cword.encrypt,
295 nbytes / AES_BLOCK_SIZE);
296 nbytes &= AES_BLOCK_SIZE - 1;
297 err = blkcipher_walk_done(desc, &walk, nbytes);
298 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000299 irq_ts_restore(ts_state);
Herbert Xu28ce7282006-08-21 21:38:42 +1000300
Herbert Xu420a4b22008-08-31 15:58:45 +1000301 padlock_store_cword(&ctx->cword.encrypt);
302
Herbert Xu28ce7282006-08-21 21:38:42 +1000303 return err;
304}
305
306static int ecb_aes_decrypt(struct blkcipher_desc *desc,
307 struct scatterlist *dst, struct scatterlist *src,
308 unsigned int nbytes)
309{
310 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
311 struct blkcipher_walk walk;
312 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000313 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000314
Herbert Xu420a4b22008-08-31 15:58:45 +1000315 padlock_reset_key(&ctx->cword.decrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100316
Herbert Xu28ce7282006-08-21 21:38:42 +1000317 blkcipher_walk_init(&walk, dst, src, nbytes);
318 err = blkcipher_walk_virt(desc, &walk);
319
Suresh Siddhae4914012008-08-13 22:02:26 +1000320 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000321 while ((nbytes = walk.nbytes)) {
322 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
323 ctx->D, &ctx->cword.decrypt,
324 nbytes / AES_BLOCK_SIZE);
325 nbytes &= AES_BLOCK_SIZE - 1;
326 err = blkcipher_walk_done(desc, &walk, nbytes);
327 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000328 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000329
330 padlock_store_cword(&ctx->cword.encrypt);
331
Herbert Xu28ce7282006-08-21 21:38:42 +1000332 return err;
333}
334
335static struct crypto_alg ecb_aes_alg = {
336 .cra_name = "ecb(aes)",
337 .cra_driver_name = "ecb-aes-padlock",
338 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
339 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
340 .cra_blocksize = AES_BLOCK_SIZE,
341 .cra_ctxsize = sizeof(struct aes_ctx),
342 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
343 .cra_type = &crypto_blkcipher_type,
344 .cra_module = THIS_MODULE,
345 .cra_list = LIST_HEAD_INIT(ecb_aes_alg.cra_list),
346 .cra_u = {
347 .blkcipher = {
348 .min_keysize = AES_MIN_KEY_SIZE,
349 .max_keysize = AES_MAX_KEY_SIZE,
350 .setkey = aes_set_key,
351 .encrypt = ecb_aes_encrypt,
352 .decrypt = ecb_aes_decrypt,
353 }
354 }
355};
356
357static int cbc_aes_encrypt(struct blkcipher_desc *desc,
358 struct scatterlist *dst, struct scatterlist *src,
359 unsigned int nbytes)
360{
361 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
362 struct blkcipher_walk walk;
363 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000364 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000365
Herbert Xu420a4b22008-08-31 15:58:45 +1000366 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100367
Herbert Xu28ce7282006-08-21 21:38:42 +1000368 blkcipher_walk_init(&walk, dst, src, nbytes);
369 err = blkcipher_walk_virt(desc, &walk);
370
Suresh Siddhae4914012008-08-13 22:02:26 +1000371 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000372 while ((nbytes = walk.nbytes)) {
373 u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr,
374 walk.dst.virt.addr, ctx->E,
375 walk.iv, &ctx->cword.encrypt,
376 nbytes / AES_BLOCK_SIZE);
377 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
378 nbytes &= AES_BLOCK_SIZE - 1;
379 err = blkcipher_walk_done(desc, &walk, nbytes);
380 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000381 irq_ts_restore(ts_state);
Herbert Xu28ce7282006-08-21 21:38:42 +1000382
Herbert Xu420a4b22008-08-31 15:58:45 +1000383 padlock_store_cword(&ctx->cword.decrypt);
384
Herbert Xu28ce7282006-08-21 21:38:42 +1000385 return err;
386}
387
388static int cbc_aes_decrypt(struct blkcipher_desc *desc,
389 struct scatterlist *dst, struct scatterlist *src,
390 unsigned int nbytes)
391{
392 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
393 struct blkcipher_walk walk;
394 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000395 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000396
Herbert Xu420a4b22008-08-31 15:58:45 +1000397 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100398
Herbert Xu28ce7282006-08-21 21:38:42 +1000399 blkcipher_walk_init(&walk, dst, src, nbytes);
400 err = blkcipher_walk_virt(desc, &walk);
401
Suresh Siddhae4914012008-08-13 22:02:26 +1000402 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000403 while ((nbytes = walk.nbytes)) {
404 padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr,
405 ctx->D, walk.iv, &ctx->cword.decrypt,
406 nbytes / AES_BLOCK_SIZE);
407 nbytes &= AES_BLOCK_SIZE - 1;
408 err = blkcipher_walk_done(desc, &walk, nbytes);
409 }
410
Suresh Siddhae4914012008-08-13 22:02:26 +1000411 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000412
413 padlock_store_cword(&ctx->cword.encrypt);
414
Herbert Xu28ce7282006-08-21 21:38:42 +1000415 return err;
416}
417
418static struct crypto_alg cbc_aes_alg = {
419 .cra_name = "cbc(aes)",
420 .cra_driver_name = "cbc-aes-padlock",
421 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
422 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
423 .cra_blocksize = AES_BLOCK_SIZE,
424 .cra_ctxsize = sizeof(struct aes_ctx),
425 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
426 .cra_type = &crypto_blkcipher_type,
427 .cra_module = THIS_MODULE,
428 .cra_list = LIST_HEAD_INIT(cbc_aes_alg.cra_list),
429 .cra_u = {
430 .blkcipher = {
431 .min_keysize = AES_MIN_KEY_SIZE,
432 .max_keysize = AES_MAX_KEY_SIZE,
433 .ivsize = AES_BLOCK_SIZE,
434 .setkey = aes_set_key,
435 .encrypt = cbc_aes_encrypt,
436 .decrypt = cbc_aes_decrypt,
437 }
438 }
439};
440
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000441static int __init padlock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000443 int ret;
444
445 if (!cpu_has_xcrypt) {
Jeremy Katzb43e7262008-07-03 19:03:31 +0800446 printk(KERN_NOTICE PFX "VIA PadLock not detected.\n");
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000447 return -ENODEV;
448 }
449
450 if (!cpu_has_xcrypt_enabled) {
Jeremy Katzb43e7262008-07-03 19:03:31 +0800451 printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000452 return -ENODEV;
453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Herbert Xu28ce7282006-08-21 21:38:42 +1000455 if ((ret = crypto_register_alg(&aes_alg)))
456 goto aes_err;
457
458 if ((ret = crypto_register_alg(&ecb_aes_alg)))
459 goto ecb_aes_err;
460
461 if ((ret = crypto_register_alg(&cbc_aes_alg)))
462 goto cbc_aes_err;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000463
464 printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n");
465
Herbert Xu28ce7282006-08-21 21:38:42 +1000466out:
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000467 return ret;
Herbert Xu28ce7282006-08-21 21:38:42 +1000468
469cbc_aes_err:
470 crypto_unregister_alg(&ecb_aes_alg);
471ecb_aes_err:
472 crypto_unregister_alg(&aes_alg);
473aes_err:
474 printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n");
475 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000478static void __exit padlock_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Herbert Xu28ce7282006-08-21 21:38:42 +1000480 crypto_unregister_alg(&cbc_aes_alg);
481 crypto_unregister_alg(&ecb_aes_alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 crypto_unregister_alg(&aes_alg);
483}
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000484
485module_init(padlock_init);
486module_exit(padlock_fini);
487
488MODULE_DESCRIPTION("VIA PadLock AES algorithm support");
489MODULE_LICENSE("GPL");
490MODULE_AUTHOR("Michal Ludvig");
491
Sebastian Siewiorf8246af2007-10-05 16:52:01 +0800492MODULE_ALIAS("aes");