-
Notifications
You must be signed in to change notification settings - Fork 127
/
qat_hw_prf.c
1002 lines (904 loc) · 35 KB
/
qat_hw_prf.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
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2022-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_prf.c
*
* This file provides an implementation of the PRF operations for an
* OpenSSL engine
*
*****************************************************************************/
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#ifdef QAT_OPENSSL_3
# include <openssl/core_names.h>
# include <openssl/crypto.h>
# include <openssl/obj_mac.h>
# include <openssl/params.h>
#endif
#include <pthread.h>
#include <string.h>
#include <signal.h>
#include <stdarg.h>
#include "qat_hw_prf.h"
#ifdef ENABLE_QAT_FIPS
# include "qat_prov_cmvp.h"
#endif
#include "cpa.h"
#include "cpa_types.h"
#include "cpa_cy_key.h"
#ifdef ENABLE_QAT_FIPS
extern int qat_fips_key_zeroize;
#endif
static EVP_PKEY_METHOD *_hidden_prf_pmeth = NULL;
#ifndef QAT_OPENSSL_3
/* Have a store of the s/w EVP_PKEY_METHOD for software fallback purposes.
* This is only used for OpenSSL 1.1.1. For OpenSSL 3, we will use the
* default provider for SW fallback purposes. */
static const EVP_PKEY_METHOD *sw_prf_pmeth = NULL;
#endif
#ifdef ENABLE_QAT_HW_PRF
void qat_prf_pkey_methods(void)
{
EVP_PKEY_meth_set_init(_hidden_prf_pmeth, qat_tls1_prf_init);
EVP_PKEY_meth_set_cleanup(_hidden_prf_pmeth, qat_prf_cleanup);
EVP_PKEY_meth_set_derive(_hidden_prf_pmeth, NULL,
qat_prf_tls_derive);
EVP_PKEY_meth_set_ctrl(_hidden_prf_pmeth, qat_tls1_prf_ctrl, NULL);
}
#endif
EVP_PKEY_METHOD *qat_prf_pmeth(void)
{
if (_hidden_prf_pmeth) {
if (!qat_reload_algo)
return _hidden_prf_pmeth;
EVP_PKEY_meth_free(_hidden_prf_pmeth);
}
if ((_hidden_prf_pmeth =
EVP_PKEY_meth_new(EVP_PKEY_TLS1_PRF, 0)) == NULL) {
QATerr(QAT_F_QAT_PRF_PMETH, ERR_R_INTERNAL_ERROR);
return NULL;
}
/* Now save the current (non-offloaded) prf pmeth to sw_prf_pmeth */
/* for software fallback purposes */
#ifndef QAT_OPENSSL_3
if ((sw_prf_pmeth = EVP_PKEY_meth_find(EVP_PKEY_TLS1_PRF)) == NULL) {
QATerr(QAT_F_QAT_PRF_PMETH, ERR_R_INTERNAL_ERROR);
return NULL;
}
#endif
#ifdef ENABLE_QAT_HW_PRF
if (qat_hw_offload && (qat_hw_algo_enable_mask & ALGO_ENABLE_MASK_PRF)) {
qat_prf_pkey_methods();
qat_hw_prf_offload = 1;
DEBUG("QAT HW PRF Registration succeeded\n");
} else {
qat_hw_prf_offload = 0;
}
#endif
if (!qat_hw_prf_offload) {
#ifndef QAT_OPENSSL_PROVIDER
DEBUG("QAT HW PRF is disabled, using OpenSSL SW\n");
#endif
#ifndef QAT_OPENSSL_3
EVP_PKEY_meth_copy(_hidden_prf_pmeth, sw_prf_pmeth);
#else
/* Although QATEngine supports software fallback to the default provider when
* using the OpenSSL 3 legacy engine API, if it fails during the registration
* phase, the pkey method cannot be set correctly because the OpenSSL3 legacy
* engine framework no longer provides a standard method for HKDF, PRF and SM2.
* https://github.com/openssl/openssl/issues/19047
*/
# if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
# ifdef ENABLE_QAT_HW_PRF
qat_openssl3_prf_fallback = 1;
qat_prf_pkey_methods();
return _hidden_prf_pmeth;
# endif
# else
EVP_PKEY_meth_free(_hidden_prf_pmeth);
return NULL;
# endif
#endif
}
return _hidden_prf_pmeth;
}
#ifdef ENABLE_QAT_HW_PRF
/******************************************************************************
* function:
* qat_tls1_prf_init(EVP_PKEY_CTX *ctx)
*
* @param ctx [IN] - PKEY Context structure pointer
*
* @param [OUT] - Status
*
* description:
* Qat PRF init function
******************************************************************************/
int qat_tls1_prf_init(EVP_PKEY_CTX *ctx)
{
QAT_TLS1_PRF_CTX *qat_prf_ctx = NULL;
int inst_num = QAT_INVALID_INSTANCE;
#ifndef QAT_OPENSSL_3
int (*sw_init_fn_ptr)(EVP_PKEY_CTX *) = NULL;
int ret = 0;
#endif
if (unlikely(ctx == NULL)) {
WARN("ctx (type EVP_PKEY_CTX) is NULL \n");
return 0;
}
#ifndef QAT_OPENSSL_3
if (qat_get_qat_offload_disabled() || qat_get_sw_fallback_enabled()) {
DEBUG("- Switched to software mode or fallback mode enabled.\n");
EVP_PKEY_meth_get_init((EVP_PKEY_METHOD *)sw_prf_pmeth, &sw_init_fn_ptr);
ret = (*sw_init_fn_ptr)(ctx);
if (ret != 1) {
WARN("s/w tls1_prf_init fn failed.\n");
return 0;
}
}
#endif
qat_prf_ctx = OPENSSL_zalloc(sizeof(*qat_prf_ctx));
if (qat_prf_ctx == NULL) {
WARN("Cannot allocate qat_prf_ctx\n");
return 0;
}
if ((inst_num = get_instance(QAT_INSTANCE_SYM, QAT_INSTANCE_ANY))
== QAT_INVALID_INSTANCE) {
WARN("Failed to get an instance\n");
if (qat_prf_ctx)
OPENSSL_free(qat_prf_ctx);
return 0;
}
qat_prf_ctx->qat_svm = !qat_instance_details[inst_num].qat_instance_info.requiresPhysicallyContiguousMemory;
if (qat_get_qat_offload_disabled() || qat_get_sw_fallback_enabled())
qat_prf_ctx->sw_prf_ctx_data = EVP_PKEY_CTX_get_data(ctx);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx);
return 1;
}
/******************************************************************************
* function:
* qat_prf_cleanup(EVP_PKEY_CTX *ctx)
*
* @param ctx [IN] - PKEY Context structure pointer
*
* description:
* Clear the QAT specific data stored in qat_prf_ctx
******************************************************************************/
void qat_prf_cleanup(EVP_PKEY_CTX *ctx)
{
#ifdef ENABLE_QAT_FIPS
qat_fips_key_zeroize = 0;
#endif
QAT_TLS1_PRF_CTX *qat_prf_ctx = NULL;
#ifndef QAT_OPENSSL_3
void (*sw_cleanup_fn_ptr)(EVP_PKEY_CTX *) = NULL;
#endif
if (unlikely(ctx == NULL)) {
WARN("ctx (type EVP_PKEY_CTX) is NULL \n");
return;
}
qat_prf_ctx = (QAT_TLS1_PRF_CTX *)EVP_PKEY_CTX_get_data(ctx);
if (qat_prf_ctx == NULL) {
WARN("qat_prf_ctx is NULL\n");
return;
}
#ifndef QAT_OPENSSL_3
if (qat_get_qat_offload_disabled() || qat_get_sw_fallback_enabled()) {
DEBUG("- Switched to software mode or fallback mode enabled.\n");
/* Clean up the sw_prf_ctx_data created by the init function */
EVP_PKEY_meth_get_cleanup((EVP_PKEY_METHOD *)sw_prf_pmeth, &sw_cleanup_fn_ptr);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx->sw_prf_ctx_data);
(*sw_cleanup_fn_ptr)(ctx);
}
#endif
if (!qat_prf_ctx->qat_svm) {
if (qat_prf_ctx->qat_sec != NULL) {
OPENSSL_cleanse(qat_prf_ctx->qat_sec, qat_prf_ctx->qat_seclen);
qaeCryptoMemFreeNonZero(qat_prf_ctx->qat_sec);
}
if (qat_prf_ctx->qat_seedlen)
OPENSSL_cleanse(qat_prf_ctx->qat_seed, qat_prf_ctx->qat_seedlen);
if (qat_prf_ctx->qat_userLabel != NULL)
qaeCryptoMemFreeNonZero(qat_prf_ctx->qat_userLabel);
} else {
if (qat_prf_ctx->qat_sec != NULL) {
OPENSSL_cleanse(qat_prf_ctx->qat_sec, qat_prf_ctx->qat_seclen);
OPENSSL_free(qat_prf_ctx->qat_sec);
}
if (qat_prf_ctx->qat_seedlen)
OPENSSL_cleanse(qat_prf_ctx->qat_seed, qat_prf_ctx->qat_seedlen);
if (qat_prf_ctx->qat_userLabel != NULL)
OPENSSL_free(qat_prf_ctx->qat_userLabel);
}
OPENSSL_free(qat_prf_ctx);
EVP_PKEY_CTX_set_data(ctx, NULL);
#ifdef ENABLE_QAT_FIPS
qat_fips_key_zeroize = 1;
qat_fips_get_key_zeroize_status();
#endif
}
/******************************************************************************
* function:
* qat_tls1_prf_ctrl(EVP_PKEY_CTX *ctx,
* int type,
* int p1,
* void *p2)
*
* @param ctx [IN] - PKEY Context structure pointer
* @param type [IN] - Type
* @param p1 [IN] - Length/Size
* @param *p2 [IN] - Data
*
* @param [OUT] - Status
*
* description:
* Qat PRF control function
******************************************************************************/
int qat_tls1_prf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
{
if (unlikely(ctx == NULL)) {
WARN("Invalid input param.\n");
return 0;
}
QAT_TLS1_PRF_CTX *qat_prf_ctx = (QAT_TLS1_PRF_CTX *)EVP_PKEY_CTX_get_data(ctx);
#ifndef QAT_OPENSSL_3
int (*sw_ctrl_fn_ptr)(EVP_PKEY_CTX *, int, int, void *) = NULL;
int ret = 0;
#endif
if (unlikely(qat_prf_ctx == NULL)) {
WARN("qat_prf_ctx cannot be NULL\n");
return 0;
}
#ifndef QAT_OPENSSL_3
if (qat_get_qat_offload_disabled() || qat_get_sw_fallback_enabled()) {
DEBUG("- Switched to software mode or fallback mode enabled.\n");
EVP_PKEY_meth_get_ctrl((EVP_PKEY_METHOD *)sw_prf_pmeth, &sw_ctrl_fn_ptr, NULL);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx->sw_prf_ctx_data);
ret = (*sw_ctrl_fn_ptr)(ctx, type, p1, p2);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx);
if (ret != 1) {
WARN("S/W tls1_prf_ctrl fn failed\n");
return 0;
}
}
#endif
switch (type) {
case EVP_PKEY_CTRL_TLS_MD:
if (unlikely(p2 == NULL)) {
WARN("Invalid input param.\n");
return 0;
}
qat_prf_ctx->qat_md = p2;
return 1;
case EVP_PKEY_CTRL_TLS_SECRET:
if (p1 < 0 || p1 > QAT_TLS1_PRF_SECRET_MAXBUF || p2 == NULL) {
WARN("Either p1 is invalid or p2 is NULL\n");
return 0;
}
if (qat_prf_ctx->qat_sec != NULL) {
OPENSSL_cleanse(qat_prf_ctx->qat_sec, qat_prf_ctx->qat_seclen);
QAT_MEM_FREE_NONZERO_BUFF(qat_prf_ctx->qat_sec, qat_prf_ctx->qat_svm);
qat_prf_ctx->qat_seclen = 0;
}
OPENSSL_cleanse(qat_prf_ctx->qat_seed, qat_prf_ctx->qat_seedlen);
qat_prf_ctx->qat_seedlen = 0;
qat_prf_ctx->qat_userLabel_len = 0;
/*-
* Allocate and copy the secret data
* In case of zero length secret key (for example EXP cipher),
* allocate minimum byte aligned size buffer when common memory
* driver is used.
*/
if (!qat_prf_ctx->qat_svm)
qat_prf_ctx->qat_sec = copyAllocPinnedMemory(p2, p1 ? p1 : 1, __FILE__, __LINE__);
else
qat_prf_ctx->qat_sec = OPENSSL_memdup(p2, p1 ? p1 : 1);
if (qat_prf_ctx->qat_sec == NULL) {
WARN("secret data malloc failed\n");
return 0;
}
qat_prf_ctx->qat_seclen = p1;
return 1;
case EVP_PKEY_CTRL_TLS_SEED:
if (p1 == 0 || p2 == NULL)
return 1;
if (qat_prf_ctx->qat_userLabel_len == 0) {
if (p1 < 0 || p1 > QAT_TLS1_PRF_LABEL_MAXBUF) {
WARN("userLabel p1 %d is out of range\n", p1);
return 0;
} else {
if (!qat_prf_ctx->qat_svm) {
if (qat_prf_ctx->qat_userLabel != NULL)
qaeCryptoMemFreeNonZero(qat_prf_ctx->qat_userLabel);
qat_prf_ctx->qat_userLabel = copyAllocPinnedMemory(p2, p1,
__FILE__, __LINE__);
} else {
if (qat_prf_ctx->qat_userLabel != NULL)
OPENSSL_free(qat_prf_ctx->qat_userLabel);
qat_prf_ctx->qat_userLabel = OPENSSL_memdup(p2, p1);
}
if (qat_prf_ctx->qat_userLabel == NULL) {
WARN("userLabel malloc failed\n");
return 0;
}
qat_prf_ctx->qat_userLabel_len = p1;
}
} else {
if (p1 < 0 || p1 > (QAT_TLS1_PRF_SEED_MAXBUF - qat_prf_ctx->qat_seedlen)) {
WARN("p1 %d is out of range\n", p1);
return 0;
} else {
memcpy(qat_prf_ctx->qat_seed + qat_prf_ctx->qat_seedlen, p2, p1);
qat_prf_ctx->qat_seedlen += p1;
}
}
return 1;
default:
WARN("Invalid type %d\n", type);
return -2;
} /* switch */
}
/******************************************************************************
* function:
* void qat_prf_cb(
* void *pCallbackTag,
* CpaStatus status,
* void *pOpdata,
* CpaFlatBuffer *pOut)
*
* @param pCallbackTag [IN] - Pointer to user data
* @param status [IN] - Status of the operation
* @param pOpData [IN] - Pointer to operation data of the request
* @param out [IN] - Pointer to the output buffer
*
* description:
* Callback to indicate the completion of PRF
******************************************************************************/
static void qat_prf_cb(void *pCallbackTag, CpaStatus status,
void *pOpData, CpaFlatBuffer * pOut)
{
if (enable_heuristic_polling) {
QAT_ATOMIC_DEC(num_kdf_requests_in_flight);
}
qat_crypto_callbackFn(pCallbackTag, status, CPA_CY_SYM_OP_CIPHER, pOpData,
NULL, CPA_TRUE);
}
/******************************************************************************
* function:
* qat_get_hash_algorithm(
* PRF *qat_prf_ctx
* CpaCySymHashAlgorithm *hash_algorithm)
*
* @param qat_prf_ctx [IN] - PRF context
* @param hash_algorithm [OUT] - Ptr to hash algorithm in CPA format
*
* description:
* Retrieve the hash algorithm from the prf context and convert it to
* the CPA format
******************************************************************************/
static int qat_get_hash_algorithm(QAT_TLS1_PRF_CTX * qat_prf_ctx,
CpaCySymHashAlgorithm * hash_algorithm)
{
const EVP_MD *md = NULL;
if (qat_prf_ctx == NULL || hash_algorithm == NULL) {
WARN("Either qat_prf_ctx %p or hash_algorithm %p is NULL\n",
qat_prf_ctx, hash_algorithm);
return 0;
}
md = qat_prf_ctx->qat_md;
if (md == NULL) {
WARN("md is NULL.\n");
return 0;
}
switch (EVP_MD_type(md)) {
case NID_sha224:
*hash_algorithm = CPA_CY_SYM_HASH_SHA224;
break;
case NID_sha256:
*hash_algorithm = CPA_CY_SYM_HASH_SHA256;
break;
case NID_sha384:
*hash_algorithm = CPA_CY_SYM_HASH_SHA384;
break;
case NID_sha512:
*hash_algorithm = CPA_CY_SYM_HASH_SHA512;
break;
case NID_md5:
*hash_algorithm = CPA_CY_SYM_HASH_MD5;
break;
#if defined(QAT20_OOT)
case NID_sm3:
*hash_algorithm = CPA_CY_SYM_HASH_SM3;
break;
#endif
default:
WARN("unsupported PRF hash type\n");
return 0;
}
return 1;
}
/******************************************************************************
* function:
* build_tls_prf_op_data(
* PRF *qat_prf_ctx,
* CpaCyKeyGenTlsOpData *prf_op_data)
*
* @param qat_prf_ctx [IN] - PRF context
* @param prf_op_data [OUT] - Ptr to TlsOpData used as destination
*
* description:
* Build the TlsOpData based on the values stored in the PRF context
* Note: prf_op_data must be allocated outside this function
******************************************************************************/
static int build_tls_prf_op_data(QAT_TLS1_PRF_CTX * qat_prf_ctx,
CpaCyKeyGenTlsOpData * prf_op_data)
{
const void *label = NULL;
if (qat_prf_ctx == NULL || prf_op_data == NULL) {
WARN("Either qat_prf_ctx %p or prf_op_data %p is NULL\n", qat_prf_ctx, prf_op_data);
return 0;
}
prf_op_data->secret.pData = (Cpa8U *) qat_prf_ctx->qat_sec;
prf_op_data->secret.dataLenInBytes = qat_prf_ctx->qat_seclen;
/*-
* The label is stored in userLabel as a string Conversion from string to CPA
* constant
*/
label = qat_prf_ctx->qat_userLabel;
DEBUG("Value of label = %s\n", (char *)label);
prf_op_data->userLabel.pData = NULL;
prf_op_data->userLabel.dataLenInBytes = 0;
prf_op_data->seed.pData = NULL;
if (0 ==
strncmp(label, TLS_MD_MASTER_SECRET_CONST,
TLS_MD_MASTER_SECRET_CONST_SIZE)) {
prf_op_data->tlsOp = (CpaCyKeyTlsOp) CPA_CY_KEY_SSL_OP_MASTER_SECRET_DERIVE;
} else if (0 ==
strncmp(label, TLS_MD_KEY_EXPANSION_CONST,
TLS_MD_KEY_EXPANSION_CONST_SIZE)) {
prf_op_data->tlsOp = (CpaCyKeyTlsOp) CPA_CY_KEY_TLS_OP_KEY_MATERIAL_DERIVE;
} else if (0 ==
strncmp(label, TLS_MD_CLIENT_FINISH_CONST,
TLS_MD_CLIENT_FINISH_CONST_SIZE)) {
prf_op_data->tlsOp = (CpaCyKeyTlsOp) CPA_CY_KEY_TLS_OP_CLIENT_FINISHED_DERIVE;
} else if (0 ==
strncmp(label, TLS_MD_SERVER_FINISH_CONST,
TLS_MD_SERVER_FINISH_CONST_SIZE)) {
prf_op_data->tlsOp = (CpaCyKeyTlsOp) CPA_CY_KEY_TLS_OP_SERVER_FINISHED_DERIVE;
} else {
/* Allocate and copy the user label contained in userLabel */
/* TODO we must test this case to see if it works OK */
DEBUG("Using USER_DEFINED label = %s\n", (char*)label);
prf_op_data->tlsOp = (CpaCyKeyTlsOp) CPA_CY_KEY_TLS_OP_USER_DEFINED;
prf_op_data->userLabel.pData = (Cpa8U *) qat_prf_ctx->qat_userLabel;
prf_op_data->userLabel.dataLenInBytes = qat_prf_ctx->qat_userLabel_len;
}
/*-
* The seed for prf_op_data is obtained by concatenating seed2...5 in the
* context.
* The client and server randoms are reversed on the QAT API for Key
* Derive. This is not be a problem because OpenSSL calls the function
* with the variables in the correct order
*/
if (qat_prf_ctx->qat_seedlen) {
if (!qat_prf_ctx->qat_svm) {
prf_op_data->seed.pData = copyAllocPinnedMemory(qat_prf_ctx->qat_seed,
qat_prf_ctx->qat_seedlen,
__FILE__, __LINE__);
} else {
prf_op_data->seed.pData = OPENSSL_memdup(qat_prf_ctx->qat_seed,
qat_prf_ctx->qat_seedlen);
}
if (prf_op_data->seed.pData == NULL) {
/* On failure WARN and Error are flagged at the next level up.*/
return 0;
}
prf_op_data->seed.dataLenInBytes = qat_prf_ctx->qat_seedlen;
}
return 1;
}
#ifdef QAT_OPENSSL_3
/******************************************************************************
* function:
* default_provider_PRF_derive(QAT_TLS1_PRF_CTX *qat_prf_ctx,
* unsigned char *out,
* size_t olen)
*
* @param qat_prf_ctx [IN] - PRF context
* @param out [OUT] - Ptr to the key that will be generated
* @param olen [IN] - Length of the key
*
* description:
* PRF SW fallback function. Using default provider of OpenSSL 3
******************************************************************************/
int default_provider_PRF_derive(QAT_TLS1_PRF_CTX *qat_prf_ctx, unsigned char *out, size_t olen) {
int rv = 0;
EVP_KDF *kdf = NULL;
EVP_KDF_CTX *kctx = NULL;
OSSL_PARAM params[5], *p = params;
OSSL_LIB_CTX *library_context = NULL;
const char *mdname;
library_context = OSSL_LIB_CTX_new();
if (library_context == NULL) {
fprintf(stderr, "OSSL_LIB_CTX_new() returned NULL\n");
goto end;
}
/* Fetch the key derivation function implementation */
kdf = EVP_KDF_fetch(library_context, "TLS1-PRF", "provider=default");
if (kdf == NULL) {
fprintf(stderr, "EVP_KDF_fetch() returned NULL\n");
goto end;
}
/* Create a context for the key derivation operation */
kctx = EVP_KDF_CTX_new(kdf);
if (kctx == NULL) {
fprintf(stderr, "EVP_KDF_CTX_new() returned NULL\n");
goto end;
}
mdname = EVP_MD_get0_name(qat_prf_ctx->qat_md);
*p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST, (char *)mdname, 0);
*p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SECRET, qat_prf_ctx->qat_sec,
qat_prf_ctx->qat_seclen);
*p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SEED, qat_prf_ctx->qat_userLabel,
qat_prf_ctx->qat_userLabel_len);
*p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SEED, qat_prf_ctx->qat_seed,
qat_prf_ctx->qat_seedlen);
*p = OSSL_PARAM_construct_end();
/* Derive the key */
if (EVP_KDF_derive(kctx, out, olen, params) != 1) {
fprintf(stderr, "EVP_KDF_derive() failed\n");
goto end;
}
rv = 1;
end:
EVP_KDF_CTX_free(kctx);
EVP_KDF_free(kdf);
OSSL_LIB_CTX_free(library_context);
return rv;
}
#endif
/******************************************************************************
* function:
* qat_prf_tls_derive(
* QAT_TLS1_PRF_CTX *qat_prf_ctx,
* unsigned char *key,
* size_t *olen)
*
*
* @param qat_prf_ctx [IN] - PRF context
* @param key [OUT] - Ptr to the key that will be generated
* @param olen [IN] - Length of the key
*
* description:
* PRF derive function for TLS case
******************************************************************************/
int qat_prf_tls_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *olen)
{
int ret = 0, job_ret = 0;
CpaCyKeyGenTlsOpData prf_op_data;
CpaFlatBuffer *generated_key = NULL;
CpaStatus status = CPA_STATUS_FAIL;
QAT_TLS1_PRF_CTX *qat_prf_ctx = NULL;
CpaCySymHashAlgorithm hash_algo = CPA_CY_SYM_HASH_NONE;
int key_length = 0;
int md_nid = 0;
op_done_t op_done;
int qatPerformOpRetries = 0;
int iMsgRetry = getQatMsgRetryCount();
unsigned long int ulPollInterval = getQatPollInterval();
int inst_num = QAT_INVALID_INSTANCE;
thread_local_variables_t *tlv = NULL;
int fallback = 0;
#ifndef QAT_OPENSSL_3
int (*sw_derive_fn_ptr)(EVP_PKEY_CTX *, unsigned char *, size_t *) = NULL;
#endif
if (unlikely(NULL == ctx || NULL == key || NULL == olen)) {
WARN("Either ctx %p, key %p or olen %p is NULL\n", ctx, key, olen);
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_PASSED_NULL_PARAMETER);
return ret;
}
#ifdef ENABLE_QAT_FIPS
qat_fips_get_approved_status();
#endif
qat_prf_ctx = (QAT_TLS1_PRF_CTX *)EVP_PKEY_CTX_get_data(ctx);
if (qat_prf_ctx == NULL) {
WARN("qat_prf_ctx is NULL\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
return ret;
}
if ((qat_prf_ctx->qat_md == NULL) || (qat_prf_ctx->qat_sec == NULL) ||
(qat_prf_ctx->qat_seedlen == 0)) {
WARN("Either md %p, secret %p, or seedlen %zu is ZERO\n",
qat_prf_ctx->qat_md, qat_prf_ctx->qat_sec,
qat_prf_ctx->qat_seedlen);
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_PASSED_NULL_PARAMETER);
return ret;
}
memset(&prf_op_data, 0, sizeof(CpaCyKeyGenTlsOpData));
key_length = *olen;
md_nid = EVP_MD_type(qat_prf_ctx->qat_md);
#if defined(QAT_OPENSSL_3) && !defined(QAT_OPENSSL_PROVIDER)
if (qat_openssl3_prf_fallback == 1) {
DEBUG("- Switched to software mode\n");
fallback = 1;
goto err;
}
#endif
DEBUG("QAT HW PRF Started\n");
if (qat_get_qat_offload_disabled()) {
DEBUG("- Switched to software mode\n");
fallback = 1;
goto err;
}
#ifdef QAT_DRIVER_INTREE
if (md_nid == NID_md5_sha1) {
if (qat_get_sw_fallback_enabled()){
DEBUG("TLS < 1.2 not supported. Fallback to software\n");
fallback = 1;
goto err;
}
WARN("TLS < 1.2 not supported in the in-tree driver\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
goto err;
}
#endif
/*
* Only required for TLS1.2 as previous versions always use MD5 and SHA-1
*/
if (md_nid != NID_md5_sha1) {
if (!qat_get_hash_algorithm(qat_prf_ctx, &hash_algo)) {
WARN("Failed to get hash algorithm\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
return ret;
}
}
if ((inst_num = get_instance(QAT_INSTANCE_SYM, 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;
goto err;
} else {
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
return 0;
}
}
qat_prf_ctx->qat_svm = !qat_instance_details[inst_num].qat_instance_info.requiresPhysicallyContiguousMemory;
/* ---- Tls Op Data ---- */
if (!build_tls_prf_op_data(qat_prf_ctx, &prf_op_data)) {
WARN("Error building TlsOpdata\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
goto err;
}
/* ---- Generated Key ---- */
prf_op_data.generatedKeyLenInBytes = key_length;
generated_key = (CpaFlatBuffer *) qat_mem_alloc(sizeof(CpaFlatBuffer),
qat_prf_ctx->qat_svm, __FILE__, __LINE__);
if (NULL == generated_key) {
WARN("Failed to allocate memory for generated_key\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_MALLOC_FAILURE);
goto err;
}
generated_key->pData =
(Cpa8U *) qat_mem_alloc(key_length, qat_prf_ctx->qat_svm, __FILE__, __LINE__);
if (NULL == generated_key->pData) {
WARN("Failed to allocate memory for generated_key data\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_MALLOC_FAILURE);
goto err;
}
generated_key->dataLenInBytes = key_length;
/* ---- Perform the operation ---- */
DUMP_PRF_OP_DATA(prf_op_data);
tlv = qat_check_create_local_variables();
if (NULL == tlv) {
WARN("could not create local variables\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, 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_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
qat_cleanup_op_done(&op_done);
goto err;
}
}
do {
if (status == CPA_STATUS_RETRY &&
(inst_num = get_instance(QAT_INSTANCE_SYM, qat_prf_ctx->qat_svm))
== 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_PRF_TLS_DERIVE, 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;
}
DUMP_KEYGEN_TLS(qat_instance_handles[inst_num], generated_key);
/* Call the function of CPA according the to the version of TLS */
if (md_nid != NID_md5_sha1) {
DEBUG("Calling cpaCyKeyGenTls2 \n");
status =
cpaCyKeyGenTls2(qat_instance_handles[inst_num], qat_prf_cb,
&op_done, &prf_op_data, hash_algo,
generated_key);
} else {
DEBUG("Calling cpaCyKeyGenTls \n");
status =
cpaCyKeyGenTls(qat_instance_handles[inst_num], qat_prf_cb, &op_done,
&prf_op_data, generated_key);
}
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 if (status == CPA_STATUS_UNSUPPORTED) {
WARN("Algorithm Unsupported in QAT_HW! Using OpenSSL SW\n");
fallback = 1;
} else {
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, 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_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
goto err;
}
}
}
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_kdf_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));
DUMP_KEYGEN_TLS_OUTPUT(generated_key);
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_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
}
qat_cleanup_op_done(&op_done);
goto err;
}
qat_cleanup_op_done(&op_done);
DUMPL("Generated key", generated_key->pData, key_length);
if (unlikely(generated_key->pData == NULL)) {
WARN("generated_key->pData is NULL\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
goto err;
}
memcpy(key, generated_key->pData, key_length);
ret = 1;
err:
/* Free the memory */
if (prf_op_data.seed.pData) {
OPENSSL_cleanse(prf_op_data.seed.pData, prf_op_data.seed.dataLenInBytes);
QAT_MEM_FREE_BUFF(prf_op_data.seed.pData, qat_prf_ctx->qat_svm);
}
if (NULL != generated_key) {
QAT_CLEANSE_MEMFREE_NONZERO_FLATBUFF(*generated_key, qat_prf_ctx->qat_svm);
QAT_MEM_FREE_BUFF(generated_key, qat_prf_ctx->qat_svm);
}
if (fallback) {
WARN("- Fallback to software mode.\n");
CRYPTO_QAT_LOG("Resubmitting request to SW - %s\n", __func__);
#ifndef QAT_OPENSSL_3
EVP_PKEY_meth_get_derive((EVP_PKEY_METHOD *)sw_prf_pmeth, NULL, &sw_derive_fn_ptr);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx->sw_prf_ctx_data);
ret = (*sw_derive_fn_ptr)(ctx, key, olen);
EVP_PKEY_CTX_set_data(ctx, qat_prf_ctx);
#else
ret = default_provider_PRF_derive(qat_prf_ctx, key, *olen);
#endif
}
return ret;