4 * Copyright(c) 2015-2017 Intel Corporation. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Intel Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #ifndef TEST_CRYPTODEV_H_
33 #define TEST_CRYPTODEV_H_
40 #define MAX_NUM_OPS_INFLIGHT (4096)
41 #define MIN_NUM_OPS_INFLIGHT (128)
42 #define DEFAULT_NUM_OPS_INFLIGHT (128)
44 #define MAX_NUM_QPS_PER_QAT_DEVICE (2)
45 #define DEFAULT_NUM_QPS_PER_QAT_DEVICE (2)
46 #define DEFAULT_BURST_SIZE (64)
47 #define DEFAULT_NUM_XFORMS (2)
48 #define NUM_MBUFS (8191)
49 #define MBUF_CACHE_SIZE (256)
50 #define MBUF_DATAPAYLOAD_SIZE (2048 + DIGEST_BYTE_LENGTH_SHA512)
51 #define MBUF_SIZE (sizeof(struct rte_mbuf) + \
52 RTE_PKTMBUF_HEADROOM + MBUF_DATAPAYLOAD_SIZE)
54 #define BYTE_LENGTH(x) (x/8)
55 /* HASH DIGEST LENGTHS */
56 #define DIGEST_BYTE_LENGTH_MD5 (BYTE_LENGTH(128))
57 #define DIGEST_BYTE_LENGTH_SHA1 (BYTE_LENGTH(160))
58 #define DIGEST_BYTE_LENGTH_SHA224 (BYTE_LENGTH(224))
59 #define DIGEST_BYTE_LENGTH_SHA256 (BYTE_LENGTH(256))
60 #define DIGEST_BYTE_LENGTH_SHA384 (BYTE_LENGTH(384))
61 #define DIGEST_BYTE_LENGTH_SHA512 (BYTE_LENGTH(512))
62 #define DIGEST_BYTE_LENGTH_AES_XCBC (BYTE_LENGTH(96))
63 #define DIGEST_BYTE_LENGTH_SNOW3G_UIA2 (BYTE_LENGTH(32))
64 #define DIGEST_BYTE_LENGTH_KASUMI_F9 (BYTE_LENGTH(32))
65 #define AES_XCBC_MAC_KEY_SZ (16)
66 #define DIGEST_BYTE_LENGTH_AES_GCM (BYTE_LENGTH(128))
68 #define TRUNCATED_DIGEST_BYTE_LENGTH_SHA1 (12)
69 #define TRUNCATED_DIGEST_BYTE_LENGTH_SHA224 (16)
70 #define TRUNCATED_DIGEST_BYTE_LENGTH_SHA256 (16)
71 #define TRUNCATED_DIGEST_BYTE_LENGTH_SHA384 (24)
72 #define TRUNCATED_DIGEST_BYTE_LENGTH_SHA512 (32)
74 #define MAXIMUM_IV_LENGTH (16)
76 #define IV_OFFSET (sizeof(struct rte_crypto_op) + \
77 sizeof(struct rte_crypto_sym_op) + DEFAULT_NUM_XFORMS * \
78 sizeof(struct rte_crypto_sym_xform))
80 #define CRYPTODEV_NAME_NULL_PMD crypto_null
81 #define CRYPTODEV_NAME_AESNI_MB_PMD crypto_aesni_mb
82 #define CRYPTODEV_NAME_AESNI_GCM_PMD crypto_aesni_gcm
83 #define CRYPTODEV_NAME_OPENSSL_PMD crypto_openssl
84 #define CRYPTODEV_NAME_QAT_SYM_PMD crypto_qat
85 #define CRYPTODEV_NAME_SNOW3G_PMD crypto_snow3g
86 #define CRYPTODEV_NAME_KASUMI_PMD crypto_kasumi
87 #define CRYPTODEV_NAME_ZUC_PMD crypto_zuc
88 #define CRYPTODEV_NAME_ARMV8_PMD crypto_armv8
89 #define CRYPTODEV_NAME_DPAA2_SEC_PMD crypto_dpaa2_sec
90 #define CRYPTODEV_NAME_SCHEDULER_PMD crypto_scheduler
91 #define CRYPTODEV_NAME_MRVL_PMD crypto_mrvl
94 * Write (spread) data from buffer to mbuf data
99 * Start offset in mbuf
101 * Number of bytes to copy
103 * Continuous source buffer
106 pktmbuf_write(struct rte_mbuf *mbuf, int offset, int len, const uint8_t *buffer)
113 for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
114 offset -= m->data_len;
116 l = m->data_len - offset;
118 /* copy data from first segment */
119 dst = rte_pktmbuf_mtod_offset(m, char *, offset);
121 rte_memcpy(dst, buffer, len);
125 rte_memcpy(dst, buffer, l);
129 for (m = m->next; (m != NULL) && (n > 0); m = m->next) {
130 dst = rte_pktmbuf_mtod(m, char *);
133 rte_memcpy(dst, buffer, n);
136 rte_memcpy(dst, buffer, l);
142 static inline uint8_t *
143 pktmbuf_mtod_offset(struct rte_mbuf *mbuf, int offset) {
146 for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
147 offset -= m->data_len;
150 printf("pktmbuf_mtod_offset: offset out of buffer\n");
153 return rte_pktmbuf_mtod_offset(m, uint8_t *, offset);
156 static inline rte_iova_t
157 pktmbuf_iova_offset(struct rte_mbuf *mbuf, int offset) {
160 for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
161 offset -= m->data_len;
164 printf("pktmbuf_iova_offset: offset out of buffer\n");
167 return rte_pktmbuf_iova_offset(m, offset);
170 static inline struct rte_mbuf *
171 create_segmented_mbuf(struct rte_mempool *mbuf_pool, int pkt_len,
172 int nb_segs, uint8_t pattern) {
174 struct rte_mbuf *m = NULL, *mbuf = NULL;
181 printf("Packet size must be 1 or more (is %d)\n", pkt_len);
186 printf("Number of segments must be 1 or more (is %d)\n",
191 t_len = pkt_len >= nb_segs ? pkt_len / nb_segs : 1;
194 /* Create chained mbuf_src and fill it generated data */
195 for (i = 0; size > 0; i++) {
197 m = rte_pktmbuf_alloc(mbuf_pool);
202 printf("Cannot create segment for source mbuf");
206 /* Make sure if tailroom is zeroed */
207 memset(m->buf_addr, pattern, m->buf_len);
209 data_len = size > t_len ? t_len : size;
210 dst = (uint8_t *)rte_pktmbuf_append(m, data_len);
212 printf("Cannot append %d bytes to the mbuf\n",
218 rte_pktmbuf_chain(mbuf, m);
227 rte_pktmbuf_free(mbuf);
231 #endif /* TEST_CRYPTODEV_H_ */