ip6: fix IPv6 address calculation error using "ip route add" CLI
[vpp.git] / src / vnet / ip / lookup.c
1 /*
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 management
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
40 #include <vnet/ip/ip.h>
41 #include <vnet/adj/adj.h>
42 #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>
46 #include <vnet/mfib/mfib_table.h>
47 #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>
51 #include <vnet/dpo/ip_null_dpo.h>
52
53 /**
54  * @file
55  * @brief IPv4 and IPv6 adjacency and lookup table management.
56  *
57  */
58
59 static clib_error_t *
60 ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
61 {
62   vec_validate_init_empty (ip4_main.
63                            lookup_main.if_address_pool_index_by_sw_if_index,
64                            sw_if_index, ~0);
65   vec_validate_init_empty (ip6_main.
66                            lookup_main.if_address_pool_index_by_sw_if_index,
67                            sw_if_index, ~0);
68
69   return (NULL);
70 }
71
72 VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
73
74 void
75 ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
76 {
77   if (!lm->fib_result_n_bytes)
78     lm->fib_result_n_bytes = sizeof (uword);
79
80   lm->is_ip6 = is_ip6;
81   mhash_init (&lm->prefix_to_if_prefix_index, sizeof (uword),
82               sizeof (ip_interface_prefix_key_t));
83   if (is_ip6)
84     {
85       lm->format_address_and_length = format_ip6_address_and_length;
86       mhash_init (&lm->address_to_if_address_index, sizeof (uword),
87                   sizeof (ip6_address_fib_t));
88     }
89   else
90     {
91       lm->format_address_and_length = format_ip4_address_and_length;
92       mhash_init (&lm->address_to_if_address_index, sizeof (uword),
93                   sizeof (ip4_address_fib_t));
94     }
95
96   {
97     int i;
98
99     /* Setup all IP protocols to be punted and builtin-unknown. */
100     for (i = 0; i < 256; i++)
101       {
102         lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
103         lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
104       }
105
106     lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
107     lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
108                                   IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
109     lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
110       IP_BUILTIN_PROTOCOL_UDP;
111     lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
112                                         IP_PROTOCOL_ICMP] =
113       IP_BUILTIN_PROTOCOL_ICMP;
114   }
115 }
116
117 u8 *
118 format_ip_flow_hash_config (u8 * s, va_list * args)
119 {
120   flow_hash_config_t flow_hash_config = va_arg (*args, u32);
121
122 #define _(n, b, v)                                                            \
123   if (flow_hash_config & v)                                                   \
124     s = format (s, "%s ", #n);
125   foreach_flow_hash_bit;
126 #undef _
127
128   return s;
129 }
130
131 u8 *
132 format_ip_adjacency_packet_data (u8 * s, va_list * args)
133 {
134   u8 *packet_data = va_arg (*args, u8 *);
135   u32 n_packet_data_bytes = va_arg (*args, u32);
136
137   s = format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
138
139   return s;
140 }
141
142 static uword
143 unformat_dpo (unformat_input_t * input, va_list * args)
144 {
145   dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
146   fib_protocol_t fp = va_arg (*args, int);
147   dpo_proto_t proto;
148
149   proto = fib_proto_to_dpo (fp);
150
151   if (unformat (input, "drop"))
152     dpo_copy (dpo, drop_dpo_get (proto));
153   else if (unformat (input, "punt"))
154     dpo_copy (dpo, punt_dpo_get (proto));
155   else if (unformat (input, "local"))
156     receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
157   else if (unformat (input, "null-send-unreach"))
158     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
159   else if (unformat (input, "null-send-prohibit"))
160     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
161   else if (unformat (input, "null"))
162     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
163   else if (unformat (input, "classify"))
164     {
165       u32 classify_table_index;
166
167       if (!unformat (input, "%d", &classify_table_index))
168         {
169           clib_warning ("classify adj must specify table index");
170           return 0;
171         }
172
173       dpo_set (dpo, DPO_CLASSIFY, proto,
174                classify_dpo_create (proto, classify_table_index));
175     }
176   else
177     return 0;
178
179   return 1;
180 }
181
182 const ip46_address_t zero_addr = {
183   .as_u64 = {
184              0, 0},
185 };
186
187 static clib_error_t *
188 vnet_ip_route_cmd (vlib_main_t * vm,
189                    unformat_input_t * main_input, vlib_cli_command_t * cmd)
190 {
191   unformat_input_t _line_input, *line_input = &_line_input;
192   u32 table_id, is_del, fib_index, payload_proto;
193   dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
194   fib_route_path_t *rpaths = NULL, rpath;
195   fib_prefix_t *prefixs = NULL, pfx;
196   clib_error_t *error = NULL;
197   f64 count;
198   int i;
199
200   is_del = 0;
201   table_id = 0;
202   count = 1;
203   clib_memset (&pfx, 0, sizeof (pfx));
204
205   /* Get a line of input. */
206   if (!unformat_user (main_input, unformat_line_input, line_input))
207     return 0;
208
209   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
210     {
211       clib_memset (&rpath, 0, sizeof (rpath));
212
213       if (unformat (line_input, "table %d", &table_id))
214         ;
215       else if (unformat (line_input, "count %f", &count))
216         ;
217
218       else if (unformat (line_input, "%U/%d",
219                          unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
220         {
221           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
222           vec_add1 (prefixs, pfx);
223         }
224       else if (unformat (line_input, "%U/%d",
225                          unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
226         {
227           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
228           vec_add1 (prefixs, pfx);
229         }
230       else if (unformat (line_input, "via %U",
231                          unformat_fib_route_path, &rpath, &payload_proto))
232         {
233           vec_add1 (rpaths, rpath);
234         }
235       else if (vec_len (prefixs) > 0 &&
236                unformat (line_input, "via %U",
237                          unformat_dpo, &dpo, prefixs[0].fp_proto))
238         {
239           vec_add1 (dpos, dpo);
240         }
241       else if (unformat (line_input, "del"))
242         is_del = 1;
243       else if (unformat (line_input, "add"))
244         is_del = 0;
245       else
246         {
247           error = unformat_parse_error (line_input);
248           goto done;
249         }
250     }
251
252   if (vec_len (prefixs) == 0)
253     {
254       error =
255         clib_error_return (0, "expected ip4/ip6 destination address/length.");
256       goto done;
257     }
258
259   if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
260     {
261       error = clib_error_return (0, "expected paths.");
262       goto done;
263     }
264
265   if (~0 == table_id)
266     {
267       /*
268        * if no table_id is passed we will manipulate the default
269        */
270       fib_index = 0;
271     }
272   else
273     {
274       fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
275
276       if (~0 == fib_index)
277         {
278           error = clib_error_return (0, "Nonexistent table id %d", table_id);
279           goto done;
280         }
281     }
282
283   for (i = 0; i < vec_len (prefixs); i++)
284     {
285       if (is_del && 0 == vec_len (rpaths))
286         {
287           fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
288         }
289       else if (!is_del && 1 == vec_len (dpos))
290         {
291           fib_table_entry_special_dpo_add (fib_index,
292                                            &prefixs[i],
293                                            FIB_SOURCE_CLI,
294                                            FIB_ENTRY_FLAG_EXCLUSIVE,
295                                            &dpos[0]);
296           dpo_reset (&dpos[0]);
297         }
298       else if (vec_len (dpos) > 0)
299         {
300           error =
301             clib_error_return (0,
302                                "Load-balancing over multiple special adjacencies is unsupported");
303           goto done;
304         }
305       else if (0 < vec_len (rpaths))
306         {
307           u32 k, n;
308           f64 t[2];
309           n = count;
310           t[0] = vlib_time_now (vm);
311
312           for (k = 0; k < n; k++)
313             {
314               fib_prefix_t rpfx = {
315                 .fp_len = prefixs[i].fp_len,
316                 .fp_proto = prefixs[i].fp_proto,
317                 .fp_addr = prefixs[i].fp_addr,
318               };
319
320               if (is_del)
321                 fib_table_entry_path_remove2 (fib_index,
322                                               &rpfx, FIB_SOURCE_CLI, rpaths);
323               else
324                 fib_table_entry_path_add2 (fib_index,
325                                            &rpfx,
326                                            FIB_SOURCE_CLI,
327                                            FIB_ENTRY_FLAG_NONE, rpaths);
328
329               fib_prefix_increment (&prefixs[i]);
330             }
331
332           t[1] = vlib_time_now (vm);
333           if (count > 1)
334             vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
335         }
336       else
337         {
338           error = clib_error_return (0, "Don't understand what you want...");
339           goto done;
340         }
341     }
342
343 done:
344   vec_free (dpos);
345   vec_free (prefixs);
346   vec_free (rpaths);
347   unformat_free (line_input);
348   return error;
349 }
350
351 clib_error_t *
352 vnet_ip_table_cmd (vlib_main_t * vm,
353                    unformat_input_t * main_input,
354                    vlib_cli_command_t * cmd, fib_protocol_t fproto)
355 {
356   unformat_input_t _line_input, *line_input = &_line_input;
357   clib_error_t *error = NULL;
358   u32 table_id, is_add;
359   u8 *name = NULL;
360
361   is_add = 1;
362   table_id = ~0;
363
364   /* Get a line of input. */
365   if (!unformat_user (main_input, unformat_line_input, line_input))
366     return 0;
367
368   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
369     {
370       if (unformat (line_input, "%d", &table_id))
371         ;
372       else if (unformat (line_input, "del"))
373         is_add = 0;
374       else if (unformat (line_input, "add"))
375         is_add = 1;
376       else if (unformat (line_input, "name %s", &name))
377         ;
378       else
379         {
380           error = unformat_parse_error (line_input);
381           goto done;
382         }
383     }
384
385   if (0 == table_id)
386     {
387       error = clib_error_return (0, "Can't change the default table");
388       goto done;
389     }
390   else
391         {
392           if (is_add)
393             {
394               if (~0 == table_id)
395                 {
396                   table_id = ip_table_get_unused_id (fproto);
397                   vlib_cli_output (vm, "%u\n", table_id);
398                 }
399               ip_table_create (fproto, table_id, 0, name);
400             }
401           else
402             {
403               if (~0 == table_id)
404                 {
405                   error = clib_error_return (0, "No table id");
406                   goto done;
407                 }
408               ip_table_delete (fproto, table_id, 0);
409             }
410         }
411
412 done:
413   unformat_free (line_input);
414   return error;
415 }
416
417 clib_error_t *
418 vnet_ip4_table_cmd (vlib_main_t * vm,
419                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
420 {
421   return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
422 }
423
424 clib_error_t *
425 vnet_ip6_table_cmd (vlib_main_t * vm,
426                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
427 {
428   return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
429 }
430
431 clib_error_t *
432 vnet_show_ip_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
433                         vlib_cli_command_t *cmd, fib_protocol_t fproto)
434 {
435   unformat_input_t _line_input, *line_input = &_line_input;
436   fib_table_t *fib, *fibs;
437   clib_error_t *error = NULL;
438   u32 table_id = ~0, fib_index;
439   /* Get a line of input. */
440   if (unformat_user (main_input, unformat_line_input, line_input))
441     {
442       while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
443         {
444           if (unformat (line_input, "%d", &table_id))
445             ;
446           else
447             {
448               error = unformat_parse_error (line_input);
449               goto done;
450             }
451         }
452       unformat_free (line_input);
453     }
454
455   fibs = (fproto == FIB_PROTOCOL_IP4) ? ip4_main.fibs : ip6_main.fibs;
456
457   if (table_id != (u32) ~0)
458     {
459       fib_index = fib_table_find (fproto, table_id);
460       if (fib_index == (u32) ~0)
461         {
462           error = clib_error_return (0, "Couldn't find table with table_id %u",
463                                      table_id);
464           goto done;
465         }
466
467       fib = fib_table_get (fib_index, fproto);
468       vlib_cli_output (vm, "[%3u] table_id:%3u %v", fib->ft_index,
469                        fib->ft_table_id, fib->ft_desc);
470     }
471   else
472     {
473       pool_foreach (fib, fibs)
474         vlib_cli_output (vm, "[%3u] table_id:%3u %v", fib->ft_index,
475                          fib->ft_table_id, fib->ft_desc);
476     }
477
478 done:
479   return error;
480 }
481
482 clib_error_t *
483 vnet_show_ip4_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
484                          vlib_cli_command_t *cmd)
485 {
486   return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
487 }
488
489 clib_error_t *
490 vnet_show_ip6_table_cmd (vlib_main_t *vm, unformat_input_t *main_input,
491                          vlib_cli_command_t *cmd)
492 {
493   return (vnet_show_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
494 }
495
496 /* *INDENT-OFF* */
497 VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
498   .path = "ip",
499   .short_help = "Internet protocol (IP) commands",
500 };
501 /* *INDENT-ON* */
502
503 /* *INDENT-OFF* */
504 VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
505   .path = "ip6",
506   .short_help = "Internet protocol version 6 (IPv6) commands",
507 };
508 /* *INDENT-ON* */
509
510 /* *INDENT-OFF* */
511 VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
512   .path = "show ip",
513   .short_help = "Internet protocol (IP) show commands",
514 };
515 /* *INDENT-ON* */
516
517 /* *INDENT-OFF* */
518 VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
519   .path = "show ip6",
520   .short_help = "Internet protocol version 6 (IPv6) show commands",
521 };
522 /* *INDENT-ON* */
523
524 /*?
525  * This command is used to add or delete IPv4 or IPv6 routes. All
526  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
527  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
528  * can be IPv4 or IPv6, but all must be of the same form in a single
529  * command. To display the current set of routes, use the commands
530  * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
531  *
532  * @cliexpar
533  * Example of how to add a straight forward static route:
534  * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
535  * Example of how to delete a straight forward static route:
536  * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
537  * Mainly for route add/del performance testing, one can add or delete
538  * multiple routes by adding 'count N' to the previous item:
539  * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
540  * Add multiple routes for the same destination to create equal-cost multipath:
541  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
542  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
543  * For unequal-cost multipath, specify the desired weights. This
544  * combination of weights results in 3/4 of the traffic following the
545  * second path, 1/4 following the first path:
546  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
547  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
548  * To add a route to a particular FIB table (VRF), use:
549  * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
550  ?*/
551 /* *INDENT-OFF* */
552 VLIB_CLI_COMMAND (ip_route_command, static) = {
553   .path = "ip route",
554   .short_help = "ip route [add|del] [count <n>] <dst-ip-addr>/<width> [table <table-id>] via [next-hop-address] [next-hop-interface] [next-hop-table <value>] [weight <value>] [preference <value>] [udp-encap-id <value>] [ip4-lookup-in-table <value>] [ip6-lookup-in-table <value>] [mpls-lookup-in-table <value>] [resolve-via-host] [resolve-via-connected] [rx-ip4 <interface>] [out-labels <value value value>]",
555   .function = vnet_ip_route_cmd,
556   .is_mp_safe = 1,
557 };
558
559 /* *INDENT-ON* */
560 /*?
561  * This command is used to add or delete IPv4  Tables. All
562  * Tables must be explicitly added before that can be used. Creating a
563  * table will add both unicast and multicast FIBs
564  *
565  ?*/
566 /* *INDENT-OFF* */
567 VLIB_CLI_COMMAND (ip4_table_command, static) = {
568   .path = "ip table",
569   .short_help = "ip table [add|del] <table-id>",
570   .function = vnet_ip4_table_cmd,
571 };
572 /* *INDENT-ON* */
573
574 /* *INDENT-ON* */
575 /*?
576  * This command is used to add or delete IPv4  Tables. All
577  * Tables must be explicitly added before that can be used. Creating a
578  * table will add both unicast and multicast FIBs
579  *
580  ?*/
581 /* *INDENT-OFF* */
582 VLIB_CLI_COMMAND (ip6_table_command, static) = {
583   .path = "ip6 table",
584   .short_help = "ip6 table [add|del] <table-id>",
585   .function = vnet_ip6_table_cmd,
586 };
587
588 VLIB_CLI_COMMAND (show_ip4_table_command, static) = {
589   .path = "show ip table",
590   .short_help = "show ip table <table-id>",
591   .function = vnet_show_ip4_table_cmd,
592 };
593
594 VLIB_CLI_COMMAND (show_ip6_table_command, static) = {
595   .path = "show ip6 table",
596   .short_help = "show ip6 table <table-id>",
597   .function = vnet_show_ip6_table_cmd,
598 };
599
600 static clib_error_t *
601 ip_table_bind_cmd (vlib_main_t * vm,
602                    unformat_input_t * input,
603                    vlib_cli_command_t * cmd,
604                    fib_protocol_t fproto)
605 {
606   vnet_main_t *vnm = vnet_get_main ();
607   clib_error_t *error = 0;
608   u32 sw_if_index, table_id;
609   int rv;
610
611   sw_if_index = ~0;
612
613   if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
614     {
615       error = clib_error_return (0, "unknown interface `%U'",
616                                  format_unformat_error, input);
617       goto done;
618     }
619
620   if (unformat (input, "%d", &table_id))
621     ;
622   else
623     {
624       error = clib_error_return (0, "expected table id `%U'",
625                                  format_unformat_error, input);
626       goto done;
627     }
628
629   rv = ip_table_bind (fproto, sw_if_index, table_id);
630
631   if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
632     {
633       error = clib_error_return (0, "IP addresses are still present on %U",
634                                  format_vnet_sw_if_index_name,
635                                  vnet_get_main(),
636                                  sw_if_index);
637     }
638   else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
639     {
640       error = clib_error_return (0, "no such table %d", table_id);
641     }
642   else if (0 != rv)
643     {
644       error = clib_error_return (0, "unknown error");
645     }
646
647  done:
648   return error;
649 }
650
651 static clib_error_t *
652 ip4_table_bind_cmd (vlib_main_t * vm,
653                     unformat_input_t * input,
654                     vlib_cli_command_t * cmd)
655 {
656   return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
657 }
658
659 static clib_error_t *
660 ip6_table_bind_cmd (vlib_main_t * vm,
661                     unformat_input_t * input,
662                     vlib_cli_command_t * cmd)
663 {
664   return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
665 }
666
667 /*?
668  * Place the indicated interface into the supplied IPv4 FIB table (also known
669  * as a VRF). The FIB table must be created using "ip table add" already. To
670  * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
671  * FIB table will only be displayed if a route has been added to the table, or
672  * an IP Address is assigned to an interface in the table (which adds a route
673  * automatically).
674  *
675  * @note IP addresses added after setting the interface IP table are added to
676  * the indicated FIB table. If an IP address is added prior to changing the
677  * table then this is an error. The control plane must remove these addresses
678  * first and then change the table. VPP will not automatically move the
679  * addresses from the old to the new table as it does not know the validity
680  * of such a change.
681  *
682  * @cliexpar
683  * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
684  * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
685  ?*/
686 /* *INDENT-OFF* */
687 VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
688 {
689   .path = "set interface ip table",
690   .function = ip4_table_bind_cmd,
691   .short_help = "set interface ip table <interface> <table-id>",
692 };
693 /* *INDENT-ON* */
694
695 /*?
696  * Place the indicated interface into the supplied IPv6 FIB table (also known
697  * as a VRF). The FIB table must be created using "ip6 table add" already. To
698  * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
699  * FIB table will only be displayed if a route has been added to the table, or
700  * an IP Address is assigned to an interface in the table (which adds a route
701  * automatically).
702  *
703  * @note IP addresses added after setting the interface IP table are added to
704  * the indicated FIB table. If an IP address is added prior to changing the
705  * table then this is an error. The control plane must remove these addresses
706  * first and then change the table. VPP will not automatically move the
707  * addresses from the old to the new table as it does not know the validity
708  * of such a change.
709  *
710  * @cliexpar
711  * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
712  * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
713  ?*/
714 /* *INDENT-OFF* */
715 VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
716 {
717   .path = "set interface ip6 table",
718   .function = ip6_table_bind_cmd,
719   .short_help = "set interface ip6 table <interface> <table-id>"
720 };
721 /* *INDENT-ON* */
722
723 clib_error_t *
724 vnet_ip_mroute_cmd (vlib_main_t * vm,
725                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
726 {
727   unformat_input_t _line_input, *line_input = &_line_input;
728   fib_route_path_t rpath, *rpaths = NULL;
729   clib_error_t *error = NULL;
730   u32 table_id, is_del, payload_proto;
731   mfib_prefix_t pfx;
732   u32 fib_index;
733   mfib_entry_flags_t eflags = 0;
734   u32 gcount, scount, ss, gg, incr;
735   f64 timet[2];
736   u32 rpf_id = MFIB_RPF_ID_NONE;
737
738   gcount = scount = 1;
739   is_del = 0;
740   table_id = 0;
741   clib_memset (&pfx, 0, sizeof (pfx));
742   clib_memset (&rpath, 0, sizeof (rpath));
743   rpath.frp_sw_if_index = ~0;
744
745   /* Get a line of input. */
746   if (!unformat_user (main_input, unformat_line_input, line_input))
747     return 0;
748
749   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
750     {
751       if (unformat (line_input, "table %d", &table_id))
752         ;
753       else if (unformat (line_input, "del"))
754         is_del = 1;
755       else if (unformat (line_input, "add"))
756         is_del = 0;
757       else if (unformat (line_input, "rpf-id %d", &rpf_id))
758         ;
759       else if (unformat (line_input, "scount %d", &scount))
760         ;
761       else if (unformat (line_input, "gcount %d", &gcount))
762         ;
763       else if (unformat (line_input, "%U %U",
764                          unformat_ip4_address,
765                          &pfx.fp_src_addr.ip4,
766                          unformat_ip4_address, &pfx.fp_grp_addr.ip4))
767         {
768           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
769           pfx.fp_len = 64;
770         }
771       else if (unformat (line_input, "%U %U",
772                          unformat_ip6_address,
773                          &pfx.fp_src_addr.ip6,
774                          unformat_ip6_address, &pfx.fp_grp_addr.ip6))
775         {
776           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
777           pfx.fp_len = 256;
778         }
779       else if (unformat (line_input, "%U/%d",
780                          unformat_ip4_address,
781                          &pfx.fp_grp_addr.ip4, &pfx.fp_len))
782         {
783           clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
784           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
785         }
786       else if (unformat (line_input, "%U/%d",
787                          unformat_ip6_address,
788                          &pfx.fp_grp_addr.ip6, &pfx.fp_len))
789         {
790           clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
791           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
792         }
793       else if (unformat (line_input, "%U",
794                          unformat_ip4_address, &pfx.fp_grp_addr.ip4))
795         {
796           clib_memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
797           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP4;
798           pfx.fp_len = 32;
799         }
800       else if (unformat (line_input, "%U",
801                          unformat_ip6_address, &pfx.fp_grp_addr.ip6))
802         {
803           clib_memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
804           payload_proto = pfx.fp_proto = FIB_PROTOCOL_IP6;
805           pfx.fp_len = 128;
806         }
807       else if (unformat (line_input, "via local Forward"))
808         {
809           clib_memset (&rpath.frp_addr, 0, sizeof (rpath.frp_addr));
810           rpath.frp_sw_if_index = ~0;
811           rpath.frp_weight = 1;
812           rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
813           /*
814            * set the path proto appropriately for the prefix
815            */
816           rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
817           rpath.frp_mitf_flags = MFIB_ITF_FLAG_FORWARD;
818
819           vec_add1 (rpaths, rpath);
820         }
821       else if (unformat (line_input, "via %U",
822                          unformat_fib_route_path, &rpath, &payload_proto))
823         {
824           vec_add1 (rpaths, rpath);
825         }
826       else if (unformat (line_input, "%U",
827                          unformat_mfib_entry_flags, &eflags))
828         ;
829       else
830         {
831           error = unformat_parse_error (line_input);
832           goto done;
833         }
834     }
835
836   if (~0 == table_id)
837     {
838       /*
839        * if no table_id is passed we will manipulate the default
840        */
841       fib_index = 0;
842     }
843   else
844     {
845       fib_index = mfib_table_find (pfx.fp_proto, table_id);
846
847       if (~0 == fib_index)
848         {
849           error = clib_error_return (0, "Nonexistent table id %d", table_id);
850           goto done;
851         }
852     }
853
854   timet[0] = vlib_time_now (vm);
855
856   if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
857     {
858       incr = 1 << (32 - (pfx.fp_len % 32));
859     }
860   else
861     {
862       incr = 1 << (128 - (pfx.fp_len % 128));
863     }
864
865   for (ss = 0; ss < scount; ss++)
866     {
867       for (gg = 0; gg < gcount; gg++)
868         {
869           if (is_del && 0 == vec_len (rpaths))
870             {
871               /* no path provided => route delete */
872               mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
873             }
874           else if (eflags || (MFIB_RPF_ID_NONE != rpf_id))
875             {
876               mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
877                                        rpf_id, eflags);
878             }
879           else
880             {
881               if (is_del)
882                 mfib_table_entry_path_remove (fib_index,
883                                               &pfx, MFIB_SOURCE_CLI, rpaths);
884               else
885                 mfib_table_entry_path_update (fib_index,
886                                               &pfx, MFIB_SOURCE_CLI, rpaths);
887             }
888
889           if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
890             {
891               pfx.fp_grp_addr.ip4.as_u32 =
892                 clib_host_to_net_u32 (incr +
893                                       clib_net_to_host_u32 (pfx.
894                                                             fp_grp_addr.ip4.
895                                                             as_u32));
896             }
897           else
898             {
899               int bucket = (incr < 64 ? 0 : 1);
900               pfx.fp_grp_addr.ip6.as_u64[bucket] =
901                 clib_host_to_net_u64 (incr +
902                                       clib_net_to_host_u64 (pfx.
903                                                             fp_grp_addr.ip6.as_u64
904                                                             [bucket]));
905
906             }
907         }
908       if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
909         {
910           pfx.fp_src_addr.ip4.as_u32 =
911             clib_host_to_net_u32 (1 +
912                                   clib_net_to_host_u32 (pfx.fp_src_addr.
913                                                         ip4.as_u32));
914         }
915       else
916         {
917           pfx.fp_src_addr.ip6.as_u64[1] =
918             clib_host_to_net_u64 (1 +
919                                   clib_net_to_host_u64 (pfx.fp_src_addr.
920                                                         ip6.as_u64[1]));
921         }
922     }
923
924   timet[1] = vlib_time_now (vm);
925
926   if (scount > 1 || gcount > 1)
927     vlib_cli_output (vm, "%.6e routes/sec",
928                      (scount * gcount) / (timet[1] - timet[0]));
929
930 done:
931   vec_free (rpaths);
932   unformat_free (line_input);
933
934   return error;
935 }
936
937 /*?
938  * This command is used to add or delete IPv4 or IPv6  multicast routes. All
939  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
940  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
941  * can be IPv4 or IPv6, but all must be of the same form in a single
942  * command. To display the current set of routes, use the commands
943  * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
944  * The full set of support flags for interfaces and route is shown via;
945  * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
946  * respectively.
947  * @cliexpar
948  * Example of how to add a forwarding interface to a route (and create the
949  * route if it does not exist)
950  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
951  * Example of how to add an accepting interface to a route (and create the
952  * route if it does not exist)
953  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
954  * Example of changing the route's flags to send signals via the API
955  * @cliexcmd{ip mroute add 232.1.1.1 Signal}
956
957  ?*/
958 /* *INDENT-OFF* */
959 VLIB_CLI_COMMAND (ip_mroute_command, static) =
960 {
961   .path = "ip mroute",
962   .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [rpf-id <ID>] [via <next-hop-ip-addr> [<interface>],",
963   .function = vnet_ip_mroute_cmd,
964   .is_mp_safe = 1,
965 };
966 /* *INDENT-ON* */
967
968 /*
969  * fd.io coding-style-patch-verification: ON
970  *
971  * Local Variables:
972  * eval: (c-set-style "gnu")
973  * End:
974  */