forked from intel/QAT_Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qat_hw_asym_common.c
396 lines (363 loc) · 14.1 KB
/
qat_hw_asym_common.c
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2016-2024 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_hw_asym_common.c
*
* This file contains common functions used for asymmetric operations
*
*****************************************************************************/
/* macros defined to allow use of the cpu get and set affinity functions */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#ifndef __USE_GNU
# define __USE_GNU
#endif
#include <pthread.h>
#include <signal.h>
#include <openssl/ossl_typ.h>
#include <openssl/bn.h>
#include "cpa_cy_ln.h"
#include "qat_hw_asym_common.h"
#include "qat_utils.h"
#include "e_qat.h"
#include "qat_hw_callback.h"
#include "qat_hw_polling.h"
#include "qat_events.h"
#define QAT_PERFORMOP_RETRIES 3
#ifdef ENABLE_QAT_HW_SM2
#define QAT_SM2_SIZE 32
#endif
/******************************************************************************
* function:
* qat_BN_to_FB(CpaFlatBuffer *fb,
* BIGNUM *bn)
*
* @param fb [OUT] - API flatbuffer structure pointer
* @param bn [IN] - Big Number pointer
* @param qat_svm [OUT] - Instance Memory type
*
* description:
* This function is used to transform the big number format to the flat buffer
* format. The function is used to deliver the RSA Public/Private key structure
* from OpenSSL layer to API layer.
******************************************************************************/
int qat_BN_to_FB(CpaFlatBuffer * fb, const BIGNUM *bn, int qat_svm)
{
if (unlikely((fb == NULL ||
bn == NULL ))) {
WARN("Invalid input params.\n");
return 0;
}
/* Memory allocate for flat buffer */
fb->dataLenInBytes = (Cpa32U) BN_num_bytes(bn);
if (0 == fb->dataLenInBytes) {
fb->pData = NULL;
DEBUG("Datalen = 0, zero byte memory allocation\n");
return 1;
}
if (!qat_svm)
fb->pData = qaeCryptoMemAlloc(fb->dataLenInBytes, __FILE__, __LINE__);
else
fb->pData = OPENSSL_zalloc(fb->dataLenInBytes);
if (NULL == fb->pData) {
fb->dataLenInBytes = 0;
WARN("Failed to allocate fb->pData\n");
return 0;
}
/*
* BN_bn2in() converts the absolute value of big number into big-endian
* form and stores it at output buffer. the output buffer must point to
* BN_num_bytes of memory
*/
BN_bn2bin(bn, fb->pData);
return 1;
}
# if defined(QAT_OPENSSL_PROVIDER) && defined(ENABLE_QAT_HW_SM2)
int qat_BN_to_FB_for_sm2(CpaFlatBuffer * fb, const BIGNUM *bn, int qat_svm)
{
if (unlikely((fb == NULL ||
bn == NULL ))) {
WARN("Invalid input params.\n");
return 0;
}
/* Memory allocate for flat buffer */
fb->dataLenInBytes = (Cpa32U) BN_num_bytes(bn);
if (0 == fb->dataLenInBytes) {
fb->pData = NULL;
DEBUG("Datalen = 0, zero byte memory allocation\n");
return 1;
}
if (fb->dataLenInBytes < QAT_SM2_SIZE)
fb->dataLenInBytes = fb->dataLenInBytes + (QAT_SM2_SIZE - fb->dataLenInBytes);
if (!qat_svm)
fb->pData = qaeCryptoMemAlloc(fb->dataLenInBytes, __FILE__, __LINE__);
else
fb->pData = OPENSSL_zalloc(fb->dataLenInBytes);
if (NULL == fb->pData) {
fb->dataLenInBytes = 0;
WARN("Failed to allocate fb->pData\n");
return 0;
}
/*
* BN_bn2in() converts the absolute value of big number into big-endian
* form and stores it at output buffer. the output buffer must point to
* BN_num_bytes of memory
*/
BN_bn2bin(bn, fb->pData);
return 1;
}
#endif
/* Callback to indicate QAT completion of bignum modular exponentiation */
static void qat_modexpCallbackFn(void *pCallbackTag, CpaStatus status,
void *pOpData, CpaFlatBuffer * pOut)
{
if (enable_heuristic_polling) {
QAT_ATOMIC_DEC(num_asym_requests_in_flight);
}
qat_crypto_callbackFn(pCallbackTag, status, CPA_CY_SYM_OP_CIPHER, pOpData,
NULL, CPA_TRUE);
}
/******************************************************************************
* function:
qat_mod_exp(BIGNUM *res, const BIGNUM *base, const BIGNUM *exp,
const BIGNUM *mod, int *fallback)
*
* @param res [IN] - Result bignum of mod_exp
* @param base [IN] - Base used for mod_exp
* @param exp [IN] - Exponent used for mod_exp
* @param mod [IN] - Modulus used for mod_exp
* @param fallback [OUT] - Pointer to Software Fallback flag
*
* description:
* Bignum modular exponentiation function used in DH and DSA.
*
******************************************************************************/
int qat_mod_exp(BIGNUM *res, const BIGNUM *base, const BIGNUM *exp,
const BIGNUM *mod, int *fallback)
{
CpaCyLnModExpOpData opData;
CpaFlatBuffer result = { 0, };
CpaStatus status = 0;
int retval = 1, job_ret = 0;
int inst_num = QAT_INVALID_INSTANCE;
int qatPerformOpRetries = 0;
op_done_t op_done;
int iMsgRetry = getQatMsgRetryCount();
useconds_t ulPollInterval = getQatPollInterval();
thread_local_variables_t *tlv = NULL;
int qat_svm = QAT_INSTANCE_ANY;
DEBUG(" - Started\n");
opData.base.pData = NULL;
opData.exponent.pData = NULL;
opData.modulus.pData = NULL;
if ((inst_num = get_instance(QAT_INSTANCE_ASYM, QAT_INSTANCE_ANY))
== QAT_INVALID_INSTANCE) {
WARN("Failed to get an instance\n");
if (qat_get_sw_fallback_enabled()) {
CRYPTO_QAT_LOG("Failed to get an instance - fallback to SW - %s\n", __func__);
*fallback = 1;
} else {
QATerr(QAT_F_QAT_MOD_EXP, ERR_R_INTERNAL_ERROR);
}
retval = 0;
goto exit;
}
qat_svm = !qat_instance_details[inst_num].qat_instance_info.requiresPhysicallyContiguousMemory;
if (qat_BN_to_FB(&opData.base, (BIGNUM *)base, qat_svm) != 1 ||
qat_BN_to_FB(&opData.exponent, (BIGNUM *)exp, qat_svm) != 1 ||
qat_BN_to_FB(&opData.modulus, (BIGNUM *)mod, qat_svm) != 1) {
WARN("Failed to convert base, exponent or modulus to flatbuffer\n");
QATerr(QAT_F_QAT_MOD_EXP, QAT_R_BUF_CONV_FAIL);
retval = 0;
goto exit;
}
result.dataLenInBytes = BN_num_bytes(mod);
result.pData = qat_mem_alloc(result.dataLenInBytes, qat_svm, __FILE__, __LINE__);
if (NULL == result.pData) {
WARN("Failed to allocate result.pData\n");
QATerr(QAT_F_QAT_MOD_EXP, QAT_R_RESULT_PDATA_ALLOC_FAIL);
retval = 0;
goto exit;
}
tlv = qat_check_create_local_variables();
if (NULL == tlv) {
WARN("could not create local variables\n");
QATerr(QAT_F_QAT_MOD_EXP, ERR_R_INTERNAL_ERROR);
retval = 0;
goto exit;
}
#ifdef QAT_BORINGSSL
qat_init_op_done(&op_done,qat_svm);
#else
qat_init_op_done(&op_done);
#endif
if (op_done.job != NULL) {
if (qat_setup_async_event_notification(op_done.job) == 0) {
WARN("Failed to setup async event notifications\n");
QATerr(QAT_F_QAT_MOD_EXP, QAT_R_MOD_SETUP_ASYNC_EVENT_FAIL);
retval = 0;
qat_cleanup_op_done(&op_done);
goto exit;
}
}
do {
if (status == CPA_STATUS_RETRY &&
(inst_num = get_instance(QAT_INSTANCE_ASYM, qat_svm))
== QAT_INVALID_INSTANCE) {
WARN("Failure to get an instance\n");
if (qat_get_sw_fallback_enabled()) {
CRYPTO_QAT_LOG("Failed to get an instance - fallback to SW - %s\n", __func__);
*fallback = 1;
} else {
QATerr(QAT_F_QAT_MOD_EXP, QAT_R_MOD_GET_NEXT_INST_FAIL);
}
if (op_done.job != NULL) {
qat_clear_async_event_notification(op_done.job);
}
retval = 0;
qat_cleanup_op_done(&op_done);
goto exit;
}
status = cpaCyLnModExp(qat_instance_handles[inst_num], qat_modexpCallbackFn, &op_done,
&opData, &result);
if (status == CPA_STATUS_RETRY) {
if (op_done.job == NULL) {
usleep(ulPollInterval +
(qatPerformOpRetries % QAT_RETRY_BACKOFF_MODULO_DIVISOR));
qatPerformOpRetries++;
if (iMsgRetry != QAT_INFINITE_MAX_NUM_RETRIES) {
if (qatPerformOpRetries >= iMsgRetry) {
WARN("No. of retries exceeded max retry : %d\n", iMsgRetry);
break;
}
}
} else {
if ((qat_wake_job(op_done.job, ASYNC_STATUS_EAGAIN) == 0) ||
(qat_pause_job(op_done.job, ASYNC_STATUS_EAGAIN) == 0)) {
WARN("qat_wake_job or qat_pause_job failed\n");
break;
}
}
}
}
while (status == CPA_STATUS_RETRY);
if (CPA_STATUS_SUCCESS != status) {
WARN("Failed to submit request to qat - status = %d\n", status);
if (qat_get_sw_fallback_enabled() &&
(status == CPA_STATUS_RESTARTING || status == CPA_STATUS_FAIL)) {
CRYPTO_QAT_LOG("Failed to submit request to qat inst_num %d device_id %d - fallback to SW - %s\n",
inst_num,
qat_instance_details[inst_num].qat_instance_info.physInstId.packageId,
__func__);
*fallback = 1;
} else {
QATerr(QAT_F_QAT_MOD_EXP, QAT_R_MOD_LN_MOD_EXP_FAIL);
}
if (op_done.job != NULL)
qat_clear_async_event_notification(op_done.job);
retval = 0;
qat_cleanup_op_done(&op_done);
goto exit;
}
QAT_INC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
if (qat_use_signals()) {
if (tlv->localOpsInFlight == 1) {
if (sem_post(&hw_polling_thread_sem) != 0) {
WARN("hw sem_post failed!, hw_polling_thread_sem address: %p.\n",
&hw_polling_thread_sem);
QATerr(QAT_F_QAT_MOD_EXP, ERR_R_INTERNAL_ERROR);
retval = 0;
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
goto exit;
}
}
}
if (qat_get_sw_fallback_enabled()) {
CRYPTO_QAT_LOG("Submit success qat inst_num %d device_id %d - %s\n",
inst_num,
qat_instance_details[inst_num].qat_instance_info.physInstId.packageId,
__func__);
}
if (enable_heuristic_polling) {
QAT_ATOMIC_INC(num_asym_requests_in_flight);
}
do {
if(op_done.job != NULL) {
/* If we get a failure on qat_pause_job then we will
not flag an error here and quit because we have
an asynchronous request in flight.
We don't want to start cleaning up data
structures that are still being used. If
qat_pause_job fails we will just yield and
loop around and try again until the request
completes and we can continue. */
if ((job_ret = qat_pause_job(op_done.job, ASYNC_STATUS_OK)) == 0)
sched_yield();
} else {
sched_yield();
}
}
while (!op_done.flag ||
QAT_CHK_JOB_RESUMED_UNEXPECTEDLY(job_ret));
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
if (op_done.verifyResult != CPA_TRUE) {
WARN("Verification of result failed\n");
if (qat_get_sw_fallback_enabled() && op_done.status == CPA_STATUS_FAIL) {
CRYPTO_QAT_LOG("Verification of result failed for qat inst_num %d device_id %d - fallback to SW - %s\n",
inst_num,
qat_instance_details[inst_num].qat_instance_info.physInstId.packageId,
__func__);
*fallback = 1;
} else {
QATerr(QAT_F_QAT_MOD_EXP, ERR_R_INTERNAL_ERROR);
}
retval = 0;
qat_cleanup_op_done(&op_done);
goto exit;
}
qat_cleanup_op_done(&op_done);
/* Convert the flatbuffer results back to a BN */
BN_bin2bn(result.pData, result.dataLenInBytes, res);
exit:
QAT_MEM_FREE_FLATBUFF(opData.base, qat_svm);
QAT_MEM_FREE_FLATBUFF(opData.exponent, qat_svm);
QAT_MEM_FREE_FLATBUFF(opData.modulus, qat_svm);
QAT_MEM_FREE_FLATBUFF(result, qat_svm);
return retval;
}