blob: ad020133da199bc0c2a4204023891f3b8808d538 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Cryptographic API.
4 *
5 * Support for VIA PadLock hardware crypto engine.
6 *
7 * Copyright (c) 2004 Michal Ludvig <michal@logix.cz>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Herbert Xu28ce7282006-08-21 21:38:42 +100011#include <crypto/algapi.h>
Sebastian Siewior89e12652007-10-17 23:18:57 +080012#include <crypto/aes.h>
Herbert Xu21493082011-01-07 14:52:00 +110013#include <crypto/padlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/types.h>
17#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
Herbert Xu6789b2d2005-07-06 13:52:27 -070019#include <linux/kernel.h>
Herbert Xu420a4b22008-08-31 15:58:45 +100020#include <linux/percpu.h>
21#include <linux/smp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Andi Kleen3bd391f2012-01-26 00:09:06 +010023#include <asm/cpu_device_id.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/byteorder.h>
Chuck Ebberta76c1c22009-06-18 19:24:10 +080025#include <asm/processor.h>
Ingo Molnardf6b35f2015-04-24 02:46:00 +020026#include <asm/fpu/api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080028/*
29 * Number of data blocks actually fetched for each xcrypt insn.
30 * Processors with prefetch errata will fetch extra blocks.
31 */
Chuck Ebberta76c1c22009-06-18 19:24:10 +080032static unsigned int ecb_fetch_blocks = 2;
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080033#define MAX_ECB_FETCH_BLOCKS (8)
Chuck Ebberta76c1c22009-06-18 19:24:10 +080034#define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE)
Chuck Ebbert8d8409f2009-06-18 19:31:09 +080035
36static unsigned int cbc_fetch_blocks = 1;
37#define MAX_CBC_FETCH_BLOCKS (4)
Chuck Ebberta76c1c22009-06-18 19:24:10 +080038#define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE)
39
Michal Ludvigccc17c32006-07-15 10:23:49 +100040/* Control word. */
41struct cword {
42 unsigned int __attribute__ ((__packed__))
43 rounds:4,
44 algo:3,
45 keygen:1,
46 interm:1,
47 encdec:1,
48 ksize:2;
49} __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
50
Michal Ludvigcc086322006-07-15 11:08:50 +100051/* Whenever making any changes to the following
52 * structure *make sure* you keep E, d_data
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080053 * and cword aligned on 16 Bytes boundaries and
54 * the Hardware can access 16 * 16 bytes of E and d_data
55 * (only the first 15 * 16 bytes matter but the HW reads
56 * more).
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct aes_ctx {
Sebastian Siewior7dc748e2008-04-01 21:24:50 +080059 u32 E[AES_MAX_KEYLENGTH_U32]
60 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
61 u32 d_data[AES_MAX_KEYLENGTH_U32]
62 __attribute__ ((__aligned__(PADLOCK_ALIGNMENT)));
Herbert Xu6789b2d2005-07-06 13:52:27 -070063 struct {
64 struct cword encrypt;
65 struct cword decrypt;
66 } cword;
Herbert Xu82062c72006-05-16 22:20:34 +100067 u32 *D;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Tejun Heo390dfd92009-10-29 22:34:14 +090070static DEFINE_PER_CPU(struct cword *, paes_last_cword);
Herbert Xu420a4b22008-08-31 15:58:45 +100071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Tells whether the ACE is capable to generate
73 the extended key for a given key_len. */
74static inline int
75aes_hw_extkey_available(uint8_t key_len)
76{
77 /* TODO: We should check the actual CPU model/stepping
78 as it's possible that the capability will be
79 added in the next CPU revisions. */
80 if (key_len == 16)
81 return 1;
82 return 0;
83}
84
Herbert Xu28ce7282006-08-21 21:38:42 +100085static inline struct aes_ctx *aes_ctx_common(void *ctx)
Herbert Xu6789b2d2005-07-06 13:52:27 -070086{
Herbert Xu28ce7282006-08-21 21:38:42 +100087 unsigned long addr = (unsigned long)ctx;
Herbert Xuf10b7892006-01-25 22:34:01 +110088 unsigned long align = PADLOCK_ALIGNMENT;
89
90 if (align <= crypto_tfm_ctx_alignment())
91 align = 1;
Herbert Xu6c2bb982006-05-16 22:09:29 +100092 return (struct aes_ctx *)ALIGN(addr, align);
Herbert Xu6789b2d2005-07-06 13:52:27 -070093}
94
Herbert Xu28ce7282006-08-21 21:38:42 +100095static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm)
96{
97 return aes_ctx_common(crypto_tfm_ctx(tfm));
98}
99
100static inline struct aes_ctx *blk_aes_ctx(struct crypto_blkcipher *tfm)
101{
102 return aes_ctx_common(crypto_blkcipher_ctx(tfm));
103}
104
Herbert Xu6c2bb982006-05-16 22:09:29 +1000105static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
Herbert Xu560c06a2006-08-13 14:16:39 +1000106 unsigned int key_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000108 struct aes_ctx *ctx = aes_ctx(tfm);
Herbert Xu06ace7a2005-10-30 21:25:15 +1100109 const __le32 *key = (const __le32 *)in_key;
Herbert Xu560c06a2006-08-13 14:16:39 +1000110 u32 *flags = &tfm->crt_flags;
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800111 struct crypto_aes_ctx gen_aes;
Herbert Xu420a4b22008-08-31 15:58:45 +1000112 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Herbert Xu560c06a2006-08-13 14:16:39 +1000114 if (key_len % 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
116 return -EINVAL;
117 }
118
Herbert Xu6789b2d2005-07-06 13:52:27 -0700119 /*
120 * If the hardware is capable of generating the extended key
121 * itself we must supply the plain key for both encryption
122 * and decryption.
123 */
Herbert Xu82062c72006-05-16 22:20:34 +1000124 ctx->D = ctx->E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800126 ctx->E[0] = le32_to_cpu(key[0]);
127 ctx->E[1] = le32_to_cpu(key[1]);
128 ctx->E[2] = le32_to_cpu(key[2]);
129 ctx->E[3] = le32_to_cpu(key[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Herbert Xu6789b2d2005-07-06 13:52:27 -0700131 /* Prepare control words. */
132 memset(&ctx->cword, 0, sizeof(ctx->cword));
133
134 ctx->cword.decrypt.encdec = 1;
135 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
136 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
137 ctx->cword.encrypt.ksize = (key_len - 16) / 8;
138 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* Don't generate extended keys if the hardware can do it. */
141 if (aes_hw_extkey_available(key_len))
Herbert Xu420a4b22008-08-31 15:58:45 +1000142 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Herbert Xu6789b2d2005-07-06 13:52:27 -0700144 ctx->D = ctx->d_data;
145 ctx->cword.encrypt.keygen = 1;
146 ctx->cword.decrypt.keygen = 1;
147
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800148 if (crypto_aes_expand_key(&gen_aes, in_key, key_len)) {
149 *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
150 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152
Sebastian Siewior7dc748e2008-04-01 21:24:50 +0800153 memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH);
154 memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH);
Herbert Xu420a4b22008-08-31 15:58:45 +1000155
156ok:
157 for_each_online_cpu(cpu)
Tejun Heo390dfd92009-10-29 22:34:14 +0900158 if (&ctx->cword.encrypt == per_cpu(paes_last_cword, cpu) ||
159 &ctx->cword.decrypt == per_cpu(paes_last_cword, cpu))
160 per_cpu(paes_last_cword, cpu) = NULL;
Herbert Xu420a4b22008-08-31 15:58:45 +1000161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return 0;
163}
164
165/* ====== Encryption/decryption routines ====== */
166
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700167/* These are the real call to PadLock. */
Herbert Xu420a4b22008-08-31 15:58:45 +1000168static inline void padlock_reset_key(struct cword *cword)
Herbert Xu866cd902007-12-27 00:04:44 +1100169{
Herbert Xu420a4b22008-08-31 15:58:45 +1000170 int cpu = raw_smp_processor_id();
171
Tejun Heo390dfd92009-10-29 22:34:14 +0900172 if (cword != per_cpu(paes_last_cword, cpu))
Sebastian Andrzej Siewiord1c8b0a2009-04-21 14:14:37 +0800173#ifndef CONFIG_X86_64
Herbert Xu420a4b22008-08-31 15:58:45 +1000174 asm volatile ("pushfl; popfl");
Sebastian Andrzej Siewiord1c8b0a2009-04-21 14:14:37 +0800175#else
176 asm volatile ("pushfq; popfq");
177#endif
Herbert Xu420a4b22008-08-31 15:58:45 +1000178}
179
180static inline void padlock_store_cword(struct cword *cword)
181{
Tejun Heo390dfd92009-10-29 22:34:14 +0900182 per_cpu(paes_last_cword, raw_smp_processor_id()) = cword;
Herbert Xu866cd902007-12-27 00:04:44 +1100183}
184
Suresh Siddhae4914012008-08-13 22:02:26 +1000185/*
186 * While the padlock instructions don't use FP/SSE registers, they
Andy Lutomirski5a83d602016-10-31 15:18:44 -0700187 * generate a spurious DNA fault when CR0.TS is '1'. Fortunately,
188 * the kernel doesn't use CR0.TS.
Suresh Siddhae4914012008-08-13 22:02:26 +1000189 */
190
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800191static inline void rep_xcrypt_ecb(const u8 *input, u8 *output, void *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800192 struct cword *control_word, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100193{
194 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
195 : "+S"(input), "+D"(output)
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800196 : "d"(control_word), "b"(key), "c"(count));
Herbert Xud4a7dd82007-12-28 11:05:46 +1100197}
198
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800199static inline u8 *rep_xcrypt_cbc(const u8 *input, u8 *output, void *key,
200 u8 *iv, struct cword *control_word, int count)
201{
202 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
203 : "+S" (input), "+D" (output), "+a" (iv)
204 : "d" (control_word), "b" (key), "c" (count));
205 return iv;
206}
207
208static void ecb_crypt_copy(const u8 *in, u8 *out, u32 *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800209 struct cword *cword, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100210{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800211 /*
212 * Padlock prefetches extra data so we must provide mapped input buffers.
213 * Assume there are at least 16 bytes of stack already in use.
214 */
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800215 u8 buf[AES_BLOCK_SIZE * (MAX_ECB_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
Herbert Xu490fe3f2008-01-11 08:09:35 +1100216 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100217
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800218 memcpy(tmp, in, count * AES_BLOCK_SIZE);
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800219 rep_xcrypt_ecb(tmp, out, key, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100220}
221
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800222static u8 *cbc_crypt_copy(const u8 *in, u8 *out, u32 *key,
223 u8 *iv, struct cword *cword, int count)
224{
225 /*
226 * Padlock prefetches extra data so we must provide mapped input buffers.
227 * Assume there are at least 16 bytes of stack already in use.
228 */
229 u8 buf[AES_BLOCK_SIZE * (MAX_CBC_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1];
230 u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT);
231
232 memcpy(tmp, in, count * AES_BLOCK_SIZE);
233 return rep_xcrypt_cbc(tmp, out, key, iv, cword, count);
234}
235
236static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key,
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800237 struct cword *cword, int count)
Herbert Xud4a7dd82007-12-28 11:05:46 +1100238{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800239 /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data.
240 * We could avoid some copying here but it's probably not worth it.
241 */
Geliang Tang1d4bbc52015-11-21 22:24:11 +0800242 if (unlikely(offset_in_page(in) + ecb_fetch_bytes > PAGE_SIZE)) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800243 ecb_crypt_copy(in, out, key, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100244 return;
245 }
246
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800247 rep_xcrypt_ecb(in, out, key, cword, count);
248}
249
250static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key,
251 u8 *iv, struct cword *cword, int count)
252{
253 /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */
Geliang Tang1d4bbc52015-11-21 22:24:11 +0800254 if (unlikely(offset_in_page(in) + cbc_fetch_bytes > PAGE_SIZE))
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800255 return cbc_crypt_copy(in, out, key, iv, cword, count);
256
257 return rep_xcrypt_cbc(in, out, key, iv, cword, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100258}
259
Herbert Xu6789b2d2005-07-06 13:52:27 -0700260static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key,
261 void *control_word, u32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800263 u32 initial = count & (ecb_fetch_blocks - 1);
264
265 if (count < ecb_fetch_blocks) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800266 ecb_crypt(input, output, key, control_word, count);
Herbert Xud4a7dd82007-12-28 11:05:46 +1100267 return;
268 }
269
Herbert Xu46d8c4b2018-07-13 16:12:32 +0800270 count -= initial;
271
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800272 if (initial)
273 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
274 : "+S"(input), "+D"(output)
275 : "d"(control_word), "b"(key), "c"(initial));
276
277 asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 : "+S"(input), "+D"(output)
Herbert Xu46d8c4b2018-07-13 16:12:32 +0800279 : "d"(control_word), "b"(key), "c"(count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Herbert Xu476df252005-07-06 13:54:09 -0700282static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key,
283 u8 *iv, void *control_word, u32 count)
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700284{
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800285 u32 initial = count & (cbc_fetch_blocks - 1);
286
287 if (count < cbc_fetch_blocks)
288 return cbc_crypt(input, output, key, iv, control_word, count);
289
Herbert Xu46d8c4b2018-07-13 16:12:32 +0800290 count -= initial;
291
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800292 if (initial)
293 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
294 : "+S" (input), "+D" (output), "+a" (iv)
Herbert Xuc054a072010-11-04 14:38:39 -0400295 : "d" (control_word), "b" (key), "c" (initial));
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800296
297 asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700298 : "+S" (input), "+D" (output), "+a" (iv)
Herbert Xu46d8c4b2018-07-13 16:12:32 +0800299 : "d" (control_word), "b" (key), "c" (count));
Herbert Xu476df252005-07-06 13:54:09 -0700300 return iv;
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700301}
302
Herbert Xu6c2bb982006-05-16 22:09:29 +1000303static void aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000305 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000306
Herbert Xu420a4b22008-08-31 15:58:45 +1000307 padlock_reset_key(&ctx->cword.encrypt);
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800308 ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1);
Herbert Xu420a4b22008-08-31 15:58:45 +1000309 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Herbert Xu6c2bb982006-05-16 22:09:29 +1000312static void aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Herbert Xu6c2bb982006-05-16 22:09:29 +1000314 struct aes_ctx *ctx = aes_ctx(tfm);
Suresh Siddhae4914012008-08-13 22:02:26 +1000315
Herbert Xu420a4b22008-08-31 15:58:45 +1000316 padlock_reset_key(&ctx->cword.encrypt);
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800317 ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1);
Herbert Xu420a4b22008-08-31 15:58:45 +1000318 padlock_store_cword(&ctx->cword.encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321static struct crypto_alg aes_alg = {
322 .cra_name = "aes",
Herbert Xuc8a19c92005-11-05 18:06:26 +1100323 .cra_driver_name = "aes-padlock",
Michal Ludvigccc17c32006-07-15 10:23:49 +1000324 .cra_priority = PADLOCK_CRA_PRIORITY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
326 .cra_blocksize = AES_BLOCK_SIZE,
Herbert Xufbdae9f2005-07-06 13:53:29 -0700327 .cra_ctxsize = sizeof(struct aes_ctx),
Herbert Xu6789b2d2005-07-06 13:52:27 -0700328 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 .cra_module = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 .cra_u = {
331 .cipher = {
332 .cia_min_keysize = AES_MIN_KEY_SIZE,
333 .cia_max_keysize = AES_MAX_KEY_SIZE,
334 .cia_setkey = aes_set_key,
335 .cia_encrypt = aes_encrypt,
Herbert Xu28e8c3a2005-07-06 13:52:43 -0700336 .cia_decrypt = aes_decrypt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 }
339};
340
Herbert Xu28ce7282006-08-21 21:38:42 +1000341static int ecb_aes_encrypt(struct blkcipher_desc *desc,
342 struct scatterlist *dst, struct scatterlist *src,
343 unsigned int nbytes)
344{
345 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
346 struct blkcipher_walk walk;
347 int err;
348
Herbert Xu420a4b22008-08-31 15:58:45 +1000349 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100350
Herbert Xu28ce7282006-08-21 21:38:42 +1000351 blkcipher_walk_init(&walk, dst, src, nbytes);
352 err = blkcipher_walk_virt(desc, &walk);
353
354 while ((nbytes = walk.nbytes)) {
355 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
356 ctx->E, &ctx->cword.encrypt,
357 nbytes / AES_BLOCK_SIZE);
358 nbytes &= AES_BLOCK_SIZE - 1;
359 err = blkcipher_walk_done(desc, &walk, nbytes);
360 }
361
Herbert Xu420a4b22008-08-31 15:58:45 +1000362 padlock_store_cword(&ctx->cword.encrypt);
363
Herbert Xu28ce7282006-08-21 21:38:42 +1000364 return err;
365}
366
367static int ecb_aes_decrypt(struct blkcipher_desc *desc,
368 struct scatterlist *dst, struct scatterlist *src,
369 unsigned int nbytes)
370{
371 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
372 struct blkcipher_walk walk;
373 int err;
374
Herbert Xu420a4b22008-08-31 15:58:45 +1000375 padlock_reset_key(&ctx->cword.decrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100376
Herbert Xu28ce7282006-08-21 21:38:42 +1000377 blkcipher_walk_init(&walk, dst, src, nbytes);
378 err = blkcipher_walk_virt(desc, &walk);
379
380 while ((nbytes = walk.nbytes)) {
381 padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr,
382 ctx->D, &ctx->cword.decrypt,
383 nbytes / AES_BLOCK_SIZE);
384 nbytes &= AES_BLOCK_SIZE - 1;
385 err = blkcipher_walk_done(desc, &walk, nbytes);
386 }
Herbert Xu420a4b22008-08-31 15:58:45 +1000387
388 padlock_store_cword(&ctx->cword.encrypt);
389
Herbert Xu28ce7282006-08-21 21:38:42 +1000390 return err;
391}
392
393static struct crypto_alg ecb_aes_alg = {
394 .cra_name = "ecb(aes)",
395 .cra_driver_name = "ecb-aes-padlock",
396 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
397 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
398 .cra_blocksize = AES_BLOCK_SIZE,
399 .cra_ctxsize = sizeof(struct aes_ctx),
400 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
401 .cra_type = &crypto_blkcipher_type,
402 .cra_module = THIS_MODULE,
Herbert Xu28ce7282006-08-21 21:38:42 +1000403 .cra_u = {
404 .blkcipher = {
405 .min_keysize = AES_MIN_KEY_SIZE,
406 .max_keysize = AES_MAX_KEY_SIZE,
407 .setkey = aes_set_key,
408 .encrypt = ecb_aes_encrypt,
409 .decrypt = ecb_aes_decrypt,
410 }
411 }
412};
413
414static int cbc_aes_encrypt(struct blkcipher_desc *desc,
415 struct scatterlist *dst, struct scatterlist *src,
416 unsigned int nbytes)
417{
418 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
419 struct blkcipher_walk walk;
420 int err;
421
Herbert Xu420a4b22008-08-31 15:58:45 +1000422 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100423
Herbert Xu28ce7282006-08-21 21:38:42 +1000424 blkcipher_walk_init(&walk, dst, src, nbytes);
425 err = blkcipher_walk_virt(desc, &walk);
426
427 while ((nbytes = walk.nbytes)) {
428 u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr,
429 walk.dst.virt.addr, ctx->E,
430 walk.iv, &ctx->cword.encrypt,
431 nbytes / AES_BLOCK_SIZE);
432 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
433 nbytes &= AES_BLOCK_SIZE - 1;
434 err = blkcipher_walk_done(desc, &walk, nbytes);
435 }
436
Herbert Xu420a4b22008-08-31 15:58:45 +1000437 padlock_store_cword(&ctx->cword.decrypt);
438
Herbert Xu28ce7282006-08-21 21:38:42 +1000439 return err;
440}
441
442static int cbc_aes_decrypt(struct blkcipher_desc *desc,
443 struct scatterlist *dst, struct scatterlist *src,
444 unsigned int nbytes)
445{
446 struct aes_ctx *ctx = blk_aes_ctx(desc->tfm);
447 struct blkcipher_walk walk;
448 int err;
449
Herbert Xu420a4b22008-08-31 15:58:45 +1000450 padlock_reset_key(&ctx->cword.encrypt);
Herbert Xu866cd902007-12-27 00:04:44 +1100451
Herbert Xu28ce7282006-08-21 21:38:42 +1000452 blkcipher_walk_init(&walk, dst, src, nbytes);
453 err = blkcipher_walk_virt(desc, &walk);
454
455 while ((nbytes = walk.nbytes)) {
456 padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr,
457 ctx->D, walk.iv, &ctx->cword.decrypt,
458 nbytes / AES_BLOCK_SIZE);
459 nbytes &= AES_BLOCK_SIZE - 1;
460 err = blkcipher_walk_done(desc, &walk, nbytes);
461 }
462
Herbert Xu420a4b22008-08-31 15:58:45 +1000463 padlock_store_cword(&ctx->cword.encrypt);
464
Herbert Xu28ce7282006-08-21 21:38:42 +1000465 return err;
466}
467
468static struct crypto_alg cbc_aes_alg = {
469 .cra_name = "cbc(aes)",
470 .cra_driver_name = "cbc-aes-padlock",
471 .cra_priority = PADLOCK_COMPOSITE_PRIORITY,
472 .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
473 .cra_blocksize = AES_BLOCK_SIZE,
474 .cra_ctxsize = sizeof(struct aes_ctx),
475 .cra_alignmask = PADLOCK_ALIGNMENT - 1,
476 .cra_type = &crypto_blkcipher_type,
477 .cra_module = THIS_MODULE,
Herbert Xu28ce7282006-08-21 21:38:42 +1000478 .cra_u = {
479 .blkcipher = {
480 .min_keysize = AES_MIN_KEY_SIZE,
481 .max_keysize = AES_MAX_KEY_SIZE,
482 .ivsize = AES_BLOCK_SIZE,
483 .setkey = aes_set_key,
484 .encrypt = cbc_aes_encrypt,
485 .decrypt = cbc_aes_decrypt,
486 }
487 }
488};
489
Arvind Yadavd9893642017-08-25 23:53:42 +0530490static const struct x86_cpu_id padlock_cpu_id[] = {
Andi Kleen3bd391f2012-01-26 00:09:06 +0100491 X86_FEATURE_MATCH(X86_FEATURE_XCRYPT),
492 {}
493};
494MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id);
495
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000496static int __init padlock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000498 int ret;
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800499 struct cpuinfo_x86 *c = &cpu_data(0);
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000500
Andi Kleen3bd391f2012-01-26 00:09:06 +0100501 if (!x86_match_cpu(padlock_cpu_id))
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000502 return -ENODEV;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000503
Borislav Petkov362f9242015-12-07 10:39:41 +0100504 if (!boot_cpu_has(X86_FEATURE_XCRYPT_EN)) {
Jeremy Katzb43e7262008-07-03 19:03:31 +0800505 printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000506 return -ENODEV;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Herbert Xu28ce7282006-08-21 21:38:42 +1000509 if ((ret = crypto_register_alg(&aes_alg)))
510 goto aes_err;
511
512 if ((ret = crypto_register_alg(&ecb_aes_alg)))
513 goto ecb_aes_err;
514
515 if ((ret = crypto_register_alg(&cbc_aes_alg)))
516 goto cbc_aes_err;
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000517
518 printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n");
519
Jia Zhangb3991512018-01-01 09:52:10 +0800520 if (c->x86 == 6 && c->x86_model == 15 && c->x86_stepping == 2) {
Chuck Ebbert8d8409f2009-06-18 19:31:09 +0800521 ecb_fetch_blocks = MAX_ECB_FETCH_BLOCKS;
522 cbc_fetch_blocks = MAX_CBC_FETCH_BLOCKS;
Chuck Ebberta76c1c22009-06-18 19:24:10 +0800523 printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n");
524 }
525
Herbert Xu28ce7282006-08-21 21:38:42 +1000526out:
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000527 return ret;
Herbert Xu28ce7282006-08-21 21:38:42 +1000528
529cbc_aes_err:
530 crypto_unregister_alg(&ecb_aes_alg);
531ecb_aes_err:
532 crypto_unregister_alg(&aes_alg);
533aes_err:
534 printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n");
535 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000538static void __exit padlock_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Herbert Xu28ce7282006-08-21 21:38:42 +1000540 crypto_unregister_alg(&cbc_aes_alg);
541 crypto_unregister_alg(&ecb_aes_alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 crypto_unregister_alg(&aes_alg);
543}
Michal Ludvig1191f0a2006-08-06 22:46:20 +1000544
545module_init(padlock_init);
546module_exit(padlock_fini);
547
548MODULE_DESCRIPTION("VIA PadLock AES algorithm support");
549MODULE_LICENSE("GPL");
550MODULE_AUTHOR("Michal Ludvig");
551
Kees Cook5d26a102014-11-20 17:05:53 -0800552MODULE_ALIAS_CRYPTO("aes");