107abb04080c91b95f3d37a04e614636f33f75b8
[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.add_auth_data_length = 0;
426                         auth_xform.auth.key.length = 0;
427                         auth_xform.auth.key.data = NULL;
428                         auth_xform.auth.iv.length = 0;
429                 }
430                 /* create crypto session */
431                 sess =  rte_cryptodev_sym_session_create(dev_id, &auth_xform);
432         /*
433          * cipher and auth
434          */
435         } else if (options->op_type == CPERF_CIPHER_THEN_AUTH
436                         || options->op_type == CPERF_AUTH_THEN_CIPHER) {
437                 /*
438                  * cipher
439                  */
440                 cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
441                 cipher_xform.next = NULL;
442                 cipher_xform.cipher.algo = options->cipher_algo;
443                 cipher_xform.cipher.op = options->cipher_op;
444                 cipher_xform.cipher.iv.offset = iv_offset;
445
446                 /* cipher different than null */
447                 if (options->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
448                         cipher_xform.cipher.key.data =
449                                         test_vector->cipher_key.data;
450                         cipher_xform.cipher.key.length =
451                                         test_vector->cipher_key.length;
452                         cipher_xform.cipher.iv.length =
453                                         test_vector->cipher_iv.length;
454                 } else {
455                         cipher_xform.cipher.key.data = NULL;
456                         cipher_xform.cipher.key.length = 0;
457                         cipher_xform.cipher.iv.length = 0;
458                 }
459
460                 /*
461                  * auth
462                  */
463                 auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
464                 auth_xform.next = NULL;
465                 auth_xform.auth.algo = options->auth_algo;
466                 auth_xform.auth.op = options->auth_op;
467
468                 /* auth different than null */
469                 if (options->auth_algo != RTE_CRYPTO_AUTH_NULL) {
470                         auth_xform.auth.digest_length = options->digest_sz;
471                         auth_xform.auth.iv.length = test_vector->auth_iv.length;
472                         auth_xform.auth.key.length =
473                                         test_vector->auth_key.length;
474                         auth_xform.auth.key.data =
475                                         test_vector->auth_key.data;
476                 } else {
477                         auth_xform.auth.digest_length = 0;
478                         auth_xform.auth.add_auth_data_length = 0;
479                         auth_xform.auth.key.length = 0;
480                         auth_xform.auth.key.data = NULL;
481                         auth_xform.auth.iv.length = 0;
482                 }
483
484                 /* cipher then auth */
485                 if (options->op_type == CPERF_CIPHER_THEN_AUTH) {
486                         cipher_xform.next = &auth_xform;
487                         /* create crypto session */
488                         sess = rte_cryptodev_sym_session_create(dev_id,
489                                                 &cipher_xform);
490                 } else { /* auth then cipher */
491                         auth_xform.next = &cipher_xform;
492                         /* create crypto session */
493                         sess = rte_cryptodev_sym_session_create(dev_id,
494                                         &auth_xform);
495                 }
496         } else { /* options->op_type == CPERF_AEAD */
497                 aead_xform.type = RTE_CRYPTO_SYM_XFORM_AEAD;
498                 aead_xform.next = NULL;
499                 aead_xform.aead.algo = options->aead_algo;
500                 aead_xform.aead.op = options->aead_op;
501                 aead_xform.aead.iv.offset = iv_offset;
502
503                 aead_xform.aead.key.data =
504                                         test_vector->aead_key.data;
505                 aead_xform.aead.key.length =
506                                         test_vector->aead_key.length;
507                 aead_xform.aead.iv.length = test_vector->aead_iv.length;
508
509                 aead_xform.aead.digest_length = options->digest_sz;
510                 aead_xform.aead.add_auth_data_length =
511                                         options->aead_aad_sz;
512
513                 /* Create crypto session */
514                 sess = rte_cryptodev_sym_session_create(dev_id, &aead_xform);
515         }
516
517         return sess;
518 }
519
520 int
521 cperf_get_op_functions(const struct cperf_options *options,
522                 struct cperf_op_fns *op_fns)
523 {
524         memset(op_fns, 0, sizeof(struct cperf_op_fns));
525
526         op_fns->sess_create = cperf_create_session;
527
528         if (options->op_type == CPERF_AEAD) {
529                 op_fns->populate_ops = cperf_set_ops_aead;
530                 return 0;
531         }
532
533         if (options->op_type == CPERF_AUTH_THEN_CIPHER
534                         || options->op_type == CPERF_CIPHER_THEN_AUTH) {
535                 op_fns->populate_ops = cperf_set_ops_cipher_auth;
536                 return 0;
537         }
538         if (options->op_type == CPERF_AUTH_ONLY) {
539                 if (options->auth_algo == RTE_CRYPTO_AUTH_NULL)
540                         op_fns->populate_ops = cperf_set_ops_null_auth;
541                 else
542                         op_fns->populate_ops = cperf_set_ops_auth;
543                 return 0;
544         }
545         if (options->op_type == CPERF_CIPHER_ONLY) {
546                 if (options->cipher_algo == RTE_CRYPTO_CIPHER_NULL)
547                         op_fns->populate_ops = cperf_set_ops_null_cipher;
548                 else
549                         op_fns->populate_ops = cperf_set_ops_cipher;
550                 return 0;
551         }
552
553         return -1;
554 }