#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include "ipsec.h"
#include "esp.h"
static inline void
{
if (IS_IP4_TUNNEL(sa->flags)) {
(uint8_t *)&sa->src.ip.ip4, 4);
(uint8_t *)&sa->dst.ip.ip4, 4);
} else if (IS_IP6_TUNNEL(sa->flags)) {
(uint8_t *)&sa->src.ip.ip6.ip6_b, 16);
(uint8_t *)&sa->dst.ip.ip6.ip6_b, 16);
}
}
if (IS_HW_REASSEMBLY_EN(sa->flags))
}
int
create_lookaside_session(struct ipsec_ctx *ipsec_ctx_lcore[],
struct socket_ctx *skt_ctx, const struct eventmode_conf *em_conf,
{
uint16_t cdev_id = RTE_CRYPTO_MAX_DEVS;
unsigned long cdev_id_qp = 0;
struct ipsec_ctx *ipsec_ctx;
struct cdev_key key = { 0 };
void *sess = NULL;
uint32_t lcore_id;
int32_t ret = 0;
ipsec_ctx = ipsec_ctx_lcore[lcore_id];
if (ipsec_ctx->cdev_map == NULL)
continue;
key.lcore_id = (uint8_t)lcore_id;
key.cipher_algo = (uint8_t)sa->cipher_algo;
key.auth_algo = (uint8_t)sa->auth_algo;
key.aead_algo = (uint8_t)sa->aead_algo;
(void **)&cdev_id_qp);
if (ret == -ENOENT)
continue;
if (ret < 0) {
"No cryptodev: core %u, cipher_algo %u, "
"auth_algo %u, aead_algo %u\n",
key.lcore_id,
key.cipher_algo,
key.auth_algo,
key.aead_algo);
return ret;
}
if (cdev_id == RTE_CRYPTO_MAX_DEVS)
cdev_id = ipsec_ctx->tbl[cdev_id_qp].id;
else if (cdev_id != ipsec_ctx->tbl[cdev_id_qp].id) {
&dev_info_2);
if (dev_info_1.driver_id == dev_info_2.driver_id) {
"SA mapped to multiple cryptodevs for SPI %d\n",
sa->spi);
} else {
"SA mapped to multiple cryptodevs of different types for SPI %d\n",
sa->spi);
}
}
sa->cqp[lcore_id] = &ipsec_ctx->tbl[cdev_id_qp];
}
if (cdev_id == RTE_CRYPTO_MAX_DEVS) {
RTE_LOG(WARNING, IPSEC,
"No cores found to handle SA\n");
return 0;
}
RTE_LOG(DEBUG, IPSEC,
"Create session for SA spi %u on cryptodev "
"%u\n", sa->spi, cdev_id);
{.ipsec = {
.spi = sa->spi,
.salt = sa->salt,
.options = { 0 },
.replay_win_sz = 0,
.direction = sa->direction,
.mode = (IS_TUNNEL(sa->flags)) ?
} },
.crypto_xform = sa->xforms,
.userdata = NULL,
};
cdev_id);
set_ipsec_conf(sa, &(sess_conf.
ipsec));
&sess_conf, skt_ctx->session_pool);
if (ips->security.ses == NULL) {
"SEC Session init failed: err: %d\n", ret);
return -1;
}
sess = ips->security.ses;
} else {
RTE_LOG(ERR, IPSEC,
"Inline not supported\n");
return -1;
}
} else {
if (!(info.feature_flags &
return -ENOTSUP;
}
ips->
crypto.
dev_id = cdev_id;
sa->xforms, skt_ctx->session_pool);
}
if (em_conf->enable_event_crypto_adapter && sess != NULL) {
const struct eventdev_params *eventdev_conf;
eventdev_conf = &(em_conf->eventdev_config[0]);
memset(&m_data, 0, sizeof(m_data));
m_data.response_info.sched_type = em_conf->ext_params.sched_type;
m_data.response_info.queue_id = eventdev_conf->ev_cpt_queue_id;
m_data.request_info.cdev_id = cdev_id;
m_data.request_info.queue_pair_id = 0;
sess_type, &m_data, sizeof(m_data));
}
return 0;
}
int
create_inline_session(struct socket_ctx *skt_ctx, struct ipsec_sa *sa,
{
int32_t ret = 0;
{.ipsec = {
.spi = sa->spi,
.salt = sa->salt,
.options = { 0 },
.replay_win_sz = 0,
.direction = sa->direction,
} },
.crypto_xform = sa->xforms,
.userdata = NULL,
};
if (IS_TRANSPORT(sa->flags)) {
if (IS_IP4(sa->flags)) {
sa->src.ip.ip4;
sa->dst.ip.ip4;
} else if (IS_IP6(sa->flags)) {
sa->src.ip.ip6.ip6_b, 16);
sa->dst.ip.ip6.ip6_b, 16);
}
} else if (IS_TUNNEL(sa->flags)) {
if (IS_IP4(sa->flags)) {
sa->src.ip.ip4;
sa->dst.ip.ip4;
} else if (IS_IP6(sa->flags)) {
sa->src.ip.ip6.ip6_b, 16);
sa->dst.ip.ip6.ip6_b, 16);
} else {
RTE_LOG(ERR, IPSEC,
"invalid tunnel type\n");
return -1;
}
}
if (sa->udp_encap) {
sess_conf.ipsec.
udp.sport = htons(sa->udp.sport);
sess_conf.ipsec.
udp.dport = htons(sa->udp.dport);
}
if (sa->esn > 0) {
sess_conf.ipsec.
esn.
value = sa->esn;
}
RTE_LOG_DP(DEBUG, IPSEC,
"Create session for SA spi %u on port %u\n",
sa->spi, sa->portid);
int ret = 0;
sa->portid);
if (sec_ctx == NULL) {
" rte_eth_dev_get_sec_ctx failed\n");
return -1;
}
&sess_conf, skt_ctx->session_pool);
if (ips->security.ses == NULL) {
"SEC Session init failed: err: %d\n", ret);
return -1;
}
break;
sec_cap++;
}
"No suitable security capability found\n");
return -1;
}
ips->security.
ol_flags = sec_cap->
ol_flags;
ips->security.ctx = sec_ctx;
if (IS_IP6(sa->flags)) {
sa->pattern[1].spec = &sa->ipv6_spec;
memcpy(sa->ipv6_spec.hdr.dst_addr,
sa->dst.ip.ip6.ip6_b, 16);
memcpy(sa->ipv6_spec.hdr.src_addr,
sa->src.ip.ip6.ip6_b, 16);
} else if (IS_IP4(sa->flags)) {
sa->pattern[1].spec = &sa->ipv4_spec;
sa->ipv4_spec.hdr.dst_addr = sa->dst.ip.ip4;
sa->ipv4_spec.hdr.src_addr = sa->src.ip.ip4;
}
if (sa->udp_encap) {
sa->udp_spec.hdr.dst_port =
sa->udp_spec.hdr.src_port =
sa->pattern[2].spec = &sa->udp_spec;
sa->pattern[3].spec = &sa->esp_spec;
} else {
sa->pattern[2].spec = &sa->esp_spec;
}
sa->action[0].conf = ips->security.ses;
sa->attr.egress = (sa->direction ==
sa->attr.ingress = (sa->direction ==
if (sa->attr.ingress) {
uint8_t rss_key[64];
};
uint16_t queue[RTE_MAX_QUEUES_PER_PORT];
unsigned int i;
unsigned int j;
if (flow_info_tbl[sa->portid].rx_def_flow)
return 0;
if (ret != 0) {
"Error during getting device (port %u) info: %s\n",
sa->portid, strerror(-ret));
return ret;
}
sa->action[1].conf = &action_rss;
&rss_conf);
if (ret != 0) {
"rte_eth_dev_rss_hash_conf_get:ret=%d\n",
ret);
return -1;
}
for (i = 0, j = 0; i < dev_info.nb_rx_queues; ++i)
.queue_num = j,
.key = rss_key,
};
sa->pattern, sa->action,
&err);
if (!ret)
goto flow_create;
sa->action[1].conf =
.index = 0,
};
sa->pattern, sa->action,
&err);
sa->action[1].conf = NULL;
sa->pattern, sa->action,
&err);
if (ret)
goto flow_create_failure;
} else if (sa->attr.egress &&
(ips->security.ol_flags &
sa->action[1].type =
sa->action[2].type =
}
flow_create:
&sa->attr, sa->pattern, sa->action, &err);
if (sa->flow == NULL) {
flow_create_failure:
"Failed to create ipsec flow msg: %s\n",
err.message);
return -1;
}
if (sec_ctx == NULL) {
"Ethernet device doesn't have security features registered\n");
return -1;
}
set_ipsec_conf(sa, &(sess_conf.ipsec));
&sess_conf, skt_ctx->session_pool);
if (ips->security.ses == NULL) {
"SEC Session init failed: err: %d\n", ret);
return -1;
}
if (sec_cap == NULL) {
"No capabilities registered\n");
return -1;
}
break;
sec_cap++;
}
"No suitable security capability found\n");
return -1;
}
ips->security.ol_flags = sec_cap->
ol_flags;
ips->security.ctx = sec_ctx;
}
return 0;
}
int
create_ipsec_esp_flow(struct ipsec_sa *sa)
{
int ret = 0;
"No Flow director rule for Egress traffic\n");
return -1;
}
if (sa->flags == TRANSPORT) {
"No Flow director rule for transport mode\n");
return -1;
}
.index = sa->fdir_qid,
};
sa->attr.egress = 0;
sa->attr.ingress = 1;
if (IS_IP6(sa->flags)) {
sa->pattern[1].spec = &sa->ipv6_spec;
memcpy(sa->ipv6_spec.hdr.dst_addr,
sa->dst.ip.ip6.ip6_b, sizeof(sa->dst.ip.ip6.ip6_b));
memcpy(sa->ipv6_spec.hdr.src_addr,
sa->src.ip.ip6.ip6_b, sizeof(sa->src.ip.ip6.ip6_b));
sa->pattern[2].spec = &sa->esp_spec;
} else if (IS_IP4(sa->flags)) {
sa->pattern[1].spec = &sa->ipv4_spec;
sa->ipv4_spec.hdr.dst_addr = sa->dst.ip.ip4;
sa->ipv4_spec.hdr.src_addr = sa->src.ip.ip4;
sa->pattern[2].spec = &sa->esp_spec;
}
&err);
if (ret < 0) {
return ret;
}
sa->action, &err);
if (!sa->flow) {
return -1;
}
return 0;
}
void
enqueue_cop_burst(struct cdev_qp *cqp)
{
uint32_t i, len, ret;
len = cqp->len;
if (ret < len) {
" enqueued %u crypto ops out of %u\n",
cqp->id, cqp->qp, ret, len);
for (i = ret; i < len; i++)
free_pkts(&cqp->buf[i]->sym->m_src, 1);
}
cqp->in_flight += ret;
cqp->len = 0;
}
static inline void
{
cqp->buf[cqp->len++] = cop;
if (cqp->len == MAX_PKT_BURST)
enqueue_cop_burst(cqp);
}
static inline void
ipsec_enqueue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx,
uint16_t nb_pkts)
{
int32_t ret = 0, i;
struct ipsec_mbuf_metadata *priv;
struct ipsec_sa *sa;
for (i = 0; i < nb_pkts; i++) {
free_pkts(&pkts[i], 1);
continue;
}
priv = get_priv(pkts[i]);
sa = ipsec_mask_saptr(sas[i]);
ips = ipsec_get_primary_session(
sa);
if (
unlikely(ips->security.ses == NULL)) {
free_pkts(&pkts[i], 1);
continue;
}
MBUF_PTYPE_TUNNEL_ESP_IN_UDP &&
free_pkts(&pkts[i], 1);
continue;
}
sym_cop = get_sym_cop(&priv->cop);
sym_cop->
m_src = pkts[i];
ips->security.ses);
break;
RTE_LOG(ERR, IPSEC,
"CPU crypto is not supported by the"
" legacy mode.");
free_pkts(&pkts[i], 1);
continue;
if (
unlikely(ips->crypto.ses == NULL)) {
free_pkts(&pkts[i], 1);
continue;
}
ips->crypto.ses);
ret = xform_func(pkts[i],
sa, &priv->cop);
free_pkts(&pkts[i], 1);
continue;
}
break;
RTE_ASSERT(ips->security.ses != NULL);
ipsec_ctx->ol_pkts[ipsec_ctx->ol_pkts_cnt++] = pkts[i];
if (ips->security.ol_flags &
ips->security.ctx, ips->security.ses,
pkts[i], NULL);
continue;
RTE_ASSERT(ips->security.ses != NULL);
ips->security.ses);
ret = xform_func(pkts[i],
sa, &priv->cop);
free_pkts(&pkts[i], 1);
continue;
}
ipsec_ctx->ol_pkts[ipsec_ctx->ol_pkts_cnt++] = pkts[i];
if (ips->security.ol_flags &
ips->security.ctx, ips->security.ses,
pkts[i], NULL);
continue;
}
RTE_ASSERT(
sa->cqp[ipsec_ctx->lcore_id] != NULL);
enqueue_cop(
sa->cqp[ipsec_ctx->lcore_id], &priv->cop);
}
}
static inline int32_t
ipsec_inline_dequeue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx,
struct rte_mbuf *pkts[], uint16_t max_pkts)
{
int32_t nb_pkts, ret;
struct ipsec_mbuf_metadata *priv;
struct ipsec_sa *sa;
nb_pkts = 0;
while (ipsec_ctx->ol_pkts_cnt > 0 && nb_pkts < max_pkts) {
pkt = ipsec_ctx->ol_pkts[--ipsec_ctx->ol_pkts_cnt];
priv = get_priv(pkt);
sa = priv->sa;
ret = xform_func(pkt, sa, &priv->cop);
free_pkts(&pkt, 1);
continue;
}
pkts[nb_pkts++] = pkt;
}
return nb_pkts;
}
static inline int
ipsec_dequeue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx,
struct rte_mbuf *pkts[], uint16_t max_pkts)
{
int32_t nb_pkts = 0, ret = 0, i, j, nb_cops;
struct ipsec_mbuf_metadata *priv;
struct ipsec_sa *sa;
for (i = 0; i < ipsec_ctx->nb_qps && nb_pkts < max_pkts; i++) {
struct cdev_qp *cqp;
cqp = &ipsec_ctx->tbl[ipsec_ctx->last_qp++];
if (ipsec_ctx->last_qp == ipsec_ctx->nb_qps)
ipsec_ctx->last_qp %= ipsec_ctx->nb_qps;
if (cqp->in_flight == 0)
continue;
cops, max_pkts - nb_pkts);
cqp->in_flight -= nb_cops;
for (j = 0; j < nb_cops; j++) {
priv = get_priv(pkt);
sa = priv->sa;
RTE_ASSERT(sa != NULL);
if (ipsec_get_action_type(sa) ==
ret = xform_func(pkt, sa, cops[j]);
free_pkts(&pkt, 1);
continue;
}
} else if (ipsec_get_action_type(sa) ==
if (cops[j]->status) {
free_pkts(&pkt, 1);
continue;
}
}
pkts[nb_pkts++] = pkt;
}
}
return nb_pkts;
}
uint16_t
ipsec_inbound(
struct ipsec_ctx *ctx,
struct rte_mbuf *pkts[],
uint16_t nb_pkts, uint16_t len)
{
void *sas[nb_pkts];
inbound_sa_lookup(ctx->sa_ctx, pkts, sas, nb_pkts);
ipsec_enqueue(esp_inbound, ctx, pkts, sas, nb_pkts);
return ipsec_inline_dequeue(esp_inbound_post, ctx, pkts, len);
}
uint16_t
ipsec_inbound_cqp_dequeue(
struct ipsec_ctx *ctx,
struct rte_mbuf *pkts[],
uint16_t len)
{
return ipsec_dequeue(esp_inbound_post, ctx, pkts, len);
}
uint16_t
ipsec_outbound(
struct ipsec_ctx *ctx,
struct rte_mbuf *pkts[],
uint32_t sa_idx[], uint16_t nb_pkts, uint16_t len)
{
void *sas[nb_pkts];
outbound_sa_lookup(ctx->sa_ctx, sa_idx, sas, nb_pkts);
ipsec_enqueue(esp_outbound, ctx, pkts, sas, nb_pkts);
return ipsec_inline_dequeue(esp_outbound_post, ctx, pkts, len);
}
uint16_t
ipsec_outbound_cqp_dequeue(
struct ipsec_ctx *ctx,
struct rte_mbuf *pkts[],
uint16_t len)
{
return ipsec_dequeue(esp_outbound_post, ctx, pkts, len);
}
static rte_be32_t rte_cpu_to_be_32(uint32_t x)
static rte_be16_t rte_cpu_to_be_16(uint16_t x)
static int rte_crypto_op_attach_sym_session(struct rte_crypto_op *op, void *sess)
@ RTE_CRYPTO_OP_SECURITY_SESSION
@ RTE_CRYPTO_OP_TYPE_SYMMETRIC
@ RTE_CRYPTO_OP_STATUS_NOT_PROCESSED
static uint16_t rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id, struct rte_crypto_op **ops, uint16_t nb_ops)
static uint16_t rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id, struct rte_crypto_op **ops, uint16_t nb_ops)
#define RTE_CRYPTODEV_FF_SYM_CPU_CRYPTO
void * rte_cryptodev_sym_session_create(uint8_t dev_id, struct rte_crypto_sym_xform *xforms, struct rte_mempool *mp)
void * rte_cryptodev_get_sec_ctx(uint8_t dev_id)
__rte_experimental int rte_cryptodev_session_event_mdata_set(uint8_t dev_id, void *sess, enum rte_crypto_op_type op_type, enum rte_crypto_op_sess_type sess_type, void *ev_mdata, uint16_t size)
void rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info)
int rte_eth_dev_rss_hash_conf_get(uint16_t port_id, struct rte_eth_rss_conf *rss_conf)
int rte_eth_dev_info_get(uint16_t port_id, struct rte_eth_dev_info *dev_info)
void * rte_eth_dev_get_sec_ctx(uint16_t port_id)
int rte_flow_validate(uint16_t port_id, const struct rte_flow_attr *attr, const struct rte_flow_item pattern[], const struct rte_flow_action actions[], struct rte_flow_error *error)
@ RTE_FLOW_ACTION_TYPE_PASSTHRU
@ RTE_FLOW_ACTION_TYPE_RSS
@ RTE_FLOW_ACTION_TYPE_QUEUE
@ RTE_FLOW_ACTION_TYPE_END
@ RTE_FLOW_ACTION_TYPE_SECURITY
static const struct rte_flow_item_ipv6 rte_flow_item_ipv6_mask
static const struct rte_flow_item_udp rte_flow_item_udp_mask
static const struct rte_flow_item_ipv4 rte_flow_item_ipv4_mask
static const struct rte_flow_item_esp rte_flow_item_esp_mask
struct rte_flow * rte_flow_create(uint16_t port_id, const struct rte_flow_attr *attr, const struct rte_flow_item pattern[], const struct rte_flow_action actions[], struct rte_flow_error *error)
@ RTE_FLOW_ITEM_TYPE_IPV4
@ RTE_FLOW_ITEM_TYPE_IPV6
int rte_hash_lookup_data(const struct rte_hash *h, const void *key, void **data)
#define RTE_LCORE_FOREACH(i)
#define RTE_LOG(l, t,...)
#define RTE_LOG_DP(l, t,...)
#define RTE_PTYPE_TUNNEL_MASK
#define RTE_PTYPE_L4_MASK
static void rte_prefetch0(const volatile void *p)
@ RTE_SECURITY_PROTOCOL_IPSEC
const struct rte_security_capability * rte_security_capabilities_get(struct rte_security_ctx *instance)
@ RTE_SECURITY_IPSEC_SA_PROTO_ESP
void * rte_security_session_create(struct rte_security_ctx *instance, struct rte_security_session_conf *conf, struct rte_mempool *mp)
@ RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO
@ RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL
@ RTE_SECURITY_ACTION_TYPE_LOOKASIDE_PROTOCOL
@ RTE_SECURITY_ACTION_TYPE_NONE
@ RTE_SECURITY_ACTION_TYPE_INLINE_CRYPTO
static int rte_security_attach_session(struct rte_crypto_op *op, void *sess)
@ RTE_SECURITY_IPSEC_SA_DIR_INGRESS
@ RTE_SECURITY_IPSEC_SA_DIR_EGRESS
@ RTE_SECURITY_IPSEC_SA_MODE_TUNNEL
@ RTE_SECURITY_IPSEC_SA_MODE_TRANSPORT
static int rte_security_set_pkt_metadata(struct rte_security_ctx *instance, void *sess, struct rte_mbuf *mb, void *params)
#define RTE_SECURITY_TX_OLOAD_NEED_MDATA
#define RTE_SECURITY_TX_HW_TRAILER_OFFLOAD
@ RTE_SECURITY_IPSEC_TUNNEL_IPV6
@ RTE_SECURITY_IPSEC_TUNNEL_IPV4
struct rte_crypto_sym_op sym[0]
enum rte_security_session_action_type type
enum rte_security_session_action_type action
enum rte_security_ipsec_sa_direction direction
struct rte_security_capability::@352::@354 ipsec
enum rte_security_session_protocol protocol
enum rte_security_ipsec_sa_mode mode
uint32_t ip_reassembly_en
struct rte_security_ipsec_tunnel_param::@332::@335 ipv6
enum rte_security_ipsec_tunnel_type type
struct rte_security_ipsec_tunnel_param::@332::@334 ipv4
enum rte_security_session_action_type action_type