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 int padlock_sha_export(struct shash_desc
*desc
, void *out
)
62 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
64 return crypto_shash_export(&dctx
->fallback
, out
);
67 static int padlock_sha_import(struct shash_desc
*desc
, const void *in
)
69 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
70 struct padlock_sha_ctx
*ctx
= crypto_shash_ctx(desc
->tfm
);
72 dctx
->fallback
.tfm
= ctx
->fallback
;
73 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
74 return crypto_shash_import(&dctx
->fallback
, in
);
77 static inline void padlock_output_block(uint32_t *src
,
78 uint32_t *dst
, size_t count
)
81 *dst
++ = swab32(*src
++);
84 static int padlock_sha1_finup(struct shash_desc
*desc
, const u8
*in
,
85 unsigned int count
, u8
*out
)
87 /* We can't store directly to *out as it may be unaligned. */
88 /* BTW Don't reduce the buffer size below 128 Bytes!
89 * PadLock microcode needs it that big. */
90 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
91 ((aligned(STACK_ALIGN
)));
92 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
93 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
94 struct sha1_state state
;
96 unsigned int leftover
;
100 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
101 err
= crypto_shash_export(&dctx
->fallback
, &state
);
105 if (state
.count
+ count
> ULONG_MAX
)
106 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
108 leftover
= ((state
.count
- 1) & (SHA1_BLOCK_SIZE
- 1)) + 1;
109 space
= SHA1_BLOCK_SIZE
- leftover
;
112 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
113 crypto_shash_export(&dctx
->fallback
, &state
);
119 memcpy(state
.buffer
+ leftover
, in
, count
);
122 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
126 memcpy(result
, &state
.state
, SHA1_DIGEST_SIZE
);
128 /* prevent taking the spurious DNA fault with padlock. */
129 ts_state
= irq_ts_save();
130 asm volatile (".byte 0xf3,0x0f,0xa6,0xc8" /* rep xsha1 */
132 : "c"((unsigned long)state
.count
+ count
), \
133 "a"((unsigned long)state
.count
), \
134 "S"(in
), "D"(result
));
135 irq_ts_restore(ts_state
);
137 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 5);
143 static int padlock_sha1_final(struct shash_desc
*desc
, u8
*out
)
147 return padlock_sha1_finup(desc
, buf
, 0, out
);
150 static int padlock_sha256_finup(struct shash_desc
*desc
, const u8
*in
,
151 unsigned int count
, u8
*out
)
153 /* We can't store directly to *out as it may be unaligned. */
154 /* BTW Don't reduce the buffer size below 128 Bytes!
155 * PadLock microcode needs it that big. */
156 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
157 ((aligned(STACK_ALIGN
)));
158 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
159 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
160 struct sha256_state state
;
162 unsigned int leftover
;
166 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
167 err
= crypto_shash_export(&dctx
->fallback
, &state
);
171 if (state
.count
+ count
> ULONG_MAX
)
172 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
174 leftover
= ((state
.count
- 1) & (SHA256_BLOCK_SIZE
- 1)) + 1;
175 space
= SHA256_BLOCK_SIZE
- leftover
;
178 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
179 crypto_shash_export(&dctx
->fallback
, &state
);
185 memcpy(state
.buf
+ leftover
, in
, count
);
188 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
192 memcpy(result
, &state
.state
, SHA256_DIGEST_SIZE
);
194 /* prevent taking the spurious DNA fault with padlock. */
195 ts_state
= irq_ts_save();
196 asm volatile (".byte 0xf3,0x0f,0xa6,0xd0" /* rep xsha256 */
198 : "c"((unsigned long)state
.count
+ count
), \
199 "a"((unsigned long)state
.count
), \
200 "S"(in
), "D"(result
));
201 irq_ts_restore(ts_state
);
203 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 8);
209 static int padlock_sha256_final(struct shash_desc
*desc
, u8
*out
)
213 return padlock_sha256_finup(desc
, buf
, 0, out
);
216 static int padlock_cra_init(struct crypto_tfm
*tfm
)
218 struct crypto_shash
*hash
= __crypto_shash_cast(tfm
);
219 const char *fallback_driver_name
= tfm
->__crt_alg
->cra_name
;
220 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
221 struct crypto_shash
*fallback_tfm
;
224 /* Allocate a fallback and abort if it failed. */
225 fallback_tfm
= crypto_alloc_shash(fallback_driver_name
, 0,
226 CRYPTO_ALG_NEED_FALLBACK
);
227 if (IS_ERR(fallback_tfm
)) {
228 printk(KERN_WARNING PFX
"Fallback driver '%s' could not be loaded!\n",
229 fallback_driver_name
);
230 err
= PTR_ERR(fallback_tfm
);
234 ctx
->fallback
= fallback_tfm
;
235 hash
->descsize
+= crypto_shash_descsize(fallback_tfm
);
242 static void padlock_cra_exit(struct crypto_tfm
*tfm
)
244 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
246 crypto_free_shash(ctx
->fallback
);
249 static struct shash_alg sha1_alg
= {
250 .digestsize
= SHA1_DIGEST_SIZE
,
251 .init
= padlock_sha_init
,
252 .update
= padlock_sha_update
,
253 .finup
= padlock_sha1_finup
,
254 .final
= padlock_sha1_final
,
255 .export
= padlock_sha_export
,
256 .import
= padlock_sha_import
,
257 .descsize
= sizeof(struct padlock_sha_desc
),
258 .statesize
= sizeof(struct sha1_state
),
261 .cra_driver_name
= "sha1-padlock",
262 .cra_priority
= PADLOCK_CRA_PRIORITY
,
263 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
264 CRYPTO_ALG_NEED_FALLBACK
,
265 .cra_blocksize
= SHA1_BLOCK_SIZE
,
266 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
267 .cra_module
= THIS_MODULE
,
268 .cra_init
= padlock_cra_init
,
269 .cra_exit
= padlock_cra_exit
,
273 static struct shash_alg sha256_alg
= {
274 .digestsize
= SHA256_DIGEST_SIZE
,
275 .init
= padlock_sha_init
,
276 .update
= padlock_sha_update
,
277 .finup
= padlock_sha256_finup
,
278 .final
= padlock_sha256_final
,
279 .export
= padlock_sha_export
,
280 .import
= padlock_sha_import
,
281 .descsize
= sizeof(struct padlock_sha_desc
),
282 .statesize
= sizeof(struct sha256_state
),
284 .cra_name
= "sha256",
285 .cra_driver_name
= "sha256-padlock",
286 .cra_priority
= PADLOCK_CRA_PRIORITY
,
287 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
288 CRYPTO_ALG_NEED_FALLBACK
,
289 .cra_blocksize
= SHA256_BLOCK_SIZE
,
290 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
291 .cra_module
= THIS_MODULE
,
292 .cra_init
= padlock_cra_init
,
293 .cra_exit
= padlock_cra_exit
,
297 static int __init
padlock_init(void)
302 printk(KERN_NOTICE PFX
"VIA PadLock Hash Engine not detected.\n");
306 if (!cpu_has_phe_enabled
) {
307 printk(KERN_NOTICE PFX
"VIA PadLock detected, but not enabled. Hmm, strange...\n");
311 rc
= crypto_register_shash(&sha1_alg
);
315 rc
= crypto_register_shash(&sha256_alg
);
319 printk(KERN_NOTICE PFX
"Using VIA PadLock ACE for SHA1/SHA256 algorithms.\n");
324 crypto_unregister_shash(&sha1_alg
);
326 printk(KERN_ERR PFX
"VIA PadLock SHA1/SHA256 initialization failed.\n");
330 static void __exit
padlock_fini(void)
332 crypto_unregister_shash(&sha1_alg
);
333 crypto_unregister_shash(&sha256_alg
);
336 module_init(padlock_init
);
337 module_exit(padlock_fini
);
339 MODULE_DESCRIPTION("VIA PadLock SHA1/SHA256 algorithms support.");
340 MODULE_LICENSE("GPL");
341 MODULE_AUTHOR("Michal Ludvig");
343 MODULE_ALIAS("sha1-all");
344 MODULE_ALIAS("sha256-all");
345 MODULE_ALIAS("sha1-padlock");
346 MODULE_ALIAS("sha256-padlock");