2 * Support for VIA PadLock Advanced Cryptography Engine (ACE)
3 * Written by Michal Ludvig <michal@logix.cz>
4 * http://www.logix.cz/michal
6 * Big thanks to Andy Polyakov for a help with optimization,
7 * assembler fixes, port to MS Windows and a lot of other
8 * valuable work on this engine!
11 /* ====================================================================
12 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in
23 * the documentation and/or other materials provided with the
26 * 3. All advertising materials mentioning features or use of this
27 * software must display the following acknowledgment:
28 * "This product includes software developed by the OpenSSL Project
29 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
32 * endorse or promote products derived from this software without
33 * prior written permission. For written permission, please contact
34 * licensing@OpenSSL.org.
36 * 5. Products derived from this software may not be called "OpenSSL"
37 * nor may "OpenSSL" appear in their names without prior written
38 * permission of the OpenSSL Project.
40 * 6. Redistributions of any form whatsoever must retain the following
42 * "This product includes software developed by the OpenSSL Project
43 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
45 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
46 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
48 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
49 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
50 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
51 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
52 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
53 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
54 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
55 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
56 * OF THE POSSIBILITY OF SUCH DAMAGE.
57 * ====================================================================
59 * This product includes cryptographic software written by Eric Young
60 * (eay@cryptsoft.com). This product includes software written by Tim
61 * Hudson (tjh@cryptsoft.com).
68 #include <openssl/opensslconf.h>
69 #include <openssl/crypto.h>
70 #include <openssl/dso.h>
71 #include <openssl/engine.h>
72 #include <openssl/evp.h>
73 #ifndef OPENSSL_NO_AES
74 # include <openssl/aes.h>
76 #include <openssl/rand.h>
77 #include <openssl/err.h>
80 # ifndef OPENSSL_NO_HW_PADLOCK
82 /* Attempt to have a single source for both 0.9.7 and 0.9.8 :-) */
83 # if (OPENSSL_VERSION_NUMBER >= 0x00908000L)
84 # ifndef OPENSSL_NO_DYNAMIC_ENGINE
85 # define DYNAMIC_ENGINE
87 # elif (OPENSSL_VERSION_NUMBER >= 0x00907000L)
88 # ifdef ENGINE_DYNAMIC_SUPPORT
89 # define DYNAMIC_ENGINE
92 # error "Only OpenSSL >= 0.9.7 is supported"
96 * VIA PadLock AES is available *ONLY* on some x86 CPUs. Not only that it
97 * doesn't exist elsewhere, but it even can't be compiled on other platforms!
99 * In addition, because of the heavy use of inline assembler, compiler choice
100 * is limited to GCC and Microsoft C.
102 # undef COMPILE_HW_PADLOCK
103 # if !defined(I386_ONLY) && !defined(OPENSSL_NO_INLINE_ASM)
104 # if (defined(__GNUC__) && (defined(__i386__) || defined(__i386))) || \
105 (defined(_MSC_VER) && defined(_M_IX86))
106 # define COMPILE_HW_PADLOCK
110 # ifdef OPENSSL_NO_DYNAMIC_ENGINE
111 # ifdef COMPILE_HW_PADLOCK
112 static ENGINE
*ENGINE_padlock(void);
115 void ENGINE_load_padlock(void)
117 /* On non-x86 CPUs it just returns. */
118 # ifdef COMPILE_HW_PADLOCK
119 ENGINE
*toadd
= ENGINE_padlock();
130 # ifdef COMPILE_HW_PADLOCK
132 * We do these includes here to avoid header problems on platforms that do
133 * not have the VIA padlock anyway...
139 # define alloca _alloca
141 # elif defined(__GNUC__)
143 # define alloca(s) __builtin_alloca(s)
147 /* Function for ENGINE detection and control */
148 static int padlock_available(void);
149 static int padlock_init(ENGINE
*e
);
152 static RAND_METHOD padlock_rand
;
155 # ifndef OPENSSL_NO_AES
156 static int padlock_ciphers(ENGINE
*e
, const EVP_CIPHER
**cipher
,
157 const int **nids
, int nid
);
161 static const char *padlock_id
= "padlock";
162 static char padlock_name
[100];
164 /* Available features */
165 static int padlock_use_ace
= 0; /* Advanced Cryptography Engine */
166 static int padlock_use_rng
= 0; /* Random Number Generator */
167 # ifndef OPENSSL_NO_AES
168 static int padlock_aes_align_required
= 1;
171 /* ===== Engine "management" functions ===== */
173 /* Prepare the ENGINE structure for registration */
174 static int padlock_bind_helper(ENGINE
*e
)
176 /* Check available features */
179 # if 1 /* disable RNG for now, see commentary in
180 * vicinity of RNG code */
184 /* Generate a nice engine name with available features */
185 BIO_snprintf(padlock_name
, sizeof(padlock_name
),
186 "VIA PadLock (%s, %s)",
187 padlock_use_rng
? "RNG" : "no-RNG",
188 padlock_use_ace
? "ACE" : "no-ACE");
190 /* Register everything or return with an error */
191 if (!ENGINE_set_id(e
, padlock_id
) ||
192 !ENGINE_set_name(e
, padlock_name
) ||
193 !ENGINE_set_init_function(e
, padlock_init
) ||
194 # ifndef OPENSSL_NO_AES
195 (padlock_use_ace
&& !ENGINE_set_ciphers(e
, padlock_ciphers
)) ||
197 (padlock_use_rng
&& !ENGINE_set_RAND(e
, &padlock_rand
))) {
201 /* Everything looks good */
205 # ifdef OPENSSL_NO_DYNAMIC_ENGINE
208 static ENGINE
*ENGINE_padlock(void)
210 ENGINE
*eng
= ENGINE_new();
216 if (!padlock_bind_helper(eng
)) {
226 /* Check availability of the engine */
227 static int padlock_init(ENGINE
*e
)
229 return (padlock_use_rng
|| padlock_use_ace
);
233 * This stuff is needed if this ENGINE is being compiled into a
234 * self-contained shared-library.
236 # ifdef DYNAMIC_ENGINE
237 static int padlock_bind_fn(ENGINE
*e
, const char *id
)
239 if (id
&& (strcmp(id
, padlock_id
) != 0)) {
243 if (!padlock_bind_helper(e
)) {
250 IMPLEMENT_DYNAMIC_CHECK_FN()
251 IMPLEMENT_DYNAMIC_BIND_FN(padlock_bind_fn
)
252 # endif /* DYNAMIC_ENGINE */
253 /* ===== Here comes the "real" engine ===== */
254 # ifndef OPENSSL_NO_AES
255 /* Some AES-related constants */
256 # define AES_BLOCK_SIZE 16
257 # define AES_KEY_SIZE_128 16
258 # define AES_KEY_SIZE_192 24
259 # define AES_KEY_SIZE_256 32
261 * Here we store the status information relevant to the current context.
264 * BIG FAT WARNING: Inline assembler in PADLOCK_XCRYPT_ASM() depends on
265 * the order of items in this structure. Don't blindly modify, reorder,
268 struct padlock_cipher_data
{
269 unsigned char iv
[AES_BLOCK_SIZE
]; /* Initialization vector */
274 int dgst
:1; /* n/a in C3 */
275 int align
:1; /* n/a in C3 */
276 int ciphr
:1; /* n/a in C3 */
277 unsigned int keygen
:1;
279 unsigned int encdec
:1;
282 } cword
; /* Control word */
283 AES_KEY ks
; /* Encryption key */
287 * Essentially this variable belongs in thread local storage.
288 * Having this variable global on the other hand can only cause
289 * few bogus key reloads [if any at all on single-CPU system],
290 * so we accept the penatly...
292 static volatile struct padlock_cipher_data
*padlock_saved_context
;
296 * =======================================================
297 * Inline assembler section(s).
298 * =======================================================
299 * Order of arguments is chosen to facilitate Windows port
300 * using __fastcall calling convention. If you wish to add
301 * more routines, keep in mind that first __fastcall
302 * argument is passed in %ecx and second - in %edx.
303 * =======================================================
305 # if defined(__GNUC__) && __GNUC__>=2
307 * As for excessive "push %ebx"/"pop %ebx" found all over.
308 * When generating position-independent code GCC won't let
309 * us use "b" in assembler templates nor even respect "ebx"
310 * in "clobber description." Therefore the trouble...
314 * Helper function - check if a CPUID instruction is available on this CPU
316 static int padlock_insn_cpuid_available(void)
321 * We're checking if the bit #21 of EFLAGS can be toggled. If yes =
322 * CPUID is available.
324 asm volatile ("pushf\n"
326 "xorl $0x200000, %%eax\n"
327 "movl %%eax, %%ecx\n"
328 "andl $0x200000, %%ecx\n"
333 "andl $0x200000, %%eax\n"
334 "xorl %%eax, %%ecx\n"
335 "movl %%ecx, %0\n":"=r" (result
)::"eax", "ecx");
337 return (result
== 0);
341 * Load supported features of the CPU to see if the PadLock is available.
343 static int padlock_available(void)
345 char vendor_string
[16];
346 unsigned int eax
, edx
;
348 /* First check if the CPUID instruction is available at all... */
349 if (!padlock_insn_cpuid_available())
352 /* Are we running on the Centaur (VIA) CPU? */
354 vendor_string
[12] = 0;
355 asm volatile ("pushl %%ebx\n"
357 "movl %%ebx,(%%edi)\n"
358 "movl %%edx,4(%%edi)\n"
359 "movl %%ecx,8(%%edi)\n"
360 "popl %%ebx":"+a" (eax
):"D"(vendor_string
):"ecx", "edx");
361 if (strcmp(vendor_string
, "CentaurHauls") != 0)
364 /* Check for Centaur Extended Feature Flags presence */
366 asm volatile ("pushl %%ebx; cpuid; popl %%ebx":"+a" (eax
)::"ecx", "edx");
367 if (eax
< 0xC0000001)
370 /* Read the Centaur Extended Feature Flags */
372 asm volatile ("pushl %%ebx; cpuid; popl %%ebx":"+a" (eax
),
375 /* Fill up some flags */
376 padlock_use_ace
= ((edx
& (0x3 << 6)) == (0x3 << 6));
377 padlock_use_rng
= ((edx
& (0x3 << 2)) == (0x3 << 2));
379 return padlock_use_ace
+ padlock_use_rng
;
382 # ifndef OPENSSL_NO_AES
384 /* Our own htonl()/ntohl() */
385 static inline void padlock_bswapl(AES_KEY
*ks
)
387 size_t i
= sizeof(ks
->rd_key
) / sizeof(ks
->rd_key
[0]);
388 unsigned int *key
= ks
->rd_key
;
391 asm volatile ("bswapl %0":"+r" (*key
));
399 * Force key reload from memory to the CPU microcode. Loading EFLAGS from the
400 * stack clears EFLAGS[30] which does the trick.
402 static inline void padlock_reload_key(void)
404 asm volatile ("pushfl; popfl");
407 # ifndef OPENSSL_NO_AES
409 * This is heuristic key context tracing. At first one
410 * believes that one should use atomic swap instructions,
411 * but it's not actually necessary. Point is that if
412 * padlock_saved_context was changed by another thread
413 * after we've read it and before we compare it with cdata,
414 * our key *shall* be reloaded upon thread context switch
415 * and we are therefore set in either case...
417 static inline void padlock_verify_context(struct padlock_cipher_data
*cdata
)
419 asm volatile ("pushfl\n"
427 " movl %2,%0":"+m" (padlock_saved_context
)
428 :"r"(padlock_saved_context
), "r"(cdata
):"cc");
431 /* Template for padlock_xcrypt_* modes */
433 * BIG FAT WARNING: The offsets used with 'leal' instructions describe items
434 * of the 'padlock_cipher_data' structure.
436 # define PADLOCK_XCRYPT_ASM(name,rep_xcrypt) \
437 static inline void *name(size_t cnt, \
438 struct padlock_cipher_data *cdata, \
439 void *out, const void *inp) \
441 asm volatile ( "pushl %%ebx\n" \
442 " leal 16(%0),%%edx\n" \
443 " leal 32(%0),%%ebx\n" \
446 : "=a"(iv), "=c"(cnt), "=D"(out), "=S"(inp) \
447 : "0"(cdata), "1"(cnt), "2"(out), "3"(inp) \
448 : "edx", "cc", "memory"); \
452 /* Generate all functions with appropriate opcodes */
454 PADLOCK_XCRYPT_ASM(padlock_xcrypt_ecb
, ".byte 0xf3,0x0f,0xa7,0xc8")
456 PADLOCK_XCRYPT_ASM(padlock_xcrypt_cbc
, ".byte 0xf3,0x0f,0xa7,0xd0")
458 PADLOCK_XCRYPT_ASM(padlock_xcrypt_cfb
, ".byte 0xf3,0x0f,0xa7,0xe0")
460 PADLOCK_XCRYPT_ASM(padlock_xcrypt_ofb
, ".byte 0xf3,0x0f,0xa7,0xe8")
462 /* The RNG call itself */
463 static inline unsigned int padlock_xstore(void *addr
, unsigned int edx_in
)
465 unsigned int eax_out
;
467 asm volatile (".byte 0x0f,0xa7,0xc0" /* xstore */
468 :"=a" (eax_out
), "=m"(*(unsigned *)addr
)
469 :"D"(addr
), "d"(edx_in
)
476 * Why not inline 'rep movsd'? I failed to find information on what value in
477 * Direction Flag one can expect and consequently have to apply
478 * "better-safe-than-sorry" approach and assume "undefined." I could
479 * explicitly clear it and restore the original value upon return from
480 * padlock_aes_cipher, but it's presumably too much trouble for too little
481 * gain... In case you wonder 'rep xcrypt*' instructions above are *not*
482 * affected by the Direction Flag and pointers advance toward larger
483 * addresses unconditionally.
485 static inline unsigned char *padlock_memcpy(void *dst
, const void *src
,
499 # elif defined(_MSC_VER)
501 * Unlike GCC these are real functions. In order to minimize impact
502 * on performance we adhere to __fastcall calling convention in
503 * order to get two first arguments passed through %ecx and %edx.
504 * Which kind of suits very well, as instructions in question use
505 * both %ecx and %edx as input:-)
507 # define REP_XCRYPT(code) \
509 _asm _emit 0x0f _asm _emit 0xa7 \
513 * BIG FAT WARNING: The offsets used with 'lea' instructions describe items
514 * of the 'padlock_cipher_data' structure.
516 # define PADLOCK_XCRYPT_ASM(name,code) \
517 static void * __fastcall \
518 name (size_t cnt, void *cdata, \
519 void *outp, const void *inp) \
521 _asm lea edx,[eax+16] \
522 _asm lea ebx,[eax+32] \
528 PADLOCK_XCRYPT_ASM(padlock_xcrypt_ecb
,0xc8)
529 PADLOCK_XCRYPT_ASM(padlock_xcrypt_cbc
,0xd0)
530 PADLOCK_XCRYPT_ASM(padlock_xcrypt_cfb
,0xe0)
531 PADLOCK_XCRYPT_ASM(padlock_xcrypt_ofb
,0xe8)
533 static int __fastcall
padlock_xstore(void *outp
, unsigned int code
)
536 _asm _emit
0x0f _asm _emit
0xa7 _asm _emit
0xc0
539 static void __fastcall
padlock_reload_key(void)
545 static void __fastcall
padlock_verify_context(void *cdata
)
551 cmp ecx
,padlock_saved_context
556 mov padlock_saved_context
,ecx
561 padlock_available(void)
597 mov padlock_use_ace
,1
603 mov padlock_use_rng
,1
610 static void __fastcall
padlock_bswapl(void *key
)
627 * MS actually specifies status of Direction Flag and compiler even manages
628 * to compile following as 'rep movsd' all by itself...
630 # define padlock_memcpy(o,i,n) ((unsigned char *)memcpy((o),(i),(n)&~3U))
632 /* ===== AES encryption/decryption ===== */
633 # ifndef OPENSSL_NO_AES
634 # if defined(NID_aes_128_cfb128) && ! defined (NID_aes_128_cfb)
635 # define NID_aes_128_cfb NID_aes_128_cfb128
637 # if defined(NID_aes_128_ofb128) && ! defined (NID_aes_128_ofb)
638 # define NID_aes_128_ofb NID_aes_128_ofb128
640 # if defined(NID_aes_192_cfb128) && ! defined (NID_aes_192_cfb)
641 # define NID_aes_192_cfb NID_aes_192_cfb128
643 # if defined(NID_aes_192_ofb128) && ! defined (NID_aes_192_ofb)
644 # define NID_aes_192_ofb NID_aes_192_ofb128
646 # if defined(NID_aes_256_cfb128) && ! defined (NID_aes_256_cfb)
647 # define NID_aes_256_cfb NID_aes_256_cfb128
649 # if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb)
650 # define NID_aes_256_ofb NID_aes_256_ofb128
653 * List of supported ciphers.
654 */ static int padlock_cipher_nids
[] = {
671 static int padlock_cipher_nids_num
= (sizeof(padlock_cipher_nids
) /
672 sizeof(padlock_cipher_nids
[0]));
674 /* Function prototypes ... */
675 static int padlock_aes_init_key(EVP_CIPHER_CTX
*ctx
, const unsigned char *key
,
676 const unsigned char *iv
, int enc
);
677 static int padlock_aes_cipher(EVP_CIPHER_CTX
*ctx
, unsigned char *out
,
678 const unsigned char *in
, size_t nbytes
);
680 # define NEAREST_ALIGNED(ptr) ( (unsigned char *)(ptr) + \
681 ( (0x10 - ((size_t)(ptr) & 0x0F)) & 0x0F ) )
682 # define ALIGNED_CIPHER_DATA(ctx) ((struct padlock_cipher_data *)\
683 NEAREST_ALIGNED(ctx->cipher_data))
685 # define EVP_CIPHER_block_size_ECB AES_BLOCK_SIZE
686 # define EVP_CIPHER_block_size_CBC AES_BLOCK_SIZE
687 # define EVP_CIPHER_block_size_OFB 1
688 # define EVP_CIPHER_block_size_CFB 1
691 * Declaring so many ciphers by hand would be a pain. Instead introduce a bit
692 * of preprocessor magic :-)
694 # define DECLARE_AES_EVP(ksize,lmode,umode) \
695 static const EVP_CIPHER padlock_aes_##ksize##_##lmode = { \
696 NID_aes_##ksize##_##lmode, \
697 EVP_CIPHER_block_size_##umode, \
698 AES_KEY_SIZE_##ksize, \
700 0 | EVP_CIPH_##umode##_MODE, \
701 padlock_aes_init_key, \
702 padlock_aes_cipher, \
704 sizeof(struct padlock_cipher_data) + 16, \
705 EVP_CIPHER_set_asn1_iv, \
706 EVP_CIPHER_get_asn1_iv, \
711 DECLARE_AES_EVP(128, ecb
, ECB
);
712 DECLARE_AES_EVP(128, cbc
, CBC
);
713 DECLARE_AES_EVP(128, cfb
, CFB
);
714 DECLARE_AES_EVP(128, ofb
, OFB
);
716 DECLARE_AES_EVP(192, ecb
, ECB
);
717 DECLARE_AES_EVP(192, cbc
, CBC
);
718 DECLARE_AES_EVP(192, cfb
, CFB
);
719 DECLARE_AES_EVP(192, ofb
, OFB
);
721 DECLARE_AES_EVP(256, ecb
, ECB
);
722 DECLARE_AES_EVP(256, cbc
, CBC
);
723 DECLARE_AES_EVP(256, cfb
, CFB
);
724 DECLARE_AES_EVP(256, ofb
, OFB
);
727 padlock_ciphers(ENGINE
*e
, const EVP_CIPHER
**cipher
, const int **nids
,
730 /* No specific cipher => return a list of supported nids ... */
732 *nids
= padlock_cipher_nids
;
733 return padlock_cipher_nids_num
;
736 /* ... or the requested "cipher" otherwise */
738 case NID_aes_128_ecb
:
739 *cipher
= &padlock_aes_128_ecb
;
741 case NID_aes_128_cbc
:
742 *cipher
= &padlock_aes_128_cbc
;
744 case NID_aes_128_cfb
:
745 *cipher
= &padlock_aes_128_cfb
;
747 case NID_aes_128_ofb
:
748 *cipher
= &padlock_aes_128_ofb
;
751 case NID_aes_192_ecb
:
752 *cipher
= &padlock_aes_192_ecb
;
754 case NID_aes_192_cbc
:
755 *cipher
= &padlock_aes_192_cbc
;
757 case NID_aes_192_cfb
:
758 *cipher
= &padlock_aes_192_cfb
;
760 case NID_aes_192_ofb
:
761 *cipher
= &padlock_aes_192_ofb
;
764 case NID_aes_256_ecb
:
765 *cipher
= &padlock_aes_256_ecb
;
767 case NID_aes_256_cbc
:
768 *cipher
= &padlock_aes_256_cbc
;
770 case NID_aes_256_cfb
:
771 *cipher
= &padlock_aes_256_cfb
;
773 case NID_aes_256_ofb
:
774 *cipher
= &padlock_aes_256_ofb
;
778 /* Sorry, we don't support this NID */
786 /* Prepare the encryption key for PadLock usage */
788 padlock_aes_init_key(EVP_CIPHER_CTX
*ctx
, const unsigned char *key
,
789 const unsigned char *iv
, int enc
)
791 struct padlock_cipher_data
*cdata
;
792 int key_len
= EVP_CIPHER_CTX_key_length(ctx
) * 8;
795 return 0; /* ERROR */
797 cdata
= ALIGNED_CIPHER_DATA(ctx
);
798 memset(cdata
, 0, sizeof(struct padlock_cipher_data
));
800 /* Prepare Control word. */
801 if (EVP_CIPHER_CTX_mode(ctx
) == EVP_CIPH_OFB_MODE
)
802 cdata
->cword
.b
.encdec
= 0;
804 cdata
->cword
.b
.encdec
= (ctx
->encrypt
== 0);
805 cdata
->cword
.b
.rounds
= 10 + (key_len
- 128) / 32;
806 cdata
->cword
.b
.ksize
= (key_len
- 128) / 64;
811 * PadLock can generate an extended key for AES128 in hardware
813 memcpy(cdata
->ks
.rd_key
, key
, AES_KEY_SIZE_128
);
814 cdata
->cword
.b
.keygen
= 0;
820 * Generate an extended AES key in software. Needed for AES192/AES256
823 * Well, the above applies to Stepping 8 CPUs and is listed as
824 * hardware errata. They most likely will fix it at some point and
825 * then a check for stepping would be due here.
827 if (EVP_CIPHER_CTX_mode(ctx
) == EVP_CIPH_CFB_MODE
||
828 EVP_CIPHER_CTX_mode(ctx
) == EVP_CIPH_OFB_MODE
|| enc
)
829 AES_set_encrypt_key(key
, key_len
, &cdata
->ks
);
831 AES_set_decrypt_key(key
, key_len
, &cdata
->ks
);
834 * OpenSSL C functions use byte-swapped extended key.
836 padlock_bswapl(&cdata
->ks
);
838 cdata
->cword
.b
.keygen
= 1;
847 * This is done to cover for cases when user reuses the
848 * context for new key. The catch is that if we don't do
849 * this, padlock_eas_cipher might proceed with old key...
851 padlock_reload_key();
857 * Simplified version of padlock_aes_cipher() used when
858 * 1) both input and output buffers are at aligned addresses.
860 * 2) running on a newer CPU that doesn't require aligned buffers.
863 padlock_aes_cipher_omnivorous(EVP_CIPHER_CTX
*ctx
, unsigned char *out_arg
,
864 const unsigned char *in_arg
, size_t nbytes
)
866 struct padlock_cipher_data
*cdata
;
869 cdata
= ALIGNED_CIPHER_DATA(ctx
);
870 padlock_verify_context(cdata
);
872 switch (EVP_CIPHER_CTX_mode(ctx
)) {
873 case EVP_CIPH_ECB_MODE
:
874 padlock_xcrypt_ecb(nbytes
/ AES_BLOCK_SIZE
, cdata
, out_arg
, in_arg
);
877 case EVP_CIPH_CBC_MODE
:
878 memcpy(cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
879 iv
= padlock_xcrypt_cbc(nbytes
/ AES_BLOCK_SIZE
, cdata
, out_arg
,
881 memcpy(ctx
->iv
, iv
, AES_BLOCK_SIZE
);
884 case EVP_CIPH_CFB_MODE
:
885 memcpy(cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
886 iv
= padlock_xcrypt_cfb(nbytes
/ AES_BLOCK_SIZE
, cdata
, out_arg
,
888 memcpy(ctx
->iv
, iv
, AES_BLOCK_SIZE
);
891 case EVP_CIPH_OFB_MODE
:
892 memcpy(cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
893 padlock_xcrypt_ofb(nbytes
/ AES_BLOCK_SIZE
, cdata
, out_arg
, in_arg
);
894 memcpy(ctx
->iv
, cdata
->iv
, AES_BLOCK_SIZE
);
901 memset(cdata
->iv
, 0, AES_BLOCK_SIZE
);
906 # ifndef PADLOCK_CHUNK
907 # define PADLOCK_CHUNK 512 /* Must be a power of 2 larger than 16 */
909 # if PADLOCK_CHUNK<16 || PADLOCK_CHUNK&(PADLOCK_CHUNK-1)
910 # error "insane PADLOCK_CHUNK..."
914 * Re-align the arguments to 16-Bytes boundaries and run the encryption
915 * function itself. This function is not AES-specific.
918 padlock_aes_cipher(EVP_CIPHER_CTX
*ctx
, unsigned char *out_arg
,
919 const unsigned char *in_arg
, size_t nbytes
)
921 struct padlock_cipher_data
*cdata
;
923 unsigned char *out
, *tofree
;
925 int inp_misaligned
, out_misaligned
, realign_in_loop
;
926 size_t chunk
, allocated
= 0;
929 * ctx->num is maintained in byte-oriented modes, such as CFB and OFB...
931 if ((chunk
= ctx
->num
)) { /* borrow chunk variable */
932 unsigned char *ivp
= ctx
->iv
;
934 switch (EVP_CIPHER_CTX_mode(ctx
)) {
935 case EVP_CIPH_CFB_MODE
:
936 if (chunk
>= AES_BLOCK_SIZE
)
937 return 0; /* bogus value */
940 while (chunk
< AES_BLOCK_SIZE
&& nbytes
!= 0) {
941 ivp
[chunk
] = *(out_arg
++) = *(in_arg
++) ^ ivp
[chunk
];
944 while (chunk
< AES_BLOCK_SIZE
&& nbytes
!= 0) {
945 unsigned char c
= *(in_arg
++);
946 *(out_arg
++) = c
^ ivp
[chunk
];
947 ivp
[chunk
++] = c
, nbytes
--;
950 ctx
->num
= chunk
% AES_BLOCK_SIZE
;
952 case EVP_CIPH_OFB_MODE
:
953 if (chunk
>= AES_BLOCK_SIZE
)
954 return 0; /* bogus value */
956 while (chunk
< AES_BLOCK_SIZE
&& nbytes
!= 0) {
957 *(out_arg
++) = *(in_arg
++) ^ ivp
[chunk
];
961 ctx
->num
= chunk
% AES_BLOCK_SIZE
;
969 if (nbytes
% AES_BLOCK_SIZE
)
970 return 0; /* are we expected to do tail processing? */
973 * nbytes is always multiple of AES_BLOCK_SIZE in ECB and CBC modes and
974 * arbitrary value in byte-oriented modes, such as CFB and OFB...
979 * VIA promises CPUs that won't require alignment in the future. For now
980 * padlock_aes_align_required is initialized to 1 and the condition is
984 * C7 core is capable to manage unaligned input in non-ECB[!] mode, but
985 * performance penalties appear to be approximately same as for software
986 * alignment below or ~3x. They promise to improve it in the future, but
987 * for now we can just as well pretend that it can only handle aligned
990 if (!padlock_aes_align_required
&& (nbytes
% AES_BLOCK_SIZE
) == 0)
991 return padlock_aes_cipher_omnivorous(ctx
, out_arg
, in_arg
, nbytes
);
993 inp_misaligned
= (((size_t)in_arg
) & 0x0F);
994 out_misaligned
= (((size_t)out_arg
) & 0x0F);
997 * Note that even if output is aligned and input not, I still prefer to
998 * loop instead of copy the whole input and then encrypt in one stroke.
999 * This is done in order to improve L1 cache utilization...
1001 realign_in_loop
= out_misaligned
| inp_misaligned
;
1003 if (!realign_in_loop
&& (nbytes
% AES_BLOCK_SIZE
) == 0)
1004 return padlock_aes_cipher_omnivorous(ctx
, out_arg
, in_arg
, nbytes
);
1006 /* this takes one "if" out of the loops */
1008 chunk
%= PADLOCK_CHUNK
;
1010 chunk
= PADLOCK_CHUNK
;
1012 if (out_misaligned
) {
1013 /* optmize for small input */
1014 allocated
= (chunk
< nbytes
? PADLOCK_CHUNK
: nbytes
);
1015 tofree
= malloc(0x10 + allocated
);
1018 out
= NEAREST_ALIGNED(tofree
);
1024 cdata
= ALIGNED_CIPHER_DATA(ctx
);
1025 padlock_verify_context(cdata
);
1027 switch (EVP_CIPHER_CTX_mode(ctx
)) {
1028 case EVP_CIPH_ECB_MODE
:
1031 inp
= padlock_memcpy(out
, in_arg
, chunk
);
1036 padlock_xcrypt_ecb(chunk
/ AES_BLOCK_SIZE
, cdata
, out
, inp
);
1039 out_arg
= padlock_memcpy(out_arg
, out
, chunk
) + chunk
;
1041 out
= out_arg
+= chunk
;
1044 chunk
= PADLOCK_CHUNK
;
1048 case EVP_CIPH_CBC_MODE
:
1049 memcpy(cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
1052 if (iv
!= cdata
->iv
)
1053 memcpy(cdata
->iv
, iv
, AES_BLOCK_SIZE
);
1054 chunk
= PADLOCK_CHUNK
;
1055 cbc_shortcut
: /* optimize for small input */
1057 inp
= padlock_memcpy(out
, in_arg
, chunk
);
1062 iv
= padlock_xcrypt_cbc(chunk
/ AES_BLOCK_SIZE
, cdata
, out
, inp
);
1065 out_arg
= padlock_memcpy(out_arg
, out
, chunk
) + chunk
;
1067 out
= out_arg
+= chunk
;
1069 } while (nbytes
-= chunk
);
1070 memcpy(ctx
->iv
, iv
, AES_BLOCK_SIZE
);
1073 case EVP_CIPH_CFB_MODE
:
1074 memcpy(iv
= cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
1075 chunk
&= ~(AES_BLOCK_SIZE
- 1);
1081 if (iv
!= cdata
->iv
)
1082 memcpy(cdata
->iv
, iv
, AES_BLOCK_SIZE
);
1083 chunk
= PADLOCK_CHUNK
;
1084 cfb_shortcut
: /* optimize for small input */
1086 inp
= padlock_memcpy(out
, in_arg
, chunk
);
1091 iv
= padlock_xcrypt_cfb(chunk
/ AES_BLOCK_SIZE
, cdata
, out
, inp
);
1094 out_arg
= padlock_memcpy(out_arg
, out
, chunk
) + chunk
;
1096 out
= out_arg
+= chunk
;
1099 } while (nbytes
>= AES_BLOCK_SIZE
);
1103 unsigned char *ivp
= cdata
->iv
;
1106 memcpy(ivp
, iv
, AES_BLOCK_SIZE
);
1110 if (cdata
->cword
.b
.encdec
) {
1111 cdata
->cword
.b
.encdec
= 0;
1112 padlock_reload_key();
1113 padlock_xcrypt_ecb(1, cdata
, ivp
, ivp
);
1114 cdata
->cword
.b
.encdec
= 1;
1115 padlock_reload_key();
1117 unsigned char c
= *(in_arg
++);
1118 *(out_arg
++) = c
^ *ivp
;
1119 *(ivp
++) = c
, nbytes
--;
1122 padlock_reload_key();
1123 padlock_xcrypt_ecb(1, cdata
, ivp
, ivp
);
1124 padlock_reload_key();
1126 *ivp
= *(out_arg
++) = *(in_arg
++) ^ *ivp
;
1132 memcpy(ctx
->iv
, iv
, AES_BLOCK_SIZE
);
1135 case EVP_CIPH_OFB_MODE
:
1136 memcpy(cdata
->iv
, ctx
->iv
, AES_BLOCK_SIZE
);
1137 chunk
&= ~(AES_BLOCK_SIZE
- 1);
1141 inp
= padlock_memcpy(out
, in_arg
, chunk
);
1146 padlock_xcrypt_ofb(chunk
/ AES_BLOCK_SIZE
, cdata
, out
, inp
);
1149 out_arg
= padlock_memcpy(out_arg
, out
, chunk
) + chunk
;
1151 out
= out_arg
+= chunk
;
1154 chunk
= PADLOCK_CHUNK
;
1155 } while (nbytes
>= AES_BLOCK_SIZE
);
1158 unsigned char *ivp
= cdata
->iv
;
1161 padlock_reload_key(); /* empirically found */
1162 padlock_xcrypt_ecb(1, cdata
, ivp
, ivp
);
1163 padlock_reload_key(); /* empirically found */
1165 *(out_arg
++) = *(in_arg
++) ^ *ivp
;
1170 memcpy(ctx
->iv
, cdata
->iv
, AES_BLOCK_SIZE
);
1178 /* Clean the realign buffer if it was used */
1179 if (out_misaligned
) {
1180 volatile unsigned long *p
= (void *)out
;
1181 size_t n
= allocated
/ sizeof(*p
);
1186 memset(cdata
->iv
, 0, AES_BLOCK_SIZE
);
1192 # endif /* OPENSSL_NO_AES */
1194 /* ===== Random Number Generator ===== */
1196 * This code is not engaged. The reason is that it does not comply
1197 * with recommendations for VIA RNG usage for secure applications
1198 * (posted at http://www.via.com.tw/en/viac3/c3.jsp) nor does it
1199 * provide meaningful error control...
1202 * Wrapper that provides an interface between the API and the raw PadLock
1205 static int padlock_rand_bytes(unsigned char *output
, int count
)
1207 unsigned int eax
, buf
;
1209 while (count
>= 8) {
1210 eax
= padlock_xstore(output
, 0);
1211 if (!(eax
& (1 << 6)))
1212 return 0; /* RNG disabled */
1213 /* this ---vv--- covers DC bias, Raw Bits and String Filter */
1214 if (eax
& (0x1F << 10))
1216 if ((eax
& 0x1F) == 0)
1217 continue; /* no data, retry... */
1218 if ((eax
& 0x1F) != 8)
1219 return 0; /* fatal failure... */
1224 eax
= padlock_xstore(&buf
, 3);
1225 if (!(eax
& (1 << 6)))
1226 return 0; /* RNG disabled */
1227 /* this ---vv--- covers DC bias, Raw Bits and String Filter */
1228 if (eax
& (0x1F << 10))
1230 if ((eax
& 0x1F) == 0)
1231 continue; /* no data, retry... */
1232 if ((eax
& 0x1F) != 1)
1233 return 0; /* fatal failure... */
1234 *output
++ = (unsigned char)buf
;
1237 *(volatile unsigned int *)&buf
= 0;
1242 /* Dummy but necessary function */
1243 static int padlock_rand_status(void)
1248 /* Prepare structure for registration */
1249 static RAND_METHOD padlock_rand
= {
1251 padlock_rand_bytes
, /* bytes */
1254 padlock_rand_bytes
, /* pseudorand */
1255 padlock_rand_status
, /* rand status */
1258 # else /* !COMPILE_HW_PADLOCK */
1259 # ifndef OPENSSL_NO_DYNAMIC_ENGINE
1261 int bind_engine(ENGINE
*e
, const char *id
, const dynamic_fns
*fns
);
1263 int bind_engine(ENGINE
*e
, const char *id
, const dynamic_fns
*fns
)
1268 IMPLEMENT_DYNAMIC_CHECK_FN()
1270 # endif /* COMPILE_HW_PADLOCK */
1271 # endif /* !OPENSSL_NO_HW_PADLOCK */
1272 #endif /* !OPENSSL_NO_HW */