-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathe_qat.h
708 lines (618 loc) · 23.4 KB
/
e_qat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
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
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2016-2022 Intel Corporation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
* ====================================================================
*/
/*****************************************************************************
* @file e_qat.h
*
* This file provides and interface for an OpenSSL QAT engine implemenation
*
*****************************************************************************/
#ifndef E_QAT_H
# define E_QAT_H
# include <openssl/engine.h>
# include <sys/types.h>
# include <unistd.h>
# include <string.h>
# ifdef QAT_OPENSSL_3
# include "qat_prov_err.h"
# else
# include "e_qat_err.h"
# endif
# ifdef QAT_HW
# include "cpa.h"
# include "cpa_types.h"
# endif
# ifdef QAT_SW
# include "qat_sw_queue.h"
# include "qat_sw_freelist.h"
# endif
# ifndef ERR_R_RETRY
# define ERR_R_RETRY 57
# endif
# define likely(x) __builtin_expect (!!(x), 1)
# define unlikely(x) __builtin_expect (!!(x), 0)
# define XSTR(x) #x
# define STR(x) XSTR(x)
/* Macro used to handle errors in qat_engine_ctrl() */
# define BREAK_IF(cond, mesg) \
if (unlikely(cond)) { retVal = 0; WARN(mesg); break; }
/*
* Max Length (bytes) of error string in human readable format
*/
# define QAT_MAX_ERROR_STRING 256
/*
* Different values passed in as param 3 for the message
* QAT_CMD_GET_NUM_REQUESTS_IN_FLIGHT to retrieve the number of different kinds
* of in-flight requests and number of items in queue for Multi-buffer
*/
# define GET_NUM_ASYM_REQUESTS_IN_FLIGHT 1
# define GET_NUM_KDF_REQUESTS_IN_FLIGHT 2
# define GET_NUM_CIPHER_PIPELINE_REQUESTS_IN_FLIGHT 3
# define GET_NUM_ASYM_MB_ITEMS_IN_QUEUE 4
# define GET_NUM_KDF_MB_ITEMS_IN_QUEUE 5
# define GET_NUM_SYM_MB_ITEMS_IN_QUEUE 6
/* Behavior of qat_engine_finish_int */
# define QAT_RETAIN_GLOBALS 0
# define QAT_RESET_GLOBALS 1
# define QAT_ATOMIC_INC(qat_int) \
(__sync_add_and_fetch(&(qat_int), 1))
# define QAT_ATOMIC_DEC(qat_int) \
(__sync_sub_and_fetch(&(qat_int), 1))
# ifdef QAT_HW
typedef struct {
int qatInstanceNumForThread;
unsigned int localOpsInFlight;
# ifdef QAT_HW_SET_INSTANCE_THREAD
long int threadId;
# endif
} thread_local_variables_t;
typedef struct {
CpaInstanceInfo2 qat_instance_info;
unsigned int qat_instance_started;
# ifdef QAT_HW_SET_INSTANCE_THREAD
unsigned int instCount;
# endif
} qat_instance_details_t;
typedef struct {
unsigned int qat_accel_present;
unsigned int qat_accel_reset_status;
} qat_accel_details_t;
# define QAT_RETRY_BACKOFF_MODULO_DIVISOR 8
# define QAT_INFINITE_MAX_NUM_RETRIES -1
# define QAT_INVALID_INSTANCE -1
# define QAT_DEV "/dev/qat_dev_processes"
# if defined(USE_QAT_CONTIG_MEM) && !defined(USE_USDM_MEM)
# define QAT_MEM_DEV "/dev/qat_contig_mem"
# elif defined(USE_USDM_MEM) && !defined(USE_QAT_CONTIG_MEM)
# define QAT_MEM_DEV "/dev/usdm_drv"
# elif defined(USE_USDM_MEM) && defined(USE_QAT_CONFIG_MEM)
# error "USE_QAT_CONTIG_MEM and USE_USDM_MEM both defined"
# else
# error "No memory driver type defined"
# endif
# define QAT_INC_IN_FLIGHT_REQS(qat_int, tlv) \
do { \
if (qat_use_signals()) { \
QAT_ATOMIC_INC(qat_int); \
tlv->localOpsInFlight++; \
} \
} while(0)
# define QAT_DEC_IN_FLIGHT_REQS(qat_int, tlv) \
do { \
if (qat_use_signals()) { \
tlv->localOpsInFlight--; \
QAT_ATOMIC_DEC(qat_int); \
} \
} while(0)
# define QAT_QMEMFREE_BUFF(b) \
do { \
if (b != NULL) { \
qaeCryptoMemFree(b); \
b = NULL; \
} \
} while(0)
# define QAT_CLEANSE_FREE_BUFF(b,len) \
do { \
if (b != NULL) { \
OPENSSL_cleanse(b, len); \
OPENSSL_free(b); \
b = NULL; \
} \
} while(0)
# define QAT_CLEANSE_QMEMFREE_BUFF(b,len) \
do { \
if (b != NULL) { \
OPENSSL_cleanse(b, len); \
qaeCryptoMemFree(b); \
b = NULL; \
} \
} while(0)
# define QAT_CLEANSE_FLATBUFF(b) \
OPENSSL_cleanse((b).pData, (b).dataLenInBytes)
# define QAT_QMEM_FREE_FLATBUFF(b) \
qaeCryptoMemFree((b).pData)
# define QAT_QMEM_FREE_NONZERO_FLATBUFF(b) \
qaeCryptoMemFreeNonZero((b).pData)
# define QAT_CLEANSE_QMEMFREE_FLATBUFF(b) \
do { \
QAT_CLEANSE_FLATBUFF(b); \
QAT_QMEM_FREE_FLATBUFF(b); \
} while(0)
# define QAT_CLEANSE_QMEMFREE_NONZERO_FLATBUFF(b) \
do { \
QAT_CLEANSE_FLATBUFF(b); \
QAT_QMEM_FREE_NONZERO_FLATBUFF(b); \
} while(0)
# define QAT_CHK_CLNSE_QMFREE_NONZERO_FLATBUFF(b) \
do { \
if ((b).pData != NULL) \
QAT_CLEANSE_QMEMFREE_NONZERO_FLATBUFF(b); \
} while(0)
# define QAT_CHK_CLNSE_QMFREE_FLATBUFF(b) \
do { \
if ((b).pData != NULL) \
QAT_CLEANSE_QMEMFREE_FLATBUFF(b); \
} while(0)
# define QAT_CHK_QMFREE_FLATBUFF(b) \
do { \
if ((b).pData != NULL) \
QAT_QMEM_FREE_FLATBUFF(b); \
} while(0)
# define QAT_CHK_QMFREE_NONZERO_FLATBUFF(b) \
do { \
if ((b).pData != NULL) \
QAT_QMEM_FREE_NONZERO_FLATBUFF(b); \
} while(0)
# define QAT_CONFIG_SECTION_NAME_SIZE 64
# define QAT_MAX_CRYPTO_INSTANCES 256
# define QAT_MAX_CRYPTO_ACCELERATORS 512
# ifdef QAT_HW_SET_INSTANCE_THREAD
# define QAT_MAX_CRYPTO_THREADS 256
# endif
/*
* The default interval in nanoseconds used for the internal polling thread
*/
# define QAT_POLL_PERIOD_IN_NS 10000
/*
* The number of retries of the nanosleep if it gets interrupted during
* waiting between polling.
*/
# define QAT_CRYPTO_NUM_POLLING_RETRIES 5
/*
* The number of retries of the sigtimedwait if it gets interrupted during
* waiting for a signal.
*/
# define QAT_CRYPTO_NUM_EVENT_RETRIES 2
/*
* The number of seconds to wait for a response back after submitting a
* request before raising an error.
*/
# define QAT_CRYPTO_RESPONSE_TIMEOUT 5
/*
* The default timeout in milliseconds used for epoll_wait when event driven
* polling mode is enabled.
*/
# define QAT_EPOLL_TIMEOUT_IN_MS 1000
/*
* The default timeout in seconds used when waiting for events that requests
* are inflight.
*/
# define QAT_EVENT_TIMEOUT_IN_SEC 1
#endif
#ifdef QAT_SW
/*
* Used to size the freelist and queue as it represents how many
* requests can be inflight at once.
*/
# ifndef MULTIBUFF_MAX_INFLIGHTS
# define MULTIBUFF_MAX_INFLIGHTS 128
# endif
/*
* The maximum amount of iterations we will continue to submit
* batches of requests for. This is to prevent getting stuck in
* a continuous loop in the situation where requests are getting
* submitted faster than they are getting processed.
*/
# define MULTIBUFF_MAX_SUBMISSIONS 4
/*
* Additional define just for the prototype to force batching
* of requests less than MULTIBUFF_BATCH.
*/
# ifndef MULTIBUFF_MIN_BATCH
# define MULTIBUFF_MIN_BATCH 8
# endif
/*
* Number of multi-buffer requests to wait until are queued before
* attempting to process them.
*/
# ifndef MULTIBUFF_MAX_BATCH
# define MULTIBUFF_MAX_BATCH 8
# endif
/*
* Number of multi-buffer requests to submit to the crypto_mb library
* for processing in one go.
*/
# define MULTIBUFF_BATCH 8
/*
* SM3 can handle processing upto 16 requests while others can handle
* upto 8 requests only */
# ifndef MULTIBUFF_SM3_BATCH
# define MULTIBUFF_SM3_BATCH 16
# endif
# ifndef MULTIBUFF_SM3_MIN_BATCH
# define MULTIBUFF_SM3_MIN_BATCH 16
# endif
# ifndef MULTIBUFF_SM3_MAX_BATCH
# define MULTIBUFF_SM3_MAX_BATCH 16
# endif
/*
* Max number of multi-buffer Polling threads
*/
# define NUM_POLL_THREADS 128
#endif
/* Qat engine id declaration */
extern const char *engine_qat_id;
extern const char *engine_qat_name;
extern unsigned int engine_inited;
extern int qat_hw_offload;
extern int qat_sw_offload;
extern int qat_hw_rsa_offload;
extern int qat_hw_ecx_offload;
extern int qat_hw_ecdh_offload;
extern int qat_hw_ecdsa_offload;
extern int qat_hw_prf_offload;
extern int qat_hw_hkdf_offload;
extern int qat_hw_gcm_offload;
extern int qat_sw_rsa_offload;
extern int qat_sw_ecx_offload;
extern int qat_sw_ecdh_offload;
extern int qat_sw_ecdsa_offload;
extern int qat_sw_gcm_offload;
extern int qat_sw_sm2_offload;
extern int qat_sw_sm3_offload;
extern int qat_keep_polling;
extern int multibuff_keep_polling;
extern int enable_external_polling;
extern int enable_heuristic_polling;
extern pthread_mutex_t qat_engine_mutex;
extern pthread_t qat_polling_thread;
extern int num_requests_in_flight;
extern int num_asym_requests_in_flight;
extern int num_kdf_requests_in_flight;
extern int num_cipher_pipeline_requests_in_flight;
extern int num_asym_mb_items_in_queue;
extern int num_kdf_mb_items_in_queue;
extern int num_cipher_mb_items_in_queue;
extern sigset_t set;
extern pthread_t qat_timer_poll_func_thread;
extern int cleared_to_start;
extern int qat_sw_ipsec;
# ifdef QAT_HW
extern char qat_config_section_name[QAT_CONFIG_SECTION_NAME_SIZE];
extern char *ICPConfigSectionName_libcrypto;
extern int enable_inline_polling;
extern int enable_event_driven_polling;
extern int enable_instance_for_thread;
extern int qatPerformOpRetries;
extern int disable_qat_offload;
extern int enable_sw_fallback;
extern CpaInstanceHandle *qat_instance_handles;
extern Cpa16U qat_num_instances;
extern Cpa32U qat_num_devices;
extern pthread_key_t thread_local_variables;
extern pthread_mutex_t qat_instance_mutex;
extern qat_instance_details_t qat_instance_details[QAT_MAX_CRYPTO_INSTANCES];
extern qat_accel_details_t qat_accel_details[QAT_MAX_CRYPTO_ACCELERATORS];
extern useconds_t qat_poll_interval;
extern int qat_epoll_timeout;
extern int qat_max_retry_count;
# ifdef QAT_HW_SET_INSTANCE_THREAD
extern unsigned int qat_map_inst[QAT_MAX_CRYPTO_INSTANCES];
extern long int threadId[QAT_MAX_CRYPTO_THREADS];
extern int threadCount;
# endif
# endif
# ifdef QAT_SW
/* RSA */
extern BIGNUM *e_check;
extern mb_thread_data *mb_tlv;
extern pthread_key_t mb_thread_key;
typedef struct _mb_req_rates {
int req_this_period;
struct timespec previous_time;
struct timespec current_time;
} mb_req_rates;
extern mb_req_rates mb_rsa2k_priv_req_rates;
extern mb_req_rates mb_rsa2k_pub_req_rates;
extern mb_req_rates mb_rsa3k_priv_req_rates;
extern mb_req_rates mb_rsa3k_pub_req_rates;
extern mb_req_rates mb_rsa4k_priv_req_rates;
extern mb_req_rates mb_rsa4k_pub_req_rates;
extern mb_req_rates mb_x25519_keygen_req_rates;
extern mb_req_rates mb_x25519_derive_req_rates;
extern mb_req_rates mb_ecdsap256_sign_req_rates;
extern mb_req_rates mb_ecdsap256_sign_setup_req_rates;
extern mb_req_rates mb_ecdsap256_sign_sig_req_rates;
extern mb_req_rates mb_ecdsap384_sign_req_rates;
extern mb_req_rates mb_ecdsap384_sign_setup_req_rates;
extern mb_req_rates mb_ecdsap384_sign_sig_req_rates;
extern mb_req_rates mb_ecdhp256_keygen_req_rates;
extern mb_req_rates mb_ecdhp256_compute_req_rates;
extern mb_req_rates mb_ecdhp384_keygen_req_rates;
extern mb_req_rates mb_ecdhp384_compute_req_rates;
extern mb_req_rates mb_sm2ecdh_keygen_req_rates;
extern mb_req_rates mb_sm2ecdh_compute_req_rates;
extern mb_req_rates mb_sm3_init_req_rates;
extern mb_req_rates mb_sm3_update_req_rates;
extern mb_req_rates mb_sm3_final_req_rates;
# endif
# define QAT_CMD_ENABLE_EXTERNAL_POLLING ENGINE_CMD_BASE
# define QAT_CMD_POLL (ENGINE_CMD_BASE + 1)
# define QAT_CMD_SET_INSTANCE_FOR_THREAD (ENGINE_CMD_BASE + 2)
# define QAT_CMD_GET_NUM_OP_RETRIES (ENGINE_CMD_BASE + 3)
# define QAT_CMD_SET_MAX_RETRY_COUNT (ENGINE_CMD_BASE + 4)
# define QAT_CMD_SET_INTERNAL_POLL_INTERVAL (ENGINE_CMD_BASE + 5)
# define QAT_CMD_GET_EXTERNAL_POLLING_FD (ENGINE_CMD_BASE + 6)
# define QAT_CMD_ENABLE_EVENT_DRIVEN_POLLING_MODE (ENGINE_CMD_BASE + 7)
# define QAT_CMD_GET_NUM_CRYPTO_INSTANCES (ENGINE_CMD_BASE + 8)
# define QAT_CMD_DISABLE_EVENT_DRIVEN_POLLING_MODE (ENGINE_CMD_BASE + 9)
# define QAT_CMD_SET_EPOLL_TIMEOUT (ENGINE_CMD_BASE + 10)
# define QAT_CMD_SET_CRYPTO_SMALL_PACKET_OFFLOAD_THRESHOLD (ENGINE_CMD_BASE + 11)
# define QAT_CMD_ENABLE_INLINE_POLLING (ENGINE_CMD_BASE + 12)
# define QAT_CMD_ENABLE_HEURISTIC_POLLING (ENGINE_CMD_BASE + 13)
# define QAT_CMD_GET_NUM_REQUESTS_IN_FLIGHT (ENGINE_CMD_BASE + 14)
# define QAT_CMD_INIT_ENGINE (ENGINE_CMD_BASE + 15)
# define QAT_CMD_SET_CONFIGURATION_SECTION_NAME (ENGINE_CMD_BASE + 16)
# define QAT_CMD_ENABLE_SW_FALLBACK (ENGINE_CMD_BASE + 17)
# define QAT_CMD_HEARTBEAT_POLL (ENGINE_CMD_BASE + 18)
# define QAT_CMD_DISABLE_QAT_OFFLOAD (ENGINE_CMD_BASE + 19)
# ifdef QAT_HW
/******************************************************************************
* function:
* qat_get_qat_offload_disabled(void)
*
* description:
* This function indicates whether offloading to the QuickAssist hardware
* has been disabled. If it has then we can still perform crypto oncore.
*
******************************************************************************/
int qat_get_qat_offload_disabled(void);
/******************************************************************************
* function:
* qat_use_signals(void)
*
* description:
* This function indicates whether pthread signals are being used for thread
* synchronisation. If so, then a non-zero value is returned, else zero is
* returned.
*
******************************************************************************/
int qat_use_signals(void);
/******************************************************************************
* function:
* qat_get_sw_fallback_enabled(void)
*
* description:
* Return the flag which indicates if QAT engine is enabled to fall back to
* software calculation.
*
******************************************************************************/
int qat_get_sw_fallback_enabled(void);
/******************************************************************************
* function:
* int validate_configuration_section_name(const char *name)
*
* description:
* This function validates whether the section name has valid length and
* address. If so, then one is returned else zero is returned.
*
******************************************************************************/
int validate_configuration_section_name(const char *name);
/******************************************************************************
* function:
* is_instance_available(int inst_num)
*
* description:
* Return whether the instance number passed in is a currently available
* instance. Returns 1 if available, 0 otherwise.
*
******************************************************************************/
int is_instance_available(int inst_num);
/******************************************************************************
* function:
* is_any_device_available(void)
*
* description:
* Return whether any devices are currently available.
* Returns 1 if at least one device is detected and up, 0 otherwise.
*
******************************************************************************/
int is_any_device_available(void);
/******************************************************************************
* function:
* get_next_inst_num(void)
*
* description:
* Return the next instance number to use for an operation.
*
******************************************************************************/
int get_next_inst_num(void);
/******************************************************************************
* function:
* qat_check_create_local_variables(void)
*
* description:
* This function checks whether local variables exist in the current thread.
* If not, then it will attempt to create them. It returns NULL if the local
* variables could not be created, otherwise it returns a pointer to the
* local variables data structure.
*
******************************************************************************/
thread_local_variables_t * qat_check_create_local_variables(void);
/*****************************************************************************
* * function:
* qat_init(ENGINE *e)
*
* @param e [IN] - OpenSSL engine pointer
*
* description:
* qat init function, associated with
* Crypto memory setup and cpaStartInstance setups.
******************************************************************************/
int qat_init(ENGINE *e);
# endif
/******************************************************************************
* function:
* qat_engine_init(ENGINE *e)
*
* @param e [IN] - OpenSSL engine pointer
*
* description:
* Qat Engine initialization
******************************************************************************/
int qat_engine_init(ENGINE *e);
/******************************************************************************
* function:
* qat_engine_ctrl(ENGINE *e, int cmd, long i,
* void *p, void (*f)(void))
*
* @param e [IN] - OpenSSL engine pointer
* @param cmd [IN] - Control Command
* @param i [IN] - Unused
* @param p [IN] - Parameters for the command
* @param f [IN] - Callback function
*
* description:
* Qat engine control functions.
* Note: QAT_CMD_ENABLE_EXTERNAL_POLLING should be called at the following
* point during startup:
* ENGINE_load_qat
* ENGINE_by_id
* ---> ENGINE_ctrl_cmd(QAT_CMD_ENABLE_EXTERNAL_POLLING)
* ENGINE_init
******************************************************************************/
int qat_engine_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void));
/******************************************************************************
* function:
* qat_finish_int(ENGINE *e)
*
* @param e [IN] - OpenSSL engine pointer
*
* description:
* Qat finish function associated with qat crypto memory free
******************************************************************************/
int qat_finish_int(ENGINE *e, int reset_globals);
/******************************************************************************
* function:
* qat_engine_finish(ENGINE *e)
*
* @param e [IN] - OpenSSL engine pointer
*
* description:
* Qat engine finish function.
******************************************************************************/
int qat_engine_finish(ENGINE *e);
/******************************************************************************
* function:
* qat_engine_finish_int(ENGINE *e, int reset_globals)
*
* @param e [IN] - OpenSSL engine pointer
* @param reset_globals [IN] - Whether reset the global configuration variables
*
* description:
* Internal Qat engine finish function.
* The value of reset_globals should be either QAT_RESET_GLOBALS or
* QAT_RETAIN_GLOBALS
******************************************************************************/
int qat_engine_finish_int(ENGINE *e, int reset_globals);
/*****************************************************************************
* function:
* int qat_pthread_mutex_lock(void)
*
* description:
* Wrapper function to pthread_mutex with return values checked.
*
******************************************************************************/
int qat_pthread_mutex_lock(void);
/*****************************************************************************
* function:
* int qat_pthread_mutex_unlock(void)
*
* description:
* Wrapper function to pthread_mutex with return values checked.
*
******************************************************************************/
int qat_pthread_mutex_unlock(void);
# ifdef QAT_SW
/*****************************************************************************
* * function:
* multibuff_init(ENGINE *e)
*
* @param e [IN] - OpenSSL engine pointer
*
* description:
* Multibuff init function, associated with memory setup.
******************************************************************************/
int multibuff_init(ENGINE *e);
/******************************************************************************
* function:
* multibuff_engine_finish_int(ENGINE *e, int reset_globals)
*
* @param e [IN] - OpenSSL engine pointer
* @param reset_globals [IN] - Whether reset the global configuration variables
*
* description:
* Internal Multibuff engine finish function.
* The value of reset_globals should be either QAT_RESET_GLOBALS or
* QAT_RETAIN_GLOBALS
******************************************************************************/
int multibuff_finish_int(ENGINE *e, int reset_globals);
/******************************************************************************
* function:
* mb_check_thread_local(ENGINE *e, int reset_globals)
*
* description:
* Check if the thread has thread local pointer created using the key
* if not thread local memory polling thread will be created and stored on the
* Heap.
******************************************************************************/
mb_thread_data *mb_check_thread_local(void);
# endif
# ifdef QAT_SW_IPSEC
int hw_support(void);
# endif
#endif /* E_QAT_H */