cryptodev: remove AAD from authentication structure
[dpdk.git] / app / test-crypto-perf / cperf_ops.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2016-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
33 #include <rte_cryptodev.h>
34
35 #include "cperf_ops.h"
36 #include "cperf_test_vectors.h"
37
38 static int
39 cperf_set_ops_null_cipher(struct rte_crypto_op **ops,
40                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
41                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
42                 const struct cperf_options *options,
43                 const struct cperf_test_vector *test_vector __rte_unused,
44                 uint16_t iv_offset __rte_unused)
45 {
46         uint16_t i;
47
48         for (i = 0; i < nb_ops; i++) {
49                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
50
51                 rte_crypto_op_attach_sym_session(ops[i], sess);
52
53                 sym_op->m_src = bufs_in[i];
54                 sym_op->m_dst = bufs_out[i];
55
56                 /* cipher parameters */
57                 sym_op->cipher.data.length = options->test_buffer_size;
58                 sym_op->cipher.data.offset = 0;
59         }
60
61         return 0;
62 }
63
64 static int
65 cperf_set_ops_null_auth(struct rte_crypto_op **ops,
66                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
67                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
68                 const struct cperf_options *options,
69                 const struct cperf_test_vector *test_vector __rte_unused,
70                 uint16_t iv_offset __rte_unused)
71 {
72         uint16_t i;
73
74         for (i = 0; i < nb_ops; i++) {
75                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
76
77                 rte_crypto_op_attach_sym_session(ops[i], sess);
78
79                 sym_op->m_src = bufs_in[i];
80                 sym_op->m_dst = bufs_out[i];
81
82                 /* auth parameters */
83                 sym_op->auth.data.length = options->test_buffer_size;
84                 sym_op->auth.data.offset = 0;
85         }
86
87         return 0;
88 }
89
90 static int
91 cperf_set_ops_cipher(struct rte_crypto_op **ops,
92                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
93                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
94                 const struct cperf_options *options,
95                 const struct cperf_test_vector *test_vector,
96                 uint16_t iv_offset)
97 {
98         uint16_t i;
99
100         for (i = 0; i < nb_ops; i++) {
101                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
102
103                 rte_crypto_op_attach_sym_session(ops[i], sess);
104
105                 sym_op->m_src = bufs_in[i];
106                 sym_op->m_dst = bufs_out[i];
107
108                 /* cipher parameters */
109                 if (options->cipher_algo == RTE_CRYPTO_CIPHER_SNOW3G_UEA2 ||
110                                 options->cipher_algo == RTE_CRYPTO_CIPHER_KASUMI_F8 ||
111                                 options->cipher_algo == RTE_CRYPTO_CIPHER_ZUC_EEA3)
112                         sym_op->cipher.data.length = options->test_buffer_size << 3;
113                 else
114                         sym_op->cipher.data.length = options->test_buffer_size;
115
116                 sym_op->cipher.data.offset = 0;
117         }
118
119         if (options->test == CPERF_TEST_TYPE_VERIFY) {
120                 for (i = 0; i < nb_ops; i++) {
121                         uint8_t *iv_ptr = rte_crypto_op_ctod_offset(ops[i],
122                                         uint8_t *, iv_offset);
123
124                         memcpy(iv_ptr, test_vector->cipher_iv.data,
125                                         test_vector->cipher_iv.length);
126
127                 }
128         }
129
130         return 0;
131 }
132
133 static int
134 cperf_set_ops_auth(struct rte_crypto_op **ops,
135                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
136                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
137                 const struct cperf_options *options,
138                 const struct cperf_test_vector *test_vector,
139                 uint16_t iv_offset)
140 {
141         uint16_t i;
142
143         for (i = 0; i < nb_ops; i++) {
144                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
145
146                 rte_crypto_op_attach_sym_session(ops[i], sess);
147
148                 sym_op->m_src = bufs_in[i];
149                 sym_op->m_dst = bufs_out[i];
150
151                 if (test_vector->auth_iv.length) {
152                         uint8_t *iv_ptr = rte_crypto_op_ctod_offset(ops[i],
153                                                                 uint8_t *,
154                                                                 iv_offset);
155                         memcpy(iv_ptr, test_vector->auth_iv.data,
156                                         test_vector->auth_iv.length);
157                 }
158
159                 /* authentication parameters */
160                 if (options->auth_op == RTE_CRYPTO_AUTH_OP_VERIFY) {
161                         sym_op->auth.digest.data = test_vector->digest.data;
162                         sym_op->auth.digest.phys_addr =
163                                         test_vector->digest.phys_addr;
164                 } else {
165
166                         uint32_t offset = options->test_buffer_size;
167                         struct rte_mbuf *buf, *tbuf;
168
169                         if (options->out_of_place) {
170                                 buf =  bufs_out[i];
171                         } else {
172                                 tbuf =  bufs_in[i];
173                                 while ((tbuf->next != NULL) &&
174                                                 (offset >= tbuf->data_len)) {
175                                         offset -= tbuf->data_len;
176                                         tbuf = tbuf->next;
177                                 }
178                                 buf = tbuf;
179                         }
180
181                         sym_op->auth.digest.data = rte_pktmbuf_mtod_offset(buf,
182                                         uint8_t *, offset);
183                         sym_op->auth.digest.phys_addr =
184                                         rte_pktmbuf_mtophys_offset(buf, offset);
185
186                 }
187
188                 if (options->auth_algo == RTE_CRYPTO_AUTH_SNOW3G_UIA2 ||
189                                 options->auth_algo == RTE_CRYPTO_AUTH_KASUMI_F9 ||
190                                 options->auth_algo == RTE_CRYPTO_AUTH_ZUC_EIA3)
191                         sym_op->auth.data.length = options->test_buffer_size << 3;
192                 else
193                         sym_op->auth.data.length = options->test_buffer_size;
194
195                 sym_op->auth.data.offset = 0;
196         }
197
198         if (options->test == CPERF_TEST_TYPE_VERIFY) {
199                 if (test_vector->auth_iv.length) {
200                         for (i = 0; i < nb_ops; i++) {
201                                 uint8_t *iv_ptr = rte_crypto_op_ctod_offset(ops[i],
202                                                 uint8_t *, iv_offset);
203
204                                 memcpy(iv_ptr, test_vector->auth_iv.data,
205                                                 test_vector->auth_iv.length);
206                         }
207                 }
208         }
209         return 0;
210 }
211
212 static int
213 cperf_set_ops_cipher_auth(struct rte_crypto_op **ops,
214                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
215                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
216                 const struct cperf_options *options,
217                 const struct cperf_test_vector *test_vector,
218                 uint16_t iv_offset)
219 {
220         uint16_t i;
221
222         for (i = 0; i < nb_ops; i++) {
223                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
224
225                 rte_crypto_op_attach_sym_session(ops[i], sess);
226
227                 sym_op->m_src = bufs_in[i];
228                 sym_op->m_dst = bufs_out[i];
229
230                 /* cipher parameters */
231                 if (options->cipher_algo == RTE_CRYPTO_CIPHER_SNOW3G_UEA2 ||
232                                 options->cipher_algo == RTE_CRYPTO_CIPHER_KASUMI_F8 ||
233                                 options->cipher_algo == RTE_CRYPTO_CIPHER_ZUC_EEA3)
234                         sym_op->cipher.data.length = options->test_buffer_size << 3;
235                 else
236                         sym_op->cipher.data.length = options->test_buffer_size;
237
238                 sym_op->cipher.data.offset = 0;
239
240                 /* authentication parameters */
241                 if (options->auth_op == RTE_CRYPTO_AUTH_OP_VERIFY) {
242                         sym_op->auth.digest.data = test_vector->digest.data;
243                         sym_op->auth.digest.phys_addr =
244                                         test_vector->digest.phys_addr;
245                 } else {
246
247                         uint32_t offset = options->test_buffer_size;
248                         struct rte_mbuf *buf, *tbuf;
249
250                         if (options->out_of_place) {
251                                 buf =  bufs_out[i];
252                         } else {
253                                 tbuf =  bufs_in[i];
254                                 while ((tbuf->next != NULL) &&
255                                                 (offset >= tbuf->data_len)) {
256                                         offset -= tbuf->data_len;
257                                         tbuf = tbuf->next;
258                                 }
259                                 buf = tbuf;
260                         }
261
262                         sym_op->auth.digest.data = rte_pktmbuf_mtod_offset(buf,
263                                         uint8_t *, offset);
264                         sym_op->auth.digest.phys_addr =
265                                         rte_pktmbuf_mtophys_offset(buf, offset);
266                 }
267
268                 if (options->auth_algo == RTE_CRYPTO_AUTH_SNOW3G_UIA2 ||
269                                 options->auth_algo == RTE_CRYPTO_AUTH_KASUMI_F9 ||
270                                 options->auth_algo == RTE_CRYPTO_AUTH_ZUC_EIA3)
271                         sym_op->auth.data.length = options->test_buffer_size << 3;
272                 else
273                         sym_op->auth.data.length = options->test_buffer_size;
274
275                 sym_op->auth.data.offset = 0;
276         }
277
278         if (options->test == CPERF_TEST_TYPE_VERIFY) {
279                 for (i = 0; i < nb_ops; i++) {
280                         uint8_t *iv_ptr = rte_crypto_op_ctod_offset(ops[i],
281                                         uint8_t *, iv_offset);
282
283                         memcpy(iv_ptr, test_vector->cipher_iv.data,
284                                         test_vector->cipher_iv.length);
285                         if (test_vector->auth_iv.length) {
286                                 /*
287                                  * Copy IV after the crypto operation and
288                                  * the cipher IV
289                                  */
290                                 iv_ptr += test_vector->cipher_iv.length;
291                                 memcpy(iv_ptr, test_vector->auth_iv.data,
292                                                 test_vector->auth_iv.length);
293                         }
294                 }
295
296         }
297
298         return 0;
299 }
300
301 static int
302 cperf_set_ops_aead(struct rte_crypto_op **ops,
303                 struct rte_mbuf **bufs_in, struct rte_mbuf **bufs_out,
304                 uint16_t nb_ops, struct rte_cryptodev_sym_session *sess,
305                 const struct cperf_options *options,
306                 const struct cperf_test_vector *test_vector,
307                 uint16_t iv_offset)
308 {
309         uint16_t i;
310
311         for (i = 0; i < nb_ops; i++) {
312                 struct rte_crypto_sym_op *sym_op = ops[i]->sym;
313
314                 rte_crypto_op_attach_sym_session(ops[i], sess);
315
316                 sym_op->m_src = bufs_in[i];
317                 sym_op->m_dst = bufs_out[i];
318
319                 /* AEAD parameters */
320                 sym_op->aead.data.length = options->test_buffer_size;
321                 sym_op->aead.data.offset =
322                                 RTE_ALIGN_CEIL(options->aead_aad_sz, 16);
323
324                 sym_op->aead.aad.data = rte_pktmbuf_mtod(bufs_in[i], uint8_t *);
325                 sym_op->aead.aad.phys_addr = rte_pktmbuf_mtophys(bufs_in[i]);
326
327                 if (options->aead_op == RTE_CRYPTO_AEAD_OP_DECRYPT) {
328                         sym_op->aead.digest.data = test_vector->digest.data;
329                         sym_op->aead.digest.phys_addr =
330                                         test_vector->digest.phys_addr;
331                 } else {
332
333                         uint32_t offset = sym_op->aead.data.length +
334                                                 sym_op->aead.data.offset;
335                         struct rte_mbuf *buf, *tbuf;
336
337                         if (options->out_of_place) {
338                                 buf =  bufs_out[i];
339                         } else {
340                                 tbuf =  bufs_in[i];
341                                 while ((tbuf->next != NULL) &&
342                                                 (offset >= tbuf->data_len)) {
343                                         offset -= tbuf->data_len;
344                                         tbuf = tbuf->next;
345                                 }
346                                 buf = tbuf;
347                         }
348
349                         sym_op->aead.digest.data = rte_pktmbuf_mtod_offset(buf,
350                                         uint8_t *, offset);
351                         sym_op->aead.digest.phys_addr =
352                                         rte_pktmbuf_mtophys_offset(buf, offset);
353                 }
354         }
355
356         if (options->test == CPERF_TEST_TYPE_VERIFY) {
357                 for (i = 0; i < nb_ops; i++) {
358                         uint8_t *iv_ptr = rte_crypto_op_ctod_offset(ops[i],
359                                         uint8_t *, iv_offset);
360
361                         memcpy(iv_ptr, test_vector->aead_iv.data,
362                                         test_vector->aead_iv.length);
363                 }
364         }
365
366         return 0;
367 }
368
369 static struct rte_cryptodev_sym_session *
370 cperf_create_session(uint8_t dev_id,
371         const struct cperf_options *options,
372         const struct cperf_test_vector *test_vector,
373         uint16_t iv_offset)
374 {
375         struct rte_crypto_sym_xform cipher_xform;
376         struct rte_crypto_sym_xform auth_xform;
377         struct rte_crypto_sym_xform aead_xform;
378         struct rte_cryptodev_sym_session *sess = NULL;
379
380         /*
381          * cipher only
382          */
383         if (options->op_type == CPERF_CIPHER_ONLY) {
384                 cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
385                 cipher_xform.next = NULL;
386                 cipher_xform.cipher.algo = options->cipher_algo;
387                 cipher_xform.cipher.op = options->cipher_op;
388                 cipher_xform.cipher.iv.offset = iv_offset;
389
390                 /* cipher different than null */
391                 if (options->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
392                         cipher_xform.cipher.key.data =
393                                         test_vector->cipher_key.data;
394                         cipher_xform.cipher.key.length =
395                                         test_vector->cipher_key.length;
396                         cipher_xform.cipher.iv.length =
397                                         test_vector->cipher_iv.length;
398                 } else {
399                         cipher_xform.cipher.key.data = NULL;
400                         cipher_xform.cipher.key.length = 0;
401                         cipher_xform.cipher.iv.length = 0;
402                 }
403                 /* create crypto session */
404                 sess = rte_cryptodev_sym_session_create(dev_id, &cipher_xform);
405         /*
406          *  auth only
407          */
408         } else if (options->op_type == CPERF_AUTH_ONLY) {
409                 auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
410                 auth_xform.next = NULL;
411                 auth_xform.auth.algo = options->auth_algo;
412                 auth_xform.auth.op = options->auth_op;
413
414                 /* auth different than null */
415                 if (options->auth_algo != RTE_CRYPTO_AUTH_NULL) {
416                         auth_xform.auth.digest_length =
417                                         options->digest_sz;
418                         auth_xform.auth.key.length =
419                                         test_vector->auth_key.length;
420                         auth_xform.auth.key.data = test_vector->auth_key.data;
421                         auth_xform.auth.iv.length =
422                                         test_vector->auth_iv.length;
423                 } else {
424                         auth_xform.auth.digest_length = 0;
425                         auth_xform.auth.key.length = 0;
426                         auth_xform.auth.key.data = NULL;
427                         auth_xform.auth.iv.length = 0;
428                 }
429                 /* create crypto session */
430                 sess =  rte_cryptodev_sym_session_create(dev_id, &auth_xform);
431         /*
432          * cipher and auth
433          */
434         } else if (options->op_type == CPERF_CIPHER_THEN_AUTH
435                         || options->op_type == CPERF_AUTH_THEN_CIPHER) {
436                 /*
437                  * cipher
438                  */
439                 cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
440                 cipher_xform.next = NULL;
441                 cipher_xform.cipher.algo = options->cipher_algo;
442                 cipher_xform.cipher.op = options->cipher_op;
443                 cipher_xform.cipher.iv.offset = iv_offset;
444
445                 /* cipher different than null */
446                 if (options->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
447                         cipher_xform.cipher.key.data =
448                                         test_vector->cipher_key.data;
449                         cipher_xform.cipher.key.length =
450                                         test_vector->cipher_key.length;
451                         cipher_xform.cipher.iv.length =
452                                         test_vector->cipher_iv.length;
453                 } else {
454                         cipher_xform.cipher.key.data = NULL;
455                         cipher_xform.cipher.key.length = 0;
456                         cipher_xform.cipher.iv.length = 0;
457                 }
458
459                 /*
460                  * auth
461                  */
462                 auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
463                 auth_xform.next = NULL;
464                 auth_xform.auth.algo = options->auth_algo;
465                 auth_xform.auth.op = options->auth_op;
466
467                 /* auth different than null */
468                 if (options->auth_algo != RTE_CRYPTO_AUTH_NULL) {
469                         auth_xform.auth.digest_length = options->digest_sz;
470                         auth_xform.auth.iv.length = test_vector->auth_iv.length;
471                         auth_xform.auth.key.length =
472                                         test_vector->auth_key.length;
473                         auth_xform.auth.key.data =
474                                         test_vector->auth_key.data;
475                 } else {
476                         auth_xform.auth.digest_length = 0;
477                         auth_xform.auth.key.length = 0;
478                         auth_xform.auth.key.data = NULL;
479                         auth_xform.auth.iv.length = 0;
480                 }
481
482                 /* cipher then auth */
483                 if (options->op_type == CPERF_CIPHER_THEN_AUTH) {
484                         cipher_xform.next = &auth_xform;
485                         /* create crypto session */
486                         sess = rte_cryptodev_sym_session_create(dev_id,
487                                                 &cipher_xform);
488                 } else { /* auth then cipher */
489                         auth_xform.next = &cipher_xform;
490                         /* create crypto session */
491                         sess = rte_cryptodev_sym_session_create(dev_id,
492                                         &auth_xform);
493                 }
494         } else { /* options->op_type == CPERF_AEAD */
495                 aead_xform.type = RTE_CRYPTO_SYM_XFORM_AEAD;
496                 aead_xform.next = NULL;
497                 aead_xform.aead.algo = options->aead_algo;
498                 aead_xform.aead.op = options->aead_op;
499                 aead_xform.aead.iv.offset = iv_offset;
500
501                 aead_xform.aead.key.data =
502                                         test_vector->aead_key.data;
503                 aead_xform.aead.key.length =
504                                         test_vector->aead_key.length;
505                 aead_xform.aead.iv.length = test_vector->aead_iv.length;
506
507                 aead_xform.aead.digest_length = options->digest_sz;
508                 aead_xform.aead.add_auth_data_length =
509                                         options->aead_aad_sz;
510
511                 /* Create crypto session */
512                 sess = rte_cryptodev_sym_session_create(dev_id, &aead_xform);
513         }
514
515         return sess;
516 }
517
518 int
519 cperf_get_op_functions(const struct cperf_options *options,
520                 struct cperf_op_fns *op_fns)
521 {
522         memset(op_fns, 0, sizeof(struct cperf_op_fns));
523
524         op_fns->sess_create = cperf_create_session;
525
526         if (options->op_type == CPERF_AEAD) {
527                 op_fns->populate_ops = cperf_set_ops_aead;
528                 return 0;
529         }
530
531         if (options->op_type == CPERF_AUTH_THEN_CIPHER
532                         || options->op_type == CPERF_CIPHER_THEN_AUTH) {
533                 op_fns->populate_ops = cperf_set_ops_cipher_auth;
534                 return 0;
535         }
536         if (options->op_type == CPERF_AUTH_ONLY) {
537                 if (options->auth_algo == RTE_CRYPTO_AUTH_NULL)
538                         op_fns->populate_ops = cperf_set_ops_null_auth;
539                 else
540                         op_fns->populate_ops = cperf_set_ops_auth;
541                 return 0;
542         }
543         if (options->op_type == CPERF_CIPHER_ONLY) {
544                 if (options->cipher_algo == RTE_CRYPTO_CIPHER_NULL)
545                         op_fns->populate_ops = cperf_set_ops_null_cipher;
546                 else
547                         op_fns->populate_ops = cperf_set_ops_cipher;
548                 return 0;
549         }
550
551         return -1;
552 }