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