28 #define ESP_NODE "dpdk-esp-encrypt" 31 #define ESP_NODE "esp-encrypt" 66 return VNET_API_ERROR_SYSCALL_ERROR_1;
72 return VNET_API_ERROR_SYSCALL_ERROR_1;
84 sw_if_index, spd_id, spd_index);
94 is_add, &config,
sizeof (config));
96 is_add, &config,
sizeof (config));
111 return VNET_API_ERROR_INVALID_VALUE;
113 return VNET_API_ERROR_INVALID_VALUE;
120 return VNET_API_ERROR_INVALID_VALUE;
124 ipsec_set_interface_spd(vm, k, spd_id, 0);
138 memset (spd, 0,
sizeof (*spd));
139 spd_index = spd - im->
spds;
157 p1 = pool_elt_at_index(spd->policies, *id1);
158 p2 = pool_elt_at_index(spd->policies, *id2);
160 return p2->priority - p1->priority;
176 clib_warning (
"policy-id %u priority %d is_outbound %u", policy->
id,
179 if (policy->
policy == IPSEC_POLICY_ACTION_PROTECT)
183 return VNET_API_ERROR_SYSCALL_ERROR_1;
190 return VNET_API_ERROR_SYSCALL_ERROR_1;
195 return VNET_API_ERROR_SYSCALL_ERROR_1;
226 if (policy->
policy == IPSEC_POLICY_ACTION_PROTECT)
248 if (policy->
policy == IPSEC_POLICY_ACTION_PROTECT)
276 vp = pool_elt_at_index(spd->policies, i);
277 if (vp->priority != policy->priority)
279 if (vp->is_outbound != policy->is_outbound)
281 if (vp->policy != policy->policy)
283 if (vp->sa_id != policy->sa_id)
285 if (vp->protocol != policy->protocol)
287 if (vp->lport.start != policy->lport.start)
289 if (vp->lport.stop != policy->lport.stop)
291 if (vp->rport.start != policy->rport.start)
293 if (vp->rport.stop != policy->rport.stop)
295 if (vp->is_ipv6 != policy->is_ipv6)
299 if (vp->laddr.start.ip6.as_u64[0] != policy->laddr.start.ip6.as_u64[0])
301 if (vp->laddr.start.ip6.as_u64[1] != policy->laddr.start.ip6.as_u64[1])
303 if (vp->laddr.stop.ip6.as_u64[0] != policy->laddr.stop.ip6.as_u64[0])
305 if (vp->laddr.stop.ip6.as_u64[1] != policy->laddr.stop.ip6.as_u64[1])
307 if (vp->raddr.start.ip6.as_u64[0] != policy->raddr.start.ip6.as_u64[0])
309 if (vp->raddr.start.ip6.as_u64[1] != policy->raddr.start.ip6.as_u64[1])
311 if (vp->raddr.stop.ip6.as_u64[0] != policy->raddr.stop.ip6.as_u64[0])
313 if (vp->laddr.stop.ip6.as_u64[1] != policy->laddr.stop.ip6.as_u64[1])
315 if (policy->is_outbound)
317 vec_foreach_index(j, spd->ipv6_outbound_policies) {
318 if (vec_elt(spd->ipv6_outbound_policies, j) == i) {
319 vec_del1 (spd->ipv6_outbound_policies, j);
326 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
328 vec_foreach_index(j, spd->ipv6_inbound_protect_policy_indices) {
329 if (vec_elt(spd->ipv6_inbound_protect_policy_indices, j) == i) {
330 vec_del1 (spd->ipv6_inbound_protect_policy_indices, j);
337 vec_foreach_index(j, spd->ipv6_inbound_policy_discard_and_bypass_indices) {
338 if (vec_elt(spd->ipv6_inbound_policy_discard_and_bypass_indices, j) == i) {
339 vec_del1 (spd->ipv6_inbound_policy_discard_and_bypass_indices, j);
348 if (vp->laddr.start.ip4.as_u32 != policy->laddr.start.ip4.as_u32)
350 if (vp->laddr.stop.ip4.as_u32 != policy->laddr.stop.ip4.as_u32)
352 if (vp->raddr.start.ip4.as_u32 != policy->raddr.start.ip4.as_u32)
354 if (vp->raddr.stop.ip4.as_u32 != policy->raddr.stop.ip4.as_u32)
356 if (policy->is_outbound)
358 vec_foreach_index(j, spd->ipv4_outbound_policies) {
359 if (vec_elt(spd->ipv4_outbound_policies, j) == i) {
360 vec_del1 (spd->ipv4_outbound_policies, j);
367 if (policy->policy == IPSEC_POLICY_ACTION_PROTECT)
369 vec_foreach_index(j, spd->ipv4_inbound_protect_policy_indices) {
370 if (vec_elt(spd->ipv4_inbound_protect_policy_indices, j) == i) {
371 vec_del1 (spd->ipv4_inbound_protect_policy_indices, j);
378 vec_foreach_index(j, spd->ipv4_inbound_policy_discard_and_bypass_indices) {
379 if (vec_elt(spd->ipv4_inbound_policy_discard_and_bypass_indices, j) == i) {
380 vec_del1 (spd->ipv4_inbound_policy_discard_and_bypass_indices, j);
406 pool_foreach(p, spd->policies, ({
407 if (p->policy == IPSEC_POLICY_ACTION_PROTECT)
409 if (p->sa_index == sa_index)
416 if (t->input_sa_index == sa_index)
418 if (t->output_sa_index == sa_index)
438 return VNET_API_ERROR_SYSCALL_ERROR_1;
440 return VNET_API_ERROR_SYSCALL_ERROR_1;
449 return VNET_API_ERROR_SYSCALL_ERROR_1;
459 sa_index = sa - im->
sad;
462 return VNET_API_ERROR_SYSCALL_ERROR_1;
477 return VNET_API_ERROR_SYSCALL_ERROR_1;
501 return VNET_API_ERROR_SYSCALL_ERROR_1;
517 seed_data.time = time (
NULL);
518 seed_data.pid = getpid ();
519 seed_data.p = (
void *) &seed_data;
521 RAND_seed ((
const void *) &seed_data,
sizeof (seed_data));
534 memset (im, 0,
sizeof (im[0]));
static u8 ipsec_is_sa_used(u32 sa_index)
u32 * ipv6_inbound_protect_policy_indices
#define hash_set(h, key, value)
u32 * ipv4_inbound_protect_policy_indices
sll srl srl sll sra u16x4 i
#define hash_unset(h, key)
int ipsec_set_interface_spd(vlib_main_t *vm, u32 sw_if_index, u32 spd_id, int is_add)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
u32 * ipv4_outbound_policies
int ipsec_set_sa_key(vlib_main_t *vm, ipsec_sa_t *sa_update)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
uword * spd_index_by_sw_if_index
clib_error_t * ipsec_tunnel_if_init(vlib_main_t *vm)
vnet_main_t * vnet_get_main(void)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
static clib_error_t * ipsec_init(vlib_main_t *vm)
#define VLIB_INIT_FUNCTION(x)
#define hash_foreach(key_var, value_var, h, body)
u32 ipsec_get_sa_index_by_sa_id(u32 sa_id)
#define clib_warning(format, args...)
#define vlib_call_init_function(vm, x)
ipsec_policy_t * policies
u32 ip4_lookup_node_index
u32 error_drop_node_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static void ipsec_rand_seed(void)
#define pool_put(P, E)
Free an object E in pool P.
static int ipsec_spd_entry_sort(void *a1, void *a2)
int ipsec_add_del_policy(vlib_main_t *vm, ipsec_policy_t *policy, int is_add)
uword * spd_index_by_spd_id
#define pool_free(p)
Free a pool.
u32 esp_encrypt_node_index
clib_error_t * ipsec_cli_init(vlib_main_t *vm)
#define vec_free(V)
Free vector's memory (no header).
static vlib_thread_main_t * vlib_get_thread_main()
#define clib_memcpy(a, b, c)
uword * sa_index_by_sa_id
#define hash_create(elts, value_bytes)
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
int ipsec_add_del_sa(vlib_main_t *vm, ipsec_sa_t *new_sa, int is_add)
u32 * ipv4_inbound_policy_discard_and_bypass_indices
u32 * ipv6_inbound_policy_discard_and_bypass_indices
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
int ipsec_add_del_spd(vlib_main_t *vm, u32 spd_id, int is_add)
static int add_del_sa_sess(u32 sa_index, u8 is_add)
u32 * ipv6_outbound_policies
clib_error_t * ikev2_init(vlib_main_t *vm)
#define pool_foreach_index(i, v, body)
Iterate pool by index.
#define CLIB_CACHE_LINE_BYTES
int vnet_feature_enable_disable(const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)