gbp: use bd index at ext-itf creation instead of bd id
[vpp.git] / src / plugins / gbp / gbp_ext_itf.c
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 #include <plugins/gbp/gbp_ext_itf.h>
17 #include <plugins/gbp/gbp_bridge_domain.h>
18 #include <plugins/gbp/gbp_route_domain.h>
19 #include <plugins/gbp/gbp_itf.h>
20
21 /**
22  * Pool of GBP ext_itfs
23  */
24 gbp_ext_itf_t *gbp_ext_itf_pool;
25
26 /**
27  * external interface configs keyed by sw_if_index
28  */
29 index_t *gbp_ext_itf_db;
30
31 #define GBP_EXT_ITF_ID 0x00000080
32
33 /**
34  * logger
35  */
36 vlib_log_class_t gx_logger;
37
38 #define GBP_EXT_ITF_DBG(...)                           \
39     vlib_log_debug (gx_logger, __VA_ARGS__);
40
41 u8 *
42 format_gbp_ext_itf (u8 * s, va_list * args)
43 {
44   gbp_ext_itf_t *gx = va_arg (*args, gbp_ext_itf_t *);
45
46   return (format (s, "%U%s in %U",
47                   format_gbp_itf, gx->gx_itf,
48                   (gx->gx_flags & GBP_EXT_ITF_F_ANON) ? " [anon]" : "",
49                   format_gbp_bridge_domain, gx->gx_bd));
50 }
51
52 int
53 gbp_ext_itf_add (u32 sw_if_index, u32 bd_id, u32 rd_id, u32 flags)
54 {
55   gbp_ext_itf_t *gx;
56   index_t gxi;
57
58   vec_validate_init_empty (gbp_ext_itf_db, sw_if_index, INDEX_INVALID);
59
60   gxi = gbp_ext_itf_db[sw_if_index];
61
62   if (INDEX_INVALID == gxi)
63     {
64       gbp_route_domain_t *gr;
65       fib_protocol_t fproto;
66       index_t gbi, gri;
67
68       gbi = gbp_bridge_domain_find_and_lock (bd_id);
69
70       if (INDEX_INVALID == gbi)
71         return (VNET_API_ERROR_NO_SUCH_ENTRY);
72
73       gri = gbp_route_domain_find_and_lock (rd_id);
74
75       if (INDEX_INVALID == gri)
76         {
77           gbp_bridge_domain_unlock (gbi);
78           return (VNET_API_ERROR_NO_SUCH_ENTRY);
79         }
80
81       pool_get_zero (gbp_ext_itf_pool, gx);
82       gxi = gx - gbp_ext_itf_pool;
83
84       gr = gbp_route_domain_get (gri);
85
86       gx->gx_bd = gbi;
87       gx->gx_rd = gri;
88       gx->gx_itf = sw_if_index;
89
90       FOR_EACH_FIB_IP_PROTOCOL (fproto)
91       {
92         gx->gx_fib_index[fproto] =
93           gr->grd_fib_index[fib_proto_to_dpo (fproto)];
94       }
95
96       if (flags & GBP_EXT_ITF_F_ANON)
97         {
98           /* add interface to the BD */
99           index_t itf = gbp_itf_add_and_lock (sw_if_index,
100                                               gbp_bridge_domain_get
101                                               (gbi)->gb_bd_index);
102           /* setup GBP L2 features on this interface */
103           gbp_itf_set_l2_input_feature (itf, 0,
104                                         L2INPUT_FEAT_GBP_LPM_ANON_CLASSIFY |
105                                         L2INPUT_FEAT_LEARN);
106           gbp_itf_set_l2_output_feature (itf, 0,
107                                          L2OUTPUT_FEAT_GBP_POLICY_LPM);
108         }
109
110       gx->gx_flags = flags;
111
112       gbp_ext_itf_db[sw_if_index] = gxi;
113
114       GBP_EXT_ITF_DBG ("add: %U", format_gbp_ext_itf, gx);
115
116       return (0);
117     }
118
119   return (VNET_API_ERROR_ENTRY_ALREADY_EXISTS);
120 }
121
122 int
123 gbp_ext_itf_delete (u32 sw_if_index)
124 {
125   gbp_ext_itf_t *gx;
126   index_t gxi;
127
128   if (vec_len (gbp_ext_itf_db) <= sw_if_index)
129     return (VNET_API_ERROR_INVALID_SW_IF_INDEX);
130
131   gxi = gbp_ext_itf_db[sw_if_index];
132
133   if (INDEX_INVALID != gxi)
134     {
135       gx = pool_elt_at_index (gbp_ext_itf_pool, gxi);
136
137       GBP_EXT_ITF_DBG ("del: %U", format_gbp_ext_itf, gx);
138
139       if (gx->gx_flags & GBP_EXT_ITF_F_ANON)
140         gbp_itf_unlock (gx->gx_itf);
141
142       gbp_route_domain_unlock (gx->gx_rd);
143       gbp_bridge_domain_unlock (gx->gx_bd);
144
145       gbp_ext_itf_db[sw_if_index] = INDEX_INVALID;
146       pool_put (gbp_ext_itf_pool, gx);
147
148       return (0);
149     }
150   return (VNET_API_ERROR_NO_SUCH_ENTRY);
151 }
152
153 static clib_error_t *
154 gbp_ext_itf_add_del_cli (vlib_main_t * vm,
155                          unformat_input_t * input, vlib_cli_command_t * cmd)
156 {
157   unformat_input_t _line_input, *line_input = &_line_input;
158   u32 sw_if_index = ~0, bd_id = ~0, rd_id = ~0, flags = 0;
159   int add = 1;
160   int rv;
161
162   /* Get a line of input. */
163   if (!unformat_user (input, unformat_line_input, line_input))
164     return 0;
165
166   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
167     {
168       if (unformat (line_input, "del"))
169         add = 0;
170       else
171         if (unformat
172             (line_input, "%U", unformat_vnet_sw_interface, vnet_get_main (),
173              &sw_if_index))
174         ;
175       else if (unformat (line_input, "bd %d", &bd_id))
176         ;
177       else if (unformat (line_input, "rd %d", &rd_id))
178         ;
179       else if (unformat (line_input, "anon-l3-out"))
180         flags |= GBP_EXT_ITF_F_ANON;
181       else
182         return clib_error_return (0, "unknown input `%U'",
183                                   format_unformat_error, line_input);
184     }
185   unformat_free (line_input);
186
187   if (~0 == sw_if_index)
188     return clib_error_return (0, "interface must be specified");
189
190   if (add)
191     {
192       if (~0 == bd_id)
193         return clib_error_return (0, "BD-ID must be specified");
194       if (~0 == rd_id)
195         return clib_error_return (0, "RD-ID must be specified");
196       rv = gbp_ext_itf_add (sw_if_index, bd_id, rd_id, flags);
197     }
198   else
199     rv = gbp_ext_itf_delete (sw_if_index);
200
201   switch (rv)
202     {
203     case 0:
204       return 0;
205     case VNET_API_ERROR_ENTRY_ALREADY_EXISTS:
206       return clib_error_return (0, "interface already exists");
207     case VNET_API_ERROR_NO_SUCH_ENTRY:  /* fallthrough */
208     case VNET_API_ERROR_INVALID_SW_IF_INDEX:
209       return clib_error_return (0, "unknown interface");
210     default:
211       return clib_error_return (0, "error %d", rv);
212     }
213
214   /* never reached */
215   return 0;
216 }
217
218 /*?
219  * Add Group Based Interface as anonymous L3out interface
220  *
221  * @cliexpar
222  * @cliexstart{gbp interface [del] anon-l3out <interface> bd <ID>}
223  * @cliexend
224  ?*/
225 /* *INDENT-OFF* */
226 VLIB_CLI_COMMAND (gbp_itf_anon_l3out_add_del_node, static) = {
227   .path = "gbp ext-itf",
228   .short_help = "gbp ext-itf [del] <interface> bd <ID> rd <ID> [anon-l3-out]\n",
229   .function = gbp_ext_itf_add_del_cli,
230 };
231 /* *INDENT-ON* */
232
233 void
234 gbp_ext_itf_walk (gbp_ext_itf_cb_t cb, void *ctx)
235 {
236   gbp_ext_itf_t *ge;
237
238   /* *INDENT-OFF* */
239   pool_foreach(ge, gbp_ext_itf_pool,
240   {
241     if (!cb(ge, ctx))
242       break;
243   });
244   /* *INDENT-ON* */
245 }
246
247 static walk_rc_t
248 gbp_ext_itf_show_one (gbp_ext_itf_t * gx, void *ctx)
249 {
250   vlib_cli_output (ctx, "  %U", format_gbp_ext_itf, gx);
251
252   return (WALK_CONTINUE);
253 }
254
255 static clib_error_t *
256 gbp_ext_itf_show (vlib_main_t * vm,
257                   unformat_input_t * input, vlib_cli_command_t * cmd)
258 {
259   vlib_cli_output (vm, "External-Interfaces:");
260   gbp_ext_itf_walk (gbp_ext_itf_show_one, vm);
261
262   return (NULL);
263 }
264
265 /*?
266  * Show Group Based Policy external interface and derived information
267  *
268  * @cliexpar
269  * @cliexstart{show gbp ext-itf}
270  * @cliexend
271  ?*/
272 /* *INDENT-OFF* */
273 VLIB_CLI_COMMAND (gbp_ext_itf_show_node, static) = {
274   .path = "show gbp ext-itf",
275   .short_help = "show gbp ext-itf\n",
276   .function = gbp_ext_itf_show,
277 };
278 /* *INDENT-ON* */
279
280 static clib_error_t *
281 gbp_ext_itf_init (vlib_main_t * vm)
282 {
283   gx_logger = vlib_log_register_class ("gbp", "ext-itf");
284
285   return (NULL);
286 }
287
288 VLIB_INIT_FUNCTION (gbp_ext_itf_init);
289
290 /*
291  * fd.io coding-style-patch-verification: ON
292  *
293  * Local Variables:
294  * eval: (c-set-style "gnu")
295  * End:
296  */