2019-01-10 21:06:29 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2020-02-04 13:12:55 +00:00
|
|
|
* Copyright(c) 2018-2020 Intel Corporation
|
2019-01-10 21:06:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rte_ipsec.h>
|
|
|
|
#include "sa.h"
|
|
|
|
|
|
|
|
static int
|
|
|
|
session_check(struct rte_ipsec_session *ss)
|
|
|
|
{
|
|
|
|
if (ss == NULL || ss->sa == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2020-02-04 13:12:55 +00:00
|
|
|
if (ss->type == RTE_SECURITY_ACTION_TYPE_NONE ||
|
|
|
|
ss->type == RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO) {
|
2019-01-10 21:06:29 +00:00
|
|
|
if (ss->crypto.ses == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
} else {
|
|
|
|
if (ss->security.ses == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
if ((ss->type == RTE_SECURITY_ACTION_TYPE_INLINE_CRYPTO ||
|
|
|
|
ss->type ==
|
|
|
|
RTE_SECURITY_ACTION_TYPE_INLINE_PROTOCOL) &&
|
|
|
|
ss->security.ctx == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-29 11:58:52 +00:00
|
|
|
int
|
2019-01-10 21:06:29 +00:00
|
|
|
rte_ipsec_session_prepare(struct rte_ipsec_session *ss)
|
|
|
|
{
|
|
|
|
int32_t rc;
|
|
|
|
struct rte_ipsec_sa_pkt_func fp;
|
|
|
|
|
|
|
|
rc = session_check(ss);
|
|
|
|
if (rc != 0)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
rc = ipsec_sa_pkt_func_select(ss, ss->sa, &fp);
|
|
|
|
if (rc != 0)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
ss->pkt_func = fp;
|
|
|
|
|
|
|
|
if (ss->type == RTE_SECURITY_ACTION_TYPE_NONE)
|
|
|
|
ss->crypto.ses->opaque_data = (uintptr_t)ss;
|
|
|
|
else
|
|
|
|
ss->security.ses->opaque_data = (uintptr_t)ss;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|