4 * Support for VIA PadLock hardware crypto engine.
6 * Copyright (c) 2006 Michal Ludvig <michal@logix.cz>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
15 #include <crypto/internal/hash.h>
16 #include <crypto/sha.h>
17 #include <linux/err.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/interrupt.h>
22 #include <linux/kernel.h>
23 #include <linux/scatterlist.h>
28 #define STACK_ALIGN 16
33 struct padlock_sha_desc
{
34 struct shash_desc fallback
;
37 struct padlock_sha_ctx
{
38 struct crypto_shash
*fallback
;
41 static int padlock_sha_init(struct shash_desc
*desc
)
43 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
44 struct padlock_sha_ctx
*ctx
= crypto_shash_ctx(desc
->tfm
);
46 dctx
->fallback
.tfm
= ctx
->fallback
;
47 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
48 return crypto_shash_init(&dctx
->fallback
);
51 static int padlock_sha_update(struct shash_desc
*desc
,
52 const u8
*data
, unsigned int length
)
54 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
56 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
57 return crypto_shash_update(&dctx
->fallback
, data
, length
);
60 static inline void padlock_output_block(uint32_t *src
,
61 uint32_t *dst
, size_t count
)
64 *dst
++ = swab32(*src
++);
67 static int padlock_sha1_finup(struct shash_desc
*desc
, const u8
*in
,
68 unsigned int count
, u8
*out
)
70 /* We can't store directly to *out as it may be unaligned. */
71 /* BTW Don't reduce the buffer size below 128 Bytes!
72 * PadLock microcode needs it that big. */
73 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
74 ((aligned(STACK_ALIGN
)));
75 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
76 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
77 struct sha1_state state
;
79 unsigned int leftover
;
83 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
84 err
= crypto_shash_export(&dctx
->fallback
, &state
);
88 if (state
.count
+ count
> ULONG_MAX
)
89 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
91 leftover
= ((state
.count
- 1) & (SHA1_BLOCK_SIZE
- 1)) + 1;
92 space
= SHA1_BLOCK_SIZE
- leftover
;
95 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
96 crypto_shash_export(&dctx
->fallback
, &state
);
102 memcpy(state
.buffer
+ leftover
, in
, count
);
105 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
109 memcpy(result
, &state
.state
, SHA1_DIGEST_SIZE
);
111 /* prevent taking the spurious DNA fault with padlock. */
112 ts_state
= irq_ts_save();
113 asm volatile (".byte 0xf3,0x0f,0xa6,0xc8" /* rep xsha1 */
115 : "c"((unsigned long)state
.count
+ count
), \
116 "a"((unsigned long)state
.count
), \
117 "S"(in
), "D"(result
));
118 irq_ts_restore(ts_state
);
120 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 5);
126 static int padlock_sha1_final(struct shash_desc
*desc
, u8
*out
)
130 return padlock_sha1_finup(desc
, buf
, 0, out
);
133 static int padlock_sha256_finup(struct shash_desc
*desc
, const u8
*in
,
134 unsigned int count
, u8
*out
)
136 /* We can't store directly to *out as it may be unaligned. */
137 /* BTW Don't reduce the buffer size below 128 Bytes!
138 * PadLock microcode needs it that big. */
139 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
140 ((aligned(STACK_ALIGN
)));
141 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
142 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
143 struct sha256_state state
;
145 unsigned int leftover
;
149 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
150 err
= crypto_shash_export(&dctx
->fallback
, &state
);
154 if (state
.count
+ count
> ULONG_MAX
)
155 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
157 leftover
= ((state
.count
- 1) & (SHA256_BLOCK_SIZE
- 1)) + 1;
158 space
= SHA256_BLOCK_SIZE
- leftover
;
161 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
162 crypto_shash_export(&dctx
->fallback
, &state
);
168 memcpy(state
.buf
+ leftover
, in
, count
);
171 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
175 memcpy(result
, &state
.state
, SHA256_DIGEST_SIZE
);
177 /* prevent taking the spurious DNA fault with padlock. */
178 ts_state
= irq_ts_save();
179 asm volatile (".byte 0xf3,0x0f,0xa6,0xd0" /* rep xsha256 */
181 : "c"((unsigned long)state
.count
+ count
), \
182 "a"((unsigned long)state
.count
), \
183 "S"(in
), "D"(result
));
184 irq_ts_restore(ts_state
);
186 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 8);
192 static int padlock_sha256_final(struct shash_desc
*desc
, u8
*out
)
196 return padlock_sha256_finup(desc
, buf
, 0, out
);
199 static int padlock_cra_init(struct crypto_tfm
*tfm
)
201 struct crypto_shash
*hash
= __crypto_shash_cast(tfm
);
202 const char *fallback_driver_name
= tfm
->__crt_alg
->cra_name
;
203 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
204 struct crypto_shash
*fallback_tfm
;
207 /* Allocate a fallback and abort if it failed. */
208 fallback_tfm
= crypto_alloc_shash(fallback_driver_name
, 0,
209 CRYPTO_ALG_NEED_FALLBACK
);
210 if (IS_ERR(fallback_tfm
)) {
211 printk(KERN_WARNING PFX
"Fallback driver '%s' could not be loaded!\n",
212 fallback_driver_name
);
213 err
= PTR_ERR(fallback_tfm
);
217 ctx
->fallback
= fallback_tfm
;
218 hash
->descsize
+= crypto_shash_descsize(fallback_tfm
);
225 static void padlock_cra_exit(struct crypto_tfm
*tfm
)
227 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
229 crypto_free_shash(ctx
->fallback
);
232 static struct shash_alg sha1_alg
= {
233 .digestsize
= SHA1_DIGEST_SIZE
,
234 .init
= padlock_sha_init
,
235 .update
= padlock_sha_update
,
236 .finup
= padlock_sha1_finup
,
237 .final
= padlock_sha1_final
,
238 .descsize
= sizeof(struct padlock_sha_desc
),
241 .cra_driver_name
= "sha1-padlock",
242 .cra_priority
= PADLOCK_CRA_PRIORITY
,
243 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
244 CRYPTO_ALG_NEED_FALLBACK
,
245 .cra_blocksize
= SHA1_BLOCK_SIZE
,
246 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
247 .cra_module
= THIS_MODULE
,
248 .cra_init
= padlock_cra_init
,
249 .cra_exit
= padlock_cra_exit
,
253 static struct shash_alg sha256_alg
= {
254 .digestsize
= SHA256_DIGEST_SIZE
,
255 .init
= padlock_sha_init
,
256 .update
= padlock_sha_update
,
257 .finup
= padlock_sha256_finup
,
258 .final
= padlock_sha256_final
,
259 .descsize
= sizeof(struct padlock_sha_desc
),
261 .cra_name
= "sha256",
262 .cra_driver_name
= "sha256-padlock",
263 .cra_priority
= PADLOCK_CRA_PRIORITY
,
264 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
265 CRYPTO_ALG_NEED_FALLBACK
,
266 .cra_blocksize
= SHA256_BLOCK_SIZE
,
267 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
268 .cra_module
= THIS_MODULE
,
269 .cra_init
= padlock_cra_init
,
270 .cra_exit
= padlock_cra_exit
,
274 static int __init
padlock_init(void)
279 printk(KERN_NOTICE PFX
"VIA PadLock Hash Engine not detected.\n");
283 if (!cpu_has_phe_enabled
) {
284 printk(KERN_NOTICE PFX
"VIA PadLock detected, but not enabled. Hmm, strange...\n");
288 rc
= crypto_register_shash(&sha1_alg
);
292 rc
= crypto_register_shash(&sha256_alg
);
296 printk(KERN_NOTICE PFX
"Using VIA PadLock ACE for SHA1/SHA256 algorithms.\n");
301 crypto_unregister_shash(&sha1_alg
);
303 printk(KERN_ERR PFX
"VIA PadLock SHA1/SHA256 initialization failed.\n");
307 static void __exit
padlock_fini(void)
309 crypto_unregister_shash(&sha1_alg
);
310 crypto_unregister_shash(&sha256_alg
);
313 module_init(padlock_init
);
314 module_exit(padlock_fini
);
316 MODULE_DESCRIPTION("VIA PadLock SHA1/SHA256 algorithms support.");
317 MODULE_LICENSE("GPL");
318 MODULE_AUTHOR("Michal Ludvig");
320 MODULE_ALIAS("sha1-all");
321 MODULE_ALIAS("sha256-all");
322 MODULE_ALIAS("sha1-padlock");
323 MODULE_ALIAS("sha256-padlock");