blob: bb30eb9b93ef7539c3548d763235dc92a077831d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/byteorder.h>
19#include "padlock.h"
20
Michal Ludvigccc17c32006-07-15 10:23:49 +100021/* Control word. */
22struct cword {
23 unsigned int __attribute__ ((__packed__))
24 rounds:4,
25 algo:3,
26 keygen:1,
27 interm:1,
28 encdec:1,
29 ksize:2;
30} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
31
Michal Ludvigcc086322006-07-15 11:08:50 +100032/* Whenever making any changes to the following
33 * structure *make sure* you keep E, d_data
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080034 * and cword aligned on 16 Bytes boundaries and
35 * the Hardware can access 16 * 16 bytes of E and d_data
36 * (only the first 15 * 16 bytes matter but the HW reads
37 * more).
38 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039struct aes_ctx {
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080040 u32 E[AES_MAX_KEYLENGTH_U32]
41 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
42 u32 d_data[AES_MAX_KEYLENGTH_U32]
43 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
Herbert Xu6789b2d2005-07-06 13:52:27 -070044 struct {
45 struct cword encrypt;
46 struct cword decrypt;
47 } cword;
Herbert Xu82062c72006-05-16 22:20:34 +100048 u32 *D;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Tells whether the ACE is capable to generate
52 the extended key for a given key_len. */
53static inline int
54aes_hw_extkey_available(uint8_t key_len)
55{
56 /* TODO: We should check the actual CPU model/stepping
57 as it's possible that the capability will be
58 added in the next CPU revisions. */
59 if (key_len == 16)
60 return 1;
61 return 0;
62}
63
Herbert Xu28ce7282006-08-21 21:38:42 +100064static inline struct aes_ctx *aes_ctx_common(void *ctx)
Herbert Xu6789b2d2005-07-06 13:52:27 -070065{
Herbert Xu28ce7282006-08-21 21:38:42 +100066 unsigned long addr = (unsigned long)ctx;
Herbert Xuf10b7892006-01-25 22:34:01 +110067 unsigned long align = PADLOCK_ALIGNMENT;
68
69 if (align <= crypto_tfm_ctx_alignment())
70 align = 1;
Herbert Xu6c2bb982006-05-16 22:09:29 +100071 return (struct aes_ctx *)ALIGN(addr, align);
Herbert Xu6789b2d2005-07-06 13:52:27 -070072}
73
Herbert Xu28ce7282006-08-21 21:38:42 +100074static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm)
75{
76 return aes_ctx_common(crypto_tfm_ctx(tfm));
77}
78
79static inline struct aes_ctx *blk_aes_ctx(struct crypto_blkcipher *tfm)
80{
81 return aes_ctx_common(crypto_blkcipher_ctx(tfm));
82}
83
Herbert Xu6c2bb982006-05-16 22:09:29 +100084static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
Herbert Xu560c06a2006-08-13 14:16:39 +100085 unsigned int key_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Herbert Xu6c2bb982006-05-16 22:09:29 +100087 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu06ace7a2005-10-30 21:25:15 +110088 const __le32 *key = (const __le32 *)in_key;
Herbert Xu560c06a2006-08-13 14:16:39 +100089 u32 *flags = &tfm->crt_flags;
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080090 struct crypto_aes_ctx gen_aes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Herbert Xu560c06a2006-08-13 14:16:39 +100092 if (key_len % 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
94 return -EINVAL;
95 }
96
Herbert Xu6789b2d2005-07-06 13:52:27 -070097 /*
98 * If the hardware is capable of generating the extended key
99 * itself we must supply the plain key for both encryption
100 * and decryption.
101 */
Herbert Xu82062c72006-05-16 22:20:34 +1000102 ctx->D = ctx->E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800104 ctx->E[0] = le32_to_cpu(key[0]);
105 ctx->E[1] = le32_to_cpu(key[1]);
106 ctx->E[2] = le32_to_cpu(key[2]);
107 ctx->E[3] = le32_to_cpu(key[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Herbert Xu6789b2d2005-07-06 13:52:27 -0700109 /* Prepare control words. */
110 memset(&ctx->cword, 0, sizeof(ctx->cword));
111
112 ctx->cword.decrypt.encdec = 1;
113 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
114 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
115 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
116 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* Don't generate extended keys if the hardware can do it. */
119 if (aes_hw_extkey_available(key_len))
120 return 0;
121
Herbert Xu6789b2d2005-07-06 13:52:27 -0700122 ctx->D = ctx->d_data;
123 ctx->cword.encrypt.keygen = 1;
124 ctx->cword.decrypt.keygen = 1;
125
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800126 if (crypto_aes_expand_key(&gen_aes, in_key, key_len)) {
127 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
128 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800131 memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH);
132 memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return 0;
134}
135
136/* ====== Encryption/decryption routines ====== */
137
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700138/* These are the real call to PadLock. */
Herbert Xu866cd902007-12-27 00:04:44 +1100139static inline void padlock_reset_key(void)
140{
141 asm volatile ("pushfl; popfl");
142}
143
Herbert Xud4a7dd82007-12-28 11:05:46 +1100144static inline void padlock_xcrypt(const u8 *input, u8 *output, void *key,
145 void *control_word)
146{
147 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
148 : "+S"(input), "+D"(output)
149 : "d"(control_word), "b"(key), "c"(1));
150}
151
152static void aes_crypt_copy(const u8 *in, u8 *out, u32 *key, struct cword *cword)
153{
Herbert Xu490fe3f2008-01-11 08:09:35 +1100154 u8 buf[AES_BLOCK_SIZE * 2 + PADLOCK_ALIGNMENT - 1];
155 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100156
157 memcpy(tmp, in, AES_BLOCK_SIZE);
158 padlock_xcrypt(tmp, out, key, cword);
159}
160
161static inline void aes_crypt(const u8 *in, u8 *out, u32 *key,
162 struct cword *cword)
163{
Herbert Xud4a7dd82007-12-28 11:05:46 +1100164 /* padlock_xcrypt requires at least two blocks of data. */
165 if (unlikely(!(((unsigned long)in ^ (PAGE_SIZE - AES_BLOCK_SIZE)) &
166 (PAGE_SIZE - 1)))) {
167 aes_crypt_copy(in, out, key, cword);
168 return;
169 }
170
171 padlock_xcrypt(in, out, key, cword);
172}
173
Herbert Xu6789b2d2005-07-06 13:52:27 -0700174static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key,
175 void *control_word, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Herbert Xud4a7dd82007-12-28 11:05:46 +1100177 if (count == 1) {
178 aes_crypt(input, output, key, control_word);
179 return;
180 }
181
Herbert Xud4a7dd82007-12-28 11:05:46 +1100182 asm volatile ("test $1, %%cl;"
183 "je 1f;"
184 "lea -1(%%ecx), %%eax;"
185 "mov $1, %%ecx;"
186 ".byte 0xf3,0x0f,0xa7,0xc8;" /* rep xcryptecb */
187 "mov %%eax, %%ecx;"
188 "1:"
189 ".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 : "+S"(input), "+D"(output)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100191 : "d"(control_word), "b"(key), "c"(count)
192 : "ax");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Herbert Xu476df252005-07-06 13:54:09 -0700195static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key,
196 u8 *iv, void *control_word, u32 count)
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700197{
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700198 /* rep xcryptcbc */
199 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0"
200 : "+S" (input), "+D" (output), "+a" (iv)
201 : "d" (control_word), "b" (key), "c" (count));
Herbert Xu476df252005-07-06 13:54:09 -0700202 return iv;
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700203}
204
Herbert Xu6c2bb982006-05-16 22:09:29 +1000205static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000207 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu866cd902007-12-27 00:04:44 +1100208 padlock_reset_key();
Herbert Xud4a7dd82007-12-28 11:05:46 +1100209 aes_crypt(in, out, ctx->E, &ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Herbert Xu6c2bb982006-05-16 22:09:29 +1000212static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000214 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu866cd902007-12-27 00:04:44 +1100215 padlock_reset_key();
Herbert Xud4a7dd82007-12-28 11:05:46 +1100216 aes_crypt(in, out, ctx->D, &ctx->cword.decrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219static struct crypto_alg aes_alg = {
220 .cra_name = "aes",
Herbert Xuc8a19c92005-11-05 18:06:26 +1100221 .cra_driver_name = "aes-padlock",
Michal Ludvigccc17c32006-07-15 10:23:49 +1000222 .cra_priority = PADLOCK_CRA_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
224 .cra_blocksize = AES_BLOCK_SIZE,
Herbert Xufbdae9f2005-07-06 13:53:29 -0700225 .cra_ctxsize = sizeof(struct aes_ctx),
Herbert Xu6789b2d2005-07-06 13:52:27 -0700226 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .cra_module = THIS_MODULE,
228 .cra_list = LIST_HEAD_INIT(aes_alg.cra_list),
229 .cra_u = {
230 .cipher = {
231 .cia_min_keysize = AES_MIN_KEY_SIZE,
232 .cia_max_keysize = AES_MAX_KEY_SIZE,
233 .cia_setkey = aes_set_key,
234 .cia_encrypt = aes_encrypt,
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700235 .cia_decrypt = aes_decrypt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 }
238};
239
Herbert Xu28ce7282006-08-21 21:38:42 +1000240static int ecb_aes_encrypt(struct blkcipher_desc *desc,
241 struct scatterlist *dst, struct scatterlist *src,
242 unsigned int nbytes)
243{
244 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
245 struct blkcipher_walk walk;
246 int err;
247
Herbert Xu866cd902007-12-27 00:04:44 +1100248 padlock_reset_key();
249
Herbert Xu28ce7282006-08-21 21:38:42 +1000250 blkcipher_walk_init(&walk, dst, src, nbytes);
251 err = blkcipher_walk_virt(desc, &walk);
252
253 while ((nbytes = walk.nbytes)) {
254 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
255 ctx->E, &ctx->cword.encrypt,
256 nbytes / AES_BLOCK_SIZE);
257 nbytes &= AES_BLOCK_SIZE - 1;
258 err = blkcipher_walk_done(desc, &walk, nbytes);
259 }
260
261 return err;
262}
263
264static int ecb_aes_decrypt(struct blkcipher_desc *desc,
265 struct scatterlist *dst, struct scatterlist *src,
266 unsigned int nbytes)
267{
268 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
269 struct blkcipher_walk walk;
270 int err;
271
Herbert Xu866cd902007-12-27 00:04:44 +1100272 padlock_reset_key();
273
Herbert Xu28ce7282006-08-21 21:38:42 +1000274 blkcipher_walk_init(&walk, dst, src, nbytes);
275 err = blkcipher_walk_virt(desc, &walk);
276
277 while ((nbytes = walk.nbytes)) {
278 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
279 ctx->D, &ctx->cword.decrypt,
280 nbytes / AES_BLOCK_SIZE);
281 nbytes &= AES_BLOCK_SIZE - 1;
282 err = blkcipher_walk_done(desc, &walk, nbytes);
283 }
284
285 return err;
286}
287
288static struct crypto_alg ecb_aes_alg = {
289 .cra_name = "ecb(aes)",
290 .cra_driver_name = "ecb-aes-padlock",
291 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
292 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
293 .cra_blocksize = AES_BLOCK_SIZE,
294 .cra_ctxsize = sizeof(struct aes_ctx),
295 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
296 .cra_type = &crypto_blkcipher_type,
297 .cra_module = THIS_MODULE,
298 .cra_list = LIST_HEAD_INIT(ecb_aes_alg.cra_list),
299 .cra_u = {
300 .blkcipher = {
301 .min_keysize = AES_MIN_KEY_SIZE,
302 .max_keysize = AES_MAX_KEY_SIZE,
303 .setkey = aes_set_key,
304 .encrypt = ecb_aes_encrypt,
305 .decrypt = ecb_aes_decrypt,
306 }
307 }
308};
309
310static int cbc_aes_encrypt(struct blkcipher_desc *desc,
311 struct scatterlist *dst, struct scatterlist *src,
312 unsigned int nbytes)
313{
314 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
315 struct blkcipher_walk walk;
316 int err;
317
Herbert Xu866cd902007-12-27 00:04:44 +1100318 padlock_reset_key();
319
Herbert Xu28ce7282006-08-21 21:38:42 +1000320 blkcipher_walk_init(&walk, dst, src, nbytes);
321 err = blkcipher_walk_virt(desc, &walk);
322
323 while ((nbytes = walk.nbytes)) {
324 u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr,
325 walk.dst.virt.addr, ctx->E,
326 walk.iv, &ctx->cword.encrypt,
327 nbytes / AES_BLOCK_SIZE);
328 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
329 nbytes &= AES_BLOCK_SIZE - 1;
330 err = blkcipher_walk_done(desc, &walk, nbytes);
331 }
332
333 return err;
334}
335
336static int cbc_aes_decrypt(struct blkcipher_desc *desc,
337 struct scatterlist *dst, struct scatterlist *src,
338 unsigned int nbytes)
339{
340 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
341 struct blkcipher_walk walk;
342 int err;
343
Herbert Xu866cd902007-12-27 00:04:44 +1100344 padlock_reset_key();
345
Herbert Xu28ce7282006-08-21 21:38:42 +1000346 blkcipher_walk_init(&walk, dst, src, nbytes);
347 err = blkcipher_walk_virt(desc, &walk);
348
349 while ((nbytes = walk.nbytes)) {
350 padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr,
351 ctx->D, walk.iv, &ctx->cword.decrypt,
352 nbytes / AES_BLOCK_SIZE);
353 nbytes &= AES_BLOCK_SIZE - 1;
354 err = blkcipher_walk_done(desc, &walk, nbytes);
355 }
356
357 return err;
358}
359
360static struct crypto_alg cbc_aes_alg = {
361 .cra_name = "cbc(aes)",
362 .cra_driver_name = "cbc-aes-padlock",
363 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
364 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
365 .cra_blocksize = AES_BLOCK_SIZE,
366 .cra_ctxsize = sizeof(struct aes_ctx),
367 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
368 .cra_type = &crypto_blkcipher_type,
369 .cra_module = THIS_MODULE,
370 .cra_list = LIST_HEAD_INIT(cbc_aes_alg.cra_list),
371 .cra_u = {
372 .blkcipher = {
373 .min_keysize = AES_MIN_KEY_SIZE,
374 .max_keysize = AES_MAX_KEY_SIZE,
375 .ivsize = AES_BLOCK_SIZE,
376 .setkey = aes_set_key,
377 .encrypt = cbc_aes_encrypt,
378 .decrypt = cbc_aes_decrypt,
379 }
380 }
381};
382
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000383static int __init padlock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000385 int ret;
386
387 if (!cpu_has_xcrypt) {
388 printk(KERN_ERR PFX "VIA PadLock not detected.\n");
389 return -ENODEV;
390 }
391
392 if (!cpu_has_xcrypt_enabled) {
393 printk(KERN_ERR PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
394 return -ENODEV;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Herbert Xu28ce7282006-08-21 21:38:42 +1000397 if ((ret = crypto_register_alg(&aes_alg)))
398 goto aes_err;
399
400 if ((ret = crypto_register_alg(&ecb_aes_alg)))
401 goto ecb_aes_err;
402
403 if ((ret = crypto_register_alg(&cbc_aes_alg)))
404 goto cbc_aes_err;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000405
406 printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n");
407
Herbert Xu28ce7282006-08-21 21:38:42 +1000408out:
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000409 return ret;
Herbert Xu28ce7282006-08-21 21:38:42 +1000410
411cbc_aes_err:
412 crypto_unregister_alg(&ecb_aes_alg);
413ecb_aes_err:
414 crypto_unregister_alg(&aes_alg);
415aes_err:
416 printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n");
417 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000420static void __exit padlock_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Herbert Xu28ce7282006-08-21 21:38:42 +1000422 crypto_unregister_alg(&cbc_aes_alg);
423 crypto_unregister_alg(&ecb_aes_alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 crypto_unregister_alg(&aes_alg);
425}
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000426
427module_init(padlock_init);
428module_exit(padlock_fini);
429
430MODULE_DESCRIPTION("VIA PadLock AES algorithm support");
431MODULE_LICENSE("GPL");
432MODULE_AUTHOR("Michal Ludvig");
433
Sebastian Siewiorf8246af2007-10-05 16:52:01 +0800434MODULE_ALIAS("aes");