blob: 73dabfdc23abae10943fb9cea35299608106c6b7 [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#include <vnet/ip/ip.h>
16#include <vnet/ethernet/ethernet.h>
17
Billy McFall0683c9c2016-10-13 08:27:31 -040018/**
19 * @file
20 * @brief IPv4 FIB Tester.
21 *
22 * Not compiled in by default. IPv4 FIB tester. Add, probe, delete a bunch of
Ed Warnickecb9cada2015-12-08 15:45:58 -070023 * random routes / masks and make sure that the mtrie agrees with
24 * the hash-table FIB.
Dave Barachd7cb1b52016-12-09 09:52:16 -050025 *
Ed Warnickecb9cada2015-12-08 15:45:58 -070026 * Manipulate the FIB by means of the debug CLI commands, to minimize
27 * the chances of doing something idiotic.
28 */
29
Dave Barachd7cb1b52016-12-09 09:52:16 -050030/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070031 * These routines need to be redeclared non-static elsewhere.
32 *
33 * Also: rename ip_route() -> vnet_ip_route_cmd() and add the usual
34 * test_route_init() call to main.c
35 */
Dave Barachd7cb1b52016-12-09 09:52:16 -050036clib_error_t *vnet_ip_route_cmd (vlib_main_t * vm,
37 unformat_input_t * input,
38 vlib_cli_command_t * cmd_arg);
Ed Warnickecb9cada2015-12-08 15:45:58 -070039
Dave Barachd7cb1b52016-12-09 09:52:16 -050040int ip4_lookup_validate (ip4_address_t * a, u32 fib_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070041
Dave Barachd7cb1b52016-12-09 09:52:16 -050042ip4_fib_t *find_fib_by_table_index_or_id (ip4_main_t * im,
43 u32 table_index_or_id, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
45/* Routes to insert/delete/probe in FIB */
Dave Barachd7cb1b52016-12-09 09:52:16 -050046typedef struct
47{
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 ip4_address_t address;
49 u32 mask_width;
Dave Barachd7cb1b52016-12-09 09:52:16 -050050 u32 interface_id; /* not an xx_if_index */
Ed Warnickecb9cada2015-12-08 15:45:58 -070051} test_route_t;
52
Dave Barachd7cb1b52016-12-09 09:52:16 -050053typedef struct
54{
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 /* Test routes in use */
56 test_route_t *route_pool;
57
58 /* Number of fake ethernets created */
59 u32 test_interfaces_created;
60} test_main_t;
61
62test_main_t test_main;
63
64/* fake ethernet device class, distinct from "fake-ethX" */
Dave Barachd7cb1b52016-12-09 09:52:16 -050065static u8 *
66format_test_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067{
68 u32 dev_instance = va_arg (*args, u32);
69 return format (s, "test-eth%d", dev_instance);
70}
71
Dave Barachd7cb1b52016-12-09 09:52:16 -050072static uword
73dummy_interface_tx (vlib_main_t * vm,
74 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -070075{
76 clib_warning ("you shouldn't be here, leaking buffers...");
77 return frame->n_vectors;
78}
79
Dave Barachd7cb1b52016-12-09 09:52:16 -050080/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070081VNET_DEVICE_CLASS (test_interface_device_class,static) = {
82 .name = "Test interface",
83 .format_device_name = format_test_interface_name,
84 .tx_function = dummy_interface_tx,
85};
Dave Barachd7cb1b52016-12-09 09:52:16 -050086/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
88static clib_error_t *
Dave Barachd7cb1b52016-12-09 09:52:16 -050089thrash (vlib_main_t * vm,
90 unformat_input_t * main_input, vlib_cli_command_t * cmd_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -070091{
92 u32 seed = 0xdeaddabe;
93 u32 niter = 10;
94 u32 nroutes = 10;
95 u32 ninterfaces = 4;
96 f64 min_mask_bits = 7.0;
97 f64 max_mask_bits = 32.0;
Dave Barachd7cb1b52016-12-09 09:52:16 -050098 u32 table_id = 11; /* my amp goes to 11 (use fib 11) */
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 u32 table_index;
100 int iter, i;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500101 u8 *cmd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 test_route_t *tr;
103 test_main_t *tm = &test_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500104 ip4_main_t *im = &ip4_main;
105 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 unformat_input_t cmd_input;
107 f64 rf;
108 u32 *masks = 0;
109 u32 tmp;
110 u32 hw_if_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 uword *p;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 u8 hw_address[6];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 ip4_fib_t *fib;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 int verbose = 0;
117
118 /* Precompute mask width -> mask vector */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500119 tmp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 vec_validate (masks, 32);
121 for (i = 32; i > 0; i--)
122 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123 masks[i] = tmp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 tmp <<= 1;
125 }
126
127 if (unformat_user (main_input, unformat_line_input, line_input))
128 {
129 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500130 {
131 if (unformat (line_input, "seed %d", &seed))
132 ;
133 else if (unformat (line_input, "niter %d", &niter))
134 ;
135 else if (unformat (line_input, "nroutes %d", &nroutes))
136 ;
137 else if (unformat (line_input, "ninterfaces %d", &ninterfaces))
138 ;
139 else if (unformat (line_input, "min-mask-bits %d", &tmp))
140 min_mask_bits = (f64) tmp;
141 else if (unformat (line_input, "max-mask-bits %d", &tmp))
142 max_mask_bits = (f64) tmp;
143 else if (unformat (line_input, "verbose"))
144 verbose = 1;
145 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500146 {
147 error = clib_error_return (0, "unknown input `%U'",
148 format_unformat_error, line_input);
149 goto done;
150 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500151 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 }
153
154 /* Find or create FIB table 11 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100155 fib = ip4_fib_find_or_create_fib_by_table_id (table_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 for (i = tm->test_interfaces_created; i < ninterfaces; i++)
158 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500159 vnet_hw_interface_t *hw;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 memset (hw_address, 0, sizeof (hw_address));
161 hw_address[0] = 0xd0;
162 hw_address[1] = 0x0f;
163 hw_address[5] = i;
164
165 error = ethernet_register_interface
Dave Barachd7cb1b52016-12-09 09:52:16 -0500166 (vnm, test_interface_device_class.index, i /* instance */ ,
167 hw_address, &hw_if_index,
168 /* flag change */ 0);
169
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 /* Fake interfaces use FIB table 11 */
171 hw = vnet_get_hw_interface (vnm, hw_if_index);
172 vec_validate (im->fib_index_by_sw_if_index, hw->sw_if_index);
173 im->fib_index_by_sw_if_index[hw->sw_if_index] = fib->index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500174 ip4_sw_interface_enable_disable (sw_if_index, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175 }
176
177 tm->test_interfaces_created = ninterfaces;
178
179 /* Find fib index corresponding to FIB id 11 */
180 p = hash_get (im->fib_index_by_table_id, table_id);
181 if (p == 0)
182 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183 vlib_cli_output (vm, "Couldn't map fib id %d to fib index\n", table_id);
Billy McFalla9a20e72017-02-15 11:39:12 -0500184 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 }
186 table_index = p[0];
187
188 for (iter = 0; iter < niter; iter++)
189 {
190 /* Pick random routes to install */
191 for (i = 0; i < nroutes; i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 {
193 int j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
Dave Barachd7cb1b52016-12-09 09:52:16 -0500195 pool_get (tm->route_pool, tr);
196 memset (tr, 0, sizeof (*tr));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Dave Barachd7cb1b52016-12-09 09:52:16 -0500198 again:
199 rf = random_f64 (&seed);
200 tr->mask_width = (u32) (min_mask_bits
201 + rf * (max_mask_bits - min_mask_bits));
202 tmp = random_u32 (&seed);
203 tmp &= masks[tr->mask_width];
204 tr->address.as_u32 = clib_host_to_net_u32 (tmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206 /* We can't add the same address/mask twice... */
207 for (j = 0; j < i; j++)
208 {
209 test_route_t *prev;
210 prev = pool_elt_at_index (tm->route_pool, j);
211 if ((prev->address.as_u32 == tr->address.as_u32)
212 && (prev->mask_width == tr->mask_width))
213 goto again;
214 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Dave Barachd7cb1b52016-12-09 09:52:16 -0500216 rf = random_f64 (&seed);
217 tr->interface_id = (u32) (rf * ninterfaces);
218 }
219
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 /* Add them */
221 for (i = 0; i < nroutes; i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 {
223 tr = pool_elt_at_index (tm->route_pool, i);
224 cmd = format (0, "add table %d %U/%d via test-eth%d",
225 table_id,
226 format_ip4_address, &tr->address,
227 tr->mask_width, tr->interface_id);
228 vec_add1 (cmd, 0);
229 if (verbose)
230 fformat (stderr, "ip route %s\n", cmd);
231 unformat_init_string (&cmd_input, (char *) cmd, vec_len (cmd) - 1);
232 error = vnet_ip_route_cmd (vm, &cmd_input, cmd_arg);
233 if (error)
234 clib_error_report (error);
235 unformat_free (&cmd_input);
236 vec_free (cmd);
237 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 /* Probe them */
239 for (i = 0; i < nroutes; i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500240 {
241 tr = pool_elt_at_index (tm->route_pool, i);
242 if (!ip4_lookup_validate (&tr->address, table_index))
243 {
244 if (verbose)
245 fformat (stderr, "test lookup table %d %U\n",
246 table_index, format_ip4_address, &tr->address);
247
248 fformat (stderr, "FAIL-after-insert: %U/%d\n",
249 format_ip4_address, &tr->address, tr->mask_width);
250 }
251 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
253 /* Delete them */
254 for (i = 0; i < nroutes; i++)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500255 {
256 int j;
257 tr = pool_elt_at_index (tm->route_pool, i);
258 if (0)
259 cmd = format (0, "del table %d %U/%d via test-eth%d",
260 table_id,
261 format_ip4_address, &tr->address,
262 tr->mask_width, tr->interface_id);
263 else
264 cmd = format (0, "del table %d %U/%d",
265 table_id,
266 format_ip4_address, &tr->address, tr->mask_width);
267 vec_add1 (cmd, 0);
268 if (verbose)
269 fformat (stderr, "ip route %s\n", cmd);
270 unformat_init_string (&cmd_input, (char *) cmd, vec_len (cmd) - 1);
271 error = vnet_ip_route_cmd (vm, &cmd_input, cmd_arg);
272 if (error)
273 clib_error_report (error);
274 unformat_free (&cmd_input);
275 vec_free (cmd);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
Dave Barachd7cb1b52016-12-09 09:52:16 -0500277 /* Make sure all undeleted routes still work */
278 for (j = i + 1; j < nroutes; j++)
279 {
280 test_route_t *rr; /* remaining route */
281 rr = pool_elt_at_index (tm->route_pool, j);
282 if (!ip4_lookup_validate (&rr->address, table_index))
283 {
284 if (verbose)
285 fformat (stderr, "test lookup table %d %U\n",
286 table_index, format_ip4_address, &rr->address);
287
288 fformat (stderr, "FAIL: %U/%d AWOL\n",
289 format_ip4_address, &rr->address, rr->mask_width);
290 fformat (stderr, " iter %d after %d of %d deletes\n",
291 iter, i, nroutes);
292 fformat (stderr, " last route deleted %U/%d\n",
293 format_ip4_address, &tr->address, tr->mask_width);
294 }
295 }
296 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
298 pool_free (tm->route_pool);
299 }
Billy McFalla9a20e72017-02-15 11:39:12 -0500300
301done:
302 unformat_free (line_input);
303
304 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305}
306
Billy McFall0683c9c2016-10-13 08:27:31 -0400307/*?
308 * This command in not in the build by default. It is an internal
309 * command used to test the route functonality.
310 *
311 * Create test routes on IPv4 FIB table 11. Table will be created if it
312 * does not exist.
313 *
314 * There are several optional attributes:
315 * - If not provided, <seed> defaults to 0xdeaddabe.
316 * - If not provided, <num-iter> defaults to 10.
317 * - If not provided, <num-iface> defaults to 4.
318 * - If not provided, <min-mask> defaults to 7.0.
319 * - If not provided, <max-mask> defaults to 32.0.
320 *
321 * @cliexpar
322 * Example of how to run:
323 * @cliexcmd{test route}
324?*/
325/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326VLIB_CLI_COMMAND (test_route_command, static) = {
327 .path = "test route",
Billy McFall0683c9c2016-10-13 08:27:31 -0400328 .short_help = "test route [seed <seed-num>] [niter <num-iter>] [ninterfaces <num-iface>] [min-mask-bits <min-mask>] [max-mask-bits <max-mask>] [verbose]", .function = thrash,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 .function = thrash,
330};
Billy McFall0683c9c2016-10-13 08:27:31 -0400331/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333clib_error_t *
334test_route_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335{
336 return 0;
337}
338
339VLIB_INIT_FUNCTION (test_route_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500340
341/*
342 * fd.io coding-style-patch-verification: ON
343 *
344 * Local Variables:
345 * eval: (c-set-style "gnu")
346 * End:
347 */