Make CTR mode behaviour consistent with other modes:
[openssl.git] / crypto / engine / eng_aesni.c
1 /*
2  * Support for Intel AES-NI intruction set
3  *   Author: Huang Ying <ying.huang@intel.com>
4  *
5  * Intel AES-NI is a new set of Single Instruction Multiple Data
6  * (SIMD) instructions that are going to be introduced in the next
7  * generation of Intel processor, as of 2009. These instructions
8  * enable fast and secure data encryption and decryption, using the
9  * Advanced Encryption Standard (AES), defined by FIPS Publication
10  * number 197.  The architecture introduces six instructions that
11  * offer full hardware support for AES. Four of them support high
12  * performance data encryption and decryption, and the other two
13  * instructions support the AES key expansion procedure.
14  *
15  * The white paper can be downloaded from:
16  *   http://softwarecommunity.intel.com/isn/downloads/intelavx/AES-Instructions-Set_WP.pdf
17  *
18  * This file is based on engines/e_padlock.c
19  */
20
21 /* ====================================================================
22  * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved.
23  *
24  * Redistribution and use in source and binary forms, with or without
25  * modification, are permitted provided that the following conditions
26  * are met:
27  *
28  * 1. Redistributions of source code must retain the above copyright
29  *    notice, this list of conditions and the following disclaimer.
30  *
31  * 2. Redistributions in binary form must reproduce the above copyright
32  *    notice, this list of conditions and the following disclaimer in
33  *    the documentation and/or other materials provided with the
34  *    distribution.
35  *
36  * 3. All advertising materials mentioning features or use of this
37  *    software must display the following acknowledgment:
38  *    "This product includes software developed by the OpenSSL Project
39  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
40  *
41  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
42  *    endorse or promote products derived from this software without
43  *    prior written permission. For written permission, please contact
44  *    licensing@OpenSSL.org.
45  *
46  * 5. Products derived from this software may not be called "OpenSSL"
47  *    nor may "OpenSSL" appear in their names without prior written
48  *    permission of the OpenSSL Project.
49  *
50  * 6. Redistributions of any form whatsoever must retain the following
51  *    acknowledgment:
52  *    "This product includes software developed by the OpenSSL Project
53  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
54  *
55  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
56  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
58  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
59  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
60  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
61  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
62  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
64  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
65  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
66  * OF THE POSSIBILITY OF SUCH DAMAGE.
67  * ====================================================================
68  *
69  * This product includes cryptographic software written by Eric Young
70  * (eay@cryptsoft.com).  This product includes software written by Tim
71  * Hudson (tjh@cryptsoft.com).
72  *
73  */
74
75
76 #include <openssl/opensslconf.h>
77
78 #if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_AES_NI) && !defined(OPENSSL_NO_AES)
79
80 #include <stdio.h>
81 #include "cryptlib.h"
82 #include <openssl/dso.h>
83 #include <openssl/engine.h>
84 #include <openssl/evp.h>
85 #include <openssl/aes.h>
86 #include <openssl/err.h>
87 #include <openssl/modes.h>
88
89 /* AES-NI is available *ONLY* on some x86 CPUs.  Not only that it
90    doesn't exist elsewhere, but it even can't be compiled on other
91    platforms! */
92 #undef COMPILE_HW_AESNI
93 #if (defined(__x86_64) || defined(__x86_64__) || \
94      defined(_M_AMD64) || defined(_M_X64) || \
95      defined(OPENSSL_IA32_SSE2)) && !defined(OPENSSL_NO_ASM)
96 #define COMPILE_HW_AESNI
97 static ENGINE *ENGINE_aesni (void);
98 #endif
99
100 void ENGINE_load_aesni (void)
101 {
102 /* On non-x86 CPUs it just returns. */
103 #ifdef COMPILE_HW_AESNI
104         ENGINE *toadd = ENGINE_aesni();
105         if (!toadd)
106                 return;
107         ENGINE_add (toadd);
108         ENGINE_free (toadd);
109         ERR_clear_error ();
110 #endif
111 }
112
113 #ifdef COMPILE_HW_AESNI
114
115 typedef unsigned int u32;
116 typedef unsigned char u8;
117
118 #if defined(__GNUC__) && __GNUC__>=2 && !defined(PEDANTIC)
119 #  define BSWAP4(x) ({  u32 ret=(x);                    \
120                         asm volatile ("bswapl %0"       \
121                         : "+r"(ret));   ret;            })
122 #elif defined(_MSC_VER)
123 # if _MSC_VER>=1300
124 #  pragma intrinsic(_byteswap_ulong)
125 #  define BSWAP4(x)     _byteswap_ulong((u32)(x))
126 # elif defined(_M_IX86)
127    __inline u32 _bswap4(u32 val) {
128         _asm mov eax,val
129         _asm bswap eax
130    }
131 #  define BSWAP4(x)     _bswap4(x)
132 # endif
133 #endif
134
135 #ifdef BSWAP4
136 #define GETU32(p)       BSWAP4(*(const u32 *)(p))
137 #define PUTU32(p,v)     *(u32 *)(p) = BSWAP4(v)
138 #else
139 #define GETU32(p)       ((u32)(p)[0]<<24|(u32)(p)[1]<<16|(u32)(p)[2]<<8|(u32)(p)[3])
140 #define PUTU32(p,v)     ((p)[0]=(u8)((v)>>24),(p)[1]=(u8)((v)>>16),(p)[2]=(u8)((v)>>8),(p)[3]=(u8)(v))
141 #endif
142
143 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
144                               AES_KEY *key);
145 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
146                               AES_KEY *key);
147
148 void aesni_encrypt(const unsigned char *in, unsigned char *out,
149                        const AES_KEY *key);
150 void aesni_decrypt(const unsigned char *in, unsigned char *out,
151                        const AES_KEY *key);
152
153 void aesni_ecb_encrypt(const unsigned char *in,
154                            unsigned char *out,
155                            size_t length,
156                            const AES_KEY *key,
157                            int enc);
158 void aesni_cbc_encrypt(const unsigned char *in,
159                            unsigned char *out,
160                            size_t length,
161                            const AES_KEY *key,
162                            unsigned char *ivec, int enc);
163
164 void aesni_ctr32_encrypt_blocks(const unsigned char *in,
165                            unsigned char *out,
166                            size_t blocks,
167                            const void *key,
168                            const unsigned char *ivec);
169
170 /* Function for ENGINE detection and control */
171 static int aesni_init(ENGINE *e);
172
173 /* Cipher Stuff */
174 static int aesni_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
175                                 const int **nids, int nid);
176
177 #define AESNI_MIN_ALIGN 16
178 #define AESNI_ALIGN(x) \
179         ((void *)(((size_t)(x)+AESNI_MIN_ALIGN-1)&~(AESNI_MIN_ALIGN-1)))
180
181 /* Engine names */
182 static const char   aesni_id[] = "aesni",
183                     aesni_name[] = "Intel AES-NI engine",
184                     no_aesni_name[] = "Intel AES-NI engine (no-aesni)";
185
186 /* ===== Engine "management" functions ===== */
187
188 /* Prepare the ENGINE structure for registration */
189 static int
190 aesni_bind_helper(ENGINE *e)
191 {
192         int engage = (OPENSSL_ia32cap_P[1] & (1 << (57-32))) != 0;
193
194         /* Register everything or return with an error */
195         if (!ENGINE_set_id(e, aesni_id) ||
196             !ENGINE_set_name(e, engage ? aesni_name : no_aesni_name) ||
197
198             !ENGINE_set_init_function(e, aesni_init) ||
199             (engage && !ENGINE_set_ciphers (e, aesni_ciphers))
200             )
201                 return 0;
202
203         /* Everything looks good */
204         return 1;
205 }
206
207 /* Constructor */
208 static ENGINE *
209 ENGINE_aesni(void)
210 {
211         ENGINE *eng = ENGINE_new();
212
213         if (!eng) {
214                 return NULL;
215         }
216
217         if (!aesni_bind_helper(eng)) {
218                 ENGINE_free(eng);
219                 return NULL;
220         }
221
222         return eng;
223 }
224
225 /* Check availability of the engine */
226 static int
227 aesni_init(ENGINE *e)
228 {
229         return 1;
230 }
231
232 #if defined(NID_aes_128_cfb128) && ! defined (NID_aes_128_cfb)
233 #define NID_aes_128_cfb NID_aes_128_cfb128
234 #endif
235
236 #if defined(NID_aes_128_ofb128) && ! defined (NID_aes_128_ofb)
237 #define NID_aes_128_ofb NID_aes_128_ofb128
238 #endif
239
240 #if defined(NID_aes_192_cfb128) && ! defined (NID_aes_192_cfb)
241 #define NID_aes_192_cfb NID_aes_192_cfb128
242 #endif
243
244 #if defined(NID_aes_192_ofb128) && ! defined (NID_aes_192_ofb)
245 #define NID_aes_192_ofb NID_aes_192_ofb128
246 #endif
247
248 #if defined(NID_aes_256_cfb128) && ! defined (NID_aes_256_cfb)
249 #define NID_aes_256_cfb NID_aes_256_cfb128
250 #endif
251
252 #if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb)
253 #define NID_aes_256_ofb NID_aes_256_ofb128
254 #endif
255
256 /* List of supported ciphers. */
257 static int aesni_cipher_nids[] = {
258         NID_aes_128_ecb,
259         NID_aes_128_cbc,
260         NID_aes_128_cfb,
261         NID_aes_128_ofb,
262         NID_aes_128_ctr,
263
264         NID_aes_192_ecb,
265         NID_aes_192_cbc,
266         NID_aes_192_cfb,
267         NID_aes_192_ofb,
268         NID_aes_192_ctr,
269
270         NID_aes_256_ecb,
271         NID_aes_256_cbc,
272         NID_aes_256_cfb,
273         NID_aes_256_ofb,
274         NID_aes_256_ctr,
275 };
276 static int aesni_cipher_nids_num =
277         (sizeof(aesni_cipher_nids)/sizeof(aesni_cipher_nids[0]));
278
279 typedef struct
280 {
281         AES_KEY ks;
282         unsigned int _pad1[3];
283 } AESNI_KEY;
284
285 static int
286 aesni_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *user_key,
287                     const unsigned char *iv, int enc)
288 {
289         int ret;
290         AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
291
292         if (((ctx->cipher->flags & EVP_CIPH_MODE) == EVP_CIPH_ECB_MODE
293             || (ctx->cipher->flags & EVP_CIPH_MODE) == EVP_CIPH_CBC_MODE)
294             && !enc)
295                 ret=aesni_set_decrypt_key(user_key, ctx->key_len * 8, key);
296         else
297                 ret=aesni_set_encrypt_key(user_key, ctx->key_len * 8, key);
298
299         if(ret < 0) {
300                 EVPerr(EVP_F_AESNI_INIT_KEY,EVP_R_AES_KEY_SETUP_FAILED);
301                 return 0;
302         }
303
304         return 1;
305 }
306
307 static int aesni_cipher_ecb(EVP_CIPHER_CTX *ctx, unsigned char *out,
308                  const unsigned char *in, size_t inl)
309 {       AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
310         aesni_ecb_encrypt(in, out, inl, key, ctx->encrypt);
311         return 1;
312 }
313 static int aesni_cipher_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
314                  const unsigned char *in, size_t inl)
315 {       AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
316         aesni_cbc_encrypt(in, out, inl, key,
317                               ctx->iv, ctx->encrypt);
318         return 1;
319 }
320 static int aesni_cipher_cfb(EVP_CIPHER_CTX *ctx, unsigned char *out,
321                  const unsigned char *in, size_t inl)
322 {       AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
323         CRYPTO_cfb128_encrypt(in, out, inl, key, ctx->iv,
324                                 &ctx->num, ctx->encrypt,
325                                 (block128_f)aesni_encrypt);
326         return 1;
327 }
328 static int aesni_cipher_ofb(EVP_CIPHER_CTX *ctx, unsigned char *out,
329                  const unsigned char *in, size_t inl)
330 {       AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
331         CRYPTO_ofb128_encrypt(in, out, inl, key, ctx->iv,
332                                 &ctx->num, (block128_f)aesni_encrypt);
333         return 1;
334 }
335
336 #define AES_BLOCK_SIZE          16
337
338 #define EVP_CIPHER_block_size_ECB       AES_BLOCK_SIZE
339 #define EVP_CIPHER_block_size_CBC       AES_BLOCK_SIZE
340 #define EVP_CIPHER_block_size_OFB       1
341 #define EVP_CIPHER_block_size_CFB       1
342
343 /* Declaring so many ciphers by hand would be a pain.
344    Instead introduce a bit of preprocessor magic :-) */
345 #define DECLARE_AES_EVP(ksize,lmode,umode)      \
346 static const EVP_CIPHER aesni_##ksize##_##lmode = {     \
347         NID_aes_##ksize##_##lmode,                      \
348         EVP_CIPHER_block_size_##umode,                  \
349         ksize / 8,                                      \
350         AES_BLOCK_SIZE,                                 \
351         0 | EVP_CIPH_##umode##_MODE,                    \
352         aesni_init_key,                         \
353         aesni_cipher_##lmode,                           \
354         NULL,                                           \
355         sizeof(AESNI_KEY),                              \
356         EVP_CIPHER_set_asn1_iv,                         \
357         EVP_CIPHER_get_asn1_iv,                         \
358         NULL,                                           \
359         NULL                                            \
360 }
361
362 DECLARE_AES_EVP(128,ecb,ECB);
363 DECLARE_AES_EVP(128,cbc,CBC);
364 DECLARE_AES_EVP(128,cfb,CFB);
365 DECLARE_AES_EVP(128,ofb,OFB);
366
367 DECLARE_AES_EVP(192,ecb,ECB);
368 DECLARE_AES_EVP(192,cbc,CBC);
369 DECLARE_AES_EVP(192,cfb,CFB);
370 DECLARE_AES_EVP(192,ofb,OFB);
371
372 DECLARE_AES_EVP(256,ecb,ECB);
373 DECLARE_AES_EVP(256,cbc,CBC);
374 DECLARE_AES_EVP(256,cfb,CFB);
375 DECLARE_AES_EVP(256,ofb,OFB);
376
377 #if notused
378 static void ctr96_inc(unsigned char *counter) {
379         u32 n=12;
380         u8  c;
381
382         do {
383                 --n;
384                 c = counter[n];
385                 ++c;
386                 counter[n] = c;
387                 if (c) return;
388         } while (n);
389 }
390 #endif
391
392 static int aesni_counter(EVP_CIPHER_CTX *ctx, unsigned char *out,
393                 const unsigned char *in, size_t len)
394 {
395         AES_KEY *key = AESNI_ALIGN(ctx->cipher_data);
396
397         CRYPTO_ctr128_encrypt_ctr32(in,out,len,key,
398                                 ctx->iv,ctx->buf,(unsigned int *)&ctx->num,
399                                 aesni_ctr32_encrypt_blocks);
400         return 1;
401 }
402
403 static const EVP_CIPHER aesni_128_ctr=
404         {
405         NID_aes_128_ctr,1,16,16,
406         EVP_CIPH_CTR_MODE,
407         aesni_init_key,
408         aesni_counter,
409         NULL,
410         sizeof(AESNI_KEY),
411         NULL,
412         NULL,
413         NULL,
414         NULL
415         };
416
417 static const EVP_CIPHER aesni_192_ctr=
418         {
419         NID_aes_192_ctr,1,24,16,
420         EVP_CIPH_CTR_MODE,
421         aesni_init_key,
422         aesni_counter,
423         NULL,
424         sizeof(AESNI_KEY),
425         NULL,
426         NULL,
427         NULL,
428         NULL
429         };
430
431 static const EVP_CIPHER aesni_256_ctr=
432         {
433         NID_aes_256_ctr,1,32,16,
434         EVP_CIPH_CTR_MODE,
435         aesni_init_key,
436         aesni_counter,
437         NULL,
438         sizeof(AESNI_KEY),
439         NULL,
440         NULL,
441         NULL,
442         NULL
443         };
444
445 static int
446 aesni_ciphers (ENGINE *e, const EVP_CIPHER **cipher,
447                       const int **nids, int nid)
448 {
449         /* No specific cipher => return a list of supported nids ... */
450         if (!cipher) {
451                 *nids = aesni_cipher_nids;
452                 return aesni_cipher_nids_num;
453         }
454
455         /* ... or the requested "cipher" otherwise */
456         switch (nid) {
457         case NID_aes_128_ecb:
458                 *cipher = &aesni_128_ecb;
459                 break;
460         case NID_aes_128_cbc:
461                 *cipher = &aesni_128_cbc;
462                 break;
463         case NID_aes_128_cfb:
464                 *cipher = &aesni_128_cfb;
465                 break;
466         case NID_aes_128_ofb:
467                 *cipher = &aesni_128_ofb;
468                 break;
469         case NID_aes_128_ctr:
470                 *cipher = &aesni_128_ctr;
471                 break;
472
473         case NID_aes_192_ecb:
474                 *cipher = &aesni_192_ecb;
475                 break;
476         case NID_aes_192_cbc:
477                 *cipher = &aesni_192_cbc;
478                 break;
479         case NID_aes_192_cfb:
480                 *cipher = &aesni_192_cfb;
481                 break;
482         case NID_aes_192_ofb:
483                 *cipher = &aesni_192_ofb;
484                 break;
485         case NID_aes_192_ctr:
486                 *cipher = &aesni_192_ctr;
487                 break;
488
489         case NID_aes_256_ecb:
490                 *cipher = &aesni_256_ecb;
491                 break;
492         case NID_aes_256_cbc:
493                 *cipher = &aesni_256_cbc;
494                 break;
495         case NID_aes_256_cfb:
496                 *cipher = &aesni_256_cfb;
497                 break;
498         case NID_aes_256_ofb:
499                 *cipher = &aesni_256_ofb;
500                 break;
501         case NID_aes_256_ctr:
502                 *cipher = &aesni_256_ctr;
503                 break;
504
505         default:
506                 /* Sorry, we don't support this NID */
507                 *cipher = NULL;
508                 return 0;
509         }
510
511         return 1;
512 }
513
514 #endif /* COMPILE_HW_AESNI */
515 #endif /* !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_AESNI) && !defined(OPENSSL_NO_AES) */