ip: add container proxy api
[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 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
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 #include <vnet/dpo/l3_proxy_dpo.h>
53 #include <vnet/ip/ip6_neighbor.h>
54
55 /**
56  * @file
57  * @brief IPv4 and IPv6 adjacency and lookup table managment.
58  *
59  */
60
61 clib_error_t *
62 ip_interface_address_add_del (ip_lookup_main_t * lm,
63                               u32 sw_if_index,
64                               void *addr_fib,
65                               u32 address_length,
66                               u32 is_del, u32 * result_if_address_index)
67 {
68   vnet_main_t *vnm = vnet_get_main ();
69   ip_interface_address_t *a, *prev, *next;
70   uword *p = mhash_get (&lm->address_to_if_address_index, addr_fib);
71
72   vec_validate_init_empty (lm->if_address_pool_index_by_sw_if_index,
73                            sw_if_index, ~0);
74   a = p ? pool_elt_at_index (lm->if_address_pool, p[0]) : 0;
75
76   /* Verify given length. */
77   if ((a && (address_length != a->address_length)) ||
78       (address_length == 0) ||
79       (lm->is_ip6 && address_length > 128) ||
80       (!lm->is_ip6 && address_length > 32))
81     {
82       vnm->api_errno = VNET_API_ERROR_ADDRESS_LENGTH_MISMATCH;
83       return clib_error_create
84         ("%U wrong length (expected %d) for interface %U",
85          lm->format_address_and_length, addr_fib,
86          address_length, a ? a->address_length : -1,
87          format_vnet_sw_if_index_name, vnm, sw_if_index);
88     }
89
90   if (is_del)
91     {
92       if (!a)
93         {
94           vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
95           vnm->api_errno = VNET_API_ERROR_ADDRESS_NOT_FOUND_FOR_INTERFACE;
96           return clib_error_create ("%U not found for interface %U",
97                                     lm->format_address_and_length,
98                                     addr_fib, address_length,
99                                     format_vnet_sw_interface_name, vnm, si);
100         }
101
102       if (a->prev_this_sw_interface != ~0)
103         {
104           prev =
105             pool_elt_at_index (lm->if_address_pool,
106                                a->prev_this_sw_interface);
107           prev->next_this_sw_interface = a->next_this_sw_interface;
108         }
109       if (a->next_this_sw_interface != ~0)
110         {
111           next =
112             pool_elt_at_index (lm->if_address_pool,
113                                a->next_this_sw_interface);
114           next->prev_this_sw_interface = a->prev_this_sw_interface;
115
116           if (a->prev_this_sw_interface == ~0)
117             lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
118               a->next_this_sw_interface;
119         }
120
121       if ((a->next_this_sw_interface == ~0)
122           && (a->prev_this_sw_interface == ~0))
123         lm->if_address_pool_index_by_sw_if_index[sw_if_index] = ~0;
124
125       mhash_unset (&lm->address_to_if_address_index, addr_fib,
126                    /* old_value */ 0);
127       pool_put (lm->if_address_pool, a);
128
129       if (result_if_address_index)
130         *result_if_address_index = ~0;
131     }
132
133   else if (!a)
134     {
135       u32 pi;                   /* previous index */
136       u32 ai;
137       u32 hi;                   /* head index */
138
139       pool_get (lm->if_address_pool, a);
140       memset (a, ~0, sizeof (a[0]));
141       ai = a - lm->if_address_pool;
142
143       hi = pi = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
144       prev = 0;
145       while (pi != (u32) ~ 0)
146         {
147           prev = pool_elt_at_index (lm->if_address_pool, pi);
148           pi = prev->next_this_sw_interface;
149         }
150       pi = prev ? prev - lm->if_address_pool : (u32) ~ 0;
151
152       a->address_key = mhash_set (&lm->address_to_if_address_index,
153                                   addr_fib, ai, /* old_value */ 0);
154       a->address_length = address_length;
155       a->sw_if_index = sw_if_index;
156       a->flags = 0;
157       a->prev_this_sw_interface = pi;
158       a->next_this_sw_interface = ~0;
159       if (prev)
160         prev->next_this_sw_interface = ai;
161
162       lm->if_address_pool_index_by_sw_if_index[sw_if_index] =
163         (hi != ~0) ? hi : ai;
164       if (result_if_address_index)
165         *result_if_address_index = ai;
166     }
167   else
168     {
169       if (sw_if_index != a->sw_if_index)
170         {
171           if (result_if_address_index)
172             *result_if_address_index = ~0;
173           vnm->api_errno = VNET_API_ERROR_DUPLICATE_IF_ADDRESS;
174           return clib_error_create
175             ("Prefix %U already found on interface %U",
176              lm->format_address_and_length, addr_fib, address_length,
177              format_vnet_sw_if_index_name, vnm, a->sw_if_index);
178         }
179
180       if (result_if_address_index)
181         *result_if_address_index = a - lm->if_address_pool;
182     }
183
184   return /* no error */ 0;
185 }
186
187 static clib_error_t *
188 ip_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
189 {
190   vec_validate_init_empty (ip4_main.
191                            lookup_main.if_address_pool_index_by_sw_if_index,
192                            sw_if_index, ~0);
193   vec_validate_init_empty (ip6_main.
194                            lookup_main.if_address_pool_index_by_sw_if_index,
195                            sw_if_index, ~0);
196
197   return (NULL);
198 }
199
200 VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip_sw_interface_add_del);
201
202 void
203 ip_lookup_init (ip_lookup_main_t * lm, u32 is_ip6)
204 {
205   if (!lm->fib_result_n_bytes)
206     lm->fib_result_n_bytes = sizeof (uword);
207
208   lm->is_ip6 = is_ip6;
209   if (is_ip6)
210     {
211       lm->format_address_and_length = format_ip6_address_and_length;
212       mhash_init (&lm->address_to_if_address_index, sizeof (uword),
213                   sizeof (ip6_address_fib_t));
214     }
215   else
216     {
217       lm->format_address_and_length = format_ip4_address_and_length;
218       mhash_init (&lm->address_to_if_address_index, sizeof (uword),
219                   sizeof (ip4_address_fib_t));
220     }
221
222   {
223     int i;
224
225     /* Setup all IP protocols to be punted and builtin-unknown. */
226     for (i = 0; i < 256; i++)
227       {
228         lm->local_next_by_ip_protocol[i] = IP_LOCAL_NEXT_PUNT;
229         lm->builtin_protocol_by_ip_protocol[i] = IP_BUILTIN_PROTOCOL_UNKNOWN;
230       }
231
232     lm->local_next_by_ip_protocol[IP_PROTOCOL_UDP] = IP_LOCAL_NEXT_UDP_LOOKUP;
233     lm->local_next_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
234                                   IP_PROTOCOL_ICMP] = IP_LOCAL_NEXT_ICMP;
235     lm->builtin_protocol_by_ip_protocol[IP_PROTOCOL_UDP] =
236       IP_BUILTIN_PROTOCOL_UDP;
237     lm->builtin_protocol_by_ip_protocol[is_ip6 ? IP_PROTOCOL_ICMP6 :
238                                         IP_PROTOCOL_ICMP] =
239       IP_BUILTIN_PROTOCOL_ICMP;
240   }
241 }
242
243 u8 *
244 format_ip_flow_hash_config (u8 * s, va_list * args)
245 {
246   flow_hash_config_t flow_hash_config = va_arg (*args, u32);
247
248 #define _(n,v) if (flow_hash_config & v) s = format (s, "%s ", #n);
249   foreach_flow_hash_bit;
250 #undef _
251
252   return s;
253 }
254
255 u8 *
256 format_ip_lookup_next (u8 * s, va_list * args)
257 {
258   /* int promotion of ip_lookup_next_t */
259   ip_lookup_next_t n = va_arg (*args, int);
260   char *t = 0;
261
262   switch (n)
263     {
264     default:
265       s = format (s, "unknown %d", n);
266       return s;
267
268     case IP_LOOKUP_NEXT_DROP:
269       t = "drop";
270       break;
271     case IP_LOOKUP_NEXT_PUNT:
272       t = "punt";
273       break;
274     case IP_LOOKUP_NEXT_ARP:
275       t = "arp";
276       break;
277     case IP_LOOKUP_NEXT_MIDCHAIN:
278       t = "midchain";
279       break;
280     case IP_LOOKUP_NEXT_GLEAN:
281       t = "glean";
282       break;
283     case IP_LOOKUP_NEXT_MCAST:
284       t = "mcast";
285       break;
286     case IP_LOOKUP_NEXT_REWRITE:
287       break;
288     }
289
290   if (t)
291     vec_add (s, t, strlen (t));
292
293   return s;
294 }
295
296 u8 *
297 format_ip_adjacency_packet_data (u8 * s, va_list * args)
298 {
299   u32 adj_index = va_arg (*args, u32);
300   u8 *packet_data = va_arg (*args, u8 *);
301   u32 n_packet_data_bytes = va_arg (*args, u32);
302   ip_adjacency_t *adj = adj_get (adj_index);
303
304   switch (adj->lookup_next_index)
305     {
306     case IP_LOOKUP_NEXT_REWRITE:
307     case IP_LOOKUP_NEXT_MCAST:
308       s =
309         format (s, "%U", format_hex_bytes, packet_data, n_packet_data_bytes);
310       break;
311
312     default:
313       break;
314     }
315
316   return s;
317 }
318
319 static uword
320 unformat_dpo (unformat_input_t * input, va_list * args)
321 {
322   dpo_id_t *dpo = va_arg (*args, dpo_id_t *);
323   fib_protocol_t fp = va_arg (*args, int);
324   dpo_proto_t proto;
325
326   proto = fib_proto_to_dpo (fp);
327
328   if (unformat (input, "drop"))
329     dpo_copy (dpo, drop_dpo_get (proto));
330   else if (unformat (input, "punt"))
331     dpo_copy (dpo, punt_dpo_get (proto));
332   else if (unformat (input, "local"))
333     receive_dpo_add_or_lock (proto, ~0, NULL, dpo);
334   else if (unformat (input, "null-send-unreach"))
335     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_UNREACH, dpo);
336   else if (unformat (input, "null-send-prohibit"))
337     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_SEND_ICMP_PROHIBIT, dpo);
338   else if (unformat (input, "null"))
339     ip_null_dpo_add_and_lock (proto, IP_NULL_ACTION_NONE, dpo);
340   else if (unformat (input, "classify"))
341     {
342       u32 classify_table_index;
343
344       if (!unformat (input, "%d", &classify_table_index))
345         {
346           clib_warning ("classify adj must specify table index");
347           return 0;
348         }
349
350       dpo_set (dpo, DPO_CLASSIFY, proto,
351                classify_dpo_create (proto, classify_table_index));
352     }
353   else
354     return 0;
355
356   return 1;
357 }
358
359 const ip46_address_t zero_addr = {
360   .as_u64 = {
361              0, 0},
362 };
363
364 clib_error_t *
365 vnet_ip_route_cmd (vlib_main_t * vm,
366                    unformat_input_t * main_input, vlib_cli_command_t * cmd)
367 {
368   unformat_input_t _line_input, *line_input = &_line_input;
369   fib_route_path_t *rpaths = NULL, rpath;
370   dpo_id_t dpo = DPO_INVALID, *dpos = NULL;
371   fib_prefix_t *prefixs = NULL, pfx;
372   mpls_label_t out_label, via_label;
373   clib_error_t *error = NULL;
374   u32 weight, preference;
375   u32 table_id, is_del;
376   vnet_main_t *vnm;
377   u32 fib_index;
378   f64 count;
379   int i;
380
381   vnm = vnet_get_main ();
382   is_del = 0;
383   table_id = 0;
384   count = 1;
385   memset (&pfx, 0, sizeof (pfx));
386   out_label = via_label = MPLS_LABEL_INVALID;
387
388   /* Get a line of input. */
389   if (!unformat_user (main_input, unformat_line_input, line_input))
390     return 0;
391
392   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
393     {
394       memset (&rpath, 0, sizeof (rpath));
395
396       if (unformat (line_input, "table %d", &table_id))
397         ;
398       else if (unformat (line_input, "resolve-via-host"))
399         {
400           if (vec_len (rpaths) == 0)
401             {
402               error = clib_error_return (0, "Paths then flags");
403               goto done;
404             }
405           rpaths[vec_len (rpaths) - 1].frp_flags |=
406             FIB_ROUTE_PATH_RESOLVE_VIA_HOST;
407         }
408       else if (unformat (line_input, "resolve-via-attached"))
409         {
410           if (vec_len (rpaths) == 0)
411             {
412               error = clib_error_return (0, "Paths then flags");
413               goto done;
414             }
415           rpaths[vec_len (rpaths) - 1].frp_flags |=
416             FIB_ROUTE_PATH_RESOLVE_VIA_ATTACHED;
417         }
418       else if (unformat (line_input, "out-labels"))
419         {
420           if (vec_len (rpaths) == 0)
421             {
422               error = clib_error_return (0, "Paths then labels");
423               goto done;
424             }
425           else
426             {
427               while (unformat (line_input, "%U",
428                                unformat_mpls_unicast_label, &out_label))
429                 {
430                   vec_add1 (rpaths[vec_len (rpaths) - 1].frp_label_stack,
431                             out_label);
432                 }
433             }
434         }
435       else if (unformat (line_input, "via-label %U",
436                          unformat_mpls_unicast_label, &rpath.frp_local_label))
437         {
438           rpath.frp_weight = 1;
439           rpath.frp_eos = MPLS_NON_EOS;
440           rpath.frp_proto = DPO_PROTO_MPLS;
441           rpath.frp_sw_if_index = ~0;
442           vec_add1 (rpaths, rpath);
443         }
444       else if (unformat (line_input, "count %f", &count))
445         ;
446
447       else if (unformat (line_input, "%U/%d",
448                          unformat_ip4_address, &pfx.fp_addr.ip4, &pfx.fp_len))
449         {
450           pfx.fp_proto = FIB_PROTOCOL_IP4;
451           vec_add1 (prefixs, pfx);
452         }
453       else if (unformat (line_input, "%U/%d",
454                          unformat_ip6_address, &pfx.fp_addr.ip6, &pfx.fp_len))
455         {
456           pfx.fp_proto = FIB_PROTOCOL_IP6;
457           vec_add1 (prefixs, pfx);
458         }
459       else if (unformat (line_input, "via %U %U",
460                          unformat_ip4_address,
461                          &rpath.frp_addr.ip4,
462                          unformat_vnet_sw_interface, vnm,
463                          &rpath.frp_sw_if_index))
464         {
465           rpath.frp_weight = 1;
466           rpath.frp_proto = DPO_PROTO_IP4;
467           vec_add1 (rpaths, rpath);
468         }
469
470       else if (unformat (line_input, "via %U %U",
471                          unformat_ip6_address,
472                          &rpath.frp_addr.ip6,
473                          unformat_vnet_sw_interface, vnm,
474                          &rpath.frp_sw_if_index))
475         {
476           rpath.frp_weight = 1;
477           rpath.frp_proto = DPO_PROTO_IP6;
478           vec_add1 (rpaths, rpath);
479         }
480       else if (unformat (line_input, "weight %u", &weight))
481         {
482           ASSERT (vec_len (rpaths));
483           rpaths[vec_len (rpaths) - 1].frp_weight = weight;
484         }
485       else if (unformat (line_input, "preference %u", &preference))
486         {
487           ASSERT (vec_len (rpaths));
488           rpaths[vec_len (rpaths) - 1].frp_preference = preference;
489         }
490       else if (unformat (line_input, "via %U next-hop-table %d",
491                          unformat_ip4_address,
492                          &rpath.frp_addr.ip4, &rpath.frp_fib_index))
493         {
494           rpath.frp_weight = 1;
495           rpath.frp_sw_if_index = ~0;
496           rpath.frp_proto = DPO_PROTO_IP4;
497           vec_add1 (rpaths, rpath);
498         }
499       else if (unformat (line_input, "via %U next-hop-table %d",
500                          unformat_ip6_address,
501                          &rpath.frp_addr.ip6, &rpath.frp_fib_index))
502         {
503           rpath.frp_weight = 1;
504           rpath.frp_sw_if_index = ~0;
505           rpath.frp_proto = DPO_PROTO_IP6;
506           vec_add1 (rpaths, rpath);
507         }
508       else if (unformat (line_input, "via %U",
509                          unformat_ip4_address, &rpath.frp_addr.ip4))
510         {
511           /*
512            * the recursive next-hops are by default in the same table
513            * as the prefix
514            */
515           rpath.frp_fib_index = table_id;
516           rpath.frp_weight = 1;
517           rpath.frp_sw_if_index = ~0;
518           rpath.frp_proto = DPO_PROTO_IP4;
519           vec_add1 (rpaths, rpath);
520         }
521       else if (unformat (line_input, "via %U",
522                          unformat_ip6_address, &rpath.frp_addr.ip6))
523         {
524           rpath.frp_fib_index = table_id;
525           rpath.frp_weight = 1;
526           rpath.frp_sw_if_index = ~0;
527           rpath.frp_proto = DPO_PROTO_IP6;
528           vec_add1 (rpaths, rpath);
529         }
530       else if (unformat (line_input,
531                          "lookup in table %d", &rpath.frp_fib_index))
532         {
533           rpath.frp_proto = fib_proto_to_dpo (pfx.fp_proto);
534           rpath.frp_sw_if_index = ~0;
535           vec_add1 (rpaths, rpath);
536         }
537       else if (vec_len (prefixs) > 0 &&
538                unformat (line_input, "via %U",
539                          unformat_vnet_sw_interface, vnm,
540                          &rpath.frp_sw_if_index))
541         {
542           rpath.frp_weight = 1;
543           rpath.frp_proto = fib_proto_to_dpo (prefixs[0].fp_proto);
544           vec_add1 (rpaths, rpath);
545         }
546       else if (vec_len (prefixs) > 0 &&
547                unformat (line_input, "via %U",
548                          unformat_dpo, &dpo, prefixs[0].fp_proto))
549         {
550           vec_add1 (dpos, dpo);
551         }
552       else if (unformat (line_input, "del"))
553         is_del = 1;
554       else if (unformat (line_input, "add"))
555         is_del = 0;
556       else
557         {
558           error = unformat_parse_error (line_input);
559           goto done;
560         }
561     }
562
563   if (vec_len (prefixs) == 0)
564     {
565       error =
566         clib_error_return (0, "expected ip4/ip6 destination address/length.");
567       goto done;
568     }
569
570   if (!is_del && vec_len (rpaths) + vec_len (dpos) == 0)
571     {
572       error = clib_error_return (0, "expected paths.");
573       goto done;
574     }
575
576   if (~0 == table_id)
577     {
578       /*
579        * if no table_id is passed we will manipulate the default
580        */
581       fib_index = 0;
582     }
583   else
584     {
585       fib_index = fib_table_find (prefixs[0].fp_proto, table_id);
586
587       if (~0 == fib_index)
588         {
589           error = clib_error_return (0, "Nonexistent table id %d", table_id);
590           goto done;
591         }
592     }
593
594   for (i = 0; i < vec_len (prefixs); i++)
595     {
596       if (is_del && 0 == vec_len (rpaths))
597         {
598           fib_table_entry_delete (fib_index, &prefixs[i], FIB_SOURCE_CLI);
599         }
600       else if (!is_del && 1 == vec_len (dpos))
601         {
602           fib_table_entry_special_dpo_add (fib_index,
603                                            &prefixs[i],
604                                            FIB_SOURCE_CLI,
605                                            FIB_ENTRY_FLAG_EXCLUSIVE,
606                                            &dpos[0]);
607           dpo_reset (&dpos[0]);
608         }
609       else if (vec_len (dpos) > 0)
610         {
611           error =
612             clib_error_return (0,
613                                "Load-balancing over multiple special adjacencies is unsupported");
614           goto done;
615         }
616       else if (0 < vec_len (rpaths))
617         {
618           u32 k, j, n, incr;
619           ip46_address_t dst = prefixs[i].fp_addr;
620           f64 t[2];
621           n = count;
622           t[0] = vlib_time_now (vm);
623           incr = 1 << ((FIB_PROTOCOL_IP4 == prefixs[0].fp_proto ? 32 : 128) -
624                        prefixs[i].fp_len);
625
626           for (k = 0; k < n; k++)
627             {
628               for (j = 0; j < vec_len (rpaths); j++)
629                 {
630                   u32 fi;
631                   /*
632                    * the CLI parsing stored table Ids, swap to FIB indicies
633                    */
634                   fi = fib_table_find (prefixs[i].fp_proto,
635                                        rpaths[i].frp_fib_index);
636
637                   if (~0 == fi)
638                     {
639                       error =
640                         clib_error_return (0, "Via table %d does not exist",
641                                            rpaths[i].frp_fib_index);
642                       goto done;
643                     }
644                   rpaths[i].frp_fib_index = fi;
645
646                   fib_prefix_t rpfx = {
647                     .fp_len = prefixs[i].fp_len,
648                     .fp_proto = prefixs[i].fp_proto,
649                     .fp_addr = dst,
650                   };
651
652                   if (is_del)
653                     fib_table_entry_path_remove2 (fib_index,
654                                                   &rpfx,
655                                                   FIB_SOURCE_CLI, &rpaths[j]);
656                   else
657                     fib_table_entry_path_add2 (fib_index,
658                                                &rpfx,
659                                                FIB_SOURCE_CLI,
660                                                FIB_ENTRY_FLAG_NONE,
661                                                &rpaths[j]);
662                 }
663
664               if (FIB_PROTOCOL_IP4 == prefixs[0].fp_proto)
665                 {
666                   dst.ip4.as_u32 =
667                     clib_host_to_net_u32 (incr +
668                                           clib_net_to_host_u32 (dst.
669                                                                 ip4.as_u32));
670                 }
671               else
672                 {
673                   int bucket = (incr < 64 ? 0 : 1);
674                   dst.ip6.as_u64[bucket] =
675                     clib_host_to_net_u64 (incr +
676                                           clib_net_to_host_u64 (dst.ip6.as_u64
677                                                                 [bucket]));
678
679                 }
680             }
681           t[1] = vlib_time_now (vm);
682           if (count > 1)
683             vlib_cli_output (vm, "%.6e routes/sec", count / (t[1] - t[0]));
684         }
685       else
686         {
687           error = clib_error_return (0, "Don't understand what you want...");
688           goto done;
689         }
690     }
691
692
693 done:
694   vec_free (dpos);
695   vec_free (prefixs);
696   vec_free (rpaths);
697   unformat_free (line_input);
698   return error;
699 }
700
701 clib_error_t *
702 vnet_ip_table_cmd (vlib_main_t * vm,
703                    unformat_input_t * main_input,
704                    vlib_cli_command_t * cmd, fib_protocol_t fproto)
705 {
706   unformat_input_t _line_input, *line_input = &_line_input;
707   clib_error_t *error = NULL;
708   u32 table_id, is_add;
709   u8 *name = NULL;
710
711   is_add = 1;
712   table_id = ~0;
713
714   /* Get a line of input. */
715   if (!unformat_user (main_input, unformat_line_input, line_input))
716     return 0;
717
718   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
719     {
720       if (unformat (line_input, "%d", &table_id))
721         ;
722       else if (unformat (line_input, "del"))
723         is_add = 0;
724       else if (unformat (line_input, "add"))
725         is_add = 1;
726       else if (unformat (line_input, "name %s", &name))
727         ;
728       else
729         {
730           error = unformat_parse_error (line_input);
731           goto done;
732         }
733     }
734
735   if (~0 == table_id)
736     {
737       error = clib_error_return (0, "No table id");
738       goto done;
739     }
740   else if (0 == table_id)
741     {
742       error = clib_error_return (0, "Can't change the default table");
743       goto done;
744     }
745   else
746     {
747       if (is_add)
748         {
749           ip_table_create (fproto, table_id, 0, name);
750         }
751       else
752         {
753           ip_table_delete (fproto, table_id, 0);
754         }
755     }
756
757 done:
758   unformat_free (line_input);
759   return error;
760 }
761
762 clib_error_t *
763 vnet_ip4_table_cmd (vlib_main_t * vm,
764                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
765 {
766   return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP4));
767 }
768
769 clib_error_t *
770 vnet_ip6_table_cmd (vlib_main_t * vm,
771                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
772 {
773   return (vnet_ip_table_cmd (vm, main_input, cmd, FIB_PROTOCOL_IP6));
774 }
775
776 /* *INDENT-OFF* */
777 VLIB_CLI_COMMAND (vlib_cli_ip_command, static) = {
778   .path = "ip",
779   .short_help = "Internet protocol (IP) commands",
780 };
781 /* *INDENT-ON* */
782
783 /* *INDENT-OFF* */
784 VLIB_CLI_COMMAND (vlib_cli_ip6_command, static) = {
785   .path = "ip6",
786   .short_help = "Internet protocol version 6 (IPv6) commands",
787 };
788 /* *INDENT-ON* */
789
790 /* *INDENT-OFF* */
791 VLIB_CLI_COMMAND (vlib_cli_show_ip_command, static) = {
792   .path = "show ip",
793   .short_help = "Internet protocol (IP) show commands",
794 };
795 /* *INDENT-ON* */
796
797 /* *INDENT-OFF* */
798 VLIB_CLI_COMMAND (vlib_cli_show_ip6_command, static) = {
799   .path = "show ip6",
800   .short_help = "Internet protocol version 6 (IPv6) show commands",
801 };
802 /* *INDENT-ON* */
803
804 /*?
805  * This command is used to add or delete IPv4 or IPv6 routes. All
806  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
807  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
808  * can be IPv4 or IPv6, but all must be of the same form in a single
809  * command. To display the current set of routes, use the commands
810  * '<em>show ip fib</em>' and '<em>show ip6 fib</em>'.
811  *
812  * @cliexpar
813  * Example of how to add a straight forward static route:
814  * @cliexcmd{ip route add 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
815  * Example of how to delete a straight forward static route:
816  * @cliexcmd{ip route del 6.0.1.2/32 via 6.0.0.1 GigabitEthernet2/0/0}
817  * Mainly for route add/del performance testing, one can add or delete
818  * multiple routes by adding 'count N' to the previous item:
819  * @cliexcmd{ip route add count 10 7.0.0.0/24 via 6.0.0.1 GigabitEthernet2/0/0}
820  * Add multiple routes for the same destination to create equal-cost multipath:
821  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0}
822  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0}
823  * For unequal-cost multipath, specify the desired weights. This
824  * combination of weights results in 3/4 of the traffic following the
825  * second path, 1/4 following the first path:
826  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.1 GigabitEthernet2/0/0 weight 1}
827  * @cliexcmd{ip route add 7.0.0.1/32 via 6.0.0.2 GigabitEthernet2/0/0 weight 3}
828  * To add a route to a particular FIB table (VRF), use:
829  * @cliexcmd{ip route add 172.16.24.0/24 table 7 via GigabitEthernet2/0/0}
830  ?*/
831 /* *INDENT-OFF* */
832 VLIB_CLI_COMMAND (ip_route_command, static) = {
833   .path = "ip route",
834   .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>]",
835   .function = vnet_ip_route_cmd,
836   .is_mp_safe = 1,
837 };
838
839 /* *INDENT-ON* */
840 /*?
841  * This command is used to add or delete IPv4  Tables. All
842  * Tables must be explicitly added before that can be used. Creating a
843  * table will add both unicast and multicast FIBs
844  *
845  ?*/
846 /* *INDENT-OFF* */
847 VLIB_CLI_COMMAND (ip4_table_command, static) = {
848   .path = "ip table",
849   .short_help = "ip table [add|del] <table-id>",
850   .function = vnet_ip4_table_cmd,
851   .is_mp_safe = 1,
852 };
853 /* *INDENT-ON* */
854
855 /* *INDENT-ON* */
856 /*?
857  * This command is used to add or delete IPv4  Tables. All
858  * Tables must be explicitly added before that can be used. Creating a
859  * table will add both unicast and multicast FIBs
860  *
861  ?*/
862 /* *INDENT-OFF* */
863 VLIB_CLI_COMMAND (ip6_table_command, static) = {
864   .path = "ip6 table",
865   .short_help = "ip6 table [add|del] <table-id>",
866   .function = vnet_ip6_table_cmd,
867   .is_mp_safe = 1,
868 };
869
870 static clib_error_t *
871 ip_table_bind_cmd (vlib_main_t * vm,
872                    unformat_input_t * input,
873                    vlib_cli_command_t * cmd,
874                    fib_protocol_t fproto)
875 {
876   vnet_main_t *vnm = vnet_get_main ();
877   clib_error_t *error = 0;
878   u32 sw_if_index, table_id;
879   int rv;
880
881   sw_if_index = ~0;
882
883   if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
884     {
885       error = clib_error_return (0, "unknown interface `%U'",
886                                  format_unformat_error, input);
887       goto done;
888     }
889
890   if (unformat (input, "%d", &table_id))
891     ;
892   else
893     {
894       error = clib_error_return (0, "expected table id `%U'",
895                                  format_unformat_error, input);
896       goto done;
897     }
898
899   rv = ip_table_bind (fproto, sw_if_index, table_id, 0);
900
901   if (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE == rv)
902     {
903       error = clib_error_return (0, "IP addresses are still present on %U",
904                                  format_vnet_sw_if_index_name,
905                                  vnet_get_main(),
906                                  sw_if_index);
907     }
908   else if (VNET_API_ERROR_NO_SUCH_FIB == rv)
909     {
910       error = clib_error_return (0, "no such table %d", table_id);
911     }
912   else if (0 != rv)
913     {
914       error = clib_error_return (0, "unknown error");
915     }
916
917  done:
918   return error;
919 }
920
921 static clib_error_t *
922 ip4_table_bind_cmd (vlib_main_t * vm,
923                     unformat_input_t * input,
924                     vlib_cli_command_t * cmd)
925 {
926   return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP4));
927 }
928
929 static clib_error_t *
930 ip6_table_bind_cmd (vlib_main_t * vm,
931                     unformat_input_t * input,
932                     vlib_cli_command_t * cmd)
933 {
934   return (ip_table_bind_cmd (vm , input, cmd, FIB_PROTOCOL_IP6));
935 }
936
937 /*?
938  * Place the indicated interface into the supplied IPv4 FIB table (also known
939  * as a VRF). If the FIB table does not exist, this command creates it. To
940  * display the current IPv4 FIB table, use the command '<em>show ip fib</em>'.
941  * FIB table will only be displayed if a route has been added to the table, or
942  * an IP Address is assigned to an interface in the table (which adds a route
943  * automatically).
944  *
945  * @note IP addresses added after setting the interface IP table are added to
946  * the indicated FIB table. If an IP address is added prior to changing the
947  * table then this is an error. The control plane must remove these addresses
948  * first and then change the table. VPP will not automatically move the
949  * addresses from the old to the new table as it does not know the validity
950  * of such a change.
951  *
952  * @cliexpar
953  * Example of how to add an interface to an IPv4 FIB table (where 2 is the table-id):
954  * @cliexcmd{set interface ip table GigabitEthernet2/0/0 2}
955  ?*/
956 /* *INDENT-OFF* */
957 VLIB_CLI_COMMAND (set_interface_ip_table_command, static) =
958 {
959   .path = "set interface ip table",
960   .function = ip4_table_bind_cmd,
961   .short_help = "set interface ip table <interface> <table-id>",
962 };
963 /* *INDENT-ON* */
964
965 /*?
966  * Place the indicated interface into the supplied IPv6 FIB table (also known
967  * as a VRF). If the FIB table does not exist, this command creates it. To
968  * display the current IPv6 FIB table, use the command '<em>show ip6 fib</em>'.
969  * FIB table will only be displayed if a route has been added to the table, or
970  * an IP Address is assigned to an interface in the table (which adds a route
971  * automatically).
972  *
973  * @note IP addresses added after setting the interface IP table are added to
974  * the indicated FIB table. If an IP address is added prior to changing the
975  * table then this is an error. The control plane must remove these addresses
976  * first and then change the table. VPP will not automatically move the
977  * addresses from the old to the new table as it does not know the validity
978  * of such a change.
979  *
980  * @cliexpar
981  * Example of how to add an interface to an IPv6 FIB table (where 2 is the table-id):
982  * @cliexcmd{set interface ip6 table GigabitEthernet2/0/0 2}
983  ?*/
984 /* *INDENT-OFF* */
985 VLIB_CLI_COMMAND (set_interface_ip6_table_command, static) =
986 {
987   .path = "set interface ip6 table",
988   .function = ip6_table_bind_cmd,
989   .short_help = "set interface ip6 table <interface> <table-id>"
990 };
991 /* *INDENT-ON* */
992
993 clib_error_t *
994 vnet_ip_mroute_cmd (vlib_main_t * vm,
995                     unformat_input_t * main_input, vlib_cli_command_t * cmd)
996 {
997   unformat_input_t _line_input, *line_input = &_line_input;
998   clib_error_t *error = NULL;
999   fib_route_path_t rpath;
1000   u32 table_id, is_del;
1001   vnet_main_t *vnm;
1002   mfib_prefix_t pfx;
1003   u32 fib_index;
1004   mfib_itf_flags_t iflags = 0;
1005   mfib_entry_flags_t eflags = 0;
1006   u32 gcount, scount, ss, gg, incr;
1007   f64 timet[2];
1008
1009   gcount = scount = 1;
1010   vnm = vnet_get_main ();
1011   is_del = 0;
1012   table_id = 0;
1013   memset (&pfx, 0, sizeof (pfx));
1014   memset (&rpath, 0, sizeof (rpath));
1015   rpath.frp_sw_if_index = ~0;
1016
1017   /* Get a line of input. */
1018   if (!unformat_user (main_input, unformat_line_input, line_input))
1019     return 0;
1020
1021   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1022     {
1023       if (unformat (line_input, "table %d", &table_id))
1024         ;
1025       else if (unformat (line_input, "del"))
1026         is_del = 1;
1027       else if (unformat (line_input, "add"))
1028         is_del = 0;
1029       else if (unformat (line_input, "scount %d", &scount))
1030         ;
1031       else if (unformat (line_input, "gcount %d", &gcount))
1032         ;
1033       else if (unformat (line_input, "%U %U",
1034                          unformat_ip4_address,
1035                          &pfx.fp_src_addr.ip4,
1036                          unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1037         {
1038           pfx.fp_proto = FIB_PROTOCOL_IP4;
1039           pfx.fp_len = 64;
1040         }
1041       else if (unformat (line_input, "%U %U",
1042                          unformat_ip6_address,
1043                          &pfx.fp_src_addr.ip6,
1044                          unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1045         {
1046           pfx.fp_proto = FIB_PROTOCOL_IP6;
1047           pfx.fp_len = 256;
1048         }
1049       else if (unformat (line_input, "%U/%d",
1050                          unformat_ip4_address,
1051                          &pfx.fp_grp_addr.ip4, &pfx.fp_len))
1052         {
1053           memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
1054           pfx.fp_proto = FIB_PROTOCOL_IP4;
1055         }
1056       else if (unformat (line_input, "%U/%d",
1057                          unformat_ip6_address,
1058                          &pfx.fp_grp_addr.ip6, &pfx.fp_len))
1059         {
1060           memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
1061           pfx.fp_proto = FIB_PROTOCOL_IP6;
1062         }
1063       else if (unformat (line_input, "%U",
1064                          unformat_ip4_address, &pfx.fp_grp_addr.ip4))
1065         {
1066           memset (&pfx.fp_src_addr.ip4, 0, sizeof (pfx.fp_src_addr.ip4));
1067           pfx.fp_proto = FIB_PROTOCOL_IP4;
1068           pfx.fp_len = 32;
1069         }
1070       else if (unformat (line_input, "%U",
1071                          unformat_ip6_address, &pfx.fp_grp_addr.ip6))
1072         {
1073           memset (&pfx.fp_src_addr.ip6, 0, sizeof (pfx.fp_src_addr.ip6));
1074           pfx.fp_proto = FIB_PROTOCOL_IP6;
1075           pfx.fp_len = 128;
1076         }
1077       else if (unformat (line_input, "via %U",
1078                          unformat_vnet_sw_interface, vnm,
1079                          &rpath.frp_sw_if_index))
1080         {
1081           rpath.frp_weight = 1;
1082         }
1083       else if (unformat (line_input, "via local"))
1084         {
1085           rpath.frp_sw_if_index = ~0;
1086           rpath.frp_weight = 1;
1087           rpath.frp_flags |= FIB_ROUTE_PATH_LOCAL;
1088         }
1089       else if (unformat (line_input, "%U", unformat_mfib_itf_flags, &iflags))
1090         ;
1091       else if (unformat (line_input, "%U",
1092                          unformat_mfib_entry_flags, &eflags))
1093         ;
1094       else
1095         {
1096           error = unformat_parse_error (line_input);
1097           goto done;
1098         }
1099     }
1100
1101   if (~0 == table_id)
1102     {
1103       /*
1104        * if no table_id is passed we will manipulate the default
1105        */
1106       fib_index = 0;
1107     }
1108   else
1109     {
1110       fib_index = mfib_table_find (pfx.fp_proto, table_id);
1111
1112       if (~0 == fib_index)
1113         {
1114           error = clib_error_return (0, "Nonexistent table id %d", table_id);
1115           goto done;
1116         }
1117     }
1118
1119   timet[0] = vlib_time_now (vm);
1120
1121   if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1122     {
1123       incr = 1 << (32 - (pfx.fp_len % 32));
1124     }
1125   else
1126     {
1127       incr = 1 << (128 - (pfx.fp_len % 128));
1128     }
1129
1130   for (ss = 0; ss < scount; ss++)
1131     {
1132       for (gg = 0; gg < gcount; gg++)
1133         {
1134           if (is_del && 0 == rpath.frp_weight)
1135             {
1136               /* no path provided => route delete */
1137               mfib_table_entry_delete (fib_index, &pfx, MFIB_SOURCE_CLI);
1138             }
1139           else if (eflags)
1140             {
1141               mfib_table_entry_update (fib_index, &pfx, MFIB_SOURCE_CLI,
1142                                        MFIB_RPF_ID_NONE, eflags);
1143             }
1144           else
1145             {
1146               if (is_del)
1147                 mfib_table_entry_path_remove (fib_index,
1148                                               &pfx, MFIB_SOURCE_CLI, &rpath);
1149               else
1150                 mfib_table_entry_path_update (fib_index,
1151                                               &pfx, MFIB_SOURCE_CLI, &rpath,
1152                                               iflags);
1153             }
1154
1155           if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1156             {
1157               pfx.fp_grp_addr.ip4.as_u32 =
1158                 clib_host_to_net_u32 (incr +
1159                                       clib_net_to_host_u32 (pfx.
1160                                                             fp_grp_addr.ip4.
1161                                                             as_u32));
1162             }
1163           else
1164             {
1165               int bucket = (incr < 64 ? 0 : 1);
1166               pfx.fp_grp_addr.ip6.as_u64[bucket] =
1167                 clib_host_to_net_u64 (incr +
1168                                       clib_net_to_host_u64 (pfx.
1169                                                             fp_grp_addr.ip6.as_u64
1170                                                             [bucket]));
1171
1172             }
1173         }
1174       if (FIB_PROTOCOL_IP4 == pfx.fp_proto)
1175         {
1176           pfx.fp_src_addr.ip4.as_u32 =
1177             clib_host_to_net_u32 (1 +
1178                                   clib_net_to_host_u32 (pfx.fp_src_addr.
1179                                                         ip4.as_u32));
1180         }
1181       else
1182         {
1183           pfx.fp_src_addr.ip6.as_u64[1] =
1184             clib_host_to_net_u64 (1 +
1185                                   clib_net_to_host_u64 (pfx.fp_src_addr.
1186                                                         ip6.as_u64[1]));
1187         }
1188     }
1189
1190   timet[1] = vlib_time_now (vm);
1191
1192   if (scount > 1 || gcount > 1)
1193     vlib_cli_output (vm, "%.6e routes/sec",
1194                      (scount * gcount) / (timet[1] - timet[0]));
1195
1196 done:
1197   unformat_free (line_input);
1198
1199   return error;
1200 }
1201
1202 /*?
1203  * This command is used to add or delete IPv4 or IPv6  multicastroutes. All
1204  * IP Addresses ('<em><dst-ip-addr>/<width></em>',
1205  * '<em><next-hop-ip-addr></em>' and '<em><adj-hop-ip-addr></em>')
1206  * can be IPv4 or IPv6, but all must be of the same form in a single
1207  * command. To display the current set of routes, use the commands
1208  * '<em>show ip mfib</em>' and '<em>show ip6 mfib</em>'.
1209  * The full set of support flags for interfaces and route is shown via;
1210  * '<em>show mfib route flags</em>' and '<em>show mfib itf flags</em>'
1211  * respectively.
1212  * @cliexpar
1213  * Example of how to add a forwarding interface to a route (and create the
1214  * route if it does not exist)
1215  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/0 Forward}
1216  * Example of how to add an accepting interface to a route (and create the
1217  * route if it does not exist)
1218  * @cliexcmd{ip mroute add 232.1.1.1 via GigabitEthernet2/0/1 Accept}
1219  * Example of changing the route's flags to send signals via the API
1220  * @cliexcmd{ip mroute add 232.1.1.1 Signal}
1221
1222  ?*/
1223 /* *INDENT-OFF* */
1224 VLIB_CLI_COMMAND (ip_mroute_command, static) =
1225 {
1226   .path = "ip mroute",
1227   .short_help = "ip mroute [add|del] <dst-ip-addr>/<width> [table <table-id>] [via <next-hop-ip-addr> [<interface>],",
1228   .function = vnet_ip_mroute_cmd,
1229   .is_mp_safe = 1,
1230 };
1231 /* *INDENT-ON* */
1232
1233 /*
1234  * The next two routines address a longstanding script hemorrhoid.
1235  * Probing a v4 or v6 neighbor needs to appear to be synchronous,
1236  * or dependent route-adds will simply fail.
1237  */
1238 static clib_error_t *
1239 ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index,
1240                          int retry_count)
1241 {
1242   vnet_main_t *vnm = vnet_get_main ();
1243   clib_error_t *e;
1244   int i;
1245   int resolved = 0;
1246   uword event_type;
1247   uword *event_data = 0;
1248
1249   ASSERT (vlib_in_process_context (vm));
1250
1251   if (retry_count > 0)
1252     vnet_register_ip6_neighbor_resolution_event
1253       (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
1254        1 /* event */ , 0 /* data */ );
1255
1256   for (i = 0; i < retry_count; i++)
1257     {
1258       /* The interface may be down, etc. */
1259       e = ip6_probe_neighbor (vm, a, sw_if_index);
1260
1261       if (e)
1262         return e;
1263
1264       vlib_process_wait_for_event_or_clock (vm, 1.0);
1265       event_type = vlib_process_get_events (vm, &event_data);
1266       switch (event_type)
1267         {
1268         case 1:         /* resolved... */
1269           vlib_cli_output (vm, "Resolved %U", format_ip6_address, a);
1270           resolved = 1;
1271           goto done;
1272
1273         case ~0:                /* timeout */
1274           break;
1275
1276         default:
1277           clib_warning ("unknown event_type %d", event_type);
1278         }
1279       vec_reset_length (event_data);
1280     }
1281
1282 done:
1283
1284   if (!resolved)
1285     return clib_error_return (0, "Resolution failed for %U",
1286                               format_ip6_address, a);
1287   return 0;
1288 }
1289
1290 static clib_error_t *
1291 ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index,
1292                          int retry_count)
1293 {
1294   vnet_main_t *vnm = vnet_get_main ();
1295   clib_error_t *e;
1296   int i;
1297   int resolved = 0;
1298   uword event_type;
1299   uword *event_data = 0;
1300
1301   ASSERT (vlib_in_process_context (vm));
1302
1303   if (retry_count > 0)
1304     vnet_register_ip4_arp_resolution_event
1305       (vnm, a, vlib_get_current_process (vm)->node_runtime.node_index,
1306        1 /* event */ , 0 /* data */ );
1307
1308   for (i = 0; i < retry_count; i++)
1309     {
1310       /* The interface may be down, etc. */
1311       e = ip4_probe_neighbor (vm, a, sw_if_index);
1312
1313       if (e)
1314         return e;
1315
1316       vlib_process_wait_for_event_or_clock (vm, 1.0);
1317       event_type = vlib_process_get_events (vm, &event_data);
1318       switch (event_type)
1319         {
1320         case 1:         /* resolved... */
1321           vlib_cli_output (vm, "Resolved %U", format_ip4_address, a);
1322           resolved = 1;
1323           goto done;
1324
1325         case ~0:                /* timeout */
1326           break;
1327
1328         default:
1329           clib_warning ("unknown event_type %d", event_type);
1330         }
1331       vec_reset_length (event_data);
1332     }
1333
1334 done:
1335
1336   vec_reset_length (event_data);
1337
1338   if (!resolved)
1339     return clib_error_return (0, "Resolution failed for %U",
1340                               format_ip4_address, a);
1341   return 0;
1342 }
1343
1344 static clib_error_t *
1345 probe_neighbor_address (vlib_main_t * vm,
1346                         unformat_input_t * input, vlib_cli_command_t * cmd)
1347 {
1348   vnet_main_t *vnm = vnet_get_main ();
1349   unformat_input_t _line_input, *line_input = &_line_input;
1350   ip4_address_t a4;
1351   ip6_address_t a6;
1352   clib_error_t *error = 0;
1353   u32 sw_if_index = ~0;
1354   int retry_count = 3;
1355   int is_ip4 = 1;
1356   int address_set = 0;
1357
1358   /* Get a line of input. */
1359   if (!unformat_user (input, unformat_line_input, line_input))
1360     return 0;
1361
1362   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1363     {
1364       if (unformat_user (line_input, unformat_vnet_sw_interface, vnm,
1365                          &sw_if_index))
1366         ;
1367       else if (unformat (line_input, "retry %d", &retry_count))
1368         ;
1369
1370       else if (unformat (line_input, "%U", unformat_ip4_address, &a4))
1371         address_set++;
1372       else if (unformat (line_input, "%U", unformat_ip6_address, &a6))
1373         {
1374           address_set++;
1375           is_ip4 = 0;
1376         }
1377       else
1378         {
1379           error = clib_error_return (0, "unknown input '%U'",
1380                                      format_unformat_error, line_input);
1381           goto done;
1382         }
1383     }
1384
1385   if (sw_if_index == ~0)
1386     {
1387       error = clib_error_return (0, "Interface required, not set.");
1388       goto done;
1389     }
1390   if (address_set == 0)
1391     {
1392       error = clib_error_return (0, "ip address required, not set.");
1393       goto done;
1394     }
1395   if (address_set > 1)
1396     {
1397       error = clib_error_return (0, "Multiple ip addresses not supported.");
1398       goto done;
1399     }
1400
1401   if (is_ip4)
1402     error = ip4_probe_neighbor_wait (vm, &a4, sw_if_index, retry_count);
1403   else
1404     error = ip6_probe_neighbor_wait (vm, &a6, sw_if_index, retry_count);
1405
1406 done:
1407   unformat_free (line_input);
1408
1409   return error;
1410 }
1411
1412 /*?
1413  * The '<em>ip probe-neighbor</em>' command ARPs for IPv4 addresses or
1414  * attempts IPv6 neighbor discovery depending on the supplied IP address
1415  * format.
1416  *
1417  * @note This command will not immediately affect the indicated FIB; it
1418  * is not suitable for use in establishing a FIB entry prior to adding
1419  * recursive FIB entries. As in: don't use it in a script to probe a
1420  * gateway prior to adding a default route. It won't work. Instead,
1421  * configure a static ARP cache entry [see '<em>set ip arp</em>'], or
1422  * a static IPv6 neighbor [see '<em>set ip6 neighbor</em>'].
1423  *
1424  * @cliexpar
1425  * Example of probe for an IPv4 address:
1426  * @cliexcmd{ip probe-neighbor GigabitEthernet2/0/0 172.16.1.2}
1427 ?*/
1428 /* *INDENT-OFF* */
1429 VLIB_CLI_COMMAND (ip_probe_neighbor_command, static) = {
1430   .path = "ip probe-neighbor",
1431   .function = probe_neighbor_address,
1432   .short_help = "ip probe-neighbor <interface> <ip4-addr> | <ip6-addr> [retry nn]",
1433   .is_mp_safe = 1,
1434 };
1435 /* *INDENT-ON* */
1436
1437 clib_error_t *
1438 vnet_ip_container_proxy_add_del (vnet_ip_container_proxy_args_t * args)
1439 {
1440   u32 fib_index;
1441
1442   if (!vnet_sw_interface_is_api_valid (vnet_get_main (), args->sw_if_index))
1443     return clib_error_return_code (0, VNET_API_ERROR_INVALID_INTERFACE, 0,
1444                                    "invalid sw_if_index");
1445
1446   fib_index = fib_table_get_table_id_for_sw_if_index (args->prefix.fp_proto,
1447                                                       args->sw_if_index);
1448   if (args->is_add)
1449     {
1450       dpo_id_t proxy_dpo = DPO_INVALID;
1451       l3_proxy_dpo_add_or_lock (fib_proto_to_dpo (args->prefix.fp_proto),
1452                                 args->sw_if_index, &proxy_dpo);
1453       fib_table_entry_special_dpo_add (fib_index,
1454                                        &args->prefix,
1455                                        FIB_SOURCE_PROXY,
1456                                        FIB_ENTRY_FLAG_EXCLUSIVE, &proxy_dpo);
1457       dpo_reset (&proxy_dpo);
1458     }
1459   else
1460     {
1461       fib_table_entry_special_remove (fib_index, &args->prefix,
1462                                       FIB_SOURCE_PROXY);
1463     }
1464   return 0;
1465 }
1466
1467 u8
1468 ip_container_proxy_is_set (fib_prefix_t * pfx, u32 sw_if_index)
1469 {
1470   u32 fib_index;
1471   fib_node_index_t fei;
1472   const dpo_id_t *dpo;
1473   l3_proxy_dpo_t *l3p;
1474   load_balance_t *lb0;
1475
1476   fib_index = fib_table_get_table_id_for_sw_if_index (pfx->fp_proto,
1477                                                       sw_if_index);
1478   if (fib_index == ~0)
1479     return 0;
1480
1481   fei = fib_table_lookup_exact_match (fib_index, pfx);
1482   if (fei == FIB_NODE_INDEX_INVALID)
1483     return 0;
1484
1485   dpo = fib_entry_contribute_ip_forwarding (fei);
1486   lb0 = load_balance_get (dpo->dpoi_index);
1487   dpo = load_balance_get_bucket_i (lb0, 0);
1488   if (dpo->dpoi_type != DPO_L3_PROXY)
1489     return 0;
1490
1491   l3p = l3_proxy_dpo_get (dpo->dpoi_index);
1492   return (l3p->l3p_sw_if_index == sw_if_index);
1493 }
1494
1495 clib_error_t *
1496 ip_container_cmd (vlib_main_t * vm,
1497                   unformat_input_t * main_input, vlib_cli_command_t * cmd)
1498 {
1499   unformat_input_t _line_input, *line_input = &_line_input;
1500   fib_prefix_t pfx;
1501
1502   u32 is_del;
1503   vnet_main_t *vnm;
1504   u32 sw_if_index;
1505
1506   vnm = vnet_get_main ();
1507   is_del = 0;
1508   sw_if_index = ~0;
1509
1510   /* Get a line of input. */
1511   if (!unformat_user (main_input, unformat_line_input, line_input))
1512     return 0;
1513
1514   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1515     {
1516       if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1517         {
1518           pfx.fp_proto = FIB_PROTOCOL_IP4;
1519           pfx.fp_len = 32;
1520         }
1521       else if (unformat (line_input, "%U",
1522                          unformat_ip6_address, &pfx.fp_addr.ip6))
1523         {
1524           pfx.fp_proto = FIB_PROTOCOL_IP6;
1525           pfx.fp_len = 128;
1526         }
1527       else if (unformat (line_input, "%U",
1528                          unformat_vnet_sw_interface, vnm, &sw_if_index))
1529         ;
1530       else if (unformat (line_input, "del"))
1531         is_del = 1;
1532       else
1533         return (clib_error_return (0, "unknown input '%U'",
1534                                    format_unformat_error, line_input));
1535     }
1536
1537   if (~0 == sw_if_index)
1538     {
1539       return (clib_error_return (0, "no interface"));
1540     }
1541
1542   vnet_ip_container_proxy_args_t args = {
1543     .prefix = pfx,
1544     .sw_if_index = sw_if_index,
1545     .is_add = !is_del,
1546   };
1547   vnet_ip_container_proxy_add_del (&args);
1548   unformat_free (line_input);
1549   return (NULL);
1550 }
1551
1552 /* *INDENT-OFF* */
1553 VLIB_CLI_COMMAND (ip_container_command_node, static) = {
1554   .path = "ip container",
1555   .function = ip_container_cmd,
1556   .short_help = "ip container <address> <interface>",
1557   .is_mp_safe = 1,
1558 };
1559 /* *INDENT-ON* */
1560
1561 clib_error_t *
1562 show_ip_container_cmd_fn (vlib_main_t * vm, unformat_input_t * main_input,
1563                           vlib_cli_command_t * cmd)
1564 {
1565   unformat_input_t _line_input, *line_input = &_line_input;
1566   vnet_main_t *vnm = vnet_get_main ();
1567   fib_prefix_t pfx;
1568   u32 sw_if_index = ~0;
1569   u8 has_proxy;
1570
1571   if (!unformat_user (main_input, unformat_line_input, line_input))
1572     return 0;
1573   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1574     {
1575       if (unformat (line_input, "%U", unformat_ip4_address, &pfx.fp_addr.ip4))
1576         {
1577           pfx.fp_proto = FIB_PROTOCOL_IP4;
1578           pfx.fp_len = 32;
1579         }
1580       else if (unformat (line_input, "%U",
1581                          unformat_ip6_address, &pfx.fp_addr.ip6))
1582         {
1583           pfx.fp_proto = FIB_PROTOCOL_IP6;
1584           pfx.fp_len = 128;
1585         }
1586       else if (unformat (line_input, "%U",
1587                          unformat_vnet_sw_interface, vnm, &sw_if_index))
1588         ;
1589       else
1590         return (clib_error_return (0, "unknown input '%U'",
1591                                    format_unformat_error, line_input));
1592     }
1593
1594   if (~0 == sw_if_index)
1595     {
1596       vlib_cli_output (vm, "no interface");
1597       return (clib_error_return (0, "no interface"));
1598     }
1599
1600   has_proxy = ip_container_proxy_is_set (&pfx, sw_if_index);
1601   vlib_cli_output (vm, "ip container proxy is: %s", has_proxy ? "on" : "off");
1602
1603   unformat_free (line_input);
1604   return 0;
1605 }
1606
1607 /* *INDENT-OFF* */
1608 VLIB_CLI_COMMAND (show_ip_container_command, static) = {
1609   .path = "show ip container",
1610   .function = show_ip_container_cmd_fn,
1611   .short_help = "show ip container <address> <interface>",
1612   .is_mp_safe = 1,
1613 };
1614 /* *INDENT-ON* */
1615
1616 /*
1617  * fd.io coding-style-patch-verification: ON
1618  *
1619  * Local Variables:
1620  * eval: (c-set-style "gnu")
1621  * End:
1622  */