1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
8 #include <rte_string_fns.h>
9 #include <rte_cryptodev.h>
10 #include <rte_malloc.h>
12 #include "fips_validation.h"
14 #define skip_white_spaces(pos) \
16 __typeof__(pos) _p = (pos); \
17 for ( ; isspace(*_p); _p++) \
25 FILE *fp = info.fp_rd;
26 char *line = info.one_line_text;
30 memset(line, 0, MAX_LINE_CHAR);
31 while ((ret = fgetc(fp)) != EOF) {
34 if (loc >= MAX_LINE_CHAR - 1)
48 fips_test_fetch_one_block(void)
54 for (i = 0; i < info.nb_vec_lines; i++) {
61 if (i >= MAX_LINE_PER_VECTOR) {
66 ret = get_file_line();
67 size = strlen(info.one_line_text);
71 info.vec[i] = calloc(1, size + 5);
72 if (info.vec[i] == NULL)
75 strlcpy(info.vec[i], info.one_line_text, size + 1);
79 info.nb_vec_lines = i;
84 for (i = 0; i < MAX_LINE_PER_VECTOR; i++)
85 if (info.vec[i] != NULL) {
90 info.nb_vec_lines = 0;
96 fips_test_parse_header(void)
102 time_t t = time(NULL);
103 struct tm *tm_now = localtime(&t);
105 ret = fips_test_fetch_one_block();
109 for (i = 0; i < info.nb_vec_lines; i++) {
111 if (strstr(info.vec[i], "AESVS")) {
113 info.algo = FIPS_TEST_ALGO_AES;
114 ret = parse_test_aes_init();
117 } else if (strstr(info.vec[i], "GCM")) {
119 info.algo = FIPS_TEST_ALGO_AES_GCM;
120 ret = parse_test_gcm_init();
123 } else if (strstr(info.vec[i], "CMAC")) {
125 info.algo = FIPS_TEST_ALGO_AES_CMAC;
126 ret = parse_test_cmac_init();
129 } else if (strstr(info.vec[i], "CCM")) {
131 info.algo = FIPS_TEST_ALGO_AES_CCM;
132 ret = parse_test_ccm_init();
135 } else if (strstr(info.vec[i], "HMAC")) {
137 info.algo = FIPS_TEST_ALGO_HMAC;
138 ret = parse_test_hmac_init();
141 } else if (strstr(info.vec[i], "TDES")) {
143 info.algo = FIPS_TEST_ALGO_TDES;
144 ret = parse_test_tdes_init();
147 } else if (strstr(info.vec[i], "SHA-")) {
149 info.algo = FIPS_TEST_ALGO_SHA;
150 ret = parse_test_sha_init();
156 tmp = strstr(info.vec[i], "# Config info for ");
158 fprintf(info.fp_wr, "%s%s\n", "# Config info for DPDK Cryptodev ",
163 tmp = strstr(info.vec[i], "# HMAC information for ");
165 fprintf(info.fp_wr, "%s%s\n", "# HMAC information for "
171 tmp = strstr(info.vec[i], "# Config Info for : ");
174 fprintf(info.fp_wr, "%s%s\n", "# Config Info for DPDK Cryptodev : ",
179 tmp = strstr(info.vec[i], "# information for ");
182 char tmp_output[128] = {0};
184 strlcpy(tmp_output, info.vec[i], tmp - info.vec[i] + 1);
186 fprintf(info.fp_wr, "%s%s%s\n", tmp_output,
187 "information for DPDK Cryptodev ",
192 tmp = strstr(info.vec[i], " test information for ");
194 char tmp_output[128] = {0};
196 strlcpy(tmp_output, info.vec[i], tmp - info.vec[i] + 1);
198 fprintf(info.fp_wr, "%s%s%s\n", tmp_output,
199 "test information for DPDK Cryptodev ",
204 tmp = strstr(info.vec[i], "\" information for \"");
206 char tmp_output[128] = {0};
208 strlcpy(tmp_output, info.vec[i], tmp - info.vec[i] + 1);
210 fprintf(info.fp_wr, "%s%s%s\n", tmp_output,
211 "\" information for DPDK Cryptodev ",
216 if (i == info.nb_vec_lines - 1) {
217 /** update the time as current time, write to file */
218 fprintf(info.fp_wr, "%s%s\n", "# Generated on ",
223 /* to this point, no field need to update,
224 * only copy to rsp file
226 fprintf(info.fp_wr, "%s\n", info.vec[i]);
233 parse_file_type(const char *path)
235 const char *tmp = path + strlen(path) - 3;
237 if (strstr(tmp, REQ_FILE_PERFIX))
238 info.file_type = FIPS_TYPE_REQ;
239 else if (strstr(tmp, RSP_FILE_PERFIX))
240 info.file_type = FIPS_TYPE_RSP;
241 else if (strstr(path, FAX_FILE_PERFIX))
242 info.file_type = FIPS_TYPE_FAX;
250 fips_test_init(const char *req_file_path, const char *rsp_file_path,
251 const char *device_name)
253 if (strcmp(req_file_path, rsp_file_path) == 0) {
254 RTE_LOG(ERR, USER1, "File paths cannot be the same\n");
260 strcpy(info.file_name, req_file_path);
261 info.algo = FIPS_TEST_ALGO_MAX;
262 if (parse_file_type(req_file_path) < 0) {
263 RTE_LOG(ERR, USER1, "File %s type not supported\n",
268 info.fp_rd = fopen(req_file_path, "r");
270 RTE_LOG(ERR, USER1, "Cannot open file %s\n", req_file_path);
274 info.fp_wr = fopen(rsp_file_path, "w");
276 RTE_LOG(ERR, USER1, "Cannot open file %s\n", rsp_file_path);
280 info.one_line_text = calloc(1, MAX_LINE_CHAR);
281 if (!info.one_line_text) {
282 RTE_LOG(ERR, USER1, "Insufficient memory\n");
286 strlcpy(info.device_name, device_name, sizeof(info.device_name));
288 if (fips_test_parse_header() < 0) {
289 RTE_LOG(ERR, USER1, "Failed parsing header\n");
297 fips_test_clear(void)
303 if (info.one_line_text)
304 free(info.one_line_text);
305 if (info.nb_vec_lines) {
308 for (i = 0; i < info.nb_vec_lines; i++)
312 memset(&info, 0, sizeof(info));
316 fips_test_parse_one_case(void)
319 uint32_t is_interim = 0;
322 if (info.interim_callbacks) {
323 for (i = 0; i < info.nb_vec_lines; i++) {
324 for (j = 0; info.interim_callbacks[j].key != NULL; j++)
325 if (strstr(info.vec[i],
326 info.interim_callbacks[j].key)) {
329 ret = info.interim_callbacks[j].cb(
330 info.interim_callbacks[j].key,
332 info.interim_callbacks[j].val);
340 for (i = 0; i < info.nb_vec_lines; i++)
341 fprintf(info.fp_wr, "%s\n", info.vec[i]);
342 fprintf(info.fp_wr, "\n");
346 for (i = 0; i < info.nb_vec_lines; i++) {
347 for (j = 0; info.callbacks[j].key != NULL; j++)
348 if (strstr(info.vec[i], info.callbacks[j].key)) {
349 ret = info.callbacks[j].cb(
350 info.callbacks[j].key,
351 info.vec[i], info.callbacks[j].val);
362 fips_test_write_one_case(void)
366 for (i = 0; i < info.nb_vec_lines; i++)
367 fprintf(info.fp_wr, "%s\n", info.vec[i]);
371 parser_read_uint64_hex(uint64_t *value, const char *p)
376 p = skip_white_spaces(p);
378 val = strtoul(p, &next, 16);
382 p = skip_white_spaces(next);
391 parser_read_uint8_hex(uint8_t *value, const char *p)
394 int ret = parser_read_uint64_hex(&val, p);
407 parse_uint8_known_len_hex_str(const char *key, char *src, struct fips_val *val)
409 struct fips_val tmp_val = {0};
410 uint32_t len = val->len;
414 if (val->val != NULL) {
422 ret = parse_uint8_hex_str(key, src, &tmp_val);
426 if (tmp_val.len == val->len) {
427 val->val = tmp_val.val;
431 if (tmp_val.len < val->len) {
432 rte_free(tmp_val.val);
436 val->val = rte_zmalloc(NULL, val->len, 0);
438 rte_free(tmp_val.val);
439 memset(val, 0, sizeof(*val));
443 memcpy(val->val, tmp_val.val, val->len);
444 rte_free(tmp_val.val);
450 parse_uint8_hex_str(const char *key, char *src, struct fips_val *val)
456 len = strlen(src) / 2;
463 val->val = rte_zmalloc(NULL, len, 0);
467 for (j = 0; j < len; j++) {
468 char byte[3] = {src[j * 2], src[j * 2 + 1], '\0'};
470 if (parser_read_uint8_hex(&val->val[j], byte) < 0) {
472 memset(val, 0, sizeof(*val));
483 parser_read_uint32_val(const char *key, char *src, struct fips_val *val)
485 char *data = src + strlen(key);
486 size_t data_len = strlen(data);
489 if (data[data_len - 1] == ']') {
490 char *tmp_data = calloc(1, data_len + 1);
492 if (tmp_data == NULL)
495 strlcpy(tmp_data, data, data_len);
497 ret = parser_read_uint32(&val->len, tmp_data);
501 ret = parser_read_uint32(&val->len, data);
507 parser_read_uint32_bit_val(const char *key, char *src, struct fips_val *val)
511 ret = parser_read_uint32_val(key, src, val);
522 writeback_hex_str(const char *key, char *dst, struct fips_val *val)
529 for (len = 0; len < val->len; len++)
530 snprintf(str + len * 2, 255, "%02x", val->val[len]);
536 parser_read_uint64(uint64_t *value, const char *p)
541 p = skip_white_spaces(p);
545 val = strtoul(p, &next, 10);
567 p = skip_white_spaces(p);
576 parser_read_uint32(uint32_t *value, char *p)
579 int ret = parser_read_uint64(&val, p);
584 if (val > UINT32_MAX)
592 parse_write_hex_str(struct fips_val *src)
594 writeback_hex_str("", info.one_line_text, src);
596 fprintf(info.fp_wr, "%s\n", info.one_line_text);
600 update_info_vec(uint32_t count)
602 const struct fips_test_callback *cb;
605 if (!info.writeback_callbacks)
608 cb = &info.writeback_callbacks[0];
610 snprintf(info.vec[0], strlen(info.vec[0]) + 4, "%s%u", cb->key, count);
612 for (i = 1; i < info.nb_vec_lines; i++) {
613 for (j = 1; info.writeback_callbacks[j].key != NULL; j++) {
614 cb = &info.writeback_callbacks[j];
615 if (strstr(info.vec[i], cb->key)) {
616 cb->cb(cb->key, info.vec[i], cb->val);