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/padlock.h>
17 #include <crypto/sha.h>
18 #include <linux/err.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/errno.h>
22 #include <linux/interrupt.h>
23 #include <linux/kernel.h>
24 #include <linux/scatterlist.h>
25 #include <asm/cpu_device_id.h>
26 #include <asm/fpu/api.h>
28 struct padlock_sha_desc
{
29 struct shash_desc fallback
;
32 struct padlock_sha_ctx
{
33 struct crypto_shash
*fallback
;
36 static int padlock_sha_init(struct shash_desc
*desc
)
38 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
39 struct padlock_sha_ctx
*ctx
= crypto_shash_ctx(desc
->tfm
);
41 dctx
->fallback
.tfm
= ctx
->fallback
;
42 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
43 return crypto_shash_init(&dctx
->fallback
);
46 static int padlock_sha_update(struct shash_desc
*desc
,
47 const u8
*data
, unsigned int length
)
49 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
51 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
52 return crypto_shash_update(&dctx
->fallback
, data
, length
);
55 static int padlock_sha_export(struct shash_desc
*desc
, void *out
)
57 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
59 return crypto_shash_export(&dctx
->fallback
, out
);
62 static int padlock_sha_import(struct shash_desc
*desc
, const void *in
)
64 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
65 struct padlock_sha_ctx
*ctx
= crypto_shash_ctx(desc
->tfm
);
67 dctx
->fallback
.tfm
= ctx
->fallback
;
68 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
69 return crypto_shash_import(&dctx
->fallback
, in
);
72 static inline void padlock_output_block(uint32_t *src
,
73 uint32_t *dst
, size_t count
)
76 *dst
++ = swab32(*src
++);
79 static int padlock_sha1_finup(struct shash_desc
*desc
, const u8
*in
,
80 unsigned int count
, u8
*out
)
82 /* We can't store directly to *out as it may be unaligned. */
83 /* BTW Don't reduce the buffer size below 128 Bytes!
84 * PadLock microcode needs it that big. */
85 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
86 ((aligned(STACK_ALIGN
)));
87 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
88 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
89 struct sha1_state state
;
91 unsigned int leftover
;
94 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
95 err
= crypto_shash_export(&dctx
->fallback
, &state
);
99 if (state
.count
+ count
> ULONG_MAX
)
100 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
102 leftover
= ((state
.count
- 1) & (SHA1_BLOCK_SIZE
- 1)) + 1;
103 space
= SHA1_BLOCK_SIZE
- leftover
;
106 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
107 crypto_shash_export(&dctx
->fallback
, &state
);
113 memcpy(state
.buffer
+ leftover
, in
, count
);
116 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
120 memcpy(result
, &state
.state
, SHA1_DIGEST_SIZE
);
122 asm volatile (".byte 0xf3,0x0f,0xa6,0xc8" /* rep xsha1 */
124 : "c"((unsigned long)state
.count
+ count
), \
125 "a"((unsigned long)state
.count
), \
126 "S"(in
), "D"(result
));
128 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 5);
134 static int padlock_sha1_final(struct shash_desc
*desc
, u8
*out
)
138 return padlock_sha1_finup(desc
, buf
, 0, out
);
141 static int padlock_sha256_finup(struct shash_desc
*desc
, const u8
*in
,
142 unsigned int count
, u8
*out
)
144 /* We can't store directly to *out as it may be unaligned. */
145 /* BTW Don't reduce the buffer size below 128 Bytes!
146 * PadLock microcode needs it that big. */
147 char buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
148 ((aligned(STACK_ALIGN
)));
149 char *result
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
150 struct padlock_sha_desc
*dctx
= shash_desc_ctx(desc
);
151 struct sha256_state state
;
153 unsigned int leftover
;
156 dctx
->fallback
.flags
= desc
->flags
& CRYPTO_TFM_REQ_MAY_SLEEP
;
157 err
= crypto_shash_export(&dctx
->fallback
, &state
);
161 if (state
.count
+ count
> ULONG_MAX
)
162 return crypto_shash_finup(&dctx
->fallback
, in
, count
, out
);
164 leftover
= ((state
.count
- 1) & (SHA256_BLOCK_SIZE
- 1)) + 1;
165 space
= SHA256_BLOCK_SIZE
- leftover
;
168 err
= crypto_shash_update(&dctx
->fallback
, in
, space
) ?:
169 crypto_shash_export(&dctx
->fallback
, &state
);
175 memcpy(state
.buf
+ leftover
, in
, count
);
178 state
.count
&= ~(SHA1_BLOCK_SIZE
- 1);
182 memcpy(result
, &state
.state
, SHA256_DIGEST_SIZE
);
184 asm volatile (".byte 0xf3,0x0f,0xa6,0xd0" /* rep xsha256 */
186 : "c"((unsigned long)state
.count
+ count
), \
187 "a"((unsigned long)state
.count
), \
188 "S"(in
), "D"(result
));
190 padlock_output_block((uint32_t *)result
, (uint32_t *)out
, 8);
196 static int padlock_sha256_final(struct shash_desc
*desc
, u8
*out
)
200 return padlock_sha256_finup(desc
, buf
, 0, out
);
203 static int padlock_cra_init(struct crypto_tfm
*tfm
)
205 struct crypto_shash
*hash
= __crypto_shash_cast(tfm
);
206 const char *fallback_driver_name
= crypto_tfm_alg_name(tfm
);
207 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
208 struct crypto_shash
*fallback_tfm
;
211 /* Allocate a fallback and abort if it failed. */
212 fallback_tfm
= crypto_alloc_shash(fallback_driver_name
, 0,
213 CRYPTO_ALG_NEED_FALLBACK
);
214 if (IS_ERR(fallback_tfm
)) {
215 printk(KERN_WARNING PFX
"Fallback driver '%s' could not be loaded!\n",
216 fallback_driver_name
);
217 err
= PTR_ERR(fallback_tfm
);
221 ctx
->fallback
= fallback_tfm
;
222 hash
->descsize
+= crypto_shash_descsize(fallback_tfm
);
229 static void padlock_cra_exit(struct crypto_tfm
*tfm
)
231 struct padlock_sha_ctx
*ctx
= crypto_tfm_ctx(tfm
);
233 crypto_free_shash(ctx
->fallback
);
236 static struct shash_alg sha1_alg
= {
237 .digestsize
= SHA1_DIGEST_SIZE
,
238 .init
= padlock_sha_init
,
239 .update
= padlock_sha_update
,
240 .finup
= padlock_sha1_finup
,
241 .final
= padlock_sha1_final
,
242 .export
= padlock_sha_export
,
243 .import
= padlock_sha_import
,
244 .descsize
= sizeof(struct padlock_sha_desc
),
245 .statesize
= sizeof(struct sha1_state
),
248 .cra_driver_name
= "sha1-padlock",
249 .cra_priority
= PADLOCK_CRA_PRIORITY
,
250 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
251 CRYPTO_ALG_NEED_FALLBACK
,
252 .cra_blocksize
= SHA1_BLOCK_SIZE
,
253 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
254 .cra_module
= THIS_MODULE
,
255 .cra_init
= padlock_cra_init
,
256 .cra_exit
= padlock_cra_exit
,
260 static struct shash_alg sha256_alg
= {
261 .digestsize
= SHA256_DIGEST_SIZE
,
262 .init
= padlock_sha_init
,
263 .update
= padlock_sha_update
,
264 .finup
= padlock_sha256_finup
,
265 .final
= padlock_sha256_final
,
266 .export
= padlock_sha_export
,
267 .import
= padlock_sha_import
,
268 .descsize
= sizeof(struct padlock_sha_desc
),
269 .statesize
= sizeof(struct sha256_state
),
271 .cra_name
= "sha256",
272 .cra_driver_name
= "sha256-padlock",
273 .cra_priority
= PADLOCK_CRA_PRIORITY
,
274 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
|
275 CRYPTO_ALG_NEED_FALLBACK
,
276 .cra_blocksize
= SHA256_BLOCK_SIZE
,
277 .cra_ctxsize
= sizeof(struct padlock_sha_ctx
),
278 .cra_module
= THIS_MODULE
,
279 .cra_init
= padlock_cra_init
,
280 .cra_exit
= padlock_cra_exit
,
284 /* Add two shash_alg instance for hardware-implemented *
285 * multiple-parts hash supported by VIA Nano Processor.*/
286 static int padlock_sha1_init_nano(struct shash_desc
*desc
)
288 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
290 *sctx
= (struct sha1_state
){
291 .state
= { SHA1_H0
, SHA1_H1
, SHA1_H2
, SHA1_H3
, SHA1_H4
},
297 static int padlock_sha1_update_nano(struct shash_desc
*desc
,
298 const u8
*data
, unsigned int len
)
300 struct sha1_state
*sctx
= shash_desc_ctx(desc
);
301 unsigned int partial
, done
;
303 /*The PHE require the out buffer must 128 bytes and 16-bytes aligned*/
304 u8 buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
305 ((aligned(STACK_ALIGN
)));
306 u8
*dst
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
308 partial
= sctx
->count
& 0x3f;
312 memcpy(dst
, (u8
*)(sctx
->state
), SHA1_DIGEST_SIZE
);
314 if ((partial
+ len
) >= SHA1_BLOCK_SIZE
) {
316 /* Append the bytes in state's buffer to a block to handle */
319 memcpy(sctx
->buffer
+ partial
, data
,
320 done
+ SHA1_BLOCK_SIZE
);
322 asm volatile (".byte 0xf3,0x0f,0xa6,0xc8"
323 : "+S"(src
), "+D"(dst
) \
324 : "a"((long)-1), "c"((unsigned long)1));
325 done
+= SHA1_BLOCK_SIZE
;
329 /* Process the left bytes from the input data */
330 if (len
- done
>= SHA1_BLOCK_SIZE
) {
331 asm volatile (".byte 0xf3,0x0f,0xa6,0xc8"
332 : "+S"(src
), "+D"(dst
)
334 "c"((unsigned long)((len
- done
) / SHA1_BLOCK_SIZE
)));
335 done
+= ((len
- done
) - (len
- done
) % SHA1_BLOCK_SIZE
);
340 memcpy((u8
*)(sctx
->state
), dst
, SHA1_DIGEST_SIZE
);
341 memcpy(sctx
->buffer
+ partial
, src
, len
- done
);
346 static int padlock_sha1_final_nano(struct shash_desc
*desc
, u8
*out
)
348 struct sha1_state
*state
= (struct sha1_state
*)shash_desc_ctx(desc
);
349 unsigned int partial
, padlen
;
351 static const u8 padding
[64] = { 0x80, };
353 bits
= cpu_to_be64(state
->count
<< 3);
355 /* Pad out to 56 mod 64 */
356 partial
= state
->count
& 0x3f;
357 padlen
= (partial
< 56) ? (56 - partial
) : ((64+56) - partial
);
358 padlock_sha1_update_nano(desc
, padding
, padlen
);
360 /* Append length field bytes */
361 padlock_sha1_update_nano(desc
, (const u8
*)&bits
, sizeof(bits
));
364 padlock_output_block((uint32_t *)(state
->state
), (uint32_t *)out
, 5);
369 static int padlock_sha256_init_nano(struct shash_desc
*desc
)
371 struct sha256_state
*sctx
= shash_desc_ctx(desc
);
373 *sctx
= (struct sha256_state
){
374 .state
= { SHA256_H0
, SHA256_H1
, SHA256_H2
, SHA256_H3
, \
375 SHA256_H4
, SHA256_H5
, SHA256_H6
, SHA256_H7
},
381 static int padlock_sha256_update_nano(struct shash_desc
*desc
, const u8
*data
,
384 struct sha256_state
*sctx
= shash_desc_ctx(desc
);
385 unsigned int partial
, done
;
387 /*The PHE require the out buffer must 128 bytes and 16-bytes aligned*/
388 u8 buf
[128 + PADLOCK_ALIGNMENT
- STACK_ALIGN
] __attribute__
389 ((aligned(STACK_ALIGN
)));
390 u8
*dst
= PTR_ALIGN(&buf
[0], PADLOCK_ALIGNMENT
);
392 partial
= sctx
->count
& 0x3f;
396 memcpy(dst
, (u8
*)(sctx
->state
), SHA256_DIGEST_SIZE
);
398 if ((partial
+ len
) >= SHA256_BLOCK_SIZE
) {
400 /* Append the bytes in state's buffer to a block to handle */
403 memcpy(sctx
->buf
+ partial
, data
,
404 done
+ SHA256_BLOCK_SIZE
);
406 asm volatile (".byte 0xf3,0x0f,0xa6,0xd0"
407 : "+S"(src
), "+D"(dst
)
408 : "a"((long)-1), "c"((unsigned long)1));
409 done
+= SHA256_BLOCK_SIZE
;
413 /* Process the left bytes from input data*/
414 if (len
- done
>= SHA256_BLOCK_SIZE
) {
415 asm volatile (".byte 0xf3,0x0f,0xa6,0xd0"
416 : "+S"(src
), "+D"(dst
)
418 "c"((unsigned long)((len
- done
) / 64)));
419 done
+= ((len
- done
) - (len
- done
) % 64);
424 memcpy((u8
*)(sctx
->state
), dst
, SHA256_DIGEST_SIZE
);
425 memcpy(sctx
->buf
+ partial
, src
, len
- done
);
430 static int padlock_sha256_final_nano(struct shash_desc
*desc
, u8
*out
)
432 struct sha256_state
*state
=
433 (struct sha256_state
*)shash_desc_ctx(desc
);
434 unsigned int partial
, padlen
;
436 static const u8 padding
[64] = { 0x80, };
438 bits
= cpu_to_be64(state
->count
<< 3);
440 /* Pad out to 56 mod 64 */
441 partial
= state
->count
& 0x3f;
442 padlen
= (partial
< 56) ? (56 - partial
) : ((64+56) - partial
);
443 padlock_sha256_update_nano(desc
, padding
, padlen
);
445 /* Append length field bytes */
446 padlock_sha256_update_nano(desc
, (const u8
*)&bits
, sizeof(bits
));
449 padlock_output_block((uint32_t *)(state
->state
), (uint32_t *)out
, 8);
454 static int padlock_sha_export_nano(struct shash_desc
*desc
,
457 int statesize
= crypto_shash_statesize(desc
->tfm
);
458 void *sctx
= shash_desc_ctx(desc
);
460 memcpy(out
, sctx
, statesize
);
464 static int padlock_sha_import_nano(struct shash_desc
*desc
,
467 int statesize
= crypto_shash_statesize(desc
->tfm
);
468 void *sctx
= shash_desc_ctx(desc
);
470 memcpy(sctx
, in
, statesize
);
474 static struct shash_alg sha1_alg_nano
= {
475 .digestsize
= SHA1_DIGEST_SIZE
,
476 .init
= padlock_sha1_init_nano
,
477 .update
= padlock_sha1_update_nano
,
478 .final
= padlock_sha1_final_nano
,
479 .export
= padlock_sha_export_nano
,
480 .import
= padlock_sha_import_nano
,
481 .descsize
= sizeof(struct sha1_state
),
482 .statesize
= sizeof(struct sha1_state
),
485 .cra_driver_name
= "sha1-padlock-nano",
486 .cra_priority
= PADLOCK_CRA_PRIORITY
,
487 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
,
488 .cra_blocksize
= SHA1_BLOCK_SIZE
,
489 .cra_module
= THIS_MODULE
,
493 static struct shash_alg sha256_alg_nano
= {
494 .digestsize
= SHA256_DIGEST_SIZE
,
495 .init
= padlock_sha256_init_nano
,
496 .update
= padlock_sha256_update_nano
,
497 .final
= padlock_sha256_final_nano
,
498 .export
= padlock_sha_export_nano
,
499 .import
= padlock_sha_import_nano
,
500 .descsize
= sizeof(struct sha256_state
),
501 .statesize
= sizeof(struct sha256_state
),
503 .cra_name
= "sha256",
504 .cra_driver_name
= "sha256-padlock-nano",
505 .cra_priority
= PADLOCK_CRA_PRIORITY
,
506 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
,
507 .cra_blocksize
= SHA256_BLOCK_SIZE
,
508 .cra_module
= THIS_MODULE
,
512 static struct x86_cpu_id padlock_sha_ids
[] = {
513 X86_FEATURE_MATCH(X86_FEATURE_PHE
),
516 MODULE_DEVICE_TABLE(x86cpu
, padlock_sha_ids
);
518 static int __init
padlock_init(void)
521 struct cpuinfo_x86
*c
= &cpu_data(0);
522 struct shash_alg
*sha1
;
523 struct shash_alg
*sha256
;
525 if (!x86_match_cpu(padlock_sha_ids
) || !boot_cpu_has(X86_FEATURE_PHE_EN
))
528 /* Register the newly added algorithm module if on *
529 * VIA Nano processor, or else just do as before */
530 if (c
->x86_model
< 0x0f) {
532 sha256
= &sha256_alg
;
534 sha1
= &sha1_alg_nano
;
535 sha256
= &sha256_alg_nano
;
538 rc
= crypto_register_shash(sha1
);
542 rc
= crypto_register_shash(sha256
);
546 printk(KERN_NOTICE PFX
"Using VIA PadLock ACE for SHA1/SHA256 algorithms.\n");
551 crypto_unregister_shash(sha1
);
554 printk(KERN_ERR PFX
"VIA PadLock SHA1/SHA256 initialization failed.\n");
558 static void __exit
padlock_fini(void)
560 struct cpuinfo_x86
*c
= &cpu_data(0);
562 if (c
->x86_model
>= 0x0f) {
563 crypto_unregister_shash(&sha1_alg_nano
);
564 crypto_unregister_shash(&sha256_alg_nano
);
566 crypto_unregister_shash(&sha1_alg
);
567 crypto_unregister_shash(&sha256_alg
);
571 module_init(padlock_init
);
572 module_exit(padlock_fini
);
574 MODULE_DESCRIPTION("VIA PadLock SHA1/SHA256 algorithms support.");
575 MODULE_LICENSE("GPL");
576 MODULE_AUTHOR("Michal Ludvig");
578 MODULE_ALIAS_CRYPTO("sha1-all");
579 MODULE_ALIAS_CRYPTO("sha256-all");
580 MODULE_ALIAS_CRYPTO("sha1-padlock");
581 MODULE_ALIAS_CRYPTO("sha256-padlock");