4509a09ad6bb8a6ce1297c7961da32837681dbd5
[deb_dpdk.git] / test / test / test_cryptodev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2015-2017 Intel Corporation. All rights reserved.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
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
15  *         distribution.
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.
19  *
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.
31  */
32 #ifndef TEST_CRYPTODEV_H_
33 #define TEST_CRYPTODEV_H_
34
35 #define HEX_DUMP 0
36
37 #define FALSE                           0
38 #define TRUE                            1
39
40 #define MAX_NUM_OPS_INFLIGHT            (4096)
41 #define MIN_NUM_OPS_INFLIGHT            (128)
42 #define DEFAULT_NUM_OPS_INFLIGHT        (128)
43
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)
53
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))
67
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)
73
74 #define MAXIMUM_IV_LENGTH                               (16)
75
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))
79
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
92 /**
93  * Write (spread) data from buffer to mbuf data
94  *
95  * @param mbuf
96  *   Destination mbuf
97  * @param offset
98  *   Start offset in mbuf
99  * @param len
100  *   Number of bytes to copy
101  * @param buffer
102  *   Continuous source buffer
103  */
104 static inline void
105 pktmbuf_write(struct rte_mbuf *mbuf, int offset, int len, const uint8_t *buffer)
106 {
107         int n = len;
108         int l;
109         struct rte_mbuf *m;
110         char *dst;
111
112         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
113                 offset -= m->data_len;
114
115         l = m->data_len - offset;
116
117         /* copy data from first segment */
118         dst = rte_pktmbuf_mtod_offset(m, char *, offset);
119         if (len <= l) {
120                 rte_memcpy(dst, buffer, len);
121                 return;
122         }
123
124         rte_memcpy(dst, buffer, l);
125         buffer += l;
126         n -= l;
127
128         for (m = m->next; (m != NULL) && (n > 0); m = m->next) {
129                 dst = rte_pktmbuf_mtod(m, char *);
130                 l = m->data_len;
131                 if (n < l) {
132                         rte_memcpy(dst, buffer, n);
133                         return;
134                 }
135                 rte_memcpy(dst, buffer, l);
136                 buffer += l;
137                 n -= l;
138         }
139 }
140
141 static inline uint8_t *
142 pktmbuf_mtod_offset(struct rte_mbuf *mbuf, int offset) {
143         struct rte_mbuf *m;
144
145         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
146                 offset -= m->data_len;
147
148         if (m == NULL) {
149                 printf("pktmbuf_mtod_offset: offset out of buffer\n");
150                 return NULL;
151         }
152         return rte_pktmbuf_mtod_offset(m, uint8_t *, offset);
153 }
154
155 static inline phys_addr_t
156 pktmbuf_mtophys_offset(struct rte_mbuf *mbuf, int offset) {
157         struct rte_mbuf *m;
158
159         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
160                 offset -= m->data_len;
161
162         if (m == NULL) {
163                 printf("pktmbuf_mtophys_offset: offset out of buffer\n");
164                 return 0;
165         }
166         return rte_pktmbuf_mtophys_offset(m, offset);
167 }
168
169 static inline struct rte_mbuf *
170 create_segmented_mbuf(struct rte_mempool *mbuf_pool, int pkt_len,
171                 int nb_segs, uint8_t pattern) {
172
173         struct rte_mbuf *m = NULL, *mbuf = NULL;
174         uint8_t *dst;
175         int data_len = 0;
176         int i, size;
177         int t_len;
178
179         if (pkt_len < 1) {
180                 printf("Packet size must be 1 or more (is %d)\n", pkt_len);
181                 return NULL;
182         }
183
184         if (nb_segs < 1) {
185                 printf("Number of segments must be 1 or more (is %d)\n",
186                                 nb_segs);
187                 return NULL;
188         }
189
190         t_len = pkt_len >= nb_segs ? pkt_len / nb_segs : 1;
191         size = pkt_len;
192
193         /* Create chained mbuf_src and fill it generated data */
194         for (i = 0; size > 0; i++) {
195
196                 m = rte_pktmbuf_alloc(mbuf_pool);
197                 if (i == 0)
198                         mbuf = m;
199
200                 if (m == NULL) {
201                         printf("Cannot create segment for source mbuf");
202                         goto fail;
203                 }
204
205                 /* Make sure if tailroom is zeroed */
206                 memset(m->buf_addr, pattern, m->buf_len);
207
208                 data_len = size > t_len ? t_len : size;
209                 dst = (uint8_t *)rte_pktmbuf_append(m, data_len);
210                 if (dst == NULL) {
211                         printf("Cannot append %d bytes to the mbuf\n",
212                                         data_len);
213                         goto fail;
214                 }
215
216                 if (mbuf != m)
217                         rte_pktmbuf_chain(mbuf, m);
218
219                 size -= data_len;
220
221         }
222         return mbuf;
223
224 fail:
225         if (mbuf)
226                 rte_pktmbuf_free(mbuf);
227         return NULL;
228 }
229
230 #endif /* TEST_CRYPTODEV_H_ */