Fix LISP coverity warning
[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 (!vni_set || !dp_table_set)
107     {
108       vlib_cli_output (vm, "vni and vrf/bd must be set!");
109       goto done;
110     }
111
112   if (!reid_set)
113     {
114       vlib_cli_output (vm, "remote eid 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
155   rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
156   if (0 != rv)
157     {
158       vlib_cli_output (vm, "failed to %s gpe tunnel!",
159                        is_add ? "add" : "delete");
160     }
161
162 done:
163   unformat_free (line_input);
164   vec_free (pairs);
165   return error;
166 }
167
168 /* *INDENT-OFF* */
169 VLIB_CLI_COMMAND (lisp_gpe_add_del_fwd_entry_command, static) = {
170   .path = "lisp gpe entry",
171   .short_help = "lisp gpe entry add/del vni <vni> vrf/bd <id> [leid <leid>]"
172       "reid <reid> [loc-pair <lloc> <rloc> w <weight>] "
173       "[negative action <action>]",
174   .function = lisp_gpe_add_del_fwd_entry_command_fn,
175 };
176 /* *INDENT-ON* */
177
178 /** Check if LISP-GPE is enabled. */
179 u8
180 vnet_lisp_gpe_enable_disable_status (void)
181 {
182   lisp_gpe_main_t *lgm = &lisp_gpe_main;
183
184   return lgm->is_en;
185 }
186
187 /** Enable/disable LISP-GPE. */
188 clib_error_t *
189 vnet_lisp_gpe_enable_disable (vnet_lisp_gpe_enable_disable_args_t * a)
190 {
191   lisp_gpe_main_t *lgm = &lisp_gpe_main;
192
193   if (a->is_en)
194     {
195       lgm->is_en = 1;
196     }
197   else
198     {
199       /* remove all entries */
200       vnet_lisp_gpe_fwd_entry_flush ();
201
202       /* disable all l3 ifaces */
203       lisp_gpe_tenant_flush ();
204
205       lgm->is_en = 0;
206     }
207
208   return 0;
209 }
210
211 /** CLI command to enable/disable LISP-GPE. */
212 static clib_error_t *
213 lisp_gpe_enable_disable_command_fn (vlib_main_t * vm,
214                                     unformat_input_t * input,
215                                     vlib_cli_command_t * cmd)
216 {
217   unformat_input_t _line_input, *line_input = &_line_input;
218   u8 is_en = 1;
219   vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
220
221   /* Get a line of input. */
222   if (!unformat_user (input, unformat_line_input, line_input))
223     return 0;
224
225   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
226     {
227       if (unformat (line_input, "enable"))
228         is_en = 1;
229       else if (unformat (line_input, "disable"))
230         is_en = 0;
231       else
232         {
233           return clib_error_return (0, "parse error: '%U'",
234                                     format_unformat_error, line_input);
235         }
236     }
237   a->is_en = is_en;
238   return vnet_lisp_gpe_enable_disable (a);
239 }
240
241 /* *INDENT-OFF* */
242 VLIB_CLI_COMMAND (enable_disable_lisp_gpe_command, static) = {
243   .path = "lisp gpe",
244   .short_help = "lisp gpe [enable|disable]",
245   .function = lisp_gpe_enable_disable_command_fn,
246 };
247 /* *INDENT-ON* */
248
249 /** CLI command to show LISP-GPE interfaces. */
250 static clib_error_t *
251 lisp_show_iface_command_fn (vlib_main_t * vm,
252                             unformat_input_t * input,
253                             vlib_cli_command_t * cmd)
254 {
255   lisp_gpe_main_t *lgm = &lisp_gpe_main;
256   hash_pair_t *p;
257
258   vlib_cli_output (vm, "%=10s%=12s", "vrf", "hw_if_index");
259
260   /* *INDENT-OFF* */
261   hash_foreach_pair (p, lgm->l3_ifaces.hw_if_index_by_dp_table, ({
262     vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]);
263   }));
264   /* *INDENT-ON* */
265
266   if (0 != lgm->l2_ifaces.hw_if_index_by_dp_table)
267     {
268       vlib_cli_output (vm, "%=10s%=12s", "bd_id", "hw_if_index");
269       /* *INDENT-OFF* */
270       hash_foreach_pair (p, lgm->l2_ifaces.hw_if_index_by_dp_table, ({
271         vlib_cli_output (vm, "%=10d%=10d", p->key, p->value[0]);
272       }));
273       /* *INDENT-ON* */
274     }
275   return 0;
276 }
277
278 /* *INDENT-OFF* */
279 VLIB_CLI_COMMAND (lisp_show_iface_command) = {
280     .path = "show lisp gpe interface",
281     .short_help = "show lisp gpe interface",
282     .function = lisp_show_iface_command_fn,
283 };
284 /* *INDENT-ON* */
285
286 /** Format LISP-GPE status. */
287 u8 *
288 format_vnet_lisp_gpe_status (u8 * s, va_list * args)
289 {
290   lisp_gpe_main_t *lgm = &lisp_gpe_main;
291   return format (s, "%s", lgm->is_en ? "enabled" : "disabled");
292 }
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  */