test/crypto: add outbound known vector cases for IV
[dpdk.git] / app / test / test_cryptodev_security_ipsec.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4
5 #include <rte_common.h>
6 #include <rte_cryptodev.h>
7 #include <rte_esp.h>
8 #include <rte_ip.h>
9 #include <rte_security.h>
10 #include <rte_udp.h>
11
12 #include "test.h"
13 #include "test_cryptodev_security_ipsec.h"
14
15 #define IV_LEN_MAX 16
16
17 extern struct ipsec_test_data pkt_aes_256_gcm;
18
19 int
20 test_ipsec_sec_caps_verify(struct rte_security_ipsec_xform *ipsec_xform,
21                            const struct rte_security_capability *sec_cap,
22                            bool silent)
23 {
24         /* Verify security capabilities */
25
26         if (ipsec_xform->options.esn == 1 && sec_cap->ipsec.options.esn == 0) {
27                 if (!silent)
28                         RTE_LOG(INFO, USER1, "ESN is not supported\n");
29                 return -ENOTSUP;
30         }
31
32         if (ipsec_xform->options.udp_encap == 1 &&
33             sec_cap->ipsec.options.udp_encap == 0) {
34                 if (!silent)
35                         RTE_LOG(INFO, USER1, "UDP encapsulation is not supported\n");
36                 return -ENOTSUP;
37         }
38
39         if (ipsec_xform->options.copy_dscp == 1 &&
40             sec_cap->ipsec.options.copy_dscp == 0) {
41                 if (!silent)
42                         RTE_LOG(INFO, USER1, "Copy DSCP is not supported\n");
43                 return -ENOTSUP;
44         }
45
46         if (ipsec_xform->options.copy_flabel == 1 &&
47             sec_cap->ipsec.options.copy_flabel == 0) {
48                 if (!silent)
49                         RTE_LOG(INFO, USER1, "Copy Flow Label is not supported\n");
50                 return -ENOTSUP;
51         }
52
53         if (ipsec_xform->options.copy_df == 1 &&
54             sec_cap->ipsec.options.copy_df == 0) {
55                 if (!silent)
56                         RTE_LOG(INFO, USER1, "Copy DP bit is not supported\n");
57                 return -ENOTSUP;
58         }
59
60         if (ipsec_xform->options.dec_ttl == 1 &&
61             sec_cap->ipsec.options.dec_ttl == 0) {
62                 if (!silent)
63                         RTE_LOG(INFO, USER1, "Decrement TTL is not supported\n");
64                 return -ENOTSUP;
65         }
66
67         if (ipsec_xform->options.ecn == 1 && sec_cap->ipsec.options.ecn == 0) {
68                 if (!silent)
69                         RTE_LOG(INFO, USER1, "ECN is not supported\n");
70                 return -ENOTSUP;
71         }
72
73         if (ipsec_xform->options.stats == 1 &&
74             sec_cap->ipsec.options.stats == 0) {
75                 if (!silent)
76                         RTE_LOG(INFO, USER1, "Stats is not supported\n");
77                 return -ENOTSUP;
78         }
79
80         if ((ipsec_xform->direction == RTE_SECURITY_IPSEC_SA_DIR_EGRESS) &&
81             (ipsec_xform->options.iv_gen_disable == 1) &&
82             (sec_cap->ipsec.options.iv_gen_disable != 1)) {
83                 if (!silent)
84                         RTE_LOG(INFO, USER1,
85                                 "Application provided IV is not supported\n");
86                 return -ENOTSUP;
87         }
88
89         return 0;
90 }
91
92 int
93 test_ipsec_crypto_caps_aead_verify(
94                 const struct rte_security_capability *sec_cap,
95                 struct rte_crypto_sym_xform *aead)
96 {
97         const struct rte_cryptodev_symmetric_capability *sym_cap;
98         const struct rte_cryptodev_capabilities *crypto_cap;
99         int j = 0;
100
101         while ((crypto_cap = &sec_cap->crypto_capabilities[j++])->op !=
102                         RTE_CRYPTO_OP_TYPE_UNDEFINED) {
103                 if (crypto_cap->op == RTE_CRYPTO_OP_TYPE_SYMMETRIC &&
104                                 crypto_cap->sym.xform_type == aead->type &&
105                                 crypto_cap->sym.aead.algo == aead->aead.algo) {
106                         sym_cap = &crypto_cap->sym;
107                         if (rte_cryptodev_sym_capability_check_aead(sym_cap,
108                                         aead->aead.key.length,
109                                         aead->aead.digest_length,
110                                         aead->aead.aad_length,
111                                         aead->aead.iv.length) == 0)
112                                 return 0;
113                 }
114         }
115
116         return -ENOTSUP;
117 }
118
119 void
120 test_ipsec_td_in_from_out(const struct ipsec_test_data *td_out,
121                           struct ipsec_test_data *td_in)
122 {
123         memcpy(td_in, td_out, sizeof(*td_in));
124
125         /* Populate output text of td_in with input text of td_out */
126         memcpy(td_in->output_text.data, td_out->input_text.data,
127                td_out->input_text.len);
128         td_in->output_text.len = td_out->input_text.len;
129
130         /* Populate input text of td_in with output text of td_out */
131         memcpy(td_in->input_text.data, td_out->output_text.data,
132                td_out->output_text.len);
133         td_in->input_text.len = td_out->output_text.len;
134
135         td_in->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
136
137         if (td_in->aead) {
138                 td_in->xform.aead.aead.op = RTE_CRYPTO_AEAD_OP_DECRYPT;
139         } else {
140                 td_in->xform.chain.auth.auth.op = RTE_CRYPTO_AUTH_OP_VERIFY;
141                 td_in->xform.chain.cipher.cipher.op =
142                                 RTE_CRYPTO_CIPHER_OP_DECRYPT;
143         }
144 }
145
146 void
147 test_ipsec_td_prepare(const struct crypto_param *param1,
148                       const struct crypto_param *param2,
149                       const struct ipsec_test_flags *flags,
150                       struct ipsec_test_data *td_array,
151                       int nb_td)
152
153 {
154         struct ipsec_test_data *td;
155         int i;
156
157         memset(td_array, 0, nb_td * sizeof(*td));
158
159         for (i = 0; i < nb_td; i++) {
160                 td = &td_array[i];
161                 /* Copy template for packet & key fields */
162                 memcpy(td, &pkt_aes_256_gcm, sizeof(*td));
163
164                 /* Override fields based on param */
165
166                 if (param1->type == RTE_CRYPTO_SYM_XFORM_AEAD)
167                         td->aead = true;
168                 else
169                         td->aead = false;
170
171                 td->xform.aead.aead.algo = param1->alg.aead;
172                 td->xform.aead.aead.key.length = param1->key_length;
173
174                 if (flags->iv_gen)
175                         td->ipsec_xform.options.iv_gen_disable = 0;
176         }
177
178         RTE_SET_USED(param2);
179 }
180
181 void
182 test_ipsec_td_update(struct ipsec_test_data td_inb[],
183                      const struct ipsec_test_data td_outb[],
184                      int nb_td,
185                      const struct ipsec_test_flags *flags)
186 {
187         int i;
188
189         for (i = 0; i < nb_td; i++) {
190                 memcpy(td_inb[i].output_text.data, td_outb[i].input_text.data,
191                        td_outb[i].input_text.len);
192                 td_inb[i].output_text.len = td_outb->input_text.len;
193
194                 if (flags->icv_corrupt) {
195                         int icv_pos = td_inb[i].input_text.len - 4;
196                         td_inb[i].input_text.data[icv_pos] += 1;
197                 }
198
199                 if (flags->udp_encap)
200                         td_inb[i].ipsec_xform.options.udp_encap = 1;
201
202                 /* Clear outbound specific flags */
203                 td_inb[i].ipsec_xform.options.iv_gen_disable = 0;
204         }
205 }
206
207 void
208 test_ipsec_display_alg(const struct crypto_param *param1,
209                        const struct crypto_param *param2)
210 {
211         if (param1->type == RTE_CRYPTO_SYM_XFORM_AEAD)
212                 printf("\t%s [%d]\n",
213                        rte_crypto_aead_algorithm_strings[param1->alg.aead],
214                        param1->key_length);
215
216         RTE_SET_USED(param2);
217 }
218
219 static int
220 test_ipsec_tunnel_hdr_len_get(const struct ipsec_test_data *td)
221 {
222         int len = 0;
223
224         if (td->ipsec_xform.direction == RTE_SECURITY_IPSEC_SA_DIR_EGRESS) {
225                 if (td->ipsec_xform.mode == RTE_SECURITY_IPSEC_SA_MODE_TUNNEL) {
226                         if (td->ipsec_xform.tunnel.type ==
227                                         RTE_SECURITY_IPSEC_TUNNEL_IPV4)
228                                 len += sizeof(struct rte_ipv4_hdr);
229                         else
230                                 len += sizeof(struct rte_ipv6_hdr);
231                 }
232         }
233
234         return len;
235 }
236
237 static int
238 test_ipsec_iv_verify_push(struct rte_mbuf *m, const struct ipsec_test_data *td)
239 {
240         static uint8_t iv_queue[IV_LEN_MAX * IPSEC_TEST_PACKETS_MAX];
241         uint8_t *iv_tmp, *output_text = rte_pktmbuf_mtod(m, uint8_t *);
242         int i, iv_pos, iv_len;
243         static int index;
244
245         if (td->aead)
246                 iv_len = td->xform.aead.aead.iv.length - td->salt.len;
247         else
248                 iv_len = td->xform.chain.cipher.cipher.iv.length;
249
250         iv_pos = test_ipsec_tunnel_hdr_len_get(td) + sizeof(struct rte_esp_hdr);
251         output_text += iv_pos;
252
253         TEST_ASSERT(iv_len <= IV_LEN_MAX, "IV length greater than supported");
254
255         /* Compare against previous values */
256         for (i = 0; i < index; i++) {
257                 iv_tmp = &iv_queue[i * IV_LEN_MAX];
258
259                 if (memcmp(output_text, iv_tmp, iv_len) == 0) {
260                         printf("IV repeated");
261                         return TEST_FAILED;
262                 }
263         }
264
265         /* Save IV for future comparisons */
266
267         iv_tmp = &iv_queue[index * IV_LEN_MAX];
268         memcpy(iv_tmp, output_text, iv_len);
269         index++;
270
271         if (index == IPSEC_TEST_PACKETS_MAX)
272                 index = 0;
273
274         return TEST_SUCCESS;
275 }
276
277 static int
278 test_ipsec_td_verify(struct rte_mbuf *m, const struct ipsec_test_data *td,
279                      bool silent, const struct ipsec_test_flags *flags)
280 {
281         uint8_t *output_text = rte_pktmbuf_mtod(m, uint8_t *);
282         uint32_t skip, len = rte_pktmbuf_pkt_len(m);
283
284         /* For negative tests, no need to do verification */
285         if (flags->icv_corrupt &&
286             td->ipsec_xform.direction == RTE_SECURITY_IPSEC_SA_DIR_INGRESS)
287                 return TEST_SUCCESS;
288
289         if (td->ipsec_xform.direction == RTE_SECURITY_IPSEC_SA_DIR_EGRESS &&
290            flags->udp_encap) {
291                 const struct rte_ipv4_hdr *iph4;
292                 const struct rte_ipv6_hdr *iph6;
293
294                 if (td->ipsec_xform.tunnel.type ==
295                                 RTE_SECURITY_IPSEC_TUNNEL_IPV4) {
296                         iph4 = (const struct rte_ipv4_hdr *)output_text;
297                         if (iph4->next_proto_id != IPPROTO_UDP) {
298                                 printf("UDP header is not found\n");
299                                 return TEST_FAILED;
300                         }
301                 } else {
302                         iph6 = (const struct rte_ipv6_hdr *)output_text;
303                         if (iph6->proto != IPPROTO_UDP) {
304                                 printf("UDP header is not found\n");
305                                 return TEST_FAILED;
306                         }
307                 }
308
309                 len -= sizeof(struct rte_udp_hdr);
310                 output_text += sizeof(struct rte_udp_hdr);
311         }
312
313         if (len != td->output_text.len) {
314                 printf("Output length (%d) not matching with expected (%d)\n",
315                         len, td->output_text.len);
316                 return TEST_FAILED;
317         }
318
319         skip = test_ipsec_tunnel_hdr_len_get(td);
320
321         len -= skip;
322         output_text += skip;
323
324         if (memcmp(output_text, td->output_text.data + skip, len)) {
325                 if (silent)
326                         return TEST_FAILED;
327
328                 printf("TestCase %s line %d: %s\n", __func__, __LINE__,
329                         "output text not as expected\n");
330
331                 rte_hexdump(stdout, "expected", td->output_text.data + skip,
332                             len);
333                 rte_hexdump(stdout, "actual", output_text, len);
334                 return TEST_FAILED;
335         }
336
337         return TEST_SUCCESS;
338 }
339
340 static int
341 test_ipsec_res_d_prepare(struct rte_mbuf *m, const struct ipsec_test_data *td,
342                    struct ipsec_test_data *res_d)
343 {
344         uint8_t *output_text = rte_pktmbuf_mtod(m, uint8_t *);
345         uint32_t len = rte_pktmbuf_pkt_len(m);
346
347         memcpy(res_d, td, sizeof(*res_d));
348         memcpy(res_d->input_text.data, output_text, len);
349         res_d->input_text.len = len;
350
351         res_d->ipsec_xform.direction = RTE_SECURITY_IPSEC_SA_DIR_INGRESS;
352         if (res_d->aead) {
353                 res_d->xform.aead.aead.op = RTE_CRYPTO_AEAD_OP_DECRYPT;
354         } else {
355                 printf("Only AEAD supported\n");
356                 return TEST_SKIPPED;
357         }
358
359         return TEST_SUCCESS;
360 }
361
362 int
363 test_ipsec_post_process(struct rte_mbuf *m, const struct ipsec_test_data *td,
364                         struct ipsec_test_data *res_d, bool silent,
365                         const struct ipsec_test_flags *flags)
366 {
367         int ret;
368
369         if (flags->iv_gen &&
370             td->ipsec_xform.direction == RTE_SECURITY_IPSEC_SA_DIR_EGRESS) {
371                 ret = test_ipsec_iv_verify_push(m, td);
372                 if (ret != TEST_SUCCESS)
373                         return ret;
374         }
375
376         /*
377          * In case of known vector tests & all inbound tests, res_d provided
378          * would be NULL and output data need to be validated against expected.
379          * For inbound, output_text would be plain packet and for outbound
380          * output_text would IPsec packet. Validate by comparing against
381          * known vectors.
382          *
383          * In case of combined mode tests, the output_text from outbound
384          * operation (ie, IPsec packet) would need to be inbound processed to
385          * obtain the plain text. Copy output_text to result data, 'res_d', so
386          * that inbound processing can be done.
387          */
388
389         if (res_d == NULL)
390                 return test_ipsec_td_verify(m, td, silent, flags);
391         else
392                 return test_ipsec_res_d_prepare(m, td, res_d);
393 }
394
395 int
396 test_ipsec_status_check(struct rte_crypto_op *op,
397                         const struct ipsec_test_flags *flags,
398                         enum rte_security_ipsec_sa_direction dir)
399 {
400         int ret = TEST_SUCCESS;
401
402         if (dir == RTE_SECURITY_IPSEC_SA_DIR_INGRESS && flags->icv_corrupt) {
403                 if (op->status != RTE_CRYPTO_OP_STATUS_ERROR) {
404                         printf("ICV corruption test case failed\n");
405                         ret = TEST_FAILED;
406                 }
407         } else {
408                 if (op->status != RTE_CRYPTO_OP_STATUS_SUCCESS) {
409                         printf("Security op processing failed\n");
410                         ret = TEST_FAILED;
411                 }
412         }
413
414         return ret;
415 }