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