Thomas Gleixner | 09c434b | 2019-05-19 13:08:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Cryptographic API. |
| 4 | * |
| 5 | * Support for VIA PadLock hardware crypto engine. |
| 6 | * |
| 7 | * Copyright (c) 2004 Michal Ludvig <michal@logix.cz> |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 11 | #include <crypto/algapi.h> |
Sebastian Siewior | 89e1265 | 2007-10-17 23:18:57 +0800 | [diff] [blame] | 12 | #include <crypto/aes.h> |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 13 | #include <crypto/internal/skcipher.h> |
Herbert Xu | 2149308 | 2011-01-07 14:52:00 +1100 | [diff] [blame] | 14 | #include <crypto/padlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/types.h> |
| 18 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/interrupt.h> |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 21 | #include <linux/percpu.h> |
| 22 | #include <linux/smp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Andi Kleen | 3bd391f | 2012-01-26 00:09:06 +0100 | [diff] [blame] | 24 | #include <asm/cpu_device_id.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/byteorder.h> |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 26 | #include <asm/processor.h> |
Ingo Molnar | df6b35f | 2015-04-24 02:46:00 +0200 | [diff] [blame] | 27 | #include <asm/fpu/api.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 29 | /* |
| 30 | * Number of data blocks actually fetched for each xcrypt insn. |
| 31 | * Processors with prefetch errata will fetch extra blocks. |
| 32 | */ |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 33 | static unsigned int ecb_fetch_blocks = 2; |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 34 | #define MAX_ECB_FETCH_BLOCKS (8) |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 35 | #define ecb_fetch_bytes (ecb_fetch_blocks * AES_BLOCK_SIZE) |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 36 | |
| 37 | static unsigned int cbc_fetch_blocks = 1; |
| 38 | #define MAX_CBC_FETCH_BLOCKS (4) |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 39 | #define cbc_fetch_bytes (cbc_fetch_blocks * AES_BLOCK_SIZE) |
| 40 | |
Michal Ludvig | ccc17c3 | 2006-07-15 10:23:49 +1000 | [diff] [blame] | 41 | /* Control word. */ |
| 42 | struct cword { |
| 43 | unsigned int __attribute__ ((__packed__)) |
| 44 | rounds:4, |
| 45 | algo:3, |
| 46 | keygen:1, |
| 47 | interm:1, |
| 48 | encdec:1, |
| 49 | ksize:2; |
| 50 | } __attribute__ ((__aligned__(PADLOCK_ALIGNMENT))); |
| 51 | |
Michal Ludvig | cc08632 | 2006-07-15 11:08:50 +1000 | [diff] [blame] | 52 | /* Whenever making any changes to the following |
| 53 | * structure *make sure* you keep E, d_data |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 54 | * and cword aligned on 16 Bytes boundaries and |
| 55 | * the Hardware can access 16 * 16 bytes of E and d_data |
| 56 | * (only the first 15 * 16 bytes matter but the HW reads |
| 57 | * more). |
| 58 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct aes_ctx { |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 60 | u32 E[AES_MAX_KEYLENGTH_U32] |
| 61 | __attribute__ ((__aligned__(PADLOCK_ALIGNMENT))); |
| 62 | u32 d_data[AES_MAX_KEYLENGTH_U32] |
| 63 | __attribute__ ((__aligned__(PADLOCK_ALIGNMENT))); |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 64 | struct { |
| 65 | struct cword encrypt; |
| 66 | struct cword decrypt; |
| 67 | } cword; |
Herbert Xu | 82062c7 | 2006-05-16 22:20:34 +1000 | [diff] [blame] | 68 | u32 *D; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
Tejun Heo | 390dfd9 | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 71 | static DEFINE_PER_CPU(struct cword *, paes_last_cword); |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | /* Tells whether the ACE is capable to generate |
| 74 | the extended key for a given key_len. */ |
| 75 | static inline int |
| 76 | aes_hw_extkey_available(uint8_t key_len) |
| 77 | { |
| 78 | /* TODO: We should check the actual CPU model/stepping |
| 79 | as it's possible that the capability will be |
| 80 | added in the next CPU revisions. */ |
| 81 | if (key_len == 16) |
| 82 | return 1; |
| 83 | return 0; |
| 84 | } |
| 85 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 86 | static inline struct aes_ctx *aes_ctx_common(void *ctx) |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 87 | { |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 88 | unsigned long addr = (unsigned long)ctx; |
Herbert Xu | f10b789 | 2006-01-25 22:34:01 +1100 | [diff] [blame] | 89 | unsigned long align = PADLOCK_ALIGNMENT; |
| 90 | |
| 91 | if (align <= crypto_tfm_ctx_alignment()) |
| 92 | align = 1; |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 93 | return (struct aes_ctx *)ALIGN(addr, align); |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 96 | static inline struct aes_ctx *aes_ctx(struct crypto_tfm *tfm) |
| 97 | { |
| 98 | return aes_ctx_common(crypto_tfm_ctx(tfm)); |
| 99 | } |
| 100 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 101 | static inline struct aes_ctx *skcipher_aes_ctx(struct crypto_skcipher *tfm) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 102 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 103 | return aes_ctx_common(crypto_skcipher_ctx(tfm)); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 104 | } |
| 105 | |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 106 | static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key, |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 107 | unsigned int key_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 109 | struct aes_ctx *ctx = aes_ctx(tfm); |
Herbert Xu | 06ace7a | 2005-10-30 21:25:15 +1100 | [diff] [blame] | 110 | const __le32 *key = (const __le32 *)in_key; |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 111 | u32 *flags = &tfm->crt_flags; |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 112 | struct crypto_aes_ctx gen_aes; |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 113 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Herbert Xu | 560c06a | 2006-08-13 14:16:39 +1000 | [diff] [blame] | 115 | if (key_len % 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN; |
| 117 | return -EINVAL; |
| 118 | } |
| 119 | |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 120 | /* |
| 121 | * If the hardware is capable of generating the extended key |
| 122 | * itself we must supply the plain key for both encryption |
| 123 | * and decryption. |
| 124 | */ |
Herbert Xu | 82062c7 | 2006-05-16 22:20:34 +1000 | [diff] [blame] | 125 | ctx->D = ctx->E; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 127 | ctx->E[0] = le32_to_cpu(key[0]); |
| 128 | ctx->E[1] = le32_to_cpu(key[1]); |
| 129 | ctx->E[2] = le32_to_cpu(key[2]); |
| 130 | ctx->E[3] = le32_to_cpu(key[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 132 | /* Prepare control words. */ |
| 133 | memset(&ctx->cword, 0, sizeof(ctx->cword)); |
| 134 | |
| 135 | ctx->cword.decrypt.encdec = 1; |
| 136 | ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4; |
| 137 | ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds; |
| 138 | ctx->cword.encrypt.ksize = (key_len - 16) / 8; |
| 139 | ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize; |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | /* Don't generate extended keys if the hardware can do it. */ |
| 142 | if (aes_hw_extkey_available(key_len)) |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 143 | goto ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 145 | ctx->D = ctx->d_data; |
| 146 | ctx->cword.encrypt.keygen = 1; |
| 147 | ctx->cword.decrypt.keygen = 1; |
| 148 | |
Ard Biesheuvel | 8131878 | 2019-07-02 21:41:25 +0200 | [diff] [blame] | 149 | if (aes_expandkey(&gen_aes, in_key, key_len)) { |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 150 | *flags |= CRYPTO_TFM_RES_BAD_KEY_LEN; |
| 151 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Sebastian Siewior | 7dc748e | 2008-04-01 21:24:50 +0800 | [diff] [blame] | 154 | memcpy(ctx->E, gen_aes.key_enc, AES_MAX_KEYLENGTH); |
| 155 | memcpy(ctx->D, gen_aes.key_dec, AES_MAX_KEYLENGTH); |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 156 | |
| 157 | ok: |
| 158 | for_each_online_cpu(cpu) |
Tejun Heo | 390dfd9 | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 159 | if (&ctx->cword.encrypt == per_cpu(paes_last_cword, cpu) || |
| 160 | &ctx->cword.decrypt == per_cpu(paes_last_cword, cpu)) |
| 161 | per_cpu(paes_last_cword, cpu) = NULL; |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | return 0; |
| 164 | } |
| 165 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 166 | static int aes_set_key_skcipher(struct crypto_skcipher *tfm, const u8 *in_key, |
| 167 | unsigned int key_len) |
| 168 | { |
| 169 | return aes_set_key(crypto_skcipher_tfm(tfm), in_key, key_len); |
| 170 | } |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /* ====== Encryption/decryption routines ====== */ |
| 173 | |
Herbert Xu | 28e8c3a | 2005-07-06 13:52:43 -0700 | [diff] [blame] | 174 | /* These are the real call to PadLock. */ |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 175 | static inline void padlock_reset_key(struct cword *cword) |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 176 | { |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 177 | int cpu = raw_smp_processor_id(); |
| 178 | |
Tejun Heo | 390dfd9 | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 179 | if (cword != per_cpu(paes_last_cword, cpu)) |
Sebastian Andrzej Siewior | d1c8b0a | 2009-04-21 14:14:37 +0800 | [diff] [blame] | 180 | #ifndef CONFIG_X86_64 |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 181 | asm volatile ("pushfl; popfl"); |
Sebastian Andrzej Siewior | d1c8b0a | 2009-04-21 14:14:37 +0800 | [diff] [blame] | 182 | #else |
| 183 | asm volatile ("pushfq; popfq"); |
| 184 | #endif |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | static inline void padlock_store_cword(struct cword *cword) |
| 188 | { |
Tejun Heo | 390dfd9 | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 189 | per_cpu(paes_last_cword, raw_smp_processor_id()) = cword; |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 190 | } |
| 191 | |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 192 | /* |
| 193 | * While the padlock instructions don't use FP/SSE registers, they |
Andy Lutomirski | 5a83d60 | 2016-10-31 15:18:44 -0700 | [diff] [blame] | 194 | * generate a spurious DNA fault when CR0.TS is '1'. Fortunately, |
| 195 | * the kernel doesn't use CR0.TS. |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 196 | */ |
| 197 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 198 | static inline void rep_xcrypt_ecb(const u8 *input, u8 *output, void *key, |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 199 | struct cword *control_word, int count) |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 200 | { |
| 201 | asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ |
| 202 | : "+S"(input), "+D"(output) |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 203 | : "d"(control_word), "b"(key), "c"(count)); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 204 | } |
| 205 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 206 | static inline u8 *rep_xcrypt_cbc(const u8 *input, u8 *output, void *key, |
| 207 | u8 *iv, struct cword *control_word, int count) |
| 208 | { |
| 209 | asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ |
| 210 | : "+S" (input), "+D" (output), "+a" (iv) |
| 211 | : "d" (control_word), "b" (key), "c" (count)); |
| 212 | return iv; |
| 213 | } |
| 214 | |
| 215 | static void ecb_crypt_copy(const u8 *in, u8 *out, u32 *key, |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 216 | struct cword *cword, int count) |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 217 | { |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 218 | /* |
| 219 | * Padlock prefetches extra data so we must provide mapped input buffers. |
| 220 | * Assume there are at least 16 bytes of stack already in use. |
| 221 | */ |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 222 | u8 buf[AES_BLOCK_SIZE * (MAX_ECB_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1]; |
Herbert Xu | 490fe3f | 2008-01-11 08:09:35 +1100 | [diff] [blame] | 223 | u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 224 | |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 225 | memcpy(tmp, in, count * AES_BLOCK_SIZE); |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 226 | rep_xcrypt_ecb(tmp, out, key, cword, count); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 227 | } |
| 228 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 229 | static u8 *cbc_crypt_copy(const u8 *in, u8 *out, u32 *key, |
| 230 | u8 *iv, struct cword *cword, int count) |
| 231 | { |
| 232 | /* |
| 233 | * Padlock prefetches extra data so we must provide mapped input buffers. |
| 234 | * Assume there are at least 16 bytes of stack already in use. |
| 235 | */ |
| 236 | u8 buf[AES_BLOCK_SIZE * (MAX_CBC_FETCH_BLOCKS - 1) + PADLOCK_ALIGNMENT - 1]; |
| 237 | u8 *tmp = PTR_ALIGN(&buf[0], PADLOCK_ALIGNMENT); |
| 238 | |
| 239 | memcpy(tmp, in, count * AES_BLOCK_SIZE); |
| 240 | return rep_xcrypt_cbc(tmp, out, key, iv, cword, count); |
| 241 | } |
| 242 | |
| 243 | static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key, |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 244 | struct cword *cword, int count) |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 245 | { |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 246 | /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data. |
| 247 | * We could avoid some copying here but it's probably not worth it. |
| 248 | */ |
Geliang Tang | 1d4bbc5 | 2015-11-21 22:24:11 +0800 | [diff] [blame] | 249 | if (unlikely(offset_in_page(in) + ecb_fetch_bytes > PAGE_SIZE)) { |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 250 | ecb_crypt_copy(in, out, key, cword, count); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 251 | return; |
| 252 | } |
| 253 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 254 | rep_xcrypt_ecb(in, out, key, cword, count); |
| 255 | } |
| 256 | |
| 257 | static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key, |
| 258 | u8 *iv, struct cword *cword, int count) |
| 259 | { |
| 260 | /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */ |
Geliang Tang | 1d4bbc5 | 2015-11-21 22:24:11 +0800 | [diff] [blame] | 261 | if (unlikely(offset_in_page(in) + cbc_fetch_bytes > PAGE_SIZE)) |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 262 | return cbc_crypt_copy(in, out, key, iv, cword, count); |
| 263 | |
| 264 | return rep_xcrypt_cbc(in, out, key, iv, cword, count); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 265 | } |
| 266 | |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 267 | static inline void padlock_xcrypt_ecb(const u8 *input, u8 *output, void *key, |
| 268 | void *control_word, u32 count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 270 | u32 initial = count & (ecb_fetch_blocks - 1); |
| 271 | |
| 272 | if (count < ecb_fetch_blocks) { |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 273 | ecb_crypt(input, output, key, control_word, count); |
Herbert Xu | d4a7dd8 | 2007-12-28 11:05:46 +1100 | [diff] [blame] | 274 | return; |
| 275 | } |
| 276 | |
Herbert Xu | 46d8c4b | 2018-07-13 16:12:32 +0800 | [diff] [blame] | 277 | count -= initial; |
| 278 | |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 279 | if (initial) |
| 280 | asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ |
| 281 | : "+S"(input), "+D"(output) |
| 282 | : "d"(control_word), "b"(key), "c"(initial)); |
| 283 | |
| 284 | asm volatile (".byte 0xf3,0x0f,0xa7,0xc8" /* rep xcryptecb */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | : "+S"(input), "+D"(output) |
Herbert Xu | 46d8c4b | 2018-07-13 16:12:32 +0800 | [diff] [blame] | 286 | : "d"(control_word), "b"(key), "c"(count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
| 288 | |
Herbert Xu | 476df25 | 2005-07-06 13:54:09 -0700 | [diff] [blame] | 289 | static inline u8 *padlock_xcrypt_cbc(const u8 *input, u8 *output, void *key, |
| 290 | u8 *iv, void *control_word, u32 count) |
Herbert Xu | 28e8c3a | 2005-07-06 13:52:43 -0700 | [diff] [blame] | 291 | { |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 292 | u32 initial = count & (cbc_fetch_blocks - 1); |
| 293 | |
| 294 | if (count < cbc_fetch_blocks) |
| 295 | return cbc_crypt(input, output, key, iv, control_word, count); |
| 296 | |
Herbert Xu | 46d8c4b | 2018-07-13 16:12:32 +0800 | [diff] [blame] | 297 | count -= initial; |
| 298 | |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 299 | if (initial) |
| 300 | asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ |
| 301 | : "+S" (input), "+D" (output), "+a" (iv) |
Herbert Xu | c054a07 | 2010-11-04 14:38:39 -0400 | [diff] [blame] | 302 | : "d" (control_word), "b" (key), "c" (initial)); |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 303 | |
| 304 | asm volatile (".byte 0xf3,0x0f,0xa7,0xd0" /* rep xcryptcbc */ |
Herbert Xu | 28e8c3a | 2005-07-06 13:52:43 -0700 | [diff] [blame] | 305 | : "+S" (input), "+D" (output), "+a" (iv) |
Herbert Xu | 46d8c4b | 2018-07-13 16:12:32 +0800 | [diff] [blame] | 306 | : "d" (control_word), "b" (key), "c" (count)); |
Herbert Xu | 476df25 | 2005-07-06 13:54:09 -0700 | [diff] [blame] | 307 | return iv; |
Herbert Xu | 28e8c3a | 2005-07-06 13:52:43 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Ard Biesheuvel | 724ecd3 | 2019-07-02 21:41:20 +0200 | [diff] [blame] | 310 | static void padlock_aes_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 312 | struct aes_ctx *ctx = aes_ctx(tfm); |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 313 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 314 | padlock_reset_key(&ctx->cword.encrypt); |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 315 | ecb_crypt(in, out, ctx->E, &ctx->cword.encrypt, 1); |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 316 | padlock_store_cword(&ctx->cword.encrypt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
Ard Biesheuvel | 724ecd3 | 2019-07-02 21:41:20 +0200 | [diff] [blame] | 319 | static void padlock_aes_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | { |
Herbert Xu | 6c2bb98 | 2006-05-16 22:09:29 +1000 | [diff] [blame] | 321 | struct aes_ctx *ctx = aes_ctx(tfm); |
Suresh Siddha | e491401 | 2008-08-13 22:02:26 +1000 | [diff] [blame] | 322 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 323 | padlock_reset_key(&ctx->cword.encrypt); |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 324 | ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1); |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 325 | padlock_store_cword(&ctx->cword.encrypt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | static struct crypto_alg aes_alg = { |
| 329 | .cra_name = "aes", |
Herbert Xu | c8a19c9 | 2005-11-05 18:06:26 +1100 | [diff] [blame] | 330 | .cra_driver_name = "aes-padlock", |
Michal Ludvig | ccc17c3 | 2006-07-15 10:23:49 +1000 | [diff] [blame] | 331 | .cra_priority = PADLOCK_CRA_PRIORITY, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | .cra_flags = CRYPTO_ALG_TYPE_CIPHER, |
| 333 | .cra_blocksize = AES_BLOCK_SIZE, |
Herbert Xu | fbdae9f | 2005-07-06 13:53:29 -0700 | [diff] [blame] | 334 | .cra_ctxsize = sizeof(struct aes_ctx), |
Herbert Xu | 6789b2d | 2005-07-06 13:52:27 -0700 | [diff] [blame] | 335 | .cra_alignmask = PADLOCK_ALIGNMENT - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | .cra_module = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | .cra_u = { |
| 338 | .cipher = { |
| 339 | .cia_min_keysize = AES_MIN_KEY_SIZE, |
| 340 | .cia_max_keysize = AES_MAX_KEY_SIZE, |
| 341 | .cia_setkey = aes_set_key, |
Ard Biesheuvel | 724ecd3 | 2019-07-02 21:41:20 +0200 | [diff] [blame] | 342 | .cia_encrypt = padlock_aes_encrypt, |
| 343 | .cia_decrypt = padlock_aes_decrypt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | } |
| 346 | }; |
| 347 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 348 | static int ecb_aes_encrypt(struct skcipher_request *req) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 349 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 350 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 351 | struct aes_ctx *ctx = skcipher_aes_ctx(tfm); |
| 352 | struct skcipher_walk walk; |
| 353 | unsigned int nbytes; |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 354 | int err; |
| 355 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 356 | padlock_reset_key(&ctx->cword.encrypt); |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 357 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 358 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 359 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 360 | while ((nbytes = walk.nbytes) != 0) { |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 361 | padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr, |
| 362 | ctx->E, &ctx->cword.encrypt, |
| 363 | nbytes / AES_BLOCK_SIZE); |
| 364 | nbytes &= AES_BLOCK_SIZE - 1; |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 365 | err = skcipher_walk_done(&walk, nbytes); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 366 | } |
| 367 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 368 | padlock_store_cword(&ctx->cword.encrypt); |
| 369 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 370 | return err; |
| 371 | } |
| 372 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 373 | static int ecb_aes_decrypt(struct skcipher_request *req) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 374 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 375 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 376 | struct aes_ctx *ctx = skcipher_aes_ctx(tfm); |
| 377 | struct skcipher_walk walk; |
| 378 | unsigned int nbytes; |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 379 | int err; |
| 380 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 381 | padlock_reset_key(&ctx->cword.decrypt); |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 382 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 383 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 384 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 385 | while ((nbytes = walk.nbytes) != 0) { |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 386 | padlock_xcrypt_ecb(walk.src.virt.addr, walk.dst.virt.addr, |
| 387 | ctx->D, &ctx->cword.decrypt, |
| 388 | nbytes / AES_BLOCK_SIZE); |
| 389 | nbytes &= AES_BLOCK_SIZE - 1; |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 390 | err = skcipher_walk_done(&walk, nbytes); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 391 | } |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 392 | |
| 393 | padlock_store_cword(&ctx->cword.encrypt); |
| 394 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 395 | return err; |
| 396 | } |
| 397 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 398 | static struct skcipher_alg ecb_aes_alg = { |
| 399 | .base.cra_name = "ecb(aes)", |
| 400 | .base.cra_driver_name = "ecb-aes-padlock", |
| 401 | .base.cra_priority = PADLOCK_COMPOSITE_PRIORITY, |
| 402 | .base.cra_blocksize = AES_BLOCK_SIZE, |
| 403 | .base.cra_ctxsize = sizeof(struct aes_ctx), |
| 404 | .base.cra_alignmask = PADLOCK_ALIGNMENT - 1, |
| 405 | .base.cra_module = THIS_MODULE, |
| 406 | .min_keysize = AES_MIN_KEY_SIZE, |
| 407 | .max_keysize = AES_MAX_KEY_SIZE, |
| 408 | .setkey = aes_set_key_skcipher, |
| 409 | .encrypt = ecb_aes_encrypt, |
| 410 | .decrypt = ecb_aes_decrypt, |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 411 | }; |
| 412 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 413 | static int cbc_aes_encrypt(struct skcipher_request *req) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 414 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 415 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 416 | struct aes_ctx *ctx = skcipher_aes_ctx(tfm); |
| 417 | struct skcipher_walk walk; |
| 418 | unsigned int nbytes; |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 419 | int err; |
| 420 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 421 | padlock_reset_key(&ctx->cword.encrypt); |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 422 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 423 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 424 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 425 | while ((nbytes = walk.nbytes) != 0) { |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 426 | u8 *iv = padlock_xcrypt_cbc(walk.src.virt.addr, |
| 427 | walk.dst.virt.addr, ctx->E, |
| 428 | walk.iv, &ctx->cword.encrypt, |
| 429 | nbytes / AES_BLOCK_SIZE); |
| 430 | memcpy(walk.iv, iv, AES_BLOCK_SIZE); |
| 431 | nbytes &= AES_BLOCK_SIZE - 1; |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 432 | err = skcipher_walk_done(&walk, nbytes); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 433 | } |
| 434 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 435 | padlock_store_cword(&ctx->cword.decrypt); |
| 436 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 437 | return err; |
| 438 | } |
| 439 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 440 | static int cbc_aes_decrypt(struct skcipher_request *req) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 441 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 442 | struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); |
| 443 | struct aes_ctx *ctx = skcipher_aes_ctx(tfm); |
| 444 | struct skcipher_walk walk; |
| 445 | unsigned int nbytes; |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 446 | int err; |
| 447 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 448 | padlock_reset_key(&ctx->cword.encrypt); |
Herbert Xu | 866cd90 | 2007-12-27 00:04:44 +1100 | [diff] [blame] | 449 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 450 | err = skcipher_walk_virt(&walk, req, false); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 451 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 452 | while ((nbytes = walk.nbytes) != 0) { |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 453 | padlock_xcrypt_cbc(walk.src.virt.addr, walk.dst.virt.addr, |
| 454 | ctx->D, walk.iv, &ctx->cword.decrypt, |
| 455 | nbytes / AES_BLOCK_SIZE); |
| 456 | nbytes &= AES_BLOCK_SIZE - 1; |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 457 | err = skcipher_walk_done(&walk, nbytes); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 458 | } |
| 459 | |
Herbert Xu | 420a4b2 | 2008-08-31 15:58:45 +1000 | [diff] [blame] | 460 | padlock_store_cword(&ctx->cword.encrypt); |
| 461 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 462 | return err; |
| 463 | } |
| 464 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 465 | static struct skcipher_alg cbc_aes_alg = { |
| 466 | .base.cra_name = "cbc(aes)", |
| 467 | .base.cra_driver_name = "cbc-aes-padlock", |
| 468 | .base.cra_priority = PADLOCK_COMPOSITE_PRIORITY, |
| 469 | .base.cra_blocksize = AES_BLOCK_SIZE, |
| 470 | .base.cra_ctxsize = sizeof(struct aes_ctx), |
| 471 | .base.cra_alignmask = PADLOCK_ALIGNMENT - 1, |
| 472 | .base.cra_module = THIS_MODULE, |
| 473 | .min_keysize = AES_MIN_KEY_SIZE, |
| 474 | .max_keysize = AES_MAX_KEY_SIZE, |
| 475 | .ivsize = AES_BLOCK_SIZE, |
| 476 | .setkey = aes_set_key_skcipher, |
| 477 | .encrypt = cbc_aes_encrypt, |
| 478 | .decrypt = cbc_aes_decrypt, |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 479 | }; |
| 480 | |
Arvind Yadav | d989364 | 2017-08-25 23:53:42 +0530 | [diff] [blame] | 481 | static const struct x86_cpu_id padlock_cpu_id[] = { |
Andi Kleen | 3bd391f | 2012-01-26 00:09:06 +0100 | [diff] [blame] | 482 | X86_FEATURE_MATCH(X86_FEATURE_XCRYPT), |
| 483 | {} |
| 484 | }; |
| 485 | MODULE_DEVICE_TABLE(x86cpu, padlock_cpu_id); |
| 486 | |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 487 | static int __init padlock_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | { |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 489 | int ret; |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 490 | struct cpuinfo_x86 *c = &cpu_data(0); |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 491 | |
Andi Kleen | 3bd391f | 2012-01-26 00:09:06 +0100 | [diff] [blame] | 492 | if (!x86_match_cpu(padlock_cpu_id)) |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 493 | return -ENODEV; |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 494 | |
Borislav Petkov | 362f924 | 2015-12-07 10:39:41 +0100 | [diff] [blame] | 495 | if (!boot_cpu_has(X86_FEATURE_XCRYPT_EN)) { |
Jeremy Katz | b43e726 | 2008-07-03 19:03:31 +0800 | [diff] [blame] | 496 | printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n"); |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 497 | return -ENODEV; |
| 498 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 500 | if ((ret = crypto_register_alg(&aes_alg)) != 0) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 501 | goto aes_err; |
| 502 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 503 | if ((ret = crypto_register_skcipher(&ecb_aes_alg)) != 0) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 504 | goto ecb_aes_err; |
| 505 | |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 506 | if ((ret = crypto_register_skcipher(&cbc_aes_alg)) != 0) |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 507 | goto cbc_aes_err; |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 508 | |
| 509 | printk(KERN_NOTICE PFX "Using VIA PadLock ACE for AES algorithm.\n"); |
| 510 | |
Jia Zhang | b399151 | 2018-01-01 09:52:10 +0800 | [diff] [blame] | 511 | if (c->x86 == 6 && c->x86_model == 15 && c->x86_stepping == 2) { |
Chuck Ebbert | 8d8409f | 2009-06-18 19:31:09 +0800 | [diff] [blame] | 512 | ecb_fetch_blocks = MAX_ECB_FETCH_BLOCKS; |
| 513 | cbc_fetch_blocks = MAX_CBC_FETCH_BLOCKS; |
Chuck Ebbert | a76c1c2 | 2009-06-18 19:24:10 +0800 | [diff] [blame] | 514 | printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n"); |
| 515 | } |
| 516 | |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 517 | out: |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 518 | return ret; |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 519 | |
| 520 | cbc_aes_err: |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 521 | crypto_unregister_skcipher(&ecb_aes_alg); |
Herbert Xu | 28ce728 | 2006-08-21 21:38:42 +1000 | [diff] [blame] | 522 | ecb_aes_err: |
| 523 | crypto_unregister_alg(&aes_alg); |
| 524 | aes_err: |
| 525 | printk(KERN_ERR PFX "VIA PadLock AES initialization failed.\n"); |
| 526 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 529 | static void __exit padlock_fini(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Eric Biggers | 713b2e7 | 2019-10-12 21:17:41 -0700 | [diff] [blame] | 531 | crypto_unregister_skcipher(&cbc_aes_alg); |
| 532 | crypto_unregister_skcipher(&ecb_aes_alg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | crypto_unregister_alg(&aes_alg); |
| 534 | } |
Michal Ludvig | 1191f0a | 2006-08-06 22:46:20 +1000 | [diff] [blame] | 535 | |
| 536 | module_init(padlock_init); |
| 537 | module_exit(padlock_fini); |
| 538 | |
| 539 | MODULE_DESCRIPTION("VIA PadLock AES algorithm support"); |
| 540 | MODULE_LICENSE("GPL"); |
| 541 | MODULE_AUTHOR("Michal Ludvig"); |
| 542 | |
Kees Cook | 5d26a10 | 2014-11-20 17:05:53 -0800 | [diff] [blame] | 543 | MODULE_ALIAS_CRYPTO("aes"); |