blob: 33ef98764e2ae544be7744405f9d277e3c58c259 [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#include <vnet/vnet.h>
17
18#include <vnet/mfib/mfib_itf.h>
19#include <vnet/mfib/mfib_signal.h>
Neale Rannse821ab12017-06-01 07:45:05 -070020#include <vnet/fib/fib_path.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000021
22mfib_itf_t *mfib_itf_pool;
23
24index_t
Neale Rannse821ab12017-06-01 07:45:05 -070025mfib_itf_create (fib_node_index_t path_index,
Neale Ranns32e1c012016-11-22 17:07:28 +000026 mfib_itf_flags_t mfi_flags)
27{
28 mfib_itf_t *mfib_itf;
29
30 pool_get_aligned(mfib_itf_pool, mfib_itf,
31 CLIB_CACHE_LINE_BYTES);
32
Neale Rannse821ab12017-06-01 07:45:05 -070033 mfib_itf->mfi_sw_if_index = fib_path_get_resolving_interface(path_index);
Neale Ranns32e1c012016-11-22 17:07:28 +000034 mfib_itf->mfi_si = INDEX_INVALID;
35
Neale Rannse821ab12017-06-01 07:45:05 -070036 /*
37 * add the path index to the per-path hash
38 */
39 mfib_itf->mfi_hash = hash_set(mfib_itf->mfi_hash, path_index, mfi_flags);
40
41 /*
42 * the combined flags from all the paths is from just the one contributor
43 */
44 mfib_itf->mfi_flags = mfi_flags;
45
Neale Ranns32e1c012016-11-22 17:07:28 +000046 return (mfib_itf - mfib_itf_pool);
47}
48
Neale Rannse821ab12017-06-01 07:45:05 -070049static mfib_itf_flags_t
50mfib_itf_mk_flags (const mfib_itf_t *mfib_itf)
51{
52 mfib_itf_flags_t combined_flags, flags;
53 fib_node_index_t *path_index;
54
55 combined_flags = MFIB_ITF_FLAG_NONE;
56
57 hash_foreach(path_index, flags, mfib_itf->mfi_hash,
58 {
59 combined_flags |= flags;
60 });
61
62 return (combined_flags);
63}
64
65int
66mfib_itf_update (mfib_itf_t *mfib_itf,
67 fib_node_index_t path_index,
68 mfib_itf_flags_t mfi_flags)
69{
70 /*
71 * add or remove the path index to the per-path hash
72 */
73 if (MFIB_ITF_FLAG_NONE == mfi_flags)
74 {
75 hash_unset(mfib_itf->mfi_hash, path_index);
76 }
77 else
78 {
79 mfib_itf->mfi_hash = hash_set(mfib_itf->mfi_hash,
80 path_index,
81 mfi_flags);
82 }
83
84 /*
85 * re-generate the combined flags from all the paths.
86 */
87 mfib_itf->mfi_flags = mfib_itf_mk_flags(mfib_itf);
88
89 /*
90 * The interface can be removed if there are no more flags
91 */
92 return (MFIB_ITF_FLAG_NONE == mfib_itf->mfi_flags);
93}
94
95static void
96mfib_itf_hash_flush (mfib_itf_t *mfi)
97{
98 fib_node_index_t path_index, *path_indexp, *all = NULL;
99 mfib_itf_flags_t flags;
100
101 hash_foreach(path_index, flags, mfi->mfi_hash,
102 {
103 vec_add1(all, path_index);
104 });
105
106 vec_foreach(path_indexp, all)
107 {
108 hash_unset(mfi->mfi_hash, *path_indexp);
109 };
110}
111
Neale Ranns32e1c012016-11-22 17:07:28 +0000112void
113mfib_itf_delete (mfib_itf_t *mfi)
114{
Neale Rannse821ab12017-06-01 07:45:05 -0700115 mfib_itf_hash_flush(mfi);
Neale Ranns32e1c012016-11-22 17:07:28 +0000116 mfib_signal_remove_itf(mfi);
117 pool_put(mfib_itf_pool, mfi);
118}
119
120u8 *
121format_mfib_itf (u8 * s, va_list * args)
122{
123 mfib_itf_t *mfib_itf;
124 vnet_main_t *vnm;
125 index_t mfi;
126
127 mfi = va_arg (*args, index_t);
128
129 vnm = vnet_get_main();
130 mfib_itf = mfib_itf_get(mfi);
131
132 if (~0 != mfib_itf->mfi_sw_if_index)
133 {
134 return (format(s, " %U: %U",
135 format_vnet_sw_interface_name,
136 vnm,
137 vnet_get_sw_interface(vnm,
138 mfib_itf->mfi_sw_if_index),
139 format_mfib_itf_flags, mfib_itf->mfi_flags));
140 }
141 else
142 {
143 return (format(s, " local: %U",
144 format_mfib_itf_flags, mfib_itf->mfi_flags));
145 }
146 return (s);
147}
148
149static clib_error_t *
150show_mfib_itf_command (vlib_main_t * vm,
151 unformat_input_t * input,
152 vlib_cli_command_t * cmd)
153{
154 index_t mfii;
155
156 if (unformat (input, "%d", &mfii))
157 {
158 /*
159 * show one in detail
160 */
161 if (!pool_is_free_index(mfib_itf_pool, mfii))
162 {
163 vlib_cli_output (vm, "%d@%U",
164 mfii,
165 format_mfib_itf, mfii);
166 }
167 else
168 {
169 vlib_cli_output (vm, "itf %d invalid", mfii);
170 }
171 }
172 else
173 {
174 /*
175 * show all
176 */
177 vlib_cli_output (vm, "mFIB interfaces::");
178 pool_foreach_index(mfii, mfib_itf_pool,
179 ({
180 vlib_cli_output (vm, "%d@%U",
181 mfii,
182 format_mfib_itf, mfii);
183 }));
184 }
185
186 return (NULL);
187}
188
Neale Rannsc756c1c2017-02-08 09:11:57 -0800189/*?
190 * This commnad displays an MFIB interface, or all interfaces, indexed by their unique
191 * numerical indentifier.
192 ?*/
Neale Ranns32e1c012016-11-22 17:07:28 +0000193VLIB_CLI_COMMAND (show_mfib_itf, static) = {
194 .path = "show mfib interface",
195 .function = show_mfib_itf_command,
196 .short_help = "show mfib interface",
197};