FD.io VPP  v21.01.1
Vector Packet Processing
ipsec_sa.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <vnet/ipsec/ipsec.h>
17 #include <vnet/ipsec/esp.h>
18 #include <vnet/udp/udp_local.h>
19 #include <vnet/fib/fib_table.h>
21 #include <vnet/ipsec/ipsec_tun.h>
22 
23 /**
24  * @brief
25  * SA packet & bytes counters
26  */
27 vlib_combined_counter_main_t ipsec_sa_counters = {
28  .name = "SA",
29  .stat_segment_name = "/net/ipsec/sa",
30 };
31 
32 
33 static clib_error_t *
35  u32 sa_index, int is_add)
36 {
39  switch (sa->protocol)
40  {
41  case IPSEC_PROTOCOL_AH:
43  if (ab->add_del_sa_sess_cb)
44  return ab->add_del_sa_sess_cb (sa_index, is_add);
45  break;
46  case IPSEC_PROTOCOL_ESP:
48  if (eb->add_del_sa_sess_cb)
49  return eb->add_del_sa_sess_cb (sa_index, is_add);
50  break;
51  }
52  return 0;
53 }
54 
55 void
57 {
58  memset (key, 0, sizeof (*key));
59 
60  if (len > sizeof (key->data))
61  key->len = sizeof (key->data);
62  else
63  key->len = len;
64 
65  memcpy (key->data, data, key->len);
66 }
67 
68 /**
69  * 'stack' (resolve the recursion for) the SA tunnel destination
70  */
71 static void
73 {
74  ipsec_main_t *im = &ipsec_main;
76  dpo_id_t tmp = DPO_INVALID;
77 
78  fct =
79  fib_forw_chain_type_from_fib_proto ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
82 
84 
85  if (IPSEC_PROTOCOL_AH == sa->protocol)
86  dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
88  im->ah4_encrypt_node_index), &sa->dpo, &tmp);
89  else
90  dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
92  im->esp4_encrypt_node_index), &sa->dpo, &tmp);
93  dpo_reset (&tmp);
94 }
95 
96 void
97 ipsec_sa_set_crypto_alg (ipsec_sa_t * sa, ipsec_crypto_alg_t crypto_alg)
98 {
99  ipsec_main_t *im = &ipsec_main;
100  sa->crypto_alg = crypto_alg;
101  sa->crypto_iv_size = im->crypto_algs[crypto_alg].iv_size;
102  sa->esp_block_align = clib_max (4, im->crypto_algs[crypto_alg].block_align);
103  sa->sync_op_data.crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id;
104  sa->sync_op_data.crypto_dec_op_id = im->crypto_algs[crypto_alg].dec_op_id;
105  sa->crypto_calg = im->crypto_algs[crypto_alg].alg;
108  if (IPSEC_CRYPTO_ALG_IS_GCM (crypto_alg))
109  {
110  sa->integ_icv_size = im->crypto_algs[crypto_alg].icv_size;
111  ipsec_sa_set_IS_AEAD (sa);
112  }
113 }
114 
115 void
116 ipsec_sa_set_integ_alg (ipsec_sa_t * sa, ipsec_integ_alg_t integ_alg)
117 {
118  ipsec_main_t *im = &ipsec_main;
119  sa->integ_alg = integ_alg;
122  sa->integ_calg = im->integ_algs[integ_alg].alg;
124 }
125 
126 void
128 {
129  /* *INDENT-OFF* */
130  if (ipsec_sa_is_set_USE_ESN (sa))
131  {
132 #define _(n, s, k) \
133  if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
134  sa->async_op_data.crypto_async_enc_op_id = \
135  VNET_CRYPTO_OP_##n##_TAG16_AAD12_ENC; \
136  if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
137  sa->async_op_data.crypto_async_dec_op_id = \
138  VNET_CRYPTO_OP_##n##_TAG16_AAD12_DEC;
140 #undef _
141  }
142  else
143  {
144 #define _(n, s, k) \
145  if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##n##_ENC ) \
146  sa->async_op_data.crypto_async_enc_op_id = \
147  VNET_CRYPTO_OP_##n##_TAG16_AAD8_ENC; \
148  if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##n##_DEC ) \
149  sa->async_op_data.crypto_async_dec_op_id = \
150  VNET_CRYPTO_OP_##n##_TAG16_AAD8_DEC;
152 #undef _
153  }
154 
155 #define _(c, h, s, k ,d) \
156  if( sa->sync_op_data.crypto_enc_op_id == VNET_CRYPTO_OP_##c##_ENC && \
157  sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
158  sa->async_op_data.crypto_async_enc_op_id = \
159  VNET_CRYPTO_OP_##c##_##h##_TAG##d##_ENC; \
160  if( sa->sync_op_data.crypto_dec_op_id == VNET_CRYPTO_OP_##c##_DEC && \
161  sa->sync_op_data.integ_op_id == VNET_CRYPTO_OP_##h##_HMAC) \
162  sa->async_op_data.crypto_async_dec_op_id = \
163  VNET_CRYPTO_OP_##c##_##h##_TAG##d##_DEC;
165 #undef _
166  /* *INDENT-ON* */
167 }
168 
169 int
171  u32 spi,
172  ipsec_protocol_t proto,
173  ipsec_crypto_alg_t crypto_alg,
174  const ipsec_key_t * ck,
175  ipsec_integ_alg_t integ_alg,
176  const ipsec_key_t * ik,
179  u32 salt,
180  const ip46_address_t * tun_src,
181  const ip46_address_t * tun_dst,
183  ip_dscp_t dscp,
184  u32 * sa_out_index, u16 src_port, u16 dst_port)
185 {
187  ipsec_main_t *im = &ipsec_main;
188  clib_error_t *err;
189  ipsec_sa_t *sa;
190  u32 sa_index;
191  uword *p;
192 
193  p = hash_get (im->sa_index_by_sa_id, id);
194  if (p)
195  return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
196 
198 
200  fib_node_lock (&sa->node);
201  sa_index = sa - im->sad;
202 
203  vlib_validate_combined_counter (&ipsec_sa_counters, sa_index);
204  vlib_zero_combined_counter (&ipsec_sa_counters, sa_index);
205 
206  sa->id = id;
207  sa->spi = spi;
208  sa->stat_index = sa_index;
209  sa->protocol = proto;
210  sa->flags = flags;
212  sa->dscp = dscp;
213  sa->salt = salt;
214  sa->encrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
215  sa->decrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
216  if (integ_alg != IPSEC_INTEG_ALG_NONE)
217  {
218  ipsec_sa_set_integ_alg (sa, integ_alg);
219  clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key));
220  }
221  ipsec_sa_set_crypto_alg (sa, crypto_alg);
223 
224  clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key));
225  ip46_address_copy (&sa->tunnel_src_addr, tun_src);
226  ip46_address_copy (&sa->tunnel_dst_addr, tun_dst);
227 
229  im->crypto_algs[crypto_alg].alg,
230  (u8 *) ck->data, ck->len);
231  if (~0 == sa->crypto_key_index)
232  {
233  pool_put (im->sad, sa);
234  return VNET_API_ERROR_KEY_LENGTH;
235  }
236 
237  if (integ_alg != IPSEC_INTEG_ALG_NONE)
238  {
240  im->
241  integ_algs[integ_alg].alg,
242  (u8 *) ik->data, ik->len);
243  if (~0 == sa->integ_key_index)
244  {
245  pool_put (im->sad, sa);
246  return VNET_API_ERROR_KEY_LENGTH;
247  }
248  }
249 
251  !ipsec_sa_is_set_IS_AEAD (sa))
252  { //AES-CBC & HMAC
255  sa->integ_key_index);
256  }
257 
258  if (im->async_mode)
260  else
261  sa->crypto_op_data = sa->sync_op_data.data;
262 
263  err = ipsec_check_support_cb (im, sa);
264  if (err)
265  {
266  clib_warning ("%s", err->what);
267  pool_put (im->sad, sa);
268  return VNET_API_ERROR_UNIMPLEMENTED;
269  }
270 
271  err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1);
272  if (err)
273  {
274  pool_put (im->sad, sa);
275  return VNET_API_ERROR_SYSCALL_ERROR_1;
276  }
277 
278  if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
279  {
280  fib_protocol_t fproto = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
282  fib_prefix_t pfx = {
283  .fp_addr = sa->tunnel_dst_addr,
284  .fp_len = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? 128 : 32),
285  .fp_proto = fproto,
286  };
287  sa->tx_fib_index = fib_table_find (fproto, tx_table_id);
288  if (sa->tx_fib_index == ~((u32) 0))
289  {
290  pool_put (im->sad, sa);
291  return VNET_API_ERROR_NO_SUCH_FIB;
292  }
293 
295  &pfx,
297  sa_index, &sa->sibling);
298  ipsec_sa_stack (sa);
299 
300  /* generate header templates */
301  if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa))
302  {
305 
306  sa->ip6_hdr.hop_limit = 254;
307  sa->ip6_hdr.src_address.as_u64[0] =
308  sa->tunnel_src_addr.ip6.as_u64[0];
309  sa->ip6_hdr.src_address.as_u64[1] =
310  sa->tunnel_src_addr.ip6.as_u64[1];
311  sa->ip6_hdr.dst_address.as_u64[0] =
312  sa->tunnel_dst_addr.ip6.as_u64[0];
313  sa->ip6_hdr.dst_address.as_u64[1] =
314  sa->tunnel_dst_addr.ip6.as_u64[1];
315  if (ipsec_sa_is_set_UDP_ENCAP (sa))
316  sa->ip6_hdr.protocol = IP_PROTOCOL_UDP;
317  else
318  sa->ip6_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
319  }
320  else
321  {
323  sa->ip4_hdr.ttl = 254;
324  sa->ip4_hdr.src_address.as_u32 = sa->tunnel_src_addr.ip4.as_u32;
325  sa->ip4_hdr.dst_address.as_u32 = sa->tunnel_dst_addr.ip4.as_u32;
326  sa->ip4_hdr.tos = sa->dscp << 2;
327 
328  if (ipsec_sa_is_set_UDP_ENCAP (sa))
329  sa->ip4_hdr.protocol = IP_PROTOCOL_UDP;
330  else
331  sa->ip4_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
333  }
334  }
335 
336  if (ipsec_sa_is_set_UDP_ENCAP (sa))
337  {
338  if (dst_port == IPSEC_UDP_PORT_NONE)
339  sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
340  else
341  sa->udp_hdr.dst_port = clib_host_to_net_u16 (dst_port);
342 
343  if (src_port == IPSEC_UDP_PORT_NONE)
344  sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
345  else
346  sa->udp_hdr.src_port = clib_host_to_net_u16 (src_port);
347 
348  if (ipsec_sa_is_set_IS_INBOUND (sa))
349  ipsec_register_udp_port (clib_host_to_net_u16 (sa->udp_hdr.dst_port));
350  }
351 
352  hash_set (im->sa_index_by_sa_id, sa->id, sa_index);
353 
354  if (sa_out_index)
355  *sa_out_index = sa_index;
356 
357  return (0);
358 }
359 
360 static void
362 {
364  ipsec_main_t *im = &ipsec_main;
365  u32 sa_index;
366 
367  sa_index = sa - im->sad;
368  hash_unset (im->sa_index_by_sa_id, sa->id);
369 
370  /* no recovery possible when deleting an SA */
371  (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0);
372 
373  if (ipsec_sa_is_set_UDP_ENCAP (sa) && ipsec_sa_is_set_IS_INBOUND (sa))
374  ipsec_unregister_udp_port (clib_net_to_host_u16 (sa->udp_hdr.dst_port));
375 
376  if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
377  {
379  dpo_reset (&sa->dpo);
380  }
382  if (sa->integ_alg != IPSEC_INTEG_ALG_NONE)
384  pool_put (im->sad, sa);
385 }
386 
387 void
389 {
390  ipsec_main_t *im = &ipsec_main;
391  ipsec_sa_t *sa;
392 
393  if (INDEX_INVALID == sai)
394  return;
395 
396  sa = pool_elt_at_index (im->sad, sai);
397 
398  fib_node_unlock (&sa->node);
399 }
400 
401 void
403 {
404  ipsec_main_t *im = &ipsec_main;
405  ipsec_sa_t *sa;
406 
407  if (INDEX_INVALID == sai)
408  return;
409 
410  sa = pool_elt_at_index (im->sad, sai);
411 
412  fib_node_lock (&sa->node);
413 }
414 
415 index_t
417 {
418  ipsec_main_t *im = &ipsec_main;
419  ipsec_sa_t *sa;
420  uword *p;
421 
422  p = hash_get (im->sa_index_by_sa_id, id);
423 
424  if (!p)
425  return INDEX_INVALID;
426 
427  sa = pool_elt_at_index (im->sad, p[0]);
428 
429  fib_node_lock (&sa->node);
430 
431  return (p[0]);
432 }
433 
434 int
436 {
437  ipsec_main_t *im = &ipsec_main;
438  uword *p;
439 
440  p = hash_get (im->sa_index_by_sa_id, id);
441 
442  if (!p)
443  return VNET_API_ERROR_NO_SUCH_ENTRY;
444 
445  ipsec_sa_unlock (p[0]);
446 
447  return (0);
448 }
449 
450 void
452 {
453  vlib_zero_combined_counter (&ipsec_sa_counters, sai);
454 }
455 
456 void
458 {
459  ipsec_main_t *im = &ipsec_main;
460  ipsec_sa_t *sa;
461 
462  /* *INDENT-OFF* */
463  pool_foreach (sa, im->sad)
464  {
465  if (WALK_CONTINUE != cb(sa, ctx))
466  break;
467  }
468  /* *INDENT-ON* */
469 }
470 
471 /**
472  * Function definition to get a FIB node from its index
473  */
474 static fib_node_t *
476 {
477  ipsec_main_t *im;
478  ipsec_sa_t *sa;
479 
480  im = &ipsec_main;
481  sa = pool_elt_at_index (im->sad, index);
482 
483  return (&sa->node);
484 }
485 
486 static ipsec_sa_t *
488 {
490  return ((ipsec_sa_t *) (((char *) node) -
491  STRUCT_OFFSET_OF (ipsec_sa_t, node)));
492 
493 }
494 
495 /**
496  * Function definition to inform the FIB node that its last lock has gone.
497  */
498 static void
500 {
501  /*
502  * The ipsec SA is a root of the graph. As such
503  * it never has children and thus is never locked.
504  */
506 }
507 
508 /**
509  * Function definition to backwalk a FIB node
510  */
513 {
515 
517 }
518 
519 /*
520  * Virtual function table registered by SAs
521  * for participation in the FIB object graph.
522  */
523 const static fib_node_vft_t ipsec_sa_vft = {
525  .fnv_last_lock = ipsec_sa_last_lock_gone,
526  .fnv_back_walk = ipsec_sa_back_walk,
527 };
528 
529 /* force inclusion from application's main.c */
530 clib_error_t *
532 {
534 
535  return 0;
536 }
537 
539 
540 /*
541  * fd.io coding-style-patch-verification: ON
542  *
543  * Local Variables:
544  * eval: (c-set-style "gnu")
545  * End:
546  */
void dpo_stack_from_node(u32 child_node_index, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child parent relationship.
Definition: dpo.c:536
fib_node_index_t fib_entry_track(u32 fib_index, const fib_prefix_t *prefix, fib_node_type_t child_type, index_t child_index, u32 *sibling)
Trackers are used on FIB entries by objects that which to track the changing state of the entry...
union ipsec_sa_t::@454 async_op_data
static void ipsec_sa_last_lock_gone(fib_node_t *node)
Function definition to inform the FIB node that its last lock has gone.
Definition: ipsec_sa.c:499
fib_node_t node
Definition: ipsec_sa.h:200
#define hash_set(h, key, value)
Definition: hash.h:255
int ipsec_sa_add_and_lock(u32 id, u32 spi, ipsec_protocol_t proto, ipsec_crypto_alg_t crypto_alg, const ipsec_key_t *ck, ipsec_integ_alg_t integ_alg, const ipsec_key_t *ik, ipsec_sa_flags_t flags, u32 tx_table_id, u32 salt, const ip46_address_t *tun_src, const ip46_address_t *tun_dst, tunnel_encap_decap_flags_t tunnel_flags, ip_dscp_t dscp, u32 *sa_out_index, u16 src_port, u16 dst_port)
Definition: ipsec_sa.c:170
ipsec_main_crypto_alg_t * crypto_algs
Definition: ipsec.h:184
vl_api_tunnel_encap_decap_flags_t tunnel_flags
#define foreach_crypto_link_async_alg
Definition: crypto.h:87
ip46_address_t tunnel_src_addr
Definition: ipsec_sa.h:197
void vlib_validate_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
validate a combined counter
Definition: counter.c:108
#define hash_unset(h, key)
Definition: hash.h:261
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
ip4_address_t src_address
Definition: ip4_packet.h:125
void ipsec_unregister_udp_port(u16 port)
Definition: ipsec.c:139
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:527
ip_dscp_t dscp
Definition: ipsec_sa.h:168
void fib_node_init(fib_node_t *node, fib_node_type_t type)
Definition: fib_node.c:185
vl_api_ip_port_and_mask_t dst_port
Definition: flow_types.api:92
enum fib_node_back_walk_rc_t_ fib_node_back_walk_rc_t
Return code from a back walk function.
void fib_entry_contribute_forwarding(fib_node_index_t fib_entry_index, fib_forward_chain_type_t fct, dpo_id_t *dpo)
Definition: fib_entry.c:437
ipsec_key_t crypto_key
Definition: ipsec_sa.h:217
static void ipsec_sa_del(ipsec_sa_t *sa)
Definition: ipsec_sa.c:361
ipsec_integ_alg_t integ_alg
Definition: ipsec_sa.h:214
void ipsec_sa_lock(index_t sai)
Definition: ipsec_sa.c:402
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
void ipsec_sa_clear(index_t sai)
Definition: ipsec_sa.c:451
u32 tx_table_id
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:70
vlib_main_t * vm
Definition: in2out_ed.c:1580
u32 ah_current_backend
Definition: ipsec.h:175
u32 esp_current_backend
Definition: ipsec.h:177
vnet_crypto_op_id_t integ_op_id
Definition: ipsec_sa.h:140
void ipsec_mk_key(ipsec_key_t *key, const u8 *data, u8 len)
Definition: ipsec_sa.c:56
ip6_address_t src_address
Definition: ip6_packet.h:310
unsigned char u8
Definition: types.h:56
u8 data[128]
Definition: ipsec_types.api:90
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
u8 id[64]
Definition: dhcp.api:160
void fib_node_register_type(fib_node_type_t type, const fib_node_vft_t *vft)
fib_node_register_type
Definition: fib_node.c:60
#define clib_memcpy(d, s, n)
Definition: string.h:180
vnet_crypto_key_index_t linked_key_index
Definition: ipsec_sa.h:147
vnet_crypto_alg_t alg
Definition: ipsec.h:92
vnet_crypto_key_index_t crypto_key_index
Definition: ipsec_sa.h:129
walk_rc_t(* ipsec_sa_walk_cb_t)(ipsec_sa_t *sa, void *ctx)
Definition: ipsec_sa.h:277
static ipsec_sa_t * ipsec_sa_from_fib_node(fib_node_t *node)
Definition: ipsec_sa.c:487
void ipsec_sa_walk(ipsec_sa_walk_cb_t cb, void *ctx)
Definition: ipsec_sa.c:457
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
#define foreach_crypto_aead_alg
Definition: crypto.h:35
ipsec_main_t ipsec_main
Definition: ipsec.c:28
ip4_address_t dst_address
Definition: ip4_packet.h:125
void ipsec_register_udp_port(u16 port)
Definition: ipsec.c:164
u32 esp6_encrypt_node_index
Definition: ipsec.h:144
tunnel_encap_decap_flags_t tunnel_flags
Definition: ipsec_sa.h:167
Aggregate type for a prefix.
Definition: fib_types.h:202
int ipsec_sa_unlock_id(u32 id)
Definition: ipsec_sa.c:435
u32 salt
unsigned int u32
Definition: types.h:88
#define IPSEC_CRYPTO_ALG_IS_GCM(_alg)
Definition: ipsec_sa.h:46
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1106
ipsec_sa_flags_t flags
Definition: ipsec_sa.h:114
u32 vnet_crypto_key_add(vlib_main_t *vm, vnet_crypto_alg_t alg, u8 *data, u16 length)
Definition: crypto.c:345
u32 stat_index
Definition: ipsec_sa.h:204
vl_api_ip_dscp_t dscp
Definition: dhcp.api:163
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
#define ESP_MAX_IV_SIZE
Definition: esp.h:77
#define hash_get(h, key)
Definition: hash.h:249
u32 encrypt_thread_index
Definition: ipsec_sa.h:119
u32 tx_fib_index
Definition: ipsec_sa.h:210
#define ESP_MAX_ICV_SIZE
Definition: esp.h:78
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
static void vlib_zero_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
Clear a combined counter Clears the set of per-thread counters.
Definition: counter.h:304
static_always_inline void ip46_address_copy(ip46_address_t *dst, const ip46_address_t *src)
Definition: ip46_address.h:123
index_t ipsec_sa_find_and_lock(u32 id)
Definition: ipsec_sa.c:416
u8 integ_alg
Definition: ikev2_types.api:59
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:225
vl_api_ip_proto_t proto
Definition: acl_types.api:51
void fib_node_lock(fib_node_t *node)
Definition: fib_node.c:203
long ctx[MAX_CONNS]
Definition: main.c:144
u32 esp4_encrypt_node_index
Definition: ipsec.h:138
u32 salt
Definition: ipsec_sa.h:164
clib_error_t * ipsec_check_support_cb(ipsec_main_t *im, ipsec_sa_t *sa)
Definition: ipsec.c:91
vnet_crypto_op_id_t enc_op_id
Definition: ipsec.h:81
unsigned short u16
Definition: types.h:57
void vnet_crypto_key_del(vlib_main_t *vm, vnet_crypto_key_index_t index)
Definition: crypto.c:371
fib_node_index_t fib_entry_index
Definition: ipsec_sa.h:208
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:301
static clib_error_t * ipsec_call_add_del_callbacks(ipsec_main_t *im, ipsec_sa_t *sa, u32 sa_index, int is_add)
Definition: ipsec_sa.c:34
#define pool_get_aligned_zero(P, E, A)
Allocate an object E from a pool P with alignment A and zero it.
Definition: pool.h:248
fib_node_type_t fn_type
The node&#39;s type.
Definition: fib_node.h:299
An node in the FIB graph.
Definition: fib_node.h:295
void fib_node_unlock(fib_node_t *node)
Definition: fib_node.c:209
enum tunnel_encap_decap_flags_t_ tunnel_encap_decap_flags_t
static_always_inline void ip6_set_dscp_network_order(ip6_header_t *ip6, ip_dscp_t dscp)
Definition: ip6_packet.h:356
u8 len
Definition: ip_types.api:103
ip46_address_t tunnel_dst_addr
Definition: ipsec_sa.h:198
vl_api_ip_port_and_mask_t src_port
Definition: flow_types.api:91
void ipsec_sa_set_integ_alg(ipsec_sa_t *sa, ipsec_integ_alg_t integ_alg)
Definition: ipsec_sa.c:116
u8 esp_block_align
Definition: ipsec_sa.h:117
ipsec_ah_backend_t * ah_backends
Definition: ipsec.h:171
static fib_node_t * ipsec_sa_fib_node_get(fib_node_index_t index)
Function definition to get a FIB node from its index.
Definition: ipsec_sa.c:475
void ipsec_sa_set_async_op_ids(ipsec_sa_t *sa)
Definition: ipsec_sa.c:127
static fib_node_back_walk_rc_t ipsec_sa_back_walk(fib_node_t *node, fib_node_back_walk_ctx_t *ctx)
Function definition to backwalk a FIB node.
Definition: ipsec_sa.c:512
u64 data
Definition: ipsec_sa.h:183
#define clib_warning(format, args...)
Definition: error.h:59
fib_node_get_t fnv_get
Definition: fib_node.h:283
udp_header_t udp_hdr
Definition: ipsec_sa.h:161
enum ipsec_sad_flags_t_ ipsec_sa_flags_t
uword * sa_index_by_sa_id
Definition: ipsec.h:127
u32 spi
Definition: flow_types.api:140
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:29
#define ESP_MAX_BLOCK_SIZE
Definition: esp.h:76
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1580
void ipsec_sa_unlock(index_t sai)
Definition: ipsec_sa.c:388
Context passed between object during a back walk.
Definition: fib_node.h:208
void ipsec_sa_set_crypto_alg(ipsec_sa_t *sa, ipsec_crypto_alg_t crypto_alg)
Definition: ipsec_sa.c:97
u8 data[IPSEC_KEY_MAX_LEN]
Definition: ipsec_sa.h:78
vnet_crypto_op_id_t op_id
Definition: ipsec.h:91
#define ASSERT(truth)
void fib_entry_untrack(fib_node_index_t fei, u32 sibling)
Stop tracking a FIB entry.
u32 ah4_encrypt_node_index
Definition: ipsec.h:142
ipsec_main_integ_alg_t * integ_algs
Definition: ipsec.h:187
u64 crypto_op_data
Definition: ipsec_sa.h:150
enum ip_dscp_t_ ip_dscp_t
ip_dscp_t tos
Definition: ip4_packet.h:96
ip6_header_t ip6_hdr
Definition: ipsec_sa.h:159
ipsec_sa_t * sad
Definition: ipsec.h:111
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
static void ipsec_sa_stack(ipsec_sa_t *sa)
&#39;stack&#39; (resolve the recursion for) the SA tunnel destination
Definition: ipsec_sa.c:72
ipsec_protocol_t protocol
Definition: ipsec_sa.h:166
u32 sibling
Definition: ipsec_sa.h:209
vnet_crypto_key_index_t integ_key_index
Definition: ipsec_sa.h:130
vnet_crypto_alg_t integ_calg
Definition: ipsec_sa.h:205
add_del_sa_sess_cb_t add_del_sa_sess_cb
Definition: ipsec.h:58
vnet_crypto_op_id_t dec_op_id
Definition: ipsec.h:82
#define clib_max(x, y)
Definition: clib.h:321
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
vnet_crypto_alg_t crypto_calg
Definition: ipsec_sa.h:206
typedef key
Definition: ipsec_types.api:86
u32 vnet_crypto_key_add_linked(vlib_main_t *vm, vnet_crypto_key_index_t index_crypto, vnet_crypto_key_index_t index_integ)
Use 2 created keys to generate new key for linked algs (cipher + integ) The returned key index is to ...
Definition: crypto.c:410
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:297
u32 ah6_encrypt_node_index
Definition: ipsec.h:148
#define INDEX_INVALID
Invalid index - used when no index is known blazoned capitals INVALID speak volumes where ~0 does not...
Definition: dpo.h:47
u64 uword
Definition: types.h:112
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:202
char * name
The counter collection&#39;s name.
Definition: counter.h:212
u32 index
Definition: flow_types.api:221
vnet_crypto_op_id_t crypto_enc_op_id
Definition: ipsec_sa.h:138
A collection of combined counters.
Definition: counter.h:207
A FIB graph nodes virtual function table.
Definition: fib_node.h:282
dpo_id_t dpo
Definition: ipsec_sa.h:127
ipsec_crypto_alg_t crypto_alg
Definition: ipsec_sa.h:213
vnet_crypto_async_op_id_t crypto_async_enc_op_id
Definition: ipsec_sa.h:145
ip4_header_t ip4_hdr
Definition: ipsec_sa.h:158
static u32 vlib_num_workers()
Definition: threads.h:377
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:232
clib_error_t * ipsec_sa_interface_init(vlib_main_t *vm)
Definition: ipsec_sa.c:531
union ipsec_sa_t::@453 sync_op_data
vnet_crypto_alg_t alg
Definition: ipsec.h:83
add_del_sa_sess_cb_t add_del_sa_sess_cb
Definition: ipsec.h:41
u8 ip_version_and_header_length
Definition: ip4_packet.h:93
ipsec_esp_backend_t * esp_backends
Definition: ipsec.h:173
u8 crypto_iv_size
Definition: ipsec_sa.h:116
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
ipsec_key_t integ_key
Definition: ipsec_sa.h:216
u8 async_mode
Definition: ipsec.h:207
vnet_crypto_op_id_t crypto_dec_op_id
Definition: ipsec_sa.h:139
u8 integ_icv_size
Definition: ipsec_sa.h:118
#define IPSEC_UDP_PORT_NONE
Definition: ipsec_sa.h:290
static u16 ip4_header_checksum(ip4_header_t *i)
Definition: ip4_packet.h:314
u32 decrypt_thread_index
Definition: ipsec_sa.h:120
fib_forward_chain_type_t fib_forw_chain_type_from_fib_proto(fib_protocol_t proto)
Convert from a fib-protocol to a chain type.
Definition: fib_types.c:449
ip6_address_t dst_address
Definition: ip6_packet.h:310