blob: 6547cad51b1f8acb8061edc383175921f1e7a531 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 * ip/ip_lookup.c: ip4/6 adjacency and lookup table managment
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#include <vnet/ip/ip.h>
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010041#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010042#include <vnet/fib/fib_table.h>
43#include <vnet/fib/ip4_fib.h>
44#include <vnet/fib/ip6_fib.h>
45#include <vnet/mpls/mpls.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000046#include <vnet/mfib/mfib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047#include <vnet/dpo/drop_dpo.h>
48#include <vnet/dpo/classify_dpo.h>
49#include <vnet/dpo/punt_dpo.h>
50#include <vnet/dpo/receive_dpo.h>
Neale Ranns948e00f2016-10-20 13:39:34 +010051#include <vnet/dpo/ip_null_dpo.h>
Neale Ranns3f844d02017-02-18 00:03:54 -080052#include <vnet/ip/ip6_neighbor.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Billy McFall0683c9c2016-10-13 08:27:31 -040054/**
55 * @file
56 * @brief IPv4 and IPv6 adjacency and lookup table managment.
57 *
58 */
59
Ed Warnickecb9cada2015-12-08 15:45:58 -070060clib_error_t *
61ip_interface_address_add_del (ip_lookup_main_t * lm,
62 u32 sw_if_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 void *addr_fib,
Ed Warnickecb9cada2015-12-08 15:45:58 -070064 u32 address_length,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 u32 is_del, u32 * result_if_address_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066{
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 vnet_main_t *vnm = vnet_get_main ();
68 ip_interface_address_t *a, *prev, *next;
69 uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Dave Barachd7cb1b52016-12-09 09:52:16 -050071 vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
72 sw_if_index, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
74
75 /* Verify given length. */
flyingeagle23d1ed4862017-04-06 16:47:46 +080076 if ((a && (address_length != a->address_length)) ||
77 (address_length == 0) ||
78 (lm->is_ip6 && address_length > 128) ||
79 (!lm->is_ip6 && address_length > 32))
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 {
81 vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 return clib_error_create
83 ("%U wrong length (expected %d) for interface %U",
84 lm->format_address_and_length, addr_fib,
85 address_length, a ? a->address_length : -1,
86 format_vnet_sw_if_index_name, vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 }
88
89 if (is_del)
90 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050091 if (!a)
92 {
93 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
94 vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
95 return clib_error_create ("%U not found for interface %U",
96 lm->format_address_and_length,
97 addr_fib, address_length,
98 format_vnet_sw_interface_name, vnm, si);
99 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101 if (a->prev_this_sw_interface != ~0)
102 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 prev =
104 pool_elt_at_index (lm->if_address_pool,
105 a->prev_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 prev->next_this_sw_interface = a->next_this_sw_interface;
107 }
108 if (a->next_this_sw_interface != ~0)
109 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 next =
111 pool_elt_at_index (lm->if_address_pool,
112 a->next_this_sw_interface);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 next->prev_this_sw_interface = a->prev_this_sw_interface;
114
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 if (a->prev_this_sw_interface == ~0)
116 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
117 a->next_this_sw_interface;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 }
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 if ((a->next_this_sw_interface == ~0)
121 && (a->prev_this_sw_interface == ~0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
123
124 mhash_unset (&lm->address_to_if_address_index, addr_fib,
125 /* old_value */ 0);
126 pool_put (lm->if_address_pool, a);
127
128 if (result_if_address_index)
129 *result_if_address_index = ~0;
130 }
131
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 else if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500134 u32 pi; /* previous index */
135 u32 ai;
136 u32 hi; /* head index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
138 pool_get (lm->if_address_pool, a);
139 memset (a, ~0, sizeof (a[0]));
140 ai = a - lm->if_address_pool;
141
142 hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
143 prev = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 while (pi != (u32) ~ 0)
145 {
146 prev = pool_elt_at_index (lm->if_address_pool, pi);
147 pi = prev->next_this_sw_interface;
148 }
149 pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 a->address_key = mhash_set (&lm->address_to_if_address_index,
152 addr_fib, ai, /* old_value */ 0);
153 a->address_length = address_length;
154 a->sw_if_index = sw_if_index;
155 a->flags = 0;
156 a->prev_this_sw_interface = pi;
157 a->next_this_sw_interface = ~0;
158 if (prev)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159 prev->next_this_sw_interface = ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
162 (hi != ~0) ? hi : ai;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 if (result_if_address_index)
164 *result_if_address_index = ai;
165 }
166 else
167 {
168 if (result_if_address_index)
169 *result_if_address_index = a - lm->if_address_pool;
170 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500171
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173 return /* no error */ 0;
174}
175
Neale Rannsd96bad82017-03-08 01:12:54 -0800176static clib_error_t *
177ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
178{
179 vec_validate_init_empty (ip4_main.
180 lookup_main.if_address_pool_index_by_sw_if_index,
181 sw_if_index, ~0);
182 vec_validate_init_empty (ip6_main.
183 lookup_main.if_address_pool_index_by_sw_if_index,
184 sw_if_index, ~0);
185
186 return (NULL);
187}
188
189VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
190
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191void
192ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500194 if (!lm->fib_result_n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 lm->fib_result_n_bytes = sizeof (uword);
196
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 lm->is_ip6 = is_ip6;
198 if (is_ip6)
199 {
200 lm->format_address_and_length = format_ip6_address_and_length;
201 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
202 sizeof (ip6_address_fib_t));
203 }
204 else
205 {
206 lm->format_address_and_length = format_ip4_address_and_length;
207 mhash_init (&lm->address_to_if_address_index, sizeof (uword),
208 sizeof (ip4_address_fib_t));
209 }
210
211 {
212 int i;
213
214 /* Setup all IP protocols to be punted and builtin-unknown. */
215 for (i = 0; i < 256; i++)
216 {
217 lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
218 lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
219 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
223 IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
224 lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
225 IP_BUILTIN_PROTOCOL_UDP;
226 lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
227 IP_PROTOCOL_ICMP] =
228 IP_BUILTIN_PROTOCOL_ICMP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 }
230}
231
Dave Barachd7cb1b52016-12-09 09:52:16 -0500232u8 *
233format_ip_flow_hash_config (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100235 flow_hash_config_t flow_hash_config = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500236
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237#define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
238 foreach_flow_hash_bit;
239#undef _
240
241 return s;
242}
243
Dave Barachd7cb1b52016-12-09 09:52:16 -0500244u8 *
245format_ip_lookup_next (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Neale Rannsfa5d1982017-02-20 14:19:51 -0800247 /* int promotion of ip_lookup_next_t */
248 ip_lookup_next_t n = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500249 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 switch (n)
252 {
253 default:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254 s = format (s, "unknown %d", n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 return s;
256
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257 case IP_LOOKUP_NEXT_DROP:
258 t = "drop";
259 break;
260 case IP_LOOKUP_NEXT_PUNT:
261 t = "punt";
262 break;
263 case IP_LOOKUP_NEXT_ARP:
264 t = "arp";
265 break;
266 case IP_LOOKUP_NEXT_MIDCHAIN:
267 t = "midchain";
268 break;
269 case IP_LOOKUP_NEXT_GLEAN:
270 t = "glean";
271 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000272 case IP_LOOKUP_NEXT_MCAST:
273 t = "mcast";
274 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 case IP_LOOKUP_NEXT_REWRITE:
276 break;
277 }
278
279 if (t)
280 vec_add (s, t, strlen (t));
281
282 return s;
283}
284
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285u8 *
286format_ip_adjacency_packet_data (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 u32 adj_index = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 u8 *packet_data = va_arg (*args, u8 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 u32 n_packet_data_bytes = va_arg (*args, u32);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291 ip_adjacency_t *adj = adj_get (adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
293 switch (adj->lookup_next_index)
294 {
295 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannsb069a692017-03-15 12:34:25 -0400296 case IP_LOOKUP_NEXT_MCAST:
297 s =
298 format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 break;
300
301 default:
302 break;
303 }
304
305 return s;
306}
307
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308static uword
309unformat_dpo (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100311 dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
312 fib_protocol_t fp = va_arg (*args, int);
313 dpo_proto_t proto;
314
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 proto = fib_proto_to_dpo (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
317 if (unformat (input, "drop"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 dpo_copy (dpo, drop_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 else if (unformat (input, "punt"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 dpo_copy (dpo, punt_dpo_get (proto));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 else if (unformat (input, "local"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100323 else if (unformat (input, "null-send-unreach"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100325 else if (unformat (input, "null-send-prohibit"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100327 else if (unformat (input, "null"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 else if (unformat (input, "classify"))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100330 {
331 u32 classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333 if (!unformat (input, "%d", &classify_table_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500334 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100335 clib_warning ("classify adj must specify table index");
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 }
338
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 dpo_set (dpo, DPO_CLASSIFY, proto,
340 classify_dpo_create (proto, classify_table_index));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 else
343 return 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 return 1;
346}
347
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100348const ip46_address_t zero_addr = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 .as_u64 = {
350 0, 0},
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100351};
352
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353clib_error_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100354vnet_ip_route_cmd (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 unformat_input_t * main_input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 unformat_input_t _line_input, *line_input = &_line_input;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100358 fib_route_path_t *rpaths = NULL, rpath;
Neale Ranns948e00f2016-10-20 13:39:34 +0100359 dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100360 fib_prefix_t *prefixs = NULL, pfx;
Neale Rannsad422ed2016-11-02 14:20:04 +0000361 mpls_label_t out_label, via_label;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500362 clib_error_t *error = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100363 u32 table_id, is_del;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 vnet_main_t *vnm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100365 u32 fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 f64 count;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100367 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 is_del = 0;
371 table_id = 0;
372 count = 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500373 memset (&pfx, 0, sizeof (pfx));
Neale Rannsad422ed2016-11-02 14:20:04 +0000374 out_label = via_label = MPLS_LABEL_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
376 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500377 if (!unformat_user (main_input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 return 0;
379
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
381 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 memset (&rpath, 0, sizeof (rpath));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 if (unformat (line_input, "table %d", &table_id))
385 ;
386 else if (unformat (line_input, "del"))
387 is_del = 1;
388 else if (unformat (line_input, "add"))
389 is_del = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100390 else if (unformat (line_input, "resolve-via-host"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391 {
392 if (vec_len (rpaths) == 0)
393 {
394 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 }
397 rpaths[vec_len (rpaths) - 1].frp_flags |=
398 FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
399 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100400 else if (unformat (line_input, "resolve-via-attached"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500401 {
402 if (vec_len (rpaths) == 0)
403 {
404 error = clib_error_return (0, "Paths then flags");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100405 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500406 }
407 rpaths[vec_len (rpaths) - 1].frp_flags |=
408 FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
409 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100410 else if (unformat (line_input, "out-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500411 unformat_mpls_unicast_label, &out_label))
412 {
413 if (vec_len (rpaths) == 0)
414 {
415 error = clib_error_return (0, "Paths then labels");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100416 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417 }
418 vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack, out_label);
419 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000420 else if (unformat (line_input, "via-label %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421 unformat_mpls_unicast_label, &rpath.frp_local_label))
422 {
Neale Rannsad422ed2016-11-02 14:20:04 +0000423 rpath.frp_weight = 1;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800424 rpath.frp_eos = MPLS_NON_EOS;
Neale Rannsad422ed2016-11-02 14:20:04 +0000425 rpath.frp_proto = FIB_PROTOCOL_MPLS;
426 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427 vec_add1 (rpaths, rpath);
428 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 else if (unformat (line_input, "count %f", &count))
430 ;
431
432 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500433 unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
434 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100435 pfx.fp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 vec_add1 (prefixs, pfx);
437 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 else if (unformat (line_input, "%U/%d",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500439 unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
440 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100441 pfx.fp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500442 vec_add1 (prefixs, pfx);
443 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100444 else if (unformat (line_input, "via %U %U weight %u",
445 unformat_ip4_address,
446 &rpath.frp_addr.ip4,
447 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 &rpath.frp_sw_if_index, &rpath.frp_weight))
449 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100450 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500451 vec_add1 (rpaths, rpath);
452 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
454 else if (unformat (line_input, "via %U %U weight %u",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100455 unformat_ip6_address,
456 &rpath.frp_addr.ip6,
457 unformat_vnet_sw_interface, vnm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458 &rpath.frp_sw_if_index, &rpath.frp_weight))
459 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100460 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461 vec_add1 (rpaths, rpath);
462 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
464 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100465 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500466 &rpath.frp_addr.ip4,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100467 unformat_vnet_sw_interface, vnm,
468 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500469 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100470 rpath.frp_weight = 1;
471 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 vec_add1 (rpaths, rpath);
473 }
474
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 else if (unformat (line_input, "via %U %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 &rpath.frp_addr.ip6,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100478 unformat_vnet_sw_interface, vnm,
479 &rpath.frp_sw_if_index))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500480 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481 rpath.frp_weight = 1;
482 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500483 vec_add1 (rpaths, rpath);
484 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100485 else if (unformat (line_input, "via %U next-hop-table %d",
486 unformat_ip4_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 &rpath.frp_addr.ip4, &rpath.frp_fib_index))
488 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100489 rpath.frp_weight = 1;
490 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100491 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500492 vec_add1 (rpaths, rpath);
493 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494 else if (unformat (line_input, "via %U next-hop-table %d",
495 unformat_ip6_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 &rpath.frp_addr.ip6, &rpath.frp_fib_index))
497 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 rpath.frp_weight = 1;
499 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100500 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500501 vec_add1 (rpaths, rpath);
502 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 unformat_ip4_address, &rpath.frp_addr.ip4))
505 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100506 /*
507 * the recursive next-hops are by default in the same table
508 * as the prefix
509 */
510 rpath.frp_fib_index = table_id;
511 rpath.frp_weight = 1;
512 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513 rpath.frp_proto = FIB_PROTOCOL_IP4;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 vec_add1 (rpaths, rpath);
515 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 else if (unformat (line_input, "via %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500517 unformat_ip6_address, &rpath.frp_addr.ip6))
518 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519 rpath.frp_fib_index = table_id;
520 rpath.frp_weight = 1;
521 rpath.frp_sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100522 rpath.frp_proto = FIB_PROTOCOL_IP6;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500523 vec_add1 (rpaths, rpath);
524 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100525 else if (unformat (line_input,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500526 "lookup in table %d", &rpath.frp_fib_index))
527 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100528 rpath.frp_proto = pfx.fp_proto;
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100529 rpath.frp_sw_if_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500530 vec_add1 (rpaths, rpath);
531 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100532 else if (vec_len (prefixs) > 0 &&
533 unformat (line_input, "via %U",
Neale Ranns8c2f05c2016-12-12 19:35:58 +0000534 unformat_vnet_sw_interface, vnm,
535 &rpath.frp_sw_if_index))
536 {
537 rpath.frp_weight = 1;
538 rpath.frp_proto = prefixs[0].fp_proto;
539 vec_add1 (rpaths, rpath);
540 }
541 else if (vec_len (prefixs) > 0 &&
542 unformat (line_input, "via %U",
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100543 unformat_dpo, &dpo, prefixs[0].fp_proto))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500544 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100545 vec_add1 (dpos, dpo);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500546 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500548 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549 error = unformat_parse_error (line_input);
550 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500551 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500553
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100554 if (vec_len (prefixs) == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500555 {
556 error =
557 clib_error_return (0, "expected ip4/ip6 destination address/length.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 goto done;
559 }
560
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100561 if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100563 error = clib_error_return (0, "expected paths.");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 goto done;
565 }
566
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100567 if (~0 == table_id)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500568 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100569 /*
570 * if no table_id is passed we will manipulate the default
571 */
572 fib_index = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500573 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100574 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500575 {
Neale Ranns107e7d42017-04-11 09:55:19 -0700576 fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100578 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500579 {
580 error = clib_error_return (0, "Nonexistent table id %d", table_id);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100581 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582 }
583 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585 for (i = 0; i < vec_len (prefixs); i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500586 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100587 if (is_del && 0 == vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500588 {
589 fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
590 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100591 else if (!is_del && 1 == vec_len (dpos))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500592 {
593 fib_table_entry_special_dpo_add (fib_index,
594 &prefixs[i],
595 FIB_SOURCE_CLI,
596 FIB_ENTRY_FLAG_EXCLUSIVE,
597 &dpos[0]);
598 dpo_reset (&dpos[0]);
599 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100600 else if (vec_len (dpos) > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500601 {
602 error =
603 clib_error_return (0,
604 "Load-balancing over multiple special adjacencies is unsupported");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100605 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100607 else if (0 < vec_len (rpaths))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500608 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100609 u32 k, j, n, incr;
610 ip46_address_t dst = prefixs[i].fp_addr;
611 f64 t[2];
612 n = count;
613 t[0] = vlib_time_now (vm);
614 incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
615 prefixs[i].fp_len);
616
617 for (k = 0; k < n; k++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500618 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100619 for (j = 0; j < vec_len (rpaths); j++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500620 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100621 u32 fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 /*
623 * the CLI parsing stored table Ids, swap to FIB indicies
624 */
Neale Ranns107e7d42017-04-11 09:55:19 -0700625 fi = fib_table_find (prefixs[i].fp_proto,
626 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100627
628 if (~0 == fi)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500629 {
630 error =
631 clib_error_return (0, "Via table %d does not exist",
632 rpaths[i].frp_fib_index);
Neale Ranns3ee44042016-10-03 13:05:48 +0100633 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500634 }
Neale Ranns3ee44042016-10-03 13:05:48 +0100635 rpaths[i].frp_fib_index = fi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100636
637 fib_prefix_t rpfx = {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500638 .fp_len = prefixs[i].fp_len,
639 .fp_proto = prefixs[i].fp_proto,
640 .fp_addr = dst,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100641 };
642
Dave Barachd7cb1b52016-12-09 09:52:16 -0500643 if (is_del)
644 fib_table_entry_path_remove2 (fib_index,
645 &rpfx,
646 FIB_SOURCE_CLI, &rpaths[j]);
647 else
648 fib_table_entry_path_add2 (fib_index,
649 &rpfx,
650 FIB_SOURCE_CLI,
651 FIB_ENTRY_FLAG_NONE,
652 &rpaths[j]);
653 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100654
655 if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500656 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100657 dst.ip4.as_u32 =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500658 clib_host_to_net_u32 (incr +
659 clib_net_to_host_u32 (dst.
660 ip4.as_u32));
661 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100662 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500663 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100664 int bucket = (incr < 64 ? 0 : 1);
665 dst.ip6.as_u64[bucket] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500666 clib_host_to_net_u64 (incr +
667 clib_net_to_host_u64 (dst.ip6.as_u64
668 [bucket]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100669
Dave Barachd7cb1b52016-12-09 09:52:16 -0500670 }
671 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100672 t[1] = vlib_time_now (vm);
673 if (count > 1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500674 vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
675 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100676 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500677 {
678 error = clib_error_return (0, "Don't understand what you want...");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100679 goto done;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500680 }
681 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100682
683
Dave Barachd7cb1b52016-12-09 09:52:16 -0500684done:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100685 vec_free (dpos);
686 vec_free (prefixs);
687 vec_free (rpaths);
Billy McFalla9a20e72017-02-15 11:39:12 -0500688 unformat_free (line_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689 return error;
690}
691
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
694 .path = "ip",
695 .short_help = "Internet protocol (IP) commands",
696};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500697/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
Dave Barachd7cb1b52016-12-09 09:52:16 -0500699/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400700VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
701 .path = "ip6",
702 .short_help = "Internet protocol version 6 (IPv6) commands",
703};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500704/* *INDENT-ON* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400705
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
708 .path = "show ip",
709 .short_help = "Internet protocol (IP) show commands",
710};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500711/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Dave Barachd7cb1b52016-12-09 09:52:16 -0500713/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
715 .path = "show ip6",
Billy McFall0683c9c2016-10-13 08:27:31 -0400716 .short_help = "Internet protocol version 6 (IPv6) show commands",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500718/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700720/*?
Billy McFall0683c9c2016-10-13 08:27:31 -0400721 * This command is used to add or delete IPv4 or IPv6 routes. All
722 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
723 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
724 * can be IPv4 or IPv6, but all must be of the same form in a single
725 * command. To display the current set of routes, use the commands
726 * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
727 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700728 * @cliexpar
Billy McFall0683c9c2016-10-13 08:27:31 -0400729 * Example of how to add a straight forward static route:
730 * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
731 * Example of how to delete a straight forward static route:
732 * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700733 * Mainly for route add/del performance testing, one can add or delete
734 * multiple routes by adding 'count N' to the previous item:
Billy McFall0683c9c2016-10-13 08:27:31 -0400735 * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700736 * Add multiple routes for the same destination to create equal-cost multipath:
Billy McFall0683c9c2016-10-13 08:27:31 -0400737 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
738 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
739 * For unequal-cost multipath, specify the desired weights. This
740 * combination of weights results in 3/4 of the traffic following the
741 * second path, 1/4 following the first path:
742 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
743 * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
744 * To add a route to a particular FIB table (VRF), use:
745 * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700746 ?*/
Billy McFall0683c9c2016-10-13 08:27:31 -0400747/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748VLIB_CLI_COMMAND (ip_route_command, static) = {
749 .path = "ip route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400750 .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>] [weight <weight>]] | [via arp <interface> <adj-hop-ip-addr>] | [via drop|punt|local<id>|arp|classify <classify-idx>] [lookup in table <out-table-id>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 .function = vnet_ip_route_cmd,
Dave Barachb2ef4dd2016-03-23 08:56:01 -0400752 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753};
Billy McFall0683c9c2016-10-13 08:27:31 -0400754/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Neale Ranns32e1c012016-11-22 17:07:28 +0000756clib_error_t *
757vnet_ip_mroute_cmd (vlib_main_t * vm,
758 unformat_input_t * main_input, vlib_cli_command_t * cmd)
759{
760 unformat_input_t _line_input, *line_input = &_line_input;
761 clib_error_t *error = NULL;
762 fib_route_path_t rpath;
763 u32 table_id, is_del;
764 vnet_main_t *vnm;
765 mfib_prefix_t pfx;
766 u32 fib_index;
767 mfib_itf_flags_t iflags = 0;
768 mfib_entry_flags_t eflags = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800769 u32 gcount, scount, ss, gg, incr;
770 f64 timet[2];
Neale Ranns32e1c012016-11-22 17:07:28 +0000771
Neale Ranns52456fc2017-02-15 00:38:27 -0800772 gcount = scount = 1;
Neale Ranns32e1c012016-11-22 17:07:28 +0000773 vnm = vnet_get_main ();
774 is_del = 0;
775 table_id = 0;
776 memset (&pfx, 0, sizeof (pfx));
777 memset (&rpath, 0, sizeof (rpath));
778 rpath.frp_sw_if_index = ~0;
779
780 /* Get a line of input. */
781 if (!unformat_user (main_input, unformat_line_input, line_input))
782 return 0;
783
784 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
785 {
786 if (unformat (line_input, "table %d", &table_id))
787 ;
788 else if (unformat (line_input, "del"))
789 is_del = 1;
790 else if (unformat (line_input, "add"))
791 is_del = 0;
Neale Ranns52456fc2017-02-15 00:38:27 -0800792 else if (unformat (line_input, "scount %d", &scount))
793 ;
794 else if (unformat (line_input, "gcount %d", &gcount))
795 ;
Neale Ranns32e1c012016-11-22 17:07:28 +0000796 else if (unformat (line_input, "%U %U",
797 unformat_ip4_address,
798 &pfx.fp_src_addr.ip4,
799 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
800 {
801 pfx.fp_proto = FIB_PROTOCOL_IP4;
802 pfx.fp_len = 64;
803 }
804 else if (unformat (line_input, "%U %U",
805 unformat_ip6_address,
806 &pfx.fp_src_addr.ip6,
807 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
808 {
809 pfx.fp_proto = FIB_PROTOCOL_IP6;
810 pfx.fp_len = 256;
811 }
812 else if (unformat (line_input, "%U/%d",
813 unformat_ip4_address,
814 &pfx.fp_grp_addr.ip4, &pfx.fp_len))
815 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700816 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
Neale Ranns32e1c012016-11-22 17:07:28 +0000817 pfx.fp_proto = FIB_PROTOCOL_IP4;
818 }
819 else if (unformat (line_input, "%U/%d",
820 unformat_ip6_address,
821 &pfx.fp_grp_addr.ip6, &pfx.fp_len))
822 {
Neale Rannsc7409dc2017-05-19 02:54:32 -0700823 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
Neale Ranns32e1c012016-11-22 17:07:28 +0000824 pfx.fp_proto = FIB_PROTOCOL_IP6;
825 }
826 else if (unformat (line_input, "%U",
827 unformat_ip4_address, &pfx.fp_grp_addr.ip4))
828 {
829 memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
830 pfx.fp_proto = FIB_PROTOCOL_IP4;
831 pfx.fp_len = 32;
832 }
833 else if (unformat (line_input, "%U",
834 unformat_ip6_address, &pfx.fp_grp_addr.ip6))
835 {
836 memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
837 pfx.fp_proto = FIB_PROTOCOL_IP6;
838 pfx.fp_len = 128;
839 }
840 else if (unformat (line_input, "via %U",
841 unformat_vnet_sw_interface, vnm,
842 &rpath.frp_sw_if_index))
843 {
844 rpath.frp_weight = 1;
Neale Ranns5d85f2d2017-05-02 10:17:17 -0700845 }
846 else if (unformat (line_input, "via local"))
847 {
848 rpath.frp_sw_if_index = ~0;
849 rpath.frp_weight = 1;
850 rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
Neale Ranns32e1c012016-11-22 17:07:28 +0000851 }
852 else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
853 ;
854 else if (unformat (line_input, "%U",
855 unformat_mfib_entry_flags, &eflags))
856 ;
857 else
858 {
859 error = unformat_parse_error (line_input);
860 goto done;
861 }
862 }
863
Neale Ranns32e1c012016-11-22 17:07:28 +0000864 if (~0 == table_id)
865 {
866 /*
867 * if no table_id is passed we will manipulate the default
868 */
869 fib_index = 0;
870 }
871 else
872 {
873 fib_index = mfib_table_find (pfx.fp_proto, table_id);
874
875 if (~0 == fib_index)
876 {
877 error = clib_error_return (0, "Nonexistent table id %d", table_id);
878 goto done;
879 }
880 }
881
Neale Ranns52456fc2017-02-15 00:38:27 -0800882 timet[0] = vlib_time_now (vm);
883
884 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
Neale Ranns32e1c012016-11-22 17:07:28 +0000885 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800886 incr = 1 << (32 - (pfx.fp_len % 32));
Neale Ranns32e1c012016-11-22 17:07:28 +0000887 }
888 else
889 {
Neale Ranns52456fc2017-02-15 00:38:27 -0800890 incr = 1 << (128 - (pfx.fp_len % 128));
Neale Ranns32e1c012016-11-22 17:07:28 +0000891 }
892
Neale Ranns52456fc2017-02-15 00:38:27 -0800893 for (ss = 0; ss < scount; ss++)
894 {
895 for (gg = 0; gg < gcount; gg++)
896 {
897 if (is_del && 0 == rpath.frp_weight)
898 {
899 /* no path provided => route delete */
900 mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
901 }
902 else if (eflags)
903 {
904 mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800905 MFIB_RPF_ID_NONE, eflags);
Neale Ranns52456fc2017-02-15 00:38:27 -0800906 }
907 else
908 {
909 if (is_del)
910 mfib_table_entry_path_remove (fib_index,
911 &pfx, MFIB_SOURCE_CLI, &rpath);
912 else
913 mfib_table_entry_path_update (fib_index,
914 &pfx, MFIB_SOURCE_CLI, &rpath,
915 iflags);
916 }
917
918 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
919 {
920 pfx.fp_grp_addr.ip4.as_u32 =
921 clib_host_to_net_u32 (incr +
922 clib_net_to_host_u32 (pfx.
923 fp_grp_addr.ip4.
924 as_u32));
925 }
926 else
927 {
928 int bucket = (incr < 64 ? 0 : 1);
929 pfx.fp_grp_addr.ip6.as_u64[bucket] =
930 clib_host_to_net_u64 (incr +
931 clib_net_to_host_u64 (pfx.
932 fp_grp_addr.ip6.as_u64
933 [bucket]));
934
935 }
936 }
937 if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
938 {
939 pfx.fp_src_addr.ip4.as_u32 =
940 clib_host_to_net_u32 (1 +
941 clib_net_to_host_u32 (pfx.fp_src_addr.
942 ip4.as_u32));
943 }
944 else
945 {
946 pfx.fp_src_addr.ip6.as_u64[1] =
947 clib_host_to_net_u64 (1 +
948 clib_net_to_host_u64 (pfx.fp_src_addr.
949 ip6.as_u64[1]));
950 }
951 }
952
953 timet[1] = vlib_time_now (vm);
954
955 if (scount > 1 || gcount > 1)
956 vlib_cli_output (vm, "%.6e routes/sec",
957 (scount * gcount) / (timet[1] - timet[0]));
958
Neale Ranns32e1c012016-11-22 17:07:28 +0000959done:
Billy McFalla9a20e72017-02-15 11:39:12 -0500960 unformat_free (line_input);
961
Neale Ranns32e1c012016-11-22 17:07:28 +0000962 return error;
963}
964
965/*?
966 * This command is used to add or delete IPv4 or IPv6 multicastroutes. All
967 * IP Addresses ('<em><dst-ip-addr>/<width></em>',
968 * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
969 * can be IPv4 or IPv6, but all must be of the same form in a single
970 * command. To display the current set of routes, use the commands
971 * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
972 * The full set of support flags for interfaces and route is shown via;
973 * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
974 * respectively.
975 * @cliexpar
976 * Example of how to add a forwarding interface to a route (and create the
977 * route if it does not exist)
978 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
979 * Example of how to add an accepting interface to a route (and create the
980 * route if it does not exist)
981 * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
982 * Example of changing the route's flags to send signals via the API
983 * @cliexcmd{ip mroute add 232.1.1.1 Signal}
984
985 ?*/
986/* *INDENT-OFF* */
987VLIB_CLI_COMMAND (ip_mroute_command, static) =
988{
989 .path = "ip mroute",
990 .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
991 .function = vnet_ip_mroute_cmd,
992 .is_mp_safe = 1,
993};
994/* *INDENT-ON* */
995
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100996/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997 * The next two routines address a longstanding script hemorrhoid.
998 * Probing a v4 or v6 neighbor needs to appear to be synchronous,
999 * or dependent route-adds will simply fail.
1000 */
1001static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001002ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001003 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001004{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001005 vnet_main_t *vnm = vnet_get_main ();
1006 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 int i;
1008 int resolved = 0;
1009 uword event_type;
1010 uword *event_data = 0;
1011
Dave Barachd7cb1b52016-12-09 09:52:16 -05001012 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013
1014 if (retry_count > 0)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001015 vnet_register_ip6_neighbor_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001017 1 /* event */ , 0 /* data */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018
1019 for (i = 0; i < retry_count; i++)
1020 {
1021 /* The interface may be down, etc. */
1022 e = ip6_probe_neighbor (vm, a, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001023
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 if (e)
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001025 return e;
1026
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 vlib_process_wait_for_event_or_clock (vm, 1.0);
1028 event_type = vlib_process_get_events (vm, &event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001029 switch (event_type)
1030 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001031 case 1: /* resolved... */
1032 vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1033 resolved = 1;
1034 goto done;
1035
1036 case ~0: /* timeout */
1037 break;
1038
1039 default:
1040 clib_warning ("unknown event_type %d", event_type);
1041 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001042 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001044
1045done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046
1047 if (!resolved)
1048 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001049 format_ip6_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050 return 0;
1051}
1052
1053static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -05001054ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1055 int retry_count)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001057 vnet_main_t *vnm = vnet_get_main ();
1058 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059 int i;
1060 int resolved = 0;
1061 uword event_type;
1062 uword *event_data = 0;
1063
Dave Barachd7cb1b52016-12-09 09:52:16 -05001064 ASSERT (vlib_in_process_context (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065
1066 if (retry_count > 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001067 vnet_register_ip4_arp_resolution_event
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068 (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001069 1 /* event */ , 0 /* data */ );
1070
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 for (i = 0; i < retry_count; i++)
1072 {
1073 /* The interface may be down, etc. */
1074 e = ip4_probe_neighbor (vm, a, sw_if_index);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001075
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 if (e)
Dave Barachd7cb1b52016-12-09 09:52:16 -05001077 return e;
1078
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 vlib_process_wait_for_event_or_clock (vm, 1.0);
1080 event_type = vlib_process_get_events (vm, &event_data);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001081 switch (event_type)
1082 {
1083 case 1: /* resolved... */
1084 vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1085 resolved = 1;
1086 goto done;
1087
1088 case ~0: /* timeout */
1089 break;
1090
1091 default:
1092 clib_warning ("unknown event_type %d", event_type);
1093 }
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001094 vec_reset_length (event_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001095 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001096
1097done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098
1099 vec_reset_length (event_data);
1100
1101 if (!resolved)
1102 return clib_error_return (0, "Resolution failed for %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -05001103 format_ip4_address, a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 return 0;
1105}
1106
1107static clib_error_t *
1108probe_neighbor_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -05001109 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110{
Dave Barachd7cb1b52016-12-09 09:52:16 -05001111 vnet_main_t *vnm = vnet_get_main ();
1112 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 ip4_address_t a4;
1114 ip6_address_t a6;
Dave Barachd7cb1b52016-12-09 09:52:16 -05001115 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116 u32 sw_if_index = ~0;
1117 int retry_count = 3;
1118 int is_ip4 = 1;
1119 int address_set = 0;
1120
1121 /* Get a line of input. */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001122 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123 return 0;
1124
Dave Barachd7cb1b52016-12-09 09:52:16 -05001125 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 {
Dave Barachd7cb1b52016-12-09 09:52:16 -05001127 if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1128 &sw_if_index))
1129 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 else if (unformat (line_input, "retry %d", &retry_count))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001131 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132
1133 else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001134 address_set++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001135 else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -05001136 {
1137 address_set++;
1138 is_ip4 = 0;
1139 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140 else
Billy McFalla9a20e72017-02-15 11:39:12 -05001141 {
1142 error = clib_error_return (0, "unknown input '%U'",
1143 format_unformat_error, line_input);
1144 goto done;
1145 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 }
1147
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148 if (sw_if_index == ~0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001149 {
1150 error = clib_error_return (0, "Interface required, not set.");
1151 goto done;
1152 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 if (address_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -05001154 {
1155 error = clib_error_return (0, "ip address required, not set.");
1156 goto done;
1157 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158 if (address_set > 1)
Billy McFalla9a20e72017-02-15 11:39:12 -05001159 {
1160 error = clib_error_return (0, "Multiple ip addresses not supported.");
1161 goto done;
1162 }
Dave Barachd7cb1b52016-12-09 09:52:16 -05001163
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 if (is_ip4)
1165 error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
Dave Barachd7cb1b52016-12-09 09:52:16 -05001166 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1168
Billy McFalla9a20e72017-02-15 11:39:12 -05001169done:
1170 unformat_free (line_input);
1171
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172 return error;
1173}
1174
Billy McFall0683c9c2016-10-13 08:27:31 -04001175/*?
1176 * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1177 * attempts IPv6 neighbor discovery depending on the supplied IP address
1178 * format.
1179 *
1180 * @note This command will not immediately affect the indicated FIB; it
1181 * is not suitable for use in establishing a FIB entry prior to adding
1182 * recursive FIB entries. As in: don't use it in a script to probe a
1183 * gateway prior to adding a default route. It won't work. Instead,
1184 * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1185 * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1186 *
1187 * @cliexpar
1188 * Example of probe for an IPv4 address:
1189 * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1190?*/
1191/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1193 .path = "ip probe-neighbor",
1194 .function = probe_neighbor_address,
Billy McFall0683c9c2016-10-13 08:27:31 -04001195 .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
Dave Barachb2ef4dd2016-03-23 08:56:01 -04001196 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197};
Billy McFall0683c9c2016-10-13 08:27:31 -04001198/* *INDENT-ON* */
Dave Barachd7cb1b52016-12-09 09:52:16 -05001199
1200/*
1201 * fd.io coding-style-patch-verification: ON
1202 *
1203 * Local Variables:
1204 * eval: (c-set-style "gnu")
1205 * End:
1206 */