88fb97258fe329f446201dd0d279ec391fd5fed3
[deb_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(struct rte_mempool *sess_mp,
371         uint8_t dev_id,
372         const struct cperf_options *options,
373         const struct cperf_test_vector *test_vector,
374         uint16_t iv_offset)
375 {
376         struct rte_crypto_sym_xform cipher_xform;
377         struct rte_crypto_sym_xform auth_xform;
378         struct rte_crypto_sym_xform aead_xform;
379         struct rte_cryptodev_sym_session *sess = NULL;
380
381         sess = rte_cryptodev_sym_session_create(sess_mp);
382         /*
383          * cipher only
384          */
385         if (options->op_type == CPERF_CIPHER_ONLY) {
386                 cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
387                 cipher_xform.next = NULL;
388                 cipher_xform.cipher.algo = options->cipher_algo;
389                 cipher_xform.cipher.op = options->cipher_op;
390                 cipher_xform.cipher.iv.offset = iv_offset;
391
392                 /* cipher different than null */
393                 if (options->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
394                         cipher_xform.cipher.key.data =
395                                         test_vector->cipher_key.data;
396                         cipher_xform.cipher.key.length =
397                                         test_vector->cipher_key.length;
398                         cipher_xform.cipher.iv.length =
399                                         test_vector->cipher_iv.length;
400                 } else {
401                         cipher_xform.cipher.key.data = NULL;
402                         cipher_xform.cipher.key.length = 0;
403                         cipher_xform.cipher.iv.length = 0;
404                 }
405                 /* create crypto session */
406                 rte_cryptodev_sym_session_init(dev_id, sess, &cipher_xform,
407                                 sess_mp);
408         /*
409          *  auth only
410          */
411         } else if (options->op_type == CPERF_AUTH_ONLY) {
412                 auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
413                 auth_xform.next = NULL;
414                 auth_xform.auth.algo = options->auth_algo;
415                 auth_xform.auth.op = options->auth_op;
416
417                 /* auth different than null */
418                 if (options->auth_algo != RTE_CRYPTO_AUTH_NULL) {
419                         auth_xform.auth.digest_length =
420                                         options->digest_sz;
421                         auth_xform.auth.key.length =
422                                         test_vector->auth_key.length;
423                         auth_xform.auth.key.data = test_vector->auth_key.data;
424                         auth_xform.auth.iv.length =
425                                         test_vector->auth_iv.length;
426                 } else {
427                         auth_xform.auth.digest_length = 0;
428                         auth_xform.auth.key.length = 0;
429                         auth_xform.auth.key.data = NULL;
430                         auth_xform.auth.iv.length = 0;
431                 }
432                 /* create crypto session */
433                 rte_cryptodev_sym_session_init(dev_id, sess, &auth_xform,
434                                 sess_mp);
435         /*
436          * cipher and auth
437          */
438         } else if (options->op_type == CPERF_CIPHER_THEN_AUTH
439                         || options->op_type == CPERF_AUTH_THEN_CIPHER) {
440                 /*
441                  * cipher
442                  */
443                 cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
444                 cipher_xform.next = NULL;
445                 cipher_xform.cipher.algo = options->cipher_algo;
446                 cipher_xform.cipher.op = options->cipher_op;
447                 cipher_xform.cipher.iv.offset = iv_offset;
448
449                 /* cipher different than null */
450                 if (options->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
451                         cipher_xform.cipher.key.data =
452                                         test_vector->cipher_key.data;
453                         cipher_xform.cipher.key.length =
454                                         test_vector->cipher_key.length;
455                         cipher_xform.cipher.iv.length =
456                                         test_vector->cipher_iv.length;
457                 } else {
458                         cipher_xform.cipher.key.data = NULL;
459                         cipher_xform.cipher.key.length = 0;
460                         cipher_xform.cipher.iv.length = 0;
461                 }
462
463                 /*
464                  * auth
465                  */
466                 auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
467                 auth_xform.next = NULL;
468                 auth_xform.auth.algo = options->auth_algo;
469                 auth_xform.auth.op = options->auth_op;
470
471                 /* auth different than null */
472                 if (options->auth_algo != RTE_CRYPTO_AUTH_NULL) {
473                         auth_xform.auth.digest_length = options->digest_sz;
474                         auth_xform.auth.iv.length = test_vector->auth_iv.length;
475                         auth_xform.auth.key.length =
476                                         test_vector->auth_key.length;
477                         auth_xform.auth.key.data =
478                                         test_vector->auth_key.data;
479                 } else {
480                         auth_xform.auth.digest_length = 0;
481                         auth_xform.auth.key.length = 0;
482                         auth_xform.auth.key.data = NULL;
483                         auth_xform.auth.iv.length = 0;
484                 }
485
486                 /* cipher then auth */
487                 if (options->op_type == CPERF_CIPHER_THEN_AUTH) {
488                         cipher_xform.next = &auth_xform;
489                         /* create crypto session */
490                         rte_cryptodev_sym_session_init(dev_id,
491                                         sess, &cipher_xform, sess_mp);
492                 } else { /* auth then cipher */
493                         auth_xform.next = &cipher_xform;
494                         /* create crypto session */
495                         rte_cryptodev_sym_session_init(dev_id,
496                                         sess, &auth_xform, sess_mp);
497                 }
498         } else { /* options->op_type == CPERF_AEAD */
499                 aead_xform.type = RTE_CRYPTO_SYM_XFORM_AEAD;
500                 aead_xform.next = NULL;
501                 aead_xform.aead.algo = options->aead_algo;
502                 aead_xform.aead.op = options->aead_op;
503                 aead_xform.aead.iv.offset = iv_offset;
504
505                 aead_xform.aead.key.data =
506                                         test_vector->aead_key.data;
507                 aead_xform.aead.key.length =
508                                         test_vector->aead_key.length;
509                 aead_xform.aead.iv.length = test_vector->aead_iv.length;
510
511                 aead_xform.aead.digest_length = options->digest_sz;
512                 aead_xform.aead.aad_length =
513                                         options->aead_aad_sz;
514
515                 /* Create crypto session */
516                 rte_cryptodev_sym_session_init(dev_id,
517                                         sess, &aead_xform, sess_mp);
518         }
519
520         return sess;
521 }
522
523 int
524 cperf_get_op_functions(const struct cperf_options *options,
525                 struct cperf_op_fns *op_fns)
526 {
527         memset(op_fns, 0, sizeof(struct cperf_op_fns));
528
529         op_fns->sess_create = cperf_create_session;
530
531         if (options->op_type == CPERF_AEAD) {
532                 op_fns->populate_ops = cperf_set_ops_aead;
533                 return 0;
534         }
535
536         if (options->op_type == CPERF_AUTH_THEN_CIPHER
537                         || options->op_type == CPERF_CIPHER_THEN_AUTH) {
538                 op_fns->populate_ops = cperf_set_ops_cipher_auth;
539                 return 0;
540         }
541         if (options->op_type == CPERF_AUTH_ONLY) {
542                 if (options->auth_algo == RTE_CRYPTO_AUTH_NULL)
543                         op_fns->populate_ops = cperf_set_ops_null_auth;
544                 else
545                         op_fns->populate_ops = cperf_set_ops_auth;
546                 return 0;
547         }
548         if (options->op_type == CPERF_CIPHER_ONLY) {
549                 if (options->cipher_algo == RTE_CRYPTO_CIPHER_NULL)
550                         op_fns->populate_ops = cperf_set_ops_null_cipher;
551                 else
552                         op_fns->populate_ops = cperf_set_ops_cipher;
553                 return 0;
554         }
555
556         return -1;
557 }