test/crypto: move IV to crypto op private data
[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 /**
81  * Write (spread) data from buffer to mbuf data
82  *
83  * @param mbuf
84  *   Destination mbuf
85  * @param offset
86  *   Start offset in mbuf
87  * @param len
88  *   Number of bytes to copy
89  * @param buffer
90  *   Continuous source buffer
91  */
92 static inline void
93 pktmbuf_write(struct rte_mbuf *mbuf, int offset, int len, const uint8_t *buffer)
94 {
95         int n = len;
96         int l;
97         struct rte_mbuf *m;
98         char *dst;
99
100         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
101                 offset -= m->data_len;
102
103         l = m->data_len - offset;
104
105         /* copy data from first segment */
106         dst = rte_pktmbuf_mtod_offset(m, char *, offset);
107         if (len <= l) {
108                 rte_memcpy(dst, buffer, len);
109                 return;
110         }
111
112         rte_memcpy(dst, buffer, l);
113         buffer += l;
114         n -= l;
115
116         for (m = m->next; (m != NULL) && (n > 0); m = m->next) {
117                 dst = rte_pktmbuf_mtod(m, char *);
118                 l = m->data_len;
119                 if (n < l) {
120                         rte_memcpy(dst, buffer, n);
121                         return;
122                 }
123                 rte_memcpy(dst, buffer, l);
124                 buffer += l;
125                 n -= l;
126         }
127 }
128
129 static inline uint8_t *
130 pktmbuf_mtod_offset(struct rte_mbuf *mbuf, int offset) {
131         struct rte_mbuf *m;
132
133         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
134                 offset -= m->data_len;
135
136         if (m == NULL) {
137                 printf("pktmbuf_mtod_offset: offset out of buffer\n");
138                 return NULL;
139         }
140         return rte_pktmbuf_mtod_offset(m, uint8_t *, offset);
141 }
142
143 static inline phys_addr_t
144 pktmbuf_mtophys_offset(struct rte_mbuf *mbuf, int offset) {
145         struct rte_mbuf *m;
146
147         for (m = mbuf; (m != NULL) && (offset > m->data_len); m = m->next)
148                 offset -= m->data_len;
149
150         if (m == NULL) {
151                 printf("pktmbuf_mtophys_offset: offset out of buffer\n");
152                 return 0;
153         }
154         return rte_pktmbuf_mtophys_offset(m, offset);
155 }
156
157 static inline struct rte_mbuf *
158 create_segmented_mbuf(struct rte_mempool *mbuf_pool, int pkt_len,
159                 int nb_segs, uint8_t pattern) {
160
161         struct rte_mbuf *m = NULL, *mbuf = NULL;
162         uint8_t *dst;
163         int data_len = 0;
164         int i, size;
165         int t_len;
166
167         if (pkt_len < 1) {
168                 printf("Packet size must be 1 or more (is %d)\n", pkt_len);
169                 return NULL;
170         }
171
172         if (nb_segs < 1) {
173                 printf("Number of segments must be 1 or more (is %d)\n",
174                                 nb_segs);
175                 return NULL;
176         }
177
178         t_len = pkt_len >= nb_segs ? pkt_len / nb_segs : 1;
179         size = pkt_len;
180
181         /* Create chained mbuf_src and fill it generated data */
182         for (i = 0; size > 0; i++) {
183
184                 m = rte_pktmbuf_alloc(mbuf_pool);
185                 if (i == 0)
186                         mbuf = m;
187
188                 if (m == NULL) {
189                         printf("Cannot create segment for source mbuf");
190                         goto fail;
191                 }
192
193                 /* Make sure if tailroom is zeroed */
194                 memset(m->buf_addr, pattern, m->buf_len);
195
196                 data_len = size > t_len ? t_len : size;
197                 dst = (uint8_t *)rte_pktmbuf_append(m, data_len);
198                 if (dst == NULL) {
199                         printf("Cannot append %d bytes to the mbuf\n",
200                                         data_len);
201                         goto fail;
202                 }
203
204                 if (mbuf != m)
205                         rte_pktmbuf_chain(mbuf, m);
206
207                 size -= data_len;
208
209         }
210         return mbuf;
211
212 fail:
213         if (mbuf)
214                 rte_pktmbuf_free(mbuf);
215         return NULL;
216 }
217
218 #endif /* TEST_CRYPTODEV_H_ */