cryptodev: change queue pair configure structure
[dpdk.git] / drivers / crypto / zuc / rte_zuc_pmd.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016-2018 Intel Corporation
3  */
4
5 #include <rte_common.h>
6 #include <rte_hexdump.h>
7 #include <rte_cryptodev.h>
8 #include <rte_cryptodev_pmd.h>
9 #include <rte_bus_vdev.h>
10 #include <rte_malloc.h>
11 #include <rte_cpuflags.h>
12
13 #include "rte_zuc_pmd_private.h"
14 #define ZUC_MAX_BURST 4
15 #define BYTE_LEN 8
16
17 static uint8_t cryptodev_driver_id;
18
19 /** Get xform chain order. */
20 static enum zuc_operation
21 zuc_get_mode(const struct rte_crypto_sym_xform *xform)
22 {
23         if (xform == NULL)
24                 return ZUC_OP_NOT_SUPPORTED;
25
26         if (xform->next)
27                 if (xform->next->next != NULL)
28                         return ZUC_OP_NOT_SUPPORTED;
29
30         if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH) {
31                 if (xform->next == NULL)
32                         return ZUC_OP_ONLY_AUTH;
33                 else if (xform->next->type == RTE_CRYPTO_SYM_XFORM_CIPHER)
34                         return ZUC_OP_AUTH_CIPHER;
35                 else
36                         return ZUC_OP_NOT_SUPPORTED;
37         }
38
39         if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER) {
40                 if (xform->next == NULL)
41                         return ZUC_OP_ONLY_CIPHER;
42                 else if (xform->next->type == RTE_CRYPTO_SYM_XFORM_AUTH)
43                         return ZUC_OP_CIPHER_AUTH;
44                 else
45                         return ZUC_OP_NOT_SUPPORTED;
46         }
47
48         return ZUC_OP_NOT_SUPPORTED;
49 }
50
51
52 /** Parse crypto xform chain and set private session parameters. */
53 int
54 zuc_set_session_parameters(struct zuc_session *sess,
55                 const struct rte_crypto_sym_xform *xform)
56 {
57         const struct rte_crypto_sym_xform *auth_xform = NULL;
58         const struct rte_crypto_sym_xform *cipher_xform = NULL;
59         enum zuc_operation mode;
60
61         /* Select Crypto operation - hash then cipher / cipher then hash */
62         mode = zuc_get_mode(xform);
63
64         switch (mode) {
65         case ZUC_OP_CIPHER_AUTH:
66                 auth_xform = xform->next;
67
68                 /* Fall-through */
69         case ZUC_OP_ONLY_CIPHER:
70                 cipher_xform = xform;
71                 break;
72         case ZUC_OP_AUTH_CIPHER:
73                 cipher_xform = xform->next;
74                 /* Fall-through */
75         case ZUC_OP_ONLY_AUTH:
76                 auth_xform = xform;
77                 break;
78         case ZUC_OP_NOT_SUPPORTED:
79         default:
80                 ZUC_LOG(ERR, "Unsupported operation chain order parameter");
81                 return -ENOTSUP;
82         }
83
84         if (cipher_xform) {
85                 /* Only ZUC EEA3 supported */
86                 if (cipher_xform->cipher.algo != RTE_CRYPTO_CIPHER_ZUC_EEA3)
87                         return -ENOTSUP;
88
89                 if (cipher_xform->cipher.iv.length != ZUC_IV_KEY_LENGTH) {
90                         ZUC_LOG(ERR, "Wrong IV length");
91                         return -EINVAL;
92                 }
93                 sess->cipher_iv_offset = cipher_xform->cipher.iv.offset;
94
95                 /* Copy the key */
96                 memcpy(sess->pKey_cipher, cipher_xform->cipher.key.data,
97                                 ZUC_IV_KEY_LENGTH);
98         }
99
100         if (auth_xform) {
101                 /* Only ZUC EIA3 supported */
102                 if (auth_xform->auth.algo != RTE_CRYPTO_AUTH_ZUC_EIA3)
103                         return -ENOTSUP;
104
105                 if (auth_xform->auth.digest_length != ZUC_DIGEST_LENGTH) {
106                         ZUC_LOG(ERR, "Wrong digest length");
107                         return -EINVAL;
108                 }
109
110                 sess->auth_op = auth_xform->auth.op;
111
112                 if (auth_xform->auth.iv.length != ZUC_IV_KEY_LENGTH) {
113                         ZUC_LOG(ERR, "Wrong IV length");
114                         return -EINVAL;
115                 }
116                 sess->auth_iv_offset = auth_xform->auth.iv.offset;
117
118                 /* Copy the key */
119                 memcpy(sess->pKey_hash, auth_xform->auth.key.data,
120                                 ZUC_IV_KEY_LENGTH);
121         }
122
123
124         sess->op = mode;
125
126         return 0;
127 }
128
129 /** Get ZUC session. */
130 static struct zuc_session *
131 zuc_get_session(struct zuc_qp *qp, struct rte_crypto_op *op)
132 {
133         struct zuc_session *sess = NULL;
134
135         if (op->sess_type == RTE_CRYPTO_OP_WITH_SESSION) {
136                 if (likely(op->sym->session != NULL))
137                         sess = (struct zuc_session *)get_sym_session_private_data(
138                                         op->sym->session,
139                                         cryptodev_driver_id);
140         } else {
141                 void *_sess = NULL;
142                 void *_sess_private_data = NULL;
143
144                 if (rte_mempool_get(qp->sess_mp, (void **)&_sess))
145                         return NULL;
146
147                 if (rte_mempool_get(qp->sess_mp_priv,
148                                 (void **)&_sess_private_data))
149                         return NULL;
150
151                 sess = (struct zuc_session *)_sess_private_data;
152
153                 if (unlikely(zuc_set_session_parameters(sess,
154                                 op->sym->xform) != 0)) {
155                         rte_mempool_put(qp->sess_mp, _sess);
156                         rte_mempool_put(qp->sess_mp_priv, _sess_private_data);
157                         sess = NULL;
158                 }
159                 op->sym->session = (struct rte_cryptodev_sym_session *)_sess;
160                 set_sym_session_private_data(op->sym->session,
161                                 cryptodev_driver_id, _sess_private_data);
162         }
163
164         if (unlikely(sess == NULL))
165                 op->status = RTE_CRYPTO_OP_STATUS_INVALID_SESSION;
166
167
168         return sess;
169 }
170
171 /** Encrypt/decrypt mbufs. */
172 static uint8_t
173 process_zuc_cipher_op(struct rte_crypto_op **ops,
174                 struct zuc_session **sessions,
175                 uint8_t num_ops)
176 {
177         unsigned i;
178         uint8_t processed_ops = 0;
179         uint8_t *src[ZUC_MAX_BURST], *dst[ZUC_MAX_BURST];
180         uint8_t *iv[ZUC_MAX_BURST];
181         uint32_t num_bytes[ZUC_MAX_BURST];
182         uint8_t *cipher_keys[ZUC_MAX_BURST];
183         struct zuc_session *sess;
184
185         for (i = 0; i < num_ops; i++) {
186                 if (((ops[i]->sym->cipher.data.length % BYTE_LEN) != 0)
187                                 || ((ops[i]->sym->cipher.data.offset
188                                         % BYTE_LEN) != 0)) {
189                         ops[i]->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
190                         ZUC_LOG(ERR, "Data Length or offset");
191                         break;
192                 }
193
194                 sess = sessions[i];
195
196 #ifdef RTE_LIBRTE_PMD_ZUC_DEBUG
197                 if (!rte_pktmbuf_is_contiguous(ops[i]->sym->m_src) ||
198                                 (ops[i]->sym->m_dst != NULL &&
199                                 !rte_pktmbuf_is_contiguous(
200                                                 ops[i]->sym->m_dst))) {
201                         ZUC_LOG(ERR, "PMD supports only contiguous mbufs, "
202                                 "op (%p) provides noncontiguous mbuf as "
203                                 "source/destination buffer.\n", ops[i]);
204                         ops[i]->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
205                         break;
206                 }
207 #endif
208
209                 src[i] = rte_pktmbuf_mtod(ops[i]->sym->m_src, uint8_t *) +
210                                 (ops[i]->sym->cipher.data.offset >> 3);
211                 dst[i] = ops[i]->sym->m_dst ?
212                         rte_pktmbuf_mtod(ops[i]->sym->m_dst, uint8_t *) +
213                                 (ops[i]->sym->cipher.data.offset >> 3) :
214                         rte_pktmbuf_mtod(ops[i]->sym->m_src, uint8_t *) +
215                                 (ops[i]->sym->cipher.data.offset >> 3);
216                 iv[i] = rte_crypto_op_ctod_offset(ops[i], uint8_t *,
217                                 sess->cipher_iv_offset);
218                 num_bytes[i] = ops[i]->sym->cipher.data.length >> 3;
219
220                 cipher_keys[i] = sess->pKey_cipher;
221
222                 processed_ops++;
223         }
224
225         sso_zuc_eea3_n_buffer(cipher_keys, iv, src, dst,
226                         num_bytes, processed_ops);
227
228         return processed_ops;
229 }
230
231 /** Generate/verify hash from mbufs. */
232 static int
233 process_zuc_hash_op(struct zuc_qp *qp, struct rte_crypto_op **ops,
234                 struct zuc_session **sessions,
235                 uint8_t num_ops)
236 {
237         unsigned i;
238         uint8_t processed_ops = 0;
239         uint8_t *src;
240         uint32_t *dst;
241         uint32_t length_in_bits;
242         uint8_t *iv;
243         struct zuc_session *sess;
244
245         for (i = 0; i < num_ops; i++) {
246                 /* Data must be byte aligned */
247                 if ((ops[i]->sym->auth.data.offset % BYTE_LEN) != 0) {
248                         ops[i]->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
249                         ZUC_LOG(ERR, "Offset");
250                         break;
251                 }
252
253                 sess = sessions[i];
254
255                 length_in_bits = ops[i]->sym->auth.data.length;
256
257                 src = rte_pktmbuf_mtod(ops[i]->sym->m_src, uint8_t *) +
258                                 (ops[i]->sym->auth.data.offset >> 3);
259                 iv = rte_crypto_op_ctod_offset(ops[i], uint8_t *,
260                                 sess->auth_iv_offset);
261
262                 if (sess->auth_op == RTE_CRYPTO_AUTH_OP_VERIFY) {
263                         dst = (uint32_t *)qp->temp_digest;
264
265                         sso_zuc_eia3_1_buffer(sess->pKey_hash,
266                                         iv, src,
267                                         length_in_bits, dst);
268                         /* Verify digest. */
269                         if (memcmp(dst, ops[i]->sym->auth.digest.data,
270                                         ZUC_DIGEST_LENGTH) != 0)
271                                 ops[i]->status = RTE_CRYPTO_OP_STATUS_AUTH_FAILED;
272                 } else  {
273                         dst = (uint32_t *)ops[i]->sym->auth.digest.data;
274
275                         sso_zuc_eia3_1_buffer(sess->pKey_hash,
276                                         iv, src,
277                                         length_in_bits, dst);
278                 }
279                 processed_ops++;
280         }
281
282         return processed_ops;
283 }
284
285 /** Process a batch of crypto ops which shares the same operation type. */
286 static int
287 process_ops(struct rte_crypto_op **ops, enum zuc_operation op_type,
288                 struct zuc_session **sessions,
289                 struct zuc_qp *qp, uint8_t num_ops,
290                 uint16_t *accumulated_enqueued_ops)
291 {
292         unsigned i;
293         unsigned enqueued_ops, processed_ops;
294
295         switch (op_type) {
296         case ZUC_OP_ONLY_CIPHER:
297                 processed_ops = process_zuc_cipher_op(ops,
298                                 sessions, num_ops);
299                 break;
300         case ZUC_OP_ONLY_AUTH:
301                 processed_ops = process_zuc_hash_op(qp, ops, sessions,
302                                 num_ops);
303                 break;
304         case ZUC_OP_CIPHER_AUTH:
305                 processed_ops = process_zuc_cipher_op(ops, sessions,
306                                 num_ops);
307                 process_zuc_hash_op(qp, ops, sessions, processed_ops);
308                 break;
309         case ZUC_OP_AUTH_CIPHER:
310                 processed_ops = process_zuc_hash_op(qp, ops, sessions,
311                                 num_ops);
312                 process_zuc_cipher_op(ops, sessions, processed_ops);
313                 break;
314         default:
315                 /* Operation not supported. */
316                 processed_ops = 0;
317         }
318
319         for (i = 0; i < num_ops; i++) {
320                 /*
321                  * If there was no error/authentication failure,
322                  * change status to successful.
323                  */
324                 if (ops[i]->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED)
325                         ops[i]->status = RTE_CRYPTO_OP_STATUS_SUCCESS;
326                 /* Free session if a session-less crypto op. */
327                 if (ops[i]->sess_type == RTE_CRYPTO_OP_SESSIONLESS) {
328                         memset(sessions[i], 0, sizeof(struct zuc_session));
329                         memset(ops[i]->sym->session, 0,
330                                         rte_cryptodev_sym_get_header_session_size());
331                         rte_mempool_put(qp->sess_mp_priv, sessions[i]);
332                         rte_mempool_put(qp->sess_mp, ops[i]->sym->session);
333                         ops[i]->sym->session = NULL;
334                 }
335         }
336
337         enqueued_ops = rte_ring_enqueue_burst(qp->processed_ops,
338                         (void **)ops, processed_ops, NULL);
339         qp->qp_stats.enqueued_count += enqueued_ops;
340         *accumulated_enqueued_ops += enqueued_ops;
341
342         return enqueued_ops;
343 }
344
345 static uint16_t
346 zuc_pmd_enqueue_burst(void *queue_pair, struct rte_crypto_op **ops,
347                 uint16_t nb_ops)
348 {
349         struct rte_crypto_op *c_ops[ZUC_MAX_BURST];
350         struct rte_crypto_op *curr_c_op;
351
352         struct zuc_session *curr_sess;
353         struct zuc_session *sessions[ZUC_MAX_BURST];
354         enum zuc_operation prev_zuc_op = ZUC_OP_NOT_SUPPORTED;
355         enum zuc_operation curr_zuc_op;
356         struct zuc_qp *qp = queue_pair;
357         unsigned i;
358         uint8_t burst_size = 0;
359         uint16_t enqueued_ops = 0;
360         uint8_t processed_ops;
361
362         for (i = 0; i < nb_ops; i++) {
363                 curr_c_op = ops[i];
364
365                 curr_sess = zuc_get_session(qp, curr_c_op);
366                 if (unlikely(curr_sess == NULL)) {
367                         curr_c_op->status =
368                                         RTE_CRYPTO_OP_STATUS_INVALID_SESSION;
369                         break;
370                 }
371
372                 curr_zuc_op = curr_sess->op;
373
374                 /*
375                  * Batch ops that share the same operation type
376                  * (cipher only, auth only...).
377                  */
378                 if (burst_size == 0) {
379                         prev_zuc_op = curr_zuc_op;
380                         c_ops[0] = curr_c_op;
381                         sessions[0] = curr_sess;
382                         burst_size++;
383                 } else if (curr_zuc_op == prev_zuc_op) {
384                         c_ops[burst_size] = curr_c_op;
385                         sessions[burst_size] = curr_sess;
386                         burst_size++;
387                         /*
388                          * When there are enough ops to process in a batch,
389                          * process them, and start a new batch.
390                          */
391                         if (burst_size == ZUC_MAX_BURST) {
392                                 processed_ops = process_ops(c_ops, curr_zuc_op,
393                                                 sessions, qp, burst_size,
394                                                 &enqueued_ops);
395                                 if (processed_ops < burst_size) {
396                                         burst_size = 0;
397                                         break;
398                                 }
399
400                                 burst_size = 0;
401                         }
402                 } else {
403                         /*
404                          * Different operation type, process the ops
405                          * of the previous type.
406                          */
407                         processed_ops = process_ops(c_ops, prev_zuc_op,
408                                         sessions, qp, burst_size,
409                                         &enqueued_ops);
410                         if (processed_ops < burst_size) {
411                                 burst_size = 0;
412                                 break;
413                         }
414
415                         burst_size = 0;
416                         prev_zuc_op = curr_zuc_op;
417
418                         c_ops[0] = curr_c_op;
419                         sessions[0] = curr_sess;
420                         burst_size++;
421                 }
422         }
423
424         if (burst_size != 0) {
425                 /* Process the crypto ops of the last operation type. */
426                 processed_ops = process_ops(c_ops, prev_zuc_op,
427                                 sessions, qp, burst_size,
428                                 &enqueued_ops);
429         }
430
431         qp->qp_stats.enqueue_err_count += nb_ops - enqueued_ops;
432         return enqueued_ops;
433 }
434
435 static uint16_t
436 zuc_pmd_dequeue_burst(void *queue_pair,
437                 struct rte_crypto_op **c_ops, uint16_t nb_ops)
438 {
439         struct zuc_qp *qp = queue_pair;
440
441         unsigned nb_dequeued;
442
443         nb_dequeued = rte_ring_dequeue_burst(qp->processed_ops,
444                         (void **)c_ops, nb_ops, NULL);
445         qp->qp_stats.dequeued_count += nb_dequeued;
446
447         return nb_dequeued;
448 }
449
450 static int cryptodev_zuc_remove(struct rte_vdev_device *vdev);
451
452 static int
453 cryptodev_zuc_create(const char *name,
454                 struct rte_vdev_device *vdev,
455                 struct rte_cryptodev_pmd_init_params *init_params)
456 {
457         struct rte_cryptodev *dev;
458         struct zuc_private *internals;
459         uint64_t cpu_flags = RTE_CRYPTODEV_FF_CPU_SSE;
460
461
462         dev = rte_cryptodev_pmd_create(name, &vdev->device, init_params);
463         if (dev == NULL) {
464                 ZUC_LOG(ERR, "failed to create cryptodev vdev");
465                 goto init_error;
466         }
467
468         dev->driver_id = cryptodev_driver_id;
469         dev->dev_ops = rte_zuc_pmd_ops;
470
471         /* Register RX/TX burst functions for data path. */
472         dev->dequeue_burst = zuc_pmd_dequeue_burst;
473         dev->enqueue_burst = zuc_pmd_enqueue_burst;
474
475         dev->feature_flags = RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO |
476                         RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING |
477                         cpu_flags;
478
479         internals = dev->data->dev_private;
480
481         internals->max_nb_queue_pairs = init_params->max_nb_queue_pairs;
482
483         return 0;
484 init_error:
485         ZUC_LOG(ERR, "driver %s: failed",
486                         init_params->name);
487
488         cryptodev_zuc_remove(vdev);
489         return -EFAULT;
490 }
491
492 static int
493 cryptodev_zuc_probe(struct rte_vdev_device *vdev)
494 {
495         struct rte_cryptodev_pmd_init_params init_params = {
496                 "",
497                 sizeof(struct zuc_private),
498                 rte_socket_id(),
499                 RTE_CRYPTODEV_PMD_DEFAULT_MAX_NB_QUEUE_PAIRS
500         };
501         const char *name;
502         const char *input_args;
503
504         name = rte_vdev_device_name(vdev);
505         if (name == NULL)
506                 return -EINVAL;
507         input_args = rte_vdev_device_args(vdev);
508
509         rte_cryptodev_pmd_parse_input_args(&init_params, input_args);
510
511         return cryptodev_zuc_create(name, vdev, &init_params);
512 }
513
514 static int
515 cryptodev_zuc_remove(struct rte_vdev_device *vdev)
516 {
517
518         struct rte_cryptodev *cryptodev;
519         const char *name;
520
521         name = rte_vdev_device_name(vdev);
522         if (name == NULL)
523                 return -EINVAL;
524
525         cryptodev = rte_cryptodev_pmd_get_named_dev(name);
526         if (cryptodev == NULL)
527                 return -ENODEV;
528
529         return rte_cryptodev_pmd_destroy(cryptodev);
530 }
531
532 static struct rte_vdev_driver cryptodev_zuc_pmd_drv = {
533         .probe = cryptodev_zuc_probe,
534         .remove = cryptodev_zuc_remove
535 };
536
537 static struct cryptodev_driver zuc_crypto_drv;
538
539 RTE_PMD_REGISTER_VDEV(CRYPTODEV_NAME_ZUC_PMD, cryptodev_zuc_pmd_drv);
540 RTE_PMD_REGISTER_PARAM_STRING(CRYPTODEV_NAME_ZUC_PMD,
541         "max_nb_queue_pairs=<int> "
542         "socket_id=<int>");
543 RTE_PMD_REGISTER_CRYPTO_DRIVER(zuc_crypto_drv, cryptodev_zuc_pmd_drv.driver,
544                 cryptodev_driver_id);
545
546 RTE_INIT(zuc_init_log)
547 {
548         zuc_logtype_driver = rte_log_register("pmd.crypto.zuc");
549 }