-
Notifications
You must be signed in to change notification settings - Fork 128
/
qat_prov_ciphers.h
316 lines (288 loc) · 12.7 KB
/
qat_prov_ciphers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2022 Intel Corporation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
* ====================================================================
*/
/*****************************************************************************
* @file qat_prov_ciphers.h
*
* This file provides an interface to Qat provider AES-GCM operations
*
*****************************************************************************/
#ifndef QAT_PROV_CIPHERS_H
# define QAT_PROV_CIPHERS_H
#include <string.h>
#include <openssl/core.h>
#include <openssl/provider.h>
#include <openssl/modes.h>
#include <openssl/types.h>
#include <openssl/core_dispatch.h>
#include <openssl/params.h>
#include <openssl/err.h>
#include <openssl/proverr.h>
#include <openssl/core_names.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
#include <openssl/sha.h>
#ifdef ENABLE_QAT_HW_GCM
# include "cpa.h"
# include "cpa_types.h"
# include "cpa_cy_sym.h"
# include "cpa_cy_drbg.h"
#endif
# ifdef ENABLE_QAT_SW_GCM
# include <intel-ipsec-mb.h>
#endif
#define IV_STATE_UNINITIALISED 0 /* initial state is not initialized */
#define GCM_TAG_MAX_SIZE 16
#define PROV_CIPHER_FLAG_AEAD 0x0001
#define PROV_CIPHER_FLAG_CUSTOM_IV 0x0002
#define PROV_CIPHER_FLAG_CTS 0x0004
#define PROV_CIPHER_FLAG_TLS1_MULTIBLOCK 0x0008
#define PROV_CIPHER_FLAG_RAND_KEY 0x0010
#define GCM_IV_MAX_SIZE (1024 / 8)
#define QAT_AES_BLOCK_SIZE 16
typedef struct qat_evp_cipher_st {
int nid;
int block_size;
/* Default value for variable length ciphers */
int key_len;
int iv_len;
/* Legacy structure members */
/* Various flags */
unsigned long flags;
/* How the EVP_CIPHER was created. */
int origin;
/* init key */
int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
const unsigned char *iv, int enc);
/* encrypt/decrypt data */
int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
const unsigned char *in, size_t inl);
/* cleanup ctx */
int (*cleanup) (EVP_CIPHER_CTX *);
/* how big ctx->cipher_data needs to be */
int ctx_size;
/* Populate a ASN1_TYPE with parameters */
int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
/* Get parameters from a ASN1_TYPE */
int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
/* Miscellaneous operations */
int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
/* Application data */
void *app_data;
/* New structure members */
/* Above comment to be removed when legacy has gone */
int name_id;
char *type_name;
const char *description;
OSSL_PROVIDER *prov;
CRYPTO_RWLOCK *lock;
OSSL_FUNC_cipher_newctx_fn *newctx;
OSSL_FUNC_cipher_encrypt_init_fn *einit;
OSSL_FUNC_cipher_decrypt_init_fn *dinit;
OSSL_FUNC_cipher_update_fn *cupdate;
OSSL_FUNC_cipher_final_fn *cfinal;
OSSL_FUNC_cipher_cipher_fn *ccipher;
OSSL_FUNC_cipher_freectx_fn *freectx;
OSSL_FUNC_cipher_dupctx_fn *dupctx;
OSSL_FUNC_cipher_get_params_fn *get_params;
OSSL_FUNC_cipher_get_ctx_params_fn *get_ctx_params;
OSSL_FUNC_cipher_set_ctx_params_fn *set_ctx_params;
OSSL_FUNC_cipher_gettable_params_fn *gettable_params;
OSSL_FUNC_cipher_gettable_ctx_params_fn *gettable_ctx_params;
OSSL_FUNC_cipher_settable_ctx_params_fn *settable_ctx_params;
}QAT_EVP_CIPHER;
# pragma pack(push, 16)
typedef struct qat_gcm_ctx_st {
#ifdef ENABLE_QAT_SW_GCM
/* gcm_key_data to be at the top for 64 byte alignment
* needed by IPsec_mb library */
struct gcm_key_data key_data;
struct gcm_context_data gcm_ctx;
int init_flags;
unsigned int ckey_set;
unsigned char* tls_aad;
int tls_aad_len;
unsigned int tls_aad_set;
unsigned char* tag;
unsigned char* calculated_tag;
size_t tag_len;
unsigned int tag_set;
unsigned int tag_calculated;
unsigned char* iv;
unsigned char* next_iv;
int iv_len;
unsigned int iv_set;
int iv_gen;
#endif
#ifdef ENABLE_QAT_HW_GCM
int inst_num;
CpaCySymSessionSetupData* session_data;
CpaCySymSessionCtx qat_ctx;
int init_params_set;
/* This flag is set to 1 when the session has been initilized */
int is_session_init;
/* QAT Op Params */
CpaCySymOpData OpData;
/* TODO Both buffer point to the same area of memory
* and the operation is done in place.
* Why am I using 2 separate buffers instead of one like in GCM sample?
* Do I need to allocate and use separate metadata?
*/
CpaBufferList srcBufferList;
CpaBufferList dstBufferList;
CpaFlatBuffer srcFlatBuffer[1];
CpaFlatBuffer dstFlatBuffer[1];
/* -- Crypto -- */
/* Pointer to the IV that is used in the current operation:
* - In Sync case this points to the contiguos memory buffer that is
* sent to the HW
* - In asynch this point to the static memory in evp_ctx->iv hence it
* must not be alloc or free
*/
Cpa8U *iv;
/* IV that will be used in the next operation:
* In the SW engine the IV in the context and the IV used by the cipher
* are stored in different variables.
* This is a separate value and can be modified without affecting
* the current operation.
* For example: TLS case increment the IV before doing the encryption,
* but the current operation still used the not-incremented IV
*/
Cpa8U next_iv[EVP_MAX_IV_LENGTH];
/* Length of the IV (it is always 12 Byte for GCM in TLS case */
unsigned int iv_len;
/* Flag that indicates whether the IV has been set
* TODO The value is set correctly but never read and actually used...
*/
unsigned char iv_set;
/* This flag is used to control the generation of the IV */
unsigned char iv_gen;
/* The tag is saved in evp_ctx->buf */
int tag_len;
/* Pointer to AAD.
* In the TLS case this will contain the TLS header */
Cpa8U *aad;
/* -- TLS data -- */
/* Length of the AAD in the TLS case.
* This is used like a flag: when Update case this is set to -1*/
int tls_aad_len;
/* Size of the meta data for the driver
* It cannot allocate memory so this must be done by the user application */
unsigned int meta_size;
/* Pointer to pCipherKey */
Cpa8U *cipher_key;
/* Flag to keep track of key passed */
int key_set;
#endif
unsigned int mode; /* The mode that we are using */
size_t keylen;
size_t ivlen_min;
size_t tls_aad_pad_sz;
uint64_t tls_enc_records; /* Number of TLS records encrypted */
/*
* num contains the number of bytes of |iv| which are valid for modes that
* manage partial blocks themselves.
*/
size_t num;
size_t bufsz; /* Number of bytes in buf */
unsigned int enc:1; /* Set to 1 if we are encrypting or 0 otherwise */
unsigned int pad:1; /* Whether padding should be used or not */
unsigned int iv_gen_rand:1; /* No IV was specified, so generate a rand IV */
unsigned char buf[QAT_AES_BLOCK_SIZE]; /* Buffer of partial blocks processed via update calls */
OSSL_LIB_CTX *libctx; /* needed for rand calls */
ctr128_f ctr;
}
__attribute__((aligned(64))) QAT_GCM_CTX;
# pragma pack(pop)
typedef struct qat_aes_gcm_ctx_st {
QAT_GCM_CTX base;
QAT_EVP_CIPHER *cipher;
}QAT_AES_GCM_CTX;
int QAT_AES_GCM_CTX_get_nid(const QAT_AES_GCM_CTX *ctx);
void qat_gcm_initctx(void *provctx, QAT_GCM_CTX *ctx, size_t keybits,
size_t ivlen_min);
int qat_gcm_get_ctx_params(void *vctx, OSSL_PARAM params[]);
int qat_gcm_set_ctx_params(void *vctx, const OSSL_PARAM params[]);
int qat_gcm_einit(void *ctx, const unsigned char* inkey,
int keylen, const unsigned char* iv, int ivlen,
int enc);
int qat_gcm_dinit(void *ctx, const unsigned char* inkey,
int keylen, const unsigned char* iv, int ivlen,
int enc);
int qat_gcm_stream_update(void *ctx, unsigned char *out,
size_t *outl, size_t outsize,
const unsigned char *in, size_t inl);
int qat_gcm_stream_final(void *ctx, unsigned char *out,
size_t *outl, size_t outsize);
int qat_gcm_cipher(void *ctx, unsigned char *out,
size_t *outl, size_t outsize,
const unsigned char *in, size_t inl);
#define QAT_aes_gcm_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits,nid) \
static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params; \
static int alg##_##kbits##_##lc##_get_params(OSSL_PARAM params[]) \
{ \
return qat_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
flags, kbits, blkbits, ivbits); \
} \
static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx; \
static void * alg##kbits##lc##_newctx(void *provctx) \
{ \
return alg##_##lc##_newctx(provctx, kbits,nid); \
} \
const OSSL_DISPATCH alg##kbits##lc##_functions[] = { \
{ OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbits##lc##_newctx }, \
{ OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))alg##_##lc##_freectx }, \
{ OSSL_FUNC_CIPHER_ENCRYPT_INIT, (void (*)(void))qat_##lc##_einit }, \
{ OSSL_FUNC_CIPHER_DECRYPT_INIT, (void (*)(void))qat_##lc##_dinit }, \
{ OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))qat_##lc##_stream_update }, \
{ OSSL_FUNC_CIPHER_FINAL, (void (*)(void))qat_##lc##_stream_final }, \
{ OSSL_FUNC_CIPHER_CIPHER, (void (*)(void))qat_##lc##_cipher }, \
{ OSSL_FUNC_CIPHER_GET_PARAMS, \
(void (*)(void)) alg##_##kbits##_##lc##_get_params }, \
{ OSSL_FUNC_CIPHER_GET_CTX_PARAMS, \
(void (*)(void)) qat_##lc##_get_ctx_params }, \
{ OSSL_FUNC_CIPHER_SET_CTX_PARAMS, \
(void (*)(void)) qat_##lc##_set_ctx_params }, \
{ OSSL_FUNC_CIPHER_GETTABLE_PARAMS, \
(void (*)(void))qat_cipher_generic_gettable_params }, \
{ OSSL_FUNC_CIPHER_GETTABLE_CTX_PARAMS, \
(void (*)(void))qat_cipher_aead_gettable_ctx_params }, \
{ OSSL_FUNC_CIPHER_SETTABLE_CTX_PARAMS, \
(void (*)(void))qat_cipher_aead_settable_ctx_params }, \
{ 0, NULL } \
}
#endif /* QAT_PROV_CIPHERS_H */