1f8afdaefb8d10f1396bdc476eb84ea6408cc0c8
[vpp.git] / src / vnet / lisp-gpe / lisp_gpe.c
1 /*
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  * @file
17  * @brief Common utility functions for IPv4, IPv6 and L2 LISP-GPE tunnels.
18  *
19  */
20
21 #include <vnet/lisp-gpe/lisp_gpe.h>
22 #include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
23 #include <vnet/lisp-gpe/lisp_gpe_adjacency.h>
24 #include <vnet/lisp-gpe/lisp_gpe_tenant.h>
25
26 /** LISP-GPE global state */
27 lisp_gpe_main_t lisp_gpe_main;
28
29
30 /** CLI command to add/del forwarding entry. */
31 static clib_error_t *
32 lisp_gpe_add_del_fwd_entry_command_fn (vlib_main_t * vm,
33                                        unformat_input_t * input,
34                                        vlib_cli_command_t * cmd)
35 {
36   unformat_input_t _line_input, *line_input = &_line_input;
37   u8 is_add = 1;
38   ip_address_t lloc, rloc;
39   clib_error_t *error = 0;
40   gid_address_t _reid, *reid = &_reid, _leid, *leid = &_leid;
41   u8 reid_set = 0, leid_set = 0, is_negative = 0, dp_table_set = 0,
42     vni_set = 0;
43   u32 vni = 0, dp_table = 0, action = ~0, w;
44   locator_pair_t pair, *pairs = 0;
45   int rv;
46
47   memset (leid, 0, sizeof (*leid));
48   memset (reid, 0, sizeof (*reid));
49
50   /* Get a line of input. */
51   if (!unformat_user (input, unformat_line_input, line_input))
52     return 0;
53
54   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
55     {
56       if (unformat (line_input, "del"))
57         is_add = 0;
58       else if (unformat (line_input, "add"))
59         is_add = 1;
60       else if (unformat (line_input, "leid %U", unformat_gid_address, leid))
61         {
62           leid_set = 1;
63         }
64       else if (unformat (line_input, "reid %U", unformat_gid_address, reid))
65         {
66           reid_set = 1;
67         }
68       else if (unformat (line_input, "vni %u", &vni))
69         {
70           gid_address_vni (leid) = vni;
71           gid_address_vni (reid) = vni;
72           vni_set = 1;
73         }
74       else if (unformat (line_input, "vrf %u", &dp_table))
75         {
76           dp_table_set = 1;
77         }
78       else if (unformat (line_input, "bd %u", &dp_table))
79         {
80           dp_table_set = 1;
81         }
82       else if (unformat (line_input, "negative action %U",
83                          unformat_negative_mapping_action, &action))
84         {
85           is_negative = 1;
86         }
87       else if (unformat (line_input, "loc-pair %U %U w %d",
88                          unformat_ip_address, &lloc,
89                          unformat_ip_address, &rloc, &w))
90         {
91           pair.lcl_loc = lloc;
92           pair.rmt_loc = rloc;
93           pair.weight = w;
94           pair.priority = 0;
95           vec_add1 (pairs, pair);
96         }
97       else
98         {
99           error = unformat_parse_error (line_input);
100           vlib_cli_output (vm, "parse error: '%U'",
101                            format_unformat_error, line_input);
102           goto done;
103         }
104     }
105
106   if (!reid_set)
107     {
108       vlib_cli_output (vm, "remote eid must be set!");
109       goto done;
110     }
111
112   if (gid_address_type (reid) != GID_ADDR_NSH && (!vni_set || !dp_table_set))
113     {
114       vlib_cli_output (vm, "vni and vrf/bd must be set!");
115       goto done;
116     }
117
118   if (is_negative)
119     {
120       if (~0 == action)
121         {
122           vlib_cli_output (vm, "no action set for negative tunnel!");
123           goto done;
124         }
125     }
126   else
127     {
128       if (vec_len (pairs) == 0)
129         {
130           vlib_cli_output (vm, "expected ip4/ip6 locators");
131           goto done;
132         }
133     }
134
135   if (!leid_set)
136     {
137       /* if leid not set, make sure it's the same AFI like reid */
138       gid_address_type (leid) = gid_address_type (reid);
139       if (GID_ADDR_IP_PREFIX == gid_address_type (reid))
140         gid_address_ip_version (leid) = gid_address_ip_version (reid);
141     }
142
143   /* add fwd entry */
144   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
145   memset (a, 0, sizeof (a[0]));
146
147   a->is_add = is_add;
148   a->is_negative = is_negative;
149   a->vni = vni;
150   a->table_id = dp_table;
151   gid_address_copy (&a->lcl_eid, leid);
152   gid_address_copy (&a->rmt_eid, reid);
153   a->locator_pairs = pairs;
154   a->action = action;
155
156   rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
157   if (0 != rv)
158     {
159       vlib_cli_output (vm, "failed to %s gpe tunnel!",
160                        is_add ? "add" : "delete");
161     }
162
163 done:
164   unformat_free (line_input);
165   vec_free (pairs);
166   return error;
167 }
168
169 /* *INDENT-OFF* */
170 VLIB_CLI_COMMAND (lisp_gpe_add_del_fwd_entry_command, static) = {
171   .path = "gpe entry",
172   .short_help = "gpe entry add/del vni <vni> vrf/bd <id> [leid <leid>]"
173       "reid <reid> [loc-pair <lloc> <rloc> w <weight>] "
174       "[negative action <action>]",
175   .function = lisp_gpe_add_del_fwd_entry_command_fn,
176 };
177 /* *INDENT-ON* */
178
179 /** Check if LISP-GPE is enabled. */
180 u8
181 vnet_lisp_gpe_enable_disable_status (void)
182 {
183   lisp_gpe_main_t *lgm = &lisp_gpe_main;
184
185   return lgm->is_en;
186 }
187
188 /** Enable/disable LISP-GPE. */
189 clib_error_t *
190 vnet_lisp_gpe_enable_disable (vnet_lisp_gpe_enable_disable_args_t * a)
191 {
192   lisp_gpe_main_t *lgm = &lisp_gpe_main;
193
194   if (a->is_en)
195     {
196       lgm->is_en = 1;
197     }
198   else
199     {
200       /* remove all entries */
201       vnet_lisp_gpe_fwd_entry_flush ();
202
203       /* disable all l3 ifaces */
204       lisp_gpe_tenant_flush ();
205
206       lgm->is_en = 0;
207     }
208
209   return 0;
210 }
211
212 /** CLI command to enable/disable LISP-GPE. */
213 static clib_error_t *
214 lisp_gpe_enable_disable_command_fn (vlib_main_t * vm,
215                                     unformat_input_t * input,
216                                     vlib_cli_command_t * cmd)
217 {
218   unformat_input_t _line_input, *line_input = &_line_input;
219   u8 is_en = 1;
220   vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
221
222   /* Get a line of input. */
223   if (!unformat_user (input, unformat_line_input, line_input))
224     return 0;
225
226   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
227     {
228       if (unformat (line_input, "enable"))
229         is_en = 1;
230       else if (unformat (line_input, "disable"))
231         is_en = 0;
232       else
233         {
234           return clib_error_return (0, "parse error: '%U'",
235                                     format_unformat_error, line_input);
236         }
237     }
238   a->is_en = is_en;
239   return vnet_lisp_gpe_enable_disable (a);
240 }
241
242 /* *INDENT-OFF* */
243 VLIB_CLI_COMMAND (enable_disable_lisp_gpe_command, static) = {
244   .path = "gpe",
245   .short_help = "gpe [enable|disable]",
246   .function = lisp_gpe_enable_disable_command_fn,
247 };
248 /* *INDENT-ON* */
249
250 /** CLI command to show LISP-GPE interfaces. */
251 static clib_error_t *
252 lisp_show_iface_command_fn (vlib_main_t * vm,
253                             unformat_input_t * input,
254                             vlib_cli_command_t * cmd)
255 {
256   lisp_gpe_main_t *lgm = &lisp_gpe_main;
257   hash_pair_t *p;
258
259   vlib_cli_output (vm, "%=10s%=12s", "vrf", "hw_if_index");
260
261   /* *INDENT-OFF* */
262   hash_foreach_pair (p, lgm->l3_ifaces.hw_if_index_by_dp_table, ({
263     vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]);
264   }));
265   /* *INDENT-ON* */
266
267   if (0 != lgm->l2_ifaces.hw_if_index_by_dp_table)
268     {
269       vlib_cli_output (vm, "%=10s%=12s", "bd_id", "hw_if_index");
270       /* *INDENT-OFF* */
271       hash_foreach_pair (p, lgm->l2_ifaces.hw_if_index_by_dp_table, ({
272         vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]);
273       }));
274       /* *INDENT-ON* */
275     }
276   return 0;
277 }
278
279 /* *INDENT-OFF* */
280 VLIB_CLI_COMMAND (lisp_show_iface_command) = {
281     .path = "show gpe interface",
282     .short_help = "show gpe interface",
283     .function = lisp_show_iface_command_fn,
284 };
285 /* *INDENT-ON* */
286
287 /** Format LISP-GPE status. */
288 u8 *
289 format_vnet_lisp_gpe_status (u8 * s, va_list * args)
290 {
291   lisp_gpe_main_t *lgm = &lisp_gpe_main;
292   return format (s, "%s", lgm->is_en ? "enabled" : "disabled");
293 }
294
295 /** LISP-GPE init function. */
296 clib_error_t *
297 lisp_gpe_init (vlib_main_t * vm)
298 {
299   lisp_gpe_main_t *lgm = &lisp_gpe_main;
300   clib_error_t *error = 0;
301
302   if ((error = vlib_call_init_function (vm, ip_main_init)))
303     return error;
304
305   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
306     return error;
307
308   lgm->vnet_main = vnet_get_main ();
309   lgm->vlib_main = vm;
310   lgm->im4 = &ip4_main;
311   lgm->im6 = &ip6_main;
312   lgm->lm4 = &ip4_main.lookup_main;
313   lgm->lm6 = &ip6_main.lookup_main;
314
315   lgm->lisp_gpe_fwd_entries =
316     hash_create_mem (0, sizeof (lisp_gpe_fwd_entry_key_t), sizeof (uword));
317
318   udp_register_dst_port (vm, UDP_DST_PORT_lisp_gpe,
319                          lisp_gpe_ip4_input_node.index, 1 /* is_ip4 */ );
320   udp_register_dst_port (vm, UDP_DST_PORT_lisp_gpe6,
321                          lisp_gpe_ip6_input_node.index, 0 /* is_ip4 */ );
322   return 0;
323 }
324
325 VLIB_INIT_FUNCTION (lisp_gpe_init);
326
327 /*
328  * fd.io coding-style-patch-verification: ON
329  *
330  * Local Variables:
331  * eval: (c-set-style "gnu")
332  * End:
333  */