4eedaa37f6d46fb5b0aa0d2320341bbaa7b89a91
[dpdk.git] / drivers / crypto / aesni_gcm / aesni_gcm_pmd_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 <string.h>
34
35 #include <rte_common.h>
36 #include <rte_malloc.h>
37 #include <rte_cryptodev_pmd.h>
38
39 #include "aesni_gcm_pmd_private.h"
40
41 static const struct rte_cryptodev_capabilities aesni_gcm_pmd_capabilities[] = {
42         {       /* AES GMAC (AUTH) */
43                 .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
44                 {.sym = {
45                         .xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,
46                         {.auth = {
47                                 .algo = RTE_CRYPTO_AUTH_AES_GMAC,
48                                 .block_size = 16,
49                                 .key_size = {
50                                         .min = 16,
51                                         .max = 32,
52                                         .increment = 16
53                                 },
54                                 .digest_size = {
55                                         .min = 8,
56                                         .max = 16,
57                                         .increment = 4
58                                 },
59                                 .aad_size = { 0 },
60                                 .iv_size = {
61                                         .min = 12,
62                                         .max = 12,
63                                         .increment = 0
64                                 }
65                         }, }
66                 }, }
67         },
68         {       /* AES GCM */
69                 .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
70                 {.sym = {
71                         .xform_type = RTE_CRYPTO_SYM_XFORM_AEAD,
72                         {.aead = {
73                                 .algo = RTE_CRYPTO_AEAD_AES_GCM,
74                                 .block_size = 16,
75                                 .key_size = {
76                                         .min = 16,
77                                         .max = 32,
78                                         .increment = 16
79                                 },
80                                 .digest_size = {
81                                         .min = 8,
82                                         .max = 16,
83                                         .increment = 4
84                                 },
85                                 .aad_size = {
86                                         .min = 0,
87                                         .max = 65535,
88                                         .increment = 1
89                                 },
90                                 .iv_size = {
91                                         .min = 12,
92                                         .max = 12,
93                                         .increment = 0
94                                 }
95                         }, }
96                 }, }
97         },
98         RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST()
99 };
100
101 /** Configure device */
102 static int
103 aesni_gcm_pmd_config(__rte_unused struct rte_cryptodev *dev,
104                 __rte_unused struct rte_cryptodev_config *config)
105 {
106         return 0;
107 }
108
109 /** Start device */
110 static int
111 aesni_gcm_pmd_start(__rte_unused struct rte_cryptodev *dev)
112 {
113         return 0;
114 }
115
116 /** Stop device */
117 static void
118 aesni_gcm_pmd_stop(__rte_unused struct rte_cryptodev *dev)
119 {
120 }
121
122 /** Close device */
123 static int
124 aesni_gcm_pmd_close(__rte_unused struct rte_cryptodev *dev)
125 {
126         return 0;
127 }
128
129
130 /** Get device statistics */
131 static void
132 aesni_gcm_pmd_stats_get(struct rte_cryptodev *dev,
133                 struct rte_cryptodev_stats *stats)
134 {
135         int qp_id;
136
137         for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) {
138                 struct aesni_gcm_qp *qp = dev->data->queue_pairs[qp_id];
139
140                 stats->enqueued_count += qp->qp_stats.enqueued_count;
141                 stats->dequeued_count += qp->qp_stats.dequeued_count;
142
143                 stats->enqueue_err_count += qp->qp_stats.enqueue_err_count;
144                 stats->dequeue_err_count += qp->qp_stats.dequeue_err_count;
145         }
146 }
147
148 /** Reset device statistics */
149 static void
150 aesni_gcm_pmd_stats_reset(struct rte_cryptodev *dev)
151 {
152         int qp_id;
153
154         for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) {
155                 struct aesni_gcm_qp *qp = dev->data->queue_pairs[qp_id];
156
157                 memset(&qp->qp_stats, 0, sizeof(qp->qp_stats));
158         }
159 }
160
161
162 /** Get device info */
163 static void
164 aesni_gcm_pmd_info_get(struct rte_cryptodev *dev,
165                 struct rte_cryptodev_info *dev_info)
166 {
167         struct aesni_gcm_private *internals = dev->data->dev_private;
168
169         if (dev_info != NULL) {
170                 dev_info->dev_type = dev->dev_type;
171                 dev_info->feature_flags = dev->feature_flags;
172                 dev_info->capabilities = aesni_gcm_pmd_capabilities;
173
174                 dev_info->max_nb_queue_pairs = internals->max_nb_queue_pairs;
175                 dev_info->sym.max_nb_sessions = internals->max_nb_sessions;
176         }
177 }
178
179 /** Release queue pair */
180 static int
181 aesni_gcm_pmd_qp_release(struct rte_cryptodev *dev, uint16_t qp_id)
182 {
183         if (dev->data->queue_pairs[qp_id] != NULL) {
184                 rte_free(dev->data->queue_pairs[qp_id]);
185                 dev->data->queue_pairs[qp_id] = NULL;
186         }
187         return 0;
188 }
189
190 /** set a unique name for the queue pair based on it's name, dev_id and qp_id */
191 static int
192 aesni_gcm_pmd_qp_set_unique_name(struct rte_cryptodev *dev,
193                 struct aesni_gcm_qp *qp)
194 {
195         unsigned n = snprintf(qp->name, sizeof(qp->name),
196                         "aesni_gcm_pmd_%u_qp_%u",
197                         dev->data->dev_id, qp->id);
198
199         if (n > sizeof(qp->name))
200                 return -1;
201
202         return 0;
203 }
204
205 /** Create a ring to place process packets on */
206 static struct rte_ring *
207 aesni_gcm_pmd_qp_create_processed_pkts_ring(struct aesni_gcm_qp *qp,
208                 unsigned ring_size, int socket_id)
209 {
210         struct rte_ring *r;
211
212         r = rte_ring_lookup(qp->name);
213         if (r) {
214                 if (rte_ring_get_size(r) >= ring_size) {
215                         GCM_LOG_INFO("Reusing existing ring %s for processed"
216                                         " packets", qp->name);
217                         return r;
218                 }
219
220                 GCM_LOG_ERR("Unable to reuse existing ring %s for processed"
221                                 " packets", qp->name);
222                 return NULL;
223         }
224
225         return rte_ring_create(qp->name, ring_size, socket_id,
226                         RING_F_SP_ENQ | RING_F_SC_DEQ);
227 }
228
229 /** Setup a queue pair */
230 static int
231 aesni_gcm_pmd_qp_setup(struct rte_cryptodev *dev, uint16_t qp_id,
232                 const struct rte_cryptodev_qp_conf *qp_conf,
233                  int socket_id)
234 {
235         struct aesni_gcm_qp *qp = NULL;
236
237         /* Free memory prior to re-allocation if needed. */
238         if (dev->data->queue_pairs[qp_id] != NULL)
239                 aesni_gcm_pmd_qp_release(dev, qp_id);
240
241         /* Allocate the queue pair data structure. */
242         qp = rte_zmalloc_socket("AES-NI PMD Queue Pair", sizeof(*qp),
243                                         RTE_CACHE_LINE_SIZE, socket_id);
244         if (qp == NULL)
245                 return (-ENOMEM);
246
247         qp->id = qp_id;
248         dev->data->queue_pairs[qp_id] = qp;
249
250         if (aesni_gcm_pmd_qp_set_unique_name(dev, qp))
251                 goto qp_setup_cleanup;
252
253         qp->processed_pkts = aesni_gcm_pmd_qp_create_processed_pkts_ring(qp,
254                         qp_conf->nb_descriptors, socket_id);
255         if (qp->processed_pkts == NULL)
256                 goto qp_setup_cleanup;
257
258         qp->sess_mp = dev->data->session_pool;
259
260         memset(&qp->qp_stats, 0, sizeof(qp->qp_stats));
261
262         return 0;
263
264 qp_setup_cleanup:
265         if (qp)
266                 rte_free(qp);
267
268         return -1;
269 }
270
271 /** Start queue pair */
272 static int
273 aesni_gcm_pmd_qp_start(__rte_unused struct rte_cryptodev *dev,
274                 __rte_unused uint16_t queue_pair_id)
275 {
276         return -ENOTSUP;
277 }
278
279 /** Stop queue pair */
280 static int
281 aesni_gcm_pmd_qp_stop(__rte_unused struct rte_cryptodev *dev,
282                 __rte_unused uint16_t queue_pair_id)
283 {
284         return -ENOTSUP;
285 }
286
287 /** Return the number of allocated queue pairs */
288 static uint32_t
289 aesni_gcm_pmd_qp_count(struct rte_cryptodev *dev)
290 {
291         return dev->data->nb_queue_pairs;
292 }
293
294 /** Returns the size of the aesni gcm session structure */
295 static unsigned
296 aesni_gcm_pmd_session_get_size(struct rte_cryptodev *dev __rte_unused)
297 {
298         return sizeof(struct aesni_gcm_session);
299 }
300
301 /** Configure a aesni gcm session from a crypto xform chain */
302 static void *
303 aesni_gcm_pmd_session_configure(struct rte_cryptodev *dev __rte_unused,
304                 struct rte_crypto_sym_xform *xform,     void *sess)
305 {
306         if (unlikely(sess == NULL)) {
307                 GCM_LOG_ERR("invalid session struct");
308                 return NULL;
309         }
310
311         if (aesni_gcm_set_session_parameters(sess, xform) != 0) {
312                 GCM_LOG_ERR("failed configure session parameters");
313                 return NULL;
314         }
315
316         return sess;
317 }
318
319 /** Clear the memory of session so it doesn't leave key material behind */
320 static void
321 aesni_gcm_pmd_session_clear(struct rte_cryptodev *dev __rte_unused, void *sess)
322 {
323         if (sess)
324                 memset(sess, 0, sizeof(struct aesni_gcm_session));
325 }
326
327 struct rte_cryptodev_ops aesni_gcm_pmd_ops = {
328                 .dev_configure          = aesni_gcm_pmd_config,
329                 .dev_start              = aesni_gcm_pmd_start,
330                 .dev_stop               = aesni_gcm_pmd_stop,
331                 .dev_close              = aesni_gcm_pmd_close,
332
333                 .stats_get              = aesni_gcm_pmd_stats_get,
334                 .stats_reset            = aesni_gcm_pmd_stats_reset,
335
336                 .dev_infos_get          = aesni_gcm_pmd_info_get,
337
338                 .queue_pair_setup       = aesni_gcm_pmd_qp_setup,
339                 .queue_pair_release     = aesni_gcm_pmd_qp_release,
340                 .queue_pair_start       = aesni_gcm_pmd_qp_start,
341                 .queue_pair_stop        = aesni_gcm_pmd_qp_stop,
342                 .queue_pair_count       = aesni_gcm_pmd_qp_count,
343
344                 .session_get_size       = aesni_gcm_pmd_session_get_size,
345                 .session_configure      = aesni_gcm_pmd_session_configure,
346                 .session_clear          = aesni_gcm_pmd_session_clear
347 };
348
349 struct rte_cryptodev_ops *rte_aesni_gcm_pmd_ops = &aesni_gcm_pmd_ops;