-
Notifications
You must be signed in to change notification settings - Fork 128
/
qat_hw_sm3.c
925 lines (819 loc) · 31.3 KB
/
qat_hw_sm3.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2023-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_sm3.c
*
* This file contains the engine implementations for SM3 Hash operations
*
*****************************************************************************/
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <string.h>
#include <pthread.h>
#include <signal.h>
#include "e_qat.h"
#include "qat_utils.h"
#include "qat_hw_callback.h"
#include "qat_hw_polling.h"
#include "qat_events.h"
#include "qat_evp.h"
#include "cpa.h"
#include "cpa_types.h"
#include "cpa_cy_sym.h"
#include "qat_hw_sm3.h"
#include "qat_hw_ciphers.h"
#include <openssl/evp.h>
#include <openssl/err.h>
#include <openssl/tls1.h>
#include <openssl/async.h>
#include <openssl/ssl.h>
#ifdef ENABLE_QAT_HW_SM3
static inline QAT_SM3_CTX *qat_hw_sm3_get_ctx(EVP_MD_CTX *ctx)
{
if (unlikely(ctx == NULL)) {
WARN("hw sm3 ctx %p is NULL\n", ctx);
return NULL;
}
return ((QAT_SM3_CTX *) (EVP_MD_CTX_md_data(ctx) + sizeof(SM3_CTX)));
}
/******************************************************************************
* function:
*
* static void qat_hw_sm3_cb(void *pCallbackTag, CpaStatus status,
* const CpaCySymOp operationType,
* void *pOpData, CpaBufferList *pDstBuffer,
* CpaBoolean verifyResult)
*
* @param pCallbackTag [IN] - Opaque value provided by user while making
* individual function call. Cast to op_done_pipe_t.
* @param status [IN] - Status of the operation.
* @param operationType [IN] - Identifies the operation type requested.
* @param pOpData [IN] - Pointer to structure with input parameters.
* @param pDstBuffer [IN] - Destination buffer to hold the data output.
* @param verifyResult [IN] - Used to verify digest result.
*
* description:
Callback to indicate the completion of crypto operation
******************************************************************************/
static void qat_hw_sm3_cb(void *pCallbackTag, CpaStatus status,
const CpaCySymOp operationType,
void *pOpData, CpaBufferList *pDstBuffer,
CpaBoolean verifyResult)
{
if (enable_heuristic_polling)
QAT_ATOMIC_DEC(num_cipher_pipeline_requests_in_flight);
qat_crypto_callbackFn(pCallbackTag, status, CPA_CY_SYM_OP_HASH, pOpData,
NULL, CPA_TRUE);
}
/******************************************************************************
* function:
* qat_hw_sm3_setup_param(EVP_MD_CTX *ctx)
*
* @param ctx [IN] - pointer to context
*
* @retval 1 function succeeded
* @retval 0 function failed
*
* description:
* This function synchronises the initialisation of the QAT session and
* pre-allocates the necessary buffers for the session.
******************************************************************************/
static int qat_hw_sm3_setup_param(QAT_SM3_CTX *qat_sm3_ctx)
{
int numBuffers = 2;
Cpa32U bufferMetaSize = 0;
Cpa32U sctx_size = 0;
CpaStatus status;
CpaCySymSessionSetupData *session_data;
session_data = OPENSSL_zalloc(sizeof(CpaCySymSessionSetupData)
+ sizeof(CpaCySymOpData)
+ sizeof(int));
if (NULL == session_data) {
WARN("session setup data Malloc failure\n");
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_MALLOC_FAILURE);
return 0;
}
qat_sm3_ctx->session_data = session_data;
qat_sm3_ctx->pOpData = (void *)session_data
+ sizeof(CpaCySymSessionSetupData);
qat_sm3_ctx->rc_refs = (void *)session_data
+ sizeof(CpaCySymSessionSetupData)
+ sizeof(CpaCySymOpData);
session_data->sessionPriority = CPA_CY_PRIORITY_HIGH;
/* Hash only operation on the data */
session_data->symOperation = CPA_CY_SYM_OP_HASH;
/* Place the digest result in a buffer unrelated to srcBuffer */
session_data->digestIsAppended = CPA_FALSE;
/* Set FALSE to generate a message digest, instead of doing digest verify */
session_data->verifyDigest = CPA_FALSE;
/* Set the hash mode and the length of the digest */
session_data->hashSetupData.hashAlgorithm = CPA_CY_SYM_HASH_SM3;
session_data->hashSetupData.hashMode = CPA_CY_SYM_HASH_MODE_PLAIN;
session_data->hashSetupData.digestResultLenInBytes = QAT_SM3_DIGEST_SIZE;
session_data->hashSetupData.authModeSetupData.authKey = NULL;
session_data->hashSetupData.nestedModeSetupData.pInnerPrefixData = NULL;
session_data->hashSetupData.nestedModeSetupData.pOuterPrefixData = NULL;
DUMP_SESSION_SETUP_DATA(qat_sm3_ctx->session_data);
/* Allocate instance */
qat_sm3_ctx->inst_num = get_instance(QAT_INSTANCE_SYM, QAT_INSTANCE_ANY);
if (qat_sm3_ctx->inst_num == QAT_INVALID_INSTANCE) {
WARN("Failed to get a QAT instance.\n");
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, QAT_R_GET_INSTANCE_FAILURE);
goto err;
}
qat_sm3_ctx->qat_svm = !qat_instance_details[qat_sm3_ctx->inst_num].qat_instance_info.requiresPhysicallyContiguousMemory;
DEBUG("inst_num = %d inst mem type = %d \n", qat_sm3_ctx->inst_num, qat_sm3_ctx->qat_svm);
/* Determine size of session context to allocate */
status =
cpaCySymSessionCtxGetSize(qat_instance_handles[qat_sm3_ctx->inst_num],
qat_sm3_ctx->session_data, &sctx_size);
if (status != CPA_STATUS_SUCCESS) {
WARN("Failed to get SessionCtx size.\n");
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_INTERNAL_ERROR);
goto err;
}
DEBUG("Size of session ctx = %d\n", sctx_size);
qat_sm3_ctx->session_ctx =
(CpaCySymSessionCtx) qat_mem_alloc(sctx_size, qat_sm3_ctx->qat_svm,__FILE__, __LINE__);
if (qat_sm3_ctx->session_ctx == NULL) {
WARN("Memory alloc failed for session ctx\n");
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_MALLOC_FAILURE);
goto err;
}
/* Initialise Session data */
status = cpaCySymInitSession(qat_instance_handles[qat_sm3_ctx->inst_num],
qat_hw_sm3_cb,
qat_sm3_ctx->session_data,
qat_sm3_ctx->session_ctx);
if (status != CPA_STATUS_SUCCESS) {
WARN("cpaCySymInitSession failed! Status = %d\n", status);
if (((status == CPA_STATUS_RESTARTING) || (status == CPA_STATUS_FAIL))) {
CRYPTO_QAT_LOG
("Failed to submit request to qat inst_num %d device_id %d\n",
qat_sm3_ctx->inst_num,
qat_instance_details[qat_sm3_ctx->inst_num].qat_instance_info.
physInstId.packageId);
}
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_INTERNAL_ERROR);
goto err;
}
/* Get buffer metasize */
status =
cpaCyBufferListGetMetaSize(qat_instance_handles[qat_sm3_ctx->inst_num],
numBuffers, &bufferMetaSize);
if (status != CPA_STATUS_SUCCESS) {
WARN("cpaCyBufferListGetMetaSize failed for the instance id %d\n",
qat_sm3_ctx->inst_num);
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_INTERNAL_ERROR);
goto err;
}
DEBUG("Buffer MetaSize : %d\n", bufferMetaSize);
if (bufferMetaSize) {
qat_sm3_ctx->pSrcBufferList.pPrivateMetaData =
qat_mem_alloc(bufferMetaSize, qat_sm3_ctx->qat_svm, __FILE__, __LINE__);
if (qat_sm3_ctx->pSrcBufferList.pPrivateMetaData == NULL) {
WARN("QMEM alloc failed for PrivateData\n");
QATerr(QAT_F_QAT_HW_SM3_SETUP_PARAM, ERR_R_MALLOC_FAILURE);
goto err;
}
qat_sm3_ctx->pSrcBufferList.numBuffers = 1;
} else {
qat_sm3_ctx->pSrcBufferList.pPrivateMetaData = NULL;
qat_sm3_ctx->pSrcBufferList.numBuffers = 0;
}
qat_sm3_ctx->context_params_set = 1;
return 1;
err:
QAT_MEM_FREE_NONZERO_BUFF(qat_sm3_ctx->pSrcBufferList.pPrivateMetaData, qat_sm3_ctx->qat_svm);
QAT_MEM_FREE_NONZERO_BUFF(qat_sm3_ctx->session_ctx, qat_sm3_ctx->qat_svm);
OPENSSL_free(session_data);
qat_sm3_ctx->session_data = NULL;
qat_sm3_ctx->pOpData = NULL;
qat_sm3_ctx->rc_refs = NULL;
return 0;
}
static int qat_hw_sm3_do_offload(QAT_SM3_CTX *qat_sm3_ctx, const void *in,
size_t len, int packet_type)
{
int job_ret = 0;
int ret = 0; /* Default fail */
CpaStatus status;
op_done_t op_done;
thread_local_variables_t *tlv = NULL;
CpaFlatBuffer src_buffer;
if (!qat_sm3_ctx->context_params_set) {
if (!qat_hw_sm3_setup_param(qat_sm3_ctx)) {
WARN("SM3 operational params setup failed.\n");
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
return 0;
}
}
/* The variables in and out remain separate */
if (!qat_sm3_ctx->qat_svm) {
src_buffer.pData =
qaeCryptoMemAlloc(len + QAT_SM3_DIGEST_SIZE, __FILE__, __LINE__);
if ((src_buffer.pData) == NULL) {
WARN("Unable to allocate memory for buffer for sm3 hash.\n");
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_MALLOC_FAILURE);
goto err;
}
}
src_buffer.dataLenInBytes = len + QAT_SM3_DIGEST_SIZE;
if (len == 0) {
DEBUG("qat hw start offload: Length 0\n");
} else {
DUMPL("qat hw start offload", in, (len < 128) ? len : 128);
if (!qat_sm3_ctx->qat_svm)
memcpy(src_buffer.pData, in, len);
else
src_buffer.pData = (Cpa8U *)in;
}
qat_sm3_ctx->pSrcBufferList.pBuffers = &src_buffer;
tlv = qat_check_create_local_variables();
if (NULL == tlv) {
WARN("could not create local variables\n");
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
goto err;
}
qat_init_op_done(&op_done);
if (op_done.job != NULL) {
if (qat_setup_async_event_notification(op_done.job) == 0) {
WARN("Failed to setup async event notification\n");
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
qat_cleanup_op_done(&op_done);
goto err;
}
}
qat_sm3_ctx->pSrcBufferList.pUserData = NULL;
qat_sm3_ctx->pOpData->sessionCtx = qat_sm3_ctx->session_ctx;
if (CPA_CY_SYM_PACKET_TYPE_LAST_PARTIAL == packet_type &&
qat_sm3_ctx->qat_offloaded == 0) {
qat_sm3_ctx->pOpData->packetType = CPA_CY_SYM_PACKET_TYPE_FULL;
} else {
qat_sm3_ctx->pOpData->packetType = packet_type;
}
/* The message length, in bytes, of the source buffer that the hash
* will be computed on. */
qat_sm3_ctx->pOpData->messageLenToHashInBytes = len;
qat_sm3_ctx->pOpData->pDigestResult = src_buffer.pData + len;
if (!is_instance_available(qat_sm3_ctx->inst_num)) {
WARN("QAT instance %d not available.\n", qat_sm3_ctx->inst_num);
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
if (op_done.job != NULL) {
qat_clear_async_event_notification(op_done.job);
}
qat_cleanup_op_done(&op_done);
goto err;
}
/* same src & dst for an in-place operation */
status = qat_sym_perform_op(qat_sm3_ctx->inst_num,
&op_done,
qat_sm3_ctx->pOpData,
&(qat_sm3_ctx->pSrcBufferList),
&(qat_sm3_ctx->pSrcBufferList),
&(qat_sm3_ctx->session_data->verifyDigest));
if (status != CPA_STATUS_SUCCESS) {
if (((status == CPA_STATUS_RESTARTING) || (status == CPA_STATUS_FAIL))) {
CRYPTO_QAT_LOG
("Failed to submit request to qat inst_num %d device_id %d - %s\n",
qat_sm3_ctx->inst_num,
qat_instance_details[qat_sm3_ctx->inst_num].qat_instance_info.
physInstId.packageId, __func__);
}
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
if (op_done.job != NULL)
qat_clear_async_event_notification(op_done.job);
qat_cleanup_op_done(&op_done);
goto err;
}
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_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
if (op_done.job != NULL)
qat_clear_async_event_notification(op_done.job);
qat_cleanup_op_done(&op_done);
goto err;
}
}
}
if (enable_heuristic_polling)
QAT_ATOMIC_INC(num_cipher_pipeline_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");
QATerr(QAT_F_QAT_HW_SM3_DO_OFFLOAD, ERR_R_INTERNAL_ERROR);
if (op_done.status == CPA_STATUS_FAIL) {
CRYPTO_QAT_LOG
("Verification of result failed for qat inst_num %d device_id %d - %s\n",
qat_sm3_ctx->inst_num,
qat_instance_details[qat_sm3_ctx->inst_num].qat_instance_info.
physInstId.packageId, __func__);
qat_cleanup_op_done(&op_done);
goto err;
}
}
qat_cleanup_op_done(&op_done);
/* final partial */
if (CPA_CY_SYM_PACKET_TYPE_LAST_PARTIAL == packet_type) {
memcpy(qat_sm3_ctx->digest_data, src_buffer.pData + len,
QAT_SM3_DIGEST_SIZE);
ret = 1;
} else {
qat_sm3_ctx->qat_offloaded = 1;
ret = 1;
}
err:
if (!qat_sm3_ctx->qat_svm)
qaeCryptoMemFreeNonZero(src_buffer.pData);
return ret;
}
/******************************************************************************
* function:
* qat_hw_sm3_init(EVP_MD_CTX *ctx)
*
* @param ctx [IN] - pointer to existing context
*
* @retval 1 function succeeded
* @retval 0 function failed
*
* description:
* This function initialises the hash algorithm parameters for EVP context.
*
******************************************************************************/
#ifdef QAT_OPENSSL_PROVIDER
int qat_hw_sm3_init(void *ctx)
#else
int qat_hw_sm3_init(EVP_MD_CTX *ctx)
#endif
{
#ifndef QAT_OPENSSL_PROVIDER
memset(QAT_SM3_GET_CTX(ctx), 0, sizeof(QAT_SM3_CTX));
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
if (qat_openssl3_sm3_fallback == 1) {
DEBUG("- Switched to software mode\n");
int sts = 0;
int (*sw_fn_ptr)(EVP_MD_CTX *) = NULL;
sw_fn_ptr = EVP_MD_meth_get_init((EVP_MD *)EVP_sm3());
sts = (*sw_fn_ptr)(ctx);
DEBUG("SW Finished %p\n", ctx);
return sts;
}
# endif
#endif
return 1;
}
/******************************************************************************
* function:
* qat_hw_sm3_update(EVP_MD_CTX *ctx, const void *in, size_t len)
*
* @param ctx [IN] - pointer to existing context
* @param in [IN] - input buffer
* @param len [IN] - length of input buffer
*
* @retval -1 function failed
* @retval len function succeeded
*
* description:
* This function performs the cryptographic transform according to the
* parameters setup during initialisation.
*
*
******************************************************************************/
#ifdef QAT_OPENSSL_PROVIDER
int qat_hw_sm3_update(void *ctx, const void *in, size_t len)
#else
int qat_hw_sm3_update(EVP_MD_CTX *ctx, const void *in, size_t len)
#endif
{
const unsigned char *data = in;
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
int sts = 0;
int (*sw_fn_ptr)(EVP_MD_CTX *, const void *, size_t) = NULL;
#endif
QAT_SM3_CTX *qat_sm3_ctx = NULL;
unsigned char *p;
size_t n;
if (len == 0) {
DEBUG("sm3 hw update with len = 0 %p\n", ctx);
return 1;
}
if (unlikely(in == NULL)) {
WARN("in %p is NULL\n", in);
QATerr(QAT_F_QAT_HW_SM3_UPDATE, QAT_R_INVALID_INPUT);
return 0;
}
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
if (qat_openssl3_sm3_fallback == 1) {
DEBUG("- Switched to software mode\n");
goto fallback;
}
# endif
#ifdef QAT_OPENSSL_PROVIDER
qat_sm3_ctx = (QAT_SM3_CTX *)ctx;
#else
qat_sm3_ctx = qat_hw_sm3_get_ctx(ctx);
#endif
if (unlikely(qat_sm3_ctx == NULL)) {
WARN("SM3 context hash data is NULL.\n");
QATerr(QAT_F_QAT_HW_SM3_UPDATE, QAT_R_SM3_CTX_NULL);
return 0;
}
qat_sm3_ctx->rcv_count += len;
DUMPL("sm3 hw update receive", in, len);
n = qat_sm3_ctx->num;
/* Packets left from previous process */
if (n != 0) {
p = (unsigned char *)qat_sm3_ctx->data;
/* Offload threshold met */
if (len >= QAT_SM3_OFFLOAD_THRESHOLD
|| len + n >= QAT_SM3_OFFLOAD_THRESHOLD) {
/* Use part of new packet filling the packet buffer */
memcpy(p + n, data, QAT_SM3_OFFLOAD_THRESHOLD - n);
if (!qat_hw_sm3_do_offload
(qat_sm3_ctx, p, QAT_SM3_OFFLOAD_THRESHOLD,
CPA_CY_SYM_PACKET_TYPE_PARTIAL))
return 1;
/* The data left of new input */
n = QAT_SM3_OFFLOAD_THRESHOLD - n;
data += n;
len -= n;
qat_sm3_ctx->num = 0;
/*
* We use memset rather than OPENSSL_cleanse() here deliberately.
* Using OPENSSL_cleanse() here could be a performance issue. It
* will get properly cleansed on finalisation so this isn't a
* security problem.
*/
memset(p, 0, QAT_SM3_OFFLOAD_THRESHOLD); /* keep it zeroed */
} else {
/* Append the new packets to buffer */
memcpy(p + n, data, len);
qat_sm3_ctx->num += (unsigned int)len;
return 1;
}
}
n = len / QAT_SM3_OFFLOAD_THRESHOLD;
if (n > 0) {
n *= QAT_SM3_OFFLOAD_THRESHOLD;
if (!qat_hw_sm3_do_offload(qat_sm3_ctx, in, n,
CPA_CY_SYM_PACKET_TYPE_PARTIAL))
return 1;
data += n;
len -= n;
}
/* Save the bytes into buffer if there're some bytes left
after the previous update. */
if (len != 0) {
qat_sm3_ctx->data = OPENSSL_zalloc(QAT_SM3_OFFLOAD_THRESHOLD);
qat_sm3_ctx->data_refs = OPENSSL_zalloc(sizeof(int));
p = (unsigned char *)qat_sm3_ctx->data;
qat_sm3_ctx->num = (unsigned int)len;
memcpy(p, data, len);
}
#ifndef QAT_OPENSSL_PROVIDER
EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_FINALISE);
#endif
return 1;
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
fallback:
sw_fn_ptr = EVP_MD_meth_get_update((EVP_MD *)EVP_sm3());
sts = (*sw_fn_ptr)(ctx, in, len);
DEBUG("SW Finished %p\n", ctx);
return sts;
# endif
}
#ifdef QAT_OPENSSL_PROVIDER
int qat_hw_sm3_copy(QAT_SM3_CTX *to, const QAT_SM3_CTX *from)
#else
int qat_hw_sm3_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
#endif
{
QAT_SM3_CTX *qat_from;
if (NULL == from) {
WARN("sm3 copy from %p is NULL\n", from);
QATerr(QAT_F_QAT_HW_SM3_COPY, QAT_R_CTX_NULL);
return 0;
}
#ifndef QAT_OPENSSL_PROVIDER
/* Digest-copy can be called without a md_data in some condition */
if (EVP_MD_CTX_md_data(from) == 0) {
DEBUG("digest copy without md_data\n");
return 1;
}
qat_from = QAT_SM3_GET_CTX(from);
#else
qat_from = (QAT_SM3_CTX *)from;
#endif
if (NULL == qat_from) {
WARN("qat_from %p is NULL\n", qat_from);
QATerr(QAT_F_QAT_HW_SM3_COPY, QAT_R_CTX_NULL);
return 0;
}
if (qat_from->rc_refs)
(*qat_from->rc_refs)++;
if (qat_from->data_refs)
(*qat_from->data_refs)++;
return 1;
}
/******************************************************************************
* function:
* qat_hw_sm3_final(EVP_MD_CTX *ctx, unsigned char *md)
*
* @param ctx [IN] - pointer to existing context
* @param md [OUT] - output buffer for digest result
*
* @retval -1 function failed
* @retval 1 function succeeded
*
* description:
* This function performs the copy operation of digest into md buffer.
*
******************************************************************************/
#ifdef QAT_OPENSSL_PROVIDER
int qat_hw_sm3_final(void *ctx, unsigned char *md)
#else
int qat_hw_sm3_final(EVP_MD_CTX *ctx, unsigned char *md)
#endif
{
QAT_SM3_CTX *qat_sm3_ctx = NULL;
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
int sts = 0;
int (*sw_fn_ptr)(EVP_MD_CTX *, unsigned char *) = NULL;
#endif
if (md == NULL) {
WARN("hw sm3 md is null\n");
QATerr(QAT_F_QAT_HW_SM3_FINAL, QAT_R_INPUT_PARAM_INVALID);
return 0;
}
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
if (qat_openssl3_sm3_fallback == 1) {
DEBUG("- Switched to software mode\n");
goto fallback;
}
# endif
#ifdef QAT_OPENSSL_PROVIDER
qat_sm3_ctx = (QAT_SM3_CTX *)ctx;
#else
qat_sm3_ctx = qat_hw_sm3_get_ctx(ctx);
#endif
if (qat_sm3_ctx == NULL) {
WARN("qat_sm3_ctx is NULL\n");
QATerr(QAT_F_QAT_HW_SM3_FINAL, QAT_R_CTX_NULL);
return 0;
}
# ifndef ENABLE_QAT_SMALL_PKT_OFFLOAD
if (qat_sm3_ctx->rcv_count <= CRYPTO_SMALL_PACKET_OFFLOAD_THRESHOLD_HW_SM3) {
/* Software calculation can start from init, because SPO threshold will
always small than context buffer and all data are stored in context
buffer */
#ifndef QAT_OPENSSL_PROVIDER
int (*sw_init_ptr)(EVP_MD_CTX *);
int (*sw_update_ptr)(EVP_MD_CTX *, const void *, size_t);
int (*sw_final_ptr)(EVP_MD_CTX *, unsigned char *);
DUMPL("Start ossl calculate", qat_sm3_ctx->data, qat_sm3_ctx->num);
sw_init_ptr = EVP_MD_meth_get_init((EVP_MD *)EVP_sm3());
sw_update_ptr = EVP_MD_meth_get_update((EVP_MD *)EVP_sm3());
sw_final_ptr = EVP_MD_meth_get_final((EVP_MD *)EVP_sm3());
if ((*sw_init_ptr) (ctx) != 1
|| (*sw_update_ptr) (ctx, qat_sm3_ctx->data, qat_sm3_ctx->num) != 1
|| (*sw_final_ptr) (ctx, md) != 1) {
WARN("Software calculate failed %p\n", ctx);
return 0;
}
DUMPL("DigestResult (OSSL)", md, QAT_SM3_DIGEST_SIZE);
return 1;
#else
qat_sm3_ctx->sw_md_ctx = EVP_MD_CTX_new();
if (qat_sm3_ctx->sw_md_ctx == NULL)
WARN("EVP_MD_CTX_new failed.\n");
qat_sm3_ctx->sw_md = EVP_MD_fetch(NULL, "sm3", "provider=default");
if (qat_sm3_ctx->sw_md == NULL) {
WARN("EVP_MD_fetch failed.\n");
}
if (!EVP_DigestInit_ex(qat_sm3_ctx->sw_md_ctx, qat_sm3_ctx->sw_md, NULL)
|| !EVP_DigestUpdate(qat_sm3_ctx->sw_md_ctx, qat_sm3_ctx->data, qat_sm3_ctx->num)
|| !EVP_DigestFinal_ex(qat_sm3_ctx->sw_md_ctx, md, NULL)) {
WARN("QAT_SW SM3 Offload failed \n");
return 0;
}
DUMPL("DigestResult (OSSL)", md, QAT_SM3_DIGEST_SIZE);
return 1;
# endif
}
#endif
qat_sm3_ctx->digest_data = md;
if (!qat_hw_sm3_do_offload(qat_sm3_ctx, qat_sm3_ctx->data, qat_sm3_ctx->num,
CPA_CY_SYM_PACKET_TYPE_LAST_PARTIAL))
return 0;
DUMPL("DigestResult (QAT_HW)", md, QAT_SM3_DIGEST_SIZE);
return 1;
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
fallback:
sw_fn_ptr = EVP_MD_meth_get_final((EVP_MD *)EVP_sm3());
sts = (*sw_fn_ptr)(ctx, md);
DEBUG("SW Finished %p\n", ctx);
return sts;
# endif
}
/******************************************************************************
* function:
* qat_hw_sm3_cleanup(EVP_MD_CTX *ctx)
*
* @param ctx [IN] - pointer to existing context
*
* @retval 1 function succeeded
* @retval 0 function failed
*
* description:
* This function will cleanup all allocated resources required to perform the
* cryptographic transform.
*
******************************************************************************/
#ifdef QAT_OPENSSL_PROVIDER
int qat_hw_sm3_cleanup(QAT_SM3_CTX *ctx)
#else
int qat_hw_sm3_cleanup(EVP_MD_CTX *ctx)
#endif
{
QAT_SM3_CTX *qat_sm3_ctx;
CpaStatus status = 0;
int ret_val = 1;
CpaBoolean sessionInUse = CPA_FALSE;
#ifdef QAT_OPENSSL_PROVIDER
qat_sm3_ctx = (QAT_SM3_CTX *)ctx;
#else
qat_sm3_ctx = qat_hw_sm3_get_ctx(ctx);
#endif
if (NULL == qat_sm3_ctx) {
WARN("qat_sm3_ctx is NULL\n");
QATerr(QAT_F_QAT_HW_SM3_CLEANUP, QAT_R_CTX_NULL);
return 0;
}
#ifndef QAT_OPENSSL_PROVIDER
if (EVP_MD_CTX_md_data(ctx) == NULL) {
DEBUG("digest cleanup without md_data\n");
return 1;
}
#endif
if (qat_sm3_ctx->data_refs) {
if (*qat_sm3_ctx->data_refs > 0) {
(*qat_sm3_ctx->data_refs)--;
DEBUG("HW SM3 data reference decrease to %d\n",
*qat_sm3_ctx->data_refs);
} else {
OPENSSL_free(qat_sm3_ctx->data);
OPENSSL_free(qat_sm3_ctx->data_refs);
}
}
if (qat_sm3_ctx->context_params_set) {
if (*qat_sm3_ctx->rc_refs > 0) {
(*qat_sm3_ctx->rc_refs)--;
DEBUG("HW SM3 resource reference decrease to %d\n",
*qat_sm3_ctx->rc_refs);
return 1;
}
if (is_instance_available(qat_sm3_ctx->inst_num)) {
/* Wait for in-flight requests before removing session */
if (qat_sm3_ctx->session_ctx != NULL) {
do {
cpaCySymSessionInUse(qat_sm3_ctx->session_ctx, &sessionInUse);
} while (sessionInUse);
}
if ((status =
cpaCySymRemoveSession(qat_instance_handles
[qat_sm3_ctx->inst_num],
qat_sm3_ctx->session_ctx))
!= CPA_STATUS_SUCCESS) {
WARN("cpaCySymRemoveSession FAILED, status= %d.!\n", status);
ret_val = 0;
}
} else {
WARN("instance no longer available\n");
}
QAT_MEM_FREE_NONZERO_BUFF(qat_sm3_ctx->session_ctx, qat_sm3_ctx->qat_svm);
qat_sm3_ctx->session_ctx = NULL;
QAT_MEM_FREE_NONZERO_BUFF(qat_sm3_ctx->pSrcBufferList.pPrivateMetaData, qat_sm3_ctx->qat_svm);
qat_sm3_ctx->pSrcBufferList.pPrivateMetaData = NULL;
OPENSSL_free(qat_sm3_ctx->session_data);
qat_sm3_ctx->session_data = NULL;
qat_sm3_ctx->context_params_set = 0;
}
return ret_val;
}
int qat_hw_sm3_md_methods(EVP_MD *c)
{
int res = 1;
res &= EVP_MD_meth_set_result_size(c, QAT_SM3_STATE_SIZE);
res &= EVP_MD_meth_set_input_blocksize(c, QAT_SM3_BLOCK_SIZE);
/* Totally 3 memory sections in application data, common EVP_MD,
SM3_CTX used for SM3 software, and QAT_SM3_CTX for QAT_HW */
res &= EVP_MD_meth_set_app_datasize(c, sizeof(EVP_MD *) +
sizeof(SM3_CTX) + sizeof(QAT_SM3_CTX));
res &= EVP_MD_meth_set_flags(c, EVP_MD_CTX_FLAG_REUSE);
#ifndef QAT_OPENSSL_PROVIDER
res &= EVP_MD_meth_set_init(c, qat_hw_sm3_init);
res &= EVP_MD_meth_set_update(c, qat_hw_sm3_update);
res &= EVP_MD_meth_set_final(c, qat_hw_sm3_final);
res &= EVP_MD_meth_set_copy(c, qat_hw_sm3_copy);
res &= EVP_MD_meth_set_cleanup(c, qat_hw_sm3_cleanup);
#endif
return res;
}
const EVP_MD *qat_hw_create_sm3_meth(int nid, int key_type)
{
int res = 1;
EVP_MD *qat_hw_sm3_meth = NULL;
if ((qat_hw_sm3_meth = EVP_MD_meth_new(nid, key_type)) == NULL) {
WARN("Failed to allocate digest methods for nid %d\n", nid);
QATerr(QAT_F_QAT_HW_CREATE_SM3_METH, QAT_R_INIT_FAILURE);
return NULL;
}
if (qat_hw_offload && (qat_hw_algo_enable_mask & ALGO_ENABLE_MASK_SM3)) {
res = qat_hw_sm3_md_methods(qat_hw_sm3_meth);
if (0 == res) {
WARN("Failed to set MD methods for nid %d\n", nid);
QATerr(QAT_F_QAT_HW_CREATE_SM3_METH, QAT_R_INIT_FAILURE);
EVP_MD_meth_free(qat_hw_sm3_meth);
return NULL;
}
qat_hw_sm3_offload = 1;
DEBUG("QAT HW SM3 Registration succeeded\n");
return qat_hw_sm3_meth;
} else {
qat_hw_sm3_offload = 0;
DEBUG("QAT HW SM3 is disabled, using OpenSSL SW\n");
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
qat_openssl3_sm3_fallback = 1;
res = qat_hw_sm3_md_methods(qat_hw_sm3_meth);
if (0 == res) {
WARN("Failed to set MD methods for nid %d\n", nid);
EVP_MD_meth_free(qat_hw_sm3_meth);
return NULL;
}
return qat_hw_sm3_meth;
# else
# ifdef OPENSSL_NO_SM2_SM3
return NULL;
# else
return (EVP_MD *)EVP_sm3();
# endif
# endif
}
}
#endif /* ENABLE_QAT_HW_SM3 */