forked from intel/QAT_Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqat_events.c
296 lines (260 loc) · 8.39 KB
/
qat_events.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
/* ====================================================================
*
*
* 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_events.c
*
* This file provides implementation for async events in engine
*
*****************************************************************************/
/* macros defined to allow use of the cpu get and set affinity functions */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#ifndef __USE_GNU
# define __USE_GNU
#endif
/* Standard Includes */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <sys/epoll.h>
#include <sys/eventfd.h>
#include <unistd.h>
/* Local Includes */
#include "e_qat.h"
#include "qat_events.h"
#include "qat_utils.h"
#include "e_qat_err.h"
/* OpenSSL Includes */
#include <openssl/err.h>
/* QAT includes */
#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"
int qat_is_event_driven()
{
return enable_event_driven_polling;
}
static void qat_fd_cleanup(ASYNC_WAIT_CTX *ctx, const void *key,
OSSL_ASYNC_FD readfd, void *custom)
{
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
int (*callback)(void *arg);
void *args;
if (ASYNC_WAIT_CTX_get_callback(ctx, &callback, &args)) {
return;
}
#endif
if (close(readfd) != 0) {
WARN("Failed to close fd: %d - error: %d\n", readfd, errno);
QATerr(QAT_F_QAT_FD_CLEANUP, QAT_R_CLOSE_FD_FAILURE);
}
}
int qat_setup_async_event_notification(int jobStatus)
{
/* We will ignore jobStatus for the moment */
ASYNC_JOB *job;
ASYNC_WAIT_CTX *waitctx;
OSSL_ASYNC_FD efd;
void *custom = NULL;
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
int (*callback)(void *arg);
void *args;
#endif
if ((job = ASYNC_get_current_job()) == NULL) {
WARN("Could not obtain current job\n");
return 0;
}
if ((waitctx = ASYNC_get_wait_ctx(job)) == NULL) {
WARN("Could not obtain wait context for job\n");
return 0;
}
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
if (ASYNC_WAIT_CTX_get_callback(waitctx, &callback, &args)) {
return 1;
}
#endif
if (ASYNC_WAIT_CTX_get_fd(waitctx, engine_qat_id, &efd,
&custom) == 0) {
efd = eventfd(0, EFD_NONBLOCK);
if (efd == -1) {
WARN("Failed to get eventfd = %d\n", errno);
return 0;
}
if (ASYNC_WAIT_CTX_set_wait_fd(waitctx, engine_qat_id, efd,
custom, qat_fd_cleanup) == 0) {
WARN("failed to set the fd in the ASYNC_WAIT_CTX\n");
qat_fd_cleanup(waitctx, engine_qat_id, efd, NULL);
return 0;
}
}
return 1;
}
int qat_clear_async_event_notification()
{
ASYNC_JOB *job;
ASYNC_WAIT_CTX *waitctx;
OSSL_ASYNC_FD efd;
size_t num_add_fds = 0;
size_t num_del_fds = 0;
void *custom = NULL;
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
int (*callback)(void *arg);
void *args;
#endif
if ((job = ASYNC_get_current_job()) == NULL) {
WARN("Could not obtain current job\n");
return 0;
}
if ((waitctx = ASYNC_get_wait_ctx(job)) == NULL) {
WARN("Could not obtain wait context for job\n");
return 0;
}
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
if (ASYNC_WAIT_CTX_get_callback(waitctx, &callback, &args)) {
return 1;
}
#endif
if (ASYNC_WAIT_CTX_get_changed_fds(waitctx, NULL, &num_add_fds, NULL,
&num_del_fds) == 0) {
WARN("Failure in ASYNC_WAIT_CTX_get_changed_async_fds\n");
return 0;
}
if (num_add_fds > 0) {
/* Only close the fd and remove it from the ASYNC_WAIT_CTX
if it is a new fd. If it is an existing fd then leave it
open and in the ASYNC_WAIT_CTX and it will be cleaned up
when the ASYNC_WAIT_CTX is cleaned up.*/
if (ASYNC_WAIT_CTX_get_fd(waitctx, engine_qat_id, &efd, &custom) == 0) {
WARN("Failure in ASYNC_WAIT_CTX_get_fd\n");
return 0;
}
qat_fd_cleanup(waitctx, engine_qat_id, efd, NULL);
if (ASYNC_WAIT_CTX_clear_fd(waitctx, engine_qat_id) == 0) {
WARN("Failure in ASYNC_WAIT_CTX_clear_fd\n");
return 0;
}
}
return 1;
}
int qat_pause_job(volatile ASYNC_JOB *job, int jobStatus)
{
ASYNC_WAIT_CTX *waitctx;
OSSL_ASYNC_FD efd;
void *custom = NULL;
uint64_t buf = 0;
int ret = 0;
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
int callback_set = 0;
int (*callback)(void *arg);
void *args;
#endif
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("waitctx == NULL\n");
return ret;
}
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
if (ASYNC_WAIT_CTX_get_callback(waitctx, &callback, &args)) {
callback_set = 1;
ASYNC_WAIT_CTX_set_status(waitctx, jobStatus);
}
#endif
if (ASYNC_pause_job() == 0) {
WARN("Failed to pause the job\n");
return ret;
}
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
if (callback_set) {
return 1;
}
#endif
if ((ret = ASYNC_WAIT_CTX_get_fd(waitctx, engine_qat_id, &efd,
&custom)) > 0) {
if (read(efd, &buf, sizeof(uint64_t)) == -1) {
if (errno != EAGAIN) {
WARN("Failed to read from fd: %d - error: %d\n", efd, errno);
}
/* Not resumed by the expected qat_wake_job() */
return QAT_JOB_RESUMED_UNEXPECTEDLY;
}
}
return ret;
}
int qat_wake_job(volatile ASYNC_JOB *job, int jobStatus)
{
ASYNC_WAIT_CTX *waitctx;
OSSL_ASYNC_FD efd;
void *custom = NULL;
/* Arbitary value '1' to write down the pipe to trigger event */
uint64_t buf = 1;
int ret = 0;
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
int (*callback)(void *arg);
void *args;
#endif
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("waitctx == NULL\n");
return ret;
}
#ifdef SSL_QAT_USE_ASYNC_CALLBACK
if (ASYNC_WAIT_CTX_get_callback(waitctx, &callback, &args)) {
/* We will go through callback mechanism */
if (ASYNC_STATUS_OK == jobStatus)
{
(*callback)(args);
} else {
/* In this case, we assume that a possbile retry happened */
ASYNC_WAIT_CTX_set_status(waitctx, jobStatus);
}
return 1;
}
#endif
if ((ret = ASYNC_WAIT_CTX_get_fd(waitctx, engine_qat_id, &efd,
&custom)) > 0) {
if (write(efd, &buf, sizeof(uint64_t)) == -1) {
WARN("Failed to write to fd: %d - error: %d\n", efd, errno);
}
}
return ret;
}