Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 1 | /** |
| 2 | * \file aesni.h |
| 3 | * |
| 4 | * \brief AES-NI for hardware AES acceleration on some Intel processors |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 5 | * |
| 6 | * \warning These functions are only for internal use by other library |
| 7 | * functions; you must not call them directly. |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 8 | */ |
| 9 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 10 | * Copyright The Mbed TLS Contributors |
Dave Rodgman | 16799db | 2023-11-02 19:47:20 +0000 | [diff] [blame^] | 11 | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 12 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 13 | #ifndef MBEDTLS_AESNI_H |
| 14 | #define MBEDTLS_AESNI_H |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 15 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 16 | #include "mbedtls/build_info.h" |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 17 | |
Jaeden Amero | c49fbbf | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 18 | #include "mbedtls/aes.h" |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 19 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 20 | #define MBEDTLS_AESNI_AES 0x02000000u |
| 21 | #define MBEDTLS_AESNI_CLMUL 0x00000002u |
Manuel Pégourié-Gonnard | 8eaf20b | 2013-12-18 19:14:53 +0100 | [diff] [blame] | 22 | |
Jerry Yu | e62ff09 | 2023-08-16 14:15:00 +0800 | [diff] [blame] | 23 | #if defined(MBEDTLS_AESNI_C) && \ |
Jerry Yu | d6e312d | 2023-08-18 17:19:51 +0800 | [diff] [blame] | 24 | (defined(MBEDTLS_ARCH_IS_X64) || defined(MBEDTLS_ARCH_IS_X86)) |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 25 | |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 26 | /* Can we do AESNI with intrinsics? |
Gilles Peskine | 30e9f2a | 2023-03-17 17:29:58 +0100 | [diff] [blame] | 27 | * (Only implemented with certain compilers, only for certain targets.) |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 28 | */ |
| 29 | #undef MBEDTLS_AESNI_HAVE_INTRINSICS |
Sergey Markelov | 3898f10 | 2023-10-16 12:54:48 -0700 | [diff] [blame] | 30 | #if defined(_MSC_VER) && !defined(__clang__) |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 31 | /* Visual Studio supports AESNI intrinsics since VS 2008 SP1. We only support |
| 32 | * VS 2013 and up for other reasons anyway, so no need to check the version. */ |
| 33 | #define MBEDTLS_AESNI_HAVE_INTRINSICS |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 34 | #endif |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 35 | /* GCC-like compilers: currently, we only support intrinsics if the requisite |
| 36 | * target flag is enabled when building the library (e.g. `gcc -mpclmul -msse2` |
| 37 | * or `clang -maes -mpclmul`). */ |
Sergey Markelov | 3898f10 | 2023-10-16 12:54:48 -0700 | [diff] [blame] | 38 | #if (defined(__GNUC__) || defined(__clang__)) && defined(__AES__) && defined(__PCLMUL__) |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 39 | #define MBEDTLS_AESNI_HAVE_INTRINSICS |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 40 | #endif |
Beniamin Sandu | 800f2b7 | 2023-10-27 16:58:00 +0100 | [diff] [blame] | 41 | /* For 32-bit, we only support intrinsics */ |
| 42 | #if defined(MBEDTLS_ARCH_IS_X86) && (defined(__GNUC__) || defined(__clang__)) |
| 43 | #define MBEDTLS_AESNI_HAVE_INTRINSICS |
| 44 | #endif |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 45 | |
Dave Rodgman | e07c670 | 2023-06-16 13:21:28 +0100 | [diff] [blame] | 46 | /* Choose the implementation of AESNI, if one is available. |
| 47 | * |
| 48 | * Favor the intrinsics-based implementation if it's available, for better |
Dave Rodgman | 6365a68 | 2023-05-22 11:14:36 +0100 | [diff] [blame] | 49 | * maintainability. |
| 50 | * Performance is about the same (see #7380). |
| 51 | * In the long run, we will likely remove the assembly implementation. */ |
| 52 | #if defined(MBEDTLS_AESNI_HAVE_INTRINSICS) |
Gilles Peskine | 9c682e7 | 2023-03-16 17:21:33 +0100 | [diff] [blame] | 53 | #define MBEDTLS_AESNI_HAVE_CODE 2 // via intrinsics |
Jerry Yu | e62ff09 | 2023-08-16 14:15:00 +0800 | [diff] [blame] | 54 | #elif defined(MBEDTLS_HAVE_ASM) && \ |
Beniamin Sandu | 800f2b7 | 2023-10-27 16:58:00 +0100 | [diff] [blame] | 55 | (defined(__GNUC__) || defined(__clang__)) && defined(MBEDTLS_ARCH_IS_X64) |
Jerry Yu | f65f71e | 2023-08-28 10:58:24 +0800 | [diff] [blame] | 56 | /* Can we do AESNI with inline assembly? |
| 57 | * (Only implemented with gas syntax, only for 64-bit.) |
| 58 | */ |
Dave Rodgman | 6365a68 | 2023-05-22 11:14:36 +0100 | [diff] [blame] | 59 | #define MBEDTLS_AESNI_HAVE_CODE 1 // via assembly |
Jerry Yu | 8189f32 | 2023-08-10 13:53:41 +0800 | [diff] [blame] | 60 | #else |
| 61 | #error "MBEDTLS_AESNI_C defined, but neither intrinsics nor assembly available" |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 62 | #endif |
| 63 | |
| 64 | #if defined(MBEDTLS_AESNI_HAVE_CODE) |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 65 | |
Manuel Pégourié-Gonnard | 1a90147 | 2015-03-10 16:12:29 +0000 | [diff] [blame] | 66 | #ifdef __cplusplus |
| 67 | extern "C" { |
| 68 | #endif |
| 69 | |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 70 | /** |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 71 | * \brief Internal function to detect the AES-NI feature in CPUs. |
| 72 | * |
| 73 | * \note This function is only for internal use by other library |
| 74 | * functions; you must not call it directly. |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 75 | * |
Manuel Pégourié-Gonnard | 8eaf20b | 2013-12-18 19:14:53 +0100 | [diff] [blame] | 76 | * \param what The feature to detect |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 77 | * (MBEDTLS_AESNI_AES or MBEDTLS_AESNI_CLMUL) |
Manuel Pégourié-Gonnard | 8eaf20b | 2013-12-18 19:14:53 +0100 | [diff] [blame] | 78 | * |
| 79 | * \return 1 if CPU has support for the feature, 0 otherwise |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 80 | */ |
Jerry Yu | 0a6272d | 2023-08-18 17:35:59 +0800 | [diff] [blame] | 81 | #if !defined(MBEDTLS_AES_USE_HARDWARE_ONLY) |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 82 | int mbedtls_aesni_has_support(unsigned int what); |
Jerry Yu | 0d4f4e5 | 2023-03-31 14:32:47 +0800 | [diff] [blame] | 83 | #else |
Jerry Yu | 9c0b7d1 | 2023-08-04 17:25:59 +0800 | [diff] [blame] | 84 | #define mbedtls_aesni_has_support(what) 1 |
Jerry Yu | 0d4f4e5 | 2023-03-31 14:32:47 +0800 | [diff] [blame] | 85 | #endif |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 86 | |
Manuel Pégourié-Gonnard | 5b68565 | 2013-12-18 11:45:21 +0100 | [diff] [blame] | 87 | /** |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 88 | * \brief Internal AES-NI AES-ECB block encryption and decryption |
| 89 | * |
| 90 | * \note This function is only for internal use by other library |
| 91 | * functions; you must not call it directly. |
Manuel Pégourié-Gonnard | 5b68565 | 2013-12-18 11:45:21 +0100 | [diff] [blame] | 92 | * |
| 93 | * \param ctx AES context |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 94 | * \param mode MBEDTLS_AES_ENCRYPT or MBEDTLS_AES_DECRYPT |
Manuel Pégourié-Gonnard | 5b68565 | 2013-12-18 11:45:21 +0100 | [diff] [blame] | 95 | * \param input 16-byte input block |
| 96 | * \param output 16-byte output block |
| 97 | * |
Manuel Pégourié-Gonnard | d333f67 | 2013-12-26 11:44:46 +0100 | [diff] [blame] | 98 | * \return 0 on success (cannot fail) |
Manuel Pégourié-Gonnard | 5b68565 | 2013-12-18 11:45:21 +0100 | [diff] [blame] | 99 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 100 | int mbedtls_aesni_crypt_ecb(mbedtls_aes_context *ctx, |
| 101 | int mode, |
| 102 | const unsigned char input[16], |
| 103 | unsigned char output[16]); |
Manuel Pégourié-Gonnard | 5b68565 | 2013-12-18 11:45:21 +0100 | [diff] [blame] | 104 | |
Manuel Pégourié-Gonnard | d333f67 | 2013-12-26 11:44:46 +0100 | [diff] [blame] | 105 | /** |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 106 | * \brief Internal GCM multiplication: c = a * b in GF(2^128) |
| 107 | * |
| 108 | * \note This function is only for internal use by other library |
| 109 | * functions; you must not call it directly. |
Manuel Pégourié-Gonnard | d333f67 | 2013-12-26 11:44:46 +0100 | [diff] [blame] | 110 | * |
| 111 | * \param c Result |
| 112 | * \param a First operand |
| 113 | * \param b Second operand |
| 114 | * |
| 115 | * \note Both operands and result are bit strings interpreted as |
| 116 | * elements of GF(2^128) as per the GCM spec. |
Manuel Pégourié-Gonnard | d333f67 | 2013-12-26 11:44:46 +0100 | [diff] [blame] | 117 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 118 | void mbedtls_aesni_gcm_mult(unsigned char c[16], |
| 119 | const unsigned char a[16], |
| 120 | const unsigned char b[16]); |
Manuel Pégourié-Gonnard | d333f67 | 2013-12-26 11:44:46 +0100 | [diff] [blame] | 121 | |
Manuel Pégourié-Gonnard | 01e31bb | 2013-12-28 15:58:30 +0100 | [diff] [blame] | 122 | /** |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 123 | * \brief Internal round key inversion. This function computes |
| 124 | * decryption round keys from the encryption round keys. |
| 125 | * |
| 126 | * \note This function is only for internal use by other library |
| 127 | * functions; you must not call it directly. |
Manuel Pégourié-Gonnard | 01e31bb | 2013-12-28 15:58:30 +0100 | [diff] [blame] | 128 | * |
| 129 | * \param invkey Round keys for the equivalent inverse cipher |
| 130 | * \param fwdkey Original round keys (for encryption) |
| 131 | * \param nr Number of rounds (that is, number of round keys minus one) |
| 132 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 133 | void mbedtls_aesni_inverse_key(unsigned char *invkey, |
| 134 | const unsigned char *fwdkey, |
| 135 | int nr); |
Manuel Pégourié-Gonnard | 01e31bb | 2013-12-28 15:58:30 +0100 | [diff] [blame] | 136 | |
Manuel Pégourié-Gonnard | 47a3536 | 2013-12-28 20:45:04 +0100 | [diff] [blame] | 137 | /** |
Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 138 | * \brief Internal key expansion for encryption |
| 139 | * |
| 140 | * \note This function is only for internal use by other library |
| 141 | * functions; you must not call it directly. |
Manuel Pégourié-Gonnard | 47a3536 | 2013-12-28 20:45:04 +0100 | [diff] [blame] | 142 | * |
| 143 | * \param rk Destination buffer where the round keys are written |
| 144 | * \param key Encryption key |
| 145 | * \param bits Key size in bits (must be 128, 192 or 256) |
| 146 | * |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 147 | * \return 0 if successful, or MBEDTLS_ERR_AES_INVALID_KEY_LENGTH |
Manuel Pégourié-Gonnard | 47a3536 | 2013-12-28 20:45:04 +0100 | [diff] [blame] | 148 | */ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame] | 149 | int mbedtls_aesni_setkey_enc(unsigned char *rk, |
| 150 | const unsigned char *key, |
| 151 | size_t bits); |
Manuel Pégourié-Gonnard | 47a3536 | 2013-12-28 20:45:04 +0100 | [diff] [blame] | 152 | |
Manuel Pégourié-Gonnard | 1a90147 | 2015-03-10 16:12:29 +0000 | [diff] [blame] | 153 | #ifdef __cplusplus |
| 154 | } |
| 155 | #endif |
| 156 | |
Gilles Peskine | 9af58cd | 2023-03-10 22:29:32 +0100 | [diff] [blame] | 157 | #endif /* MBEDTLS_AESNI_HAVE_CODE */ |
| 158 | #endif /* MBEDTLS_AESNI_C */ |
Manuel Pégourié-Gonnard | 92ac76f | 2013-12-16 17:12:53 +0100 | [diff] [blame] | 159 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 160 | #endif /* MBEDTLS_AESNI_H */ |