blob: adaa7ec24fe2cee9dcc98dd76776b6fd8c1b6eed [file] [log] [blame]
Neale Ranns32e1c012016-11-22 17:07:28 +00001/*
2 * Copyright (c) 2016 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 * @brief The IPv4 Multicast-FIB
17 *
18 * FIXME
19 *
20 * This IPv4 FIB is used by the protocol independent FIB. So directly using
21 * this APIs in client code is not encouraged. However, this IPv4 FIB can be
22 * used if all the client wants is an IPv4 prefix data-base
23 */
24
25#ifndef __IP6_MFIB_H__
26#define __IP6_MFIB_H__
27
28#include <vlib/vlib.h>
29#include <vnet/ip/ip.h>
30
31#include <vnet/mfib/mfib_table.h>
32
33extern fib_node_index_t ip6_mfib_table_lookup(const ip6_mfib_t *fib,
34 const ip6_address_t *src,
35 const ip6_address_t *grp,
36 u32 len);
37extern fib_node_index_t ip6_mfib_table_lookup_exact_match(const ip6_mfib_t *fib,
38 const ip6_address_t *grp,
39 const ip6_address_t *src,
40 u32 len);
41
42extern void ip6_mfib_table_entry_remove(ip6_mfib_t *fib,
43 const ip6_address_t *grp,
44 const ip6_address_t *src,
45 u32 len);
46
47extern void ip6_mfib_table_entry_insert(ip6_mfib_t *fib,
48 const ip6_address_t *grp,
49 const ip6_address_t *src,
50 u32 len,
51 fib_node_index_t fib_entry_index);
52extern void ip6_mfib_table_destroy(ip6_mfib_t *fib);
53
54/**
55 * @brief
56 * Add/remove the interface from the accepting list of the special MFIB entries
57 */
58extern void ip6_mfib_interface_enable_disable(u32 sw_if_index,
59 int is_enable);
60
61/**
62 * @brief Get the FIB at the given index
63 */
64static inline ip6_mfib_t *
65ip6_mfib_get (u32 index)
66{
67 return (&(pool_elt_at_index(ip6_main.mfibs, index)->v6));
68}
69
70/**
71 * @brief Get or create an IPv4 fib.
72 *
73 * Get or create an IPv4 fib with the provided table ID.
74 *
75 * @param table_id
76 * When set to \c ~0, an arbitrary and unused fib ID is picked
77 * and can be retrieved with \c ret->table_id.
78 * Otherwise, the fib ID to be used to retrieve or create the desired fib.
79 * @returns A pointer to the retrieved or created fib.
80 *
81 */
82extern u32 ip6_mfib_table_find_or_create_and_lock(u32 table_id);
83extern u32 ip6_mfib_table_create_and_lock(void);
84
85
86static inline
87u32 ip6_mfib_index_from_table_id (u32 table_id)
88{
89 ip6_main_t * im = &ip6_main;
90 uword * p;
91
92 p = hash_get (im->mfib_index_by_table_id, table_id);
93 if (!p)
94 return ~0;
95
96 return p[0];
97}
98
99extern u32 ip6_mfib_table_get_index_for_sw_if_index(u32 sw_if_index);
100
101/**
102 * @brief Data-plane lookup function
103 */
104extern fib_node_index_t ip6_mfib_table_lookup2(const ip6_mfib_t *mfib,
105 const ip6_address_t *src,
106 const ip6_address_t *grp);
107
Neale Ranns5a8123b2017-01-26 01:18:23 -0800108/**
109 * @brief Walk the IP6 mfib table.
110 *
111 * @param mfib the table to walk
112 * @param fn The function to invoke on each entry visited
113 * @param ctx A context passed in the visit function
114 */
115extern void ip6_mfib_table_walk (ip6_mfib_t *mfib,
116 mfib_table_walk_fn_t fn,
117 void *ctx);
118
Neale Ranns32e1c012016-11-22 17:07:28 +0000119#endif
120