forked from intel/QAT_Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qat_utils.c
237 lines (204 loc) · 6.88 KB
/
qat_utils.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
/* ====================================================================
*
*
* BSD LICENSE
*
* Copyright(c) 2016-2020 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_utils.c
*
* This file provides an implementation of utilities for an OpenSSL engine
*
*****************************************************************************/
#include <stdio.h>
#include <pthread.h>
#include "qat_utils.h"
#ifndef OPENSSL_MULTIBUFF_OFFLOAD
# include "qat_init.h"
# include "cpa.h"
#else
# include "multibuff_init.h"
#endif
#ifdef QAT_TESTS_LOG
FILE *cryptoQatLogger = NULL;
pthread_mutex_t test_file_mutex = PTHREAD_MUTEX_INITIALIZER;
int test_file_ref_count = 0;
char test_file_name[QAT_MAX_TEST_FILE_NAME_LENGTH];
#endif /* QAT_TESTS_LOG */
FILE *qatDebugLogFile = NULL;
#ifdef QAT_CPU_CYCLES_COUNT
rdtsc_prof_t rsa_cycles_priv_enc_setup;
rdtsc_prof_t rsa_cycles_priv_dec_setup;
rdtsc_prof_t rsa_cycles_priv_execute;
rdtsc_prof_t rsa_cycles_pub_enc_setup;
rdtsc_prof_t rsa_cycles_pub_dec_setup;
rdtsc_prof_t rsa_cycles_pub_execute;
volatile static double rdtsc_prof_cost = 0.0; /* cost of measurement */
int print_cycle_count = 1;
#endif
#ifdef QAT_DEBUG_FILE_PATH
pthread_mutex_t debug_file_mutex = PTHREAD_MUTEX_INITIALIZER;
int debug_file_ref_count = 0;
void crypto_qat_debug_init_log()
{
pthread_mutex_lock(&debug_file_mutex);
if (!debug_file_ref_count) {
qatDebugLogFile = fopen(STR(QAT_DEBUG_FILE_PATH), "w");
if (NULL == qatDebugLogFile) {
qatDebugLogFile = stderr;
WARN("unable to open %s\n",
STR(QAT_DEBUG_FILE_PATH));
} else {
debug_file_ref_count++;
}
}
pthread_mutex_unlock(&debug_file_mutex);
}
void crypto_qat_debug_close_log()
{
pthread_mutex_lock(&debug_file_mutex);
if (debug_file_ref_count) {
if (qatDebugLogFile != NULL) {
fclose(qatDebugLogFile);
debug_file_ref_count--;
qatDebugLogFile = stderr;
}
}
pthread_mutex_unlock(&debug_file_mutex);
}
#endif /* QAT_DEBUG_FILE_PATH */
#ifdef QAT_TESTS_LOG
char *crypto_qat_testing_get_log_filename()
{
snprintf(test_file_name, QAT_MAX_TEST_FILE_NAME_LENGTH,
"/opt/qat-crypto-%d.log", getpid());
return test_file_name;
}
void crypto_qat_testing_init_log()
{
pthread_mutex_lock(&test_file_mutex);
if (!test_file_ref_count) {
cryptoQatLogger = fopen(crypto_qat_testing_get_log_filename(), "w");
if (NULL == cryptoQatLogger) {
WARN("unable to open %s\n", test_file_name);
pthread_mutex_unlock(&test_file_mutex);
exit(1);
} else {
test_file_ref_count++;
}
}
pthread_mutex_unlock(&test_file_mutex);
}
void crypto_qat_testing_close_log()
{
pthread_mutex_lock(&test_file_mutex);
if (test_file_ref_count) {
if (cryptoQatLogger != NULL) {
fclose(cryptoQatLogger);
test_file_ref_count--;
}
}
pthread_mutex_unlock(&test_file_mutex);
}
#endif /* QAT_TESTS_LOG */
#ifdef QAT_DEBUG
void qat_hex_dump(const char *func, const char *var, const unsigned char p[],
int l)
{
int i;
fprintf(qatDebugLogFile, "%s: %s: Length %d, Address %p", func, var, l, p);
if (NULL != p && l > 0) {
for (i = 0; i < l; i++) {
if (i % 16 == 0)
fputc('\n', qatDebugLogFile);
else if (i % 8 == 0)
fputs("- ", qatDebugLogFile);
fprintf(qatDebugLogFile, "%02x ", p[i]);
}
}
fputc('\n', qatDebugLogFile);
}
#endif
#ifdef QAT_CPU_CYCLES_COUNT
void rdtsc_prof_init(rdtsc_prof_t *p, const uint32_t bytes)
{
p->bytes = bytes;
p->clk_start = 0;
p->clk_avg = 0.0;
p->clk_avgc = 0;
p->clk_diff_cost_adjusted = 0.0;
p->started = 0;
p->cost = rdtsc_prof_cost;
}
void rdtsc_prof_print(rdtsc_prof_t *p, char *name)
{
if (p == NULL) {
fprintf(qatDebugLogFile, "%s\tavg\n", " ");
}
else {
if (p->clk_avgc > 0) {
double avg_c = (p->clk_avg / ((double)p->clk_avgc));
# ifdef QAT_CPU_CYCLE_MEASUREMENT_COST
fprintf(qatDebugLogFile, "\n%s - avg cycles per job (mca ENABLED): %.1f - number of samples = %ld\n", name, avg_c, p->clk_avgc);
# else
fprintf(qatDebugLogFile, "%s,%.1f,%ld\n", name, avg_c, p->clk_avgc);
# endif
if (p->bytes > 0) {
double avg_pb = avg_c / ((double)p->bytes);
fprintf(qatDebugLogFile, " - avg cycles per byte: %.1f\n", avg_pb);
}
}
}
}
void rdtsc_initialize(void)
{
rdtsc_prof_t p;
unsigned i;
/*
* Figure out cost of measurement
*/
rdtsc_prof_init(&p, 0);
print_cycle_count = 0;
for (i = 0; i < 10000; i++) {
rdtsc_prof_start(&p);
rdtsc_prof_end(&p, 1, "Measurement cost");
}
# ifdef QAT_CPU_CYCLE_COUNT_DEBUG
print_cycle_count = 1;
# endif
rdtsc_prof_print(&p, "Cost of CPU cycle measurement ");
rdtsc_prof_cost = p.clk_avg / (double)p.clk_avgc;
fprintf(qatDebugLogFile, "[%s] - cost of measurement is subtracted from subsequent tests if build flag QAT_CPU_CYCLE_MEASUREMENT_COST is set.\n\n", __func__);
}
#endif /* QAT_CPU_CYCLES_COUNT */