-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathqat_events.c
334 lines (299 loc) · 9.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
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
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2016-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_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>
#ifndef __FreeBSD__
# include <sys/epoll.h>
# include <sys/eventfd.h>
#else
# include <sys/types.h>
# include <sys/event.h>
#endif
#include <unistd.h>
#include <fcntl.h>
/* OpenSSL Includes */
#include <openssl/err.h>
/* QAT includes */
#ifdef QAT_HW
# include "cpa.h"
# include "cpa_types.h"
#endif
/* Local Includes */
#include "e_qat.h"
#include "qat_events.h"
#include "qat_utils.h"
#ifdef QAT_HW
int qat_is_event_driven()
{
return enable_event_driven_polling;
}
#endif
static void qat_fd_cleanup(ASYNC_WAIT_CTX *ctx, const void *key,
OSSL_ASYNC_FD readfd, void *custom)
{
#ifdef QAT_OPENSSL_3
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 readfd: %d - error: %d\n", readfd, errno);
QATerr(QAT_F_QAT_FD_CLEANUP, QAT_R_CLOSE_READFD_FAILURE);
}
}
int qat_setup_async_event_notification(volatile ASYNC_JOB *job)
{
ASYNC_WAIT_CTX *waitctx;
#ifdef QAT_OPENSSL_3
int (*callback)(void *arg);
void *args;
#endif
OSSL_ASYNC_FD efd;
void *custom = NULL;
#ifdef __FreeBSD__
struct kevent event;
#endif
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("Could not obtain wait context for job\n");
return 0;
}
#ifdef QAT_OPENSSL_3
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) {
#ifdef __FreeBSD__
efd = kqueue();
if (efd == -1) {
WARN("Failed to get kqueue fd = %d\n", errno);
return 0;
}
/* Initialize the event */
EV_SET(&event, QAT_EVENT_NUM, EVFILT_USER, EV_ADD | EV_CLEAR, NOTE_WRITE,
0, NULL);
if (kevent(efd, &event, QAT_EVENT_NUM, NULL, 0, NULL) == -1) {
WARN("Failed to register event for the fd = %d\n", efd);
close(efd);
return 0;
}
#else
efd = eventfd(0, EFD_NONBLOCK);
if (efd == -1) {
WARN("Failed to get eventfd = %d\n", errno);
return 0;
}
#endif
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(volatile ASYNC_JOB *job)
{
ASYNC_WAIT_CTX *waitctx;
size_t num_add_fds = 0;
size_t num_del_fds = 0;
#ifdef QAT_OPENSSL_3
int (*callback)(void *arg);
void *args;
#endif
OSSL_ASYNC_FD efd;
void *custom = NULL;
#ifdef QAT_BORINGSSL
if (ASYNC_current_job_last_check_and_get()) {
/* Do nothing */
}
#endif /* QAT_BORINGSSL */
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("Could not obtain wait context for job\n");
return 0;
}
#ifdef QAT_OPENSSL_3
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;
int ret = 0;
#ifdef QAT_OPENSSL_3
int callback_set = 0;
int (*callback)(void *arg);
void *args;
#endif
OSSL_ASYNC_FD readfd;
void *custom = NULL;
#ifdef __FreeBSD__
struct kevent event;
#else
uint64_t buf = 0;
#endif
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("waitctx == NULL\n");
return ret;
}
#ifdef QAT_OPENSSL_3
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 QAT_OPENSSL_3
if (callback_set) {
return 1;
}
#endif
if ((ret = ASYNC_WAIT_CTX_get_fd(waitctx, engine_qat_id, &readfd,
&custom)) > 0) {
#ifndef __FreeBSD__
if (read(readfd, &buf, sizeof(uint64_t)) == -1) {
if (errno != EAGAIN) {
WARN("Failed to read from fd: %d - error: %d\n", readfd, errno);
}
/* Not resumed by the expected qat_wake_job() */
return QAT_JOB_RESUMED_UNEXPECTEDLY;
}
#else
if (kevent(readfd, NULL, 0, &event, QAT_EVENT_NUM, NULL) == -1) {
WARN("Failed to get event from fd: %d - error: %d\n", readfd, errno);
/* Not resumed by the expected qat_wake_job() */
return QAT_JOB_RESUMED_UNEXPECTEDLY;
}
#endif
}
return ret;
}
int qat_wake_job(volatile ASYNC_JOB *job, int jobStatus)
{
ASYNC_WAIT_CTX *waitctx;
int ret = 0;
#ifdef QAT_OPENSSL_3
int (*callback)(void *arg);
void *args;
#endif
OSSL_ASYNC_FD efd;
void *custom = NULL;
#ifdef __FreeBSD__
struct kevent event;
#else
/* Arbitrary value '1' to write down the pipe to trigger event */
uint64_t buf = 1;
#endif
if ((waitctx = ASYNC_get_wait_ctx((ASYNC_JOB *)job)) == NULL) {
WARN("waitctx == NULL\n");
return ret;
}
#ifdef QAT_OPENSSL_3
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 possible 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) {
#ifndef __FreeBSD__
if (write(efd, &buf, sizeof(uint64_t)) == -1) {
WARN("Failed to write to fd: %d - error: %d\n", efd, errno);
}
#else
EV_SET(&event, QAT_EVENT_NUM, EVFILT_USER, EV_ADD, NOTE_TRIGGER, 0, NULL);
if (kevent(efd, &event, QAT_EVENT_NUM, NULL, 0, NULL) == -1) {
WARN("Failed to trigger event to fd: %d - error: %d\n", efd, errno);
}
#endif
}
return ret;
}