FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
mfib_entry_src_rr.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
19 #include <vnet/mfib/mfib_table.h>
20 #include <vnet/fib/fib_path_list.h>
21 
22 static void
24  mfib_entry_src_t *msrc)
25 {
26  mfib_entry_t *cover;
27 
28  /*
29  * remove the depednecy on the covering entry
30  */
32  {
33  cover = mfib_entry_get(msrc->mfes_cover);
36  }
37 
40  msrc->mfes_itfs = NULL;
41  msrc->mfes_exts = NULL;
42 }
43 
44 static void
46  mfib_entry_src_t *msrc)
47 {
48  mfib_entry_src_t *csrc;
49  mfib_entry_t *cover;
50 
52  &mfib_entry->mfe_prefix);
53 
55 
56  cover = mfib_entry_get(msrc->mfes_cover);
57 
58  msrc->mfes_sibling =
59  mfib_entry_cover_track(cover, mfib_entry_get_index(mfib_entry));
60 
61  csrc = mfib_entry_get_best_src(cover);
62 
63  msrc->mfes_pl = csrc->mfes_pl;
65  msrc->mfes_flags = csrc->mfes_flags;
66  msrc->mfes_itfs = csrc->mfes_itfs;
67  msrc->mfes_exts = csrc->mfes_exts;
68  msrc->mfes_rpf_id = csrc->mfes_rpf_id;
69 }
70 
71 static mfib_src_res_t
73  mfib_entry_src_t *msrc)
74 {
75  mfib_entry_src_rr_deactiviate(mfib_entry, msrc);
76  mfib_entry_src_rr_activiate(mfib_entry, msrc);
77 
78  return (MFIB_SRC_REEVALUATE);
79 }
80 
81 static mfib_src_res_t
83  mfib_entry_src_t *msrc)
84 {
85  /*
86  * path lists are updated (i.e. not shared) in the mfib world,
87  * so there's no need to check for a new one. but we do need to
88  * copy down any new flags and input interfaces
89  */
90  mfib_entry_t *cover;
91 
92  cover = mfib_entry_get(msrc->mfes_cover);
93 
94  msrc->mfes_flags = cover->mfe_flags;
95  msrc->mfes_itfs = cover->mfe_itfs;
96  msrc->mfes_rpf_id = cover->mfe_rpf_id;
97 
98  return (MFIB_SRC_REEVALUATE);
99 }
100 
101 void
103 {
104  mfib_entry_src_vft mvft = {
106  .mev_deactivate = mfib_entry_src_rr_deactiviate,
107  .mev_cover_change = mfib_entry_src_rr_cover_change,
108  .mev_cover_update = mfib_entry_src_rr_cover_update,
109  };
110 
112 }
void mfib_entry_src_rr_module_init(void)
void mfib_entry_src_register(mfib_source_t source, const mfib_entry_src_vft *mvft)
fib_node_index_t mfes_cover
#define NULL
Definition: clib.h:58
An entry in a FIB table.
Definition: mfib_entry.h:32
static fib_node_index_t mfib_entry_get_index(const mfib_entry_t *mfe)
Definition: mfib_entry.h:203
u32 mfes_sibling
mfib_itf_t * mfes_itfs
The hash table of all interfaces.
static void mfib_entry_src_rr_activiate(mfib_entry_t *mfib_entry, mfib_entry_src_t *msrc)
The source of an MFIB entry.
u32 mfib_entry_cover_track(mfib_entry_t *cover, fib_node_index_t covered)
mfib_prefix_t mfe_prefix
The prefix of the route.
Definition: mfib_entry.h:42
static mfib_src_res_t mfib_entry_src_rr_cover_change(mfib_entry_t *mfib_entry, mfib_entry_src_t *msrc)
void fib_path_list_lock(fib_node_index_t path_list_index)
fib_rpf_id_t mfes_rpf_id
RPF-ID.
u32 mfe_fib_index
The index of the FIB table this entry is in.
Definition: mfib_entry.h:47
static mfib_entry_t * mfib_entry_get(fib_node_index_t index)
Definition: mfib_entry.h:198
static mfib_src_res_t mfib_entry_src_rr_cover_update(mfib_entry_t *mfib_entry, mfib_entry_src_t *msrc)
mfib_entry_src_activiate_t mev_activate
void mfib_entry_cover_untrack(mfib_entry_t *cover, u32 tracked_index)
fib_node_index_t mfes_pl
The path-list of forwarding interfaces.
mfib_itf_t * mfe_itfs
A hash table of interfaces.
Definition: mfib_entry.h:87
mfib_entry_flags_t mfe_flags
Route flags.
Definition: mfib_entry.h:77
mfib_path_ext_t * mfes_exts
Hash table of path extensions.
void fib_path_list_unlock(fib_node_index_t path_list_index)
enum mfib_src_res_t_ mfib_src_res_t
signals from the sources to the caller
#define ASSERT(truth)
fib_node_index_t mfib_table_get_less_specific(u32 fib_index, const mfib_prefix_t *prefix)
Get the less specific (covering) prefix.
Definition: mfib_table.c:127
static void mfib_entry_src_rr_deactiviate(mfib_entry_t *mfib_entry, mfib_entry_src_t *msrc)
fib_rpf_id_t mfe_rpf_id
RPF-ID used when the packets ingress not from an interface.
Definition: mfib_entry.h:82
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
Virtual function table provided by each_source.
mfib_entry_flags_t mfes_flags
Route flags.
mfib_entry_src_t * mfib_entry_get_best_src(const mfib_entry_t *mfib_entry)
Definition: mfib_entry.c:294