eal: add assert macro for debug
[dpdk.git] / examples / ipsec-secgw / ipsec.h
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
34 #ifndef __IPSEC_H__
35 #define __IPSEC_H__
36
37 #include <stdint.h>
38
39 #include <rte_byteorder.h>
40 #include <rte_ip.h>
41 #include <rte_crypto.h>
42
43 #define RTE_LOGTYPE_IPSEC       RTE_LOGTYPE_USER1
44 #define RTE_LOGTYPE_IPSEC_ESP   RTE_LOGTYPE_USER2
45 #define RTE_LOGTYPE_IPSEC_IPIP  RTE_LOGTYPE_USER3
46
47 #define MAX_PKT_BURST 32
48 #define MAX_QP_PER_LCORE 256
49
50 #define MAX_DIGEST_SIZE 32 /* Bytes -- 256 bits */
51
52 #define uint32_t_to_char(ip, a, b, c, d) do {\
53                 *a = (unsigned char)(ip >> 24 & 0xff);\
54                 *b = (unsigned char)(ip >> 16 & 0xff);\
55                 *c = (unsigned char)(ip >> 8 & 0xff);\
56                 *d = (unsigned char)(ip & 0xff);\
57         } while (0)
58
59 #define DEFAULT_MAX_CATEGORIES  1
60
61 #define IPSEC_SA_MAX_ENTRIES (64) /* must be power of 2, max 2 power 30 */
62 #define SPI2IDX(spi) (spi & (IPSEC_SA_MAX_ENTRIES - 1))
63 #define INVALID_SPI (0)
64
65 #define DISCARD (0x80000000)
66 #define BYPASS (0x40000000)
67 #define PROTECT_MASK (0x3fffffff)
68 #define PROTECT(sa_idx) (SPI2IDX(sa_idx) & PROTECT_MASK) /* SA idx 30 bits */
69
70 #define IPSEC_XFORM_MAX 2
71
72 struct rte_crypto_xform;
73 struct ipsec_xform;
74 struct rte_cryptodev_session;
75 struct rte_mbuf;
76
77 struct ipsec_sa;
78
79 typedef int (*ipsec_xform_fn)(struct rte_mbuf *m, struct ipsec_sa *sa,
80                 struct rte_crypto_op *cop);
81
82 struct ipsec_sa {
83         uint32_t spi;
84         uint32_t cdev_id_qp;
85         uint32_t src;
86         uint32_t dst;
87         struct rte_cryptodev_sym_session *crypto_session;
88         struct rte_crypto_sym_xform *xforms;
89         ipsec_xform_fn pre_crypto;
90         ipsec_xform_fn post_crypto;
91         enum rte_crypto_cipher_algorithm cipher_algo;
92         enum rte_crypto_auth_algorithm auth_algo;
93         uint16_t digest_len;
94         uint16_t iv_len;
95         uint16_t block_size;
96         uint16_t flags;
97         uint32_t seq;
98 } __rte_cache_aligned;
99
100 struct ipsec_mbuf_metadata {
101         struct ipsec_sa *sa;
102         struct rte_crypto_op cop;
103         struct rte_crypto_sym_op sym_cop;
104 };
105
106 struct cdev_qp {
107         uint16_t id;
108         uint16_t qp;
109         uint16_t in_flight;
110         uint16_t len;
111         struct rte_crypto_op *buf[MAX_PKT_BURST] __rte_aligned(sizeof(void *));
112 };
113
114 struct ipsec_ctx {
115         struct rte_hash *cdev_map;
116         struct sp_ctx *sp_ctx;
117         struct sa_ctx *sa_ctx;
118         uint16_t nb_qps;
119         uint16_t last_qp;
120         struct cdev_qp tbl[MAX_QP_PER_LCORE];
121 };
122
123 struct cdev_key {
124         uint16_t lcore_id;
125         uint8_t cipher_algo;
126         uint8_t auth_algo;
127 };
128
129 struct socket_ctx {
130         struct sa_ctx *sa_ipv4_in;
131         struct sa_ctx *sa_ipv4_out;
132         struct sp_ctx *sp_ipv4_in;
133         struct sp_ctx *sp_ipv4_out;
134         struct rt_ctx *rt_ipv4;
135         struct rte_mempool *mbuf_pool;
136 };
137
138 uint16_t
139 ipsec_inbound(struct ipsec_ctx *ctx, struct rte_mbuf *pkts[],
140                 uint16_t nb_pkts, uint16_t len);
141
142 uint16_t
143 ipsec_outbound(struct ipsec_ctx *ctx, struct rte_mbuf *pkts[],
144                 uint32_t sa_idx[], uint16_t nb_pkts, uint16_t len);
145
146 static inline uint16_t
147 ipsec_metadata_size(void)
148 {
149         return sizeof(struct ipsec_mbuf_metadata);
150 }
151
152 static inline struct ipsec_mbuf_metadata *
153 get_priv(struct rte_mbuf *m)
154 {
155         return RTE_PTR_ADD(m, sizeof(struct rte_mbuf));
156 }
157
158 int
159 inbound_sa_check(struct sa_ctx *sa_ctx, struct rte_mbuf *m, uint32_t sa_idx);
160
161 void
162 inbound_sa_lookup(struct sa_ctx *sa_ctx, struct rte_mbuf *pkts[],
163                 struct ipsec_sa *sa[], uint16_t nb_pkts);
164
165 void
166 outbound_sa_lookup(struct sa_ctx *sa_ctx, uint32_t sa_idx[],
167                 struct ipsec_sa *sa[], uint16_t nb_pkts);
168
169 void
170 sp_init(struct socket_ctx *ctx, int socket_id, unsigned ep);
171
172 void
173 sa_init(struct socket_ctx *ctx, int socket_id, unsigned ep);
174
175 void
176 rt_init(struct socket_ctx *ctx, int socket_id, unsigned ep);
177
178 #endif /* __IPSEC_H__ */