blob: 4512f74a9f520d65a97a3462f13de7e369633bd1 [file] [log] [blame]
Neale Ranns9e829a82018-12-17 05:50:32 -08001/*
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
17#include <vnet/mfib/mfib_entry_src.h>
18#include <vnet/mfib/mfib_entry_cover.h>
19#include <vnet/mfib/mfib_table.h>
20#include <vnet/fib/fib_path_list.h>
21
22static void
23mfib_entry_src_rr_deactiviate (mfib_entry_t *mfib_entry,
24 mfib_entry_src_t *msrc)
25{
26 mfib_entry_t *cover;
27
28 /*
29 * remove the depednecy on the covering entry
30 */
31 if (FIB_NODE_INDEX_INVALID != msrc->mfes_cover)
32 {
33 cover = mfib_entry_get(msrc->mfes_cover);
34 mfib_entry_cover_untrack(cover, msrc->mfes_sibling);
35 msrc->mfes_cover = FIB_NODE_INDEX_INVALID;
36 }
37
38 fib_path_list_unlock(msrc->mfes_pl);
39 msrc->mfes_pl = FIB_NODE_INDEX_INVALID;
40 msrc->mfes_itfs = NULL;
41 msrc->mfes_exts = NULL;
42}
43
44static void
45mfib_entry_src_rr_activiate (mfib_entry_t *mfib_entry,
46 mfib_entry_src_t *msrc)
47{
48 mfib_entry_src_t *csrc;
49 mfib_entry_t *cover;
50
51 msrc->mfes_cover = mfib_table_get_less_specific(mfib_entry->mfe_fib_index,
52 &mfib_entry->mfe_prefix);
53
54 ASSERT(FIB_NODE_INDEX_INVALID != msrc->mfes_cover);
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;
64 fib_path_list_lock(msrc->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
71static mfib_src_res_t
72mfib_entry_src_rr_cover_change (mfib_entry_t *mfib_entry,
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
81static mfib_src_res_t
82mfib_entry_src_rr_cover_update (mfib_entry_t *mfib_entry,
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
101void
102mfib_entry_src_rr_module_init (void)
103{
104 mfib_entry_src_vft mvft = {
105 .mev_activate = mfib_entry_src_rr_activiate,
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
111 mfib_entry_src_register(MFIB_SOURCE_RR, &mvft);
112}