90a9a866755aa8e93b076b3c2bc9a95fda601d20
[dpdk.git] / examples / ipsec-secgw / ipsec.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 #include <sys/types.h>
34 #include <netinet/in.h>
35 #include <netinet/ip.h>
36
37 #include <rte_branch_prediction.h>
38 #include <rte_log.h>
39 #include <rte_crypto.h>
40 #include <rte_cryptodev.h>
41 #include <rte_mbuf.h>
42 #include <rte_hash.h>
43
44 #include "ipsec.h"
45 #include "esp.h"
46
47 static inline int
48 create_session(struct ipsec_ctx *ipsec_ctx __rte_unused, struct ipsec_sa *sa)
49 {
50         unsigned long cdev_id_qp = 0;
51         int32_t ret;
52         struct cdev_key key = { 0 };
53
54         key.lcore_id = (uint8_t)rte_lcore_id();
55
56         key.cipher_algo = (uint8_t)sa->cipher_algo;
57         key.auth_algo = (uint8_t)sa->auth_algo;
58
59         ret = rte_hash_lookup_data(ipsec_ctx->cdev_map, &key,
60                         (void **)&cdev_id_qp);
61         if (ret < 0) {
62                 RTE_LOG(ERR, IPSEC, "No cryptodev: core %u, cipher_algo %u, "
63                                 "auth_algo %u\n", key.lcore_id, key.cipher_algo,
64                                 key.auth_algo);
65                 return -1;
66         }
67
68         RTE_LOG(DEBUG, IPSEC, "Create session for SA spi %u on cryptodev "
69                         "%u qp %u\n", sa->spi, ipsec_ctx->tbl[cdev_id_qp].id,
70                         ipsec_ctx->tbl[cdev_id_qp].qp);
71
72         sa->crypto_session = rte_cryptodev_sym_session_create(
73                         ipsec_ctx->tbl[cdev_id_qp].id, sa->xforms);
74
75         sa->cdev_id_qp = cdev_id_qp;
76
77         return 0;
78 }
79
80 static inline void
81 enqueue_cop(struct cdev_qp *cqp, struct rte_crypto_op *cop)
82 {
83         int ret, i;
84
85         cqp->buf[cqp->len++] = cop;
86
87         if (cqp->len == MAX_PKT_BURST) {
88                 ret = rte_cryptodev_enqueue_burst(cqp->id, cqp->qp,
89                                 cqp->buf, cqp->len);
90                 if (ret < cqp->len) {
91                         RTE_LOG(DEBUG, IPSEC, "Cryptodev %u queue %u:"
92                                         " enqueued %u crypto ops out of %u\n",
93                                          cqp->id, cqp->qp,
94                                          ret, cqp->len);
95                         for (i = ret; i < cqp->len; i++)
96                                 rte_pktmbuf_free(cqp->buf[i]->sym->m_src);
97                 }
98                 cqp->in_flight += ret;
99                 cqp->len = 0;
100         }
101 }
102
103 static inline void
104 ipsec_enqueue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx,
105                 struct rte_mbuf *pkts[], struct ipsec_sa *sas[],
106                 uint16_t nb_pkts)
107 {
108         int ret = 0, i;
109         struct ipsec_mbuf_metadata *priv;
110         struct ipsec_sa *sa;
111
112         for (i = 0; i < nb_pkts; i++) {
113                 rte_prefetch0(sas[i]);
114                 rte_prefetch0(pkts[i]);
115
116                 priv = get_priv(pkts[i]);
117                 sa = sas[i];
118                 priv->sa = sa;
119
120                 RTE_ASSERT(sa != NULL);
121
122                 priv->cop.type = RTE_CRYPTO_OP_TYPE_SYMMETRIC;
123
124                 rte_prefetch0(&priv->sym_cop);
125                 priv->cop.sym = &priv->sym_cop;
126
127                 if ((unlikely(sa->crypto_session == NULL)) &&
128                                 create_session(ipsec_ctx, sa)) {
129                         rte_pktmbuf_free(pkts[i]);
130                         continue;
131                 }
132
133                 rte_crypto_op_attach_sym_session(&priv->cop,
134                                 sa->crypto_session);
135
136                 ret = xform_func(pkts[i], sa, &priv->cop);
137                 if (unlikely(ret)) {
138                         rte_pktmbuf_free(pkts[i]);
139                         continue;
140                 }
141
142                 RTE_ASSERT(sa->cdev_id_qp < ipsec_ctx->nb_qps);
143                 enqueue_cop(&ipsec_ctx->tbl[sa->cdev_id_qp], &priv->cop);
144         }
145 }
146
147 static inline int
148 ipsec_dequeue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx,
149                 struct rte_mbuf *pkts[], uint16_t max_pkts)
150 {
151         int nb_pkts = 0, ret = 0, i, j, nb_cops;
152         struct ipsec_mbuf_metadata *priv;
153         struct rte_crypto_op *cops[max_pkts];
154         struct ipsec_sa *sa;
155         struct rte_mbuf *pkt;
156
157         for (i = 0; i < ipsec_ctx->nb_qps && nb_pkts < max_pkts; i++) {
158                 struct cdev_qp *cqp;
159
160                 cqp = &ipsec_ctx->tbl[ipsec_ctx->last_qp++];
161                 if (ipsec_ctx->last_qp == ipsec_ctx->nb_qps)
162                         ipsec_ctx->last_qp %= ipsec_ctx->nb_qps;
163
164                 if (cqp->in_flight == 0)
165                         continue;
166
167                 nb_cops = rte_cryptodev_dequeue_burst(cqp->id, cqp->qp,
168                                 cops, max_pkts - nb_pkts);
169
170                 cqp->in_flight -= nb_cops;
171
172                 for (j = 0; j < nb_cops; j++) {
173                         pkt = cops[j]->sym->m_src;
174                         rte_prefetch0(pkt);
175
176                         priv = get_priv(pkt);
177                         sa = priv->sa;
178
179                         RTE_ASSERT(sa != NULL);
180
181                         ret = xform_func(pkt, sa, cops[j]);
182                         if (unlikely(ret))
183                                 rte_pktmbuf_free(pkt);
184                         else
185                                 pkts[nb_pkts++] = pkt;
186                 }
187         }
188
189         /* return packets */
190         return nb_pkts;
191 }
192
193 uint16_t
194 ipsec_inbound(struct ipsec_ctx *ctx, struct rte_mbuf *pkts[],
195                 uint16_t nb_pkts, uint16_t len)
196 {
197         struct ipsec_sa *sas[nb_pkts];
198
199         inbound_sa_lookup(ctx->sa_ctx, pkts, sas, nb_pkts);
200
201         ipsec_enqueue(esp_inbound, ctx, pkts, sas, nb_pkts);
202
203         return ipsec_dequeue(esp_inbound_post, ctx, pkts, len);
204 }
205
206 uint16_t
207 ipsec_outbound(struct ipsec_ctx *ctx, struct rte_mbuf *pkts[],
208                 uint32_t sa_idx[], uint16_t nb_pkts, uint16_t len)
209 {
210         struct ipsec_sa *sas[nb_pkts];
211
212         outbound_sa_lookup(ctx->sa_ctx, sa_idx, sas, nb_pkts);
213
214         ipsec_enqueue(esp_outbound, ctx, pkts, sas, nb_pkts);
215
216         return ipsec_dequeue(esp_outbound_post, ctx, pkts, len);
217 }