forked from intel/QAT_Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqat_prf.c
855 lines (776 loc) · 29.9 KB
/
qat_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
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2016-2019 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 implementaion of the PRF operations for an
* OpenSSL engine
*
*****************************************************************************/
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <pthread.h>
#include <string.h>
#include <signal.h>
#include "openssl/ossl_typ.h"
#include "openssl/async.h"
#include "openssl/kdf.h"
#include "openssl/evp.h"
#include "openssl/ssl.h"
#include "qat_prf.h"
#include "qat_utils.h"
#include "qat_asym_common.h"
#include "e_qat.h"
#include "qat_callback.h"
#include "qat_polling.h"
#include "qat_events.h"
#include "e_qat_err.h"
#ifdef USE_QAT_CONTIG_MEM
# include "qae_mem_utils.h"
#endif
#ifdef USE_QAE_MEM
# include "cmn_mem_drv_inf.h"
#endif
#include "cpa.h"
#include "cpa_types.h"
#include "cpa_cy_key.h"
#ifdef OPENSSL_ENABLE_QAT_PRF
# ifdef OPENSSL_DISABLE_QAT_PRF
# undef OPENSSL_DISABLE_QAT_PRF
# endif
#endif
/* These limits are based on QuickAssist limits.
* OpenSSL is more generous but better to restrict and fail
* early on here if they are exceeded rather than later on
* down in the driver.
*/
#define QAT_TLS1_PRF_SECRET_MAXBUF 512
#define QAT_TLS1_PRF_SEED_MAXBUF 64
#define QAT_TLS1_PRF_LABEL_MAXBUF 136
/* PRF nid */
int qat_prf_nids[] = {
EVP_PKEY_TLS1_PRF
};
#ifndef OPENSSL_DISABLE_QAT_PRF
/* QAT TLS pkey context structure */
typedef struct {
/* Buffer of concatenated seeds from seed2 to seed5 data */
unsigned char qat_seed[QAT_TLS1_PRF_SEED_MAXBUF];
size_t qat_seedlen;
unsigned char *qat_userLabel;
size_t qat_userLabel_len;
/* Digest to use for PRF */
const EVP_MD *qat_md;
/* Secret value to use for PRF */
unsigned char *qat_sec;
size_t qat_seclen;
void *sw_prf_ctx_data;
} QAT_TLS1_PRF_CTX;
/* Function Declarations */
static int qat_tls1_prf_init(EVP_PKEY_CTX *ctx);
static void qat_prf_cleanup(EVP_PKEY_CTX *ctx);
static int qat_prf_tls_derive(EVP_PKEY_CTX *ctx, unsigned char *key,
size_t *olen);
static int qat_tls1_prf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2);
#endif /* OPENSSL_DISABLE_QAT_PRF */
static EVP_PKEY_METHOD *_hidden_prf_pmeth = NULL;
#ifndef OPENSSL_DISABLE_QAT_PRF
/* Have a store of the s/w EVP_PKEY_METHOD for software fallback purposes. */
static const EVP_PKEY_METHOD *sw_prf_pmeth = NULL;
#endif
static EVP_PKEY_METHOD *qat_prf_pmeth(void)
{
#ifdef OPENSSL_DISABLE_QAT_PRF
const EVP_PKEY_METHOD *current_prf_pmeth = NULL;
#endif
if (_hidden_prf_pmeth)
return _hidden_prf_pmeth;
#ifdef OPENSSL_DISABLE_QAT_PRF
if ((current_prf_pmeth = EVP_PKEY_meth_find(EVP_PKEY_TLS1_PRF)) == NULL) {
QATerr(QAT_F_QAT_PRF_PMETH, ERR_R_INTERNAL_ERROR);
return NULL;
}
#endif
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;
}
#ifdef OPENSSL_DISABLE_QAT_PRF
EVP_PKEY_meth_copy(_hidden_prf_pmeth, current_prf_pmeth);
#else
/* Now save the current (non-offloaded) prf pmeth to sw_prf_pmeth */
/* for software fallback purposes */
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;
}
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
return _hidden_prf_pmeth;
}
/******************************************************************************
* function:
* qat_PRF_pkey_methods(ENGINE *e,
* const EVP_PKEY_METHOD **pmeth,
* const int **nids,
* int nid)
*
* @param e [IN] - OpenSSL engine pointer
* @param pmeth [IN] - PRF methods structure pointer
* @param nids [IN] - PRF functions nids
* @param nid [IN] - PRF operation id
*
* description:
* Qat engine digest operations registrar
******************************************************************************/
int qat_PRF_pkey_methods(ENGINE *e, EVP_PKEY_METHOD **pmeth,
const int **nids, int nid)
{
if (pmeth == NULL) {
if (unlikely(nids == NULL)) {
WARN("Invalid input params.\n");
return 0;
}
*nids = qat_prf_nids;
return 1;
}
*pmeth = qat_prf_pmeth();
return 1;
}
#ifndef OPENSSL_DISABLE_QAT_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 (*sw_init_fn_ptr)(EVP_PKEY_CTX *) = NULL;
int ret = 0;
if (ctx == NULL) {
WARN("ctx (type EVP_PKEY_CTX) is NULL \n");
return 0;
}
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;
}
}
if (unlikely(ctx == NULL)) {
WARN("Invalid input param.\n");
return 0;
}
qat_prf_ctx = OPENSSL_zalloc(sizeof(*qat_prf_ctx));
if (qat_prf_ctx == NULL) {
WARN("Cannot allocate qat_prf_ctx\n");
return 0;
}
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)
{
QAT_TLS1_PRF_CTX *qat_prf_ctx = NULL;
void (*sw_cleanup_fn_ptr)(EVP_PKEY_CTX *) = NULL;
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;
}
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);
}
if (qat_prf_ctx->qat_sec != NULL) {
OPENSSL_cleanse(qat_prf_ctx->qat_sec, qat_prf_ctx->qat_seclen);
qaeCryptoMemFree(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)
qaeCryptoMemFree(qat_prf_ctx->qat_userLabel);
OPENSSL_free(qat_prf_ctx);
EVP_PKEY_CTX_set_data(ctx, NULL);
}
/******************************************************************************
* 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);
int (*sw_ctrl_fn_ptr)(EVP_PKEY_CTX *, int, int, void *) = NULL;
int ret = 0;
if (unlikely(qat_prf_ctx == NULL)) {
WARN("qat_prf_ctx cannot be NULL\n");
return 0;
}
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;
}
}
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);
qaeCryptoMemFree(qat_prf_ctx->qat_sec);
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.
*/
qat_prf_ctx->qat_sec = copyAllocPinnedMemory(p2, p1 ? p1 : 1, __FILE__, __LINE__);
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_userLabel != NULL) {
qaeCryptoMemFree(qat_prf_ctx->qat_userLabel);
}
qat_prf_ctx->qat_userLabel = copyAllocPinnedMemory(p2, p1,
__FILE__, __LINE__);
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_prf_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;
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 = 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 = 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 = 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 = 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 = 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) {
prf_op_data->seed.pData = copyAllocPinnedMemory(qat_prf_ctx->qat_seed,
qat_prf_ctx->qat_seedlen,
__FILE__, __LINE__);
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;
}
/******************************************************************************
* 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;
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;
int (*sw_derive_fn_ptr)(EVP_PKEY_CTX *, unsigned char *, size_t *) = NULL;
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;
}
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;
}
memset(&prf_op_data, 0, sizeof(CpaCyKeyGenTlsOpData));
key_length = *olen;
if (qat_get_qat_offload_disabled()) {
DEBUG("- Switched to software mode\n");
fallback = 1;
goto err;
}
/*
* Only required for TLS1.2 as previous versions always use MD5 and SHA-1
*/
if (EVP_MD_type(qat_prf_ctx->qat_md) != 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;
}
}
/* ---- 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 *) qaeCryptoMemAlloc(sizeof(CpaFlatBuffer), __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 *) qaeCryptoMemAlloc(key_length, __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_INC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
if (qat_use_signals()) {
if (tlv->localOpsInFlight == 1) {
if (pthread_kill(timer_poll_func_thread, SIGUSR1) != 0) {
WARN("pthread_kill error\n");
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
goto err;
}
}
}
qat_init_op_done(&op_done);
if (op_done.job != NULL) {
if (qat_setup_async_event_notification(0) == 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);
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
goto err;
}
}
do {
if ((inst_num = get_next_inst_num()) == 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();
}
qat_cleanup_op_done(&op_done);
QAT_DEC_IN_FLIGHT_REQS(num_requests_in_flight, tlv);
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 (EVP_MD_type(qat_prf_ctx->qat_md) != 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 {
QATerr(QAT_F_QAT_PRF_TLS_DERIVE, ERR_R_INTERNAL_ERROR);
}
if (op_done.job != NULL) {
qat_clear_async_event_notification();
}
qat_cleanup_op_done(&op_done);
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_prf_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)
pthread_yield();
} else {
pthread_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);
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);
qaeCryptoMemFree(prf_op_data.seed.pData);
}
if (NULL != generated_key) {
if (NULL != generated_key->pData) {
OPENSSL_cleanse(generated_key->pData, key_length);
qaeCryptoMemFree(generated_key->pData);
}
qaeCryptoMemFree(generated_key);
}
if (fallback) {
WARN("- Fallback to software mode.\n");
CRYPTO_QAT_LOG("Resubmitting request to SW - %s\n", __func__);
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);
}
return ret;
}
#endif /* OPENSSL_DISABLE_QAT_PRF */