blob: 75f2bef7971836d62cd754724ecc8f0d90612d3f [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>
Herbert Xu21493082011-01-07 14:52:00 +110012#include <crypto/padlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/types.h>
16#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/interrupt.h>
Herbert Xu6789b2d2005-07-06 13:52:27 -070018#include <linux/kernel.h>
Herbert Xu420a4b22008-08-31 15:58:45 +100019#include <linux/percpu.h>
20#include <linux/smp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Andi Kleen3bd391f2012-01-26 00:09:06 +010022#include <asm/cpu_device_id.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/byteorder.h>
Chuck Ebberta76c1c22009-06-18 19:24:10 +080024#include <asm/processor.h>
Ingo Molnardf6b35f2015-04-24 02:46:00 +020025#include <asm/fpu/api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080027/*
28 * Number of data blocks actually fetched for each xcrypt insn.
29 * Processors with prefetch errata will fetch extra blocks.
30 */
Chuck Ebberta76c1c22009-06-18 19:24:10 +080031static unsigned int ecb_fetch_blocks = 2;
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080032#define MAX_ECB_FETCH_BLOCKS (8)
Chuck Ebberta76c1c22009-06-18 19:24:10 +080033#define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE)
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080034
35static unsigned int cbc_fetch_blocks = 1;
36#define MAX_CBC_FETCH_BLOCKS (4)
Chuck Ebberta76c1c22009-06-18 19:24:10 +080037#define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE)
38
Michal Ludvigccc17c32006-07-15 10:23:49 +100039/* Control word. */
40struct cword {
41 unsigned int __attribute__ ((__packed__))
42 rounds:4,
43 algo:3,
44 keygen:1,
45 interm:1,
46 encdec:1,
47 ksize:2;
48} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
49
Michal Ludvigcc086322006-07-15 11:08:50 +100050/* Whenever making any changes to the following
51 * structure *make sure* you keep E, d_data
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080052 * and cword aligned on 16 Bytes boundaries and
53 * the Hardware can access 16 * 16 bytes of E and d_data
54 * (only the first 15 * 16 bytes matter but the HW reads
55 * more).
56 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057struct aes_ctx {
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080058 u32 E[AES_MAX_KEYLENGTH_U32]
59 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
60 u32 d_data[AES_MAX_KEYLENGTH_U32]
61 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
Herbert Xu6789b2d2005-07-06 13:52:27 -070062 struct {
63 struct cword encrypt;
64 struct cword decrypt;
65 } cword;
Herbert Xu82062c72006-05-16 22:20:34 +100066 u32 *D;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Tejun Heo390dfd92009-10-29 22:34:14 +090069static DEFINE_PER_CPU(struct cword *, paes_last_cword);
Herbert Xu420a4b22008-08-31 15:58:45 +100070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Tells whether the ACE is capable to generate
72 the extended key for a given key_len. */
73static inline int
74aes_hw_extkey_available(uint8_t key_len)
75{
76 /* TODO: We should check the actual CPU model/stepping
77 as it's possible that the capability will be
78 added in the next CPU revisions. */
79 if (key_len == 16)
80 return 1;
81 return 0;
82}
83
Herbert Xu28ce7282006-08-21 21:38:42 +100084static inline struct aes_ctx *aes_ctx_common(void *ctx)
Herbert Xu6789b2d2005-07-06 13:52:27 -070085{
Herbert Xu28ce7282006-08-21 21:38:42 +100086 unsigned long addr = (unsigned long)ctx;
Herbert Xuf10b7892006-01-25 22:34:01 +110087 unsigned long align = PADLOCK_ALIGNMENT;
88
89 if (align <= crypto_tfm_ctx_alignment())
90 align = 1;
Herbert Xu6c2bb982006-05-16 22:09:29 +100091 return (struct aes_ctx *)ALIGN(addr, align);
Herbert Xu6789b2d2005-07-06 13:52:27 -070092}
93
Herbert Xu28ce7282006-08-21 21:38:42 +100094static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm)
95{
96 return aes_ctx_common(crypto_tfm_ctx(tfm));
97}
98
99static inline struct aes_ctx *blk_aes_ctx(struct crypto_blkcipher *tfm)
100{
101 return aes_ctx_common(crypto_blkcipher_ctx(tfm));
102}
103
Herbert Xu6c2bb982006-05-16 22:09:29 +1000104static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000105 unsigned int key_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000107 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu06ace7a2005-10-30 21:25:15 +1100108 const __le32 *key = (const __le32 *)in_key;
Herbert Xu560c06a2006-08-13 14:16:39 +1000109 u32 *flags = &tfm->crt_flags;
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800110 struct crypto_aes_ctx gen_aes;
Herbert Xu420a4b22008-08-31 15:58:45 +1000111 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Herbert Xu560c06a2006-08-13 14:16:39 +1000113 if (key_len % 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
115 return -EINVAL;
116 }
117
Herbert Xu6789b2d2005-07-06 13:52:27 -0700118 /*
119 * If the hardware is capable of generating the extended key
120 * itself we must supply the plain key for both encryption
121 * and decryption.
122 */
Herbert Xu82062c72006-05-16 22:20:34 +1000123 ctx->D = ctx->E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800125 ctx->E[0] = le32_to_cpu(key[0]);
126 ctx->E[1] = le32_to_cpu(key[1]);
127 ctx->E[2] = le32_to_cpu(key[2]);
128 ctx->E[3] = le32_to_cpu(key[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Herbert Xu6789b2d2005-07-06 13:52:27 -0700130 /* Prepare control words. */
131 memset(&ctx->cword, 0, sizeof(ctx->cword));
132
133 ctx->cword.decrypt.encdec = 1;
134 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
135 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
136 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
137 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* Don't generate extended keys if the hardware can do it. */
140 if (aes_hw_extkey_available(key_len))
Herbert Xu420a4b22008-08-31 15:58:45 +1000141 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Herbert Xu6789b2d2005-07-06 13:52:27 -0700143 ctx->D = ctx->d_data;
144 ctx->cword.encrypt.keygen = 1;
145 ctx->cword.decrypt.keygen = 1;
146
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800147 if (crypto_aes_expand_key(&gen_aes, in_key, key_len)) {
148 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
149 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800152 memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH);
153 memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH);
Herbert Xu420a4b22008-08-31 15:58:45 +1000154
155ok:
156 for_each_online_cpu(cpu)
Tejun Heo390dfd92009-10-29 22:34:14 +0900157 if (&ctx->cword.encrypt == per_cpu(paes_last_cword, cpu) ||
158 &ctx->cword.decrypt == per_cpu(paes_last_cword, cpu))
159 per_cpu(paes_last_cword, cpu) = NULL;
Herbert Xu420a4b22008-08-31 15:58:45 +1000160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
164/* ====== Encryption/decryption routines ====== */
165
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700166/* These are the real call to PadLock. */
Herbert Xu420a4b22008-08-31 15:58:45 +1000167static inline void padlock_reset_key(struct cword *cword)
Herbert Xu866cd902007-12-27 00:04:44 +1100168{
Herbert Xu420a4b22008-08-31 15:58:45 +1000169 int cpu = raw_smp_processor_id();
170
Tejun Heo390dfd92009-10-29 22:34:14 +0900171 if (cword != per_cpu(paes_last_cword, cpu))
Sebastian Andrzej Siewiord1c8b0a2009-04-21 14:14:37 +0800172#ifndef CONFIG_X86_64
Herbert Xu420a4b22008-08-31 15:58:45 +1000173 asm volatile ("pushfl; popfl");
Sebastian Andrzej Siewiord1c8b0a2009-04-21 14:14:37 +0800174#else
175 asm volatile ("pushfq; popfq");
176#endif
Herbert Xu420a4b22008-08-31 15:58:45 +1000177}
178
179static inline void padlock_store_cword(struct cword *cword)
180{
Tejun Heo390dfd92009-10-29 22:34:14 +0900181 per_cpu(paes_last_cword, raw_smp_processor_id()) = cword;
Herbert Xu866cd902007-12-27 00:04:44 +1100182}
183
Suresh Siddhae4914012008-08-13 22:02:26 +1000184/*
185 * While the padlock instructions don't use FP/SSE registers, they
186 * generate a spurious DNA fault when cr0.ts is '1'. These instructions
187 * should be used only inside the irq_ts_save/restore() context
188 */
189
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800190static inline void rep_xcrypt_ecb(const u8 *input, u8 *output, void *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800191 struct cword *control_word, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100192{
193 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
194 : "+S"(input), "+D"(output)
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800195 : "d"(control_word), "b"(key), "c"(count));
Herbert Xud4a7dd82007-12-28 11:05:46 +1100196}
197
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800198static inline u8 *rep_xcrypt_cbc(const u8 *input, u8 *output, void *key,
199 u8 *iv, struct cword *control_word, int count)
200{
201 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
202 : "+S" (input), "+D" (output), "+a" (iv)
203 : "d" (control_word), "b" (key), "c" (count));
204 return iv;
205}
206
207static void ecb_crypt_copy(const u8 *in, u8 *out, u32 *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800208 struct cword *cword, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100209{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800210 /*
211 * Padlock prefetches extra data so we must provide mapped input buffers.
212 * Assume there are at least 16 bytes of stack already in use.
213 */
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800214 u8 buf[AES_BLOCK_SIZE * (MAX_ECB_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
Herbert Xu490fe3f2008-01-11 08:09:35 +1100215 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100216
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800217 memcpy(tmp, in, count * AES_BLOCK_SIZE);
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800218 rep_xcrypt_ecb(tmp, out, key, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100219}
220
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800221static u8 *cbc_crypt_copy(const u8 *in, u8 *out, u32 *key,
222 u8 *iv, struct cword *cword, int count)
223{
224 /*
225 * Padlock prefetches extra data so we must provide mapped input buffers.
226 * Assume there are at least 16 bytes of stack already in use.
227 */
228 u8 buf[AES_BLOCK_SIZE * (MAX_CBC_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
229 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
230
231 memcpy(tmp, in, count * AES_BLOCK_SIZE);
232 return rep_xcrypt_cbc(tmp, out, key, iv, cword, count);
233}
234
235static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800236 struct cword *cword, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100237{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800238 /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data.
239 * We could avoid some copying here but it's probably not worth it.
240 */
Geliang Tang1d4bbc52015-11-21 22:24:11 +0800241 if (unlikely(offset_in_page(in) + ecb_fetch_bytes > PAGE_SIZE)) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800242 ecb_crypt_copy(in, out, key, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100243 return;
244 }
245
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800246 rep_xcrypt_ecb(in, out, key, cword, count);
247}
248
249static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key,
250 u8 *iv, struct cword *cword, int count)
251{
252 /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */
Geliang Tang1d4bbc52015-11-21 22:24:11 +0800253 if (unlikely(offset_in_page(in) + cbc_fetch_bytes > PAGE_SIZE))
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800254 return cbc_crypt_copy(in, out, key, iv, cword, count);
255
256 return rep_xcrypt_cbc(in, out, key, iv, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100257}
258
Herbert Xu6789b2d2005-07-06 13:52:27 -0700259static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key,
260 void *control_word, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800262 u32 initial = count & (ecb_fetch_blocks - 1);
263
264 if (count < ecb_fetch_blocks) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800265 ecb_crypt(input, output, key, control_word, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100266 return;
267 }
268
Herbert Xu804f5102018-07-13 16:12:32 +0800269 count -= initial;
270
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800271 if (initial)
272 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
273 : "+S"(input), "+D"(output)
274 : "d"(control_word), "b"(key), "c"(initial));
275
276 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 : "+S"(input), "+D"(output)
Herbert Xu804f5102018-07-13 16:12:32 +0800278 : "d"(control_word), "b"(key), "c"(count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Herbert Xu476df252005-07-06 13:54:09 -0700281static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key,
282 u8 *iv, void *control_word, u32 count)
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700283{
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800284 u32 initial = count & (cbc_fetch_blocks - 1);
285
286 if (count < cbc_fetch_blocks)
287 return cbc_crypt(input, output, key, iv, control_word, count);
288
Herbert Xu804f5102018-07-13 16:12:32 +0800289 count -= initial;
290
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800291 if (initial)
292 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
293 : "+S" (input), "+D" (output), "+a" (iv)
Herbert Xuc054a072010-11-04 14:38:39 -0400294 : "d" (control_word), "b" (key), "c" (initial));
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800295
296 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700297 : "+S" (input), "+D" (output), "+a" (iv)
Herbert Xu804f5102018-07-13 16:12:32 +0800298 : "d" (control_word), "b" (key), "c" (count));
Herbert Xu476df252005-07-06 13:54:09 -0700299 return iv;
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700300}
301
Herbert Xu6c2bb982006-05-16 22:09:29 +1000302static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000304 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000305 int ts_state;
Suresh Siddhae4914012008-08-13 22:02:26 +1000306
Herbert Xu420a4b22008-08-31 15:58:45 +1000307 padlock_reset_key(&ctx->cword.encrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000308 ts_state = irq_ts_save();
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800309 ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1);
Suresh Siddhae4914012008-08-13 22:02:26 +1000310 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000311 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Herbert Xu6c2bb982006-05-16 22:09:29 +1000314static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000316 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000317 int ts_state;
Suresh Siddhae4914012008-08-13 22:02:26 +1000318
Herbert Xu420a4b22008-08-31 15:58:45 +1000319 padlock_reset_key(&ctx->cword.encrypt);
Suresh Siddhae4914012008-08-13 22:02:26 +1000320 ts_state = irq_ts_save();
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800321 ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1);
Suresh Siddhae4914012008-08-13 22:02:26 +1000322 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000323 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326static struct crypto_alg aes_alg = {
327 .cra_name = "aes",
Herbert Xuc8a19c92005-11-05 18:06:26 +1100328 .cra_driver_name = "aes-padlock",
Michal Ludvigccc17c32006-07-15 10:23:49 +1000329 .cra_priority = PADLOCK_CRA_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
331 .cra_blocksize = AES_BLOCK_SIZE,
Herbert Xufbdae9f2005-07-06 13:53:29 -0700332 .cra_ctxsize = sizeof(struct aes_ctx),
Herbert Xu6789b2d2005-07-06 13:52:27 -0700333 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .cra_module = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .cra_u = {
336 .cipher = {
337 .cia_min_keysize = AES_MIN_KEY_SIZE,
338 .cia_max_keysize = AES_MAX_KEY_SIZE,
339 .cia_setkey = aes_set_key,
340 .cia_encrypt = aes_encrypt,
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700341 .cia_decrypt = aes_decrypt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 }
344};
345
Herbert Xu28ce7282006-08-21 21:38:42 +1000346static int ecb_aes_encrypt(struct blkcipher_desc *desc,
347 struct scatterlist *dst, struct scatterlist *src,
348 unsigned int nbytes)
349{
350 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
351 struct blkcipher_walk walk;
352 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000353 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000354
Herbert Xu420a4b22008-08-31 15:58:45 +1000355 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100356
Herbert Xu28ce7282006-08-21 21:38:42 +1000357 blkcipher_walk_init(&walk, dst, src, nbytes);
358 err = blkcipher_walk_virt(desc, &walk);
359
Suresh Siddhae4914012008-08-13 22:02:26 +1000360 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000361 while ((nbytes = walk.nbytes)) {
362 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
363 ctx->E, &ctx->cword.encrypt,
364 nbytes / AES_BLOCK_SIZE);
365 nbytes &= AES_BLOCK_SIZE - 1;
366 err = blkcipher_walk_done(desc, &walk, nbytes);
367 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000368 irq_ts_restore(ts_state);
Herbert Xu28ce7282006-08-21 21:38:42 +1000369
Herbert Xu420a4b22008-08-31 15:58:45 +1000370 padlock_store_cword(&ctx->cword.encrypt);
371
Herbert Xu28ce7282006-08-21 21:38:42 +1000372 return err;
373}
374
375static int ecb_aes_decrypt(struct blkcipher_desc *desc,
376 struct scatterlist *dst, struct scatterlist *src,
377 unsigned int nbytes)
378{
379 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
380 struct blkcipher_walk walk;
381 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000382 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000383
Herbert Xu420a4b22008-08-31 15:58:45 +1000384 padlock_reset_key(&ctx->cword.decrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100385
Herbert Xu28ce7282006-08-21 21:38:42 +1000386 blkcipher_walk_init(&walk, dst, src, nbytes);
387 err = blkcipher_walk_virt(desc, &walk);
388
Suresh Siddhae4914012008-08-13 22:02:26 +1000389 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000390 while ((nbytes = walk.nbytes)) {
391 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
392 ctx->D, &ctx->cword.decrypt,
393 nbytes / AES_BLOCK_SIZE);
394 nbytes &= AES_BLOCK_SIZE - 1;
395 err = blkcipher_walk_done(desc, &walk, nbytes);
396 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000397 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000398
399 padlock_store_cword(&ctx->cword.encrypt);
400
Herbert Xu28ce7282006-08-21 21:38:42 +1000401 return err;
402}
403
404static struct crypto_alg ecb_aes_alg = {
405 .cra_name = "ecb(aes)",
406 .cra_driver_name = "ecb-aes-padlock",
407 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
408 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
409 .cra_blocksize = AES_BLOCK_SIZE,
410 .cra_ctxsize = sizeof(struct aes_ctx),
411 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
412 .cra_type = &crypto_blkcipher_type,
413 .cra_module = THIS_MODULE,
Herbert Xu28ce7282006-08-21 21:38:42 +1000414 .cra_u = {
415 .blkcipher = {
416 .min_keysize = AES_MIN_KEY_SIZE,
417 .max_keysize = AES_MAX_KEY_SIZE,
418 .setkey = aes_set_key,
419 .encrypt = ecb_aes_encrypt,
420 .decrypt = ecb_aes_decrypt,
421 }
422 }
423};
424
425static int cbc_aes_encrypt(struct blkcipher_desc *desc,
426 struct scatterlist *dst, struct scatterlist *src,
427 unsigned int nbytes)
428{
429 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
430 struct blkcipher_walk walk;
431 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000432 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000433
Herbert Xu420a4b22008-08-31 15:58:45 +1000434 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100435
Herbert Xu28ce7282006-08-21 21:38:42 +1000436 blkcipher_walk_init(&walk, dst, src, nbytes);
437 err = blkcipher_walk_virt(desc, &walk);
438
Suresh Siddhae4914012008-08-13 22:02:26 +1000439 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000440 while ((nbytes = walk.nbytes)) {
441 u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr,
442 walk.dst.virt.addr, ctx->E,
443 walk.iv, &ctx->cword.encrypt,
444 nbytes / AES_BLOCK_SIZE);
445 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
446 nbytes &= AES_BLOCK_SIZE - 1;
447 err = blkcipher_walk_done(desc, &walk, nbytes);
448 }
Suresh Siddhae4914012008-08-13 22:02:26 +1000449 irq_ts_restore(ts_state);
Herbert Xu28ce7282006-08-21 21:38:42 +1000450
Herbert Xu420a4b22008-08-31 15:58:45 +1000451 padlock_store_cword(&ctx->cword.decrypt);
452
Herbert Xu28ce7282006-08-21 21:38:42 +1000453 return err;
454}
455
456static int cbc_aes_decrypt(struct blkcipher_desc *desc,
457 struct scatterlist *dst, struct scatterlist *src,
458 unsigned int nbytes)
459{
460 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
461 struct blkcipher_walk walk;
462 int err;
Suresh Siddhae4914012008-08-13 22:02:26 +1000463 int ts_state;
Herbert Xu28ce7282006-08-21 21:38:42 +1000464
Herbert Xu420a4b22008-08-31 15:58:45 +1000465 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100466
Herbert Xu28ce7282006-08-21 21:38:42 +1000467 blkcipher_walk_init(&walk, dst, src, nbytes);
468 err = blkcipher_walk_virt(desc, &walk);
469
Suresh Siddhae4914012008-08-13 22:02:26 +1000470 ts_state = irq_ts_save();
Herbert Xu28ce7282006-08-21 21:38:42 +1000471 while ((nbytes = walk.nbytes)) {
472 padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr,
473 ctx->D, walk.iv, &ctx->cword.decrypt,
474 nbytes / AES_BLOCK_SIZE);
475 nbytes &= AES_BLOCK_SIZE - 1;
476 err = blkcipher_walk_done(desc, &walk, nbytes);
477 }
478
Suresh Siddhae4914012008-08-13 22:02:26 +1000479 irq_ts_restore(ts_state);
Herbert Xu420a4b22008-08-31 15:58:45 +1000480
481 padlock_store_cword(&ctx->cword.encrypt);
482
Herbert Xu28ce7282006-08-21 21:38:42 +1000483 return err;
484}
485
486static struct crypto_alg cbc_aes_alg = {
487 .cra_name = "cbc(aes)",
488 .cra_driver_name = "cbc-aes-padlock",
489 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
490 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
491 .cra_blocksize = AES_BLOCK_SIZE,
492 .cra_ctxsize = sizeof(struct aes_ctx),
493 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
494 .cra_type = &crypto_blkcipher_type,
495 .cra_module = THIS_MODULE,
Herbert Xu28ce7282006-08-21 21:38:42 +1000496 .cra_u = {
497 .blkcipher = {
498 .min_keysize = AES_MIN_KEY_SIZE,
499 .max_keysize = AES_MAX_KEY_SIZE,
500 .ivsize = AES_BLOCK_SIZE,
501 .setkey = aes_set_key,
502 .encrypt = cbc_aes_encrypt,
503 .decrypt = cbc_aes_decrypt,
504 }
505 }
506};
507
Andi Kleen3bd391f2012-01-26 00:09:06 +0100508static struct x86_cpu_id padlock_cpu_id[] = {
509 X86_FEATURE_MATCH(X86_FEATURE_XCRYPT),
510 {}
511};
512MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id);
513
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000514static int __init padlock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000516 int ret;
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800517 struct cpuinfo_x86 *c = &cpu_data(0);
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000518
Andi Kleen3bd391f2012-01-26 00:09:06 +0100519 if (!x86_match_cpu(padlock_cpu_id))
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000520 return -ENODEV;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000521
Borislav Petkov362f9242015-12-07 10:39:41 +0100522 if (!boot_cpu_has(X86_FEATURE_XCRYPT_EN)) {
Jeremy Katzb43e7262008-07-03 19:03:31 +0800523 printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000524 return -ENODEV;
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Herbert Xu28ce7282006-08-21 21:38:42 +1000527 if ((ret = crypto_register_alg(&aes_alg)))
528 goto aes_err;
529
530 if ((ret = crypto_register_alg(&ecb_aes_alg)))
531 goto ecb_aes_err;
532
533 if ((ret = crypto_register_alg(&cbc_aes_alg)))
534 goto cbc_aes_err;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000535
536 printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n");
537
Jia Zhang06be0072018-01-01 09:52:10 +0800538 if (c->x86 == 6 && c->x86_model == 15 && c->x86_stepping == 2) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800539 ecb_fetch_blocks = MAX_ECB_FETCH_BLOCKS;
540 cbc_fetch_blocks = MAX_CBC_FETCH_BLOCKS;
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800541 printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n");
542 }
543
Herbert Xu28ce7282006-08-21 21:38:42 +1000544out:
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000545 return ret;
Herbert Xu28ce7282006-08-21 21:38:42 +1000546
547cbc_aes_err:
548 crypto_unregister_alg(&ecb_aes_alg);
549ecb_aes_err:
550 crypto_unregister_alg(&aes_alg);
551aes_err:
552 printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n");
553 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000556static void __exit padlock_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Herbert Xu28ce7282006-08-21 21:38:42 +1000558 crypto_unregister_alg(&cbc_aes_alg);
559 crypto_unregister_alg(&ecb_aes_alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 crypto_unregister_alg(&aes_alg);
561}
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000562
563module_init(padlock_init);
564module_exit(padlock_fini);
565
566MODULE_DESCRIPTION("VIA PadLock AES algorithm support");
567MODULE_LICENSE("GPL");
568MODULE_AUTHOR("Michal Ludvig");
569
Kees Cook5d26a102014-11-20 17:05:53 -0800570MODULE_ALIAS_CRYPTO("aes");