blob: 0e1e63d0db4ab16b976ba5c0f5bf88c027e22c74 [file] [log] [blame]
Neale Ranns999c8ee2019-02-01 03:31:24 -08001/*
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>
Damjan Marionc59b9a22019-03-19 15:38:40 +010017#include <vnet/ipsec/esp.h>
18#include <vnet/udp/udp.h>
Neale Ranns8d7c5022019-02-06 01:41:05 -080019#include <vnet/fib/fib_table.h>
Neale Ranns1f50bf82019-07-16 15:28:52 +000020#include <vnet/fib/fib_entry_track.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080021#include <vnet/ipsec/ipsec_tun.h>
Neale Ranns999c8ee2019-02-01 03:31:24 -080022
Neale Rannseba31ec2019-02-17 18:04:27 +000023/**
24 * @brief
25 * SA packet & bytes counters
26 */
27vlib_combined_counter_main_t ipsec_sa_counters = {
28 .name = "SA",
29 .stat_segment_name = "/net/ipsec/sa",
30};
31
32
Neale Ranns999c8ee2019-02-01 03:31:24 -080033static clib_error_t *
34ipsec_call_add_del_callbacks (ipsec_main_t * im, ipsec_sa_t * sa,
35 u32 sa_index, int is_add)
36{
37 ipsec_ah_backend_t *ab;
38 ipsec_esp_backend_t *eb;
39 switch (sa->protocol)
40 {
41 case IPSEC_PROTOCOL_AH:
42 ab = pool_elt_at_index (im->ah_backends, im->ah_current_backend);
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:
47 eb = pool_elt_at_index (im->esp_backends, im->esp_current_backend);
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
Neale Ranns8d7c5022019-02-06 01:41:05 -080055void
56ipsec_mk_key (ipsec_key_t * key, const u8 * data, u8 len)
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 */
Neale Rannse8915fc2019-04-23 20:57:55 -040071static void
Neale Ranns8d7c5022019-02-06 01:41:05 -080072ipsec_sa_stack (ipsec_sa_t * sa)
73{
Neale Rannsb4cfd552019-02-13 02:08:06 -080074 ipsec_main_t *im = &ipsec_main;
Neale Ranns8d7c5022019-02-06 01:41:05 -080075 fib_forward_chain_type_t fct;
76 dpo_id_t tmp = DPO_INVALID;
Neale Ranns8d7c5022019-02-06 01:41:05 -080077
Damjan Mariond709cbc2019-03-26 13:16:42 +010078 fct =
79 fib_forw_chain_type_from_fib_proto ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
80 FIB_PROTOCOL_IP6 :
81 FIB_PROTOCOL_IP4));
Neale Ranns8d7c5022019-02-06 01:41:05 -080082
83 fib_entry_contribute_forwarding (sa->fib_entry_index, fct, &tmp);
84
Neale Ranns72f2a3a2019-06-17 15:43:38 +000085 if (IPSEC_PROTOCOL_AH == sa->protocol)
86 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
87 im->ah6_encrypt_node_index :
88 im->ah4_encrypt_node_index), &sa->dpo, &tmp);
89 else
90 dpo_stack_from_node ((ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
91 im->esp6_encrypt_node_index :
92 im->esp4_encrypt_node_index), &sa->dpo, &tmp);
Neale Rannsb4cfd552019-02-13 02:08:06 -080093 dpo_reset (&tmp);
Neale Ranns8d7c5022019-02-06 01:41:05 -080094}
95
Damjan Marionb966e8b2019-03-20 16:07:09 +010096void
97ipsec_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->crypto_block_size = im->crypto_algs[crypto_alg].block_size;
Damjan Marion060bfb92019-03-29 13:47:54 +0100103 sa->crypto_enc_op_id = im->crypto_algs[crypto_alg].enc_op_id;
104 sa->crypto_dec_op_id = im->crypto_algs[crypto_alg].dec_op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +0200105 sa->crypto_calg = im->crypto_algs[crypto_alg].alg;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100106 ASSERT (sa->crypto_iv_size <= ESP_MAX_IV_SIZE);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100107 ASSERT (sa->crypto_block_size <= ESP_MAX_BLOCK_SIZE);
Neale Ranns47feb112019-04-11 15:14:07 +0000108 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 }
Damjan Marionb966e8b2019-03-20 16:07:09 +0100113}
114
115void
116ipsec_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;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200120 sa->integ_icv_size = im->integ_algs[integ_alg].icv_size;
Damjan Marion060bfb92019-03-29 13:47:54 +0100121 sa->integ_op_id = im->integ_algs[integ_alg].op_id;
Damjan Mariond1bed682019-04-24 15:20:35 +0200122 sa->integ_calg = im->integ_algs[integ_alg].alg;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200123 ASSERT (sa->integ_icv_size <= ESP_MAX_ICV_SIZE);
Damjan Marionb966e8b2019-03-20 16:07:09 +0100124}
125
Neale Ranns999c8ee2019-02-01 03:31:24 -0800126int
Neale Ranns495d7ff2019-07-12 09:15:26 +0000127ipsec_sa_add_and_lock (u32 id,
128 u32 spi,
129 ipsec_protocol_t proto,
130 ipsec_crypto_alg_t crypto_alg,
131 const ipsec_key_t * ck,
132 ipsec_integ_alg_t integ_alg,
133 const ipsec_key_t * ik,
134 ipsec_sa_flags_t flags,
135 u32 tx_table_id,
136 u32 salt,
137 const ip46_address_t * tun_src,
Filip Tehlare5d34912020-03-02 15:17:37 +0000138 const ip46_address_t * tun_dst, u32 * sa_out_index,
139 u16 dst_port)
Neale Ranns8d7c5022019-02-06 01:41:05 -0800140{
Damjan Mariond1bed682019-04-24 15:20:35 +0200141 vlib_main_t *vm = vlib_get_main ();
Neale Ranns8d7c5022019-02-06 01:41:05 -0800142 ipsec_main_t *im = &ipsec_main;
143 clib_error_t *err;
144 ipsec_sa_t *sa;
145 u32 sa_index;
146 uword *p;
147
148 p = hash_get (im->sa_index_by_sa_id, id);
149 if (p)
150 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
151
Damjan Mariond709cbc2019-03-26 13:16:42 +0100152 pool_get_aligned_zero (im->sad, sa, CLIB_CACHE_LINE_BYTES);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800153
154 fib_node_init (&sa->node, FIB_NODE_TYPE_IPSEC_SA);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000155 fib_node_lock (&sa->node);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800156 sa_index = sa - im->sad;
157
Neale Rannseba31ec2019-02-17 18:04:27 +0000158 vlib_validate_combined_counter (&ipsec_sa_counters, sa_index);
159 vlib_zero_combined_counter (&ipsec_sa_counters, sa_index);
160
Neale Ranns8d7c5022019-02-06 01:41:05 -0800161 sa->id = id;
162 sa->spi = spi;
Neale Rannseba31ec2019-02-17 18:04:27 +0000163 sa->stat_index = sa_index;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800164 sa->protocol = proto;
Neale Ranns2b5ba952019-04-02 10:15:40 +0000165 sa->flags = flags;
Neale Ranns47feb112019-04-11 15:14:07 +0000166 sa->salt = salt;
Neale Rannsf62a8c02019-04-02 08:13:33 +0000167 sa->encrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
168 sa->decrypt_thread_index = (vlib_num_workers ())? ~0 : 0;
Filip Tehlarc41217a2019-10-18 17:51:06 +0000169 if (integ_alg != IPSEC_INTEG_ALG_NONE)
170 {
171 ipsec_sa_set_integ_alg (sa, integ_alg);
172 clib_memcpy (&sa->integ_key, ik, sizeof (sa->integ_key));
173 }
Neale Ranns47feb112019-04-11 15:14:07 +0000174 ipsec_sa_set_crypto_alg (sa, crypto_alg);
175 clib_memcpy (&sa->crypto_key, ck, sizeof (sa->crypto_key));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800176 ip46_address_copy (&sa->tunnel_src_addr, tun_src);
177 ip46_address_copy (&sa->tunnel_dst_addr, tun_dst);
178
Damjan Mariond1bed682019-04-24 15:20:35 +0200179 sa->crypto_key_index = vnet_crypto_key_add (vm,
180 im->crypto_algs[crypto_alg].alg,
181 (u8 *) ck->data, ck->len);
Benoît Gannebe954442019-04-29 16:05:46 +0200182 if (~0 == sa->crypto_key_index)
Neale Rannse6be7022019-06-04 15:37:34 +0000183 {
184 pool_put (im->sad, sa);
185 return VNET_API_ERROR_KEY_LENGTH;
186 }
Benoît Gannebe954442019-04-29 16:05:46 +0200187
Filip Tehlarc41217a2019-10-18 17:51:06 +0000188 if (integ_alg != IPSEC_INTEG_ALG_NONE)
Neale Rannse6be7022019-06-04 15:37:34 +0000189 {
Filip Tehlarc41217a2019-10-18 17:51:06 +0000190 sa->integ_key_index = vnet_crypto_key_add (vm,
191 im->
192 integ_algs[integ_alg].alg,
193 (u8 *) ik->data, ik->len);
194 if (~0 == sa->integ_key_index)
195 {
196 pool_put (im->sad, sa);
197 return VNET_API_ERROR_KEY_LENGTH;
198 }
Neale Rannse6be7022019-06-04 15:37:34 +0000199 }
Damjan Mariond1bed682019-04-24 15:20:35 +0200200
Neale Ranns8d7c5022019-02-06 01:41:05 -0800201 err = ipsec_check_support_cb (im, sa);
202 if (err)
203 {
204 clib_warning ("%s", err->what);
205 pool_put (im->sad, sa);
206 return VNET_API_ERROR_UNIMPLEMENTED;
207 }
208
209 err = ipsec_call_add_del_callbacks (im, sa, sa_index, 1);
210 if (err)
211 {
212 pool_put (im->sad, sa);
213 return VNET_API_ERROR_SYSCALL_ERROR_1;
214 }
215
Neale Ranns2b5ba952019-04-02 10:15:40 +0000216 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800217 {
Damjan Mariond709cbc2019-03-26 13:16:42 +0100218 fib_protocol_t fproto = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ?
Neale Ranns8d7c5022019-02-06 01:41:05 -0800219 FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
220 fib_prefix_t pfx = {
221 .fp_addr = sa->tunnel_dst_addr,
Damjan Mariond709cbc2019-03-26 13:16:42 +0100222 .fp_len = (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? 128 : 32),
Neale Ranns8d7c5022019-02-06 01:41:05 -0800223 .fp_proto = fproto,
224 };
225 sa->tx_fib_index = fib_table_find (fproto, tx_table_id);
226 if (sa->tx_fib_index == ~((u32) 0))
227 {
228 pool_put (im->sad, sa);
229 return VNET_API_ERROR_NO_SUCH_FIB;
230 }
231
Neale Ranns1f50bf82019-07-16 15:28:52 +0000232 sa->fib_entry_index = fib_entry_track (sa->tx_fib_index,
233 &pfx,
234 FIB_NODE_TYPE_IPSEC_SA,
235 sa_index, &sa->sibling);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800236 ipsec_sa_stack (sa);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100237
238 /* generate header templates */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100239 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100240 {
241 sa->ip6_hdr.ip_version_traffic_class_and_flow_label = 0x60;
242 sa->ip6_hdr.hop_limit = 254;
243 sa->ip6_hdr.src_address.as_u64[0] =
244 sa->tunnel_src_addr.ip6.as_u64[0];
245 sa->ip6_hdr.src_address.as_u64[1] =
246 sa->tunnel_src_addr.ip6.as_u64[1];
247 sa->ip6_hdr.dst_address.as_u64[0] =
248 sa->tunnel_dst_addr.ip6.as_u64[0];
249 sa->ip6_hdr.dst_address.as_u64[1] =
250 sa->tunnel_dst_addr.ip6.as_u64[1];
Damjan Mariond709cbc2019-03-26 13:16:42 +0100251 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100252 sa->ip6_hdr.protocol = IP_PROTOCOL_UDP;
253 else
254 sa->ip6_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
255 }
256 else
257 {
258 sa->ip4_hdr.ip_version_and_header_length = 0x45;
259 sa->ip4_hdr.ttl = 254;
260 sa->ip4_hdr.src_address.as_u32 = sa->tunnel_src_addr.ip4.as_u32;
261 sa->ip4_hdr.dst_address.as_u32 = sa->tunnel_dst_addr.ip4.as_u32;
262
Damjan Mariond709cbc2019-03-26 13:16:42 +0100263 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100264 sa->ip4_hdr.protocol = IP_PROTOCOL_UDP;
265 else
266 sa->ip4_hdr.protocol = IP_PROTOCOL_IPSEC_ESP;
267 sa->ip4_hdr.checksum = ip4_header_checksum (&sa->ip4_hdr);
268 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800269 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100270
Damjan Mariond709cbc2019-03-26 13:16:42 +0100271 if (ipsec_sa_is_set_UDP_ENCAP (sa))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100272 {
Filip Tehlare5d34912020-03-02 15:17:37 +0000273 if (dst_port == IPSEC_UDP_PORT_NONE)
274 {
275 sa->udp_hdr.src_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
276 sa->udp_hdr.dst_port = clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
277 }
278 else
279 {
280 sa->udp_hdr.src_port = clib_host_to_net_u16 (dst_port);
281 sa->udp_hdr.dst_port = clib_host_to_net_u16 (dst_port);
282 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100283 }
284
Neale Ranns8d7c5022019-02-06 01:41:05 -0800285 hash_set (im->sa_index_by_sa_id, sa->id, sa_index);
286
287 if (sa_out_index)
288 *sa_out_index = sa_index;
289
290 return (0);
291}
292
Neale Ranns495d7ff2019-07-12 09:15:26 +0000293static void
294ipsec_sa_del (ipsec_sa_t * sa)
Neale Ranns999c8ee2019-02-01 03:31:24 -0800295{
Damjan Mariond1bed682019-04-24 15:20:35 +0200296 vlib_main_t *vm = vlib_get_main ();
Neale Ranns999c8ee2019-02-01 03:31:24 -0800297 ipsec_main_t *im = &ipsec_main;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800298 u32 sa_index;
Neale Ranns999c8ee2019-02-01 03:31:24 -0800299
Neale Ranns495d7ff2019-07-12 09:15:26 +0000300 sa_index = sa - im->sad;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800301 hash_unset (im->sa_index_by_sa_id, sa->id);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000302
303 /* no recovery possible when deleting an SA */
304 (void) ipsec_call_add_del_callbacks (im, sa, sa_index, 0);
Damjan Mariond709cbc2019-03-26 13:16:42 +0100305
Neale Ranns2b5ba952019-04-02 10:15:40 +0000306 if (ipsec_sa_is_set_IS_TUNNEL (sa) && !ipsec_sa_is_set_IS_INBOUND (sa))
Neale Ranns999c8ee2019-02-01 03:31:24 -0800307 {
Neale Ranns1f50bf82019-07-16 15:28:52 +0000308 fib_entry_untrack (sa->fib_entry_index, sa->sibling);
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000309 dpo_reset (&sa->dpo);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800310 }
Damjan Mariond1bed682019-04-24 15:20:35 +0200311 vnet_crypto_key_del (vm, sa->crypto_key_index);
Filip Tehlarc41217a2019-10-18 17:51:06 +0000312 if (sa->integ_alg != IPSEC_INTEG_ALG_NONE)
313 vnet_crypto_key_del (vm, sa->integ_key_index);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800314 pool_put (im->sad, sa);
Neale Ranns495d7ff2019-07-12 09:15:26 +0000315}
316
317void
318ipsec_sa_unlock (index_t sai)
319{
320 ipsec_main_t *im = &ipsec_main;
321 ipsec_sa_t *sa;
322
323 if (INDEX_INVALID == sai)
324 return;
325
326 sa = pool_elt_at_index (im->sad, sai);
327
328 fib_node_unlock (&sa->node);
329}
330
Neale Ranns12989b52019-09-26 16:20:19 +0000331void
332ipsec_sa_lock (index_t sai)
333{
334 ipsec_main_t *im = &ipsec_main;
335 ipsec_sa_t *sa;
336
337 if (INDEX_INVALID == sai)
338 return;
339
340 sa = pool_elt_at_index (im->sad, sai);
341
342 fib_node_lock (&sa->node);
343}
344
Neale Ranns495d7ff2019-07-12 09:15:26 +0000345index_t
346ipsec_sa_find_and_lock (u32 id)
347{
348 ipsec_main_t *im = &ipsec_main;
349 ipsec_sa_t *sa;
350 uword *p;
351
352 p = hash_get (im->sa_index_by_sa_id, id);
353
354 if (!p)
355 return INDEX_INVALID;
356
357 sa = pool_elt_at_index (im->sad, p[0]);
358
359 fib_node_lock (&sa->node);
360
361 return (p[0]);
362}
363
364int
365ipsec_sa_unlock_id (u32 id)
366{
367 ipsec_main_t *im = &ipsec_main;
368 uword *p;
369
370 p = hash_get (im->sa_index_by_sa_id, id);
371
372 if (!p)
373 return VNET_API_ERROR_NO_SUCH_ENTRY;
374
375 ipsec_sa_unlock (p[0]);
376
377 return (0);
Neale Ranns999c8ee2019-02-01 03:31:24 -0800378}
379
Neale Rannsc87b66c2019-02-07 07:26:12 -0800380void
381ipsec_sa_clear (index_t sai)
382{
383 vlib_zero_combined_counter (&ipsec_sa_counters, sai);
384}
385
Neale Rannsb4cfd552019-02-13 02:08:06 -0800386void
387ipsec_sa_walk (ipsec_sa_walk_cb_t cb, void *ctx)
388{
389 ipsec_main_t *im = &ipsec_main;
390 ipsec_sa_t *sa;
391
392 /* *INDENT-OFF* */
393 pool_foreach (sa, im->sad,
394 ({
395 if (WALK_CONTINUE != cb(sa, ctx))
396 break;
397 }));
398 /* *INDENT-ON* */
399}
400
Neale Ranns8d7c5022019-02-06 01:41:05 -0800401/**
402 * Function definition to get a FIB node from its index
403 */
404static fib_node_t *
405ipsec_sa_fib_node_get (fib_node_index_t index)
406{
407 ipsec_main_t *im;
408 ipsec_sa_t *sa;
409
410 im = &ipsec_main;
411 sa = pool_elt_at_index (im->sad, index);
412
413 return (&sa->node);
414}
415
Neale Ranns495d7ff2019-07-12 09:15:26 +0000416static ipsec_sa_t *
417ipsec_sa_from_fib_node (fib_node_t * node)
418{
419 ASSERT (FIB_NODE_TYPE_IPSEC_SA == node->fn_type);
420 return ((ipsec_sa_t *) (((char *) node) -
421 STRUCT_OFFSET_OF (ipsec_sa_t, node)));
422
423}
424
Neale Ranns8d7c5022019-02-06 01:41:05 -0800425/**
426 * Function definition to inform the FIB node that its last lock has gone.
427 */
428static void
429ipsec_sa_last_lock_gone (fib_node_t * node)
430{
431 /*
432 * The ipsec SA is a root of the graph. As such
433 * it never has children and thus is never locked.
434 */
Neale Ranns495d7ff2019-07-12 09:15:26 +0000435 ipsec_sa_del (ipsec_sa_from_fib_node (node));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800436}
437
438/**
439 * Function definition to backwalk a FIB node
440 */
441static fib_node_back_walk_rc_t
442ipsec_sa_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
443{
444 ipsec_sa_stack (ipsec_sa_from_fib_node (node));
445
446 return (FIB_NODE_BACK_WALK_CONTINUE);
447}
448
449/*
Neale Rannsc87b66c2019-02-07 07:26:12 -0800450 * Virtual function table registered by SAs
Neale Ranns8d7c5022019-02-06 01:41:05 -0800451 * for participation in the FIB object graph.
452 */
453const static fib_node_vft_t ipsec_sa_vft = {
454 .fnv_get = ipsec_sa_fib_node_get,
455 .fnv_last_lock = ipsec_sa_last_lock_gone,
456 .fnv_back_walk = ipsec_sa_back_walk,
457};
458
459/* force inclusion from application's main.c */
460clib_error_t *
461ipsec_sa_interface_init (vlib_main_t * vm)
462{
463 fib_node_register_type (FIB_NODE_TYPE_IPSEC_SA, &ipsec_sa_vft);
464
465 return 0;
466}
467
468VLIB_INIT_FUNCTION (ipsec_sa_interface_init);
469
Neale Ranns999c8ee2019-02-01 03:31:24 -0800470/*
471 * fd.io coding-style-patch-verification: ON
472 *
473 * Local Variables:
474 * eval: (c-set-style "gnu")
475 * End:
476 */