blob: 69fa740f4325bad25fffb30e143d4460eb3f86b2 [file] [log] [blame]
Neale Ranns03ce4622020-02-03 10:55:09 +00001/*
2 * teib.h: next-hop resolution
3 *
4 * Copyright (c) 2016 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef __TEIB_H__
19#define __TEIB_H__
20
21#include <vnet/ip/ip.h>
22
23/**
24 * Tunnel Endpoint Information Base.
25 *
26 * A TEIB entry represents the mapping between a peer on an interface in the overlay
27 * and a next-hop address in the underlay.
28 * i.e. there's a multipoint tunnel providing the overlay (henace a peer on
29 * that tunnel) which is reachable via 'tunnel destination' address in the
30 * underlay.
31 *
32 * Such overlay to underlay mappings might be providied by a protocol like NHRP
33 */
34typedef struct teib_entry_t_ teib_entry_t;
35
36/** accessors for the opaque struct */
37extern u32 teib_entry_get_sw_if_index (const teib_entry_t * ne);
38extern u32 teib_entry_get_fib_index (const teib_entry_t * ne);
Neale Rannse6b83052020-09-17 12:56:47 +000039extern const ip_address_t *teib_entry_get_peer (const teib_entry_t * ne);
Neale Ranns03ce4622020-02-03 10:55:09 +000040extern const fib_prefix_t *teib_entry_get_nh (const teib_entry_t * ne);
41extern u8 *format_teib_entry (u8 * s, va_list * args);
42
43/**
44 * Create a new TEIB entry
45 */
46extern int teib_entry_add (u32 sw_if_index,
Neale Rannse6b83052020-09-17 12:56:47 +000047 const ip_address_t * peer,
48 u32 nh_table_id, const ip_address_t * nh);
Neale Ranns03ce4622020-02-03 10:55:09 +000049
Neale Rannse6b83052020-09-17 12:56:47 +000050extern int teib_entry_del (u32 sw_if_index, const ip_address_t * peer);
Neale Ranns03ce4622020-02-03 10:55:09 +000051
52extern teib_entry_t *teib_entry_find (u32 sw_if_index,
Neale Rannse6b83052020-09-17 12:56:47 +000053 const ip_address_t * peer);
54extern teib_entry_t *teib_entry_find_46 (u32 sw_if_index,
55 fib_protocol_t fproto,
56 const ip46_address_t * peer);
Neale Ranns03ce4622020-02-03 10:55:09 +000057extern teib_entry_t *teib_entry_get (index_t nei);
58
59extern void teib_entry_adj_stack (const teib_entry_t * ne, adj_index_t ai);
60
61typedef walk_rc_t (*teib_walk_cb_t) (index_t nei, void *ctx);
62
63extern void teib_walk (teib_walk_cb_t fn, void *ctx);
64extern void teib_walk_itf (u32 sw_if_index, teib_walk_cb_t fn, void *ctx);
65
66/**
67 * Notifications for the creation and deletion of TEIB entries
68 */
69typedef void (*teib_entry_added_t) (const teib_entry_t * ne);
70typedef void (*teib_entry_deleted_t) (const teib_entry_t * ne);
71
72typedef struct teib_vft_t_
73{
74 teib_entry_added_t nv_added;
75 teib_entry_deleted_t nv_deleted;
76} teib_vft_t;
77
78extern void teib_register (const teib_vft_t * vft);
79
80#endif
81
82/*
83 * fd.io coding-style-patch-verification: ON
84 *
85 * Local Variables:
86 * eval: (c-set-style "gnu")
87 * End:
88 */